tvtime-1.0.11/ 0000775 0001750 0001750 00000000000 13026503655 010112 5 0000000 0000000 tvtime-1.0.11/depcomp 0000755 0001750 0001750 00000056016 13026503063 011406 0000000 0000000 #! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion=2013-05-30.07; # UTC
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
# 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, or (at your option)
# any later version.
# 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.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
# Originally written by Alexandre Oliva .
case $1 in
'')
echo "$0: No command. Try '$0 --help' for more information." 1>&2
exit 1;
;;
-h | --h*)
cat <<\EOF
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
Run PROGRAMS ARGS to compile a file, generating dependencies
as side-effects.
Environment variables:
depmode Dependency tracking mode.
source Source file read by 'PROGRAMS ARGS'.
object Object file output by 'PROGRAMS ARGS'.
DEPDIR directory where to store dependencies.
depfile Dependency file to output.
tmpdepfile Temporary file to use when outputting dependencies.
libtool Whether libtool is used (yes/no).
Report bugs to .
EOF
exit $?
;;
-v | --v*)
echo "depcomp $scriptversion"
exit $?
;;
esac
# Get the directory component of the given path, and save it in the
# global variables '$dir'. Note that this directory component will
# be either empty or ending with a '/' character. This is deliberate.
set_dir_from ()
{
case $1 in
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
*) dir=;;
esac
}
# Get the suffix-stripped basename of the given path, and save it the
# global variable '$base'.
set_base_from ()
{
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
}
# If no dependency file was actually created by the compiler invocation,
# we still have to create a dummy depfile, to avoid errors with the
# Makefile "include basename.Plo" scheme.
make_dummy_depfile ()
{
echo "#dummy" > "$depfile"
}
# Factor out some common post-processing of the generated depfile.
# Requires the auxiliary global variable '$tmpdepfile' to be set.
aix_post_process_depfile ()
{
# If the compiler actually managed to produce a dependency file,
# post-process it.
if test -f "$tmpdepfile"; then
# Each line is of the form 'foo.o: dependency.h'.
# Do two passes, one to just change these to
# $object: dependency.h
# and one to simply output
# dependency.h:
# which is needed to avoid the deleted-header problem.
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
} > "$depfile"
rm -f "$tmpdepfile"
else
make_dummy_depfile
fi
}
# A tabulation character.
tab=' '
# A newline character.
nl='
'
# Character ranges might be problematic outside the C locale.
# These definitions help.
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
lower=abcdefghijklmnopqrstuvwxyz
digits=0123456789
alpha=${upper}${lower}
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
echo "depcomp: Variables source, object and depmode must be set" 1>&2
exit 1
fi
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
depfile=${depfile-`echo "$object" |
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
rm -f "$tmpdepfile"
# Avoid interferences from the environment.
gccflag= dashmflag=
# Some modes work just like other modes, but use different flags. We
# parameterize here, but still list the modes in the big case below,
# to make depend.m4 easier to write. Note that we *cannot* use a case
# here, because this file can only contain one case statement.
if test "$depmode" = hp; then
# HP compiler uses -M and no extra arg.
gccflag=-M
depmode=gcc
fi
if test "$depmode" = dashXmstdout; then
# This is just like dashmstdout with a different argument.
dashmflag=-xM
depmode=dashmstdout
fi
cygpath_u="cygpath -u -f -"
if test "$depmode" = msvcmsys; then
# This is just like msvisualcpp but w/o cygpath translation.
# Just convert the backslash-escaped backslashes to single forward
# slashes to satisfy depend.m4
cygpath_u='sed s,\\\\,/,g'
depmode=msvisualcpp
fi
if test "$depmode" = msvc7msys; then
# This is just like msvc7 but w/o cygpath translation.
# Just convert the backslash-escaped backslashes to single forward
# slashes to satisfy depend.m4
cygpath_u='sed s,\\\\,/,g'
depmode=msvc7
fi
if test "$depmode" = xlc; then
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
gccflag=-qmakedep=gcc,-MF
depmode=gcc
fi
case "$depmode" in
gcc3)
## gcc 3 implements dependency tracking that does exactly what
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
## it if -MD -MP comes after the -MF stuff. Hmm.
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
## the command line argument order; so add the flags where they
## appear in depend2.am. Note that the slowdown incurred here
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
for arg
do
case $arg in
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
*) set fnord "$@" "$arg" ;;
esac
shift # fnord
shift # $arg
done
"$@"
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
mv "$tmpdepfile" "$depfile"
;;
gcc)
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
## (see the conditional assignment to $gccflag above).
## There are various ways to get dependency output from gcc. Here's
## why we pick this rather obscure method:
## - Don't want to use -MD because we'd like the dependencies to end
## up in a subdir. Having to rename by hand is ugly.
## (We might end up doing this anyway to support other compilers.)
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
## -MM, not -M (despite what the docs say). Also, it might not be
## supported by the other compilers which use the 'gcc' depmode.
## - Using -M directly means running the compiler twice (even worse
## than renaming).
if test -z "$gccflag"; then
gccflag=-MD,
fi
"$@" -Wp,"$gccflag$tmpdepfile"
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
echo "$object : \\" > "$depfile"
# The second -e expression handles DOS-style file names with drive
# letters.
sed -e 's/^[^:]*: / /' \
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
## This next piece of magic avoids the "deleted header file" problem.
## The problem is that when a header file which appears in a .P file
## is deleted, the dependency causes make to die (because there is
## typically no way to rebuild the header). We avoid this by adding
## dummy dependencies for each header file. Too bad gcc doesn't do
## this for us directly.
## Some versions of gcc put a space before the ':'. On the theory
## that the space means something, we add a space to the output as
## well. hp depmode also adds that space, but also prefixes the VPATH
## to the object. Take care to not repeat it in the output.
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly. Breaking it into two sed invocations is a workaround.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
hp)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
sgi)
if test "$libtool" = yes; then
"$@" "-Wp,-MDupdate,$tmpdepfile"
else
"$@" -MDupdate "$tmpdepfile"
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
echo "$object : \\" > "$depfile"
# Clip off the initial element (the dependent). Don't try to be
# clever and replace this with sed code, as IRIX sed won't handle
# lines with more than a fixed number of characters (4096 in
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
# the IRIX cc adds comments like '#:fec' to the end of the
# dependency line.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
| tr "$nl" ' ' >> "$depfile"
echo >> "$depfile"
# The second pass generates a dummy entry for each header file.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
>> "$depfile"
else
make_dummy_depfile
fi
rm -f "$tmpdepfile"
;;
xlc)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
aix)
# The C for AIX Compiler uses -M and outputs the dependencies
# in a .u file. In older versions, this file always lives in the
# current directory. Also, the AIX compiler puts '$object:' at the
# start of each line; $object doesn't have directory information.
# Version 6 uses the directory in both cases.
set_dir_from "$object"
set_base_from "$object"
if test "$libtool" = yes; then
tmpdepfile1=$dir$base.u
tmpdepfile2=$base.u
tmpdepfile3=$dir.libs/$base.u
"$@" -Wc,-M
else
tmpdepfile1=$dir$base.u
tmpdepfile2=$dir$base.u
tmpdepfile3=$dir$base.u
"$@" -M
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
exit $stat
fi
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
do
test -f "$tmpdepfile" && break
done
aix_post_process_depfile
;;
tcc)
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
# FIXME: That version still under development at the moment of writing.
# Make that this statement remains true also for stable, released
# versions.
# It will wrap lines (doesn't matter whether long or short) with a
# trailing '\', as in:
#
# foo.o : \
# foo.c \
# foo.h \
#
# It will put a trailing '\' even on the last line, and will use leading
# spaces rather than leading tabs (at least since its commit 0394caf7
# "Emit spaces for -MD").
"$@" -MD -MF "$tmpdepfile"
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
# We have to change lines of the first kind to '$object: \'.
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
# And for each line of the second kind, we have to emit a 'dep.h:'
# dummy dependency, to avoid the deleted-header problem.
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
rm -f "$tmpdepfile"
;;
## The order of this option in the case statement is important, since the
## shell code in configure will try each of these formats in the order
## listed in this file. A plain '-MD' option would be understood by many
## compilers, so we must ensure this comes after the gcc and icc options.
pgcc)
# Portland's C compiler understands '-MD'.
# Will always output deps to 'file.d' where file is the root name of the
# source file under compilation, even if file resides in a subdirectory.
# The object file name does not affect the name of the '.d' file.
# pgcc 10.2 will output
# foo.o: sub/foo.c sub/foo.h
# and will wrap long lines using '\' :
# foo.o: sub/foo.c ... \
# sub/foo.h ... \
# ...
set_dir_from "$object"
# Use the source, not the object, to determine the base name, since
# that's sadly what pgcc will do too.
set_base_from "$source"
tmpdepfile=$base.d
# For projects that build the same source file twice into different object
# files, the pgcc approach of using the *source* file root name can cause
# problems in parallel builds. Use a locking strategy to avoid stomping on
# the same $tmpdepfile.
lockdir=$base.d-lock
trap "
echo '$0: caught signal, cleaning up...' >&2
rmdir '$lockdir'
exit 1
" 1 2 13 15
numtries=100
i=$numtries
while test $i -gt 0; do
# mkdir is a portable test-and-set.
if mkdir "$lockdir" 2>/dev/null; then
# This process acquired the lock.
"$@" -MD
stat=$?
# Release the lock.
rmdir "$lockdir"
break
else
# If the lock is being held by a different process, wait
# until the winning process is done or we timeout.
while test -d "$lockdir" && test $i -gt 0; do
sleep 1
i=`expr $i - 1`
done
fi
i=`expr $i - 1`
done
trap - 1 2 13 15
if test $i -le 0; then
echo "$0: failed to acquire lock after $numtries attempts" >&2
echo "$0: check lockdir '$lockdir'" >&2
exit 1
fi
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
# Each line is of the form `foo.o: dependent.h',
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
# Do two passes, one to just change these to
# `$object: dependent.h' and one to simply `dependent.h:'.
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
# Some versions of the HPUX 10.20 sed can't process this invocation
# correctly. Breaking it into two sed invocations is a workaround.
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
hp2)
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
# compilers, which have integrated preprocessors. The correct option
# to use with these is +Maked; it writes dependencies to a file named
# 'foo.d', which lands next to the object file, wherever that
# happens to be.
# Much of this is similar to the tru64 case; see comments there.
set_dir_from "$object"
set_base_from "$object"
if test "$libtool" = yes; then
tmpdepfile1=$dir$base.d
tmpdepfile2=$dir.libs/$base.d
"$@" -Wc,+Maked
else
tmpdepfile1=$dir$base.d
tmpdepfile2=$dir$base.d
"$@" +Maked
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile1" "$tmpdepfile2"
exit $stat
fi
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
do
test -f "$tmpdepfile" && break
done
if test -f "$tmpdepfile"; then
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
# Add 'dependent.h:' lines.
sed -ne '2,${
s/^ *//
s/ \\*$//
s/$/:/
p
}' "$tmpdepfile" >> "$depfile"
else
make_dummy_depfile
fi
rm -f "$tmpdepfile" "$tmpdepfile2"
;;
tru64)
# The Tru64 compiler uses -MD to generate dependencies as a side
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
# dependencies in 'foo.d' instead, so we check for that too.
# Subdirectories are respected.
set_dir_from "$object"
set_base_from "$object"
if test "$libtool" = yes; then
# Libtool generates 2 separate objects for the 2 libraries. These
# two compilations output dependencies in $dir.libs/$base.o.d and
# in $dir$base.o.d. We have to check for both files, because
# one of the two compilations can be disabled. We should prefer
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
# automatically cleaned when .libs/ is deleted, while ignoring
# the former would cause a distcleancheck panic.
tmpdepfile1=$dir$base.o.d # libtool 1.5
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
"$@" -Wc,-MD
else
tmpdepfile1=$dir$base.d
tmpdepfile2=$dir$base.d
tmpdepfile3=$dir$base.d
"$@" -MD
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
exit $stat
fi
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
do
test -f "$tmpdepfile" && break
done
# Same post-processing that is required for AIX mode.
aix_post_process_depfile
;;
msvc7)
if test "$libtool" = yes; then
showIncludes=-Wc,-showIncludes
else
showIncludes=-showIncludes
fi
"$@" $showIncludes > "$tmpdepfile"
stat=$?
grep -v '^Note: including file: ' "$tmpdepfile"
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
echo "$object : \\" > "$depfile"
# The first sed program below extracts the file names and escapes
# backslashes for cygpath. The second sed program outputs the file
# name when reading, but also accumulates all include files in the
# hold buffer in order to output them again at the end. This only
# works with sed implementations that can handle large buffers.
sed < "$tmpdepfile" -n '
/^Note: including file: *\(.*\)/ {
s//\1/
s/\\/\\\\/g
p
}' | $cygpath_u | sort -u | sed -n '
s/ /\\ /g
s/\(.*\)/'"$tab"'\1 \\/p
s/.\(.*\) \\/\1:/
H
$ {
s/.*/'"$tab"'/
G
p
}' >> "$depfile"
echo >> "$depfile" # make sure the fragment doesn't end with a backslash
rm -f "$tmpdepfile"
;;
msvc7msys)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
#nosideeffect)
# This comment above is used by automake to tell side-effect
# dependency tracking mechanisms from slower ones.
dashmstdout)
# Important note: in order to support this mode, a compiler *must*
# always write the preprocessed file to stdout, regardless of -o.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
# Remove '-o $object'.
IFS=" "
for arg
do
case $arg in
-o)
shift
;;
$object)
shift
;;
*)
set fnord "$@" "$arg"
shift # fnord
shift # $arg
;;
esac
done
test -z "$dashmflag" && dashmflag=-M
# Require at least two characters before searching for ':'
# in the target name. This is to cope with DOS-style filenames:
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
"$@" $dashmflag |
sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
rm -f "$depfile"
cat < "$tmpdepfile" > "$depfile"
# Some versions of the HPUX 10.20 sed can't process this sed invocation
# correctly. Breaking it into two sed invocations is a workaround.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
dashXmstdout)
# This case only exists to satisfy depend.m4. It is never actually
# run, as this mode is specially recognized in the preamble.
exit 1
;;
makedepend)
"$@" || exit $?
# Remove any Libtool call
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
# X makedepend
shift
cleared=no eat=no
for arg
do
case $cleared in
no)
set ""; shift
cleared=yes ;;
esac
if test $eat = yes; then
eat=no
continue
fi
case "$arg" in
-D*|-I*)
set fnord "$@" "$arg"; shift ;;
# Strip any option that makedepend may not understand. Remove
# the object too, otherwise makedepend will parse it as a source file.
-arch)
eat=yes ;;
-*|$object)
;;
*)
set fnord "$@" "$arg"; shift ;;
esac
done
obj_suffix=`echo "$object" | sed 's/^.*\././'`
touch "$tmpdepfile"
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
rm -f "$depfile"
# makedepend may prepend the VPATH from the source file name to the object.
# No need to regex-escape $object, excess matching of '.' is harmless.
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
# Some versions of the HPUX 10.20 sed can't process the last invocation
# correctly. Breaking it into two sed invocations is a workaround.
sed '1,2d' "$tmpdepfile" \
| tr ' ' "$nl" \
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile" "$tmpdepfile".bak
;;
cpp)
# Important note: in order to support this mode, a compiler *must*
# always write the preprocessed file to stdout.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
# Remove '-o $object'.
IFS=" "
for arg
do
case $arg in
-o)
shift
;;
$object)
shift
;;
*)
set fnord "$@" "$arg"
shift # fnord
shift # $arg
;;
esac
done
"$@" -E \
| sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
| sed '$ s: \\$::' > "$tmpdepfile"
rm -f "$depfile"
echo "$object : \\" > "$depfile"
cat < "$tmpdepfile" >> "$depfile"
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
msvisualcpp)
# Important note: in order to support this mode, a compiler *must*
# always write the preprocessed file to stdout.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
IFS=" "
for arg
do
case "$arg" in
-o)
shift
;;
$object)
shift
;;
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
set fnord "$@"
shift
shift
;;
*)
set fnord "$@" "$arg"
shift
shift
;;
esac
done
"$@" -E 2>/dev/null |
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
rm -f "$depfile"
echo "$object : \\" > "$depfile"
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
echo "$tab" >> "$depfile"
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
rm -f "$tmpdepfile"
;;
msvcmsys)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
none)
exec "$@"
;;
*)
echo "Unknown depmode $depmode" 1>&2
exit 1
;;
esac
exit 0
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC"
# time-stamp-end: "; # UTC"
# End:
tvtime-1.0.11/INSTALL 0000664 0001750 0001750 00000005134 12354244126 011064 0000000 0000000 Copyright (C) 2003-2005 Billy Biggs.
This file is free documentation; Billy Biggs gives unlimited permission to
copy, distribute and modify it.
Installing tvtime
=================
This is the source code distribution of tvtime. tvtime has been
packaged for many popular Linux distributions. Please check our
download page on the tvtime website at http://tvtime.net/ to see if
there is a pre-packaged version of tvtime that you can use. Our
packaged versions have all been approved for quality by the tvtime
authors.
Compiling tvtime
================
tvtime includes a configure script to enable you to customize your
installation. By default, running configure without options will have
tvtime install itself and all required files under /usr/local. To
instead use paths according to the Filesystem Hierarchy Standard, we
recommend you run configure with these options:
~/tvtime-1.0$ ./configure --prefix=/usr --sysconfdir=/etc
This will have tvtime use /usr/bin for its executables,
/usr/share/tvtime for its data files, /etc/tvtime for its global
configuration files, and /usr/share/... for icons and menu entries.
Next, compile tvtime using make.
~/tvtime-1.0$ make
And then, install it as root.
~/tvtime-1.0$ su
/home/user/tvtime-1.0# make install
Compiling with optimized CFLAGS
===============================
tvtime includes many hand-optimized assembly functions for different CPU
extensions, such as MMX and SSE. We have also written a timingtest
application, and tested with different CPU flags. The CPU flags we use
in tvtime have been tested to perform best in our timing tests using
gcc3 and on the P3 and P4 chips, as well as some AMD chips.
Because of this, we strongly discourage users from using their own
"optimized" CFLAGS. Using -march=pentium4 and options for using SSE and
MMX by the compiler has been shown to perform no faster and often slower
with tvtime. If you feel that there are some compiler flags which could
improve, we would rather you show a test and example and post to our bug
tracker than silently use your own CFLAGS, so that we can test
ourselves.
Please comment further on this on this bug report:
http://sourceforge.net/tracker/index.php?func=detail&aid=807035&group_id=64301&atid=506987
Packaging tvtime
================
We are always interested in hearing about new tvtime packages to put on
our download page, and are more than willing to look over packagings to
make sure that nothing is missing our possibly misconfigured. If you
have made a package of tvtime, please contact me by sending an email to
vektor@dumbterm.net to let me know.
tvtime-1.0.11/plugins/ 0000775 0001750 0001750 00000000000 13026503655 011573 5 0000000 0000000 tvtime-1.0.11/plugins/dscalerapi.h 0000664 0001750 0001750 00000006374 12354244126 014003 0000000 0000000 ///////////////////////////////////////////////////////////////////////////////
// $Id$
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2000 John Adcock. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
// This header file is free software; you can redistribute it and/or modify it
// under the terms of the GNU Library General Public License as published by
// the Free Software Foundation; either version 2 of the License, or (at your
// option) any later version.
//
// This software 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 Library General Public License for more details
///////////////////////////////////////////////////////////////////////////////
/**
* This file is an adaptation of the DS_ApiCommon.h file from DScaler. I have
* removed many of the features which are not required by the tvtime port at
* the current time, and just store here the structures needed by the
* deinterlacers. We may try to converge back with DScaler or KDETV's
* adaptation in the future. -Billy Biggs
*/
#ifndef __DS_APICOMON_H__
#define __DS_APICOMON_H__ 1
#include
/** Deinterlace functions return true if the overlay is ready to be displayed.
*/
typedef void (MEMCPY_FUNC)(void* pOutput, const void* pInput, size_t nSize);
#define MAX_PICTURE_HISTORY 10
#define PICTURE_PROGRESSIVE 0
#define PICTURE_INTERLACED_ODD 1
#define PICTURE_INTERLACED_EVEN 2
#define PICTURE_INTERLACED_MASK (PICTURE_INTERLACED_ODD | PICTURE_INTERLACED_EVEN)
/** Structure containing a single field or frame
from the source.
This may be modified
*/
typedef struct
{
// pointer to the start of data for this picture
unsigned char* pData;
// see PICTURE_ flags
unsigned int Flags;
} TPicture;
#define DEINTERLACE_INFO_CURRENT_VERSION 400
/** Structure used to transfer all the information used by plugins
around in one chunk
*/
typedef struct
{
/** The most recent pictures
PictureHistory[0] is always the most recent.
Pointers are NULL if the picture in question isn't valid, e.g. because
the program just started or a picture was skipped.
*/
TPicture* PictureHistory[MAX_PICTURE_HISTORY];
/// Current overlay buffer pointer.
unsigned char *Overlay;
/// Overlay pitch (number of bytes between scanlines).
unsigned int OverlayPitch;
/** Number of bytes of actual data in each scanline. May be less than
OverlayPitch since the overlay's scanlines might have alignment
requirements. Generally equal to FrameWidth * 2.
*/
unsigned int LineLength;
/// Number of pixels in each scanline.
int FrameWidth;
/// Number of scanlines per frame.
int FrameHeight;
/** Number of scanlines per field. FrameHeight / 2, mostly for
cleanliness so we don't have to keep dividing FrameHeight by 2.
*/
int FieldHeight;
/// Function pointer to optimized memcpy function
MEMCPY_FUNC* pMemcpy;
/** distance between lines in image
need not match the pixel width
*/
unsigned int InputPitch;
} TDeinterlaceInfo;
#endif
tvtime-1.0.11/plugins/scalerbob.c 0000664 0001750 0001750 00000003017 12354244126 013612 0000000 0000000 /**
* Dummy plugin for 'scalerbob' support.
*
* Copyright (C) 2002 Billy Biggs .
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#include "speedy.h"
#include "deinterlace.h"
static deinterlace_method_t scalerbobmethod =
{
"Television: Half Resolution",
"TelevisionHalf",
1,
0,
1,
1,
0,
0,
0,
0,
{ "Expands each field independently without",
"blurring or copying in time. Use this if you",
"want TV-quality with low CPU, and you have",
"configured your monitor to run at the refresh",
"rate of the video signal.",
"",
"Half resolution is poor quality but low CPU",
"requirements for watching in a small window.",
"",
"" }
};
deinterlace_method_t *scalerbob_get_method( void )
{
return &scalerbobmethod;
}
tvtime-1.0.11/plugins/weavebff.c 0000664 0001750 0001750 00000004366 12354244126 013453 0000000 0000000 /**
* Weave frames, bottom-field-first.
* Copyright (C) 2003 Billy Biggs .
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#include "copyfunctions.h"
#include "deinterlace.h"
static void deinterlace_scanline_weave( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m1, width );
}
static void copy_scanline( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
if( data->bottom_field ) {
blit_packed422_scanline( output, data->m2, width );
} else {
blit_packed422_scanline( output, data->m0, width );
}
}
static deinterlace_method_t weavemethod =
{
"Progressive: Bottom Field First",
"ProgressiveBFF",
3,
0,
0,
1,
deinterlace_scanline_weave,
copy_scanline,
0,
0,
{ "Constructs frames from pairs of fields. Use",
"this if you are watching a film broadcast or",
"DVD in a PAL area, or if you are using a",
"video game console system which sends a",
"progressive signal.",
"",
"Depending on the content, it may be top- or",
"bottom-field first. Until we have full",
"detection in tvtime, this must be determined",
"experimentally." }
};
deinterlace_method_t *weavebff_get_method( void )
{
return &weavemethod;
}
tvtime-1.0.11/plugins/weavetff.c 0000664 0001750 0001750 00000004361 12354244126 013470 0000000 0000000 /**
* Weave frames, top-field-first.
* Copyright (C) 2003 Billy Biggs .
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#include "copyfunctions.h"
#include "deinterlace.h"
static void deinterlace_scanline_weave( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m1, width );
}
static void copy_scanline( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
if( data->bottom_field ) {
blit_packed422_scanline( output, data->m0, width );
} else {
blit_packed422_scanline( output, data->m2, width );
}
}
static deinterlace_method_t weavemethod =
{
"Progressive: Top Field First",
"ProgressiveTFF",
3,
0,
0,
1,
deinterlace_scanline_weave,
copy_scanline,
0,
0,
{ "Constructs frames from pairs of fields. Use",
"this if you are watching a film broadcast or",
"DVD in a PAL area, or if you are using a",
"video game console system which sends a",
"progressive signal.",
"",
"Depending on the content, it may be top- or",
"bottom-field first. Until we have full",
"detection in tvtime, this must be determined",
"experimentally." }
};
deinterlace_method_t *weavetff_get_method( void )
{
return &weavemethod;
}
tvtime-1.0.11/plugins/tomsmocomp/ 0000775 0001750 0001750 00000000000 13026503655 013770 5 0000000 0000000 tvtime-1.0.11/plugins/tomsmocomp/SearchLoopEdgeA.inc 0000664 0001750 0001750 00000001266 12663345553 017344 0000000 0000000 // -*- c++ -*-
// Searches 2 pixel to the left and right, in both the old
// and new fields, but takes averages. These are even
// pixel addresses. Chroma match will be used. (YUY2)
MERGE4PIXavg("-4(%%" XDI ")", "4(%%" XSI ", %%" XCX ", 2)") // up left, down right
MERGE4PIXavg("4(%%" XDI ")", "-4(%%" XSI ", %%" XCX ", 2)") // up right, down left
MERGE4PIXavg("-4(%%" XDI ", %%" XCX ")", "4(%%" XSI ", %%" XCX ")") // left, right
MERGE4PIXavg("4(%%" XDI ", %%" XCX ")", "-4(%%" XSI ", %%" XCX ")") // right, left
MERGE4PIXavg("-4(%%" XDI ", %%" XCX ", 2)", "4(%%" XSI ")") // down left, up right
MERGE4PIXavg("4(%%" XDI ", %%" XCX ", 2)", "-4(%%" XSI ")") // down right, up left
tvtime-1.0.11/plugins/tomsmocomp/TomsMoCompAll.inc 0000664 0001750 0001750 00000011230 12354244126 017064 0000000 0000000 // -*- c++ -*-
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2002 Tom Barry All rights reserved.
/////////////////////////////////////////////////////////////////////////////
//
// This file is subject to the terms of the GNU General Public License as
// published by the Free Software Foundation. A copy of this license is
// included with this software distribution in the file COPYING. If you
// do not have a copy, you may obtain a copy by writing to the Free
// Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
//
// This software 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
//
// Also, this program is "Philanthropy-Ware". That is, if you like it and
// feel the need to reward or inspire the author then please feel free (but
// not obligated) to consider joining or donating to the Electronic Frontier
// Foundation. This will help keep cyber space free of barbed wire and bullsh*t.
// See www.eff.org for details
/////////////////////////////////////////////////////////////////////////////
#ifndef TopFirst
#define TopFirst IsOdd
#endif
#ifdef SEFUNC
#undef SEFUNC
#endif
#if defined(IS_SSE)
#define SEFUNC(x) Search_Effort_SSE_##x()
#elif defined(IS_3DNOW)
#define SEFUNC(x) Search_Effort_3DNOW_##x()
#else
#define SEFUNC(x) Search_Effort_MMX_##x()
#endif
void FUNCT_NAME(TDeinterlaceInfo* pInfo)
{
pMyMemcpy = pInfo->pMemcpy;
src_pitch = pInfo->InputPitch;
dst_pitch = pInfo->OverlayPitch;
rowsize = pInfo->LineLength;
FldHeight = pInfo->FieldHeight;
pCopySrc = pInfo->PictureHistory[1]->pData;
pCopySrcP = pInfo->PictureHistory[3]->pData;
pWeaveSrc = pInfo->PictureHistory[0]->pData;
pWeaveSrcP = pInfo->PictureHistory[2]->pData;
IsOdd = pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD;
#ifdef IS_SSE2
// SSE2 support temporarily deleted
#endif
if(IsOdd) {
// if we have an odd field we copy an even field and weave an odd field
pCopyDest = pInfo->Overlay;
pWeaveDest = pInfo->Overlay + dst_pitch;
} else {
// if we have an ever field we copy an odd field and weave an even field
pCopyDest = pInfo->Overlay + dst_pitch;
pWeaveDest = pInfo->Overlay;
}
// copy 1st and last weave lines
Fieldcopy(pWeaveDest, pCopySrc, rowsize,
1, dst_pitch*2, src_pitch);
Fieldcopy(pWeaveDest+(FldHeight-1)*dst_pitch*2,
pCopySrc+(FldHeight-1)*src_pitch, rowsize,
1, dst_pitch*2, src_pitch);
#ifdef USE_VERTICAL_FILTER
// Vertical Filter currently not implemented for DScaler !!
// copy 1st and last lines the copy field
Fieldcopy(pCopyDest, pCopySrc, rowsize,
1, dst_pitch*2, src_pitch);
Fieldcopy(pCopyDest+(FldHeight-1)*dst_pitch*2,
pCopySrc+(FldHeight-1)*src_pitch, rowsize,
1, dst_pitch*2, src_pitch);
#else
// copy all of the copy field
Fieldcopy(pCopyDest, pCopySrc, rowsize,
FldHeight, dst_pitch*2, src_pitch);
#endif
// then go fill in the hard part, being variously lazy depending upon
// SearchEffort
if(UseStrangeBob == false) {
if (SearchEffort == 0)
{
SEFUNC(0);
}
else if (SearchEffort <= 1)
{
SEFUNC(1);
}
/* else if (SearchEffort <= 2)
{
SEFUNC(2);
}
*/
else if (SearchEffort <= 3)
{
SEFUNC(3);
}
else if (SearchEffort <= 5)
{
SEFUNC(5);
}
else if (SearchEffort <= 9)
{
SEFUNC(9);
}
else if (SearchEffort <= 11)
{
SEFUNC(11);
}
else if (SearchEffort <= 13)
{
SEFUNC(13);
}
else if (SearchEffort <= 15)
{
SEFUNC(15);
}
else if (SearchEffort <= 19)
{
SEFUNC(19);
}
else if (SearchEffort <= 21)
{
SEFUNC(21);
}
else
{
SEFUNC(Max);
}
}
else
{
if (SearchEffort == 0)
{
SEFUNC(0_SB);
}
else if (SearchEffort <= 1)
{
SEFUNC(1_SB);
}
/* else if (SearchEffort <= 2)
{
SEFUNC(2_SB);
}
*/
else if (SearchEffort <= 3)
{
SEFUNC(3_SB);
}
else if (SearchEffort <= 5)
{
SEFUNC(5_SB);
}
else if (SearchEffort <= 9)
{
SEFUNC(9_SB);
}
else if (SearchEffort <= 11)
{
SEFUNC(11_SB);
}
else if (SearchEffort <= 13)
{
SEFUNC(13_SB);
}
else if (SearchEffort <= 15)
{
SEFUNC(15_SB);
}
else if (SearchEffort <= 19)
{
SEFUNC(19_SB);
}
else if (SearchEffort <= 21)
{
SEFUNC(21_SB);
}
else
{
SEFUNC(Max_SB);
}
}
#ifdef ARCH_386
__asm__ __volatile__("emms");
#endif
}
#include "TomsMoCompAll2.inc"
#define USE_STRANGE_BOB
#include "TomsMoCompAll2.inc"
#undef USE_STRANGE_BOB
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopVA.inc 0000664 0001750 0001750 00000000462 12663345553 016702 0000000 0000000 // -*- c++ -*-
// Searches the center vertical line above center and below, in both the old
// and new fields, but takes averages. These are even pixel addresses.
MERGE4PIXavg("(%%" XDI ", %%" XCX ", 2)", "(%%" XSI ")") // down, up
MERGE4PIXavg("(%%" XDI ")", "(%%" XSI ", %%" XCX ", 2)") // up, down
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopVAH.inc 0000664 0001750 0001750 00000000634 12663345553 017013 0000000 0000000 // -*- c++ -*-
// Searches the center vertical line above center and below, in both the old
// and new fields, but takes averages. These are even pixel addresses.
MERGE4PIXavgH("(%%" XDI ", %%" XCX ", 2)", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "(%%" XSI ")") // down, up
MERGE4PIXavgH("(%%" XDI ")", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "(%%" XSI ", %%" XCX ", 2)") // up, down
tvtime-1.0.11/plugins/tomsmocomp/TomsMoCompAll2.inc 0000664 0001750 0001750 00000010616 12354244126 017155 0000000 0000000 // -*- c++ -*-
#ifdef SEARCH_EFFORT_FUNC
#undef SEARCH_EFFORT_FUNC
#endif
#ifdef USE_STRANGE_BOB
#define SEARCH_EFFORT_FUNC(n) SEFUNC(n##_SB)
#else
#define SEARCH_EFFORT_FUNC(n) SEFUNC(n)
#endif
int SEARCH_EFFORT_FUNC(0) // we don't try at all ;-)
{
//see Search_Effort_Max() for comments
#define SKIP_SEARCH
#include "SearchLoopTop.inc"
#include "SearchLoopBottom.inc"
#undef SKIP_SEARCH
}
int SEARCH_EFFORT_FUNC(1)
{
//see Search_Effort_Max() for comments
#include "SearchLoopTop.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
int SEARCH_EFFORT_FUNC(3)
{
//see Search_Effort_Max() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA2.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
int SEARCH_EFFORT_FUNC(5)
{
//see Search_Effort_Max() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA2.inc"
#include "SearchLoopOddAH2.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// 3x3 search
int SEARCH_EFFORT_FUNC(9)
{
//see SearchEffortMax() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoopVA.inc"
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// Search 9 with 2 H-half pels added
int SEARCH_EFFORT_FUNC(11)
{
//see SearchEffortMax() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA.inc"
#include "SearchLoopOddAH2.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoopVA.inc"
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// Search 11 with 2 V-half pels added
int SEARCH_EFFORT_FUNC(13)
{
//see SearchEffortMax() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA.inc"
#include "SearchLoopOddAH2.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoopVAH.inc"
#include "SearchLoopVA.inc"
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// 5x3
int SEARCH_EFFORT_FUNC(15)
{
//see SearchEffortMax() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoopEdgeA.inc"
#include "SearchLoopVA.inc"
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// 5x3 + 4 half pels
int SEARCH_EFFORT_FUNC(19)
{
//see SearchEffortMax() for comments
#include "SearchLoopTop.inc"
#include "SearchLoopOddA.inc"
#include "SearchLoopOddAH2.inc"
RESET_CHROMA // pretend chroma diffs was 255 each
#include "SearchLoopEdgeA.inc"
#include "SearchLoopVAH.inc"
#include "SearchLoopVA.inc"
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// Handle one 4x1 block of pixels
// Search a 7x3 area, no half pels
int SEARCH_EFFORT_FUNC(21)
{
//see SearchLoopTop.inc for comments
#include "SearchLoopTop.inc"
// odd addresses -- the pixels at odd address wouldn't generate
// good luma values but we will mask those off
#include "SearchLoopOddA6.inc" // 4 odd v half pels, 3 to left & right
#include "SearchLoopOddA.inc" // 6 odd pels, 1 to left & right
RESET_CHROMA // pretend chroma diffs was 255 each
// even addresses -- use both luma and chroma from these
// search averages of 2 pixels left and right
#include "SearchLoopEdgeA.inc"
// search vertical line and averages, -1,0,+1
#include "SearchLoopVA.inc"
// blend our results and loop
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
// Handle one 4x1 block of pixels
// Search a 9x3 area, no half pels
int SEARCH_EFFORT_FUNC(Max)
{
//see SearchLoopTop.inc for comments
#include "SearchLoopTop.inc"
// odd addresses -- the pixels at odd address wouldn't generate
// good luma values but we will mask those off
#include "SearchLoopOddA6.inc" // 4 odd v half pels, 3 to left & right
#include "SearchLoopOddA.inc" // 6 odd pels, 1 to left & right
RESET_CHROMA // pretend chroma diffs was 255 each
// even addresses -- use both luma and chroma from these
// search averages of 4 pixels left and right
#include "SearchLoopEdgeA8.inc"
// search averages of 2 pixels left and right
#include "SearchLoopEdgeA.inc"
// search vertical line and averages, -1,0,+1
#include "SearchLoopVA.inc"
// blend our results and loop
#include "SearchLoop0A.inc"
#include "SearchLoopBottom.inc"
}
#undef SEARCH_EFFORT_FUNC
tvtime-1.0.11/plugins/tomsmocomp/tomsmocompmacros.h 0000664 0001750 0001750 00000025254 12663345553 017502 0000000 0000000 #include
#include
#include
#include
#define USE_FOR_DSCALER
#define MyMemCopy pMyMemcpy
// Define a few macros for CPU dependent instructions.
// I suspect I don't really understand how the C macro preprocessor works but
// this seems to get the job done. // TRB 7/01
// BEFORE USING THESE YOU MUST SET:
// #define SSE_TYPE SSE (or MMX or 3DNOW)
// some macros for pavgb instruction
// V_PAVGB(mmr1, mmr2, mmr work register, smask) mmr2 may = mmrw if you can trash it
#define V_PAVGB_MMX(mmr1, mmr2, mmrw, smask) \
"movq " mmr2 ", " mmrw "\n\t" \
"pand " smask ", " mmrw "\n\t" \
"psrlw $1, " mmrw "\n\t" \
"pand " smask ", " mmr1 "\n\t" \
"psrlw $1, " mmr1 "\n\t" \
"paddusb " mmrw ", " mmr1 "\n\t"
#define V_PAVGB_SSE(mmr1, mmr2, mmrw, smask) "pavgb " mmr2 ", " mmr1 "\n\t"
#define V_PAVGB_3DNOW(mmr1, mmr2, mmrw, smask) "pavgusb " mmr2 ", " mmr1 "\n\t"
#define V_PAVGB(mmr1, mmr2, mmrw, smask) V_PAVGB2(mmr1, mmr2, mmrw, smask, SSE_TYPE)
#define V_PAVGB2(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp)
#define V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB_##ssetyp(mmr1, mmr2, mmrw, smask)
// some macros for pmaxub instruction
#define V_PMAXUB_MMX(mmr1, mmr2) \
"psubusb " mmr2 ", " mmr1 "\n\t" \
"paddusb " mmr2 ", " mmr1 "\n\t"
#define V_PMAXUB_SSE(mmr1, mmr2) "pmaxub " mmr2 ", " mmr1 "\n\t"
#define V_PMAXUB_3DNOW(mmr1, mmr2) V_PMAXUB_MMX(mmr1, mmr2) // use MMX version
#define V_PMAXUB(mmr1, mmr2) V_PMAXUB2(mmr1, mmr2, SSE_TYPE)
#define V_PMAXUB2(mmr1, mmr2, ssetyp) V_PMAXUB3(mmr1, mmr2, ssetyp)
#define V_PMAXUB3(mmr1, mmr2, ssetyp) V_PMAXUB_##ssetyp(mmr1, mmr2)
// some macros for pminub instruction
// V_PMINUB(mmr1, mmr2, mmr work register) mmr2 may NOT = mmrw
#define V_PMINUB_MMX(mmr1, mmr2, mmrw) \
"pcmpeqb " mmrw ", " mmrw "\n\t" \
"psubusb " mmr2 ", " mmrw "\n\t" \
"paddusb " mmrw ", " mmr1 "\n\t" \
"psubusb " mmrw ", " mmr1 "\n\t"
#define V_PMINUB_SSE(mmr1, mmr2, mmrw) "pminub " mmr2 ", " mmr1 "\n\t"
#define V_PMINUB_3DNOW(mmr1, mmr2, mmrw) V_PMINUB_MMX(mmr1, mmr2, mmrw) // use MMX version
#define V_PMINUB(mmr1, mmr2, mmrw) V_PMINUB2(mmr1, mmr2, mmrw, SSE_TYPE)
#define V_PMINUB2(mmr1, mmr2, mmrw, ssetyp) V_PMINUB3(mmr1, mmr2, mmrw, ssetyp)
#define V_PMINUB3(mmr1, mmr2, mmrw, ssetyp) V_PMINUB_##ssetyp(mmr1, mmr2, mmrw)
// some macros for movntq instruction
// V_MOVNTQ(mmr1, mmr2)
#define V_MOVNTQ_MMX(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t"
#define V_MOVNTQ_3DNOW(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t"
#define V_MOVNTQ_SSE(mmr1, mmr2) "movntq " mmr2 ", " mmr1 "\n\t"
#define V_MOVNTQ(mmr1, mmr2) V_MOVNTQ2(mmr1, mmr2, SSE_TYPE)
#define V_MOVNTQ2(mmr1, mmr2, ssetyp) V_MOVNTQ3(mmr1, mmr2, ssetyp)
#define V_MOVNTQ3(mmr1, mmr2, ssetyp) V_MOVNTQ_##ssetyp(mmr1, mmr2)
// end of macros
#ifdef IS_SSE2
#define MERGE4PIXavg(PADDR1, PADDR2) \
"movdqu " PADDR1 ", %%xmm0\n\t" /* our 4 pixels */ \
"movdqu " PADDR2 ", %%xmm1\n\t" /* our pixel2 value */ \
"movdqa %%xmm0, %%xmm2\n\t" /* another copy of our pixel1 value */ \
"movdqa %%xmm1, %%xmm3\n\t" /* another copy of our pixel1 value */ \
"psubusb %%xmm1, %%xmm2\n\t" \
"psubusb %%xmm0, %%xmm3\n\t" \
"por %%xmm3, %%xmm2\n\t" \
"pavgb %%xmm1, %%xmm0\n\t" /* avg of 2 pixels */ \
"movdqa %%xmm2, %%xmm3\n\t" /* another copy of our our weights */ \
"pxor %%xmm1, %%xmm1\n\t" \
"psubusb %%xmm7, %%xmm3\n\t" /* nonzero where old weights lower, else 0 */ \
"pcmpeqb %%xmm1, %%xmm3\n\t" /* now ff where new better, else 00 */ \
"pcmpeqb %%xmm3, %%xmm1\n\t" /* here ff where old better, else 00 */ \
"pand %%xmm3, %%xmm0\n\t" /* keep only better new pixels */ \
"pand %%xmm3, %%xmm2\n\t" /* and weights */ \
"pand %%xmm1, %%xmm5\n\t" /* keep only better old pixels */ \
"pand %%xmm1, %%xmm7\n\t" \
"por %%xmm0, %%xmm5\n\t" /* and merge new & old vals */ \
"por %%xmm2, %%xmm7\n\t"
#define MERGE4PIXavgH(PADDR1A, PADDR1B, PADDR2A, PADDR2B) \
"movdqu " PADDR1A ", %%xmm0\n\t" /* our 4 pixels */ \
"movdqu " PADDR2A ", %%xmm1\n\t" /* our pixel2 value */ \
"movdqu " PADDR1B ", %%xmm2\n\t" /* our 4 pixels */ \
"movdqu " PADDR2B ", %%xmm3\n\t" /* our pixel2 value */ \
"pavgb %%xmm2, %%xmm0\n\t" \
"pavgb %%xmm3, %%xmm1\n\t" \
"movdqa %%xmm0, %%xmm2\n\t" /* another copy of our pixel1 value */ \
"movdqa %%xmm1, %%xmm3\n\t" /* another copy of our pixel1 value */ \
"psubusb %%xmm1, %%xmm2\n\t" \
"psubusb %%xmm0, %%xmm3\n\t" \
"por %%xmm3, %%xmm2\n\t" \
"pavgb %%xmm1, %%xmm0\n\t" /* avg of 2 pixels */ \
"movdqa %%xmm2, %%xmm3\n\t" /* another copy of our our weights */ \
"pxor %%xmm1, %%xmm1\n\t" \
"psubusb %%xmm7, %%xmm3\n\t" /* nonzero where old weights lower, else 0 */ \
"pcmpeqb %%xmm1, %%xmm3\n\t" /* now ff where new better, else 00 */ \
"pcmpeqb %%xmm3, %%xmm1\n\t" /* here ff where old better, else 00 */ \
"pand %%xmm3, %%xmm0\n\t" /* keep only better new pixels */ \
"pand %%xmm3, %%xmm2\n\t" /* and weights */ \
"pand %%xmm1, %%xmm5\n\t" /* keep only better old pixels */ \
"pand %%xmm1, %%xmm7\n\t" \
"por %%xmm0, %%xmm5\n\t" /* and merge new & old vals */ \
"por %%xmm2, %%xmm7\n\t"
#define RESET_CHROMA "por " _UVMask ", %%xmm7\n\t"
#else // ifdef IS_SSE2
#define MERGE4PIXavg(PADDR1, PADDR2) \
"movq " PADDR1 ", %%mm0\n\t" /* our 4 pixels */ \
"movq " PADDR2 ", %%mm1\n\t" /* our pixel2 value */ \
"movq %%mm0, %%mm2\n\t" /* another copy of our pixel1 value */ \
"movq %%mm1, %%mm3\n\t" /* another copy of our pixel1 value */ \
"psubusb %%mm1, %%mm2\n\t" \
"psubusb %%mm0, %%mm3\n\t" \
"por %%mm3, %%mm2\n\t" \
V_PAVGB ("%%mm0", "%%mm1", "%%mm3", _ShiftMask) /* avg of 2 pixels */ \
"movq %%mm2, %%mm3\n\t" /* another copy of our our weights */ \
"pxor %%mm1, %%mm1\n\t" \
"psubusb %%mm7, %%mm3\n\t" /* nonzero where old weights lower, else 0 */ \
"pcmpeqb %%mm1, %%mm3\n\t" /* now ff where new better, else 00 */ \
"pcmpeqb %%mm3, %%mm1\n\t" /* here ff where old better, else 00 */ \
"pand %%mm3, %%mm0\n\t" /* keep only better new pixels */ \
"pand %%mm3, %%mm2\n\t" /* and weights */ \
"pand %%mm1, %%mm5\n\t" /* keep only better old pixels */ \
"pand %%mm1, %%mm7\n\t" \
"por %%mm0, %%mm5\n\t" /* and merge new & old vals */ \
"por %%mm2, %%mm7\n\t"
#define MERGE4PIXavgH(PADDR1A, PADDR1B, PADDR2A, PADDR2B) \
"movq " PADDR1A ", %%mm0\n\t" /* our 4 pixels */ \
"movq " PADDR2A ", %%mm1\n\t" /* our pixel2 value */ \
"movq " PADDR1B ", %%mm2\n\t" /* our 4 pixels */ \
"movq " PADDR2B ", %%mm3\n\t" /* our pixel2 value */ \
V_PAVGB("%%mm0", "%%mm2", "%%mm2", _ShiftMask) \
V_PAVGB("%%mm1", "%%mm3", "%%mm3", _ShiftMask) \
"movq %%mm0, %%mm2\n\t" /* another copy of our pixel1 value */ \
"movq %%mm1, %%mm3\n\t" /* another copy of our pixel1 value */ \
"psubusb %%mm1, %%mm2\n\t" \
"psubusb %%mm0, %%mm3\n\t" \
"por %%mm3, %%mm2\n\t" \
V_PAVGB("%%mm0", "%%mm1", "%%mm3", _ShiftMask) /* avg of 2 pixels */ \
"movq %%mm2, %%mm3\n\t" /* another copy of our our weights */ \
"pxor %%mm1, %%mm1\n\t" \
"psubusb %%mm7, %%mm3\n\t" /* nonzero where old weights lower, else 0 */ \
"pcmpeqb %%mm1, %%mm3\n\t" /* now ff where new better, else 00 */ \
"pcmpeqb %%mm3, %%mm1\n\t" /* here ff where old better, else 00 */ \
"pand %%mm3, %%mm0\n\t" /* keep only better new pixels */ \
"pand %%mm3, %%mm2\n\t" /* and weights */ \
"pand %%mm1, %%mm5\n\t" /* keep only better old pixels */ \
"pand %%mm1, %%mm7\n\t" \
"por %%mm0, %%mm5\n\t" /* and merge new & old vals */ \
"por %%mm2, %%mm7\n\t"
#define RESET_CHROMA "por " _UVMask ", %%mm7\n\t"
#endif
tvtime-1.0.11/plugins/tomsmocomp/SearchLoop0A.inc 0000664 0001750 0001750 00000001036 12663345553 016632 0000000 0000000 // -*- c++ -*-
// Searches just the center pixel, in both the old
// and new fields, but takes averages. This is an even
// pixel address. Any chroma match will be used. (YUY2)
// We best like finding 0 motion so we will bias everything we found previously
// up by a little, and adjust later
#ifdef IS_SSE2
"paddusb " _ONES ", %%xmm7\n\t" // bias toward no motion
#else
"paddusb " _ONES ", %%mm7\n\t" // bias toward no motion
#endif
MERGE4PIXavg("(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")") // center, in old and new
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddAH.inc 0000664 0001750 0001750 00000001213 12663345553 017306 0000000 0000000 // Searches 1 pixel to the left and right, in both the old
// and new fields, but takes v-half pel averages. These are odd
// pixel addresses. Any chroma match will not be used. (YUY2)
__asm
{
MERGE4PIXavgH(" XDI "-2, " XDI "+" XCX "-2, " XSI "+" XCX "+2, " XSI "+2*" XCX "+2) // up left, down right
MERGE4PIXavgH(" XDI "+2, " XDI "+" XCX "+2, " XSI "+" XCX "-2, " XSI "+2*" XCX "-2) // up right, down left
MERGE4PIXavgH(" XDI "+2*" XCX "-2, " XDI "+" XCX "-2, " XSI "+" XCX "+2, " XSI "+2) // down left, up right
MERGE4PIXavgH(" XDI "+2*" XCX "+2, " XDI "+" XCX "+2, " XSI "+" XCX "-2, " XSI "-2) // down right, up left
}
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopBottom.inc 0000664 0001750 0001750 00000010073 12663345553 017637 0000000 0000000 // -*- c++ -*-
#ifdef IS_SSE2
//sse2 code deleted for now
#else
// Version for non-SSE2
#ifdef SKIP_SEARCH
"movq %%mm6, %%mm0\n\t" // just use the results of our wierd bob
#else
// JA 9/Dec/2002
// failed experiment
// but leave in placeholder for me to play about
#ifdef DONT_USE_STRANGE_BOB
// Use the best weave if diffs less than 10 as that
// means the image is still or moving cleanly
// if there is motion we will clip which will catch anything
"psubusb " _FOURS ", %%mm7\n\t" // sets bits to zero if weave diff < 4
"pxor %%mm0, %%mm0\n\t"
"pcmpeqb %%mm0, %%mm7\n\t" // all ff where weave better, else 00
"pcmpeqb %%mm7, %%mm0\n\t" // all ff where bob better, else 00
"pand %%mm6, %%mm0\n\t" // use bob for these pixel values
"pand %%mm5, %%mm7\n\t" // use weave for these
"por %%mm7, %%mm0\n\t" // combine both
#else
// Use the better of bob or weave
// pminub mm4, TENS // the most we care about
V_PMINUB ("%%mm4", _TENS, "%%mm0") // the most we care about
"psubusb %%mm4, %%mm7\n\t" // foregive that much from weave est?
"psubusb " _FOURS ", %%mm7\n\t" // bias it a bit toward weave
"pxor %%mm0, %%mm0\n\t"
"pcmpeqb %%mm0, %%mm7\n\t" // all ff where weave better, else 00
"pcmpeqb %%mm7, %%mm0\n\t" // all ff where bob better, else 00
"pand %%mm6, %%mm0\n\t" // use bob for these pixel values
"pand %%mm5, %%mm7\n\t" // use weave for these
"por %%mm7, %%mm0\n\t" // combine both
#endif
// pminub mm0, Max_Vals // but clip to catch the stray error
V_PMINUB ("%%mm0", _Max_Vals, "%%mm1") // but clip to catch the stray error
// pmaxub mm0, Min_Vals
V_PMAXUB ("%%mm0", _Min_Vals)
#endif
MOVX " " _pDest ", %%" XAX "\n\t"
#ifdef USE_VERTICAL_FILTER
"movq %%mm0, %%mm1\n\t"
// pavgb mm0, qword ptr["XBX"]
V_PAVGB ("%%mm0", "(%%" XBX ")", "%%mm2", _ShiftMask)
// movntq qword ptr["XAX"+"XDX"], mm0
V_MOVNTQ ("(%" XAX ", %%" XDX ")", "%%mm0")
// pavgb mm1, qword ptr["XBX"+"XCX"]
V_PAVGB ("%%mm1", "(%%" XBX ", %%" XCX ")", "%%mm2", _ShiftMask)
"addq " _dst_pitchw ", %%"XBX
// movntq qword ptr["XAX"+"XDX"], mm1
V_MOVNTQ ("(%%" XAX ", %%" XDX ")", "%%mm1")
#else
// movntq qword ptr["XAX"+"XDX"], mm0
V_MOVNTQ ("(%%" XAX ", %%" XDX ")", "%%mm0")
#endif
LEAX " 8(%%" XDX "), %%" XDX "\n\t" // bump offset pointer
CMPX " " _Last8 ", %%" XDX "\n\t" // done with line?
"jb 1b\n\t" // y
#endif
MOVX " " _oldbx ", %%" XBX "\n\t"
: /* no outputs */
: "m"(pBob),
"m"(src_pitch2),
"m"(ShiftMask),
"m"(pDest),
"m"(dst_pitchw),
"m"(Last8),
"m"(pSrc),
"m"(pSrcP),
"m"(pBobP),
"m"(DiffThres),
"m"(Min_Vals),
"m"(Max_Vals),
"m"(FOURS),
"m"(TENS),
"m"(ONES),
"m"(UVMask),
"m"(Max_Mov),
"m"(YMask),
"m"(oldbx)
: XAX, XCX, XDX, XSI, XDI,
#ifdef ARCH_386
"st", "st(1)", "st(2)", "st(3)", "st(4)", "st(5)", "st(6)", "st(7)",
#endif
#ifdef __MMX__
"mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7",
#endif
"memory", "cc"
);
// adjust for next line
pSrc += src_pitch2;
pSrcP += src_pitch2;
pDest += dst_pitch2;
pBob += src_pitch2;
pBobP += src_pitch2;
}
return 0;
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddA2.inc 0000664 0001750 0001750 00000000526 12663345553 017266 0000000 0000000 // Searches 1 pixel to the left and right, in both the old
// and new fields, but takes averages. These are odd
// pixel addresses. Any chroma match will not be used. (YUY2)
MERGE4PIXavg("-2(%%" XDI ", %%" XCX ")", "2(%%" XSI ", %%" XCX ")") // left, right
MERGE4PIXavg("2(%%" XDI ", %%" XCX ")", "-2(%%" XSI ", %%" XCX ")") // right, left
tvtime-1.0.11/plugins/tomsmocomp/StrangeBob.inc 0000664 0001750 0001750 00000025241 12663345553 016444 0000000 0000000 // -*- c++ -*-
// First, get and save our possible Bob values
// Assume our pixels are layed out as follows with x the calc'd bob value
// and the other pixels are from the current field
//
// j a b c k current field
// x calculated line
// m d e f n current field
//
// we calc the bob value luma value as:
// if |j - n| < Thres && |a - m| > Thres
// avg(j,n)
// end if
// if |k - m| < Thres && |c - n| > Thres
// avg(k,m)
// end if
// if |c - d| < Thres && |b - f| > Thres
// avg(c,d)
// end if
// if |a - f| < Thres && |b - d| > Thres
// avg(a,f)
// end if
// if |b - e| < Thres
// avg(b,e)
// end if
// pickup any thing not yet set with avg(b,e)
// j, n
"pxor %%mm5, %%mm5\n\t"
"pxor %%mm6, %%mm6\n\t"
"pxor %%mm7, %%mm7\n\t"
"movq -2(%%" XBX "), %%mm0\n\t" // value a from top left
"movq -4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value m from bottom right
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(a,m)
"psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(a,m) > Thres else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(a,m) < Thres, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(a,m) > Thres, else 00
"movq -4(%%" XBX "), %%mm0\n\t" // value j
"movq 4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n
"movq %%mm0, %%mm2\n\t"
"pavgb %%mm1, %%mm2\n\t" // avg(j,n)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm0\n\t"
"psubusb %%mm3, %%mm1\n\t"
"por %%mm1, %%mm0\n\t" // abs(j,n)
"movq %%mm0, %%mm1\n\t"
"psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(j,n) > Thres else 0
"pxor %%mm3, %%mm3\n\t"
"pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(j,n) < Thres, else 00
"pand %%mm4, %%mm1\n\t"
"pand %%mm1, %%mm2\n\t"
"pand %%mm1, %%mm0\n\t"
"movq %%mm1, %%mm3\n\t"
"pxor %%mm5, %%mm3\n\t"
"pand %%mm3, %%mm6\n\t"
"pand %%mm3, %%mm7\n\t"
"pand %%mm3, %%mm5\n\t"
"por %%mm1, %%mm5\n\t"
"por %%mm2, %%mm6\n\t"
"por %%mm0, %%mm7\n\t"
// k & m
"movq 2(%%" XBX "), %%mm0\n\t" // value c from top left
"movq 4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n from bottom right
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(c,n)
"psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(c,n) > Thres else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(c,n) < Thres, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(c,n) > Thres, else 00
"movq 4(%%" XBX "), %%mm0\n\t" // value k
"movq -4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value m
"movq %%mm0, %%mm2\n\t"
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(k,m)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm0\n\t"
"psubusb %%mm3, %%mm1\n\t"
"por %%mm1, %%mm0\n\t" // abs(k,m)
"movq %%mm0, %%mm1\n\t"
"psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(k,m) > Thres else 0
"pxor %%mm3, %%mm3\n\t"
"pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(k,m) < Thres, else 00
"pand %%mm4, %%mm1\n\t"
"pand %%mm1, %%mm2\n\t"
"pand %%mm1, %%mm0\n\t"
"movq %%mm1, %%mm3\n\t"
"pxor %%mm5, %%mm3\n\t"
"pand %%mm3, %%mm6\n\t"
"pand %%mm3, %%mm7\n\t"
"pand %%mm3, %%mm5\n\t"
"por %%mm1, %%mm5\n\t"
"por %%mm2, %%mm6\n\t"
"por %%mm0, %%mm7\n\t"
// c & d
"movq (%%" XBX "), %%mm0\n\t" // value b from top left
"movq 2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f from bottom right
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(b,f)
"psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(b,f) > Thres else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(b,f) < Thres, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(b,f) > Thres, else 00
"movq 2(%%" XBX "), %%mm0\n\t" // value c
"movq -2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value d
"movq %%mm0, %%mm2\n\t"
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(c,d)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm0\n\t"
"psubusb %%mm3, %%mm1\n\t"
"por %%mm1, %%mm0\n\t" // abs(c,d)
"movq %%mm0, %%mm1\n\t"
"psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(c,d) > Thres else 0
"pxor %%mm3, %%mm3\n\t"
"pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(c,d) < Thres, else 00
"pand %%mm4, %%mm1\n\t"
"pand %%mm1, %%mm2\n\t"
"pand %%mm1, %%mm0\n\t"
"movq %%mm1, %%mm3\n\t"
"pxor %%mm5, %%mm3\n\t"
"pand %%mm3, %%mm6\n\t"
"pand %%mm3, %%mm7\n\t"
"pand %%mm3, %%mm5\n\t"
"por %%mm1, %%mm5\n\t"
"por %%mm2, %%mm6\n\t"
"por %%mm0, %%mm7\n\t"
// a & f
"movq (%%" XBX "), %%mm0\n\t" // value b from top left
"movq -2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value d from bottom right
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(b,d)
"psubusb " _DiffThres ", %%mm3\n\t" // nonzero where abs(b,d) > Thres else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where abs(b,d) < Thres, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where abs(b,d) > Thres, else 00
"movq -2(%%" XBX "), %%mm0\n\t" // value a
"movq 2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f
"movq %%mm0, %%mm2\n\t"
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(a,f)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm0\n\t"
"psubusb %%mm3, %%mm1\n\t"
"por %%mm1, %%mm0\n\t" // abs(a,f)
"movq %%mm0, %%mm1\n\t"
"psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(a,f) > Thres else 0
"pxor %%mm3, %%mm3\n\t"
"pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(a,f) < Thres, else 00
"pand %%mm4, %%mm1\n\t"
"pand %%mm1, %%mm2\n\t"
"pand %%mm1, %%mm0\n\t"
"movq %%mm1, %%mm3\n\t"
"pxor %%mm5, %%mm3\n\t"
"pand %%mm3, %%mm6\n\t"
"pand %%mm3, %%mm7\n\t"
"pand %%mm3, %%mm5\n\t"
"por %%mm1, %%mm5\n\t"
"por %%mm2, %%mm6\n\t"
"por %%mm0, %%mm7\n\t"
"pand " _YMask ", %%mm5\n\t" // mask out chroma from here
"pand " _YMask ", %%mm6\n\t" // mask out chroma from here
"pand " _YMask ", %%mm7\n\t" // mask out chroma from here
// b,e
"movq (%%" XBX "), %%mm0\n\t" // value b from top
"movq (%%" XBX ", %%" XCX "), %%mm1\n\t" // value e from bottom
"movq %%mm0, %%mm2\n\t"
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(b,e)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm0\n\t"
"psubusb %%mm3, %%mm1\n\t"
"por %%mm1, %%mm0\n\t" // abs(b,e)
"movq %%mm0, %%mm1\n\t"
"psubusb " _DiffThres ", %%mm1\n\t" // nonzero where abs(b,e) > Thres else 0
"pxor %%mm3, %%mm3\n\t"
"pcmpeqb %%mm3, %%mm1\n\t" // now ff where abs(b,e) < Thres, else 00
"pand %%mm1, %%mm2\n\t"
"pand %%mm1, %%mm0\n\t"
"movq %%mm1, %%mm3\n\t"
"pxor %%mm5, %%mm3\n\t"
"pand %%mm3, %%mm6\n\t"
"pand %%mm3, %%mm7\n\t"
"pand %%mm3, %%mm5\n\t"
"por %%mm1, %%mm5\n\t"
"por %%mm2, %%mm6\n\t"
"por %%mm0, %%mm7\n\t"
// bob in any leftovers
"movq (%%" XBX "), %%mm0\n\t" // value b from top
"movq (%%" XBX ", %%" XCX "), %%mm1\n\t" // value e from bottom
// We will also calc here the max/min values to later limit comb
// so the max excursion will not exceed the Max_Comb constant
#ifdef SKIP_SEARCH
"movq %%mm0, %%mm2\n\t"
// pminub %%mm2, %%mm1
V_PMINUB ("%%mm2", "%%mm1", "%%mm4")
// pmaxub %%mm6, %%mm2 // clip our current results so far to be above this
V_PMAXUB ("%%mm6", "%%mm2")
"movq %%mm0, %%mm2\n\t"
V_PMAXUB ("%%mm2", "%%mm1")
// pminub %%mm6, %%mm2 // clip our current results so far to be below this
V_PMINUB ("%%mm6", "%%mm2", "%%mm4")
#else
"movq %%mm0, %%mm2\n\t"
"movq (%%" XAX "), %%mm4\n\t"
"psubusb %%mm4, %%mm2\n\t"
"psubusb %%mm0, %%mm4\n\t"
"por %%mm2, %%mm4\n\t" // abs diff
"movq %%mm1, %%mm2\n\t"
"movq (%%" XAX ", %%" XCX "), %%mm3\n\t"
"psubusb %%mm3, %%mm2\n\t"
"psubusb %%mm1, %%mm3\n\t"
"por %%mm2, %%mm3\n\t" // abs diff
// pmaxub %%mm3, %%mm4 // top or bottom pixel moved most
V_PMAXUB ("%%mm3", "%%mm4") // top or bottom pixel moved most
"psubusb " _DiffThres ", %%mm3\n\t" // moved more than allowed? or goes to 0?
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where low motion, else high motion
"movq %%mm0, %%mm2\n\t"
// pminub %%mm2, %%mm1
V_PMINUB ("%%mm2", "%%mm1", "%%mm4")
// pmaxub %%mm6, %%mm2 // clip our current results so far to be above this
V_PMAXUB ("%%mm6", "%%mm2")
"psubusb %%mm3, %%mm2\n\t" // maybe decrease it to 0000.. if no surround motion
"movq %%mm2, " _Min_Vals "\n\t"
"movq %%mm0, %%mm2\n\t"
V_PMAXUB ("%%mm2", "%%mm1")
// pminub %%mm6, %%mm2 // clip our current results so far to be below this
V_PMINUB ("%%mm6", "%%mm2", "%%mm4")
"paddusb %%mm3, %%mm2\n\t" // maybe increase it to ffffff if no surround motion
"movq %%mm2, " _Max_Vals "\n\t"
#endif
"movq %%mm0, %%mm2\n\t"
// pavgb %%mm2, %%mm1 // avg(b,e)
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(b,e)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(b,e)
"movq %%mm3, %%mm1\n\t" // keep copy of diffs
"pxor %%mm4, %%mm4\n\t"
"psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00
"pcmpeqb %%mm0, %%mm0\n\t"
"pandn %%mm0, %%mm5\n\t"
"por %%mm5, %%mm3\n\t"
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00
"pand %%mm3, %%mm1\n\t"
"pand %%mm3, %%mm2\n\t"
"pand %%mm4, %%mm6\n\t"
"pand %%mm4, %%mm7\n\t"
"por %%mm2, %%mm6\n\t" // our x2 value
"por %%mm1, %%mm7\n\t" // our x2 diffs
"movq %%mm7, %%mm4\n\t" // save as bob uncertainty indicator
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopTop.inc 0000664 0001750 0001750 00000014256 12663345553 017144 0000000 0000000 // -*- c++ -*-
unsigned char* pDest;
const unsigned char* pSrcP;
const unsigned char* pSrc;
const unsigned char* pBob;
const unsigned char* pBobP;
int64_t Max_Mov = 0x0404040404040404ull;
int64_t DiffThres = 0x0f0f0f0f0f0f0f0full;
int64_t YMask = 0x00ff00ff00ff00ffull; // keeps only luma
int64_t UVMask = 0xff00ff00ff00ff00ull; // keeps only chroma
int64_t TENS = 0x0a0a0a0a0a0a0a0aull;
int64_t FOURS = 0x0404040404040404ull;
int64_t ONES = 0x0101010101010101ull;
int64_t Min_Vals = 0x0000000000000000ull;
int64_t Max_Vals = 0x0000000000000000ull;
int64_t ShiftMask = 0xfefffefffefffeffull;
// long is int32 on ARCH_368, int64 on ARCH_AMD64. Declaring it this way
// saves a lot of xor's to delete 64bit garbage.
#if defined(DBL_RESIZE) || defined(USE_FOR_DSCALER)
long src_pitch2 = src_pitch; // even & odd lines are not longerleaved in DScaler
#else
long src_pitch2 = 2 * src_pitch; // even & odd lines are longerleaved in Avisynth
#endif
long dst_pitch2 = 2 * dst_pitch;
long y;
#ifdef IS_SSE2
long Last8 = (rowsize-16); // ofs to last 16 bytes in row for SSE2
#else
long Last8 = (rowsize-8); // ofs to last 8 bytes in row
#endif
long dst_pitchw = dst_pitch; // local stor so asm can ref
pSrc = pWeaveSrc; // polongs 1 weave line above
pSrcP = pWeaveSrcP; // "
#ifdef DBL_RESIZE
#ifdef USE_VERTICAL_FILTER
pDest = pWeaveDest + dst_pitch2;
#else
pDest = pWeaveDest + 3*dst_pitch;
#endif
#else
#ifdef USE_VERTICAL_FILTER
pDest = pWeaveDest + dst_pitch;
#else
pDest = pWeaveDest + dst_pitch2;
#endif
#endif
if (TopFirst)
{
pBob = pCopySrc + src_pitch2; // remember one weave line just copied previously
pBobP = pCopySrcP + src_pitch2;
}
else
{
pBob = pCopySrc;
pBobP = pCopySrcP;
}
#ifndef _pBob
#define _pBob "%0"
#define _src_pitch2 "%1"
#define _ShiftMask "%2"
#define _pDest "%3"
#define _dst_pitchw "%4"
#define _Last8 "%5"
#define _pSrc "%6"
#define _pSrcP "%7"
#define _pBobP "%8"
#define _DiffThres "%9"
#define _Min_Vals "%10"
#define _Max_Vals "%11"
#define _FOURS "%12"
#define _TENS "%13"
#define _ONES "%14"
#define _UVMask "%15"
#define _Max_Mov "%16"
#define _YMask "%17"
#define _oldbx "%18"
#endif
long oldbx;
for (y=1; y < FldHeight-1; y++)
{
// pretend it's indented -->>
__asm__ __volatile__
(
// Loop general reg usage
//
// XAX - pBobP, then pDest
// XBX - pBob
// XCX - src_pitch2
// XDX - current offset
// XDI - prev weave pixels, 1 line up
// XSI - next weave pixels, 1 line up
// Save "XBX" (-fPIC)
MOVX " %%" XBX ", " _oldbx "\n\t"
#ifdef IS_SSE2
// sse2 code deleted for now
#else
// simple bob first 8 bytes
MOVX " " _pBob ", %%" XBX "\n\t"
MOVX " " _src_pitch2 ", %%" XCX "\n\t"
#ifdef USE_VERTICAL_FILTER
"movq (%%" XBX "), %%mm0\n\t"
"movq (%%" XBX ", %%" XCX "), %%mm1\n\t" //, qword ptr["XBX"+"XCX"]
"movq %%mm0, %%mm2\n\t"
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // halfway between
V_PAVGB ("%%mm0", "%%mm2", "%%mm3", _ShiftMask) // 1/4 way
V_PAVGB ("%%mm1", "%%mm2", "%%mm3", _ShiftMask) // 3/4 way
MOVX " " _pDest ", %%" XDI "\n\t"
MOVX " " _dst_pitchw ", %%" XAX "\n\t"
V_MOVNTQ ("(%%" XDI ")", "%%mm0")
V_MOVNTQ ("(%%" XDI ", %%" XAX ")", "%%mm1") // qword ptr["XDI"+"XAX"], mm1
// simple bob last 8 bytes
MOVX " " _Last8 ", %%" XDX "\n\t"
LEAX " (%%" XBX ", %%" XDX "), %%" XSI "\n\t" // ["XBX"+"XDX"]
"movq (%%" XSI "), %%mm0\n\t"
"movq (%%" XSI ", %%" XCX "), %%mm1\n\t" // qword ptr["XSI"+"XCX"]
"movq %%mm0, %%mm2\n\t"
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // halfway between
V_PAVGB ("%%mm0", "%%mm2", "%%mm3", _ShiftMask) // 1/4 way
V_PAVGB ("%%mm1", "%%mm2", "%%mm3", _ShiftMask) // 3/4 way
ADDX " %%" XDX ", %%" XDI "\n\t" // last 8 bytes of dest
V_MOVNTQ ("%%" XDI "", "%%mm0")
V_MOVNTQ ("(%%" XDI ", %%" XAX ")", "%%mm1") // qword ptr["XDI"+"XAX"], mm1)
#else
"movq (%%" XBX "), %%mm0\n\t"
// pavgb mm0, qword ptr["XBX"+"XCX"]
V_PAVGB ("%%mm0", "(%%" XBX ", %%" XCX ")", "%%mm2", _ShiftMask) // qword ptr["XBX"+"XCX"], mm2, ShiftMask)
MOVX " " _pDest ", %%" XDI "\n\t"
V_MOVNTQ ("(%%" XDI ")", "%%mm0")
// simple bob last 8 bytes
MOVX " " _Last8 ", %%" XDX "\n\t"
LEAX " (%%" XBX ", %%" XDX "), %%" XSI "\n\t" //"XSI", ["XBX"+"XDX"]
"movq (%%" XSI "), %%mm0\n\t"
// pavgb mm0, qword ptr["XSI"+"XCX"]
V_PAVGB ("%%mm0", "(%%" XSI ", %%" XCX ")", "%%mm2", _ShiftMask) // qword ptr["XSI"+"XCX"], mm2, ShiftMask)
V_MOVNTQ ("(%%" XDI ", %%" XDX ")", "%%mm0") // qword ptr["XDI"+"XDX"], mm0)
#endif
// now loop and get the middle qwords
MOVX " " _pSrc ", %%" XSI "\n\t"
MOVX " " _pSrcP ", %%" XDI "\n\t"
MOVX " $8, %%" XDX "\n\t" // curr offset longo all lines
"1:\n\t"
MOVX " " _pBobP ", %%" XAX "\n\t"
ADDX " $8, %%" XDI "\n\t"
ADDX " $8, %%" XSI "\n\t"
ADDX " $8, %%" XBX "\n\t"
ADDX " %%" XDX ", %%" XAX "\n\t"
#ifdef USE_STRANGE_BOB
#include "StrangeBob.inc"
#else
#include "WierdBob.inc"
#endif
// For non-SSE2:
// through out most of the rest of this loop we will malongain
// mm4 our min bob value
// mm5 best weave pixels so far
// mm6 our max Bob value
// mm7 best weighted pixel ratings so far
// We will keep a slight bias to using the weave pixels
// from the current location, by rating them by the min distance
// from the Bob value instead of the avg distance from that value.
// our best and only rating so far
"pcmpeqb %%mm7, %%mm7\n\t" // ffff, say we didn't find anything good yet
#endif
tvtime-1.0.11/plugins/tomsmocomp/WierdBob.inc 0000664 0001750 0001750 00000015145 12663345553 016115 0000000 0000000 // -*- c++ -*-
// First, get and save our possible Bob values
// Assume our pixels are layed out as follows with x the calc'd bob value
// and the other pixels are from the current field
//
// j a b c k current field
// x calculated line
// m d e f n current field
//
// we calc the bob value as:
// x2 = either avg(a,f), avg(c,d), avg(b,e), avg(j,n), or avg(k,m)
// selected for the smallest of abs(a,f), abs(c,d), or abs(b,e), etc.
// a,f
"movq -2(%%" XBX "), %%mm0\n\t" // value a from top left
"movq 2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f from bottom right
"movq %%mm0, %%mm6\n\t"
// pavgb %%mm6, %%mm1 // avg(a,f), also best so far
V_PAVGB ("%%mm6", "%%mm1", "%%mm7", _ShiftMask) // avg(a,f), also best so far
"movq %%mm0, %%mm7\n\t"
"psubusb %%mm1, %%mm7\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm7\n\t" // abs diff, also best so far
// c,d
"movq 2(%%" XBX "), %%mm0\n\t" // value a from top left
"movq -2(%%" XBX ", %%" XCX "), %%mm1\n\t" // value f from bottom right
"movq %%mm0, %%mm2\n\t"
// pavgb %%mm2, %%mm1 // avg(c,d)
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(c,d)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(c,d)
"movq %%mm3, %%mm1\n\t" // keep copy
"psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00
"pand %%mm3, %%mm1\n\t" // keep only better new avg and abs
"pand %%mm3, %%mm2\n\t"
"pand %%mm4, %%mm6\n\t"
"pand %%mm4, %%mm7\n\t"
"por %%mm2, %%mm6\n\t" // and merge new & old vals keeping best
"por %%mm1, %%mm7\n\t"
"por " _UVMask ", %%mm7\n\t" // but we know chroma is worthless so far
"pand " _YMask ", %%mm5\n\t" // mask out chroma from here also
// j,n
"movq -4(%%" XBX "), %%mm0\n\t" // value j from top left
"movq 4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n from bottom right
"movq %%mm0, %%mm2\n\t"
// pavgb %%mm2, %%mm1 // avg(j,n)
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(j,n)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(j-n)
"movq %%mm3, %%mm1\n\t" // keep copy
"psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00
"pand %%mm3, %%mm1\n\t" // keep only better new avg and abs
"pand %%mm2, %%mm3\n\t"
"pand %%mm4, %%mm6\n\t"
"pand %%mm4, %%mm7\n\t"
"por %%mm3, %%mm6\n\t" // and merge new & old vals keeping best
"por %%mm1, %%mm7\n\t" // "
// k, m
"movq 4(%%" XBX "), %%mm0\n\t" // value k from top right
"movq -4(%%" XBX ", %%" XCX "), %%mm1\n\t" // value n from bottom left
"movq %%mm0, %%mm4\n\t"
// pavgb %%mm4, %%mm1 // avg(k,m)
V_PAVGB ("%%mm4", "%%mm1", "%%mm3", _ShiftMask) // avg(k,m)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(k,m)
"movq %%mm3, %%mm1\n\t" // keep copy
"movq %%mm4, %%mm2\n\t" // avg(k,m)
"psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00
"pand %%mm3, %%mm1\n\t" // keep only better new avg and abs
"pand %%mm2, %%mm3\n\t"
"pand %%mm4, %%mm6\n\t"
"pand %%mm4, %%mm7\n\t"
"por %%mm3, %%mm6\n\t" // and merge new & old vals keeping best
"por %%mm1, %%mm7\n\t" // "
// b,e
"movq (%%" XBX "), %%mm0\n\t" // value b from top
"movq (%%" XBX ", %%" XCX "), %%mm1\n\t" // value e from bottom
// We will also calc here the max/min values to later limit comb
// so the max excursion will not exceed the Max_Comb constant
#ifdef SKIP_SEARCH
"movq %%mm0, %%mm2\n\t"
// pminub %%mm2, %%mm1
V_PMINUB ("%%mm2", "%%mm1", "%%mm4")
// pmaxub %%mm6, %%mm2 // clip our current results so far to be above this
V_PMAXUB ("%%mm6", "%%mm2")
"movq %%mm0, %%mm2\n\t"
V_PMAXUB ("%%mm2", "%%mm1")
// pminub %%mm6, %%mm2 // clip our current results so far to be below this
V_PMINUB ("%%mm6", "%%mm2", "%%mm4")
#else
"movq %%mm0, %%mm2\n\t"
"movq (%%" XAX "), %%mm4\n\t"
"psubusb %%mm4, %%mm2\n\t"
"psubusb %%mm0, %%mm4\n\t"
"por %%mm2, %%mm4\n\t" // abs diff
"movq %%mm1, %%mm2\n\t"
"movq (%%" XAX ", %%" XCX "), %%mm3\n\t"
"psubusb %%mm3, %%mm2\n\t"
"psubusb %%mm1, %%mm3\n\t"
"por %%mm2, %%mm3\n\t" // abs diff
// pmaxub %%mm3, %%mm4 // top or bottom pixel moved most
V_PMAXUB ("%%mm3", "%%mm4") // top or bottom pixel moved most
"psubusb " _Max_Mov ", %%mm3\n\t" // moved more than allowed? or goes to 0?
"pxor %%mm4, %%mm4\n\t"
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where low motion, else high motion
"movq %%mm0, %%mm2\n\t"
// pminub %%mm2, %%mm1
V_PMINUB ("%%mm2", "%%mm1", "%%mm4")
// pmaxub %%mm6, %%mm2 // clip our current results so far to be above this
V_PMAXUB ("%%mm6", "%%mm2")
"psubusb %%mm3, %%mm2\n\t" // maybe decrease it to 0000.. if no surround motion
"movq %%mm2, " _Min_Vals "\n\t"
"movq %%mm0, %%mm2\n\t"
V_PMAXUB ("%%mm2", "%%mm1")
// pminub %%mm6, %%mm2 // clip our current results so far to be below this
V_PMINUB ("%%mm6", "%%mm2", "%%mm4")
"paddusb %%mm3, %%mm2\n\t" // maybe increase it to ffffff if no surround motion
"movq %%mm2, " _Max_Vals "\n\t"
#endif
"movq %%mm0, %%mm2\n\t"
// pavgb %%mm2, %%mm1 // avg(b,e)
V_PAVGB ("%%mm2", "%%mm1", "%%mm3", _ShiftMask) // avg(b,e)
"movq %%mm0, %%mm3\n\t"
"psubusb %%mm1, %%mm3\n\t"
"psubusb %%mm0, %%mm1\n\t"
"por %%mm1, %%mm3\n\t" // abs(c,d)
"movq %%mm3, %%mm1\n\t" // keep copy of diffs
"pxor %%mm4, %%mm4\n\t"
"psubusb %%mm7, %%mm3\n\t" // nonzero where new weights bigger, else 0
"pcmpeqb %%mm4, %%mm3\n\t" // now ff where new better, else 00
"pcmpeqb %%mm3, %%mm4\n\t" // here ff where old better, else 00
"pand %%mm3, %%mm1\n\t"
"pand %%mm3, %%mm2\n\t"
"pand %%mm4, %%mm6\n\t"
"pand %%mm4, %%mm7\n\t"
"por %%mm2, %%mm6\n\t" // our x2 value
"por %%mm1, %%mm7\n\t" // our x2 diffs
"movq %%mm7, %%mm4\n\t" // save as bob uncertainty indicator
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddA.inc 0000664 0001750 0001750 00000001064 12663345553 017202 0000000 0000000 // -*- c++ -*-
// Searches 1 pixel to the left and right, in both the old
// and new fields, but takes averages. These are odd
// pixel addresses. Any chroma match will not be used. (YUY2)
MERGE4PIXavg("-2(%%" XDI ")", "2(%%" XSI ", %%" XCX ", 2)") // up left, down right
MERGE4PIXavg("2(%%" XDI ")", "-2(%%" XSI ", %%" XCX ", 2)") // up right, down left
MERGE4PIXavg("-2(%%" XDI ", %%" XCX ", 2)", "2(%%" XSI ")") // down left, up right
MERGE4PIXavg("2(%%" XDI ", %%" XCX ", 2)", "-2(%%" XSI ")") // down right, up left
#include "SearchLoopOddA2.inc"
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopEdgeA8.inc 0000664 0001750 0001750 00000001267 12663345553 017435 0000000 0000000 // -*- c++ -*-
// Searches 4 pixel to the left and right, in both the old
// and new fields, but takes averages. These are even
// pixel addresses. Chroma match will be used. (YUY2)
MERGE4PIXavg("-8(%%" XDI ")", "8(%%" XSI ", %%" XCX ", 2)") // up left, down right
MERGE4PIXavg("8(%%" XDI ")", "-8(%%" XSI ", %%" XCX ", 2)") // up right, down left
MERGE4PIXavg("-8(%%" XDI ", %%" XCX ")", "8(%%" XSI ", %%" XCX ")") // left, right
MERGE4PIXavg("8(%%" XDI ", %%" XCX ")", "-8(%%" XSI ", %%" XCX ")") // right, left
MERGE4PIXavg("-8(%%" XDI ", %%" XCX ", 2)", "8(%%" XSI ")") // down left, up right
MERGE4PIXavg("8(%%" XDI ", %%" XCX ", 2)", "-8(%%" XSI ")") // down right, up left
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddAH2.inc 0000664 0001750 0001750 00000000722 12663345553 017374 0000000 0000000 // Searches 1 pixel to the left and right, in both the old
// and new fields, but takes vertical averages. These are odd
// pixel addresses. Any chroma match will not be used. (YUY2)
MERGE4PIXavgH("-2(%%" XDI ", %%" XCX ")", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "2(%%" XSI ", %%" XCX ")") // left, right
MERGE4PIXavgH("2(%%" XDI ", %%" XCX ")", "(%%" XDI ", %%" XCX ")", "(%%" XSI ", %%" XCX ")", "-2(%%" XSI ", %%" XCX ")") // right, left
tvtime-1.0.11/plugins/tomsmocomp/SearchLoopOddA6.inc 0000664 0001750 0001750 00000001276 12663345553 017275 0000000 0000000 // -*- c++ -*-
// Searches 3 pixels to the left and right, in both the old
// and new fields, but takes averages. These are odd
// pixel addresses. Any chroma match will not be used. (YUY2)
MERGE4PIXavg("-6(%%" XDI ")", "6(%%" XSI ", %%" XCX ", 2)") // up left, down right
MERGE4PIXavg("6(%%" XDI ")", "-6(%%" XSI ", %%" XCX ", 2)") // up right, down left
MERGE4PIXavg("-6(%%" XDI ", %%" XCX ")", "6(%%" XSI ", %%" XCX ")") // left, right
MERGE4PIXavg("6(%%" XDI ", %%" XCX ")", "-6(%%" XSI ", %%" XCX ")") // right, left
MERGE4PIXavg("-6(%%" XDI ", %%" XCX ", 2)", "6(%%" XSI ")") // down left, up right
MERGE4PIXavg("6(%%" XDI ", %%" XCX ", 2)", "-6(%%" XSI ")") // down right, up left
tvtime-1.0.11/plugins/kdetv_greedyh.c 0000664 0001750 0001750 00000007527 12663345553 014525 0000000 0000000 /**
* Copyright (C) 2004 Billy Biggs
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#include
#include
#include
#include "dscalerapi.h"
#include "deinterlace.h"
#include "copyfunctions.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "mm_accel.h"
#include "greedyh.h"
static void deinterlace_frame_di_greedyh( uint8_t *output, int outstride,
deinterlace_frame_data_t *data,
int bottom_field, int second_field,
int width, int height )
{
TDeinterlaceInfo Info;
TPicture Picture[ MAX_PICTURE_HISTORY ];
int stride = (width*2);
int i;
Info.FieldHeight = height / 2;
Info.FrameHeight = height;
Info.FrameWidth = width;
Info.InputPitch = stride*2;
Info.LineLength = stride;
Info.OverlayPitch = outstride;
Info.pMemcpy = fast_memcpy;
if( bottom_field ) {
Picture[ 0 ].pData = data->f0 + stride;
Picture[ 0 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 1 ].pData = data->f0;
Picture[ 1 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 2 ].pData = data->f1 + stride;
Picture[ 2 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 3 ].pData = data->f1;
Picture[ 3 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 4 ].pData = data->f2 + stride;
Picture[ 4 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 5 ].pData = data->f2;
Picture[ 5 ].Flags = PICTURE_INTERLACED_EVEN;
} else {
Picture[ 0 ].pData = data->f0;
Picture[ 0 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 1 ].pData = data->f1 + stride;
Picture[ 1 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 2 ].pData = data->f1;
Picture[ 2 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 3 ].pData = data->f2 + stride;
Picture[ 3 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 4 ].pData = data->f2;
Picture[ 4 ].Flags = PICTURE_INTERLACED_EVEN;
}
Info.Overlay = output;
for( i = 0; i < MAX_PICTURE_HISTORY; i++ ) {
Info.PictureHistory[ i ] = &(Picture[ i ]);
}
if( mm_accel() & MM_ACCEL_X86_MMXEXT ) {
greedyh_filter_sse( &Info );
} else if( mm_accel() & MM_ACCEL_X86_3DNOW ) {
greedyh_filter_3dnow( &Info );
} else {
greedyh_filter_mmx( &Info );
}
}
static deinterlace_method_t greedymethod =
{
"Motion Adaptive: Advanced Detection",
"AdaptiveAdvanced",
4,
MM_ACCEL_X86_MMX,
0,
0,
0,
0,
deinterlace_frame_di_greedyh,
0,
{ "Uses heuristics to detect motion in the input",
"frames and reconstruct image detail where",
"possible. Use this for high quality output",
"even on monitors set to an arbitrary refresh",
"rate.",
"",
"Advanced detection uses linear interpolation",
"where motion is detected, using a four-field",
"buffer. This is the Greedy: High Motion",
"deinterlacer from DScaler." }
};
deinterlace_method_t *dscaler_greedyh_get_method( void )
{
greedyh_init();
return &greedymethod;
}
tvtime-1.0.11/plugins/weave.c 0000664 0001750 0001750 00000003506 12354244126 012770 0000000 0000000 /**
* Pure weave deinterlacing plugin.
*
* Copyright (C) 2002 Billy Biggs .
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#include "copyfunctions.h"
#include "deinterlace.h"
static void deinterlace_scanline_weave( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m1, width );
}
static void copy_scanline( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m0, width );
}
static deinterlace_method_t weavemethod =
{
"Weave Last Field",
"Weave",
2,
0,
0,
1,
deinterlace_scanline_weave,
copy_scanline,
0,
0,
{ "Only updates the most recent field",
"",
"",
"",
"",
"",
"",
"",
"",
"" }
};
deinterlace_method_t *weave_get_method( void )
{
return &weavemethod;
}
tvtime-1.0.11/plugins/linear.c 0000664 0001750 0001750 00000004102 12354244126 013124 0000000 0000000 /**
* Copyright (C) 2002 Billy Biggs .
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#include "copyfunctions.h"
#include "deinterlace.h"
static void deinterlace_scanline_linear( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
interpolate_packed422_scanline( output, data->t0, data->b0, width );
}
static void copy_scanline( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m0, width );
}
static deinterlace_method_t linearmethod =
{
"Television: Full resolution",
"TelevisionFull",
1,
0,
0,
1,
deinterlace_scanline_linear,
copy_scanline,
0,
0,
{ "Expands each field independently without",
"blurring or copying in time. Use this if you",
"want TV-quality with low CPU, and you have",
"configured your monitor to run at the refresh",
"rate of the video signal.",
"",
"Full resolution mode expands each field",
"to full size for high quality fullscreen use.",
"",
"" }
};
deinterlace_method_t *linear_get_method( void )
{
return &linearmethod;
}
tvtime-1.0.11/plugins/Makefile.in 0000664 0001750 0001750 00000035453 13026503063 013563 0000000 0000000 # Makefile.in generated by automake 1.15 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
# plugins/Makefile.am distributes the plugins that come with tvtime.
# Copyright (C) 2002, 2003, 2004 Billy Biggs
#
# 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.
#
# 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.
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = plugins
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
$(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \
$(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \
$(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \
$(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/isc-posix.m4 \
$(top_srcdir)/m4/lcmessage.m4 $(top_srcdir)/m4/lib-ld.m4 \
$(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
$(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
$(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/uintmax_t.m4 \
$(top_srcdir)/m4/ulonglong.m4 $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
SOURCES =
DIST_SOURCES =
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALLOCA = @ALLOCA@
ALSA_CFLAGS = @ALSA_CFLAGS@
ALSA_LIBS = @ALSA_LIBS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
ASOUND_LIBS = @ASOUND_LIBS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
CATOBJEXT = @CATOBJEXT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DATADIRNAME = @DATADIRNAME@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FREETYPE_CONFIG = @FREETYPE_CONFIG@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
INTLLIBS = @INTLLIBS@
INTLOBJS = @INTLOBJS@
INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBXML2_CONFIG = @LIBXML2_CONFIG@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
MKINSTALLDIRS = @MKINSTALLDIRS@
MSGFMT = @MSGFMT@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PNG_LIBS = @PNG_LIBS@
POSUB = @POSUB@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
X11_CFLAGS = @X11_CFLAGS@
X11_LIBS = @X11_LIBS@
XGETTEXT = @XGETTEXT@
XMKMF = @XMKMF@
XML2_FLAG = @XML2_FLAG@
XML2_LIBS = @XML2_LIBS@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
ZLIB_LIBS = @ZLIB_LIBS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
found_cc = @found_cc@
found_cxx = @found_cxx@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
EXTRA_DIST = tomsmocomp/SearchLoop0A.inc tomsmocomp/SearchLoopBottom.inc \
tomsmocomp/SearchLoopEdgeA.inc tomsmocomp/SearchLoopEdgeA8.inc \
tomsmocomp/SearchLoopOddA.inc tomsmocomp/SearchLoopOddA2.inc \
tomsmocomp/SearchLoopOddA6.inc tomsmocomp/SearchLoopOddAH.inc \
tomsmocomp/SearchLoopOddAH2.inc tomsmocomp/SearchLoopTop.inc \
tomsmocomp/SearchLoopVA.inc tomsmocomp/SearchLoopVAH.inc \
tomsmocomp/StrangeBob.inc tomsmocomp/TomsMoCompAll.inc \
tomsmocomp/TomsMoCompAll2.inc tomsmocomp/WierdBob.inc \
tomsmocomp/tomsmocompmacros.h x86-64_macros.inc greedyh.asm
all: all-am
.SUFFIXES:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign plugins/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign plugins/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
tags TAGS:
ctags CTAGS:
cscope cscopelist:
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-am
all-am: Makefile
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
-rm -f Makefile
distclean-am: clean-am distclean-generic
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am:
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am:
.MAKE: install-am install-strip
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
cscopelist-am ctags-am distclean distclean-generic \
distclean-libtool distdir dvi dvi-am html html-am info info-am \
install install-am install-data install-data-am install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-info install-info-am install-man \
install-pdf install-pdf-am install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags-am uninstall uninstall-am
.PRECIOUS: Makefile
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
tvtime-1.0.11/plugins/greedyh.h 0000664 0001750 0001750 00000002157 12354244126 013316 0000000 0000000 /**
* Copyright (C) 2004 Billy Biggs
*
* 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, or (at your option)
* any later version.
*
* 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.
*
* 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.
*/
#ifndef GREEDYH_H_INCLUDED
#define GREEDYH_H_INCLUDED
#include "dscalerapi.h"
#ifdef __cplusplus
extern "C" {
#endif
void greedyh_init( void );
void greedyh_filter_mmx( TDeinterlaceInfo* pInfo );
void greedyh_filter_3dnow( TDeinterlaceInfo* pInfo );
void greedyh_filter_sse( TDeinterlaceInfo* pInfo );
#ifdef __cplusplus
};
#endif
#endif /* GREEDYH_H_INCLUDED */
tvtime-1.0.11/plugins/Makefile.am 0000664 0001750 0001750 00000002535 12354244126 013552 0000000 0000000 # plugins/Makefile.am distributes the plugins that come with tvtime.
# Copyright (C) 2002, 2003, 2004 Billy Biggs
#
# 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.
#
# 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.
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
EXTRA_DIST = tomsmocomp/SearchLoop0A.inc tomsmocomp/SearchLoopBottom.inc \
tomsmocomp/SearchLoopEdgeA.inc tomsmocomp/SearchLoopEdgeA8.inc \
tomsmocomp/SearchLoopOddA.inc tomsmocomp/SearchLoopOddA2.inc \
tomsmocomp/SearchLoopOddA6.inc tomsmocomp/SearchLoopOddAH.inc \
tomsmocomp/SearchLoopOddAH2.inc tomsmocomp/SearchLoopTop.inc \
tomsmocomp/SearchLoopVA.inc tomsmocomp/SearchLoopVAH.inc \
tomsmocomp/StrangeBob.inc tomsmocomp/TomsMoCompAll.inc \
tomsmocomp/TomsMoCompAll2.inc tomsmocomp/WierdBob.inc \
tomsmocomp/tomsmocompmacros.h x86-64_macros.inc greedyh.asm
tvtime-1.0.11/plugins/greedyhmacros.h 0000664 0001750 0001750 00000007305 12663345553 014534 0000000 0000000 /////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2001 Tom Barry. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
//
// This file is subject to the terms of the GNU General Public License as
// published by the Free Software Foundation. A copy of this license is
// included with this software distribution in the file COPYING. If you
// do not have a copy, you may obtain a copy by writing to the Free
// Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
//
// This software 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
//
/////////////////////////////////////////////////////////////////////////////
// Define a few macros for CPU dependent instructions.
// I suspect I don't really understand how the C macro preprocessor works but
// this seems to get the job done. // TRB 7/01
// BEFORE USING THESE YOU MUST SET:
// #define SSE_TYPE SSE (or MMX or 3DNOW)
// some macros for pavgb instruction
// V_PAVGB(mmr1, mmr2, mmr work register, smask) mmr2 may = mmrw if you can trash it
#define V_PAVGB_MMX(mmr1, mmr2, mmrw, smask) \
"movq " mmr2 ", " mmrw "\n\t" \
"pand " smask ", " mmrw "\n\t" \
"psrlw $1, " mmrw "\n\t" \
"pand " smask ", " mmr1 "\n\t" \
"psrlw $1, " mmr1 "\n\t" \
"paddusb " mmrw ", " mmr1 "\n\t"
#define V_PAVGB_SSE(mmr1, mmr2, mmrw, smask) "pavgb " mmr2 ", " mmr1 "\n\t"
#define V_PAVGB_3DNOW(mmr1, mmr2, mmrw, smask) "pavgusb " mmr2 ", " mmr1 "\n\t"
#define V_PAVGB(mmr1, mmr2, mmrw, smask) V_PAVGB2(mmr1, mmr2, mmrw, smask, SSE_TYPE)
#define V_PAVGB2(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp)
#define V_PAVGB3(mmr1, mmr2, mmrw, smask, ssetyp) V_PAVGB_##ssetyp(mmr1, mmr2, mmrw, smask)
// some macros for pmaxub instruction
#define V_PMAXUB_MMX(mmr1, mmr2) \
"psubusb " mmr2 ", " mmr1 "\n\t" \
"paddusb " mmr2 ", " mmr1 "\n\t"
#define V_PMAXUB_SSE(mmr1, mmr2) "pmaxub " mmr2 ", " mmr1 "\n\t"
#define V_PMAXUB_3DNOW(mmr1, mmr2) V_PMAXUB_MMX(mmr1, mmr2) // use MMX version
#define V_PMAXUB(mmr1, mmr2) V_PMAXUB2(mmr1, mmr2, SSE_TYPE)
#define V_PMAXUB2(mmr1, mmr2, ssetyp) V_PMAXUB3(mmr1, mmr2, ssetyp)
#define V_PMAXUB3(mmr1, mmr2, ssetyp) V_PMAXUB_##ssetyp(mmr1, mmr2)
// some macros for pminub instruction
// V_PMINUB(mmr1, mmr2, mmr work register) mmr2 may NOT = mmrw
#define V_PMINUB_MMX(mmr1, mmr2, mmrw) \
"pcmpeqb " mmrw ", " mmrw "\n\t" \
"psubusb " mmr2 ", " mmrw "\n\t" \
"paddusb " mmrw ", " mmr1 "\n\t" \
"psubusb " mmrw ", " mmr1 "\n\t"
#define V_PMINUB_SSE(mmr1, mmr2, mmrw) "pminub " mmr2 ", " mmr1 "\n\t"
#define V_PMINUB_3DNOW(mmr1, mmr2, mmrw) V_PMINUB_MMX(mmr1, mmr2, mmrw) // use MMX version
#define V_PMINUB(mmr1, mmr2, mmrw) V_PMINUB2(mmr1, mmr2, mmrw, SSE_TYPE)
#define V_PMINUB2(mmr1, mmr2, mmrw, ssetyp) V_PMINUB3(mmr1, mmr2, mmrw, ssetyp)
#define V_PMINUB3(mmr1, mmr2, mmrw, ssetyp) V_PMINUB_##ssetyp(mmr1, mmr2, mmrw)
// some macros for movntq instruction
// V_MOVNTQ(mmr1, mmr2)
#define V_MOVNTQ_MMX(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t"
#define V_MOVNTQ_3DNOW(mmr1, mmr2) "movq " mmr2 ", " mmr1 "\n\t"
#define V_MOVNTQ_SSE(mmr1, mmr2) "movntq " mmr2 ", " mmr1 "\n\t"
#define V_MOVNTQ(mmr1, mmr2) V_MOVNTQ2(mmr1, mmr2, SSE_TYPE)
#define V_MOVNTQ2(mmr1, mmr2, ssetyp) V_MOVNTQ3(mmr1, mmr2, ssetyp)
#define V_MOVNTQ3(mmr1, mmr2, ssetyp) V_MOVNTQ_##ssetyp(mmr1, mmr2)
// end of macros
tvtime-1.0.11/plugins/vfir.c 0000664 0001750 0001750 00000010321 12354244126 012620 0000000 0000000 /**
* This file contains code from ffmpeg, see http://ffmpeg.org/
*
* Originated in imgconvert.c: Misc image convertion routines
* Copyright (c) 2001, 2002, 2003 Fabrice Bellard.
*
* tvtime port Copyright (C) 2003 Billy Biggs .
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "attributes.h"
#include "mmx.h"
#include "mm_accel.h"
#include "copyfunctions.h"
#include "deinterlace.h"
/**
* The MPEG2 spec uses a slightly harsher filter, they specify
* [-1 8 2 8 -1]. ffmpeg uses a similar filter but with more of
* a tendancy to blur than to use the local information. The
* filter taps here are: [-1 4 2 4 -1].
*/
static void deinterlace_line( uint8_t *dst, uint8_t *lum_m4,
uint8_t *lum_m3, uint8_t *lum_m2,
uint8_t *lum_m1, uint8_t *lum, int size )
{
#ifdef ARCH_X86
mmx_t rounder;
rounder.uw[0]=4;
rounder.uw[1]=4;
rounder.uw[2]=4;
rounder.uw[3]=4;
pxor_r2r(mm7,mm7);
movq_m2r(rounder,mm6);
for (;size > 3; size-=4) {
movd_m2r(lum_m4[0],mm0);
movd_m2r(lum_m3[0],mm1);
movd_m2r(lum_m2[0],mm2);
movd_m2r(lum_m1[0],mm3);
movd_m2r(lum[0],mm4);
punpcklbw_r2r(mm7,mm0);
punpcklbw_r2r(mm7,mm1);
punpcklbw_r2r(mm7,mm2);
punpcklbw_r2r(mm7,mm3);
punpcklbw_r2r(mm7,mm4);
paddw_r2r(mm3,mm1);
psllw_i2r(1,mm2);
paddw_r2r(mm4,mm0);
psllw_i2r(2,mm1);// 2
paddw_r2r(mm6,mm2);
paddw_r2r(mm2,mm1);
psubusw_r2r(mm0,mm1);
psrlw_i2r(3,mm1); // 3
packuswb_r2r(mm7,mm1);
movd_r2m(mm1,dst[0]);
lum_m4+=4;
lum_m3+=4;
lum_m2+=4;
lum_m1+=4;
lum+=4;
dst+=4;
}
emms();
#else
/**
* C implementation.
*/
int sum;
for(;size > 0;size--) {
sum = -lum_m4[0];
sum += lum_m3[0] << 2;
sum += lum_m2[0] << 1;
sum += lum_m1[0] << 2;
sum += -lum[0];
dst[0] = (sum + 4) >> 3; // This needs to be clipped at 0 and 255: cm[(sum + 4) >> 3];
lum_m4++;
lum_m3++;
lum_m2++;
lum_m1++;
lum++;
dst++;
}
#endif
}
static void deinterlace_scanline_vfir( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
deinterlace_line( output, data->tt1, data->t0, data->m1, data->b0, data->bb1, width*2 );
}
static void copy_scanline( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m0, width );
}
static deinterlace_method_t vfirmethod =
{
"Blur: Vertical",
"BlurVertical",
1,
#ifdef ARCH_X86
MM_ACCEL_X86_MMXEXT,
#else
0,
#endif
0,
1,
deinterlace_scanline_vfir,
copy_scanline,
0,
0,
{ "Avoids flicker by blurring consecutive frames",
"of input. Use this if you want to run your",
"monitor at an arbitrary refresh rate and not",
"use much CPU, and are willing to sacrifice",
"detail.",
"",
"Vertical mode blurs favouring the most recent",
"field for less visible trails. From the",
"deinterlacer filter in ffmpeg.",
"" }
};
deinterlace_method_t *vfir_get_method( void )
{
return &vfirmethod;
}
tvtime-1.0.11/plugins/greedy.c 0000664 0001750 0001750 00000015267 12663345553 013160 0000000 0000000 /**
* Copyright (c) 2000 Tom Barry All rights reserved.
* mmx.h port copyright (c) 2002 Billy Biggs .
*
* This code is ported from DScaler: http://deinterlace.sf.net/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "attributes.h"
#include "mmx.h"
#include "mm_accel.h"
#include "deinterlace.h"
#include "copyfunctions.h"
// This is a simple lightweight DeInterlace method that uses little CPU time
// but gives very good results for low or intermedite motion.
// It defers frames by one field, but that does not seem to produce noticeable
// lip sync problems.
//
// The method used is to take either the older or newer weave pixel depending
// upon which give the smaller comb factor, and then clip to avoid large damage
// when wrong.
//
// I'd intended this to be part of a larger more elaborate method added to
// Blended Clip but this give too good results for the CPU to ignore here.
static void copy_scanline( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
blit_packed422_scanline( output, data->m1, width );
}
static int GreedyMaxComb = 15;
static void deinterlace_greedy_packed422_scanline_mmxext( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
#ifdef ARCH_X86
mmx_t MaxComb;
uint8_t *m0 = data->m0;
uint8_t *t1 = data->t1;
uint8_t *b1 = data->b1;
uint8_t *m2 = data->m2;
// How badly do we let it weave? 0-255
MaxComb.ub[ 0 ] = GreedyMaxComb;
MaxComb.ub[ 1 ] = GreedyMaxComb;
MaxComb.ub[ 2 ] = GreedyMaxComb;
MaxComb.ub[ 3 ] = GreedyMaxComb;
MaxComb.ub[ 4 ] = GreedyMaxComb;
MaxComb.ub[ 5 ] = GreedyMaxComb;
MaxComb.ub[ 6 ] = GreedyMaxComb;
MaxComb.ub[ 7 ] = GreedyMaxComb;
// L2 == m0
// L1 == t1
// L3 == b1
// LP2 == m2
width /= 4;
while( width-- ) {
movq_m2r( *t1, mm1 ); // L1
movq_m2r( *m0, mm2 ); // L2
movq_m2r( *b1, mm3 ); // L3
movq_m2r( *m2, mm0 ); // LP2
// average L1 and L3 leave result in mm4
movq_r2r( mm1, mm4 ); // L1
pavgb_r2r( mm3, mm4 ); // (L1 + L3)/2
// get abs value of possible L2 comb
movq_r2r( mm2, mm7 ); // L2
psubusb_r2r( mm4, mm7 ); // L2 - avg
movq_r2r( mm4, mm5 ); // avg
psubusb_r2r( mm2, mm5 ); // avg - L2
por_r2r( mm7, mm5 ); // abs(avg-L2)
movq_r2r( mm4, mm6 ); // copy of avg for later
// get abs value of possible LP2 comb
movq_r2r( mm0, mm7 ); // LP2
psubusb_r2r( mm4, mm7 ); // LP2 - avg
psubusb_r2r( mm0, mm4 ); // avg - LP2
por_r2r( mm7, mm4 ); // abs(avg-LP2)
// use L2 or LP2 depending upon which makes smaller comb
psubusb_r2r( mm5, mm4 ); // see if it goes to zero
psubusb_r2r( mm5, mm5 ); // 0
pcmpeqb_r2r( mm5, mm4 ); // if (mm4=0) then FF else 0
pcmpeqb_r2r( mm4, mm5 ); // opposite of mm4
// if Comb(LP2) <= Comb(L2) then mm4=ff, mm5=0 else mm4=0, mm5 = 55
pand_r2r( mm2, mm5 ); // use L2 if mm5 == ff, else 0
pand_r2r( mm0, mm4 ); // use LP2 if mm4 = ff, else 0
por_r2r( mm5, mm4 ); // may the best win
// Now lets clip our chosen value to be not outside of the range
// of the high/low range L1-L3 by more than abs(L1-L3)
// This allows some comb but limits the damages and also allows more
// detail than a boring oversmoothed clip.
movq_r2r( mm1, mm2 ); // copy L1
psubusb_r2r( mm3, mm2 ); // - L3, with saturation
paddusb_r2r( mm3, mm2 ); // now = Max(L1,L3)
pcmpeqb_r2r( mm7, mm7 ); // all ffffffff
psubusb_r2r( mm1, mm7 ); // - L1
paddusb_r2r( mm7, mm3 ); // add, may sat at fff..
psubusb_r2r( mm7, mm3 ); // now = Min(L1,L3)
// allow the value to be above the high or below the low by amt of MaxComb
paddusb_m2r( MaxComb, mm2 ); // increase max by diff
psubusb_m2r( MaxComb, mm3 ); // lower min by diff
psubusb_r2r( mm3, mm4 ); // best - Min
paddusb_r2r( mm3, mm4 ); // now = Max(best,Min(L1,L3)
pcmpeqb_r2r( mm7, mm7 ); // all ffffffff
psubusb_r2r( mm4, mm7 ); // - Max(best,Min(best,L3)
paddusb_r2r( mm7, mm2 ); // add may sat at FFF..
psubusb_r2r( mm7, mm2 ); // now = Min( Max(best, Min(L1,L3), L2 )=L2 clipped
movntq_r2m( mm2, *output ); // move in our clipped best
// Advance to the next set of pixels.
output += 8;
m0 += 8;
t1 += 8;
b1 += 8;
m2 += 8;
}
sfence();
emms();
#endif
}
/**
* The greedy deinterlacer introduces a one-field delay on the input.
* From the diagrams in deinterlace.h, the field being deinterlaced is
* always t-1. For this reason, our copy_scanline method is used for
* deinterlace_method_t's interpolate_scanline function, and the real
* work is done in deinterlace_method_t's copy_scanline function.
*/
static deinterlace_method_t greedymethod =
{
"Motion Adaptive: Simple Detection",
"AdaptiveSimple",
3,
MM_ACCEL_X86_MMXEXT,
0,
1,
copy_scanline,
deinterlace_greedy_packed422_scanline_mmxext,
0,
1,
{ "Uses heuristics to detect motion in the input",
"frames and reconstruct image detail where",
"possible. Use this for high quality output",
"even on monitors set to an arbitrary refresh",
"rate.",
"",
"Simple detection uses linear interpolation",
"where motion is detected, using a two-field",
"buffer. This is the Greedy: Low Motion",
"deinterlacer from DScaler." }
};
deinterlace_method_t *greedy_get_method( void )
{
return &greedymethod;
}
tvtime-1.0.11/plugins/tomsmocomp.h 0000664 0001750 0001750 00000002204 12354244126 014055 0000000 0000000 /**
* Copyright (C) 2004 Billy Biggs
*
* 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, or (at your option)
* any later version.
*
* 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.
*
* 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.
*/
#ifndef TOMSMOCOMP_H_INCLUDED
#define TOMSMOCOMP_H_INCLUDED
#include "dscalerapi.h"
#ifdef __cplusplus
extern "C" {
#endif
void tomsmocomp_init( void );
void tomsmocomp_filter_mmx( TDeinterlaceInfo* pInfo );
void tomsmocomp_filter_3dnow( TDeinterlaceInfo* pInfo );
void tomsmocomp_filter_sse( TDeinterlaceInfo* pInfo );
#ifdef __cplusplus
};
#endif
#endif /* TOMSMOCOMP_H_INCLUDED */
tvtime-1.0.11/plugins/tomsmocomp.cpp 0000664 0001750 0001750 00000005533 12354244126 014420 0000000 0000000 /**
* Copyright (C) 2004 Billy Biggs
*
* 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, or (at your option)
* any later version.
*
* 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.
*
* 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.
*/
#include "tomsmocomp.h"
#include "tomsmocomp/tomsmocompmacros.h"
#include "x86-64_macros.inc"
#define SearchEffortDefault 5
#define UseStrangeBobDefault false
class DScalerFilterTomsMoComp
{
public:
DScalerFilterTomsMoComp() {}
virtual ~DScalerFilterTomsMoComp() {}
#define IS_MMX
#define SSE_TYPE MMX
#define FUNCT_NAME filterDScaler_MMX
#include "tomsmocomp/TomsMoCompAll.inc"
#undef IS_MMX
#undef SSE_TYPE
#undef FUNCT_NAME
#define IS_3DNOW
#define SSE_TYPE 3DNOW
#define FUNCT_NAME filterDScaler_3DNOW
#include "tomsmocomp/TomsMoCompAll.inc"
#undef IS_3DNOW
#undef SSE_TYPE
#undef FUNCT_NAME
#define IS_SSE
#define SSE_TYPE SSE
#define FUNCT_NAME filterDScaler_SSE
#include "tomsmocomp/TomsMoCompAll.inc"
#undef IS_SSE
#undef SSE_TYPE
#undef FUNCT_NAME
protected:
int Fieldcopy(void *dest, const void *src, size_t count,
int rows, int dst_pitch, int src_pitch)
{
unsigned char* pDest = (unsigned char*) dest;
unsigned char* pSrc = (unsigned char*) src;
int i;
for (i=0; i < rows; i++) {
pMyMemcpy(pDest, pSrc, count);
pSrc += src_pitch;
pDest += dst_pitch;
}
return 0;
}
public:
long SearchEffort;
bool UseStrangeBob;
MEMCPY_FUNC* pMyMemcpy;
bool IsOdd;
const unsigned char* pWeaveSrc;
const unsigned char* pWeaveSrcP;
unsigned char* pWeaveDest;
const unsigned char* pCopySrc;
const unsigned char* pCopySrcP;
unsigned char* pCopyDest;
int src_pitch;
int dst_pitch;
int rowsize;
int height;
int FldHeight;
};
static DScalerFilterTomsMoComp *filter;
void tomsmocomp_init( void )
{
filter = new DScalerFilterTomsMoComp();
filter->SearchEffort = SearchEffortDefault;
filter->UseStrangeBob = UseStrangeBobDefault;
}
void tomsmocomp_filter_mmx( TDeinterlaceInfo* pInfo )
{
filter->filterDScaler_MMX( pInfo );
}
void tomsmocomp_filter_3dnow( TDeinterlaceInfo* pInfo )
{
filter->filterDScaler_3DNOW( pInfo );
}
void tomsmocomp_filter_sse( TDeinterlaceInfo* pInfo )
{
filter->filterDScaler_SSE( pInfo );
}
tvtime-1.0.11/plugins/linearblend.c 0000664 0001750 0001750 00000011645 12663345553 014154 0000000 0000000 /**
* Linear blend deinterlacing plugin. The idea for this algorithm came
* from the linear blend deinterlacer which originated in the mplayer
* sources.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#if defined (__SVR4) && defined (__sun)
# include
#else
# include
#endif
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "attributes.h"
#include "mmx.h"
#include "mm_accel.h"
#include "copyfunctions.h"
#include "deinterlace.h"
static void deinterlace_scanline_linear_blend( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
uint8_t *t0 = data->t0;
uint8_t *b0 = data->b0;
uint8_t *m1 = data->m1;
#ifdef ARCH_X86
int i;
// Get width in bytes.
width *= 2;
i = width / 8;
width -= i * 8;
pxor_r2r( mm7, mm7 );
while( i-- ) {
movd_m2r( *t0, mm0 );
movd_m2r( *b0, mm1 );
movd_m2r( *m1, mm2 );
movd_m2r( *(t0+4), mm3 );
movd_m2r( *(b0+4), mm4 );
movd_m2r( *(m1+4), mm5 );
punpcklbw_r2r( mm7, mm0 );
punpcklbw_r2r( mm7, mm1 );
punpcklbw_r2r( mm7, mm2 );
punpcklbw_r2r( mm7, mm3 );
punpcklbw_r2r( mm7, mm4 );
punpcklbw_r2r( mm7, mm5 );
psllw_i2r( 1, mm2 );
psllw_i2r( 1, mm5 );
paddw_r2r( mm0, mm2 );
paddw_r2r( mm3, mm5 );
paddw_r2r( mm1, mm2 );
paddw_r2r( mm4, mm5 );
psrlw_i2r( 2, mm2 );
psrlw_i2r( 2, mm5 );
packuswb_r2r( mm2, mm2 );
packuswb_r2r( mm5, mm5 );
movd_r2m( mm2, *output );
movd_r2m( mm5, *(output+4) );
output += 8;
t0 += 8;
b0 += 8;
m1 += 8;
}
while( width-- ) {
*output++ = (*t0++ + *b0++ + (*m1++ << 1)) >> 2;
}
emms();
#else
width *= 2;
while( width-- ) {
*output++ = (*t0++ + *b0++ + (*m1++ << 1)) >> 2;
}
#endif
}
static void deinterlace_scanline_linear_blend2( uint8_t *output,
deinterlace_scanline_data_t *data,
int width )
{
uint8_t *m0 = data->m0;
uint8_t *t1 = data->t1;
uint8_t *b1 = data->b1;
#ifdef ARCH_X86
int i;
// Get width in bytes.
width *= 2;
i = width / 8;
width -= i * 8;
pxor_r2r( mm7, mm7 );
while( i-- ) {
movd_m2r( *t1, mm0 );
movd_m2r( *b1, mm1 );
movd_m2r( *m0, mm2 );
movd_m2r( *(t1+4), mm3 );
movd_m2r( *(b1+4), mm4 );
movd_m2r( *(m0+4), mm5 );
punpcklbw_r2r( mm7, mm0 );
punpcklbw_r2r( mm7, mm1 );
punpcklbw_r2r( mm7, mm2 );
punpcklbw_r2r( mm7, mm3 );
punpcklbw_r2r( mm7, mm4 );
punpcklbw_r2r( mm7, mm5 );
psllw_i2r( 1, mm2 );
psllw_i2r( 1, mm5 );
paddw_r2r( mm0, mm2 );
paddw_r2r( mm3, mm5 );
paddw_r2r( mm1, mm2 );
paddw_r2r( mm4, mm5 );
psrlw_i2r( 2, mm2 );
psrlw_i2r( 2, mm5 );
packuswb_r2r( mm2, mm2 );
packuswb_r2r( mm5, mm5 );
movd_r2m( mm2, *output );
movd_r2m( mm5, *(output+4) );
output += 8;
t1 += 8;
b1 += 8;
m0 += 8;
}
while( width-- ) {
*output++ = (*t1++ + *b1++ + (*m0++ << 1)) >> 2;
}
emms();
#else
width *= 2;
while( width-- ) {
*output++ = (*t1++ + *b1++ + (*m0++ << 1)) >> 2;
}
#endif
}
static deinterlace_method_t linearblendmethod =
{
"Blur: Temporal",
"BlurTemporal",
2,
#ifdef ARCH_X86
MM_ACCEL_X86_MMX,
#else
0,
#endif
0,
1,
deinterlace_scanline_linear_blend,
deinterlace_scanline_linear_blend2,
0,
0,
{ "Avoids flicker by blurring consecutive frames",
"of input. Use this if you want to run your",
"monitor at an arbitrary refresh rate and not",
"use much CPU, and are willing to sacrifice",
"detail.",
"",
"Temporal mode evenly blurs content for least",
"flicker, but with visible trails on fast motion.",
"From the linear blend deinterlacer in mplayer.",
"" }
};
deinterlace_method_t *linearblend_get_method( void )
{
return &linearblendmethod;
}
tvtime-1.0.11/plugins/kdetv_tomsmocomp.c 0000664 0001750 0001750 00000007536 12663345553 015273 0000000 0000000 /**
* Copyright (C) 2004 Billy Biggs
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include
#include
#include
#include
#include "dscalerapi.h"
#include "deinterlace.h"
#include "copyfunctions.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "mm_accel.h"
#include "tomsmocomp.h"
static void deinterlace_frame_di_tomsmocomp( uint8_t *output, int outstride,
deinterlace_frame_data_t *data,
int bottom_field, int second_field,
int width, int height )
{
TDeinterlaceInfo Info;
TPicture Picture[ MAX_PICTURE_HISTORY ];
int stride = (width*2);
int i;
Info.FieldHeight = height / 2;
Info.FrameHeight = height;
Info.FrameWidth = width;
Info.InputPitch = stride*2;
Info.LineLength = stride;
Info.OverlayPitch = outstride;
Info.pMemcpy = fast_memcpy;
if( bottom_field ) {
Picture[ 0 ].pData = data->f0 + stride;
Picture[ 0 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 1 ].pData = data->f0;
Picture[ 1 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 2 ].pData = data->f1 + stride;
Picture[ 2 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 3 ].pData = data->f1;
Picture[ 3 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 4 ].pData = data->f2 + stride;
Picture[ 4 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 5 ].pData = data->f2;
Picture[ 5 ].Flags = PICTURE_INTERLACED_EVEN;
} else {
Picture[ 0 ].pData = data->f0;
Picture[ 0 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 1 ].pData = data->f1 + stride;
Picture[ 1 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 2 ].pData = data->f1;
Picture[ 2 ].Flags = PICTURE_INTERLACED_EVEN;
Picture[ 3 ].pData = data->f2 + stride;
Picture[ 3 ].Flags = PICTURE_INTERLACED_ODD;
Picture[ 4 ].pData = data->f2;
Picture[ 4 ].Flags = PICTURE_INTERLACED_EVEN;
}
Info.Overlay = output;
for( i = 0; i < MAX_PICTURE_HISTORY; i++ ) {
Info.PictureHistory[ i ] = &(Picture[ i ]);
}
if( mm_accel() & MM_ACCEL_X86_MMXEXT ) {
tomsmocomp_filter_sse( &Info );
} else if( mm_accel() & MM_ACCEL_X86_3DNOW ) {
tomsmocomp_filter_3dnow( &Info );
} else {
tomsmocomp_filter_mmx( &Info );
}
}
static deinterlace_method_t tomsmocompmethod =
{
"Motion Adaptive: Motion Search",
"AdaptiveSearch",
4,
MM_ACCEL_X86_MMX,
0,
0,
0,
0,
deinterlace_frame_di_tomsmocomp,
0,
{ "Uses heuristics to detect motion in the input",
"frames and reconstruct image detail where",
"possible. Use this for high quality output",
"even on monitors set to an arbitrary refresh",
"rate.",
"",
"Motion search mode finds and follows motion",
"vectors for accurate interpolation. This is",
"the TomsMoComp deinterlacer from DScaler.",
"" }
};
deinterlace_method_t *dscaler_tomsmocomp_get_method( void )
{
tomsmocomp_init();
return &tomsmocompmethod;
}
tvtime-1.0.11/plugins/greedyh.asm 0000664 0001750 0001750 00000033131 12663345553 013654 0000000 0000000 // -*- c++ -*-
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2001 Tom Barry. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
//
// This file is subject to the terms of the GNU General Public License as
// published by the Free Software Foundation. A copy of this license is
// included with this software distribution in the file COPYING. If you
// do not have a copy, you may obtain a copy by writing to the Free
// Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
//
// This software 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
//
/////////////////////////////////////////////////////////////////////////////
#include "x86-64_macros.inc"
void FUNCT_NAME(TDeinterlaceInfo* pInfo)
{
int64_t i;
bool InfoIsOdd = (pInfo->PictureHistory[0]->Flags & PICTURE_INTERLACED_ODD) ? 1 : 0;
// in tight loop some vars are accessed faster in local storage
int64_t YMask = 0x00ff00ff00ff00ffull; // to keep only luma
int64_t UVMask = 0xff00ff00ff00ff00ull; // to keep only chroma
int64_t ShiftMask = 0xfefffefffefffeffull; // to avoid shifting chroma to luma
int64_t QW256 = 0x0100010001000100ull; // 4 256's
// Set up our two parms that are actually evaluated for each pixel
i=GreedyMaxComb;
int64_t MaxComb = i << 56 | i << 48 | i << 40 | i << 32 | i << 24 | i << 16 | i << 8 | i;
i = GreedyMotionThreshold; // scale to range of 0-257
int64_t MotionThreshold = i << 48 | i << 32 | i << 16 | i | UVMask;
i = GreedyMotionSense; // scale to range of 0-257
int64_t MotionSense = i << 48 | i << 32 | i << 16 | i;
int Line;
long LoopCtr;
unsigned int Pitch = pInfo->InputPitch;
unsigned char* L1; // ptr to Line1, of 3
unsigned char* L2; // ptr to Line2, the weave line
unsigned char* L3; // ptr to Line3
unsigned char* L2P; // ptr to prev Line2
unsigned char* Dest = pInfo->Overlay;
int64_t QW256B;
int64_t LastAvg=0; //interp value from left qword
i = 0xffffffff - 256;
QW256B = i << 48 | i << 32 | i << 16 | i; // save a couple instr on PMINSW instruct.
// copy first even line no matter what, and the first odd line if we're
// processing an EVEN field. (note diff from other deint rtns.)
if(InfoIsOdd) {
L1 = pInfo->PictureHistory[1]->pData;
L2 = pInfo->PictureHistory[0]->pData;
L3 = L1 + Pitch;
L2P = pInfo->PictureHistory[2]->pData;
// copy first even line
pInfo->pMemcpy(Dest, L1, pInfo->LineLength);
Dest += pInfo->OverlayPitch;
} else {
L1 = pInfo->PictureHistory[1]->pData;
L2 = pInfo->PictureHistory[0]->pData + Pitch;
L3 = L1 + Pitch;
L2P = pInfo->PictureHistory[2]->pData + Pitch;
// copy first even line
pInfo->pMemcpy(Dest, pInfo->PictureHistory[0]->pData, pInfo->LineLength);
Dest += pInfo->OverlayPitch;
// then first odd line
pInfo->pMemcpy(Dest, L1, pInfo->LineLength);
Dest += pInfo->OverlayPitch;
}
long oldbx;
for (Line = 0; Line < (pInfo->FieldHeight - 1); ++Line) {
LoopCtr = pInfo->LineLength / 8 - 1; // there are LineLength / 8 qwords per line but do 1 less, adj at end of loop
// For ease of reading, the comments below assume that we're operating on an odd
// field (i.e., that InfoIsOdd is true). Assume the obvious for even lines..
__asm__ __volatile__
(
// save ebx (-fPIC)
MOVX " %%" XBX ", %[oldbx]\n\t"
MOVX " %[L1], %%" XAX "\n\t"
LEAX " 8(%%" XAX "), %%" XBX "\n\t" // next qword needed by DJR
MOVX " %[L3], %%" XCX "\n\t"
SUBX " %%" XAX ", %%" XCX "\n\t" // carry L3 addr as an offset
MOVX " %[L2P], %%" XDX "\n\t"
MOVX " %[L2], %%" XSI "\n\t"
MOVX " %[Dest], %%" XDI "\n\t" // DL1 if Odd or DL2 if Even
".align 8\n\t"
"1:\n\t"
"movq (%%" XSI "), %%mm0\n\t" // L2 - the newest weave pixel value
"movq (%%" XAX "), %%mm1\n\t" // L1 - the top pixel
"movq (%%" XDX "), %%mm2\n\t" // L2P - the prev weave pixel
"movq (%%" XAX ", %%" XCX "), %%mm3\n\t" // L3, next odd row
"movq %%mm1, %%mm6\n\t" // L1 - get simple single pixel interp
// pavgb mm6, mm3 // use macro below
V_PAVGB ("%%mm6", "%%mm3", "%%mm4", "%[ShiftMask]")
// DJR - Diagonal Jaggie Reduction
// In the event that we are going to use an average (Bob) pixel we do not want a jagged
// stair step effect. To combat this we avg in the 2 horizontally adjacen pixels into the
// interpolated Bob mix. This will do horizontal smoothing for only the Bob'd pixels.
"movq %[LastAvg], %%mm4\n\t" // the bob value from prev qword in row
"movq %%mm6, %[LastAvg]\n\t" // save for next pass
"psrlq $48, %%mm4\n\t" // right justify 1 pixel
"movq %%mm6, %%mm7\n\t" // copy of simple bob pixel
"psllq $16, %%mm7\n\t" // left justify 3 pixels
"por %%mm7, %%mm4\n\t" // and combine
"movq (%%" XBX "), %%mm5\n\t" // next horiz qword from L1
// pavgb mm5, qword ptr[ebx+ecx] // next horiz qword from L3, use macro below
V_PAVGB ("%%mm5", "(%%" XBX ",%%" XCX ")", "%%mm7", "%[ShiftMask]")
"psllq $48, %%mm5\n\t" // left just 1 pixel
"movq %%mm6, %%mm7\n\t" // another copy of simple bob pixel
"psrlq $16, %%mm7\n\t" // right just 3 pixels
"por %%mm7, %%mm5\n\t" // combine
// pavgb mm4, mm5 // avg of forward and prev by 1 pixel, use macro
V_PAVGB ("%%mm4", "%%mm5", "%%mm5", "%[ShiftMask]") // mm5 gets modified if MMX
// pavgb mm6, mm4 // avg of center and surround interp vals, use macro
V_PAVGB ("%%mm6", "%%mm4", "%%mm7", "%[ShiftMask]")
// Don't do any more averaging than needed for mmx. It hurts performance and causes rounding errors.
#ifndef IS_MMX
// pavgb mm4, mm6 // 1/4 center, 3/4 adjacent
V_PAVGB ("%%mm4", "%%mm6", "%%mm7", "%[ShiftMask]")
// pavgb mm6, mm4 // 3/8 center, 5/8 adjacent
V_PAVGB ("%%mm6", "%%mm4", "%%mm7", "%[ShiftMask]")
#endif
// get abs value of possible L2 comb
"movq %%mm6, %%mm4\n\t" // work copy of interp val
"movq %%mm2, %%mm7\n\t" // L2
"psubusb %%mm4, %%mm7\n\t" // L2 - avg
"movq %%mm4, %%mm5\n\t" // avg
"psubusb %%mm2, %%mm5\n\t" // avg - L2
"por %%mm7, %%mm5\n\t" // abs(avg-L2)
// get abs value of possible L2P comb
"movq %%mm0, %%mm7\n\t" // L2P
"psubusb %%mm4, %%mm7\n\t" // L2P - avg
"psubusb %%mm0, %%mm4\n\t" // avg - L2P
"por %%mm7, %%mm4\n\t" // abs(avg-L2P)
// use L2 or L2P depending upon which makes smaller comb
"psubusb %%mm5, %%mm4\n\t" // see if it goes to zero
"psubusb %%mm5, %%mm5\n\t" // 0
"pcmpeqb %%mm5, %%mm4\n\t" // if (mm4=0) then FF else 0
"pcmpeqb %%mm4, %%mm5\n\t" // opposite of mm4
// if Comb(L2P) <= Comb(L2) then mm4=ff, mm5=0 else mm4=0, mm5 = 55
"pand %%mm2, %%mm5\n\t" // use L2 if mm5 == ff, else 0
"pand %%mm0, %%mm4\n\t" // use L2P if mm4 = ff, else 0
"por %%mm5, %%mm4\n\t" // may the best win
// Inventory: at this point we have the following values:
// mm0 = L2P (or L2)
// mm1 = L1
// mm2 = L2 (or L2P)
// mm3 = L3
// mm4 = the best of L2,L2P weave pixel, base upon comb
// mm6 = the avg interpolated value, if we need to use it
// Let's measure movement, as how much the weave pixel has changed
"movq %%mm2, %%mm7\n\t"
"psubusb %%mm0, %%mm2\n\t"
"psubusb %%mm7, %%mm0\n\t"
"por %%mm2, %%mm0\n\t" // abs value of change, used later
// Now lets clip our chosen value to be not outside of the range
// of the high/low range L1-L3 by more than MaxComb.
// This allows some comb but limits the damages and also allows more
// detail than a boring oversmoothed clip.
"movq %%mm1, %%mm2\n\t" // copy L1
// pmaxub mm2, mm3 // use macro
V_PMAXUB ("%%mm2", "%%mm3") // now = Max(L1,L3)
"movq %%mm1, %%mm5\n\t" // copy L1
// pminub mm5, mm3 // now = Min(L1,L3), use macro
V_PMINUB ("%%mm5", "%%mm3", "%%mm7")
// allow the value to be above the high or below the low by amt of MaxComb
"psubusb %[MaxComb], %%mm5\n\t" // lower min by diff
"paddusb %[MaxComb], %%mm2\n\t" // increase max by diff
// pmaxub mm4, mm5 // now = Max(best,Min(L1,L3) use macro
V_PMAXUB ("%%mm4", "%%mm5")
// pminub mm4, mm2 // now = Min( Max(best, Min(L1,L3), L2 )=L2 clipped
V_PMINUB ("%%mm4", "%%mm2", "%%mm7")
// Blend weave pixel with bob pixel, depending on motion val in mm0
"psubusb %[MotionThreshold], %%mm0\n\t"// test Threshold, clear chroma change >>>??
"pmullw %[MotionSense], %%mm0\n\t" // mul by user factor, keep low 16 bits
"movq %[QW256], %%mm7\n\t"
#ifdef IS_SSE
"pminsw %%mm7, %%mm0\n\t" // max = 256
#else
"paddusw %[QW256B], %%mm0\n\t" // add, may sat at fff..
"psubusw %[QW256B], %%mm0\n\t" // now = Min(L1,256)
#endif
"psubusw %%mm0, %%mm7\n\t" // so the 2 sum to 256, weighted avg
"movq %%mm4, %%mm2\n\t" // save weave chroma info before trashing
"pand %[YMask], %%mm4\n\t" // keep only luma from calc'd value
"pmullw %%mm7, %%mm4\n\t" // use more weave for less motion
"pand %[YMask], %%mm6\n\t" // keep only luma from calc'd value
"pmullw %%mm0, %%mm6\n\t" // use more bob for large motion
"paddusw %%mm6, %%mm4\n\t" // combine
"psrlw $8, %%mm4\n\t" // div by 256 to get weighted avg
// chroma comes from weave pixel
"pand %[UVMask], %%mm2\n\t" // keep chroma
"por %%mm4, %%mm2\n\t" // and combine
V_MOVNTQ ("(%%" XDI ")", "%%mm2") // move in our clipped best, use macro
// bump ptrs and loop
LEAX " 8(%%" XAX "), %%" XAX "\n\t"
LEAX " 8(%%" XBX "), %%" XBX "\n\t"
LEAX " 8(%%" XDX "), %%" XDX "\n\t"
LEAX " 8(%%" XDI "), %%" XDI "\n\t"
LEAX " 8(%%" XSI "), %%" XSI "\n\t"
DECX " %[LoopCtr]\n\t"
"jg 1b\n\t" // loop if not to last line
// note P-III default assumes backward branches taken
"jl 1f\n\t" // done
MOVX " %%" XAX ", %%" XBX "\n\t" // sharpness lookahead 1 byte only, be wrong on 1
"jmp 1b\n\t"
"1:\n\t"
MOVX " %[oldbx], %%" XBX "\n\t"
: /* no outputs */
: [LastAvg] "m"(LastAvg),
[L1] "m"(L1),
[L3] "m"(L3),
[L2P] "m"(L2P),
[L2] "m"(L2),
[Dest] "m"(Dest),
[ShiftMask] "m"(ShiftMask),
[MaxComb] "m"(MaxComb),
[MotionThreshold] "m"(MotionThreshold),
[MotionSense] "m"(MotionSense),
[QW256B] "m"(QW256B),
[YMask] "m"(YMask),
[UVMask] "m"(UVMask),
[LoopCtr] "m"(LoopCtr),
[QW256] "m"(QW256),
[oldbx] "m"(oldbx)
: XAX, XCX, XDX, XSI, XDI,
#ifdef ARCH_386
"st", "st(1)", "st(2)", "st(3)", "st(4)", "st(5)", "st(6)", "st(7)",
#endif
#ifdef __MMX__
"mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7",
#endif
"memory", "cc"
);
Dest += pInfo->OverlayPitch;
pInfo->pMemcpy(Dest, L3, pInfo->LineLength);
Dest += pInfo->OverlayPitch;
L1 += Pitch;
L2 += Pitch;
L3 += Pitch;
L2P += Pitch;
}
if (InfoIsOdd) {
pInfo->pMemcpy(Dest, L2, pInfo->LineLength);
}
// clear out the MMX registers ready for doing floating point again
#ifdef ARCH_386
__asm__ __volatile__ ("emms\n\t");
#endif
}
tvtime-1.0.11/plugins/x86-64_macros.inc 0000664 0001750 0001750 00000004240 12354244126 014424 0000000 0000000 /***************************************************************************
KdetvDScalerFilter_x86-64.inc
-----------------------------
begin : Thu Sep 26 2004
copyright : (C) 2004 by Dirk Ziegelmeier
email : dziegel@gmx.de
***************************************************************************/
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* This file is copied from TVTIME's sources.
* Original author: Achim Schneider
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef XAX
#if defined (ARCH_386)
#define XAX "eax"
#define XBX "ebx"
#define XCX "ecx"
#define XDX "edx"
#define XSI "esi"
#define XDI "edi"
#define XSP "esp"
#define MOVX "movl"
#define LEAX "leal"
#define DECX "decl"
#define PUSHX "pushl"
#define POPX "popl"
#define CMPX "cmpl"
#define ADDX "addl"
#define SHLX "shll"
#define SHRX "shrl"
#define SUBX "subl"
#elif defined (ARCH_X86_64)
#define XAX "rax"
#define XBX "rbx"
#define XCX "rcx"
#define XDX "rdx"
#define XSI "rsi"
#define XDI "rdi"
#define XSP "rsp"
#define MOVX "movq"
#define LEAX "leaq"
#define DECX "decq"
#define PUSHX "pushq"
#define POPX "popq"
#define CMPX "cmpq"
#define ADDX "addq"
#define SHLX "shlq"
#define SHRX "shrq"
#define SUBX "subq"
#else
#error Undefined architecture. Define either ARCH_X86 or ARCH_X86_64.
#endif
#endif
tvtime-1.0.11/plugins/greedyh.cpp 0000664 0001750 0001750 00000004141 12354244126 013644 0000000 0000000 /**
* Copyright (C) 2004 Billy Biggs
*
* 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, or (at your option)
* any later version.
*
* 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.
*
* 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.
*/
#include "greedyh.h"
#include "greedyhmacros.h"
#define MAXCOMB_DEFAULT 5
#define MOTIONTHRESHOLD_DEFAULT 25
#define MOTIONSENSE_DEFAULT 30
class DScalerFilterGreedyH
{
public:
DScalerFilterGreedyH() {}
virtual ~DScalerFilterGreedyH() {}
#define IS_SSE
#define SSE_TYPE SSE
#define FUNCT_NAME filterDScaler_SSE
#include "greedyh.asm"
#undef SSE_TYPE
#undef IS_SSE
#undef FUNCT_NAME
#define IS_3DNOW
#define FUNCT_NAME filterDScaler_3DNOW
#define SSE_TYPE 3DNOW
#include "greedyh.asm"
#undef SSE_TYPE
#undef IS_3DNOW
#undef FUNCT_NAME
#define IS_MMX
#define SSE_TYPE MMX
#define FUNCT_NAME filterDScaler_MMX
#include "greedyh.asm"
#undef SSE_TYPE
#undef IS_MMX
#undef FUNCT_NAME
unsigned int GreedyMaxComb;
unsigned int GreedyMotionThreshold;
unsigned int GreedyMotionSense;
};
static DScalerFilterGreedyH *filter;
void greedyh_init( void )
{
filter = new DScalerFilterGreedyH();
filter->GreedyMaxComb = MAXCOMB_DEFAULT;
filter->GreedyMotionThreshold = MOTIONTHRESHOLD_DEFAULT;
filter->GreedyMotionSense = MOTIONSENSE_DEFAULT;
}
void greedyh_filter_mmx( TDeinterlaceInfo* pInfo )
{
filter->filterDScaler_MMX( pInfo );
}
void greedyh_filter_3dnow( TDeinterlaceInfo* pInfo )
{
filter->filterDScaler_3DNOW( pInfo );
}
void greedyh_filter_sse( TDeinterlaceInfo* pInfo )
{
filter->filterDScaler_SSE( pInfo );
}
tvtime-1.0.11/plugins/plugins.h 0000664 0001750 0001750 00000003135 12354244126 013345 0000000 0000000 /**
* Copyright (C) 2002, 2004 Billy Biggs .
*
* 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, or (at your option)
* any later version.
*
* 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.
*
* 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.
*/
#ifndef TVTIME_PLUGINS_H_INCLUDED
#define TVTIME_PLUGINS_H_INCLUDED
/**
* tvtime was going to have a plugin system, but there
* was never any interest in it outside of tvtime, so instead
* we include all deinterlacer methods right in the tvtime
* executable.
*/
#include
deinterlace_method_t *linear_get_method( void );
deinterlace_method_t *scalerbob_get_method( void );
deinterlace_method_t *linearblend_get_method( void );
deinterlace_method_t *vfir_get_method( void );
deinterlace_method_t *dscaler_tomsmocomp_get_method( void );
deinterlace_method_t *dscaler_greedyh_get_method( void );
deinterlace_method_t *greedy_get_method( void );
deinterlace_method_t *weave_get_method( void );
deinterlace_method_t *weavetff_get_method( void );
deinterlace_method_t *weavebff_get_method( void );
#endif /* TVTIME_PLUGINS_H_INCLUDED */
tvtime-1.0.11/configure.ac 0000664 0001750 0001750 00000017716 13026502656 012334 0000000 0000000 # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)
AC_INIT(tvtime, 1.0.11, http://linuxtv.org/)
AC_CONFIG_SRCDIR([src/tvtime.c])
AM_INIT_AUTOMAKE([foreign subdir-objects])
AM_CONFIG_HEADER(config.h)
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_MAINTAINER_MODE
AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
if test x"$host_alias" = x""; then host_alias="$host"; fi
# Check for compilers.
AC_PROG_CC
AM_PROG_CC_C_O
AC_CHECK_PROG(found_cc, "$CC", yes, no)
test "x$found_cc" = "xyes" || exit 1
AC_PROG_CXX
AC_CHECK_PROG(found_cxx, "$CXX", yes, no)
test "x$found_cxx" = "xyes" || exit 1
# Check for libtool.
AC_PROG_LIBTOOL
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([ctype.h dirent.h errno.h fcntl.h getopt.h langinfo.h math.h netinet/in.h pwd.h signal.h stdint.h stdio.h stdlib.h string.h sys/ioctl.h sys/mman.h sys/resource.h sys/stat.h sys/time.h sys/wait.h sys/types.h unistd.h wordexp.h locale.h])
AC_CHECK_HEADER([linux/videodev2.h], [], AC_MSG_ERROR(linux/videodev2.h not found))
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_TIME
# Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MMAP
AC_CHECK_FUNCS([asprintf atexit fork execlp getopt_long getpriority gettimeofday seteuid memset setreuid setpriority signal sigemptyset sigaction strerror vsscanf wordexp wordfree])
# Check for gettext
AM_GNU_GETTEXT_VERSION
AM_GNU_GETTEXT
dnl ---------------------------------------------
dnl zlib
dnl ---------------------------------------------
dnl Test for libz
AC_CHECK_LIB(z, gzsetparams,
[ AC_CHECK_HEADER(zlib.h,
have_zlib=yes
ZLIB_LIBS="-lz",)], AC_MSG_ERROR(zlib needed))
AM_CONDITIONAL(HAVE_ZLIB, [test x"$have_zlib" = "xyes"])
AC_SUBST(ZLIB_LIBS)
dnl ---------------------------------------------
dnl libpng
dnl ---------------------------------------------
dnl Test for libpng
AC_CHECK_LIB(png, png_read_png,
[ AC_CHECK_HEADER(png.h,
have_libpng=yes
PNG_LIBS="-lpng $ZLIB_LIBS -lm",)], AC_MSG_ERROR(libpng needed), "$ZLIB_LIBS" -lm)
AM_CONDITIONAL(HAVE_LIBPNG, [test x"$have_libpng" = "xyes"])
AC_SUBST(PNG_LIBS)
dnl ---------------------------------------------
dnl freetype
dnl ---------------------------------------------
dnl Test for freetype
AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no)
if test "$FREETYPE_CONFIG" = "no" ; then
AC_MSG_ERROR(freetype2 needed and freetype-config not found)
fi
dnl ---------------------------------------------
dnl libxml2
dnl ---------------------------------------------
dnl Test for libxml2
AC_PATH_PROG(LIBXML2_CONFIG,xml2-config,no)
if test "$LIBXML2_CONFIG" = "no" ; then
AC_MSG_ERROR(libxml2 needed and xml2-config not found)
else
XML2_LIBS="`$LIBXML2_CONFIG --libs`"
XML2_FLAG="`$LIBXML2_CONFIG --cflags`"
AC_DEFINE(HAVE_LIBXML2,,[LIBXML2 support])
fi
AC_SUBST(XML2_LIBS)
AC_SUBST(XML2_FLAG)
dnl ---------------------------------------------
dnl libasound2
dnl ---------------------------------------------
dnl Test for ALSA
AM_PATH_ALSA(1.0.9,
[ AC_DEFINE(HAVE_ALSA,1,[Define this if you have Alsa (libasound) installed]) ],
AC_MSG_RESULT(libasound needed and not found))
AM_CONDITIONAL(HAVE_ALSA, test x"$no_alsa" != "yes")
dnl ---------------------------------------------
dnl asound
dnl ---------------------------------------------
dnl Test for libasound
AC_CHECK_LIB(asound, snd_pcm_open,
[ AC_CHECK_HEADER(alsa/asoundlib.h,
have_asound=yes
ASOUND_LIBS="-lasound",)], AC_MSG_ERROR(asound needed))
AM_CONDITIONAL(HAVE_ASOUND, [test x"$have_asound" = "xyes"])
AC_SUBST(ASOUND_LIBS)
dnl ---------------------------------------------
dnl check for gtk+-2.0
dnl ---------------------------------------------
dnl PKG_CHECK_MODULES(GTK, gtk+-2.0)
dnl AC_SUBST(GTK_CFLAGS)
dnl AC_SUBST(GTK_LIBS)
dnl ---------------------------------------------
dnl check for X11, Xv and XF86VidModeExtension
dnl ---------------------------------------------
AC_PATH_XTRA
AC_ARG_WITH([xinerama],
[AS_HELP_STRING([--without-xinerama], [Disable Xinerama extension support (default: check)])])
if test x"$no_x" != x"yes"; then
dnl check for Xshm
AC_CHECK_LIB([Xext],[XShmCreateImage],
[AC_DEFINE([HAVE_X11],,[X11 support])
X11_CFLAGS="$X_CFLAGS"
X11_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext"
dnl check for Xv
AC_CHECK_LIB([Xv],[XvShmCreateImage],
[AC_DEFINE([HAVE_XV],,[Xv support])
X11_LIBS="$X11_LIBS -lXv"],,
[$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext])
if test "x$with_xinerama" != "xno"; then
dnl check for Xinerama
AC_CHECK_LIB([Xinerama],[XineramaQueryScreens],
[AC_DEFINE([HAVE_XINERAMA],,[Xinerama support])
X11_LIBS="$X11_LIBS -lXinerama"],,
[$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext])
fi
dnl check for XSs
AC_CHECK_LIB([Xss],[XScreenSaverSuspend],
[AC_DEFINE([HAVE_XSSEXTENSION],,[XSs support])
X11_LIBS="$X11_LIBS -lXss"],,
[$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext])
dnl check for Xvidmode
AC_CHECK_LIB([Xxf86vm],[XF86VidModeGetModeLine],
[AC_DEFINE([HAVE_XF86VIDMODE],,[XF86VidModeExtension support])
X11_LIBS="$X11_LIBS -lXxf86vm"],,
[$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS -lXext])],,
[$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS])
else
AC_MSG_ERROR(X needed and no X libraries or development headers found)
fi
AC_SUBST(X11_CFLAGS)
AC_SUBST(X11_LIBS)
dnl This stuff looked kinda cool in the mpeg2dec source tree.
dnl GCC-specific flags
if test x"$GCC" = x"yes"; then
dnl -Wall -Werror moved to the end to not disturb the configure script
dnl -O3
changequote(<<,>>)
OPT_CFLAGS=`echo "$CFLAGS"|sed "s/-O[0-9]*//g;"`
changequote([,])
OPT_CFLAGS="$OPT_CFLAGS -O3"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS])
dnl -fomit-frame-pointer
OPT_CFLAGS="$CFLAGS -fomit-frame-pointer"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS])
dnl -std=gnu99
OPT_CFLAGS="$CFLAGS -std=gnu99"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS])
dnl arch-specific flags
case "$host_alias" in
i?86-* | k?-*)
AC_DEFINE([ARCH_X86],,[x86 architecture])
AC_DEFINE([ARCH_386],,[386 architecture])
ARCH_X86=yes
ARCH_386=yes
OPT_CFLAGS="$CFLAGS"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);;
x86_64-*)
AC_DEFINE([ARCH_X86],,[x86 architecture])
AC_DEFINE([ARCH_X86_64],,[x86_64 architecture])
ARCH_X86=yes
ARCH_X86_64=yes;;
ppc-* | powerpc-*)
OPT_CFLAGS="$CFLAGS -Wa,-m7400"
AC_TRY_CFLAGS([$OPT_CFLAGS],
[CFLAGS=$OPT_CFLAGS; AC_DEFINE([ARCH_PPC],,[ppc architecture])]);;
sparc-* | sparc64-*)
OPT_CFLAGS="$CFLAGS -mcpu=ultrasparc -mvis -Wa,-Av9"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);;
mips-sgi-irix6.*) dnl do we need to be that specific ?
OPT_CFLAGS="$CFLAGS -mabi=64"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);;
esac
elif test x"$CC" = x"tcc"; then
dnl TenDRA portability checking compiler
CFLAGS="-Xp -Yansi -f`pwd`/include/tendra.h"
enable_mlib=no
no_x=yes
enable_sdl=no
else
dnl non-gcc flags - we probably need exact configuration triplets here.
case "$host_alias" in
mips-sgi-irix6.*)
OPT_CFLAGS="$CFLAGS -64"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);;
sparc-sun-solaris*)
OPT_CFLAGS="$CFLAGS -xCC -fast -xO5"
AC_TRY_CFLAGS([$OPT_CFLAGS],[CFLAGS=$OPT_CFLAGS]);;
esac
fi
AM_CONDITIONAL(ARCH_X86, [test "$ARCH_X86" = "yes"])
AM_CONDITIONAL(ARCH_386, [test "$ARCH_386" = "yes"])
AM_CONDITIONAL(ARCH_X86_64, [test "$ARCH_X86_64" = "yes"])
dnl Checks for library functions.
AC_CHECK_FUNCS([memalign])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_C_BIGENDIAN
AC_C_ATTRIBUTE_ALIGNED
AC_CONFIG_FILES([
Makefile
docs/Makefile
data/Makefile
plugins/Makefile
src/Makefile
intl/Makefile
po/Makefile.in
m4/Makefile
docs/man/Makefile
docs/man/de/Makefile
docs/man/en/Makefile
docs/man/es/Makefile
])
AC_OUTPUT
tvtime-1.0.11/mkinstalldirs 0000755 0001750 0001750 00000006722 13026503063 012636 0000000 0000000 #! /bin/sh
# mkinstalldirs --- make directory hierarchy
scriptversion=2009-04-28.21; # UTC
# Original author: Noah Friedman
# Created: 1993-05-16
# Public domain.
#
# This file is maintained in Automake, please report
# bugs to or send patches to
# .
nl='
'
IFS=" "" $nl"
errstatus=0
dirmode=
usage="\
Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
Create each directory DIR (with mode MODE, if specified), including all
leading file name components.
Report bugs to ."
# process command line arguments
while test $# -gt 0 ; do
case $1 in
-h | --help | --h*) # -h for help
echo "$usage"
exit $?
;;
-m) # -m PERM arg
shift
test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
dirmode=$1
shift
;;
--version)
echo "$0 $scriptversion"
exit $?
;;
--) # stop option processing
shift
break
;;
-*) # unknown option
echo "$usage" 1>&2
exit 1
;;
*) # first non-opt arg
break
;;
esac
done
for file
do
if test -d "$file"; then
shift
else
break
fi
done
case $# in
0) exit 0 ;;
esac
# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and
# mkdir -p a/c at the same time, both will detect that a is missing,
# one will create a, then the other will try to create a and die with
# a "File exists" error. This is a problem when calling mkinstalldirs
# from a parallel make. We use --version in the probe to restrict
# ourselves to GNU mkdir, which is thread-safe.
case $dirmode in
'')
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
echo "mkdir -p -- $*"
exec mkdir -p -- "$@"
else
# On NextStep and OpenStep, the 'mkdir' command does not
# recognize any option. It will interpret all options as
# directories to create, and then abort because '.' already
# exists.
test -d ./-p && rmdir ./-p
test -d ./--version && rmdir ./--version
fi
;;
*)
if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
test ! -d ./--version; then
echo "mkdir -m $dirmode -p -- $*"
exec mkdir -m "$dirmode" -p -- "$@"
else
# Clean up after NextStep and OpenStep mkdir.
for d in ./-m ./-p ./--version "./$dirmode";
do
test -d $d && rmdir $d
done
fi
;;
esac
for file
do
case $file in
/*) pathcomp=/ ;;
*) pathcomp= ;;
esac
oIFS=$IFS
IFS=/
set fnord $file
shift
IFS=$oIFS
for d
do
test "x$d" = x && continue
pathcomp=$pathcomp$d
case $pathcomp in
-*) pathcomp=./$pathcomp ;;
esac
if test ! -d "$pathcomp"; then
echo "mkdir $pathcomp"
mkdir "$pathcomp" || lasterr=$?
if test ! -d "$pathcomp"; then
errstatus=$lasterr
else
if test ! -z "$dirmode"; then
echo "chmod $dirmode $pathcomp"
lasterr=
chmod "$dirmode" "$pathcomp" || lasterr=$?
if test ! -z "$lasterr"; then
errstatus=$lasterr
fi
fi
fi
fi
pathcomp=$pathcomp/
done
done
exit $errstatus
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC"
# time-stamp-end: "; # UTC"
# End:
tvtime-1.0.11/acinclude.m4 0000664 0001750 0001750 00000006313 12354244126 012224 0000000 0000000 dnl acinclude.m4 are M4 macros used to generate aclocal.m4
dnl Copyright (C) 2002, 2003 Billy Biggs
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or (at
dnl your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
dnl AC_C_ATTRIBUTE_ALIGNED
dnl define ATTRIBUTE_ALIGNED_MAX to the maximum alignment if this is supported
AC_DEFUN([AC_C_ATTRIBUTE_ALIGNED],
[AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
[ac_cv_c_attribute_aligned],
[ac_cv_c_attribute_aligned=0
for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
AC_TRY_COMPILE([],
[static char c __attribute__ ((aligned($ac_cv_c_attr_align_try))) = 0; return c;],
[ac_cv_c_attribute_aligned=$ac_cv_c_attr_align_try])
done])
if test x"$ac_cv_c_attribute_aligned" != x"0"; then
AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
[$ac_cv_c_attribute_aligned],[maximum supported data alignment])
fi])
dnl AC_TRY_CFLAGS (CFLAGS, [ACTION-IF-WORKS], [ACTION-IF-FAILS])
dnl check if $CC supports a given set of cflags
AC_DEFUN([AC_TRY_CFLAGS],
[AC_MSG_CHECKING([if $CC supports $1 flags])
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$1"
AC_TRY_COMPILE([],[],[ac_cv_try_cflags_ok=yes],[ac_cv_try_cflags_ok=no])
CFLAGS="$SAVE_CFLAGS"
AC_MSG_RESULT([$ac_cv_try_cflags_ok])
if test x"$ac_cv_try_cflags_ok" = x"yes"; then
ifelse([$2],[],[:],[$2])
else
ifelse([$3],[],[:],[$3])
fi])
dnl AC_CHECK_GENERATE_INTTYPES_H (INCLUDE-DIRECTORY)
dnl generate a default inttypes.h if the header file does not exist already
AC_DEFUN([AC_CHECK_GENERATE_INTTYPES],
[AC_CHECK_HEADER([inttypes.h],[],
[AC_COMPILE_CHECK_SIZEOF([char],[1])
AC_COMPILE_CHECK_SIZEOF([short],[2])
AC_COMPILE_CHECK_SIZEOF([int],[4])
AC_COMPILE_CHECK_SIZEOF([long long],[8])
cat >$1/inttypes.h << EOF
#ifndef _INTTYPES_H
#define _INTTYPES_H
/* default inttypes.h for people who do not have it on their system */
#if (!defined __int8_t_defined) && (!defined __BIT_TYPES_DEFINED__)
#define __int8_t_defined
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
#ifdef ARCH_X86
typedef signed long long int64_t;
#endif
#endif
#if (!defined _LINUX_TYPES_H)
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#ifdef ARCH_X86
typedef unsigned long long uint64_t;
#endif
#endif
#endif
EOF
])])
dnl AC_COMPILE_CHECK_SIZEOF (TYPE SUPPOSED-SIZE)
dnl abort if the given type does not have the supposed size
AC_DEFUN([AC_COMPILE_CHECK_SIZEOF],
[AC_MSG_CHECKING(that size of $1 is $2)
AC_TRY_COMPILE([],[switch (0) case 0: case (sizeof ($1) == $2):;],[],
[AC_MSG_ERROR([can not build a default inttypes.h])])
AC_MSG_RESULT([yes])])
tvtime-1.0.11/NEWS 0000664 0001750 0001750 00000025150 13026502644 010531 0000000 0000000 News for 1.0.11
* Using tvtime over ssh now works without setting an environment var
* Fix crash when no v4l capture devices are found
* Fix rdtsc on x86_64
* Fix asm code in cpuid() clobering the upp
News for 1.0.10
* No code changes
* Added translations for Ukranian and Slovak
* Updated pt and pt_BR translations
News for 1.0.9
* Added yuv planar formats to work with Wayland
* Fixed compilation issues with gcc6
* Improved audio/mixer and ALSA streaming logic
* Added logic to autodetect the associated ALSA device
* Make it adehent with newer freedesktop.org standards
* Added Catalan translation
* pt-BR and es translation updated
News for 1.0.8
* Change translation man pages and messages to use UTF-8
News for 1.0.7
* Fix warning about Makefiles ignoring the --datarootdir parameter
* Remove unused functions
* Safely assume C89 semantics and make RETSIGTYPE void
* Replace deprecated function XKeycodeToKeysym with XkbKeycodeToKeysym
* Add gitignore to plugins directory
* Link to libsupc++ instead of bringing in libstdc++.
* Actually call function
* Set subdir-objects automake option
* Revert "Set subdir-objects option for automake"
* Set automake flavour to foreign
* Set subdir-objects option for automake
* Revert accidental replacement of INSTALL file
* Turn automake silent by default
* Fix bashisms in boostrap
* Remove unused safetytime variable
* Remove embedded Debian packaging directory
News for 1.0.6
* Change alsa mixer from default/Line to default/Master
* Fix the mixer error message when channel is not available
News for 1.0.5
* Fix tvtime-scanner crash with home unset
* Fix input select condition
* pt_BR: Update a few Brazilian Portuguese translations
* mkinstalldirs: update to work with newer versions of autoconf
* Don't block indefinitely waiting for frames
* Accept arbritary height resolution
* Use videoinput_get_norm_height() to detect 60Hz based standards
* Don't require VIDIOC_*_INPUT support
* Improve error message about invalid framesize
* Add proper credits to Debian package and Philipp Hahn
* Add an option to disable the borders
* Fix two warnings when autoreconf is called
* Fix a few issues requested by libtool stuff
News for 1.0.4
* Fix portuguese translation.
* Add a parameter to enable borderless mode.
* Fix XScreenSaver extension check.
* Fix the invisible cursor not being invisible due to using uninitialized
memory.
* Fix setting the window icon on 64-bit systems.
* Some updates to tvtime.desktop, see gentoo bug #308297
* Initialize coords when going fullscreen, see redhat bug #235622.
* Remove unused and obsolete metacity check.
* Add latvian translation.
* Import translation updates for french, portuguese and russian
from the debian package.
* Change right mouse button while in menu to leave menu.
* Leave volume muted when decreasing volume, this way if the volume
is accidentally way too loud, you can mute and decrease without it
coming back on.
* Don't try to implement focus follows mouse mode for just our
window, that's up to the window manager.
* Fix check for PIC define in cpuaccel, see gentoo bug #74227
* Import patch from gentoo to make xinerama optional at configure
time.
* Remove the bundled videodev*.h headers.
* Apply patch from #1398391 Set the memory field when calling
VIDIOC_DQBUF ioctl.
* Fix crash on "tvtime-command set_input_width 720", patch from
sf tracker.
* Add zlib.h include since libpng doesn't bring it in in 1.5.
* Rename struct typedef from reserved locale_t to xmltv_locale.
* Import C++ fixes for tomsmocomp so it compiles with gcc 4.1+.
* Fix documentation to say MENU_ENTER/BACK instead of RIGHT/LEFT.
* Import some formatting fixes for the manpages from the debian
package.
News for 1.0.3
* V4L1 removal
* Alsa streaming support
* Compilation fixes, patch backports from other places
* More generic VBI handling
News for 1.0.2
* Add back the missing translations from the 1.0.1 release.
* Allow key bindings to map to noop to disable keys.
News for 1.0.1
* Minor updates that were intended for the 1.0 release.
News for 1.0
* The cx88 driver cannot detect the PAL audio mode (BG/DK/I),
and attempts to reverse engineer the Windows driver have failed.
tvtime now allows users to select between BG/DK/I mode in the
UI to help work around this driver limitation.
* By default, tvtime now assumes that pixels are square. This
avoids problems with many misconfigured X servers.
News for 0.99
* Test release for 1.0.
* Major bugfixes and cleanup.
News for 0.9.15
* Compile fixes.
News for 0.9.14
* Improved the usability of the menu system when using a mouse.
* Fixed some problems with Xinerama and fullscreen.
* Streamlined the default set of key bindings.
* Show an icon in modern window list applications.
* Fixed colour problems for DVB driver users.
* Changed the default process priority to -10 instead of -19.
* Fixed compile problems with new gcc versions.
News for 0.9.13
* Added support for changing the default language read from XMLTV.
* Added support for PAL-BG/DK audio mode switching.
* Added an audio boost setting for controlling capture card volume.
* Fixed a bunch of critical bugs.
* Removed the SDL, MGA, and DirectFB output drivers.
* Removed the unfinished MPEG2 support and the unreleased recording
application 'rvr'.
News for 0.9.12
* Minor bugfixes from 0.9.11.
News for 0.9.11
* Fixed gettext to initialize properly.
* Improved our XMLTV on-screen-display.
* Display the upcoming show name from XMLTV.
* Changed fifodir back to /tmp.
* Lots of documentation improvements.
* Fixed lots of bugs.
News for 0.9.10
* Added program listings using XMLTV. Use with --xmltv=filename.
* Added commands for chroma kill, sleep timer, and enabling or
disabling signal detection.
* Added the matte mode setting to the menu.
* Added a DirectFB output layer by Ville Syrjala.
* Significantly lowered the size of the tvtime helper executables.
* Various menu system cleanups.
* Fixed a ton of bugs.
News for 0.9.9
* Added a full menu system for configuring tvtime.
* Simplified deinterlacer names and provide online help for them.
* Unified OSD appearance across all television standards.
* Support for saving picture settings both globally and per-channel.
* Finetune settings saved per-channel.
* Support for the V4L2 DVB driver and bttv9 for PAL-60 support.
* Added a channel scanner application 'tvtime-scanner' that outputs
to the 'Custom' frequency table.
* Native support for UYVY input from the rivatv driver.
* Removed lirc support in favour of using tvtime-command.
* Fixed remaining screensaver, Xinerama and fullscreen issues.
* Many other new features and bugfixes.
News for 0.9.8.5
* Some root safety improvements.
* Added support for long-format command line arguments.
* Added config file options to set startup window position.
* Compile fixes for non-C99 compilers and older DirectFB versions.
News for 0.9.8.4
* Fixed to work with metacity in RH 8.0.
News for 0.9.8.3
* Support for norm switching between "compatible" norms for areas
which receive both SECAM and PAL format stations.
* Added support for the mga_vid driver for the Matrox G200/G400
series cards from mplayer.
* Semi-experimental of the X code for better fullscreen support under
many window managers. Testing appreciated.
* Support for changing the mixer device and channel (see 'man tvtime'
and the config file documentation).
* Slightly less partial experimental UTF-8 support. Now works with
any simple left-to-right scripts which are in FreeSansBold.ttf .
News for 0.9.8.2
* Fixed to compile on older gcc versions (blame pv2b).
News for 0.9.8.1
* Alot of minor bugfixes.
* Partial EXPERIMENTAL UTF-8 support. Only works with UTF-8
characters that are also in ISO-8859-1 (Latin-1).
News for 0.9.8
Users of tvtime 0.9.7:
The default key bindings and configuration file format have
significantly changed in this release of tvtime. Please see the
documentation for details on using tvtime 0.9.8.
Also, some command line options have changed or become unavailable
(no more -w, use -H instead). Please consult the tvtime man page.
* New XML config file format for both the tvtime configuration,
and the station list.
* tvtime now has two distinct half-framerate modes: top-field-first
frames, and bottom-field-first frames. This helps with manually
deinterlacing 2-2 pulldown or progressive content.
* Added support for preset 'modes', which can set the deinterlacer,
window size, fullscreen setting and framerate mode.
* Added support for custom frequencies in the stationlist.xml file,
and a runtime command to add a new station from the current
fine-tuning settings.
* Added some DScaler DLLs and a wine layer to load these deinterlacer
plugins directly without porting to Linux. This gives us the
following new deinterlacers:
GreedyH DScaler: Greedy - High Motion
Greedy2Frame DScaler: Greedy - 2-frame
TwoFrame DScaler: TwoFrame
TomsMoComp DScaler: TomsMoComp
VideoBob DScaler: Video Bob
VideoWeave DScaler: Video Weave
We had our own ports of videobob, twoframe, and greedy2frame,
but they were found to be buggy. Our ports are currently disabled.
* Added the ffmpeg vertical deinterlacer filter.
* Support for multiple audio channels (stereo, mono, lang1, lang2).
* Included a bunch of fixes for PAL-M support.
* Added a slave mode for freevo integration.
* Various speedups, quality improvements, and bugfixes.
News for 0.9.7
* Moved config files into a new config file directory ~/.tvtime
* Reworked the frequency tables, merging europe-cable, europe-west,
europe-east all into 'europe'. Added the 'russia' frequency table.
* Added a channel scanner. F10 walks through the channel list and
disables inactive channels.
* Added the 'XVideo Bob' deinterlacer filter.
* Added lirc support.
* Added the overscan feature.
* Added hardware support webpage.
* Added a half-framerate mode ('=' to activate it).
* Fixed alot of bug reports.
News for 0.9.6
* We updated the tuner frequencies, please make sure you're up to
date with our naming.
* We added alot of keymaps, so we also changed some of the default
keys!
* tvtime now shows a blue screen if the tuner reports no signal.
Please let me know if this exposes any problems.
tvtime-1.0.11/data/ 0000775 0001750 0001750 00000000000 13026503655 011023 5 0000000 0000000 tvtime-1.0.11/data/FreeMonoBold.sfd 0000664 0001750 0001750 00003306237 12354244126 013770 0000000 0000000 SplineFontDB: 1.0
FontName: FreeMonoBold
FullName: Free Monospaced Bold
FamilyName: FreeMono
Weight: Bold
Copyright: Copyleft 2002 Free Software Foundation.
Version: $Revision$
ItalicAngle: 0
UnderlinePosition: -100
UnderlineWidth: 50
Ascent: 800
Descent: 200
NeedsXUIDChange: 1
FSType: 0
PfmFamily: 49
TTFWeight: 700
TTFWidth: 5
Panose: 2 7 6 9 2 2 5 2 4 4
LineGap: 90
VLineGap: 0
LangName: 1027 "" "" "Negreta" "" "Free Mono Negreta" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1029 "" "" "tu+AQ0A-n+AOkA" "" "Free Mono New tu+AQ0A-n+AOkA" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1030 "" "" "fed" "" "Free Mono fed" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1031 "" "" "Fett" "" "Free Mono Fett" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1032 "" "" "+A4gDvQPEA78DvQOx" "" "Free Mono +A4gDvQPEA78DvQOx" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "The use of this font is granted subject to GNU General Public License." "http://www.gnu.org/copyleft/gpl.html" "" "" "" "" "The quick brown fox jumps over the lazy dog."
LangName: 1034 "" "" "Negrita" "" "Free Mono Negrita" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1035 "" "" "Lihavoitu" "" "Free Mono Lihavoitu" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1036 "" "" "Gras" "" "Free Mono Gras" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1038 "" "" "F+AOkA-lk+APYA-v+AOkA-r" "" "Free Mono F+AOkA-lk+APYA-v+AOkA-r" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1040 "" "" "Grassetto" "" "Free Mono Grassetto" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1043 "" "" "Vet" "" "Free Mono Vet" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1044 "" "" "Halvfet" "" "Free Mono Halvfet" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1045 "" "" "Pogrubiony" "" "Free Mono Pogrubiony" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1046 "" "" "Negrito" "" "Free Mono Negrito" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1049 "" "" "+BB8EPgQ7BEMENgQ4BEAEPQRLBDkA" "" "Free Mono +BB8EPgQ7BEMENgQ4BEAEPQRLBDkA" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1051 "" "" "Tu+AQ0A-n+AOkA" "" "Free Mono Tu+AQ0A-n+AOkA" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1053 "" "" "Fet" "" "Free Mono Fet" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1055 "" "" "Kal+ATEA-n" "" "Free Mono Kal+ATEA-n" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1060 "" "" "polkrepko" "" "" "" "" "" "" "" "" "" "" "Dovoljena je uporaba v skladu z licenco GNU General Public License." "http://www.gnu.org/copyleft/gpl.html" "" "" "" "" "+AWAA-erif bo za vajo spet kuhal doma+AQ0A-e +AX4A-gance."
LangName: 1066 "" "" "+AREA4gMj-m" "" "Free Mono +AREA4gMj-m" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 1069 "" "" "Lodia" "" "Free Mono Lodia" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 2058 "" "" "Negrita" "" "Free Mono Negrita" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 2070 "" "" "Negrito" "" "Free Mono Negrito" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 3082 "" "" "Negrita" "" "Free Mono Negrita" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
LangName: 3084 "" "" "Gras" "" "Free Mono Gras" "" "" "" "" "" "" "" "" "" "http://www.gnu.org/copyleft/gpl.html"
Encoding: unicode
DisplaySize: -36
AntiAlias: 1
BeginPrivate: 8
UniqueID 7 5020946
BlueValues 31 [-20 0 437 457 583 603 623 643]
BlueScale 8 0.039625
StdHW 5 [101]
StdVW 5 [101]
StemSnapH 8 [93 101]
StemSnapV 5 [101]
ForceBold 5 false
EndPrivate
BeginChars: 65536 1485
StartChar: space
Encoding: 32 32
Width: 600
Flags: W
EndChar
StartChar: exclam
Encoding: 33 33
Width: 600
Flags: HMW
HStem: -15 20
Fore
379 525 m 1
350 228 l 2
347 197 329 179 301 179 c 0
273 179 254 198 251 228 c 2
222 525 l 1
221 537 220 551 220 558 c 0
220 604 254 638 301 638 c 0
347 638 381 604 381 558 c 0
381 552 380 538 379 525 c 1
309 -15 m 2
292 -15 l 2
255 -15 225 15 225 51 c 0
225 87 255 117 292 117 c 2
309 117 l 2
346 117 375 88 375 51 c 0
375 14 346 -15 309 -15 c 2
EndSplineSet
EndChar
StartChar: quotedbl
Encoding: 34 34
Width: 600
Flags: HMW
HStem: 582 20<136 264 264 264 336 464 464 464>
Fore
136 602 m 1
264 602 l 1
233 348 l 1
229 322 221 312 201 312 c 0
182 312 173 322 170 347 c 1
136 602 l 1
336 602 m 1
464 602 l 1
433 348 l 1
429 322 421 312 401 312 c 0
382 312 373 322 370 347 c 1
336 602 l 1
EndSplineSet
EndChar
StartChar: numbersign
Encoding: 35 35
Width: 600
Flags: HMW
HStem: 139 99<128 154 261 326 432 451 451 452> 344 100<149 168 276 340 447 472>
Fore
447 444 m 1
472 444 l 2
499 444 507 442 517 435 c 0
530 425 538 410 538 394 c 0
538 377 529 360 514 351 c 0
505 346 496 344 472 344 c 2
440 344 l 1
432 238 l 1
451 238 l 2
478 238 488 236 497 229 c 0
510 219 518 204 518 188 c 0
518 171 509 155 494 146 c 0
485 141 475 139 452 139 c 2
425 139 l 1
414 -29 l 2
413 -44 406 -67 401 -73 c 0
391 -85 376 -92 362 -92 c 0
335 -92 311 -67 313 -41 c 1
315 -22 l 1
326 139 l 1
254 139 l 1
242 -29 l 1
242 -70 225 -92 192 -92 c 0
163 -92 142 -70 142 -40 c 0
142 -36 142 -29 143 -22 c 1
154 139 l 1
128 139 l 2
103 139 93 141 83 148 c 0
70 158 62 173 62 189 c 0
62 205 71 222 86 231 c 0
95 237 102 238 128 238 c 2
161 238 l 1
168 344 l 1
149 344 l 2
122 344 113 346 103 353 c 0
90 363 82 379 82 394 c 0
82 411 91 428 106 437 c 0
115 443 122 444 149 444 c 2
175 444 l 1
187 612 l 1
188 638 190 645 198 656 c 0
208 668 223 675 238 675 c 0
267 675 289 651 288 623 c 1
287 605 l 1
276 444 l 1
347 444 l 1
359 612 l 1
360 640 362 646 370 656 c 0
380 668 395 675 410 675 c 0
436 675 462 650 460 627 c 2
458 605 l 1
447 444 l 1
340 344 m 1
269 344 l 1
261 238 l 1
333 238 l 1
340 344 l 1
EndSplineSet
EndChar
StartChar: dollar
Encoding: 36 36
Width: 600
Flags: HMW
HStem: -123 247<293.5 309.5> 417 20 495 189<294 310.5>
VStem: 107 104<419.5 451.5> 252 99<-56 27 592 618> 413 104<178.5 217.5>
Fore
351 618 m 2
351 592 l 1
362 590 367 590 375 588 c 0
380 587 386 585 395 582 c 2
409 577 l 2
410 576 414 575 418 574 c 1
429 579 437 581 446 581 c 0
473 581 492 563 495 536 c 0
496 528 496 524 496 515 c 2
496 483 l 2
496 457 494 447 487 438 c 0
477 424 462 417 446 417 c 0
419 417 400 432 394 459 c 0
391 478 351 495 310 495 c 0
250 495 211 470 211 433 c 0
211 406 235 387 286 377 c 2
351 363 l 2
413 350 449 334 475 308 c 0
502 281 517 242 517 199 c 0
517 112 455 47 351 27 c 1
351 -56 l 2
351 -84 350 -92 342 -102 c 0
332 -115 317 -123 302 -123 c 0
285 -123 268 -114 259 -99 c 0
253 -90 252 -81 252 -56 c 2
252 27 l 1
210 36 205 38 173 52 c 1
157 38 148 34 134 34 c 0
116 34 100 43 90 58 c 0
85 67 83 76 83 101 c 2
83 162 l 2
83 189 85 198 92 208 c 0
102 221 117 229 133 229 c 0
146 229 160 223 169 215 c 1
176 207 176 207 184 180 c 0
192 149 245 124 300 124 c 0
365 124 413 157 413 200 c 0
413 235 389 254 333 265 c 2
259 280 l 2
160 300 107 354 107 435 c 0
107 513 166 577 252 592 c 1
252 618 l 2
252 645 254 653 261 664 c 1
271 676 286 684 302 684 c 0
319 684 335 675 344 660 c 0
350 651 351 644 351 618 c 2
EndSplineSet
EndChar
StartChar: percent
Encoding: 37 37
Width: 600
Flags: HMW
HStem: -15 65<348.5 389> 199 65<348 389> 338 65<208 248.5> 552 65<208 249>
VStem: 89 65<457.5 498> 229 65<104.5 145> 303 65<457 498> 443 65<104 145>
Fore
228 617 m 0
307 617 368 555 368 476 c 0
368 401 305 338 229 338 c 0
152 338 89 401 89 478 c 0
89 554 152 617 228 617 c 0
228 552 m 0
188 552 154 518 154 478 c 0
154 437 188 403 228 403 c 0
269 403 303 437 303 477 c 0
303 519 270 552 228 552 c 0
491 331 m 1
129 213 l 2
122 211 113 209 109 209 c 0
94 209 80 224 80 241 c 0
80 257 88 265 110 272 c 2
472 390 l 2
484 394 486 394 492 394 c 0
507 394 521 379 521 362 c 0
521 346 513 337 491 331 c 1
368 264 m 0
447 264 508 202 508 123 c 0
508 48 445 -15 368 -15 c 0
292 -15 229 48 229 125 c 0
229 201 292 264 368 264 c 0
368 199 m 0
328 199 294 165 294 125 c 0
294 84 328 50 369 50 c 0
409 50 443 84 443 124 c 0
443 166 410 199 368 199 c 0
EndSplineSet
EndChar
StartChar: ampersand
Encoding: 38 38
Width: 600
Flags: W
HStem: -14 100<237 267> 0 100<435 463> 0 280<388 434> 450 100<283 299>
VStem: 75 100<131.728 146> 137 100<398 402>
DStem: 228 220 265 343 312 100 365 198
Fore
365 198 m 1
388 280 l 1
441 280 l 2
468 280 477 278 487 270 c 0
500 260 507 246 507 229 c 0
507 203 488 182 464 180 c 1
453 139 446 121 434 100 c 1
442 100 l 2
469 100 477 98 487 91 c 0
500 81 508 66 508 50 c 0
508 33 499 16 484 7 c 0
476 2 463 0 442 0 c 2
381 0 l 1
370 15 l 1
340 -6 310 -14 257 -14 c 0
147 -14 75 48 75 144 c 0
75 211 109 267 171 303 c 1
144 349 137 368 137 399 c 0
137 480 208 550 289 550 c 0
313 550 333 545 359 533 c 1
371 537 380 540 387 540 c 0
412 540 435 515 435 490 c 0
435 467 426 456 394 438 c 2
353 416 l 1
324 442 310 450 290 450 c 0
261 450 237 428 237 400 c 0
237 389 246 370 265 343 c 2
365 198 l 1
312 100 m 1
228 220 l 1
193 204 175 177 175 144 c 0
175 105 202 86 257 86 c 0
282 86 293 89 312 100 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: quotesingle
Encoding: 39 39
Width: 600
Flags: HMW
HStem: 582 20<236 364 364 364>
Fore
236 602 m 1
364 602 l 1
333 348 l 1
329 322 321 312 301 312 c 0
282 312 273 322 270 347 c 1
236 602 l 1
EndSplineSet
EndChar
StartChar: parenleft
Encoding: 40 40
Width: 600
Flags: HMW
VStem: 264 111<189 290.5>
Fore
437 632 m 0
466 632 488 610 488 583 c 0
488 571 486 565 476 549 c 0
406 437 375 341 375 240 c 0
375 138 407 42 476 -70 c 0
486 -86 488 -92 488 -104 c 0
488 -131 466 -153 437 -153 c 0
413 -153 400 -142 371 -95 c 0
300 18 264 133 264 243 c 0
264 350 307 478 380 587 c 0
403 623 415 632 437 632 c 0
EndSplineSet
EndChar
StartChar: parenright
Encoding: 41 41
Width: 600
Flags: HMW
VStem: 230 111<188.5 290>
Fore
168 632 m 0
192 632 205 621 234 574 c 0
305 461 341 346 341 236 c 0
341 129 298 1 225 -109 c 0
202 -144 190 -153 168 -153 c 0
139 -153 117 -131 117 -104 c 0
117 -92 119 -86 129 -70 c 0
199 42 230 138 230 239 c 0
230 341 198 437 129 549 c 0
119 565 117 571 117 583 c 0
117 610 139 632 168 632 c 0
EndSplineSet
EndChar
StartChar: asterisk
Encoding: 42 42
Width: 600
Flags: HMW
VStem: 250 100<467 556>
Fore
219 372 m 1
133 400 l 2
96 411 83 425 83 452 c 0
83 479 105 502 130 502 c 0
140 502 143 501 164 495 c 2
250 467 l 1
250 556 l 2
250 581 252 592 259 601 c 0
269 614 284 622 300 622 c 0
317 622 334 613 343 598 c 0
348 589 350 580 350 556 c 2
350 467 l 1
436 495 l 2
457 501 460 502 469 502 c 0
494 502 517 478 517 452 c 0
517 426 503 411 467 400 c 2
381 372 l 1
433 301 l 2
448 280 452 271 452 258 c 0
452 231 429 208 402 208 c 0
381 208 373 214 352 242 c 2
300 314 l 1
248 242 l 2
228 214 218 208 198 208 c 0
171 208 148 231 148 258 c 0
148 271 152 279 167 301 c 1
219 372 l 1
EndSplineSet
EndChar
StartChar: plus
Encoding: 43 43
Width: 600
Flags: HMW
HStem: 0 20 230 100<108 250 350 491>
VStem: 250 100<66 230 330 494>
Fore
350 230 m 1
350 66 l 2
350 39 348 31 341 21 c 0
331 8 316 0 300 0 c 0
283 0 266 9 257 24 c 0
252 33 250 43 250 66 c 2
250 230 l 1
108 230 l 2
84 230 72 232 63 239 c 0
50 249 42 264 42 280 c 0
42 297 51 314 66 323 c 0
75 329 83 330 108 330 c 2
250 330 l 1
250 494 l 2
250 520 252 530 260 539 c 1
269 553 284 560 300 560 c 0
317 560 334 551 343 536 c 0
349 527 350 520 350 494 c 2
350 330 l 1
491 330 l 2
519 330 527 328 537 321 c 0
550 311 558 296 558 280 c 0
558 263 549 246 534 237 c 0
526 232 514 230 491 230 c 2
350 230 l 1
EndSplineSet
EndChar
StartChar: comma
Encoding: 44 44
Width: 600
Flags: W
Fore
219 134 m 1
351 134 l 1
210 -134 l 2
202 -150 190 -158 178 -158 c 0
161 -158 147 -145 147 -130 c 0
147 -124 147 -122 150 -111 c 2
219 134 l 1
EndSplineSet
Kerns: 49 -128 8221 -137 8217 -166
EndChar
StartChar: hyphen
Encoding: 45 45
Width: 600
Flags: HMW
HStem: 229 100<108 492>
Fore
492 229 m 2
108 229 l 2
83 229 72 231 63 238 c 0
50 248 42 263 42 279 c 0
42 296 51 312 66 322 c 0
75 328 83 329 108 329 c 2
492 329 l 2
518 329 528 327 538 320 c 0
551 310 558 295 558 279 c 0
558 262 549 245 534 236 c 0
526 231 514 229 492 229 c 2
EndSplineSet
Kerns: 65 -18 198 -14 193 -18 196 -18 197 -18 84 -90 86 -38 87 1 89 -81
EndChar
StartChar: period
Encoding: 46 46
Width: 600
Flags: HMW
HStem: -15 20
Fore
309 -15 m 2
291 -15 l 2
255 -15 225 15 225 51 c 0
225 87 255 117 291 117 c 2
309 117 l 2
346 117 375 88 375 51 c 0
375 14 346 -15 309 -15 c 2
EndSplineSet
Kerns: 49 -113 8221 -131 8217 -161
EndChar
StartChar: slash
Encoding: 47 47
Width: 600
Flags: W
DStem: 416 651 505 610 95 -27 185 -69
Fore
505 610 m 1
185 -69 l 1
170 -103 157 -113 133 -113 c 0
107 -113 83 -90 83 -65 c 0
83 -55 86 -45 95 -27 c 2
416 651 l 1
431 685 444 695 467 695 c 0
494 695 517 672 517 647 c 0
517 636 515 630 505 610 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: zero
Encoding: 48 48
Width: 600
Flags: HMW
HStem: -15 100<271.5 328.5> 538 100<271.5 328.5>
VStem: 83 100<264 359 359 366> 417 100<257 264 264 359>
Fore
517 359 m 2
517 264 l 2
517 173 489 92 439 40 c 0
405 4 357 -15 300 -15 c 0
243 -15 195 4 161 40 c 0
111 92 83 173 83 264 c 2
83 359 l 2
83 450 111 531 161 583 c 0
195 619 243 638 300 638 c 0
357 638 405 619 439 583 c 0
489 531 517 450 517 359 c 2
183 366 m 2
183 257 l 2
183 153 229 85 300 85 c 0
371 85 417 153 417 257 c 2
417 366 l 2
417 470 371 538 300 538 c 0
229 538 183 470 183 366 c 2
EndSplineSet
Kerns: 52 -59 49 -76 55 -68
EndChar
StartChar: one
Encoding: 49 49
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451>
VStem: 250 100<100 509 509 509>
Fore
350 638 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
509 81 517 66 517 50 c 0
517 33 508 17 493 7 c 0
486 3 471 0 451 0 c 2
149 0 l 2
126 0 112 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 509 l 1
163 486 l 2
144 481 141 480 131 480 c 0
105 480 85 503 85 532 c 0
85 561 98 573 138 583 c 2
350 638 l 1
EndSplineSet
Kerns: 44 -99 56 -74 53 -55 52 -87 57 -73 49 -62 46 -114 55 -141 54 -98 51 -53 50 -47 48 -86
EndChar
StartChar: two
Encoding: 50 50
Width: 600
Flags: HMW
HStem: 0 100<207 408> 538 100<268 320.5>
VStem: 403 100<431 473.5>
Fore
207 100 m 1
408 100 l 1
411 136 427 154 458 154 c 0
475 154 492 145 501 130 c 0
506 121 508 112 508 88 c 2
508 0 l 1
54 0 l 1
54 105 l 1
222 244 241 260 286 301 c 0
386 392 403 414 403 448 c 0
403 499 353 538 288 538 c 0
248 538 213 523 191 497 c 0
181 485 180 483 169 451 c 0
164 434 145 422 124 422 c 0
97 422 74 444 74 470 c 0
74 502 100 551 134 582 c 0
174 618 231 638 290 638 c 0
412 638 503 555 503 444 c 0
503 379 479 341 380 251 c 0
353 226 295 176 207 100 c 1
EndSplineSet
Kerns: 52 -67 49 -66 55 -68
EndChar
StartChar: three
Encoding: 51 51
Width: 600
Flags: W
HStem: -15 100<242 302> 538 100<276 316>
VStem: 407 100<450.768 466> 429 100<177 193>
Fore
276 383 m 2
316 383 l 2
365 383 407 420 407 462 c 0
407 509 364 538 295 538 c 0
240 538 212 527 180 492 c 0
171 483 158 477 144 477 c 0
117 477 95 500 95 527 c 0
95 585 194 638 301 638 c 0
367 638 419 619 457 580 c 1
489 549 507 505 507 464 c 0
507 409 481 372 416 333 c 1
492 296 529 246 529 182 c 0
529 124 501 68 455 32 c 0
411 -1 358 -15 271 -15 c 0
148 -15 66 19 66 70 c 0
66 98 88 120 116 120 c 0
128 120 132 118 148 108 c 0
174 91 204 85 268 85 c 0
337 85 374 95 401 119 c 0
418 135 429 160 429 183 c 0
429 220 400 255 353 274 c 0
332 283 319 285 276 287 c 0
243 289 224 306 224 333 c 0
224 362 246 383 276 383 c 2
EndSplineSet
MinimumDistance: x11,-1
Kerns: 52 -52 49 -71 55 -64
EndChar
StartChar: four
Encoding: 52 52
Width: 600
Flags: HMW
HStem: 0 100<309 347> 138 100<197 347>
VStem: 347 100<100 138 238 480 480 480>
Fore
447 622 m 1
447 238 l 1
486 238 508 220 508 188 c 0
508 156 487 139 447 138 c 1
447 100 l 1
486 100 508 82 508 50 c 0
508 33 499 17 484 7 c 0
477 3 462 0 441 0 c 2
309 0 l 2
286 0 272 3 264 10 c 0
251 19 243 35 243 50 c 0
243 67 252 84 267 93 c 0
276 99 285 100 309 100 c 2
347 100 l 1
347 138 l 1
75 138 l 1
75 221 l 1
316 622 l 1
447 622 l 1
347 238 m 1
347 480 l 1
197 238 l 1
347 238 l 1
EndSplineSet
Kerns: 52 -62 49 -66 55 -93
EndChar
StartChar: five
Encoding: 53 53
Width: 600
Flags: HMW
HStem: -15 100<244.5 325> 324 100<303.5 350.5> 522 100<219 219 219 421>
VStem: 119 100<407 522> 429 100<173 238>
Fore
219 522 m 1
219 407 l 1
255 418 289 424 318 424 c 0
439 424 529 330 529 202 c 0
529 144 510 92 474 53 c 0
430 5 372 -15 278 -15 c 0
158 -15 66 28 66 84 c 0
66 111 89 133 116 133 c 0
130 133 137 130 152 118 c 0
182 93 212 85 277 85 c 0
381 85 429 122 429 201 c 0
429 275 384 324 317 324 c 0
284 324 240 312 197 290 c 0
184 284 178 282 169 282 c 0
140 282 119 306 119 338 c 2
119 622 l 1
421 622 l 2
448 622 456 620 467 613 c 1
479 603 487 588 487 572 c 0
487 555 478 538 463 529 c 0
456 524 442 522 421 522 c 2
219 522 l 1
EndSplineSet
Kerns: 52 -52 49 -73 55 -73
EndChar
StartChar: six
Encoding: 54 54
Width: 600
Flags: HMW
HStem: -15 100<301.5 364.5> 294 100<319.5 365> 535 103<377 433.5>
VStem: 435 100<160.5 219>
Fore
208 324 m 1
256 375 294 394 345 394 c 0
450 394 535 302 535 189 c 0
535 132 517 81 483 44 c 0
447 4 398 -15 331 -15 c 0
248 -15 187 19 149 87 c 0
123 135 105 213 105 285 c 0
105 374 131 450 182 514 c 0
249 596 331 638 423 638 c 0
493 638 540 612 540 573 c 0
540 545 517 522 489 522 c 0
480 522 470 524 454 530 c 0
443 534 438 535 429 535 c 0
323 535 231 447 208 324 c 1
218 209 m 1
233 122 269 85 334 85 c 0
397 85 435 125 435 190 c 0
435 248 392 294 338 294 c 0
295 294 245 258 218 209 c 1
EndSplineSet
Kerns: 52 -49 49 -54 55 -46
EndChar
StartChar: seven
Encoding: 55 55
Width: 600
Flags: HMW
HStem: -1 20 522 100<175 403 175 175>
Fore
403 522 m 1
175 522 l 1
172 486 156 468 125 468 c 0
108 468 91 477 82 492 c 0
77 501 75 510 75 534 c 2
75 622 l 1
508 622 l 1
508 523 l 1
349 48 l 1
336 12 323 -1 297 -1 c 0
270 -1 246 21 246 47 c 0
246 56 248 64 253 81 c 1
403 522 l 1
EndSplineSet
Kerns: 58 -156 44 -157 56 -74 53 -82 52 -101 49 -67 46 -176 55 -62 54 -93 51 -72 50 -64
EndChar
StartChar: eight
Encoding: 56 56
Width: 600
Flags: W
HStem: -15 100<291 307> 263 101<291 307> 538 100<291 307>
VStem: 83 100<161 177> 92 100<449 459> 408 100<449 459> 417 100<161 177>
Fore
420 319 m 1
484 279 517 227 517 165 c 0
517 58 429 -15 299 -15 c 0
171 -15 83 58 83 165 c 0
83 227 116 279 180 319 c 1
120 359 92 402 92 455 c 0
92 557 184 638 300 638 c 0
415 638 508 557 508 457 c 0
508 402 480 359 420 319 c 1
300 538 m 0
236 538 192 502 192 451 c 0
192 400 237 364 300 364 c 0
363 364 408 400 408 450 c 0
408 502 364 538 300 538 c 0
300 263 m 0
236 263 183 223 183 173 c 0
183 122 232 85 300 85 c 0
368 85 417 122 417 172 c 0
417 223 366 263 300 263 c 0
EndSplineSet
MinimumDistance: x1,-1
Kerns: 52 -58 49 -72 55 -65
EndChar
StartChar: nine
Encoding: 57 57
Width: 600
Flags: HMW
HStem: -15 103<212.5 269> 229 100<281 327> 538 100<281.5 344.5>
VStem: 111 100<404 462.5>
Fore
438 299 m 1
390 248 352 229 302 229 c 0
196 229 111 321 111 434 c 0
111 491 129 542 163 579 c 0
199 619 248 638 315 638 c 0
398 638 459 604 497 536 c 0
523 489 541 409 541 338 c 0
541 250 515 173 464 109 c 0
397 27 315 -15 223 -15 c 0
153 -15 106 11 106 50 c 0
106 78 129 101 157 101 c 0
166 101 176 99 192 93 c 0
203 89 208 88 217 88 c 0
323 88 415 176 438 299 c 1
428 414 m 1
413 501 377 538 312 538 c 0
249 538 211 498 211 433 c 0
211 375 254 329 308 329 c 0
351 329 401 365 428 414 c 1
EndSplineSet
Kerns: 52 -53 49 -66 55 -57
EndChar
StartChar: colon
Encoding: 58 58
Width: 600
Flags: HMW
HStem: -15 20 417 20<291 309 309 327.5>
Fore
309 -15 m 2
291 -15 l 2
255 -15 225 15 225 51 c 0
225 87 255 117 291 117 c 2
309 117 l 2
346 117 375 88 375 51 c 0
375 14 346 -15 309 -15 c 2
309 304 m 2
291 304 l 2
255 304 225 334 225 370 c 0
225 407 255 437 291 437 c 2
309 437 l 2
346 437 375 408 375 370 c 0
375 333 346 304 309 304 c 2
EndSplineSet
EndChar
StartChar: semicolon
Encoding: 59 59
Width: 600
Flags: HMW
HStem: 417 20<253.5 299>
Fore
219 134 m 1
351 134 l 1
210 -134 l 2
202 -150 190 -158 178 -158 c 0
161 -158 147 -145 147 -130 c 0
147 -124 147 -122 150 -111 c 2
219 134 l 1
276 437 m 0
322 437 351 411 351 370 c 0
351 330 321 304 276 304 c 0
231 304 201 331 201 371 c 0
201 410 231 437 276 437 c 0
EndSplineSet
EndChar
StartChar: less
Encoding: 60 60
Width: 600
Flags: W
DStem: 42 280 251 279 472 63 512 143 472 492 512 412 42 280 251 279
Fore
251 279 m 1
512 143 l 2
535 131 544 119 544 100 c 0
544 95 542 88 539 81 c 2
538 79 l 2
532 65 516 54 502 54 c 0
494 54 483 57 472 63 c 2
42 280 l 1
472 492 l 2
484 498 494 501 502 501 c 0
516 501 532 490 538 476 c 2
539 474 l 2
542 468 544 461 544 455 c 0
544 436 535 424 512 412 c 2
251 279 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: equal
Encoding: 61 61
Width: 600
Flags: HMW
HStem: 138 100<108 492> 322 100<108 492>
Fore
108 422 m 2
492 422 l 2
519 422 527 420 537 413 c 0
550 403 558 388 558 372 c 0
558 355 549 338 534 329 c 0
526 324 514 322 492 322 c 2
108 322 l 2
84 322 72 324 63 332 c 1
50 341 42 356 42 372 c 0
42 389 51 406 66 415 c 0
75 421 83 422 108 422 c 2
108 238 m 2
492 238 l 2
519 238 527 236 537 229 c 0
550 219 558 204 558 188 c 0
558 171 549 154 534 145 c 0
526 140 514 138 492 138 c 2
108 138 l 2
84 138 72 140 63 148 c 1
50 157 42 172 42 188 c 0
42 205 51 222 66 231 c 0
75 237 83 238 108 238 c 2
EndSplineSet
EndChar
StartChar: greater
Encoding: 62 62
Width: 600
Flags: W
DStem: 88 412 128 491 349 275 558 274 349 275 558 274 88 142 128 62
Fore
349 275 m 1
88 412 l 2
65 423 56 435 56 453 c 0
56 459 58 466 61 473 c 2
62 475 l 2
67 488 84 500 98 500 c 0
106 500 117 497 128 491 c 2
558 274 l 1
128 62 l 2
116 56 105 53 98 53 c 0
84 53 68 64 62 78 c 2
61 80 l 2
58 87 56 93 56 100 c 0
56 118 65 130 88 142 c 2
349 275 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: question
Encoding: 63 63
Width: 600
Flags: HMW
HStem: -15 20 498 100<290 341>
VStem: 417 100<392.5 439>
Fore
104 460 m 2
104 539 l 1
200 585 244 598 308 598 c 0
432 598 517 521 517 409 c 0
517 328 474 281 353 228 c 1
349 192 332 174 303 174 c 0
286 174 269 183 260 198 c 0
255 207 253 217 253 240 c 2
253 296 l 1
381 345 417 371 417 414 c 0
417 464 373 498 309 498 c 0
271 498 237 490 204 474 c 1
204 460 l 2
204 434 202 424 195 415 c 0
185 402 169 394 154 394 c 0
137 394 120 404 111 418 c 0
106 426 104 437 104 460 c 2
311 -15 m 2
294 -15 l 2
257 -15 227 15 227 51 c 0
227 87 257 117 294 117 c 2
311 117 l 2
348 117 377 88 377 51 c 0
377 14 348 -15 311 -15 c 2
EndSplineSet
EndChar
StartChar: at
Encoding: 64 64
Width: 600
Flags: HMW
HStem: -152 78<283 327> -25 20 72 81<357 378.5> 541 79<260 333>
VStem: 76 79<154 161 161 317> 218 79<204.5 249.5> 407 79<155 316 316 316 397 429>
Fore
407 397 m 1
407 429 l 2
407 495 364 541 302 541 c 0
218 541 155 445 155 317 c 2
155 161 l 2
155 85 172 23 206 -24 c 0
230 -59 261 -74 305 -74 c 0
349 -74 389 -62 408 -42 c 0
422 -28 427 -25 439 -25 c 0
461 -25 479 -43 479 -66 c 0
479 -113 397 -152 302 -152 c 0
220 -152 165 -119 123 -45 c 0
93 9 76 81 76 154 c 2
76 323 l 2
76 495 171 620 301 620 c 0
409 620 486 540 486 429 c 2
486 148 l 1
502 141 509 130 509 113 c 0
509 85 491 72 454 72 c 2
407 72 l 1
407 75 l 1
392 73 383 72 374 72 c 0
289 72 218 143 218 226 c 0
218 319 295 389 407 397 c 1
407 155 m 1
407 316 l 1
341 310 297 274 297 225 c 0
297 184 333 153 381 153 c 0
388 153 393 153 407 155 c 1
EndSplineSet
EndChar
StartChar: A
Encoding: 65 65
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
EndSplineSet
Kerns: 67 -14 199 -22 71 -10 79 -15 214 -15 81 -16 84 -27 85 -23 218 -23 219 -23 220 -23 217 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 231 -8 44 -47 100 4 101 2 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8221 -84 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39
EndChar
StartChar: B
Encoding: 66 66
Width: 600
Flags: W
HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334>
VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162>
Fore
94 100 m 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 518 13 533 c 0
13 550 23 567 37 576 c 0
46 582 55 583 79 583 c 2
332 583 l 2
445 583 528 513 528 418 c 0
528 372 509 339 465 305 c 1
537 269 571 223 571 160 c 0
571 64 492 0 374 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
194 342 m 1
307 342 l 2
379 342 428 373 428 419 c 0
428 459 390 483 327 483 c 2
194 483 l 1
194 342 l 1
194 100 m 1
369 100 l 2
437 100 471 118 471 154 c 0
471 178 454 204 428 220 c 0
403 235 371 242 329 242 c 2
194 242 l 1
194 100 l 1
EndSplineSet
MinimumDistance: x10,-1
Kerns: 65 4 198 3 193 4 194 4 196 4 197 4 195 4 79 -9 338 11 211 -9 212 -9 214 -9 210 -9 216 -5 86 -18 87 -6 89 -39
EndChar
StartChar: C
Encoding: 67 67
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
Fore
447 563 m 2
457 559 l 1
470 577 482 583 499 583 c 0
517 583 533 574 542 559 c 0
548 550 549 542 549 517 c 2
549 433 l 2
549 408 547 397 540 388 c 0
530 375 515 367 499 367 c 0
486 367 472 373 464 381 c 0
456 389 454 396 450 420 c 0
445 444 435 457 406 473 c 0
379 488 343 497 309 497 c 0
207 497 133 420 133 315 c 2
133 251 l 2
133 151 210 86 330 86 c 0
375 86 415 94 440 109 c 0
451 115 451 115 478 143 c 0
489 154 501 159 514 159 c 0
541 159 564 136 564 109 c 0
564 86 545 60 511 36 c 0
467 4 399 -14 327 -14 c 0
157 -14 33 97 33 249 c 2
33 315 l 2
33 475 151 597 305 597 c 0
357 597 392 589 447 563 c 2
EndSplineSet
MinimumDistance: x12,-1
Kerns: 65 8 198 7 193 8 196 8 197 8 72 -13 75 -8 79 -14 211 -14 214 -14
EndChar
StartChar: D
Encoding: 68 68
Width: 600
Flags: HMW
HStem: 0 100<68 74 174 284> 483 100<174 174 174 284>
VStem: 74 100<100 483> 450 100<261 305>
Fore
74 100 m 1
74 483 l 1
35 483 13 501 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 80 583 c 2
292 583 l 2
438 583 550 462 550 305 c 2
550 258 l 2
550 185 526 123 480 75 c 0
431 23 371 0 284 0 c 2
80 0 l 2
56 0 43 3 34 10 c 0
21 19 13 35 13 50 c 0
13 82 36 100 74 100 c 1
174 100 m 1
285 100 l 2
345 100 378 112 409 144 c 1
437 175 450 210 450 261 c 2
450 307 l 2
450 354 434 398 405 432 c 0
375 467 337 483 284 483 c 2
174 483 l 1
174 100 l 1
EndSplineSet
Kerns: 65 -25 193 -25 194 -25 196 -25 192 -25 197 -25 195 -25 74 -32 84 -27 86 -30 87 -13 88 -37 89 -51
EndChar
StartChar: E
Encoding: 69 69
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: F
Encoding: 70 70
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 294> 243 99<194 279> 483 100<79 94 194 194 194 450>
VStem: 94 100<100 243 342 483> 450 100<432 483 483 483>
Fore
194 243 m 1
194 100 l 1
294 100 l 2
321 100 330 98 340 91 c 0
352 81 360 66 360 50 c 0
360 33 351 16 336 7 c 0
329 3 314 0 294 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
550 583 l 1
550 432 l 2
550 405 548 397 541 387 c 0
531 374 516 366 500 366 c 0
483 366 467 375 457 390 c 0
452 398 450 409 450 432 c 2
450 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 374 281 385 288 394 c 0
298 407 313 415 329 415 c 0
346 415 362 406 371 391 c 0
377 381 378 374 378 349 c 2
378 236 l 2
378 209 376 200 369 190 c 0
359 177 344 169 329 169 c 0
312 169 295 179 286 193 c 0
281 202 279 213 279 236 c 2
279 243 l 1
194 243 l 1
EndSplineSet
Kerns: 65 -39 193 -39 194 -39 196 -39 192 -39 197 -39 195 -39 74 -78 79 -24 214 -24 97 -40 225 -40 228 -40 230 -18 229 -40 44 -168 101 -47 233 -47 45 -55 105 -46 106 -54 111 -51 243 -51 246 -51 339 -16 248 -51 46 -187 114 -32 117 -1
EndChar
StartChar: G
Encoding: 71 71
Width: 600
Flags: HMW
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344>
VStem: 33 100<246 253 253 317> 450 100<111 180>
Fore
550 180 m 1
550 48 l 1
461 1 409 -14 331 -14 c 0
233 -14 148 15 99 65 c 0
58 108 33 176 33 246 c 2
33 317 l 2
33 393 64 467 117 520 c 0
170 572 235 597 317 597 c 0
371 597 420 586 462 565 c 1
474 589 484 597 503 597 c 0
520 597 536 588 543 573 c 0
549 563 550 555 550 531 c 2
550 453 l 2
550 425 549 418 541 408 c 0
531 395 516 387 500 387 c 0
487 387 473 393 465 402 c 0
459 409 459 409 451 440 c 0
441 475 391 497 318 497 c 0
262 497 217 481 186 450 c 0
153 417 133 367 133 317 c 2
133 253 l 2
133 195 147 156 178 130 c 0
212 101 262 86 325 86 c 0
373 86 412 94 450 111 c 1
450 180 l 1
350 180 l 2
325 180 314 182 305 190 c 1
292 199 284 214 284 230 c 0
284 247 293 264 308 273 c 0
317 279 325 280 350 280 c 2
525 280 l 2
552 280 561 278 571 271 c 0
585 261 592 246 592 230 c 0
592 205 578 188 550 180 c 1
EndSplineSet
Kerns: 65 6 198 5 193 6 194 6 196 6 192 6 197 6 195 6 84 -25 86 6 87 6 89 -14
EndChar
StartChar: H
Encoding: 72 72
Width: 600
Flags: HMW
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Fore
409 241 m 1
195 241 l 1
195 100 l 1
210 100 l 2
236 100 246 98 255 91 c 0
268 81 276 66 276 50 c 0
276 33 267 16 252 7 c 0
244 2 231 0 210 0 c 2
89 0 l 2
65 0 52 3 43 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 99 64 100 89 100 c 2
95 100 l 1
95 483 l 1
62 486 43 504 43 533 c 0
43 550 52 567 67 576 c 0
76 582 84 583 109 583 c 2
210 583 l 2
237 583 246 581 255 574 c 0
268 564 276 549 276 533 c 0
276 516 267 499 252 490 c 0
243 485 234 483 210 483 c 2
195 483 l 1
195 341 l 1
409 341 l 1
409 483 l 1
394 483 l 2
368 483 359 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 369 583 394 583 c 2
495 583 l 2
522 583 531 581 541 574 c 0
553 564 561 549 561 533 c 0
561 504 542 486 509 483 c 1
509 100 l 1
515 100 l 2
542 100 551 98 560 91 c 0
573 81 581 66 581 50 c 0
581 33 572 16 557 7 c 0
549 2 536 0 515 0 c 2
394 0 l 2
370 0 358 3 349 9 c 0
336 19 328 35 328 50 c 0
328 67 337 84 352 93 c 0
361 99 370 100 394 100 c 2
409 100 l 1
409 241 l 1
EndSplineSet
EndChar
StartChar: I
Encoding: 73 73
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
EndSplineSet
EndChar
StartChar: J
Encoding: 74 74
Width: 600
Flags: HMW
HStem: -14 100<254 289> 483 100<271 390 490 547 490 490>
VStem: 54 100<117 213> 390 100<198 483>
Fore
490 483 m 1
490 187 l 2
490 121 473 83 426 42 c 0
384 6 328 -14 269 -14 c 0
212 -14 145 6 54 51 c 1
54 213 l 2
54 239 56 250 63 259 c 0
73 272 88 280 104 280 c 0
121 280 138 271 147 256 c 0
153 247 154 238 154 213 c 2
154 117 l 1
203 95 237 86 271 86 c 0
307 86 343 100 366 122 c 0
387 143 390 152 390 198 c 2
390 483 l 1
271 483 l 2
246 483 235 485 226 492 c 0
213 502 205 517 205 533 c 0
205 550 214 567 229 576 c 0
238 582 245 583 271 583 c 2
547 583 l 2
574 583 583 581 592 574 c 0
605 564 613 549 613 533 c 0
613 516 604 499 589 490 c 0
581 485 570 483 547 483 c 2
490 483 l 1
EndSplineSet
Kerns: 65 -8 198 -16 196 -8 197 -8
EndChar
StartChar: K
Encoding: 75 75
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483>
Fore
194 208 m 1
194 100 l 1
229 100 l 2
256 100 264 98 274 91 c 0
287 81 295 66 295 50 c 0
295 33 286 16 271 7 c 0
264 3 249 0 229 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
229 583 l 2
256 583 265 581 274 574 c 0
287 564 295 549 295 533 c 0
295 516 286 499 271 490 c 0
263 485 252 483 229 483 c 2
194 483 l 1
194 334 l 1
372 487 l 1
351 495 341 509 341 532 c 0
341 560 357 578 386 581 c 0
398 583 399 583 407 583 c 2
507 583 l 2
534 583 543 581 553 574 c 0
565 564 573 549 573 533 c 0
573 500 552 483 511 483 c 1
335 330 l 1
396 298 458 215 504 100 c 1
536 100 l 2
563 100 571 98 581 91 c 0
594 81 602 66 602 50 c 0
602 33 593 16 578 7 c 0
571 3 556 0 536 0 c 2
426 0 l 1
379 143 315 240 254 259 c 1
194 208 l 1
EndSplineSet
Kerns: 67 -24 71 -19 79 -25 338 -4 211 -25 214 -25 83 -9 84 -13 97 6 228 6 230 31 229 6 101 -6 45 -44 111 -12 243 -12 246 -12 117 -22 252 -22 121 -50
EndChar
StartChar: L
Encoding: 76 76
Width: 600
Flags: HMW
HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 471 100<100 192>
Fore
256 483 m 5
256 100 l 5
471 100 l 5
471 192 l 6
471 219 473 228 480 238 c 4
490 252 505 259 521 259 c 4
538 259 554 250 564 235 c 4
570 226 571 217 571 192 c 6
571 0 l 5
99 0 l 6
76 0 62 3 54 10 c 4
41 19 33 34 33 50 c 4
33 67 42 84 57 93 c 4
66 99 73 100 99 100 c 6
156 100 l 5
156 483 l 5
99 483 l 6
74 483 63 485 54 492 c 4
41 502 33 517 33 533 c 4
33 550 42 567 57 576 c 4
66 582 73 583 99 583 c 6
313 583 l 6
340 583 348 581 358 574 c 4
371 564 379 549 379 533 c 4
379 516 370 499 355 490 c 4
347 485 336 483 313 483 c 6
256 483 l 5
EndSplineSet
Kerns: 65 16 198 16 193 16 196 16 197 16 67 -10 199 -11 71 -10 79 -7 211 -7 212 -7 214 -7 210 -7 213 -7 83 -24 84 -52 85 -29 220 -29 86 -57 87 -22 89 -52 45 9 8221 -72 8217 -99 117 -10 252 -11 121 -33
EndChar
StartChar: M
Encoding: 77 77
Width: 600
Flags: W
HStem: 0 100<29 41 143 189 413 461 563 573> 563 20G<438 548>
VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388>
DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138
Fore
142 389 m 1
142 100 l 1
177 100 l 2
204 100 212 98 223 91 c 0
236 81 243 66 243 50 c 0
243 33 234 17 219 7 c 0
212 3 197 0 177 0 c 2
48 0 l 2
24 0 11 3 2 10 c 0
-11 19 -19 34 -19 50 c 4
-19 82 3 100 42 100 c 1
42 483 l 1
9 486 -10 504 -10 534 c 0
-10 550 -1 567 14 577 c 0
19 580 40 584 52 584 c 0
54 584 55 584 56 583 c 2
165 583 l 1
303 286 l 1
438 583 l 1
548 583 l 2
575 583 584 581 594 574 c 0
606 564 614 549 614 533 c 0
614 504 595 486 562 483 c 1
562 100 l 1
601 100 623 82 623 50 c 0
623 33 614 17 599 7 c 0
592 3 577 0 557 0 c 2
427 0 l 2
404 0 390 3 382 10 c 0
369 19 361 35 361 50 c 0
361 67 370 84 385 93 c 0
394 99 401 100 427 100 c 2
462 100 l 1
462 389 l 1
351 138 l 1
260 138 l 1
142 389 l 1
EndSplineSet
MinimumDistance: x22,-1
EndChar
StartChar: N
Encoding: 78 78
Width: 600
Flags: HMW
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
Fore
173 394 m 1
173 100 l 1
208 100 l 2
235 100 244 98 254 91 c 0
267 81 274 66 274 50 c 0
274 33 265 17 250 7 c 0
243 3 228 0 208 0 c 2
79 0 l 2
55 0 42 3 33 10 c 0
20 19 12 34 12 50 c 0
12 82 34 100 73 100 c 1
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 1
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 0 l 1
432 0 l 1
173 394 l 1
EndSplineSet
Kerns: 65 -3 198 -3 193 -3 196 -3 197 -3 67 -7 199 -6 71 -6 79 -5 211 -5 214 -5 97 -11 225 -11 228 -11 230 18 229 -11 44 -75 101 -3 233 -3 111 -8 243 -8 246 -8 248 -3 46 -93 117 -8 252 -8
EndChar
StartChar: O
Encoding: 79 79
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
EndSplineSet
Kerns: 65 -14 198 -14 193 -14 196 -14 197 -14 84 -15 86 -23 87 -2 88 -26 89 -43
EndChar
StartChar: P
Encoding: 80 80
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194>
VStem: 94 100<100 200 300 483> 423 106<371 419.5>
Fore
194 200 m 1
194 100 l 1
293 100 l 2
320 100 328 98 338 91 c 0
351 81 359 66 359 50 c 0
359 33 350 16 335 7 c 0
328 3 313 0 293 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 518 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
312 583 l 2
439 583 529 505 529 394 c 0
529 348 511 301 479 266 c 0
435 217 385 200 292 200 c 2
194 200 l 1
194 483 m 1
194 300 l 1
312 300 l 2
381 300 423 335 423 391 c 0
423 448 381 483 312 483 c 2
194 483 l 1
EndSplineSet
Kerns: 65 -61 198 -59 193 -61 196 -61 197 -61 74 -73 97 -49 225 -49 228 -49 230 -27 229 -49 44 -160 101 -38 233 -38 45 -33 111 -42 243 -42 246 -42 339 -13 248 -42 46 -178
EndChar
StartChar: Q
Encoding: 81 81
Width: 600
Flags: W
HStem: -145 100<429 453> -117 92<309 325> -7 92<288 317> 497 100<288 317>
VStem: 21 100<271 303> 117 460<-91 -63> 479 100<271 303>
Fore
271 -6 m 1
267 -30 l 1
291 -26 303 -25 318 -25 c 0
344 -25 370 -29 402 -38 c 0
425 -44 432 -45 443 -45 c 0
458 -45 467 -42 486 -30 c 0
509 -15 515 -13 526 -13 c 0
555 -13 577 -35 577 -63 c 0
577 -84 567 -98 539 -114 c 0
503 -136 475 -145 444 -145 c 0
419 -145 415 -144 367 -125 c 0
356 -121 333 -117 319 -117 c 0
298 -117 236 -127 193 -138 c 0
181 -141 171 -143 165 -143 c 0
139 -143 117 -119 117 -91 c 0
117 -76 121 -68 137 -53 c 2
199 7 l 1
124 50 93 77 65 124 c 0
37 173 21 231 21 292 c 0
21 460 146 597 300 597 c 0
453 597 579 460 579 294 c 0
579 183 524 84 429 27 c 0
391 4 345 -7 289 -7 c 0
287 -7 279 -7 271 -6 c 1
300 497 m 0
202 497 121 404 121 291 c 0
121 179 202 85 300 85 c 0
397 85 479 178 479 288 c 0
479 404 399 497 300 497 c 0
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: R
Encoding: 82 82
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
Fore
194 222 m 1
194 100 l 1
229 100 l 2
256 100 265 98 275 91 c 0
287 81 295 66 295 50 c 0
295 33 286 16 271 7 c 0
264 3 249 0 229 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
302 583 l 2
432 583 522 510 522 405 c 0
522 342 487 294 414 254 c 1
461 213 498 167 540 100 c 1
553 100 l 2
578 100 589 98 599 91 c 0
611 82 619 66 619 50 c 0
619 33 610 16 595 7 c 0
588 3 573 0 553 0 c 2
474 0 l 1
424 97 332 207 290 222 c 1
194 222 l 1
194 322 m 1
270 322 l 2
354 322 416 358 416 408 c 0
416 451 370 483 306 483 c 2
194 483 l 1
194 322 l 1
EndSplineSet
Kerns: 67 -14 199 -17 71 -10 79 -14 338 5 211 -14 214 -14 84 -28 85 -16 220 -17 86 -24 87 -8 89 -28 97 14 225 14 228 14 230 40 229 14 101 2 233 2 45 -25 111 -3 243 -3 246 -3 339 29 117 -7 250 -8 252 -8 121 -18
EndChar
StartChar: S
Encoding: 83 83
Width: 600
Flags: HMW
HStem: -14 100<282 339> 497 100<267.5 324.5>
VStem: 82 104<410.5 442.5> 434 104<140.5 172.5>
Fore
517 531 m 2
517 443 l 2
517 415 515 407 508 397 c 0
498 384 483 376 468 376 c 0
454 376 440 382 432 390 c 0
425 398 425 398 418 430 c 0
409 470 361 497 299 497 c 0
236 497 186 464 186 421 c 0
186 400 201 377 223 366 c 0
243 356 248 354 323 340 c 0
410 324 448 310 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 230 293 242 c 0
228 253 196 263 164 281 c 0
113 310 82 363 82 420 c 0
82 521 175 597 299 597 c 0
350 597 394 586 429 564 c 1
439 589 448 597 468 597 c 0
485 597 502 588 510 574 c 0
516 565 517 557 517 531 c 2
EndSplineSet
Kerns: 65 -10 198 -10 193 -10 196 -10 197 -10 84 -41 86 -10 87 -12 89 -31 116 -17
EndChar
StartChar: T
Encoding: 84 84
Width: 600
Flags: HMW
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Fore
349 483 m 1
349 100 l 1
415 100 l 2
442 100 450 98 460 91 c 0
473 81 481 66 481 50 c 0
481 33 472 16 457 7 c 0
450 3 435 0 415 0 c 2
184 0 l 2
161 0 148 3 139 10 c 0
126 19 118 35 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 184 100 c 2
249 100 l 1
249 483 l 1
142 483 l 1
142 390 l 2
142 363 140 355 133 345 c 0
123 332 108 324 92 324 c 0
75 324 58 333 49 348 c 0
44 357 42 367 42 390 c 2
42 583 l 1
558 583 l 1
558 390 l 2
558 362 557 355 549 345 c 0
539 332 524 324 508 324 c 0
491 324 474 334 465 348 c 0
460 357 458 367 458 390 c 2
458 483 l 1
349 483 l 1
EndSplineSet
Kerns: 65 -28 198 -28 193 -28 194 -28 196 -28 192 -28 197 -28 195 -28 67 -19 71 -19 74 -65 79 -14 338 6 211 -14 212 -14 214 -14 210 -14 216 -14 213 -14 83 -41 86 10 87 4 89 -10 97 -34 230 -12 99 -37 58 -112 44 -130 101 -26 103 -24 171 -73 8249 -73 45 -91 105 -42 106 -49 111 -31 248 -31 46 -148 114 -28 115 -39 59 -100 117 4 118 10 119 10
EndChar
StartChar: U
Encoding: 85 85
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
EndSplineSet
Kerns: 65 -19 198 -18 193 -19 194 -19 196 -19 197 -19 195 -19 44 -95 109 16 110 -8 46 -114 114 -34
EndChar
StartChar: V
Encoding: 86 86
Width: 600
Flags: HMW
HStem: 0 20 483 100<45 47 159 159 159 178 423 447 553 555 555 563.5>
Fore
303 144 m 1
447 483 l 1
423 483 l 2
396 483 388 485 377 492 c 1
365 502 357 517 357 533 c 0
357 550 366 567 381 576 c 0
390 582 397 583 423 583 c 2
555 583 l 2
581 583 591 581 600 574 c 0
613 564 621 549 621 533 c 0
621 513 607 493 590 487 c 0
581 484 574 483 553 483 c 1
348 0 l 1
249 0 l 1
47 483 l 1
27 483 19 484 10 487 c 0
-7 493 -21 513 -21 533 c 0
-21 550 -12 567 3 576 c 0
12 582 19 583 45 583 c 2
178 583 l 2
204 583 214 581 224 574 c 0
236 564 244 549 244 533 c 0
244 516 235 499 220 490 c 0
211 485 202 483 178 483 c 2
159 483 l 1
303 144 l 1
EndSplineSet
Kerns: 65 -4 198 -12 193 -4 194 -4 196 -4 192 -4 197 -4 195 -4 67 -24 71 -24 79 -23 211 -23 212 -23 214 -23 210 -23 216 -23 213 -23 83 -27 84 10 97 -54 230 -27 58 -132 44 -146 101 -47 103 -46 171 -75 8249 -75 45 -39 105 -59 111 -52 248 -48 46 -164 114 -45 59 -120 117 -15 121 -17
EndChar
StartChar: W
Encoding: 87 87
Width: 600
Flags: HMW
HStem: 0 20 483 100<139 139 139 187 413 466>
Fore
300 277 m 1
209 0 l 1
98 0 l 1
36 483 l 1
6 487 -10 503 -10 531 c 0
-10 550 -1 566 14 576 c 0
23 582 30 583 56 583 c 2
187 583 l 2
215 583 223 581 233 574 c 0
246 564 254 549 254 533 c 0
254 516 245 499 230 490 c 0
221 485 211 483 187 483 c 2
139 483 l 1
175 211 l 1
251 437 l 1
355 437 l 1
431 211 l 1
466 483 l 1
413 483 l 2
388 483 377 485 368 492 c 0
355 502 347 517 347 533 c 0
347 550 356 567 371 576 c 0
380 582 387 583 413 583 c 2
544 583 l 2
571 583 580 581 590 574 c 0
602 564 610 549 610 533 c 0
610 506 593 488 563 483 c 1
503 0 l 1
393 0 l 1
300 277 l 1
EndSplineSet
Kerns: 65 -9 198 -9 193 -9 194 -9 196 -9 192 -9 197 -9 195 -9 67 -4 71 -3 79 -2 211 -2 212 -2 214 -2 210 -2 216 2 213 -2 83 -17 84 4 97 -11 230 17 58 -99 44 -83 101 -3 103 -3 171 -31 8249 -31 45 1 105 -38 111 -8 248 -4 46 -101 114 -25 59 -82 117 1 121 -2
EndChar
StartChar: X
Encoding: 88 88
Width: 600
Flags: W
HStem: 0 21G<76 187 413 524> 0.749951 99.25<58 69> 563 20G<85 176 422 512>
VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535>
DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297
Fore
364 297 m 1
531 100 l 1
569 99 590 81 590 50 c 0
590 33 581 16 566 7 c 0
558 2 545 0 524 0 c 2
413 0 l 2
369 0 347 17 347 50 c 0
347 80 367 98 402 100 c 1
301 220 l 1
199 100 l 1
233 98 253 80 253 50 c 0
253 33 244 16 229 7 c 0
221 2 208 0 187 0 c 2
76 0 l 2
52 0 40 3 31 9 c 0
18 19 10 34 10 50 c 0
10 81 32 100 69 100 c 1
235 298 l 1
77 483 l 1
40 485 19 503 19 533 c 0
19 560 36 578 65 581 c 0
77 583 78 583 85 583 c 2
176 583 l 2
204 583 212 581 222 574 c 0
235 564 243 549 243 533 c 0
243 511 234 498 205 484 c 1
300 375 l 1
393 484 l 1
365 498 355 511 355 533 c 0
355 548 363 564 376 573 c 0
384 580 400 583 422 583 c 2
512 583 l 6
539 583 547 581 557 574 c 0
571 564 578 549 578 533 c 0
578 502 556 484 521 483 c 1
364 297 l 1
EndSplineSet
MinimumDistance: x2,-1 x28,33 x19,24 x6,2 x15,10
Kerns: 67 -28 79 -26 214 -26 81 -26 101 -12 45 -50 111 -18 117 -28 121 -43
EndChar
StartChar: Y
Encoding: 89 89
Width: 600
Flags: HMW
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 250 100<100 245>
Fore
350 245 m 1
350 100 l 1
415 100 l 2
443 100 451 98 461 91 c 0
474 81 482 66 482 50 c 0
482 33 473 16 458 7 c 0
451 3 436 0 415 0 c 2
185 0 l 2
161 0 148 3 139 10 c 0
126 19 118 34 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 185 100 c 2
250 100 l 1
250 245 l 1
85 483 l 1
44 483 21 501 21 533 c 0
21 560 38 578 67 581 c 0
79 583 80 583 88 583 c 2
177 583 l 2
204 583 213 581 223 574 c 0
235 564 243 549 243 533 c 0
243 510 231 495 205 484 c 1
300 348 l 1
394 484 l 1
367 494 354 510 354 533 c 0
354 550 363 567 378 576 c 0
387 582 396 583 421 583 c 2
513 583 l 2
540 583 549 581 558 574 c 0
572 564 579 549 579 533 c 0
579 502 551 479 516 483 c 2
514 483 l 1
350 245 l 1
EndSplineSet
Kerns: 65 -25 198 -28 193 -25 194 -25 196 -25 192 -25 197 -25 195 -25 67 -45 71 -45 79 -44 211 -44 212 -44 214 -44 210 -44 216 -43 213 -44 83 -48 84 -10 97 -53 230 -28 58 -150 44 -118 101 -59 103 -59 171 -94 8249 -94 45 -81 105 -58 111 -64 248 -51 112 -30 46 -136 59 -133 117 -43 118 -33
EndChar
StartChar: Z
Encoding: 90 90
Width: 600
Flags: HMW
HStem: 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
Fore
201 100 m 1
427 100 l 1
427 172 l 2
427 197 429 208 436 218 c 0
446 230 461 238 477 238 c 0
494 238 511 229 520 214 c 0
526 205 527 198 527 172 c 2
527 0 l 1
73 0 l 1
73 100 l 1
375 483 l 1
196 483 l 1
196 413 l 2
196 386 194 377 187 368 c 0
177 355 162 347 146 347 c 0
129 347 113 356 103 371 c 0
98 380 96 388 96 413 c 2
96 583 l 1
504 583 l 1
504 486 l 1
201 100 l 1
EndSplineSet
Kerns: 118 -41 121 -52
EndChar
StartChar: bracketleft
Encoding: 91 91
Width: 600
Flags: HMW
HStem: -148 100<350 409> 527 100<350 350 350 408>
VStem: 250 100<-48 527>
Fore
350 527 m 1
350 -48 l 1
409 -48 l 2
436 -48 444 -50 454 -57 c 0
467 -67 475 -82 475 -98 c 0
475 -115 466 -131 451 -141 c 0
443 -146 431 -148 409 -148 c 2
250 -148 l 1
250 627 l 1
408 627 l 2
435 627 443 625 454 618 c 0
467 608 474 593 474 577 c 0
474 560 465 543 450 534 c 0
442 529 430 527 408 527 c 2
350 527 l 1
EndSplineSet
EndChar
StartChar: backslash
Encoding: 92 92
Width: 600
Flags: W
DStem: 95 610 184 651 415 -69 505 -27
Fore
184 651 m 1
505 -27 l 2
514 -45 517 -55 517 -65 c 0
517 -90 493 -113 467 -113 c 0
443 -113 431 -103 415 -69 c 2
95 610 l 1
85 630 83 636 83 647 c 0
83 672 106 695 133 695 c 0
156 695 169 685 184 651 c 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: bracketright
Encoding: 93 93
Width: 600
Flags: HMW
HStem: -148 100<192 250> 527 100<191 250>
VStem: 250 100<-48 527 527 527>
Fore
250 -48 m 1
250 527 l 1
191 527 l 2
164 527 156 529 146 536 c 0
133 546 125 561 125 577 c 0
125 594 134 610 149 620 c 0
157 625 169 627 191 627 c 2
350 627 l 1
350 -148 l 1
192 -148 l 2
165 -148 157 -146 146 -139 c 0
133 -129 126 -114 126 -98 c 0
126 -81 135 -64 150 -55 c 0
158 -50 170 -48 192 -48 c 2
250 -48 l 1
EndSplineSet
EndChar
StartChar: asciicircum
Encoding: 94 94
Width: 600
Flags: W
DStem: 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419 299 652 299 494 105 419 182 356 299 494 299 652 418 355 495 419
Fore
299 494 m 1
182 356 l 2
160 330 153 325 133 325 c 0
106 325 83 348 83 375 c 0
83 390 87 398 105 419 c 2
299 652 l 1
495 419 l 2
513 398 517 390 517 375 c 0
517 348 494 325 467 325 c 0
448 325 439 330 418 355 c 2
299 494 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: underscore
Encoding: 95 95
Width: 600
Flags: HMW
HStem: -125 50<-12 612>
Fore
612 -75 m 1
612 -125 l 1
-12 -125 l 1
-12 -75 l 1
612 -75 l 1
EndSplineSet
EndChar
StartChar: grave
Encoding: 96 96
Width: 600
Flags: W
DStem: 148 624 194 680 281 512 327 569
Fore
194 680 m 2
327 569 l 2
343 556 350 545 350 532 c 0
350 513 333 496 313 496 c 0
303 496 296 500 281 512 c 2
148 624 l 1
131 637 125 647 125 660 c 0
125 680 141 696 162 696 c 0
173 696 178 693 194 680 c 2
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: a
Encoding: 97 97
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
EndSplineSet
MinimumDistance: x14,-1
Kerns: 106 -81 8217 -78 118 -21 119 -12 121 -31
EndChar
StartChar: b
Encoding: 98 98
Width: 600
Flags: HMW
HStem: -14 100<295.5 346.5> 351 100<298.5 347>
VStem: 74 100<180.5 236.5 401 524 524 524> 471 100<202 235.5>
Fore
174 624 m 1
174 401 l 1
217 435 264 451 324 451 c 0
399 451 455 430 501 386 c 0
547 342 571 284 571 218 c 0
571 153 547 96 501 51 c 0
455 7 399 -14 325 -14 c 0
266 -14 226 -1 174 35 c 1
174 0 l 1
58 0 l 2
34 0 21 3 12 9 c 0
0 19 -8 34 -8 50 c 0
-8 67 1 84 16 93 c 0
25 99 33 100 58 100 c 2
74 100 l 1
74 524 l 1
58 524 l 2
32 524 22 526 12 533 c 0
0 543 -8 558 -8 574 c 0
-8 591 1 608 16 617 c 0
25 623 34 624 58 624 c 2
174 624 l 1
323 351 m 0
274 351 241 339 213 311 c 0
188 286 174 253 174 220 c 0
174 141 235 86 323 86 c 0
370 86 404 99 432 126 c 0
457 151 471 185 471 219 c 0
471 252 456 286 432 311 c 1
403 339 371 351 323 351 c 0
EndSplineSet
Kerns: 119 4 121 -10
EndChar
StartChar: c
Encoding: 99 99
Width: 600
Flags: HMW
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Fore
540 384 m 2
540 307 l 2
540 281 538 271 531 262 c 0
521 249 506 241 490 241 c 0
477 241 462 247 454 255 c 1
446 261 444 267 439 289 c 0
435 307 429 316 416 325 c 0
390 341 354 350 310 350 c 0
259 350 222 336 194 307 c 0
168 281 154 245 154 207 c 0
154 125 213 84 330 84 c 0
370 84 411 89 435 97 c 0
454 103 459 107 485 128 c 0
494 136 503 140 515 140 c 0
542 140 565 117 565 89 c 0
565 63 542 37 501 16 c 0
460 -4 396 -16 323 -16 c 0
226 -16 164 5 115 53 c 0
75 93 54 146 54 207 c 0
54 350 159 450 310 450 c 0
367 450 415 440 454 420 c 1
460 441 471 450 492 450 c 0
525 450 540 430 540 384 c 2
EndSplineSet
Kerns: 104 11 107 6
EndChar
StartChar: d
Encoding: 100 100
Width: 600
Flags: HMW
HStem: -14 100<258 306> 351 100<257 306>
VStem: 33 100<202 235.5> 431 100<201 235 401 525 525 525>
Fore
531 624 m 1
531 100 l 1
547 100 l 2
574 100 583 98 593 91 c 0
605 81 613 66 613 50 c 0
613 33 604 16 589 7 c 0
581 2 570 0 547 0 c 2
431 0 l 1
431 35 l 1
378 -1 339 -14 280 -14 c 0
205 -14 149 7 103 51 c 0
57 96 33 153 33 219 c 0
33 284 57 342 103 386 c 0
149 430 205 451 281 451 c 0
341 451 388 435 431 401 c 1
431 525 l 1
415 525 l 2
389 525 379 527 369 534 c 0
357 544 349 559 349 575 c 0
349 591 358 608 373 617 c 0
382 623 389 624 415 624 c 2
531 624 l 1
281 351 m 0
233 351 200 339 172 311 c 0
147 286 133 252 133 219 c 0
133 185 147 152 172 126 c 1
200 99 234 86 282 86 c 0
330 86 364 99 392 126 c 0
417 151 431 185 431 217 c 0
431 253 417 286 392 311 c 0
363 339 331 351 281 351 c 0
EndSplineSet
EndChar
StartChar: e
Encoding: 101 101
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
EndSplineSet
Kerns: 8217 -65 116 -16 118 -9 119 -3 120 6 121 -20
EndChar
StartChar: f
Encoding: 102 102
Width: 600
Flags: HMW
HStem: 0 100<141 199 299 438> 337 100<153 199 299 450> 523 100<354.5 398.5>
VStem: 199 100<100 337 437 474>
Fore
299 337 m 1
299 100 l 1
438 100 l 2
465 100 474 98 484 91 c 0
496 81 504 66 504 50 c 0
504 33 495 17 480 7 c 0
473 3 458 0 438 0 c 2
141 0 l 2
118 0 104 3 95 10 c 0
83 19 75 35 75 50 c 0
75 67 84 84 99 93 c 0
108 99 115 100 141 100 c 2
199 100 l 1
199 337 l 1
152 337 l 2
128 337 116 339 107 347 c 1
94 356 86 371 86 387 c 0
86 404 95 421 110 430 c 0
119 436 126 437 153 437 c 2
199 437 l 1
199 474 l 2
199 566 273 623 392 623 c 4
434 623 497 616 529 607 c 0
556 600 571 583 571 560 c 0
571 531 550 509 524 509 c 0
518 509 508 510 496 512 c 0
462 518 414 523 383 523 c 0
326 523 299 507 299 474 c 2
299 437 l 1
450 437 l 2
477 437 485 435 495 428 c 0
508 418 516 403 516 387 c 0
516 370 507 354 492 344 c 0
484 339 472 337 450 337 c 2
299 337 l 1
EndSplineSet
Kerns: 97 -32 225 -32 228 -32 230 -7 229 -32 101 -43 233 -43 102 -43 105 -37 106 -60 108 -25 111 -47 243 -47 246 -42 339 -15 248 -29 8217 -73 115 -42 116 -6
EndChar
StartChar: g
Encoding: 103 103
Width: 600
Flags: HMW
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
Fore
410 401 m 1
410 437 l 1
526 437 l 2
553 437 562 435 572 428 c 0
584 418 592 403 592 387 c 0
592 370 583 353 568 344 c 0
560 339 549 337 526 337 c 2
510 337 l 1
510 -20 l 2
510 -126 428 -205 319 -205 c 2
207 -205 l 2
182 -205 171 -203 162 -195 c 1
149 -186 141 -171 141 -155 c 0
141 -138 150 -121 165 -112 c 0
174 -106 181 -105 207 -105 c 2
316 -105 l 2
373 -105 410 -72 410 -20 c 2
410 35 l 1
364 1 321 -14 269 -14 c 0
135 -14 33 86 33 218 c 0
33 351 135 451 269 451 c 0
323 451 371 434 410 401 c 1
271 351 m 0
195 351 133 292 133 219 c 0
133 145 195 86 271 86 c 0
347 86 410 145 410 217 c 0
410 292 349 351 271 351 c 0
EndSplineSet
Kerns: 97 -4 228 -4 230 23 229 -4 101 1 233 1 108 -34 243 -3 246 -3
EndChar
StartChar: h
Encoding: 104 104
Width: 600
Flags: HMW
HStem: 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
Fore
195 624 m 1
195 389 l 1
235 430 280 450 332 450 c 0
438 450 509 384 509 284 c 2
509 100 l 1
515 100 l 2
542 100 551 98 561 91 c 0
573 81 581 66 581 50 c 0
581 33 572 16 557 7 c 0
549 2 536 0 515 0 c 2
403 0 l 2
379 0 366 3 357 9 c 0
344 19 336 34 336 50 c 0
336 67 345 83 360 93 c 0
369 98 378 100 403 100 c 2
409 100 l 1
409 271 l 2
409 305 405 317 388 331 c 0
371 345 352 350 321 350 c 0
274 350 252 338 195 283 c 1
195 100 l 1
201 100 l 2
229 100 237 98 247 91 c 0
260 81 268 66 268 50 c 0
268 33 259 17 244 7 c 0
236 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 44 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 524 l 1
79 524 l 2
53 524 43 526 33 533 c 0
21 543 13 559 13 574 c 0
13 591 22 608 37 617 c 0
46 622 55 624 79 624 c 2
195 624 l 1
EndSplineSet
Kerns: 8217 -69 121 -23
EndChar
StartChar: i
Encoding: 105 105
Width: 600
Flags: W
HStem: 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335>
VStem: 218 118<519 622> 250 100<100 337>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
336 623 m 1
336 518 l 1
218 518 l 1
218 623 l 1
336 623 l 1
EndSplineSet
MinimumDistance: x0,-1 x18,1 y1,18 y1,0
Kerns: 84 -58 106 -143
EndChar
StartChar: j
Encoding: 106 106
Width: 600
Flags: W
HStem: -205 100<165 310> 337 100<165 387> 518 105<312 429>
VStem: 311 119<519 622> 388 100<-29 337>
Fore
388 337 m 1
186 337 l 2
161 337 150 339 141 347 c 1
128 356 120 372 120 387 c 0
120 404 129 421 144 430 c 0
153 436 160 437 186 437 c 2
488 437 l 1
488 -20 l 2
488 -125 406 -205 297 -205 c 2
183 -205 l 2
158 -205 147 -203 138 -195 c 1
125 -186 117 -170 117 -155 c 0
117 -138 127 -121 141 -112 c 0
150 -106 158 -105 183 -105 c 2
294 -105 l 2
351 -105 388 -72 388 -20 c 2
388 337 l 1
430 623 m 1
430 518 l 1
311 518 l 1
311 623 l 1
430 623 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: k
Encoding: 107 107
Width: 600
Flags: W
HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114>
VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52>
DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241
Fore
215 164 m 1
215 0 l 1
99 0 l 2
55 0 33 17 33 50 c 0
33 67 42 84 57 93 c 0
66 99 74 100 99 100 c 2
115 100 l 1
115 524 l 5
99 524 l 6
73 524 63 526 53 533 c 4
41 543 33 558 33 574 c 4
33 591 42 608 57 617 c 4
66 623 75 624 99 624 c 6
215 624 l 5
215 287 l 1
294 350 l 1
282 364 278 373 278 387 c 0
278 404 287 420 302 430 c 0
310 435 321 437 345 437 c 2
457 437 l 2
482 437 493 435 503 428 c 0
516 418 523 403 523 387 c 0
523 370 514 354 499 344 c 0
491 339 480 337 457 337 c 2
429 337 l 1
311 241 l 1
471 100 l 1
504 100 l 2
532 100 540 98 550 91 c 0
563 81 571 66 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 504 0 c 2
386 0 l 2
342 0 320 17 320 50 c 0
320 64 324 74 336 87 c 1
233 178 l 1
215 164 l 1
EndSplineSet
MinimumDistance: x29,-1
Kerns: 97 1 225 1 228 1 230 26 229 1 44 -63 101 -11 233 -11 103 -14 45 -50 111 -17 243 -17 246 -17 46 -75 115 -9 117 -3 252 -3
EndChar
StartChar: l
Encoding: 108 108
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 524 100<172 250>
VStem: 250 100<100 524 524 524>
Fore
350 624 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 35 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
EndSplineSet
Kerns: 118 -77 121 -77
EndChar
StartChar: m
Encoding: 109 109
Width: 600
Flags: W
HStem: 0 21G<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20G<48 141>
VStem: 41 100<100 305> 252 100<100 305> 252 160<48 52> 463 100<100 321> 463 160<48 52>
Fore
141 437 m 1
141 413 l 1
176 441 196 450 226 450 c 0
265 450 298 434 328 401 c 1
359 435 391 450 432 450 c 0
507 450 563 394 563 319 c 2
563 100 l 1
601 100 623 82 623 50 c 0
623 17 601 0 557 0 c 2
463 0 l 1
463 311 l 2
463 340 454 350 428 350 c 0
402 350 386 341 352 305 c 1
352 100 l 1
390 100 412 81 412 50 c 0
412 33 403 17 388 7 c 0
380 2 367 0 346 0 c 2
252 0 l 1
252 311 l 2
252 339 242 350 217 350 c 0
190 350 171 339 141 305 c 1
141 100 l 1
180 100 202 82 202 50 c 0
202 33 193 17 178 7 c 0
170 2 157 0 136 0 c 2
48 0 l 2
24 0 11 3 2 10 c 0
-11 19 -19 35 -19 50 c 0
-19 82 3 100 41 100 c 1
41 337 l 1
3 338 -19 356 -19 387 c 0
-19 413 -2 432 27 435 c 0
38 437 40 437 48 437 c 2
141 437 l 1
EndSplineSet
Kerns: 112 32 118 18 119 22 121 8
EndChar
StartChar: n
Encoding: 110 110
Width: 600
Flags: W
HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<100 288>
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
EndSplineSet
MinimumDistance: x4,-1
Kerns: 84 -40 112 4 8217 -68 118 -12 119 -5 121 -22
EndChar
StartChar: o
Encoding: 111 111
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
EndSplineSet
Kerns: 84 -31 8217 -62 116 -13 118 -6 119 -3 120 -10 121 -17
EndChar
StartChar: p
Encoding: 112 112
Width: 600
Flags: HMW
HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5>
VStem: 74 100<-105 66 195.5 247> 471 100<195 246.5>
Fore
174 66 m 1
174 -105 l 1
232 -105 l 2
258 -105 268 -107 278 -114 c 0
291 -124 298 -139 298 -155 c 0
298 -172 289 -188 274 -198 c 0
266 -203 254 -205 232 -205 c 2
58 -205 l 2
33 -205 22 -203 12 -195 c 0
0 -186 -8 -171 -8 -155 c 0
-8 -138 1 -121 16 -112 c 0
25 -106 34 -105 58 -105 c 2
74 -105 l 1
74 337 l 1
58 337 l 2
32 337 22 339 12 346 c 0
0 356 -8 371 -8 387 c 0
-8 404 1 421 16 430 c 0
25 435 34 437 58 437 c 2
174 437 l 1
174 392 l 1
223 434 265 450 327 450 c 0
467 450 571 353 571 224 c 0
571 101 468 10 329 10 c 0
270 10 226 26 174 66 c 1
323 350 m 0
281 350 248 341 222 321 c 0
193 300 174 263 174 231 c 0
174 160 235 110 323 110 c 0
409 110 471 160 471 230 c 0
471 263 452 300 423 321 c 0
397 341 364 350 323 350 c 0
EndSplineSet
Kerns: 116 -3 121 -6
EndChar
StartChar: q
Encoding: 113 113
Width: 600
Flags: HMW
HStem: -205 100<373 431 531 547> 10 100<261 303> 350 100<260.5 308.5>
VStem: 33 100<213.5 246.5> 431 100<-105 66 66 66 213 264.5>
Fore
431 -105 m 1
431 66 l 1
379 26 334 10 275 10 c 0
136 10 33 101 33 224 c 0
33 354 137 450 277 450 c 0
340 450 382 434 431 392 c 1
431 437 l 1
547 437 l 2
574 437 583 435 593 428 c 0
605 418 613 403 613 387 c 0
613 370 604 353 589 344 c 0
581 339 570 337 547 337 c 2
531 337 l 1
531 -105 l 1
547 -105 l 2
574 -105 583 -107 593 -114 c 0
605 -124 613 -139 613 -155 c 0
613 -172 604 -188 589 -198 c 0
581 -203 569 -205 547 -205 c 2
373 -205 l 2
348 -205 337 -203 327 -195 c 0
314 -185 307 -171 307 -155 c 0
307 -138 316 -121 331 -112 c 0
339 -107 349 -105 373 -105 c 2
431 -105 l 1
281 350 m 0
240 350 207 340 181 321 c 0
152 299 133 263 133 230 c 0
133 197 152 161 181 139 c 0
206 120 240 110 282 110 c 0
324 110 358 120 383 139 c 0
412 161 431 197 431 229 c 0
431 300 370 350 281 350 c 0
EndSplineSet
Kerns: 99 2 117 41
EndChar
StartChar: r
Encoding: 114 114
Width: 600
Flags: W
HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447>
VStem: 178 100<100 247>
Fore
278 437 m 1
278 372 l 1
358 432 396 449 445 449 c 0
480 449 512 437 543 411 c 0
564 394 571 382 571 364 c 0
571 336 548 313 521 313 c 0
507 313 497 318 482 331 c 0
467 344 457 349 443 349 c 0
411 349 373 325 278 247 c 1
278 100 l 1
417 100 l 2
445 100 453 98 463 91 c 0
476 81 484 66 484 50 c 0
484 33 475 16 460 7 c 0
453 3 438 0 417 0 c 2
120 0 l 2
97 0 83 3 74 10 c 0
62 19 54 35 54 50 c 0
54 67 63 84 78 93 c 0
87 99 94 100 120 100 c 2
178 100 l 1
178 337 l 1
143 337 l 2
118 337 107 339 98 347 c 1
85 356 77 371 77 387 c 0
77 404 86 420 101 429 c 1
107 434 126 437 143 437 c 2
278 437 l 1
EndSplineSet
MinimumDistance: x0,-1
Kerns: 97 -17 225 -17 226 -17 228 -17 230 4 224 -17 229 -17 99 -18 231 -15 58 -95 44 -108 100 -8 101 -7 233 -7 234 -7 232 -7 102 -16 103 -5 104 -20 45 -41 105 -25 106 -33 107 -30 108 -47 109 36 110 10 111 -12 243 -12 244 -12 246 -12 339 18 242 -12 248 -12 112 30 46 -122 113 -4 8217 -41 114 -11 115 -21 59 -83 116 20 117 20 118 26 119 26 120 7 121 16 122 -21
EndChar
StartChar: s
Encoding: 115 115
Width: 600
Flags: HMW
HStem: -16 100<275.5 332> 350 100<275.5 322>
VStem: 92 110<310.5 324> 417 110<115.5 133.5>
Fore
409 312 m 2
404 321 l 1
376 341 343 350 301 350 c 0
250 350 202 333 202 315 c 0
202 306 212 297 228 291 c 0
242 286 248 285 312 276 c 0
387 266 427 255 457 238 c 0
501 214 527 171 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 345 173 291 179 c 0
151 194 92 234 92 313 c 0
92 393 178 450 298 450 c 0
347 450 388 442 427 424 c 1
435 443 444 450 459 450 c 0
491 450 506 430 506 384 c 2
506 347 l 2
506 321 504 311 497 301 c 0
487 289 471 281 456 281 c 0
435 281 421 290 409 312 c 2
EndSplineSet
Kerns: 8217 -60 116 -11
EndChar
StartChar: t
Encoding: 116 116
Width: 600
Flags: HMW
HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 114 100<130.5 141 141 337 437 525>
Fore
214 337 m 1
214 141 l 2
214 120 216 111 222 104 c 0
234 91 262 84 300 84 c 0
353 84 401 95 446 118 c 0
463 127 470 129 481 129 c 0
508 129 529 106 529 78 c 0
529 54 517 41 479 24 c 0
430 1 351 -16 299 -16 c 0
185 -16 114 37 114 122 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
114 525 l 2
114 551 116 561 124 571 c 0
133 583 148 591 164 591 c 0
181 591 198 582 207 567 c 0
213 558 214 551 214 525 c 2
214 437 l 1
395 437 l 2
422 437 430 435 441 428 c 1
453 418 461 403 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
EndSplineSet
Kerns: 83 -35 97 -16 225 -16 228 -16 230 9 229 -16 58 -117 101 -24 233 -24 104 -5 111 -30 243 -30 246 -30 8217 -102 59 -103
EndChar
StartChar: u
Encoding: 117 117
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 337 l 1
68 337 l 2
35 337 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 345 336 330 347 c 24
316 358 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
EndSplineSet
Kerns: 8217 -56
EndChar
StartChar: v
Encoding: 118 118
Width: 600
Flags: HMW
HStem: 0 20 417 20<66 198 198 211 399 534 534 547>
Fore
302 122 m 1
409 337 l 1
399 337 l 2
374 337 363 339 354 346 c 0
341 356 333 371 333 387 c 0
333 404 342 421 357 430 c 0
366 435 375 437 399 437 c 2
534 437 l 2
560 437 570 435 580 428 c 0
592 418 600 403 600 387 c 0
600 370 591 353 576 344 c 0
568 339 557 337 534 337 c 2
518 337 l 1
351 0 l 1
247 0 l 1
80 337 l 1
66 337 l 2
41 337 30 339 21 346 c 0
8 356 0 371 0 387 c 0
0 404 9 421 24 430 c 0
33 435 42 437 66 437 c 2
198 437 l 2
224 437 234 435 244 428 c 0
256 418 264 403 264 387 c 0
264 370 255 353 240 344 c 0
232 339 221 337 198 337 c 2
193 337 l 1
302 122 l 1
EndSplineSet
Kerns: 97 -3 225 -3 226 -3 228 -3 230 18 224 -3 229 -3 227 -3 99 -11 58 -81 44 -136 103 1 45 -23 108 -77 111 -5 243 -5 246 -5 242 -5 248 -5 46 -156 115 -11 59 -69
EndChar
StartChar: w
Encoding: 119 119
Width: 600
Flags: HMW
HStem: 0 20 417 20<66 158 158 171 441 534 534 547>
Fore
301 181 m 1
233 0 l 1
139 0 l 1
54 338 l 1
20 340 0 358 0 387 c 0
0 414 17 432 45 435 c 0
57 437 58 437 66 437 c 2
158 437 l 2
184 437 194 435 204 428 c 0
216 418 224 403 224 387 c 0
224 370 215 354 201 345 c 0
193 340 185 338 160 338 c 1
199 185 l 1
259 343 l 1
347 343 l 1
408 185 l 1
448 338 l 1
441 338 l 2
415 338 405 340 396 347 c 0
383 356 375 372 375 387 c 0
375 402 383 418 396 427 c 0
404 434 420 437 441 437 c 2
534 437 l 2
560 437 570 435 579 428 c 0
592 418 600 403 600 387 c 0
600 358 581 340 548 338 c 1
464 0 l 1
372 0 l 1
301 181 l 1
EndSplineSet
Kerns: 97 -3 225 -3 226 -3 228 -3 230 23 224 -3 229 -3 227 -3 99 -6 58 -81 44 -90 101 2 233 2 234 2 232 2 103 3 45 3 108 -48 111 -2 243 -2 246 -2 242 -2 248 2 46 -109 115 -11 59 -69
EndChar
StartChar: x
Encoding: 120 120
Width: 600
Flags: HMW
HStem: 0 20 417 20<106 198 198 211 400 491 491 504>
Fore
373 227 m 1
525 100 l 1
559 98 579 80 579 50 c 0
579 33 569 16 555 7 c 0
547 2 534 0 513 0 c 2
401 0 l 2
376 0 364 3 354 10 c 0
341 20 334 34 334 51 c 0
334 74 349 93 374 100 c 1
299 161 l 1
226 100 l 1
254 88 264 75 264 51 c 0
264 17 242 0 198 0 c 2
87 0 l 2
43 0 21 17 21 50 c 0
21 80 41 98 75 100 c 1
220 228 l 1
92 337 l 1
59 340 40 358 40 387 c 0
40 414 57 432 85 435 c 0
97 437 98 437 106 437 c 2
198 437 l 2
224 437 234 435 244 427 c 0
256 418 264 403 264 388 c 0
264 370 255 353 238 342 c 1
299 293 l 1
360 343 l 1
341 356 334 369 334 386 c 0
334 414 351 432 379 435 c 0
391 437 392 437 400 437 c 2
491 437 l 2
517 437 527 435 537 428 c 0
550 418 558 403 558 387 c 0
558 358 539 340 505 337 c 1
373 227 l 1
EndSplineSet
Kerns: 97 5 99 -14 101 -5 233 -5 111 -10 113 -8
EndChar
StartChar: y
Encoding: 121 121
Width: 600
Flags: HMW
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
Fore
242 3 m 5
70 337 l 1
39 341 21 359 21 387 c 0
21 414 38 432 67 435 c 0
78 437 80 437 87 437 c 2
177 437 l 2
203 437 213 435 223 428 c 0
235 418 243 403 243 387 c 0
243 356 222 338 184 337 c 1
298 114 l 1
418 337 l 1
377 337 354 355 354 387 c 0
354 414 371 432 400 435 c 0
411 437 413 437 421 437 c 2
513 437 l 2
539 437 549 435 558 428 c 0
572 418 579 403 579 387 c 0
579 358 560 340 527 337 c 1
297 -105 l 1
302 -105 l 2
328 -105 338 -107 348 -114 c 0
360 -124 368 -139 368 -155 c 0
368 -172 359 -188 344 -198 c 0
336 -203 324 -205 302 -205 c 2
87 -205 l 2
62 -205 57 -206 42 -195 c 24
28 -184 21 -171 21 -155 c 0
21 -138 30 -121 45 -112 c 0
54 -107 63 -105 87 -105 c 2
187 -105 l 1
242 3 l 5
EndSplineSet
Kerns: 97 -13 225 -13 226 -13 228 -13 230 8 224 -13 229 -13 227 -13 99 -21 58 -91 44 -134 101 -11 233 -11 234 -11 232 -11 103 -9 45 -19 108 -78 111 -15 243 -15 246 -15 242 -15 248 -15 46 -155 115 -21 59 -79
EndChar
StartChar: z
Encoding: 122 122
Width: 600
Flags: HMW
HStem: 0 100<244 419> 337 100<197 346 197 197>
Fore
244 100 m 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
518 121 519 114 519 88 c 2
519 0 l 1
85 0 l 1
85 83 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
244 100 l 1
EndSplineSet
EndChar
StartChar: braceleft
Encoding: 123 123
Width: 600
Flags: HMW
VStem: 248 100<-22 -15 -15 142 328 485>
Fore
348 485 m 2
348 328 l 2
348 285 342 268 319 240 c 1
343 211 348 194 348 142 c 2
348 -15 l 2
348 -42 356 -50 384 -52 c 0
413 -54 433 -75 433 -103 c 0
433 -133 411 -153 378 -153 c 0
308 -153 248 -93 248 -22 c 2
248 151 l 2
248 179 242 186 216 189 c 0
184 193 167 210 167 240 c 0
167 269 184 287 216 290 c 0
242 293 248 301 248 328 c 2
248 492 l 2
248 563 308 623 377 623 c 0
411 623 433 603 433 573 c 0
433 545 413 524 384 522 c 0
356 521 348 512 348 485 c 2
EndSplineSet
EndChar
StartChar: bar
Encoding: 124 124
Width: 600
Flags: HMW
VStem: 250 100<-87 556>
Fore
350 556 m 2
350 -87 l 2
350 -112 348 -122 341 -132 c 0
331 -145 316 -153 300 -153 c 0
283 -153 267 -144 257 -129 c 0
252 -121 250 -110 250 -87 c 2
250 556 l 2
250 582 252 592 259 602 c 0
269 614 284 622 300 622 c 0
317 622 334 613 343 598 c 0
348 589 350 580 350 556 c 2
EndSplineSet
EndChar
StartChar: braceright
Encoding: 125 125
Width: 600
Flags: HMW
VStem: 252 100<-15 142 328 485 485 492>
Fore
252 -15 m 2
252 142 l 2
252 185 258 202 281 230 c 1
257 259 252 276 252 328 c 2
252 485 l 2
252 512 244 520 216 522 c 0
187 524 167 545 167 573 c 0
167 603 189 623 222 623 c 0
292 623 352 563 352 492 c 2
352 319 l 2
352 291 358 284 384 281 c 0
416 277 433 260 433 230 c 0
433 201 416 183 384 180 c 0
358 177 352 169 352 142 c 2
352 -22 l 2
352 -93 292 -153 223 -153 c 0
189 -153 167 -133 167 -103 c 0
167 -75 187 -54 216 -52 c 0
244 -51 252 -42 252 -15 c 2
EndSplineSet
EndChar
StartChar: asciitilde
Encoding: 126 126
Width: 600
Flags: W
HStem: 179 105<388 393> 281 104<211 215>
Fore
488 364 m 0
515 364 538 341 538 314 c 0
538 294 530 280 497 241 c 0
460 197 430 179 391 179 c 0
352 179 314 200 254 254 c 0
233 272 220 281 212 281 c 0
202 281 192 272 165 239 c 0
139 207 131 201 113 201 c 0
86 201 62 225 62 252 c 0
62 271 72 290 101 322 c 0
140 367 172 385 213 385 c 0
255 385 282 370 350 307 c 1
368 292 380 284 389 284 c 0
400 284 413 297 438 330 c 0
458 357 468 364 488 364 c 0
EndSplineSet
EndChar
StartChar: nonbreakingspace
Encoding: 160 160
Width: 600
Flags: W
Ref: 32 N 1 0 0 1 0 0
EndChar
StartChar: exclamdown
Encoding: 161 161
Width: 600
Flags: HMW
HStem: -227 20
Fore
222 -114 m 1
251 183 l 2
254 214 272 232 300 232 c 0
328 232 347 213 350 183 c 2
379 -114 l 1
380 -127 381 -141 381 -147 c 0
381 -193 347 -227 300 -227 c 0
254 -227 220 -193 220 -147 c 0
220 -140 221 -126 222 -114 c 1
292 426 m 2
309 426 l 2
346 426 375 397 375 360 c 0
375 323 346 294 309 294 c 2
292 294 l 2
255 294 225 323 225 360 c 0
225 397 255 426 292 426 c 2
EndSplineSet
EndChar
StartChar: cent
Encoding: 162 162
Width: 600
Flags: HMW
HStem: -44 241<292.5 309> 427 234<293 309.5>
VStem: 83 100<278.5 343.5> 251 100<22 99 527 594>
Fore
351 99 m 1
351 22 l 2
351 -5 349 -13 342 -23 c 0
332 -36 317 -44 301 -44 c 0
284 -44 268 -35 258 -20 c 0
253 -12 251 -1 251 22 c 2
251 103 l 1
148 128 83 209 83 312 c 0
83 409 152 493 251 517 c 1
251 594 l 2
251 621 253 630 261 640 c 0
271 654 285 661 301 661 c 0
318 661 335 652 344 637 c 0
350 628 351 620 351 594 c 2
351 527 l 1
382 522 404 515 424 503 c 1
433 506 438 507 444 507 c 0
462 507 478 498 488 483 c 0
494 474 495 467 495 441 c 2
495 399 l 2
495 372 493 364 486 354 c 0
476 341 461 333 445 333 c 0
433 333 418 339 410 346 c 1
403 354 403 354 395 384 c 0
388 414 365 427 320 427 c 0
241 427 183 377 183 310 c 0
183 247 238 197 310 197 c 0
347 197 381 208 415 233 c 0
427 241 437 245 449 245 c 0
475 245 499 221 499 194 c 0
499 152 439 114 351 99 c 1
EndSplineSet
EndChar
StartChar: sterling
Encoding: 163 163
Width: 600
Flags: W
HStem: 0 100<248 450> 243 100<77 142 270 321> 498 100<289 313>
VStem: 33 348<288 295> 55 495<51 90> 126 100<416.987 445> 169 101<208 242>
Fore
314 243 m 2
269 243 l 1
270 231 270 221 270 216 c 0
270 172 264 142 247 100 c 1
450 100 l 1
454 130 471 146 499 146 c 0
530 146 550 124 550 90 c 0
550 32 512 0 442 0 c 2
121 0 l 2
98 0 85 3 76 10 c 0
63 19 55 35 55 51 c 0
55 78 70 93 105 100 c 0
130 105 141 113 150 132 c 0
163 157 169 188 169 224 c 0
169 227 169 235 168 243 c 1
99 243 l 2
74 243 63 245 54 252 c 0
41 262 33 277 33 293 c 0
33 310 42 327 57 336 c 0
66 342 74 343 99 343 c 2
143 343 l 1
131 379 126 403 126 432 c 0
126 529 198 598 299 598 c 0
377 598 457 546 457 495 c 0
457 467 435 444 408 444 c 0
389 444 384 447 361 472 c 0
345 490 325 498 298 498 c 0
257 498 226 472 226 437 c 0
226 416 226 414 246 343 c 1
314 343 l 2
341 343 350 341 360 334 c 0
373 324 381 309 381 293 c 4
381 276 372 260 357 250 c 0
348 245 338 243 314 243 c 2
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: currency
Encoding: 164 164
Width: 600
Flags: HMW
HStem: 97 100<282 317.5> 388 100<282 318>
VStem: 106 100<274.5 310> 394 100<274.5 309.5>
Fore
131 388 m 1
98 420 l 2
83 435 73 455 73 469 c 0
73 496 96 519 124 519 c 0
141 519 148 515 171 493 c 2
203 462 l 1
240 482 264 488 300 488 c 0
336 488 360 481 397 461 c 1
428 491 l 2
450 513 458 517 475 517 c 0
503 517 526 494 526 466 c 0
526 449 522 442 500 420 c 2
469 388 l 1
488 351 494 327 494 292 c 0
494 257 488 233 468 196 c 1
501 162 l 2
522 141 527 132 527 116 c 0
527 88 503 64 475 64 c 0
458 64 451 68 429 90 c 2
395 122 l 1
359 103 335 97 300 97 c 0
264 97 241 103 204 123 c 1
171 91 l 2
148 68 141 64 124 64 c 0
96 64 73 87 73 115 c 0
73 132 77 139 99 162 c 2
131 196 l 1
112 233 106 257 106 292 c 0
106 328 112 352 131 388 c 1
300 388 m 0
248 388 206 346 206 293 c 0
206 241 249 197 300 197 c 0
351 197 394 241 394 292 c 0
394 346 353 388 300 388 c 0
EndSplineSet
EndChar
StartChar: yen
Encoding: 165 165
Width: 600
Flags: HMW
HStem: 0 100<204 250 350 397> 135 56<153 250 350 447> 225 56<153 225 375 447>
VStem: 250 100<100 135 191 225>
Fore
301 348 m 1
396 481 l 1
370 488 355 506 355 530 c 0
355 547 364 564 379 573 c 0
388 579 396 580 422 580 c 2
513 580 l 2
541 580 548 578 558 571 c 0
571 561 579 546 579 530 c 0
579 513 570 497 555 487 c 0
550 484 521 478 515 480 c 2
514 480 l 1
375 281 l 1
447 281 l 2
467 281 478 271 478 253 c 0
478 235 467 225 447 225 c 2
350 225 l 1
350 191 l 1
447 191 l 2
467 191 478 181 478 163 c 0
478 145 467 135 447 135 c 2
350 135 l 1
350 100 l 1
397 100 l 2
424 100 432 98 442 91 c 0
456 81 463 66 463 50 c 0
463 17 441 0 397 0 c 2
203 0 l 2
180 0 166 3 158 10 c 0
145 19 137 35 137 50 c 0
137 67 146 84 161 93 c 0
170 99 178 100 204 100 c 2
250 100 l 1
250 135 l 1
153 135 l 2
133 135 122 145 122 163 c 0
122 181 133 191 153 191 c 2
250 191 l 1
250 225 l 1
153 225 l 2
133 225 122 235 122 253 c 0
122 271 132 281 153 281 c 2
225 281 l 1
87 481 l 1
85 480 83 480 82 480 c 0
48 477 21 499 21 530 c 0
21 547 30 564 45 573 c 0
54 579 61 580 87 580 c 2
179 580 l 2
208 580 215 578 226 570 c 0
239 560 246 546 246 530 c 0
246 506 230 486 207 482 c 1
301 348 l 1
EndSplineSet
EndChar
StartChar: brokenbar
Encoding: 166 166
Width: 600
Flags: HMW
VStem: 250 100<-87 116 353 556>
Fore
350 556 m 2
350 353 l 2
350 326 348 318 341 308 c 0
331 295 316 287 300 287 c 0
283 287 266 296 257 311 c 0
252 319 250 330 250 353 c 2
250 556 l 2
250 581 252 592 259 601 c 0
269 614 284 622 300 622 c 0
327 622 345 605 349 577 c 0
350 566 350 564 350 556 c 2
350 116 m 2
350 -87 l 2
350 -112 348 -122 341 -132 c 0
331 -145 316 -153 300 -153 c 0
283 -153 267 -144 257 -129 c 0
252 -121 250 -110 250 -87 c 2
250 116 l 2
250 142 252 152 259 162 c 0
269 174 284 182 300 182 c 0
317 182 334 173 343 158 c 0
348 149 350 140 350 116 c 2
EndSplineSet
EndChar
StartChar: section
Encoding: 167 167
Width: 600
Flags: W
HStem: -170 88<169 326> -170 182<116 133> 493 90<274 431>
VStem: 36 96<284 294> 81 88<-81 -28> 132 85<433 442> 381 86<-30 -26> 431 88<438 492> 468 96<118 128>
Fore
431 493 m 1
287 493 l 2
248 493 217 469 217 440 c 0
217 415 252 383 324 342 c 2
416 291 l 2
533 226 564 191 564 129 c 0
564 68 527 25 462 10 c 1
466 -7 467 -16 467 -28 c 0
467 -63 454 -94 429 -123 c 0
399 -156 365 -170 312 -170 c 2
81 -170 l 1
81 -43 l 2
81 -6 95 12 125 12 c 0
141 12 155 4 163 -9 c 0
168 -16 169 -22 169 -43 c 2
169 -82 l 1
314 -82 l 2
350 -82 381 -57 381 -29 c 0
381 -3 347 29 276 69 c 2
170 130 l 2
71 187 36 226 36 283 c 0
36 342 72 384 137 402 c 1
133 414 132 420 132 432 c 0
132 469 147 507 174 535 c 0
205 569 241 583 294 583 c 2
519 583 l 1
519 456 l 2
519 433 518 427 511 419 c 0
503 408 489 401 475 401 c 0
460 401 445 409 437 421 c 0
433 428 431 437 431 456 c 2
431 493 l 1
371 214 m 2
272 271 l 2
238 290 228 297 192 326 c 1
153 326 132 314 132 292 c 0
132 266 159 239 218 205 c 2
321 147 l 1
374 114 390 103 407 88 c 1
413 88 l 1
424 88 l 2
449 89 468 102 468 121 c 0
468 144 433 178 371 214 c 2
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: dieresis
Encoding: 168 168
Width: 600
Flags: HMW
VStem: 136 120<577.5 610> 344 120<577.5 610>
Fore
196 654 m 0
230 654 256 627 256 593 c 0
256 561 229 534 196 534 c 0
163 534 136 561 136 594 c 0
136 627 163 654 196 654 c 0
404 654 m 0
438 654 464 627 464 593 c 0
464 561 437 534 404 534 c 0
371 534 344 561 344 594 c 0
344 627 371 654 404 654 c 0
EndSplineSet
EndChar
StartChar: copyright
Encoding: 169 169
Width: 600
Flags: W
HStem: -15 73<281 313> 118 71<290 313> 395 71<281 305> 525 73<281 313>
VStem: -7 73<271 307> 135 71<257 307> 533 73<270 307>
Fore
135 269 m 2
135 305 l 2
135 397 202 466 291 466 c 0
319 466 342 461 370 447 c 1
375 459 384 466 398 466 c 0
418 466 431 451 431 428 c 2
431 422 l 1
431 368 l 2
431 340 418 324 396 324 c 0
375 324 365 335 360 360 c 0
357 379 327 395 293 395 c 0
242 395 206 357 206 304 c 2
206 270 l 2
206 221 244 189 303 189 c 0
342 189 355 194 378 218 c 0
385 225 394 229 403 229 c 0
422 229 439 212 439 193 c 0
439 154 373 118 302 118 c 0
206 118 135 182 135 269 c 2
299 598 m 0
469 598 606 461 606 292 c 0
606 121 469 -15 296 -15 c 0
131 -15 -7 124 -7 292 c 0
-7 461 130 598 299 598 c 0
300 525 m 0
170 525 66 421 66 292 c 0
66 164 171 58 297 58 c 0
429 58 533 161 533 292 c 0
533 421 428 525 300 525 c 0
EndSplineSet
EndChar
StartChar: ordfeminine
Encoding: 170 170
Width: 600
Flags: HMW
HStem: 182 77<176 431 431 432> 273 79<239.5 265.5> 417 70<267 297.5> 517 78<284.5 316.5>
VStem: 118 91<367.5 379.5> 354 78<383 410 410 410 482 490>
Fore
354 284 m 1
354 295 l 1
314 279 285 273 246 273 c 0
175 273 118 316 118 369 c 0
118 390 129 415 146 434 c 0
178 470 225 487 292 487 c 0
312 487 325 486 354 482 c 1
354 490 l 2
354 509 337 517 296 517 c 0
273 517 249 514 217 506 c 0
206 503 195 501 189 501 c 0
168 501 151 519 151 541 c 0
151 557 160 569 175 575 c 0
209 587 257 595 292 595 c 0
381 595 432 557 432 490 c 2
432 362 l 1
438 362 l 2
473 362 489 350 489 323 c 0
489 298 472 284 439 284 c 2
354 284 l 1
354 383 m 1
354 410 l 1
322 416 307 417 288 417 c 0
246 417 209 397 209 374 c 0
209 361 227 352 252 352 c 0
284 352 328 365 354 383 c 1
432 182 m 2
176 182 l 2
132 182 124 189 124 227 c 0
124 252 135 259 176 259 c 2
431 259 l 2
467 259 483 247 483 221 c 0
483 195 466 182 432 182 c 2
EndSplineSet
EndChar
StartChar: guillemotleft
Encoding: 171 171
Width: 600
Flags: HMW
HStem: 0 20<304.5 318 533.5 547>
Fore
175 218 m 1
326 77 l 2
337 67 342 59 342 50 c 0
342 34 327 20 309 20 c 0
300 20 295 22 281 33 c 2
33 218 l 1
281 402 l 2
295 413 300 415 310 415 c 0
327 415 342 401 342 385 c 0
342 376 338 368 326 358 c 1
175 218 l 1
404 218 m 1
555 77 l 2
566 67 571 59 571 50 c 0
571 34 556 20 538 20 c 0
529 20 524 22 510 33 c 2
262 218 l 1
510 402 l 2
524 413 529 415 539 415 c 0
556 415 571 401 571 385 c 0
571 376 567 368 555 358 c 1
404 218 l 1
EndSplineSet
EndChar
StartChar: logicalnot
Encoding: 172 172
Width: 600
Flags: HMW
HStem: 345 100<108 365>
VStem: 365 100<181 345 345 345>
Fore
465 445 m 1
465 181 l 2
465 154 463 146 456 136 c 0
446 123 431 115 415 115 c 0
398 115 381 124 372 139 c 0
367 148 365 158 365 181 c 2
365 345 l 1
108 345 l 2
84 345 72 347 63 355 c 1
50 364 42 380 42 395 c 0
42 412 51 429 66 438 c 0
75 444 82 445 108 445 c 2
465 445 l 1
EndSplineSet
EndChar
StartChar: softhyphen
Encoding: 173 173
Width: 600
Flags: W
HStem: 229 100<108 492>
Ref: 45 N 1 0 0 1 0 0
EndChar
StartChar: registered
Encoding: 174 174
Width: 600
Flags: HMW
HStem: -15 73<234 363> 246 70<269 284> 387 71<269 269 269 292 292 294> 525 73<235.5 364>
VStem: -7 73<228 356> 197 72<197 246 316 387> 348 71<344 364.5> 533 73<226.5 356>
Fore
269 246 m 1
269 197 l 1
295 197 311 184 311 162 c 0
311 139 295 126 267 126 c 2
199 126 l 2
170 126 154 139 154 162 c 0
154 184 169 197 197 197 c 1
197 387 l 1
169 388 154 401 154 423 c 0
154 446 170 458 199 458 c 2
292 458 l 2
367 458 419 415 419 354 c 0
419 317 395 283 358 266 c 1
382 244 389 235 411 197 c 1
434 195 447 182 447 162 c 0
447 139 431 126 403 126 c 2
363 126 l 1
351 175 312 233 284 246 c 1
269 246 l 1
269 316 m 1
294 316 l 2
325 316 348 333 348 355 c 0
348 374 327 387 294 387 c 2
269 387 l 1
269 316 l 1
300 598 m 0
468 598 606 461 606 292 c 0
606 121 469 -15 296 -15 c 0
131 -15 -7 124 -7 292 c 0
-7 460 131 598 300 598 c 0
300 525 m 0
171 525 66 420 66 292 c 0
66 164 171 58 297 58 c 0
429 58 533 161 533 292 c 0
533 420 428 525 300 525 c 0
EndSplineSet
EndChar
StartChar: macron
Encoding: 175 175
Width: 600
Flags: HMW
HStem: 546 80<178 422>
Fore
178 626 m 2
422 626 l 2
445 626 457 623 464 615 c 0
470 608 475 594 475 586 c 0
475 561 455 546 422 546 c 2
178 546 l 2
153 546 145 548 136 558 c 0
130 566 125 578 125 586 c 0
125 611 144 626 178 626 c 2
EndSplineSet
EndChar
StartChar: degree
Encoding: 176 176
Width: 600
Flags: HMW
HStem: 243 61<268.5 331> 535 61<268.5 331.5>
VStem: 125 61<388.5 451.5> 414 61<388 451.5>
Fore
300 596 m 0
397 596 475 517 475 420 c 0
475 321 397 243 298 243 c 0
204 243 125 323 125 420 c 0
125 517 203 596 300 596 c 0
300 535 m 0
237 535 186 483 186 420 c 0
186 357 238 304 299 304 c 0
363 304 414 356 414 420 c 0
414 483 363 535 300 535 c 0
EndSplineSet
EndChar
StartChar: plusminus
Encoding: 177 177
Width: 600
Flags: HMW
HStem: 0 100<108 492> 330 100<108 250 350 491>
VStem: 250 100<230 330 430 558>
Fore
350 330 m 1
350 230 l 2
350 203 348 195 341 185 c 0
331 172 316 164 300 164 c 0
283 164 266 174 257 188 c 0
252 197 250 207 250 230 c 2
250 330 l 1
108 330 l 2
84 330 72 332 63 340 c 1
50 349 42 365 42 380 c 0
42 397 52 414 66 423 c 0
75 429 83 430 108 430 c 2
250 430 l 1
250 558 l 2
250 584 252 594 260 603 c 1
269 616 284 624 300 624 c 0
317 624 334 615 343 600 c 0
349 591 350 584 350 558 c 2
350 430 l 1
491 430 l 2
519 430 527 428 537 421 c 0
550 411 558 396 558 380 c 0
558 363 549 346 534 337 c 0
526 332 514 330 491 330 c 2
350 330 l 1
108 100 m 2
492 100 l 2
519 100 527 98 537 91 c 0
550 81 558 66 558 50 c 0
558 33 549 16 534 7 c 0
526 2 514 0 492 0 c 2
108 0 l 2
84 0 72 2 63 10 c 1
50 19 42 35 42 50 c 0
42 67 52 84 66 93 c 0
75 99 83 100 108 100 c 2
EndSplineSet
EndChar
StartChar: twosuperior
Encoding: 178 178
Width: 600
Flags: HMW
HStem: 247 67<253 362> 570 67<281.5 311.5>
VStem: 358 67<506 534>
Fore
253 314 m 1
362 314 l 1
365 335 376 346 395 346 c 0
418 346 429 332 429 303 c 2
429 247 l 1
149 247 l 1
149 315 l 1
335 469 358 492 358 520 c 0
358 548 330 570 293 570 c 0
270 570 250 562 237 546 c 0
232 540 231 539 225 520 c 0
221 508 208 500 195 500 c 0
176 500 161 515 161 533 c 0
161 553 177 583 198 602 c 0
223 624 258 637 294 637 c 0
369 637 425 586 425 517 c 0
425 466 402 439 253 314 c 1
EndSplineSet
EndChar
StartChar: threesuperior
Encoding: 179 179
Width: 600
Flags: W
HStem: 238 67<269 304> 570 67<283 313>
VStem: 362 67<526 534> 375 67<350 359>
Fore
286 484 m 2
311 484 l 2
338 484 362 505 362 528 c 0
362 554 337 570 299 570 c 0
266 570 251 564 232 543 c 0
226 537 217 533 208 533 c 0
190 533 175 549 175 567 c 0
175 604 236 637 302 637 c 0
375 637 429 591 429 529 c 0
429 498 411 469 381 450 c 2
381 450 379 449 378 448 c 1
419 427 442 393 442 355 c 0
442 322 424 287 396 266 c 0
370 247 335 238 285 238 c 0
207 238 157 259 157 292 c 0
157 311 172 326 190 326 c 0
198 326 202 325 212 318 c 0
227 308 245 305 283 305 c 0
343 305 375 323 375 357 c 0
375 378 357 399 331 411 c 0
319 416 314 417 286 418 c 0
265 420 252 432 252 451 c 0
252 470 267 484 286 484 c 2
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: acute
Encoding: 180 180
Width: 600
Flags: W
DStem: 406 680 452 624 273 569 319 512
Fore
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: mu
Encoding: 181 181
Width: 600
Flags: W
HStem: -16 100<252 269> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 365 409>
VStem: 95 100<-105 -8 135 337> 410 100<138 337>
Fore
195 -7 m 1
195 -87 l 2
195 -113 193 -122 186 -132 c 0
176 -145 161 -153 145 -153 c 0
128 -153 112 -144 102 -129 c 0
97 -121 95 -110 95 -87 c 2
95 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
47 436 52 437 79 437 c 2
195 437 l 1
195 144 l 2
195 101 214 84 260 84 c 0
304 84 346 99 410 138 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 22 l 1
356 -4 305 -16 253 -16 c 0
232 -16 215 -13 195 -7 c 1
EndSplineSet
MinimumDistance: x22,-1
EndChar
StartChar: paragraph
Encoding: 182 182
Width: 600
Flags: HMW
HStem: -174 78<191 270 468 504> 505 78<348 392 348 348 468 468 468 502>
VStem: 49 113<361 405> 270 78<-96 185 185 185 266 500 500 500> 392 76<-96 505>
Fore
468 505 m 1
468 -96 l 1
504 -96 l 2
541 -96 558 -109 558 -135 c 0
558 -161 540 -174 504 -174 c 2
411 -174 l 2
390 -174 380 -165 371 -140 c 1
360 -168 352 -174 328 -174 c 2
191 -174 l 2
156 -174 138 -161 138 -135 c 0
138 -122 146 -109 157 -102 c 0
165 -97 170 -96 191 -96 c 2
270 -96 l 1
270 185 l 1
141 198 49 272 49 361 c 2
49 407 l 2
49 504 163 583 305 583 c 2
502 583 l 2
538 583 556 570 556 544 c 0
556 518 539 505 502 505 c 2
468 505 l 1
270 266 m 1
270 500 l 1
203 486 162 450 162 405 c 2
162 361 l 2
162 316 203 280 270 266 c 1
392 505 m 1
348 505 l 1
348 -96 l 1
361 -102 366 -108 371 -124 c 1
375 -109 381 -102 392 -96 c 1
392 505 l 1
EndSplineSet
EndChar
StartChar: periodcentered
Encoding: 183 183
Width: 600
Flags: W
HStem: 214 132<289 311>
VStem: 225 150<278 282>
Fore
309 214 m 2
291 214 l 2
255 214 225 244 225 280 c 0
225 316 255 346 291 346 c 2
309 346 l 2
346 346 375 317 375 280 c 0
375 243 346 214 309 214 c 2
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: cedilla
Encoding: 184 184
Width: 600
Flags: HMW
HStem: -229 70<292.5 312.5> -100 100<281.5 301>
VStem: 262 70<-41 0> 337 70<-142 -123.5>
Fore
262 0 m 1
332 0 l 1
332 -41 l 1
383 -52 407 -81 407 -132 c 0
407 -189 362 -229 300 -229 c 0
273 -229 232 -218 208 -205 c 0
189 -194 180 -182 180 -166 c 0
180 -147 196 -131 215 -131 c 0
223 -131 226 -132 244 -142 c 0
262 -152 284 -159 301 -159 c 0
324 -159 337 -150 337 -134 c 0
337 -113 318 -100 284 -100 c 0
279 -100 275 -100 262 -102 c 1
262 0 l 1
EndSplineSet
EndChar
StartChar: onesuperior
Encoding: 185 185
Width: 600
Flags: HMW
HStem: 247 67<210 267 334 391>
VStem: 267 67<314 551 551 551>
Fore
334 638 m 1
334 314 l 1
391 314 l 2
420 314 434 303 434 281 c 0
434 259 419 247 391 247 c 2
210 247 l 2
182 247 166 259 166 281 c 0
166 303 180 314 210 314 c 2
267 314 l 1
267 551 l 1
219 539 l 2
208 536 205 535 199 535 c 0
182 535 168 551 168 570 c 0
168 589 177 597 202 604 c 2
334 638 l 1
EndSplineSet
EndChar
StartChar: ordmasculine
Encoding: 186 186
Width: 600
Flags: HMW
HStem: 182 77<174 428> 273 78<277 325> 517 78<276.5 325.5>
VStem: 131 79<409 453.5> 392 79<409 453.5>
Fore
301 595 m 0
396 595 471 521 471 428 c 0
471 343 394 273 301 273 c 0
207 273 131 343 131 430 c 0
131 520 208 595 301 595 c 0
301 517 m 0
252 517 210 477 210 430 c 0
210 388 253 351 301 351 c 0
349 351 392 388 392 430 c 0
392 477 350 517 301 517 c 0
428 182 m 2
174 182 l 2
139 182 122 195 122 221 c 0
122 233 129 246 140 253 c 0
148 258 153 259 174 259 c 2
428 259 l 2
464 259 480 247 480 221 c 0
480 195 463 182 428 182 c 2
EndSplineSet
EndChar
StartChar: guillemotright
Encoding: 187 187
Width: 600
Flags: HMW
HStem: 0 20<56.5 70 286.5 300>
Fore
430 217 m 1
279 358 l 2
268 368 263 376 263 385 c 0
263 401 278 415 296 415 c 0
305 415 310 413 324 402 c 2
571 217 l 1
324 33 l 2
310 22 305 20 295 20 c 0
278 20 263 34 263 50 c 0
263 59 267 67 279 77 c 1
430 217 l 1
200 217 m 1
49 358 l 2
38 368 33 376 33 385 c 0
33 401 48 415 66 415 c 0
75 415 80 413 94 402 c 2
341 217 l 1
94 33 l 2
80 22 75 20 65 20 c 0
48 20 33 34 33 50 c 0
33 59 37 67 49 77 c 1
200 217 l 1
EndSplineSet
Kerns: 65 -37 198 -34 193 -37 196 -37 197 -37 84 -71 86 -72 87 -29 89 -92
EndChar
StartChar: onequarter
Encoding: 188 188
Width: 600
Flags: HMW
HStem: 0 67<506 525> 83 67<446 525> 247 67<10 67 134 191>
VStem: 67 67<314 551 551 551> 525 67<67 83 150 279 279 279>
Fore
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 1
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
592 380 m 5
592 150 l 5
615 149 629 137 629 117 c 4
629 97 616 84 592 83 c 5
592 67 l 5
615 66 629 54 629 34 c 4
629 12 613 0 585 0 c 6
506 0 l 6
478 0 463 12 463 34 c 4
463 56 477 67 506 67 c 6
525 67 l 5
525 83 l 5
362 83 l 5
362 138 l 5
508 380 l 5
592 380 l 5
525 150 m 5
525 279 l 5
446 150 l 5
525 150 l 5
EndSplineSet
EndChar
StartChar: onehalf
Encoding: 189 189
Width: 600
Flags: HMW
HStem: 0 67<453 562> 247 67<10 67 134 191> 323 67<481.5 511.5>
VStem: 67 67<314 551 551 551> 558 67<259 287>
Fore
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 1
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
453 67 m 1
562 67 l 1
565 88 576 99 595 99 c 0
618 99 629 85 629 56 c 2
629 0 l 1
349 0 l 1
349 68 l 1
535 222 558 245 558 273 c 0
558 301 530 323 493 323 c 0
470 323 450 315 437 299 c 0
432 293 431 292 425 273 c 0
421 261 408 253 395 253 c 0
376 253 361 268 361 286 c 0
361 306 377 336 398 355 c 0
423 377 458 390 494 390 c 0
569 390 625 339 625 270 c 0
625 219 602 192 453 67 c 1
EndSplineSet
EndChar
StartChar: threequarters
Encoding: 190 190
Width: 600
Flags: W
HStem: 0 67<501 525> 0 380<526 593> 83 67<447 525> 238 67<69 104> 570 67<83 113>
VStem: 162 67<527 534> 175 67<352 359> 362 268<109 119> 463 167<32 36> 526 67<67 83 151 278>
DStem: 416 561 474 528 155 110 213 77 509 380 526 279 362 138 446 150
Fore
86 484 m 2
111 484 l 2
138 484 162 505 162 528 c 0
162 554 137 570 99 570 c 0
66 570 51 564 32 543 c 0
26 537 17 533 8 533 c 0
-10 533 -25 549 -25 567 c 0
-25 604 36 637 102 637 c 4
175 637 229 591 229 529 c 0
229 498 211 469 181 450 c 2
181 450 179 449 178 448 c 1
219 427 242 393 242 355 c 0
242 322 224 287 196 266 c 0
170 247 135 238 85 238 c 0
7 238 -43 259 -43 292 c 0
-43 311 -28 326 -10 326 c 0
-2 326 2 325 12 318 c 0
27 308 45 305 83 305 c 0
143 305 175 323 175 357 c 0
175 378 157 399 131 411 c 0
119 416 114 417 86 418 c 0
65 420 52 432 52 451 c 0
52 470 67 484 86 484 c 2
474 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 66 145 84 c 0
145 91 147 97 155 110 c 2
416 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 549 480 539 474 528 c 2
593 380 m 1
593 150 l 1
616 149 630 137 630 117 c 0
630 97 617 84 593 83 c 1
593 67 l 1
616 66 630 54 630 34 c 0
630 12 614 0 586 0 c 2
507 0 l 2
479 0 463 12 463 34 c 0
463 56 477 67 507 67 c 2
526 67 l 1
526 83 l 1
362 83 l 1
362 138 l 1
509 380 l 1
593 380 l 1
526 150 m 1
526 279 l 1
446 150 l 1
526 150 l 1
EndSplineSet
MinimumDistance: x30,-1 y43,41 x41,43 x41,42 x40,37 x40,39
EndChar
StartChar: questiondown
Encoding: 191 191
Width: 600
Flags: HMW
HStem: -227 100<259 310> -23 20
VStem: 83 100<-68 -21.5>
Fore
496 -89 m 2
496 -168 l 1
399 -215 356 -227 292 -227 c 0
168 -227 83 -150 83 -38 c 0
83 43 126 90 247 143 c 1
251 179 268 197 297 197 c 0
314 197 331 188 340 173 c 0
345 164 347 154 347 131 c 2
347 75 l 1
219 26 183 0 183 -43 c 0
183 -93 227 -127 291 -127 c 0
329 -127 363 -119 396 -103 c 1
396 -89 l 2
396 -62 398 -54 405 -44 c 0
415 -31 431 -23 446 -23 c 0
463 -23 480 -33 489 -47 c 0
494 -55 496 -66 496 -89 c 2
289 386 m 2
306 386 l 2
343 386 373 356 373 320 c 0
373 284 343 254 306 254 c 2
289 254 l 2
252 254 223 283 223 320 c 0
223 357 252 386 289 386 c 2
EndSplineSet
EndChar
StartChar: Agrave
Encoding: 192 192
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
210 824 m 2
343 712 l 2
359 699 366 688 366 676 c 0
366 657 349 640 329 640 c 0
320 640 310 645 297 656 c 2
164 767 l 2
147 781 141 790 141 803 c 0
141 823 157 839 178 839 c 0
188 839 196 835 210 824 c 2
EndSplineSet
Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 44 -47 46 -62
EndChar
StartChar: Aacute
Encoding: 193 193
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
410 767 m 1
277 656 l 2
264 645 254 640 245 640 c 0
225 640 208 657 208 676 c 0
208 688 215 700 231 712 c 1
364 824 l 2
378 835 386 839 396 839 c 0
417 839 433 823 433 803 c 0
433 790 427 780 410 767 c 1
EndSplineSet
Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 44 -47 100 4 101 2 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39
EndChar
StartChar: Acircumflex
Encoding: 194 194
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
284 750 m 1
171 653 l 2
159 643 152 640 143 640 c 0
124 640 108 657 108 675 c 0
108 689 110 692 132 711 c 2
284 839 l 1
435 711 l 1
444 703 l 2
455 694 459 687 459 675 c 0
459 657 443 640 425 640 c 0
415 640 407 644 396 653 c 2
284 750 l 1
EndSplineSet
Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 44 -47 46 -62
EndChar
StartChar: Atilde
Encoding: 195 195
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 730 69<201 217>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
436 799 m 0
453 799 468 785 468 771 c 0
468 756 460 741 439 715 c 0
412 681 388 667 359 667 c 0
337 667 304 681 260 709 c 0
233 726 224 730 210 730 c 0
192 730 184 723 155 685 c 0
147 675 139 670 129 670 c 0
112 670 98 683 98 700 c 0
98 714 108 733 125 754 c 0
150 783 179 799 208 799 c 0
231 799 249 792 298 762 c 0
331 742 345 736 356 736 c 0
371 736 375 739 397 769 c 0
411 789 424 799 436 799 c 0
EndSplineSet
Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 44 -47 46 -62
EndChar
StartChar: Adieresis
Encoding: 196 196
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
VStem: -21 120 187 120
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
179 798 m 0
213 798 239 771 239 737 c 0
239 705 212 678 179 678 c 0
146 678 119 705 119 738 c 0
119 771 146 798 179 798 c 0
387 798 m 0
421 798 447 771 447 737 c 0
447 705 420 678 387 678 c 0
354 678 327 705 327 738 c 0
327 771 354 798 387 798 c 0
EndSplineSet
Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 44 -47 100 4 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8221 -84 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39
EndChar
StartChar: Aring
Encoding: 197 197
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 630 54<264 301.5> 818 53<264 302>
VStem: -21 53 172 53
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
283 871 m 0
351 871 406 816 406 749 c 0
406 685 349 630 283 630 c 0
216 630 160 685 160 751 c 0
160 816 216 871 283 871 c 0
283 818 m 0
245 818 213 787 213 751 c 0
213 715 245 684 283 684 c 0
320 684 353 715 353 750 c 0
353 787 321 818 283 818 c 0
EndSplineSet
Kerns: 67 -14 71 -10 79 -15 81 -16 84 -27 85 -23 86 -59 87 -13 89 -27 97 15 98 45 99 -4 44 -47 100 4 101 2 171 -40 8249 -40 45 -19 111 -3 46 -62 113 -4 8221 -84 8217 -113 116 -20 117 -12 118 -39 119 -13 121 -39
EndChar
StartChar: AE
Encoding: 198 198
Width: 600
Flags: W
HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493>
VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144>
DStem: 168 483 267 471 53 100 203 259
Fore
53 100 m 1
168 483 l 1
154 483 l 2
129 483 118 485 109 492 c 0
96 502 88 518 88 533 c 0
88 550 97 567 112 576 c 0
121 582 128 583 154 583 c 2
593 583 l 1
593 418 l 2
593 391 591 383 584 373 c 0
574 360 559 352 543 352 c 0
526 352 510 361 500 376 c 0
495 384 493 395 493 418 c 2
493 483 l 1
367 483 l 1
367 342 l 1
386 342 l 1
388 377 406 397 436 397 c 0
453 397 470 388 479 373 c 0
485 364 486 357 486 331 c 2
486 253 l 2
486 226 484 218 477 208 c 0
467 195 452 187 436 187 c 0
406 187 387 208 386 243 c 1
367 243 l 1
367 100 l 1
514 100 l 1
514 123 l 2
514 148 516 158 523 168 c 0
533 181 548 189 564 189 c 0
581 189 598 180 607 165 c 0
613 156 614 148 614 123 c 2
614 0 l 1
265 0 l 2
231 0 209 20 209 52 c 0
209 79 231 100 259 100 c 2
267 100 l 1
267 158 l 1
174 158 l 1
157 100 l 1
183 96 198 79 198 53 c 0
198 19 177 0 141 0 c 2
46 0 l 2
2 0 -20 17 -20 50 c 0
-20 67 -11 84 4 93 c 0
13 99 22 100 46 100 c 2
53 100 l 1
267 259 m 1
267 471 l 1
203 259 l 1
267 259 l 1
EndSplineSet
EndChar
StartChar: Ccedilla
Encoding: 199 199
Width: 600
Flags: W
HStem: -229 70<294 311> -100 186<292 329> 367 216<490 501> 497 100<289 328>
VStem: 33 100<235 331> 267 70<-42 -14> 342 70<-141 -129>
Fore
337 -14 m 1
337 -42 l 1
388 -52 412 -81 412 -132 c 0
412 -188 367 -229 307 -229 c 0
272 -229 230 -217 203 -199 c 0
192 -191 185 -179 185 -166 c 0
185 -147 201 -131 220 -131 c 0
228 -131 230 -132 249 -142 c 0
267 -153 289 -159 306 -159 c 0
329 -159 342 -150 342 -134 c 0
342 -113 323 -100 292 -100 c 0
288 -100 284 -100 267 -102 c 1
267 -9 l 1
208 3 174 16 137 43 c 0
71 92 33 167 33 249 c 2
33 315 l 2
33 475 150 597 305 597 c 0
357 597 392 589 447 563 c 2
457 559 l 1
470 577 482 583 499 583 c 0
517 583 533 574 542 559 c 0
548 550 549 542 549 517 c 2
549 433 l 2
549 408 547 397 540 388 c 0
530 375 515 367 499 367 c 0
486 367 472 373 464 381 c 0
456 389 454 396 449 420 c 0
445 444 435 457 406 473 c 0
379 488 343 497 309 497 c 0
207 497 133 421 133 315 c 2
133 251 l 2
133 151 210 86 329 86 c 0
375 86 415 94 440 109 c 0
451 115 451 115 478 143 c 0
489 154 501 159 514 159 c 0
541 159 564 136 564 108 c 0
564 82 535 48 491 23 c 0
451 1 406 -10 337 -14 c 1
EndSplineSet
MinimumDistance: x2,-1
Kerns: 65 3
EndChar
StartChar: Egrave
Encoding: 200 200
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 165 767 211 824 298 656 344 712
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
211 824 m 2
344 712 l 2
360 699 367 688 367 676 c 0
367 657 350 640 330 640 c 0
321 640 311 645 298 656 c 2
165 767 l 2
148 781 142 790 142 803 c 0
142 823 158 839 179 839 c 0
189 839 197 835 211 824 c 2
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: Eacute
Encoding: 201 201
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 371 824 417 767 238 712 284 656
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
417 767 m 1
284 656 l 2
271 645 261 640 252 640 c 0
232 640 215 657 215 676 c 0
215 688 222 700 238 712 c 1
371 824 l 2
385 835 393 839 403 839 c 0
424 839 440 823 440 803 c 0
440 790 434 780 417 767 c 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: Ecircumflex
Encoding: 202 202
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
292 750 m 1
179 653 l 2
167 643 160 640 151 640 c 0
132 640 116 657 116 675 c 0
116 689 118 692 140 711 c 2
292 839 l 1
443 711 l 1
452 703 l 2
463 694 467 687 467 675 c 0
467 657 451 640 433 640 c 0
423 640 415 644 404 653 c 2
292 750 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: Edieresis
Encoding: 203 203
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 678 120<176.067 195 384.067 397>
VStem: 94 100<101 242 343 482> 127 120<736 740> 279 99<218 242 343 369> 335 120<736 740> 428 100<415 483> 450 100<100 171>
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
187 798 m 0
221 798 247 771 247 737 c 0
247 705 220 678 187 678 c 0
154 678 127 705 127 738 c 0
127 771 154 798 187 798 c 0
395 798 m 0
429 798 455 771 455 737 c 0
455 705 428 678 395 678 c 0
362 678 335 705 335 738 c 0
335 771 362 798 395 798 c 0
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: Igrave
Encoding: 204 204
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
220 824 m 2
353 712 l 2
369 699 376 688 376 676 c 0
376 657 359 640 339 640 c 0
330 640 320 645 307 656 c 2
174 767 l 2
157 781 151 790 151 803 c 0
151 823 167 839 188 839 c 0
198 839 206 835 220 824 c 2
EndSplineSet
EndChar
StartChar: Iacute
Encoding: 205 205
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
452 767 m 1
319 656 l 2
306 645 296 640 287 640 c 0
267 640 250 657 250 676 c 0
250 688 257 700 273 712 c 1
406 824 l 2
420 835 428 839 438 839 c 0
459 839 475 823 475 803 c 0
475 790 469 780 452 767 c 1
EndSplineSet
EndChar
StartChar: Icircumflex
Encoding: 206 206
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
300 750 m 1
187 653 l 2
175 643 168 640 159 640 c 0
140 640 124 657 124 675 c 0
124 689 126 692 148 711 c 2
300 839 l 1
451 711 l 1
460 703 l 2
471 694 475 687 475 675 c 0
475 657 459 640 441 640 c 0
431 640 423 644 412 653 c 2
300 750 l 1
EndSplineSet
EndChar
StartChar: Idieresis
Encoding: 207 207
Width: 600
Flags: W
HStem: 0 100<131 249 351 467> 483 100<131 249 351 467> 678 120<185.067 198 393.067 406>
VStem: 136 120<736 740> 250 100<100 483> 344 120<736 740>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
196 798 m 0
230 798 256 771 256 737 c 0
256 705 229 678 196 678 c 0
163 678 136 705 136 738 c 0
136 771 163 798 196 798 c 0
404 798 m 0
438 798 464 771 464 737 c 0
464 705 437 678 404 678 c 0
371 678 344 705 344 738 c 0
344 771 371 798 404 798 c 0
EndSplineSet
MinimumDistance: x28,-1
EndChar
StartChar: Eth
Encoding: 208 208
Width: 600
Flags: HMW
HStem: 0 100<67.5 74 174 284> 243 100<67 74 174 248> 483 100<174 174 174 284>
VStem: 74 100<100 243 343 483> 450 100<261 305>
Fore
74 243 m 1
66 243 l 2
43 243 30 246 21 253 c 0
8 262 0 277 0 293 c 0
0 310 9 327 24 336 c 0
33 342 40 343 67 343 c 2
74 343 l 1
74 483 l 1
35 483 13 501 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 80 583 c 2
292 583 l 2
438 583 550 462 550 305 c 2
550 258 l 2
550 185 526 123 480 75 c 0
431 23 371 0 284 0 c 2
79 0 l 2
56 0 43 3 34 10 c 0
21 19 13 35 13 50 c 0
13 82 36 100 74 100 c 1
74 243 l 1
174 243 m 1
174 100 l 1
285 100 l 2
345 100 378 112 409 144 c 1
437 175 450 210 450 261 c 2
450 307 l 2
450 354 434 398 405 432 c 0
375 467 337 483 284 483 c 2
174 483 l 1
174 343 l 1
248 343 l 2
275 343 283 341 293 334 c 0
307 324 314 309 314 293 c 0
314 260 292 243 248 243 c 2
174 243 l 1
EndSplineSet
EndChar
StartChar: Ntilde
Encoding: 209 209
Width: 600
Flags: HMW
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> 730 69<217 233>
VStem: 73 100<100 394> 431 100<191 483>
Fore
173 394 m 1
173 100 l 1
208 100 l 2
235 100 244 98 254 91 c 0
267 81 274 66 274 50 c 0
274 33 265 17 250 7 c 0
243 3 228 0 208 0 c 2
79 0 l 2
55 0 42 3 33 10 c 0
20 19 12 34 12 50 c 0
12 82 34 100 73 100 c 1
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 1
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 0 l 1
432 0 l 1
173 394 l 1
451 799 m 1
471 797 484 786 484 771 c 0
484 756 476 741 455 715 c 0
428 681 404 667 375 667 c 0
353 667 320 681 276 709 c 0
249 727 240 730 226 730 c 0
208 730 200 724 170 684 c 0
163 675 155 670 145 670 c 0
128 670 114 683 114 700 c 0
114 714 123 732 140 753 c 0
165 783 194 799 223 799 c 0
247 799 264 792 314 762 c 0
346 743 361 736 372 736 c 0
387 736 391 740 413 770 c 0
426 789 438 798 451 799 c 1
EndSplineSet
EndChar
StartChar: Ograve
Encoding: 210 210
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
223 824 m 2
356 712 l 2
372 699 379 688 379 676 c 0
379 657 362 640 342 640 c 0
333 640 323 645 310 656 c 2
177 767 l 2
160 781 154 790 154 803 c 0
154 823 170 839 191 839 c 0
201 839 209 835 223 824 c 2
EndSplineSet
Kerns: 84 -15 86 -23 89 -43
EndChar
StartChar: Oacute
Encoding: 211 211
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
423 767 m 1
290 656 l 2
277 645 267 640 258 640 c 0
238 640 221 657 221 676 c 0
221 688 228 700 244 712 c 1
377 824 l 2
391 835 399 839 409 839 c 0
430 839 446 823 446 803 c 0
446 790 440 780 423 767 c 1
EndSplineSet
Kerns: 65 -14 84 -15 86 -23 87 -2 89 -43
EndChar
StartChar: Ocircumflex
Encoding: 212 212
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
300 750 m 1
187 653 l 2
175 643 168 640 159 640 c 0
140 640 124 657 124 675 c 0
124 689 126 692 148 711 c 2
300 839 l 1
451 711 l 1
460 703 l 2
471 694 475 687 475 675 c 0
475 657 459 640 441 640 c 0
431 640 423 644 412 653 c 2
300 750 l 1
EndSplineSet
Kerns: 84 -15 86 -23 89 -43
EndChar
StartChar: Otilde
Encoding: 213 213
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
460 799 m 0
477 799 492 785 492 771 c 0
492 756 484 741 463 715 c 0
436 681 412 667 383 667 c 0
361 667 328 681 284 709 c 0
257 726 248 730 234 730 c 0
216 730 208 723 179 685 c 0
171 675 163 670 153 670 c 0
136 670 122 683 122 700 c 0
122 714 132 733 149 754 c 0
174 783 203 799 232 799 c 0
255 799 273 792 322 762 c 0
355 742 369 736 380 736 c 0
395 736 399 739 421 769 c 0
435 789 448 799 460 799 c 0
EndSplineSet
Kerns: 84 -15 86 -23 89 -43
EndChar
StartChar: Odieresis
Encoding: 214 214
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 229 120 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
196 798 m 0
230 798 256 771 256 737 c 0
256 705 229 678 196 678 c 0
163 678 136 705 136 738 c 0
136 771 163 798 196 798 c 0
404 798 m 0
438 798 464 771 464 737 c 0
464 705 437 678 404 678 c 0
371 678 344 705 344 738 c 0
344 771 371 798 404 798 c 0
EndSplineSet
Kerns: 65 -14 84 -15 86 -23 87 -2 88 -26 89 -43
EndChar
StartChar: multiply
Encoding: 215 215
Width: 600
Flags: W
DStem: 126 383 197 454 229 280 300 351 229 280 300 209 126 177 197 106 300 209 371 280 403 106 474 177 403 454 474 383 300 351 371 280
Fore
300 209 m 1
197 106 l 2
176 86 166 80 150 80 c 0
123 80 100 103 100 131 c 0
100 147 105 156 126 177 c 2
229 280 l 1
126 383 l 2
105 405 100 413 100 430 c 0
100 457 123 480 150 480 c 0
166 480 176 474 197 454 c 2
300 351 l 1
403 454 l 2
425 475 433 480 450 480 c 0
477 480 500 457 500 430 c 0
500 414 494 404 474 383 c 2
371 280 l 1
474 177 l 2
494 157 500 146 500 130 c 0
500 103 477 80 450 80 c 0
433 80 424 85 403 106 c 2
300 209 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: Oslash
Encoding: 216 216
Width: 600
Flags: HMW
HStem: -14 100<286.5 348.5> 497 100<250 314.5>
VStem: 20 100<270 348> 479 100<234.5 309>
Fore
159 28 m 1
105 -40 l 2
85 -65 77 -70 58 -70 c 0
31 -70 9 -49 9 -23 c 0
9 -10 13 -2 30 19 c 2
87 92 l 1
42 151 20 214 20 292 c 0
20 460 145 597 300 597 c 0
352 597 401 581 449 549 c 1
495 607 l 2
514 632 523 638 542 638 c 0
568 638 590 616 590 590 c 0
590 577 586 569 570 548 c 2
518 483 l 1
559 429 579 364 579 291 c 0
579 123 454 -14 300 -14 c 0
251 -14 202 1 159 28 c 1
452 400 m 1
221 107 l 1
246 93 273 86 300 86 c 0
397 86 479 179 479 290 c 0
479 328 469 369 452 400 c 1
152 174 m 1
387 471 l 1
358 488 330 497 299 497 c 0
201 497 120 404 120 292 c 0
120 248 130 211 152 174 c 1
EndSplineSet
Kerns: 65 -10
EndChar
StartChar: Ugrave
Encoding: 217 217
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
223 824 m 2
356 712 l 2
372 699 379 688 379 676 c 0
379 657 362 640 342 640 c 0
333 640 323 645 310 656 c 2
177 767 l 2
160 781 154 790 154 803 c 0
154 823 170 839 191 839 c 0
201 839 209 835 223 824 c 2
EndSplineSet
Kerns: 65 -19
EndChar
StartChar: Uacute
Encoding: 218 218
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
423 767 m 1
290 656 l 2
277 645 267 640 258 640 c 0
238 640 221 657 221 676 c 0
221 688 228 700 244 712 c 1
377 824 l 2
391 835 399 839 409 839 c 0
430 839 446 823 446 803 c 0
446 790 440 780 423 767 c 1
EndSplineSet
Kerns: 65 -19 44 -95 109 16 110 -8 46 -114 114 -34
EndChar
StartChar: Ucircumflex
Encoding: 219 219
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
300 750 m 1
187 653 l 2
175 643 168 640 159 640 c 0
140 640 124 657 124 675 c 0
124 689 126 692 148 711 c 2
300 839 l 1
451 711 l 1
460 703 l 2
471 694 475 687 475 675 c 0
475 657 459 640 441 640 c 0
431 640 423 644 412 653 c 2
300 750 l 1
EndSplineSet
Kerns: 65 -19
EndChar
StartChar: Udieresis
Encoding: 220 220
Width: 600
Flags: W
HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410>
VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
196 798 m 0
230 798 256 771 256 737 c 0
256 705 229 678 196 678 c 0
163 678 136 705 136 738 c 0
136 771 163 798 196 798 c 0
404 798 m 0
438 798 464 771 464 737 c 0
464 705 437 678 404 678 c 0
371 678 344 705 344 738 c 0
344 771 371 798 404 798 c 0
EndSplineSet
MinimumDistance: x0,-1
Kerns: 65 -19 98 27 44 -95 109 16 110 -8 46 -114 114 -34
EndChar
StartChar: Yacute
Encoding: 221 221
Width: 600
Flags: HMW
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 250 100<100 245>
Fore
350 245 m 1
350 100 l 1
415 100 l 2
443 100 451 98 461 91 c 0
474 81 482 66 482 50 c 0
482 33 473 16 458 7 c 0
451 3 436 0 415 0 c 2
185 0 l 2
161 0 148 3 139 10 c 0
126 19 118 34 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 185 100 c 2
250 100 l 1
250 245 l 1
85 483 l 1
44 483 21 501 21 533 c 0
21 560 38 578 67 581 c 0
79 583 80 583 88 583 c 2
177 583 l 2
204 583 213 581 223 574 c 0
235 564 243 549 243 533 c 0
243 510 231 495 205 484 c 1
300 348 l 1
394 484 l 1
367 494 354 510 354 533 c 0
354 550 363 567 378 576 c 0
387 582 396 583 421 583 c 2
513 583 l 2
540 583 549 581 558 574 c 0
572 564 579 549 579 533 c 0
579 502 551 479 516 483 c 2
514 483 l 1
350 245 l 1
426 767 m 1
293 656 l 2
280 645 270 640 261 640 c 0
241 640 224 657 224 676 c 0
224 688 231 700 247 712 c 1
380 824 l 2
394 835 402 839 412 839 c 0
433 839 449 823 449 803 c 0
449 790 443 780 426 767 c 1
EndSplineSet
EndChar
StartChar: Thorn
Encoding: 222 222
Width: 600
Flags: HMW
HStem: 0 100<80 95 195 294> 140 100<195 293> 343 100<195 293 293 326> 483 100<80 95 195 195 195 294>
VStem: 95 100<100 140 240 343 443 483> 421 102<275.5 308.5>
Fore
195 140 m 1
195 100 l 1
294 100 l 2
321 100 329 98 339 91 c 0
352 81 360 66 360 50 c 0
360 33 351 16 336 7 c 0
329 3 314 0 294 0 c 2
80 0 l 2
57 0 43 3 35 10 c 0
22 19 14 35 14 50 c 0
14 67 23 84 38 93 c 0
47 99 56 100 80 100 c 2
95 100 l 1
95 483 l 1
80 483 l 2
53 483 45 485 35 492 c 0
22 502 14 517 14 533 c 0
14 550 23 567 38 576 c 0
46 581 59 583 80 583 c 2
294 583 l 2
318 583 330 580 339 574 c 0
352 564 360 549 360 533 c 0
360 516 351 499 336 490 c 0
327 484 318 483 294 483 c 2
195 483 l 1
195 443 l 1
293 443 l 2
395 443 447 427 488 382 c 0
510 358 523 325 523 292 c 0
523 259 510 225 488 201 c 0
447 156 395 140 293 140 c 2
195 140 l 1
195 240 m 1
326 240 l 2
392 240 421 255 421 291 c 0
421 328 393 343 326 343 c 2
195 343 l 1
195 240 l 1
EndSplineSet
EndChar
StartChar: germandbls
Encoding: 223 223
Width: 600
Flags: W
HStem: -16 100<374 390> 0 100<61 95> 523 100<253 280>
VStem: 13 225<48 53> 95 100<100 464> 346 100<455 464> 429 100<155 176>
Fore
95 100 m 1
95 478 l 2
95 563 167 623 268 623 c 0
369 623 446 551 446 456 c 0
446 419 438 397 411 365 c 1
488 320 529 249 529 165 c 0
529 57 467 -16 374 -16 c 0
305 -16 255 31 255 97 c 0
255 134 274 156 305 156 c 0
318 156 332 151 340 142 c 0
346 135 347 134 352 113 c 0
356 94 366 84 382 84 c 0
410 84 429 116 429 164 c 0
429 200 414 234 388 259 c 0
361 285 330 297 278 303 c 0
241 307 223 323 223 353 c 0
223 381 242 399 276 402 c 0
302 405 310 407 321 415 c 0
337 425 346 442 346 459 c 0
346 496 314 523 268 523 c 0
221 523 195 502 195 461 c 2
195 100 l 1
223 95 238 78 238 51 c 0
238 16 217 0 172 0 c 2
79 0 l 2
55 0 42 3 33 9 c 0
21 19 13 35 13 50 c 0
13 67 23 84 37 93 c 0
46 99 54 100 79 100 c 2
95 100 l 1
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: agrave
Encoding: 224 224
Width: 600
Flags: W
HStem: -16 100<207 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 160 624 206 680 293 512 339 569
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
206 680 m 2
339 569 l 2
355 556 362 545 362 532 c 0
362 513 345 496 325 496 c 0
315 496 308 500 293 512 c 2
160 624 l 1
143 637 137 647 137 660 c 0
137 680 153 696 174 696 c 0
185 696 190 693 206 680 c 2
EndSplineSet
MinimumDistance: x14,-1
Kerns: 118 -21 119 -12 121 -31
EndChar
StartChar: aacute
Encoding: 225 225
Width: 600
Flags: W
HStem: -16 100<216 242> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 373 680 419 624 240 569 286 512
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
419 624 m 1
286 512 l 2
271 500 264 496 254 496 c 0
234 496 217 513 217 532 c 0
217 545 224 556 240 569 c 2
373 680 l 2
389 693 394 696 405 696 c 0
426 696 442 680 442 659 c 0
442 647 436 637 419 624 c 1
EndSplineSet
MinimumDistance: x14,-1
Kerns: 118 -21 119 -12 121 -31
EndChar
StartChar: acircumflex
Encoding: 226 226
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
290 607 m 1
177 510 l 2
166 501 158 497 149 497 c 0
130 497 114 514 114 532 c 0
114 546 116 549 138 567 c 2
290 696 l 1
441 567 l 2
444 565 448 562 450 560 c 0
461 551 465 543 465 532 c 0
465 514 449 497 431 497 c 0
422 497 413 501 402 510 c 2
290 607 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: atilde
Encoding: 227 227
Width: 600
Flags: W
HStem: -16 100<217 234> 0 100<489 522> 196 92<266 308> 350 100<270 314> 523 69<362 371> 587 69<217 226>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
446 656 m 0
463 656 478 642 478 628 c 0
478 613 470 598 449 571 c 0
422 537 398 523 369 523 c 0
347 523 314 537 270 566 c 0
243 584 234 587 220 587 c 0
202 587 194 580 165 541 c 0
157 530 149 526 139 526 c 0
122 526 108 540 108 556 c 0
108 570 118 590 135 611 c 0
160 640 189 656 218 656 c 0
241 656 258 649 308 618 c 0
342 598 355 592 366 592 c 0
381 592 385 596 407 626 c 0
421 646 434 656 446 656 c 0
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: adieresis
Encoding: 228 228
Width: 600
Flags: W
HStem: -16 100<218 246> 0 100<489 522> 196 92<266 298> 350 100<277 314> 534 120<178 187 387 395>
VStem: 42 106<118 128> 125 120<592 596> 333 120<592 596> 389 100<135 185 279 304>
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
185 654 m 0
219 654 245 627 245 593 c 0
245 561 218 534 185 534 c 0
152 534 125 561 125 594 c 0
125 627 152 654 185 654 c 0
393 654 m 0
427 654 453 627 453 593 c 0
453 561 426 534 393 534 c 0
360 534 333 561 333 594 c 0
333 627 360 654 393 654 c 0
EndSplineSet
MinimumDistance: x14,-1
Kerns: 118 -21 119 -12 121 -31
EndChar
StartChar: aring
Encoding: 229 229
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 486 54<278 298> 674 53<278 298>
VStem: 42 106<118 128> 166 53<604 609> 359 53<604 609> 389 100<135 185 279 304>
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
289 727 m 0
357 727 412 672 412 605 c 0
412 541 355 486 289 486 c 0
222 486 166 541 166 607 c 0
166 672 222 727 289 727 c 0
289 674 m 0
251 674 219 643 219 607 c 0
219 571 251 540 289 540 c 0
326 540 359 571 359 606 c 0
359 643 327 674 289 674 c 0
EndSplineSet
MinimumDistance: x14,-1
Kerns: 118 -21 119 -12 121 -31
EndChar
StartChar: ae
Encoding: 230 230
Width: 600
Flags: W
HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441>
VStem: -13 101<131 147> 255 356<172 189>
Fore
611 172 m 1
360 172 l 1
377 109 400 84 441 84 c 0
463 84 482 89 509 101 c 0
538 113 553 118 566 118 c 0
592 118 612 96 612 66 c 0
612 47 603 32 587 22 c 0
552 0 489 -16 442 -16 c 0
402 -16 379 -9 342 16 c 1
333 5 321 -1 305 -1 c 0
290 -1 279 5 269 16 c 1
232 -7 202 -16 159 -16 c 0
55 -16 -13 48 -13 145 c 0
-13 189 3 216 45 242 c 0
85 268 148 286 195 286 c 0
210 286 229 284 255 281 c 1
255 301 l 2
255 329 235 350 207 350 c 0
190 350 181 348 117 329 c 0
108 326 100 325 94 325 c 0
68 325 46 348 46 376 c 0
46 401 60 417 87 426 c 0
124 438 182 450 207 450 c 0
253 450 288 433 323 394 c 1
359 433 393 450 435 450 c 0
482 450 528 426 563 381 c 0
594 341 611 285 611 218 c 2
611 172 l 1
255 130 m 1
255 189 l 1
232 195 216 197 199 197 c 0
162 197 121 186 101 171 c 0
93 164 88 154 88 142 c 0
88 107 116 84 158 84 c 0
189 84 215 96 255 130 c 1
362 258 m 1
502 258 l 1
498 285 495 299 487 313 c 0
476 335 454 350 432 350 c 0
409 350 386 333 375 307 c 0
369 294 366 281 362 258 c 1
EndSplineSet
Kerns: 118 28 119 32 121 18
EndChar
StartChar: ccedilla
Encoding: 231 231
Width: 600
Flags: HMW
HStem: -229 70<302.5 322.5> 350 100<285 332.5>
VStem: 54 100<168.5 226> 272 70<-42 -16> 347 70<-142 -123>
Fore
342 -16 m 1
342 -42 l 1
393 -52 417 -81 417 -133 c 0
417 -188 372 -229 312 -229 c 0
278 -229 235 -217 208 -199 c 0
197 -191 190 -179 190 -166 c 0
190 -147 206 -131 225 -131 c 0
233 -131 236 -132 254 -142 c 0
272 -152 294 -159 311 -159 c 0
334 -159 347 -150 347 -134 c 0
347 -112 327 -100 291 -100 c 0
286 -100 281 -101 272 -102 c 1
272 -14 l 1
217 -8 184 2 148 26 c 0
87 66 54 131 54 206 c 0
54 350 159 450 311 450 c 0
367 450 415 440 454 420 c 1
460 441 471 450 491 450 c 0
508 450 526 441 533 428 c 0
539 419 540 411 540 384 c 2
540 307 l 2
540 281 538 271 531 262 c 0
521 249 506 241 490 241 c 0
477 241 462 247 454 255 c 1
446 261 444 267 439 289 c 0
435 307 429 316 417 325 c 1
391 341 354 350 311 350 c 0
259 350 222 336 194 307 c 0
168 281 154 245 154 207 c 0
154 125 213 84 330 84 c 0
370 84 411 89 435 97 c 0
454 103 460 107 485 128 c 0
494 136 503 140 515 140 c 0
542 140 565 117 565 89 c 0
565 58 528 23 475 5 c 0
436 -8 398 -14 342 -16 c 1
EndSplineSet
EndChar
StartChar: egrave
Encoding: 232 232
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
218 680 m 2
351 569 l 2
367 556 374 545 374 532 c 0
374 513 357 496 337 496 c 0
327 496 320 500 305 512 c 2
172 624 l 1
155 637 149 647 149 660 c 0
149 680 165 696 186 696 c 0
197 696 202 693 218 680 c 2
EndSplineSet
EndChar
StartChar: eacute
Encoding: 233 233
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
431 624 m 1
298 512 l 2
283 500 276 496 266 496 c 0
246 496 229 513 229 532 c 0
229 545 236 556 252 569 c 2
385 680 l 2
401 693 406 696 417 696 c 0
438 696 454 680 454 659 c 0
454 647 448 637 431 624 c 1
EndSplineSet
Kerns: 118 -9 119 -3 121 -20
EndChar
StartChar: ecircumflex
Encoding: 234 234
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
305 607 m 1
192 510 l 2
181 501 173 497 164 497 c 0
145 497 129 514 129 532 c 0
129 546 131 549 153 567 c 2
305 696 l 1
456 567 l 2
459 565 463 562 465 560 c 0
476 551 480 543 480 532 c 0
480 514 464 497 446 497 c 0
437 497 428 501 417 510 c 2
305 607 l 1
EndSplineSet
Kerns: 118 -9 119 -3 121 -20
EndChar
StartChar: edieresis
Encoding: 235 235
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
VStem: 33 120 241 120
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
200 654 m 0
234 654 260 627 260 593 c 0
260 561 233 534 200 534 c 0
167 534 140 561 140 594 c 0
140 627 167 654 200 654 c 0
408 654 m 0
442 654 468 627 468 593 c 0
468 561 441 534 408 534 c 0
375 534 348 561 348 594 c 0
348 627 375 654 408 654 c 0
EndSplineSet
EndChar
StartChar: igrave
Encoding: 236 236
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 337 100<172 250>
VStem: 250 100<100 337 337 337>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
207 680 m 2
340 569 l 2
356 556 363 545 363 532 c 0
363 513 346 496 326 496 c 0
316 496 309 500 294 512 c 2
161 624 l 1
144 637 138 647 138 660 c 0
138 680 154 696 175 696 c 0
186 696 191 693 207 680 c 2
EndSplineSet
EndChar
StartChar: iacute
Encoding: 237 237
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 337 100<172 250>
VStem: 250 100<100 337 337 337>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
410 624 m 1
277 512 l 2
262 500 255 496 245 496 c 0
225 496 208 513 208 532 c 0
208 545 215 556 231 569 c 2
364 680 l 2
380 693 385 696 396 696 c 0
417 696 433 680 433 659 c 0
433 647 427 637 410 624 c 1
EndSplineSet
EndChar
StartChar: icircumflex
Encoding: 238 238
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 337 100<172 250>
VStem: 250 100<100 337 337 337>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
284 607 m 1
171 510 l 2
160 501 152 497 143 497 c 0
124 497 108 514 108 532 c 0
108 546 110 549 132 567 c 2
284 696 l 1
435 567 l 2
438 565 442 562 444 560 c 0
455 551 459 543 459 532 c 0
459 514 443 497 425 497 c 0
416 497 407 501 396 510 c 2
284 607 l 1
EndSplineSet
EndChar
StartChar: idieresis
Encoding: 239 239
Width: 600
Flags: W
HStem: 0 100<110 249 350 478> 337 100<158 249> 534 120<171 181 382 389>
VStem: 119 120<592 596> 250 100<100 337> 327 120<592 596>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
179 654 m 0
213 654 239 627 239 593 c 0
239 561 212 534 179 534 c 0
146 534 119 561 119 594 c 0
119 627 146 654 179 654 c 0
387 654 m 0
421 654 447 627 447 593 c 0
447 561 420 534 387 534 c 0
354 534 327 561 327 594 c 0
327 627 354 654 387 654 c 0
EndSplineSet
MinimumDistance: x24,-1 x18,1 y1,18 y1,0
EndChar
StartChar: eth
Encoding: 240 240
Width: 600
Flags: W
HStem: -16 100<282 314> 350 93<282 302>
VStem: 42 102<208 224> 456 101.259<208 224>
Fore
417 583 m 1
372 558 l 1
501 468 558 368 558 233 c 0
558 153 537 99 489 55 c 0
439 10 370 -16 300 -16 c 0
157 -16 42 85 42 211 c 0
42 339 151 443 286 443 c 0
336 443 367 433 430 396 c 1
391 445 341 490 293 518 c 1
201 468 l 2
182 457 178 456 169 456 c 0
152 456 139 472 139 493 c 0
139 507 142 510 163 522 c 2
213 551 l 1
204 555 195 559 192 560 c 0
182 564 176 567 174 568 c 2
158 573 l 2
141 579 132 590 132 604 c 0
132 623 151 640 172 640 c 0
195 640 225 631 271 609 c 2
299 596 l 1
376 637 l 2
388 643 399 646 409 646 c 0
426 646 440 632 440 613 c 0
440 601 432 590 417 583 c 1
300 350 m 0
213 350 144 289 144 212 c 0
144 141 214 84 300 84 c 0
385 84 456 141 456 210 c 0
456 289 388 350 300 350 c 0
EndSplineSet
EndChar
StartChar: ntilde
Encoding: 241 241
Width: 600
Flags: W
HStem: 0 100<71 94 196 222 407 409 510 525.03> 350 100<310 334> 417 20G<101 195> 523 69<366 375> 587 69<215 231>
VStem: 95 100<100 282> 410 100<100 288>
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 322 350 c 0
272 350 247 337 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
446 656 m 1
466 654 479 643 479 627 c 0
479 613 471 598 450 571 c 0
423 537 399 523 370 523 c 0
348 523 315 537 271 566 c 0
243 584 235 587 221 587 c 0
203 587 195 581 165 540 c 0
158 531 150 526 140 526 c 0
123 526 109 540 109 556 c 0
109 570 119 589 136 610 c 0
161 640 190 656 218 656 c 0
242 656 259 649 309 618 c 0
342 598 355 592 367 592 c 0
382 592 387 596 411 631 c 0
421 645 435 655 446 656 c 1
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: ograve
Encoding: 242 242
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
217 680 m 2
350 569 l 2
366 556 373 545 373 532 c 0
373 513 356 496 336 496 c 0
326 496 319 500 304 512 c 2
171 624 l 1
154 637 148 647 148 660 c 0
148 680 164 696 185 696 c 0
196 696 201 693 217 680 c 2
EndSplineSet
Kerns: 118 -6 119 -3 121 -17
EndChar
StartChar: oacute
Encoding: 243 243
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
430 624 m 1
297 512 l 2
282 500 275 496 265 496 c 0
245 496 228 513 228 532 c 0
228 545 235 556 251 569 c 2
384 680 l 2
400 693 405 696 416 696 c 0
437 696 453 680 453 659 c 0
453 647 447 637 430 624 c 1
EndSplineSet
Kerns: 118 -6 119 -3 121 -17
EndChar
StartChar: ocircumflex
Encoding: 244 244
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
300 607 m 1
187 510 l 2
176 501 168 497 159 497 c 0
140 497 124 514 124 532 c 0
124 546 126 549 148 567 c 2
300 696 l 1
451 567 l 2
454 565 458 562 460 560 c 0
471 551 475 543 475 532 c 0
475 514 459 497 441 497 c 0
432 497 423 501 412 510 c 2
300 607 l 1
EndSplineSet
Kerns: 116 -13
EndChar
StartChar: otilde
Encoding: 245 245
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
460 656 m 0
477 656 492 642 492 628 c 0
492 613 484 598 463 571 c 0
436 537 412 523 383 523 c 0
361 523 328 537 284 566 c 0
257 584 248 587 234 587 c 0
216 587 208 580 179 541 c 0
171 530 163 526 153 526 c 0
136 526 122 540 122 556 c 0
122 570 132 590 149 611 c 0
174 640 203 656 232 656 c 0
255 656 272 649 322 618 c 0
356 598 369 592 380 592 c 0
395 592 399 596 421 626 c 0
435 646 448 656 460 656 c 0
EndSplineSet
EndChar
StartChar: odieresis
Encoding: 246 246
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 250 120 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
196 654 m 0
230 654 256 627 256 593 c 0
256 561 229 534 196 534 c 0
163 534 136 561 136 594 c 0
136 627 163 654 196 654 c 0
404 654 m 0
438 654 464 627 464 593 c 0
464 561 437 534 404 534 c 0
371 534 344 561 344 594 c 0
344 627 371 654 404 654 c 0
EndSplineSet
Kerns: 116 -13 118 -6 119 -3 120 -10 121 -17
EndChar
StartChar: divide
Encoding: 247 247
Width: 600
Flags: HMW
HStem: 230 100<108 492>
Fore
108 330 m 2
492 330 l 2
519 330 527 328 537 321 c 0
550 311 558 296 558 280 c 0
558 263 549 246 534 237 c 0
526 232 514 230 492 230 c 2
108 230 l 2
84 230 72 232 63 240 c 1
50 249 42 265 42 280 c 0
42 297 52 314 66 323 c 0
75 329 83 330 108 330 c 2
300 160 m 0
346 160 375 134 375 93 c 0
375 54 345 28 300 28 c 0
255 28 225 55 225 94 c 0
225 133 255 160 300 160 c 0
300 532 m 0
346 532 375 506 375 465 c 0
375 426 345 400 300 400 c 0
255 400 225 427 225 466 c 0
225 505 255 532 300 532 c 0
EndSplineSet
EndChar
StartChar: oslash
Encoding: 248 248
Width: 600
Flags: HMW
HStem: -16 100<289 344> 350 100<255.5 309.5>
VStem: 42 100<204.5 254.5> 458 100<179.5 229>
Fore
548 402 m 1
506 359 l 1
540 316 558 267 558 217 c 0
558 87 444 -16 300 -16 c 0
255 -16 213 -6 172 14 c 1
116 -44 l 2
95 -65 87 -70 71 -70 c 0
44 -70 23 -49 23 -22 c 0
23 -7 28 2 48 22 c 2
96 72 l 1
62 114 42 167 42 217 c 0
42 347 156 450 298 450 c 0
342 450 398 437 432 419 c 1
480 468 l 2
501 489 509 494 526 494 c 0
552 494 573 473 573 447 c 0
573 430 569 422 548 402 c 1
436 286 m 1
247 91 l 1
265 86 279 84 299 84 c 0
389 84 458 142 458 217 c 0
458 241 450 264 436 286 c 1
167 145 m 1
357 342 l 1
336 347 319 350 300 350 c 0
211 350 142 292 142 217 c 0
142 192 150 168 167 145 c 1
EndSplineSet
EndChar
StartChar: ugrave
Encoding: 249 249
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
215 680 m 2
348 569 l 2
364 556 371 545 371 532 c 0
371 513 354 496 334 496 c 0
324 496 317 500 302 512 c 2
169 624 l 1
152 637 146 647 146 660 c 0
146 680 162 696 183 696 c 0
194 696 199 693 215 680 c 2
EndSplineSet
EndChar
StartChar: uacute
Encoding: 250 250
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
418 624 m 1
285 512 l 2
270 500 263 496 253 496 c 0
233 496 216 513 216 532 c 0
216 545 223 556 239 569 c 2
372 680 l 2
388 693 393 696 404 696 c 0
425 696 441 680 441 659 c 0
441 647 435 637 418 624 c 1
EndSplineSet
EndChar
StartChar: ucircumflex
Encoding: 251 251
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
296 607 m 1
183 510 l 2
172 501 164 497 155 497 c 0
136 497 120 514 120 532 c 0
120 546 122 549 144 567 c 2
296 696 l 1
447 567 l 2
450 565 454 562 456 560 c 0
467 551 471 543 471 532 c 0
471 514 455 497 437 497 c 0
428 497 419 501 408 510 c 2
296 607 l 1
EndSplineSet
EndChar
StartChar: udieresis
Encoding: 252 252
Width: 600
Flags: W
HStem: -13 100<269 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409>
VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
191 654 m 0
225 654 251 627 251 593 c 0
251 561 224 534 191 534 c 0
158 534 131 561 131 594 c 0
131 627 158 654 191 654 c 0
399 654 m 0
433 654 459 627 459 593 c 0
459 561 432 534 399 534 c 0
366 534 339 561 339 594 c 0
339 627 366 654 399 654 c 0
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: yacute
Encoding: 253 253
Width: 600
Flags: HMW
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
Fore
242 3 m 1
70 337 l 1
39 341 21 359 21 387 c 0
21 414 38 432 67 435 c 0
78 437 80 437 87 437 c 2
177 437 l 2
203 437 213 435 223 428 c 0
235 418 243 403 243 387 c 0
243 356 222 338 184 337 c 1
298 114 l 1
418 337 l 1
377 337 354 355 354 387 c 0
354 414 371 432 400 435 c 0
411 437 413 437 421 437 c 2
513 437 l 2
539 437 549 435 558 428 c 0
572 418 579 403 579 387 c 0
579 358 560 340 527 337 c 1
297 -105 l 1
302 -105 l 2
328 -105 338 -107 348 -114 c 0
360 -124 368 -139 368 -155 c 0
368 -172 359 -188 344 -198 c 0
336 -203 324 -205 302 -205 c 2
87 -205 l 2
62 -205 51 -203 42 -195 c 1
29 -186 21 -171 21 -155 c 0
21 -138 30 -121 45 -112 c 0
54 -107 63 -105 87 -105 c 2
187 -105 l 1
242 3 l 1
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
EndChar
StartChar: thorn
Encoding: 254 254
Width: 600
Flags: W
HStem: -205 100<40 73 175 248> 10 100<312 331> 350 100<312 344> 524 100<40 73>
VStem: -8 306<-157 -153> 74 100<-105 65 223 243 393 524> 471 100<223 243>
Fore
174 66 m 1
174 -105 l 1
232 -105 l 2
258 -105 268 -107 278 -114 c 0
291 -124 298 -139 298 -155 c 0
298 -172 289 -188 274 -198 c 0
266 -203 254 -205 232 -205 c 2
58 -205 l 2
33 -205 22 -203 12 -195 c 0
0 -186 -8 -171 -8 -155 c 0
-8 -138 1 -121 16 -112 c 0
25 -106 34 -105 58 -105 c 2
74 -105 l 1
74 524 l 1
58 524 l 2
32 524 22 526 12 533 c 0
0 543 -8 558 -8 574 c 0
-8 591 1 608 16 617 c 0
25 622 34 624 58 624 c 2
174 624 l 1
174 392 l 1
223 434 265 450 328 450 c 0
467 450 571 354 571 224 c 0
571 101 468 10 329 10 c 0
270 10 226 26 174 66 c 1
323 350 m 0
281 350 248 341 222 321 c 0
193 300 174 263 174 231 c 0
174 160 235 110 323 110 c 0
409 110 471 160 471 230 c 0
471 263 452 300 423 321 c 0
397 341 364 350 323 350 c 0
EndSplineSet
MinimumDistance: x22,-1
EndChar
StartChar: ydieresis
Encoding: 255 255
Width: 600
Flags: HMW
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
VStem: 21 120 229 120
Fore
242 3 m 1
70 337 l 1
39 341 21 359 21 387 c 0
21 414 38 432 67 435 c 0
78 437 80 437 87 437 c 2
177 437 l 2
203 437 213 435 223 428 c 0
235 418 243 403 243 387 c 0
243 356 222 338 184 337 c 1
298 114 l 1
418 337 l 1
377 337 354 355 354 387 c 0
354 414 371 432 400 435 c 0
411 437 413 437 421 437 c 2
513 437 l 2
539 437 549 435 558 428 c 0
572 418 579 403 579 387 c 0
579 358 560 340 527 337 c 1
297 -105 l 1
302 -105 l 2
328 -105 338 -107 348 -114 c 0
360 -124 368 -139 368 -155 c 0
368 -172 359 -188 344 -198 c 0
336 -203 324 -205 302 -205 c 2
87 -205 l 2
62 -205 51 -203 42 -195 c 1
29 -186 21 -171 21 -155 c 0
21 -138 30 -121 45 -112 c 0
54 -107 63 -105 87 -105 c 2
187 -105 l 1
242 3 l 1
196 654 m 0
230 654 256 627 256 593 c 0
256 561 229 534 196 534 c 0
163 534 136 561 136 594 c 0
136 627 163 654 196 654 c 0
404 654 m 0
438 654 464 627 464 593 c 0
464 561 437 534 404 534 c 0
371 534 344 561 344 594 c 0
344 627 371 654 404 654 c 0
EndSplineSet
EndChar
StartChar: Amacron
Encoding: 256 256
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 689 80<178 422>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
178 769 m 2
422 769 l 2
445 769 457 766 464 758 c 0
470 751 475 737 475 729 c 0
475 704 455 689 422 689 c 2
178 689 l 2
153 689 145 691 136 701 c 0
130 709 125 721 125 729 c 0
125 754 144 769 178 769 c 2
EndSplineSet
EndChar
StartChar: amacron
Encoding: 257 257
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 546 80<170 426>
VStem: 42 106<118 128> 125 350<585 592> 389 100<135 185 279 304>
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
178 626 m 2
422 626 l 2
445 626 457 623 464 615 c 0
470 608 475 594 475 586 c 0
475 561 455 546 422 546 c 2
178 546 l 2
153 546 145 548 136 558 c 0
130 566 125 578 125 586 c 0
125 611 144 626 178 626 c 2
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: Abreve
Encoding: 258 258
Width: 600
Flags: HMW
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5>
Fore
416 158 m 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
159 831 m 0
179 831 186 822 193 791 c 0
203 745 245 715 300 715 c 0
355 715 397 745 407 791 c 0
414 822 421 831 441 831 c 0
461 831 475 816 475 793 c 0
475 717 392 647 300 647 c 0
208 647 125 717 125 793 c 0
125 816 139 831 159 831 c 0
EndSplineSet
EndChar
StartChar: abreve
Encoding: 259 259
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Fore
388 0 m 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
505 100 l 2
532 100 541 98 551 91 c 0
563 81 571 66 571 50 c 0
571 33 562 16 547 7 c 0
540 2 526 0 505 0 c 2
388 0 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
159 687 m 0
179 687 186 678 193 647 c 0
203 601 245 571 300 571 c 0
355 571 397 601 407 647 c 0
414 678 421 687 441 687 c 0
461 687 475 672 475 649 c 0
475 573 392 503 300 503 c 0
208 503 125 573 125 649 c 0
125 672 139 687 159 687 c 0
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: Aogonek
Encoding: 260 260
Width: 600
Flags: HMW
HStem: -208 76<498.5 512> 0 100<33.5 45 45 46 155 178 416 439> 158 100<218 375> 430 20<297 297> 483 100<138 201>
VStem: 405 77<-118.5 -96>
Fore
354 583 m 1
553 100 l 1
581 100 590 98 600 91 c 0
613 81 621 66 621 50 c 0
621 27 611 15 576 -5 c 0
521 -36 482 -80 482 -112 c 0
482 -125 491 -132 506 -132 c 0
518 -132 529 -128 557 -114 c 0
567 -109 572 -108 579 -108 c 0
601 -108 618 -125 618 -146 c 0
618 -164 607 -178 583 -189 c 0
556 -201 526 -208 499 -208 c 0
441 -208 405 -174 405 -119 c 0
405 -69 426 -38 484 0 c 1
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
416 158 l 1
178 158 l 1
155 100 l 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
375 258 m 1
297 450 l 1
218 258 l 1
375 258 l 1
EndSplineSet
EndChar
StartChar: aogonek
Encoding: 261 261
Width: 600
Flags: W
HStem: -208 76<460 474> -16 100<218 234> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 367 77<-118 -106> 389 100<135 185 279 304>
Fore
489 100 m 1
505 100 l 2
532 100 541 98 551 91 c 0
564 81 571 66 571 50 c 0
571 26 567 21 507 -25 c 0
465 -57 444 -87 444 -112 c 0
444 -125 453 -132 468 -132 c 0
480 -132 491 -128 519 -114 c 0
529 -109 534 -108 541 -108 c 0
563 -108 580 -125 580 -146 c 0
580 -164 569 -178 545 -189 c 0
518 -201 488 -208 461 -208 c 0
403 -208 367 -174 367 -119 c 0
367 -69 388 -38 446 0 c 1
388 0 l 1
388 23 l 1
340 -2 281 -16 222 -16 c 0
123 -16 42 45 42 119 c 0
42 150 57 185 81 212 c 0
126 262 195 288 284 288 c 0
316 288 347 285 388 278 c 1
388 301 l 2
388 335 359 350 295 350 c 0
262 350 225 345 179 333 c 0
162 329 148 327 139 327 c 0
111 327 90 349 90 378 c 0
90 399 100 413 120 420 c 0
168 437 242 450 292 450 c 0
415 450 489 395 489 302 c 2
489 100 l 1
389 135 m 1
389 185 l 1
349 192 312 196 278 196 c 0
210 196 148 161 148 123 c 0
148 101 181 84 224 84 c 0
278 84 334 101 389 135 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: Cacute
Encoding: 262 262
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
DStem: 406 824 452 767 273 712 319 656
Fore
447 563 m 2
457 559 l 1
470 577 482 583 499 583 c 0
517 583 533 574 542 559 c 0
548 550 549 542 549 517 c 2
549 433 l 2
549 408 547 397 540 388 c 0
530 375 515 367 499 367 c 0
486 367 472 373 464 381 c 0
456 389 454 396 450 420 c 0
445 444 435 457 406 473 c 0
379 488 343 497 309 497 c 0
207 497 133 420 133 315 c 2
133 251 l 2
133 151 210 86 330 86 c 0
375 86 415 94 440 109 c 0
451 115 451 115 478 143 c 0
489 154 501 159 514 159 c 0
541 159 564 136 564 109 c 0
564 86 545 60 511 36 c 0
467 4 399 -14 327 -14 c 0
157 -14 33 97 33 249 c 2
33 315 l 2
33 475 151 597 305 597 c 0
357 597 392 589 447 563 c 2
452 767 m 1
319 656 l 2
306 645 296 640 287 640 c 0
267 640 250 657 250 676 c 0
250 688 257 700 273 712 c 1
406 824 l 2
420 835 428 839 438 839 c 0
459 839 475 823 475 803 c 0
475 790 469 780 452 767 c 1
EndSplineSet
MinimumDistance: x24,-1
EndChar
StartChar: cacute
Encoding: 263 263
Width: 600
Flags: HMW
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Fore
540 384 m 2
540 307 l 2
540 281 538 271 531 262 c 0
521 249 506 241 490 241 c 0
477 241 462 247 454 255 c 1
446 261 444 267 439 289 c 0
435 307 429 316 416 325 c 0
390 341 354 350 310 350 c 0
259 350 222 336 194 307 c 0
168 281 154 245 154 207 c 0
154 125 213 84 330 84 c 0
370 84 411 89 435 97 c 0
454 103 459 107 485 128 c 0
494 136 503 140 515 140 c 0
542 140 565 117 565 89 c 0
565 63 542 37 501 16 c 0
460 -4 396 -16 323 -16 c 0
226 -16 164 5 115 53 c 0
75 93 54 146 54 207 c 0
54 350 159 450 310 450 c 0
367 450 415 440 454 420 c 1
460 441 471 450 492 450 c 0
525 450 540 430 540 384 c 2
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
EndChar
StartChar: Ccircumflex
Encoding: 264 264
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
DStem: 299 733 299 822 411 636 450 693 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636 299 733 299 822 411 636 450 693 299 822 299 733 147 693 186 636
Ref: 710 N 1 0 0 1 -2 126
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: ccircumflex
Encoding: 265 265
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
DStem: 310 587 310 676 422 490 461 547 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490 310 587 310 676 422 490 461 547 310 676 310 587 158 547 197 490
Ref: 710 N 1 0 0 1 9 -20
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: Cdotaccent
Encoding: 266 266
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328> 623 120<287.067 302>
VStem: 33 100<242 322> 238 120<681 687>
Ref: 729 N 1 0 0 1 -2 89
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: cdotaccent
Encoding: 267 267
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332> 477 120<299.067 314>
VStem: 54 100<176.5 226> 250 120<535 541>
Ref: 729 N 1 0 0 1 10 -57
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: Ccaron
Encoding: 268 268
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
DStem: 153 748 192 806 305 620 305 709 417 806 456 748 305 709 305 620
Fore
447 563 m 2
457 559 l 1
470 577 482 583 499 583 c 0
517 583 533 574 542 559 c 0
548 550 549 542 549 517 c 2
549 433 l 2
549 408 547 397 540 388 c 0
530 375 515 367 499 367 c 0
486 367 472 373 464 381 c 0
456 389 454 396 450 420 c 0
445 444 435 457 406 473 c 0
379 488 343 497 309 497 c 0
207 497 133 420 133 315 c 2
133 251 l 2
133 151 210 86 330 86 c 0
375 86 415 94 440 109 c 0
451 115 451 115 478 143 c 0
489 154 501 159 514 159 c 0
541 159 564 136 564 109 c 0
564 86 545 60 511 36 c 0
467 4 399 -14 327 -14 c 0
157 -14 33 97 33 249 c 2
33 315 l 2
33 475 151 597 305 597 c 0
357 597 392 589 447 563 c 2
305 709 m 1
417 806 l 1
429 815 436 819 446 819 c 0
464 819 480 802 480 784 c 0
480 772 476 765 465 756 c 2
456 748 l 1
305 620 l 1
153 748 l 2
131 767 129 770 129 783 c 0
129 802 145 819 164 819 c 0
173 819 180 815 192 806 c 1
305 709 l 1
EndSplineSet
MinimumDistance: x29,-1
EndChar
StartChar: ccaron
Encoding: 269 269
Width: 600
Flags: W
HStem: -16 100<309 358> 350 100<294 332>
VStem: 54 100<192 224>
DStem: 169 605 208 662 321 477 321 566 433 662 472 605 321 566 321 477
Fore
540 384 m 2
540 307 l 2
540 281 538 271 531 262 c 0
521 249 506 241 490 241 c 0
477 241 462 247 454 255 c 1
446 261 444 267 439 289 c 0
435 307 429 316 416 325 c 0
390 341 354 350 310 350 c 0
259 350 222 336 194 307 c 0
168 281 154 245 154 207 c 0
154 125 213 84 330 84 c 0
370 84 411 89 435 97 c 0
454 103 459 107 485 128 c 0
494 136 503 140 515 140 c 0
542 140 565 117 565 89 c 0
565 63 542 37 501 16 c 0
460 -4 396 -16 323 -16 c 0
226 -16 164 5 115 53 c 0
75 93 54 146 54 207 c 0
54 350 159 450 310 450 c 0
367 450 415 440 454 420 c 1
460 441 471 450 492 450 c 0
525 450 540 430 540 384 c 2
321 566 m 1
433 662 l 2
445 673 452 676 462 676 c 0
480 676 496 659 496 640 c 0
496 629 492 621 481 612 c 2
472 605 l 1
321 477 l 1
169 605 l 2
147 623 145 627 145 640 c 0
145 659 161 676 180 676 c 0
189 676 195 673 208 662 c 2
321 566 l 1
EndSplineSet
MinimumDistance: x27,-1
EndChar
StartChar: Dcaron
Encoding: 270 270
Width: 600
Flags: W
HStem: 0 100<61 73 175 301> 483 100<61 73 175 301>
VStem: 74 100<101 482> 450 100<240 320>
DStem: 94 738 133 796 246 610 246 699 358 796 397 738 246 699 246 610
Fore
74 100 m 1
74 483 l 1
35 483 13 501 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 80 583 c 2
292 583 l 2
438 583 550 462 550 305 c 2
550 258 l 2
550 185 526 123 480 75 c 0
431 23 371 0 284 0 c 2
80 0 l 2
56 0 43 3 34 10 c 0
21 19 13 35 13 50 c 0
13 82 36 100 74 100 c 1
174 100 m 1
285 100 l 2
345 100 378 112 409 144 c 1
437 175 450 210 450 261 c 2
450 307 l 2
450 354 434 398 405 432 c 0
375 467 337 483 284 483 c 2
174 483 l 1
174 100 l 1
246 699 m 1
358 796 l 1
370 805 377 809 387 809 c 0
405 809 421 792 421 774 c 0
421 762 417 755 406 746 c 2
397 738 l 1
246 610 l 1
94 738 l 2
72 757 70 760 70 773 c 0
70 792 86 809 105 809 c 0
114 809 121 805 133 796 c 1
246 699 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: dcaron
Encoding: 271 271
Width: 600
Flags: HMW
HStem: -14 100<258 306> 351 100<257 306>
VStem: 33 100<202 235.5> 431 100<201 235 401 423 495 525 525 525>
Fore
531 495 m 1
607 611 l 2
620 631 629 637 645 637 c 0
665 637 681 621 681 600 c 0
681 594 677 584 668 570 c 2
586 445 l 2
573 426 564 419 549 419 c 0
544 419 539 420 531 423 c 1
531 100 l 1
547 100 l 2
574 100 583 98 593 91 c 0
605 81 613 66 613 50 c 0
613 33 604 16 589 7 c 0
581 2 570 0 547 0 c 2
431 0 l 1
431 35 l 1
378 -1 339 -14 280 -14 c 0
205 -14 149 7 103 51 c 0
57 96 33 153 33 219 c 0
33 284 57 342 103 386 c 0
149 430 205 451 281 451 c 0
341 451 388 435 431 401 c 1
431 525 l 1
415 525 l 2
389 525 379 527 369 534 c 0
357 544 349 559 349 575 c 0
349 591 358 608 373 617 c 0
382 623 389 624 415 624 c 2
531 624 l 1
531 495 l 1
281 351 m 0
233 351 200 339 172 311 c 0
147 286 133 252 133 219 c 0
133 185 147 152 172 126 c 1
200 99 234 86 282 86 c 0
330 86 364 99 392 126 c 0
417 151 431 185 431 217 c 0
431 253 417 286 392 311 c 0
363 339 331 351 281 351 c 0
EndSplineSet
EndChar
StartChar: Dcroat
Encoding: 272 272
Width: 600
Flags: HMW
HStem: 0 100<67.5 74 174 284> 243 100<67 74 174 248> 483 100<174 174 174 284>
VStem: 74 100<100 243 343 483> 450 100<261 305>
Fore
74 243 m 1
66 243 l 2
43 243 30 246 21 253 c 0
8 262 0 277 0 293 c 0
0 310 9 327 24 336 c 0
33 342 40 343 67 343 c 2
74 343 l 1
74 483 l 1
35 483 13 501 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 80 583 c 2
292 583 l 2
438 583 550 462 550 305 c 2
550 258 l 2
550 185 526 123 480 75 c 0
431 23 371 0 284 0 c 2
79 0 l 2
56 0 43 3 34 10 c 0
21 19 13 35 13 50 c 0
13 82 36 100 74 100 c 1
74 243 l 1
174 243 m 1
174 100 l 1
285 100 l 2
345 100 378 112 409 144 c 1
437 175 450 210 450 261 c 2
450 307 l 2
450 354 434 398 405 432 c 0
375 467 337 483 284 483 c 2
174 483 l 1
174 343 l 1
248 343 l 2
275 343 283 341 293 334 c 0
307 324 314 309 314 293 c 0
314 260 292 243 248 243 c 2
174 243 l 1
EndSplineSet
EndChar
StartChar: dcroat
Encoding: 273 273
Width: 600
Flags: W
HStem: -16 100<273 289> 0 100<532 561> 350 100<273 289> 407 100<531 561> 525 99<401 430>
VStem: 33 100<192 224> 431 100<192 211 405 407 507 525> 431 182<448 464>
Fore
531 507 m 1
547 507 l 2
574 507 582 505 593 498 c 0
606 488 613 473 613 457 c 0
613 424 591 407 547 407 c 2
531 407 l 1
531 100 l 1
547 100 l 2
574 100 583 98 593 91 c 0
605 81 613 66 613 50 c 0
613 33 604 16 589 7 c 0
581 2 570 0 547 0 c 2
431 0 l 1
431 24 l 1
385 -3 337 -16 283 -16 c 0
135 -16 33 76 33 209 c 0
33 345 141 450 281 450 c 0
337 450 381 437 431 404 c 1
431 525 l 1
415 525 l 2
389 525 379 527 370 534 c 0
357 544 349 559 349 575 c 0
349 591 358 608 373 617 c 0
382 623 389 624 415 624 c 2
531 624 l 1
531 507 l 1
282 350 m 0
198 350 133 288 133 207 c 0
133 132 191 84 282 84 c 0
373 84 431 132 431 206 c 0
431 288 367 350 282 350 c 0
EndSplineSet
MinimumDistance: x23,0 y0,23 y0,24
EndChar
StartChar: Emacron
Encoding: 274 274
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 689 80<173 435>
VStem: 94 100<101 242 343 482> 125 350<728 736> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
178 769 m 2
422 769 l 2
445 769 457 766 464 758 c 0
470 751 475 737 475 729 c 0
475 704 455 689 422 689 c 2
178 689 l 2
153 689 145 691 136 701 c 0
130 709 125 721 125 729 c 0
125 754 144 769 178 769 c 2
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: emacron
Encoding: 275 275
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 546 80<178 422>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
178 626 m 2
422 626 l 2
445 626 457 623 464 615 c 0
470 608 475 594 475 586 c 0
475 561 455 546 422 546 c 2
178 546 l 2
153 546 145 548 136 558 c 0
130 566 125 578 125 586 c 0
125 611 144 626 178 626 c 2
EndSplineSet
EndChar
StartChar: Ebreve
Encoding: 276 276
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 623 68<254.5 309.5>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 728 N 1 0 0 1 -18 120
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: ebreve
Encoding: 277 277
Width: 600
Flags: W
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 477 68<264.5 319.5>
Ref: 728 N 1 0 0 1 -8 -26
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: Edotaccent
Encoding: 278 278
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 678 120<290 302>
VStem: 94 100<101 242 343 482> 240 120<736 740> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
300 798 m 0
334 798 360 771 360 737 c 0
360 705 333 678 300 678 c 0
267 678 240 705 240 738 c 0
240 771 267 798 300 798 c 0
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: edotaccent
Encoding: 279 279
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
300 654 m 0
334 654 360 627 360 593 c 0
360 561 333 534 300 534 c 0
267 534 240 561 240 594 c 0
240 627 267 654 300 654 c 0
EndSplineSet
EndChar
StartChar: Eogonek
Encoding: 280 280
Width: 600
Flags: W
HStem: -208 76<466 480> 0 100<61 93 195 450> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 373 77<-118 -106> 428 100<415 483> 450 100<100 171>
Fore
528 583 m 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
477 -49 450 -80 450 -112 c 0
450 -125 459 -132 474 -132 c 0
487 -132 497 -129 526 -114 c 0
536 -109 541 -108 548 -108 c 0
570 -108 587 -125 587 -146 c 0
587 -164 576 -178 552 -189 c 0
525 -201 495 -208 467 -208 c 0
409 -208 373 -174 373 -119 c 0
373 -69 394 -38 452 0 c 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
EndSplineSet
MinimumDistance: x28,-1
EndChar
StartChar: eogonek
Encoding: 281 281
Width: 600
Flags: HMW
HStem: -208 76<376.5 390> -16 100<262 305> 172 88<145 439> 350 100<255.5 328.5>
VStem: 283 77<-118.5 -98>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 45 538 32 508 19 c 0
418 -17 360 -68 360 -112 c 0
360 -125 369 -132 384 -132 c 0
396 -132 407 -128 435 -114 c 0
445 -109 450 -108 457 -108 c 0
479 -108 496 -125 496 -146 c 0
496 -164 485 -178 461 -189 c 0
434 -201 404 -208 377 -208 c 0
319 -208 283 -174 283 -119 c 0
283 -77 302 -43 341 -14 c 1
321 -16 311 -16 299 -16 c 0
142 -16 33 79 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
EndSplineSet
EndChar
StartChar: Ecaron
Encoding: 282 282
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 149 738 188 796 301 610 301 699 413 796 452 738 301 699 301 610
Fore
194 243 m 1
194 100 l 1
450 100 l 1
450 152 l 2
450 180 452 188 459 198 c 0
469 212 484 219 500 219 c 0
517 219 533 210 543 195 c 0
548 186 550 177 550 152 c 2
550 0 l 1
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 34 13 50 c 0
13 67 22 83 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
528 583 l 1
528 433 l 2
528 405 526 397 519 387 c 0
509 374 494 366 478 366 c 0
461 366 445 375 435 390 c 0
430 399 428 409 428 433 c 2
428 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 376 281 385 288 395 c 0
298 408 313 416 328 416 c 0
355 416 373 398 377 370 c 0
378 361 378 358 378 349 c 2
378 236 l 2
378 210 376 200 369 191 c 0
359 178 344 170 329 170 c 0
312 170 295 179 286 194 c 0
281 203 279 212 279 236 c 2
279 243 l 1
194 243 l 1
301 699 m 1
413 796 l 1
425 805 432 809 442 809 c 0
460 809 476 792 476 774 c 0
476 762 472 755 461 746 c 2
452 738 l 1
301 610 l 1
149 738 l 2
127 757 125 760 125 773 c 0
125 792 141 809 160 809 c 0
169 809 176 805 188 796 c 1
301 699 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: ecaron
Encoding: 283 283
Width: 600
Flags: HMW
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 566 20<301 301>
Fore
550 172 m 1
142 172 l 1
165 112 218 84 306 84 c 0
352 84 377 88 469 112 c 0
481 115 493 117 502 117 c 0
529 117 550 95 550 67 c 0
550 47 539 33 515 22 c 0
470 2 368 -16 297 -16 c 0
142 -16 33 80 33 216 c 0
33 348 145 450 291 450 c 0
440 450 550 349 550 211 c 2
550 172 l 1
145 260 m 1
439 260 l 1
423 315 365 350 292 350 c 0
219 350 160 314 145 260 c 1
301 556 m 1
413 652 l 2
425 663 432 666 442 666 c 0
460 666 476 649 476 630 c 0
476 619 472 611 461 602 c 2
452 595 l 1
301 467 l 1
149 595 l 2
127 613 125 617 125 630 c 0
125 649 141 666 160 666 c 0
169 666 175 663 188 652 c 2
301 556 l 1
EndSplineSet
EndChar
StartChar: Gcircumflex
Encoding: 284 284
Width: 600
Flags: W
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344>
VStem: 33 100<246 253 253 317> 450 100<111 180>
DStem: 313 733 313 822 425 636 464 693 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636 313 733 313 822 425 636 464 693 313 822 313 733 161 693 200 636
Ref: 710 N 1 0 0 1 12 126
Ref: 71 N 1 0 0 1 0 0
EndChar
StartChar: gcircumflex
Encoding: 285 285
Width: 600
Flags: W
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
DStem: 313 587 313 676 425 490 464 547 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490 313 587 313 676 425 490 464 547 313 676 313 587 161 547 200 490
Ref: 710 N 1 0 0 1 12 -20
Ref: 103 N 1 0 0 1 0 0
EndChar
StartChar: Gbreve
Encoding: 286 286
Width: 600
Flags: HMW
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 647 68<285.5 340.5>
VStem: 33 100<246 253 253 317> 450 100<111 180>
Fore
550 180 m 1
550 48 l 1
461 1 409 -14 331 -14 c 0
233 -14 148 15 99 65 c 0
58 108 33 176 33 246 c 2
33 317 l 2
33 393 64 467 117 520 c 0
170 572 235 597 317 597 c 0
371 597 420 586 462 565 c 1
474 589 484 597 503 597 c 0
520 597 536 588 543 573 c 0
549 563 550 555 550 531 c 2
550 453 l 2
550 425 549 418 541 408 c 0
531 395 516 387 500 387 c 0
487 387 473 393 465 402 c 0
459 409 459 409 451 440 c 0
441 475 391 497 318 497 c 0
262 497 217 481 186 450 c 0
153 417 133 367 133 317 c 2
133 253 l 2
133 195 147 156 178 130 c 0
212 101 262 86 325 86 c 0
373 86 412 94 450 111 c 1
450 180 l 1
350 180 l 2
325 180 314 182 305 190 c 1
292 199 284 214 284 230 c 0
284 247 293 264 308 273 c 0
317 279 325 280 350 280 c 2
525 280 l 2
552 280 561 278 571 271 c 0
585 261 592 246 592 230 c 0
592 205 578 188 550 180 c 1
172 831 m 0
192 831 199 822 206 791 c 0
216 745 258 715 313 715 c 0
368 715 410 745 420 791 c 0
427 822 434 831 454 831 c 0
474 831 488 816 488 793 c 0
488 717 405 647 313 647 c 0
221 647 138 717 138 793 c 0
138 816 152 831 172 831 c 0
EndSplineSet
EndChar
StartChar: gbreve
Encoding: 287 287
Width: 600
Flags: HMW
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 503 68<272.5 327.5>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
Fore
410 401 m 1
410 437 l 1
526 437 l 2
553 437 562 435 572 428 c 0
584 418 592 403 592 387 c 0
592 370 583 353 568 344 c 0
560 339 549 337 526 337 c 2
510 337 l 1
510 -20 l 2
510 -126 428 -205 319 -205 c 2
207 -205 l 2
182 -205 171 -203 162 -195 c 1
149 -186 141 -171 141 -155 c 0
141 -138 150 -121 165 -112 c 0
174 -106 181 -105 207 -105 c 2
316 -105 l 2
373 -105 410 -72 410 -20 c 2
410 35 l 1
364 1 321 -14 269 -14 c 0
135 -14 33 86 33 218 c 0
33 351 135 451 269 451 c 0
323 451 371 434 410 401 c 1
271 351 m 0
195 351 133 292 133 219 c 0
133 145 195 86 271 86 c 0
347 86 410 145 410 217 c 0
410 292 349 351 271 351 c 0
159 687 m 0
179 687 186 678 193 647 c 0
203 601 245 571 300 571 c 0
355 571 397 601 407 647 c 0
414 678 421 687 441 687 c 0
461 687 475 672 475 649 c 0
475 573 392 503 300 503 c 0
208 503 125 573 125 649 c 0
125 672 139 687 159 687 c 0
EndSplineSet
EndChar
StartChar: Gdotaccent
Encoding: 288 288
Width: 600
Flags: W
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 623 120<301.067 316>
VStem: 33 100<246 253 253 317> 252 120<681 687> 450 100<111 180>
Ref: 729 N 1 0 0 1 12 89
Ref: 71 N 1 0 0 1 0 0
EndChar
StartChar: gdotaccent
Encoding: 289 289
Width: 600
Flags: W
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 477 120<301.067 316>
VStem: 33 100<182 255.5> 252 120<535 541> 410 100<-20 35 35 35 181 254.5>
Ref: 729 N 1 0 0 1 12 -57
Ref: 103 N 1 0 0 1 0 0
EndChar
StartChar: Gcommaaccent
Encoding: 290 290
Width: 600
Flags: HMW
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344>
VStem: 33 100<246 253 253 317> 450 100<111 180>
Fore
550 180 m 1
550 48 l 1
461 1 409 -14 331 -14 c 0
233 -14 148 15 99 65 c 0
58 108 33 176 33 246 c 2
33 317 l 2
33 393 64 467 117 520 c 0
170 572 235 597 317 597 c 0
371 597 420 586 462 565 c 1
474 589 484 597 503 597 c 0
520 597 536 588 543 573 c 0
549 563 550 555 550 531 c 2
550 453 l 2
550 425 549 418 541 408 c 0
531 395 516 387 500 387 c 0
487 387 473 393 465 402 c 0
459 409 459 409 451 440 c 0
441 475 391 497 318 497 c 0
262 497 217 481 186 450 c 0
153 417 133 367 133 317 c 2
133 253 l 2
133 195 147 156 178 130 c 0
212 101 262 86 325 86 c 0
373 86 412 94 450 111 c 1
450 180 l 1
350 180 l 2
325 180 314 182 305 190 c 1
292 199 284 214 284 230 c 0
284 247 293 264 308 273 c 0
317 279 325 280 350 280 c 2
525 280 l 2
552 280 561 278 571 271 c 0
585 261 592 246 592 230 c 0
592 205 578 188 550 180 c 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: gcommaaccent
Encoding: 291 291
Width: 600
Flags: HMW
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
Fore
410 401 m 1
410 437 l 1
526 437 l 2
553 437 562 435 572 428 c 0
584 418 592 403 592 387 c 0
592 370 583 353 568 344 c 0
560 339 549 337 526 337 c 2
510 337 l 1
510 -20 l 2
510 -126 428 -205 319 -205 c 2
207 -205 l 2
182 -205 171 -203 162 -195 c 1
149 -186 141 -171 141 -155 c 0
141 -138 150 -121 165 -112 c 0
174 -106 181 -105 207 -105 c 2
316 -105 l 2
373 -105 410 -72 410 -20 c 2
410 35 l 1
364 1 321 -14 269 -14 c 0
135 -14 33 86 33 218 c 0
33 351 135 451 269 451 c 0
323 451 371 434 410 401 c 1
271 351 m 0
195 351 133 292 133 219 c 0
133 145 195 86 271 86 c 0
347 86 410 145 410 217 c 0
410 292 349 351 271 351 c 0
378 654 m 2
296 528 l 2
283 508 274 502 260 502 c 0
240 502 223 518 223 537 c 0
223 546 227 557 235 569 c 2
317 695 l 2
330 715 339 721 355 721 c 0
375 721 391 704 391 684 c 0
391 677 386 666 378 654 c 2
EndSplineSet
EndChar
StartChar: Hcircumflex
Encoding: 292 292
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
DStem: 303 733 303 822 415 636 454 693 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636 303 733 303 822 415 636 454 693 303 822 303 733 151 693 190 636
Ref: 710 N 1 0 0 1 2 126
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: hcircumflex
Encoding: 293 293
Width: 600
Flags: W
HStem: 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
DStem: 195 774 195 863 307 677 346 734 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677 195 774 195 863 307 677 346 734 195 863 195 774 43 734 82 677
Ref: 710 S 1 0 0 1 -106 167
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: Hbar
Encoding: 294 294
Width: 600
Flags: HW
HStem: 0 100<69 96 196 233 375 409 510 537> 241 100<196 409> 340.192 99.6882<87 96> 420 20G<100 175> 483 41.2319<196 201> 483 100<375 409> 604 20G<109 184>
VStem: 44 65<524 537> 96 100<99 241 439 483> 410 100<99 241 341 483>
Fore
509 340 m 1
509 100 l 1
515 100 l 2
542 100 551 98 560 91 c 0
573 81 581 66 581 50 c 0
581 33 572 16 557 7 c 0
549 2 536 0 515 0 c 2
394 0 l 2
370 0 358 3 349 9 c 0
336 19 328 35 328 50 c 0
328 67 337 84 352 93 c 0
361 99 370 100 394 100 c 2
409 100 l 1
409 241 l 1
195 241 l 1
195 100 l 1
210 100 l 2
236 100 246 98 255 91 c 0
268 81 276 66 276 50 c 0
276 33 267 16 252 7 c 0
244 2 231 0 210 0 c 2
89 0 l 2
65 0 52 3 43 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 99 64 100 89 100 c 2
95 100 l 1
95 340.004 l 1
70.4287 340.108 59.7657 342.208 51 350 c 1
38 359 30 375 30 390 c 0
30 407 39 424 54 433 c 0
62.7558 438.837 71.5116 439.942 95 439.998 c 1
95 483 l 1
62 486 43 504 43 533 c 0
43 550 52 567 67 576 c 0
76 582 84 583 109 583 c 2
210 583 l 2
237 583 246 581 255 574 c 0
268 564 276 549 276 533 c 0
276 516 267 499 252 490 c 0
243 485 234 483 210 483 c 2
195 483 l 1
195 341 l 1
409 341 l 1
409 483 l 1
394 483 l 2
368 483 359 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 369 583 394 583 c 2
495 583 l 2
522 583 531 581 541 574 c 0
553 564 561 549 561 533 c 0
561 504 542 486 509 483 c 1
509 440 l 1
534 440 543 439 552 433 c 0
567 424 576 407 576 390 c 0
576 375 568 359 555 350 c 1
546 342 535 340 509 340 c 1
EndSplineSet
EndChar
StartChar: hbar
Encoding: 295 295
Width: 600
Flags: W
HStem: 0 100<77 94 196 221 387 408 509 525> 350 100<317 338> 524 100<61 94 196 323>
VStem: 13 360<564.534 576> 95 100<100 283 390 524> 409 100<100 288>
Fore
79 624 m 2
307 624 l 2
331 624 340 622 349 617 c 0
364 608 373 591 373 574 c 0
373 559 365 543 353 533 c 0
343 526 333 524 307 524 c 2
195 524 l 1
195 389 l 1
235 430 280 450 332 450 c 0
438 450 509 384 509 284 c 2
509 100 l 1
515 100 l 2
542 100 551 98 561 91 c 0
573 81 581 66 581 50 c 0
581 33 572 16 557 7 c 0
549 2 536 0 515 0 c 2
403 0 l 2
379 0 366 3 357 9 c 0
344 19 336 34 336 50 c 0
336 67 345 83 360 93 c 0
369 98 378 100 403 100 c 2
409 100 l 1
409 271 l 2
409 305 405 317 388 331 c 0
371 345 352 350 321 350 c 0
274 350 252 338 195 283 c 1
195 100 l 1
201 100 l 2
229 100 237 98 247 91 c 0
260 81 268 66 268 50 c 0
268 33 259 17 244 7 c 0
236 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 44 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 524 l 1
79 524 l 2
53 524 43 526 33 533 c 0
21 543 13 559 13 574 c 0
13 591 22 608 37 617 c 0
46 622 55 624 79 624 c 2
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: Itilde
Encoding: 296 296
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 623 69<371 378> 687 69<224 229>
VStem: 250 100<100 483>
Ref: 732 N 1 0 0 1 0 100
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: itilde
Encoding: 297 297
Width: 600
Flags: W
HStem: 0 100<128 250 350 472> 337 100<172 250> 477 69<371 378> 541 69<224 229>
VStem: 250 100<100 337 337 337>
Ref: 732 N 1 0 0 1 0 -46
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: Imacron
Encoding: 298 298
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 689 80<178 422>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
178 769 m 2
422 769 l 2
445 769 457 766 464 758 c 0
470 751 475 737 475 729 c 0
475 704 455 689 422 689 c 2
178 689 l 2
153 689 145 691 136 701 c 0
130 709 125 721 125 729 c 0
125 754 144 769 178 769 c 2
EndSplineSet
EndChar
StartChar: imacron
Encoding: 299 299
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 337 100<172 250> 546 80<178 422>
VStem: 250 100<100 337 337 337>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
178 626 m 2
422 626 l 2
445 626 457 623 464 615 c 0
470 608 475 594 475 586 c 0
475 561 455 546 422 546 c 2
178 546 l 2
153 546 145 548 136 558 c 0
130 566 125 578 125 586 c 0
125 611 144 626 178 626 c 2
EndSplineSet
EndChar
StartChar: Ibreve
Encoding: 300 300
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 623 68<272.5 327.5>
VStem: 250 100<100 483>
Ref: 728 N 1 0 0 1 0 120
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: ibreve
Encoding: 301 301
Width: 600
Flags: W
HStem: 0 100<128 250 350 472> 337 100<172 250> 477 68<272.5 327.5>
VStem: 250 100<100 337 337 337>
Ref: 728 N 1 0 0 1 0 -26
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: Iogonek
Encoding: 302 302
Width: 600
Flags: W
HStem: -208 76<396 406> 0 100<131 249 351 381> 483 100<131 249 351 473>
VStem: 250 100<100 483> 303 77<-118 -106>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 27 508 16 473 -5 c 0
417 -38 380 -81 380 -112 c 0
380 -125 389 -132 404 -132 c 0
416 -132 427 -128 455 -114 c 0
465 -109 470 -108 477 -108 c 0
499 -108 516 -125 516 -146 c 0
516 -164 505 -178 481 -189 c 0
454 -201 424 -208 397 -208 c 0
339 -208 303 -174 303 -119 c 0
303 -69 323 -38 382 0 c 1
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: iogonek
Encoding: 303 303
Width: 600
Flags: W
HStem: -208 76<420 430> 0 100<110 249 350 405> 337 100<158 249> 518 105<219 335>
VStem: 218 118<519 622> 250 100<100 337> 327 77<-118 -106>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 29 530 18 503 1 c 0
476 -15 431 -54 419 -71 c 0
410 -86 404 -101 404 -112 c 0
404 -125 413 -132 428 -132 c 0
440 -132 451 -128 479 -114 c 0
489 -109 494 -108 501 -108 c 0
523 -108 540 -125 540 -146 c 0
540 -164 529 -178 505 -189 c 0
478 -201 448 -208 421 -208 c 0
363 -208 327 -174 327 -119 c 0
327 -69 348 -38 406 0 c 1
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
336 623 m 1
336 518 l 1
218 518 l 1
218 623 l 1
336 623 l 1
EndSplineSet
MinimumDistance: x7,-1 x27,1 y1,27 y1,0
EndChar
StartChar: Idotaccent
Encoding: 304 304
Width: 600
Flags: HMW
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
300 798 m 0
334 798 360 771 360 737 c 0
360 705 333 678 300 678 c 0
267 678 240 705 240 738 c 0
240 771 267 798 300 798 c 0
EndSplineSet
EndChar
StartChar: dotlessi
Encoding: 305 305
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 337 100<172 250>
VStem: 250 100<100 337 337 337>
Fore
350 437 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
EndSplineSet
EndChar
StartChar: IJ
Encoding: 306 306
Width: 600
Flags: W
HStem: 0 100<131 249 351 467> 483 100<131 249 351 467>
VStem: 250 100<100 483>
Fore
350 483 m 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
EndSplineSet
MinimumDistance: x0,-1
Ligature: I J
EndChar
StartChar: ij
Encoding: 307 307
Width: 600
Flags: W
HStem: -205 100<165 310> 337 100<165 387> 518 105<312 429>
VStem: 311 119<519 622> 388 100<-29 337>
Fore
388 337 m 1
186 337 l 2
161 337 150 339 141 347 c 1
128 356 120 372 120 387 c 0
120 404 129 421 144 430 c 0
153 436 160 437 186 437 c 2
488 437 l 1
488 -20 l 2
488 -125 406 -205 297 -205 c 2
183 -205 l 2
158 -205 147 -203 138 -195 c 1
125 -186 117 -170 117 -155 c 0
117 -138 127 -121 141 -112 c 0
150 -106 158 -105 183 -105 c 2
294 -105 l 2
351 -105 388 -72 388 -20 c 2
388 337 l 1
430 623 m 1
430 518 l 1
311 518 l 1
311 623 l 1
430 623 l 1
EndSplineSet
MinimumDistance: x6,-1
Ligature: i j
EndChar
StartChar: Jcircumflex
Encoding: 308 308
Width: 600
Flags: W
HStem: -14 100<254 289> 483 100<271 390 490 547 490 490>
VStem: 54 100<117 213> 390 100<198 483>
DStem: 420 733 420 822 532 636 571 693 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636 420 733 420 822 532 636 571 693 420 822 420 733 268 693 307 636
Ref: 710 S 1 0 0 1 119 126
Ref: 74 N 1 0 0 1 0 0
EndChar
StartChar: jcircumflex
Encoding: 309 309
Width: 600
Flags: W
HStem: -205 100<161 309> 337 100<164 387>
VStem: 388 100<-29 337>
DStem: 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668 303 797 303 708 151 668 190 611 303 708 303 797 415 611 454 668
Fore
388 337 m 1
186 337 l 2
161 337 150 339 141 347 c 1
128 356 120 372 120 387 c 0
120 404 129 421 144 430 c 0
153 436 160 437 186 437 c 2
488 437 l 1
488 -20 l 2
488 -125 406 -205 297 -205 c 2
183 -205 l 2
158 -205 147 -203 138 -195 c 1
125 -186 117 -170 117 -155 c 0
117 -138 127 -121 141 -112 c 0
150 -106 158 -105 183 -105 c 2
294 -105 l 2
351 -105 388 -72 388 -20 c 2
388 337 l 1
303 708 m 1
190 611 l 2
179 602 171 598 162 598 c 0
143 598 127 615 127 633 c 0
127 647 129 650 151 668 c 2
303 797 l 1
454 668 l 2
457 666 461 663 463 661 c 0
474 652 478 644 478 633 c 0
478 615 462 598 444 598 c 0
435 598 426 602 415 611 c 2
303 708 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: Kcommaaccent
Encoding: 310 310
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483>
Fore
194 208 m 1
194 100 l 1
229 100 l 2
256 100 264 98 274 91 c 0
287 81 295 66 295 50 c 0
295 33 286 16 271 7 c 0
264 3 249 0 229 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
229 583 l 2
256 583 265 581 274 574 c 0
287 564 295 549 295 533 c 0
295 516 286 499 271 490 c 0
263 485 252 483 229 483 c 2
194 483 l 1
194 334 l 1
372 487 l 1
351 495 341 509 341 532 c 0
341 560 357 578 386 581 c 0
398 583 399 583 407 583 c 2
507 583 l 2
534 583 543 581 553 574 c 0
565 564 573 549 573 533 c 0
573 500 552 483 511 483 c 1
335 330 l 1
396 298 458 215 504 100 c 1
536 100 l 2
563 100 571 98 581 91 c 0
594 81 602 66 602 50 c 0
602 33 593 16 578 7 c 0
571 3 556 0 536 0 c 2
426 0 l 1
379 143 315 240 254 259 c 1
194 208 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: kcommaaccent
Encoding: 311 311
Width: 600
Flags: W
HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114>
VStem: 115 100<100 164 288 524> 278 245<378 394> 320 251<42 58>
DStem: 233 178 311 241 336 87 471 100 277 -85 338 -126 195 -211 256 -252 294 350 429 337 215 287 311 241
Fore
215 164 m 1
215 0 l 1
99 0 l 2
55 0 33 17 33 50 c 0
33 67 42 84 57 93 c 0
66 99 74 100 99 100 c 2
115 100 l 1
115 524 l 1
99 524 l 2
73 524 63 526 53 533 c 0
41 543 33 558 33 574 c 0
33 591 42 608 57 617 c 0
66 623 75 624 99 624 c 2
215 624 l 1
215 287 l 1
294 350 l 1
282 364 278 373 278 387 c 0
278 404 287 420 302 430 c 0
310 435 321 437 345 437 c 2
457 437 l 2
482 437 493 435 503 428 c 0
516 418 523 403 523 387 c 0
523 370 514 354 499 344 c 0
491 339 480 337 457 337 c 2
429 337 l 1
311 241 l 1
471 100 l 1
504 100 l 2
532 100 540 98 550 91 c 0
563 81 571 66 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 504 0 c 2
386 0 l 2
342 0 320 17 320 50 c 0
320 64 324 74 336 87 c 1
233 178 l 1
215 164 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
MinimumDistance: x29,-1
EndChar
StartChar: kgreenlandic
Encoding: 312 312
Width: 600
Flags: W
HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484>
VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: Lacute
Encoding: 313 313
Width: 600
Flags: HMW
HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 471 100<100 192>
Fore
256 483 m 1
256 100 l 1
471 100 l 1
471 192 l 2
471 219 473 228 480 238 c 0
490 252 505 259 521 259 c 0
538 259 554 250 564 235 c 0
570 226 571 217 571 192 c 2
571 0 l 1
99 0 l 2
76 0 62 3 54 10 c 0
41 19 33 34 33 50 c 0
33 67 42 84 57 93 c 0
66 99 73 100 99 100 c 2
156 100 l 1
156 483 l 1
99 483 l 2
74 483 63 485 54 492 c 0
41 502 33 517 33 533 c 0
33 550 42 567 57 576 c 0
66 582 73 583 99 583 c 2
313 583 l 2
340 583 348 581 358 574 c 0
371 564 379 549 379 533 c 0
379 516 370 499 355 490 c 0
347 485 336 483 313 483 c 2
256 483 l 1
372 767 m 1
239 656 l 2
226 645 216 640 207 640 c 0
187 640 170 657 170 676 c 0
170 688 177 700 193 712 c 1
326 824 l 2
340 835 348 839 358 839 c 0
379 839 395 823 395 803 c 0
395 790 389 780 372 767 c 1
EndSplineSet
EndChar
StartChar: lacute
Encoding: 314 314
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 524 100<172 250>
VStem: 250 100<100 524 524 524>
Fore
350 624 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 35 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
452 768 m 1
319 656 l 2
304 644 297 640 287 640 c 0
267 640 250 657 250 676 c 0
250 689 257 700 273 713 c 2
406 824 l 2
422 837 427 840 438 840 c 0
459 840 475 824 475 803 c 0
475 791 469 781 452 768 c 1
EndSplineSet
EndChar
StartChar: Lcommaaccent
Encoding: 315 315
Width: 600
Flags: HMW
HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 471 100<100 192>
Fore
256 483 m 1
256 100 l 1
471 100 l 1
471 192 l 2
471 219 473 228 480 238 c 0
490 252 505 259 521 259 c 0
538 259 554 250 564 235 c 0
570 226 571 217 571 192 c 2
571 0 l 1
99 0 l 2
76 0 62 3 54 10 c 0
41 19 33 34 33 50 c 0
33 67 42 84 57 93 c 0
66 99 73 100 99 100 c 2
156 100 l 1
156 483 l 1
99 483 l 2
74 483 63 485 54 492 c 0
41 502 33 517 33 533 c 0
33 550 42 567 57 576 c 0
66 582 73 583 99 583 c 2
313 583 l 2
340 583 348 581 358 574 c 0
371 564 379 549 379 533 c 0
379 516 370 499 355 490 c 0
347 485 336 483 313 483 c 2
256 483 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: lcommaaccent
Encoding: 316 316
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 524 100<172 250>
VStem: 250 100<100 524 524 524>
Fore
350 624 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 35 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: Lcaron
Encoding: 317 317
Width: 600
Flags: W
HStem: 0 100<81 155 257 471> 0 259<513 529> 483 100<81 155 257 321>
VStem: 156 100<100 483> 471 100<100 208>
DStem: 496 572 557 531 414 446 475 405
Fore
256 483 m 1
256 100 l 1
471 100 l 1
471 192 l 2
471 219 473 228 480 238 c 0
490 252 505 259 521 259 c 0
538 259 554 250 564 235 c 0
570 226 571 217 571 192 c 2
571 0 l 1
99 0 l 2
76 0 62 3 54 10 c 0
41 19 33 34 33 50 c 0
33 67 42 84 57 93 c 0
66 99 73 100 99 100 c 2
156 100 l 1
156 483 l 1
99 483 l 2
74 483 63 485 54 492 c 0
41 502 33 517 33 533 c 0
33 550 42 567 57 576 c 0
66 582 73 583 99 583 c 2
313 583 l 2
340 583 348 581 358 574 c 0
371 564 379 549 379 533 c 0
379 516 370 499 355 490 c 0
347 485 336 483 313 483 c 2
256 483 l 1
557 531 m 2
475 405 l 2
462 385 453 379 439 379 c 0
419 379 402 395 402 414 c 0
402 423 406 434 414 446 c 2
496 572 l 2
509 592 518 598 534 598 c 0
554 598 570 581 570 561 c 0
570 554 565 543 557 531 c 2
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: lcaron
Encoding: 318 318
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 524 100<172 250>
VStem: 250 100<100 524 524 524>
Fore
350 624 m 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 35 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
517 570 m 2
435 445 l 2
423 426 413 419 399 419 c 0
379 419 362 435 362 453 c 0
362 462 366 473 374 486 c 2
456 611 l 2
469 631 478 637 494 637 c 0
514 637 530 621 530 600 c 0
530 594 526 583 517 570 c 2
EndSplineSet
EndChar
StartChar: Ldot
Encoding: 319 319
Width: 600
Flags: W
HStem: 0 100<99 156 256 471> 226 132<367 389> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 303 150<290 294> 471 100<100 192>
Ref: 183 S 1 0 0 1 78 12
Ref: 76 N 1 0 0 1 0 0
EndChar
StartChar: ldot
Encoding: 320 320
Width: 600
Flags: W
HStem: 0 100<128 250 350 472> 214 132<466 488> 524 100<172 250>
VStem: 250 100<100 524 524 524> 402 150<278 282>
Ref: 183 N 1 0 0 1 177 0
Ref: 108 N 1 0 0 1 0 0
EndChar
StartChar: Lslash
Encoding: 321 321
Width: 600
Flags: HMW
HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 203 203 203 359 483> 471 100<100 191>
Fore
256 483 m 1
256 359 l 1
344 411 l 2
363 422 373 426 385 426 c 0
410 426 432 402 432 376 c 0
432 353 424 343 393 325 c 2
256 244 l 1
256 100 l 1
471 100 l 1
471 191 l 2
471 218 473 228 480 237 c 0
490 251 505 258 521 258 c 0
539 258 554 249 564 234 c 0
569 225 571 216 571 191 c 2
571 0 l 1
99 0 l 2
55 0 33 17 33 50 c 0
33 67 42 84 57 93 c 0
66 99 73 100 99 100 c 2
156 100 l 1
156 203 l 1
102 171 l 2
86 161 71 156 60 156 c 0
35 156 12 180 12 207 c 0
12 229 20 240 52 258 c 2
156 318 l 1
156 483 l 1
99 483 l 2
74 483 63 485 53 492 c 0
41 502 33 517 33 533 c 0
33 550 42 567 57 576 c 0
66 582 73 583 99 583 c 2
313 583 l 2
340 583 348 581 358 574 c 0
371 564 379 549 379 533 c 0
379 516 370 499 355 490 c 0
346 485 336 483 313 483 c 2
256 483 l 1
EndSplineSet
EndChar
StartChar: lslash
Encoding: 322 322
Width: 600
Flags: HMW
HStem: 0 100<128 250 350 472> 524 100<175 250>
VStem: 250 100<100 243 243 243 399 524 524 524>
Fore
350 624 m 5
350 399 l 1
385 419 l 2
406 432 413 435 425 435 c 0
451 435 474 411 474 383 c 0
474 361 464 348 435 332 c 2
350 283 l 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
531 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 83 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 243 l 1
216 223 l 2
199 213 186 209 176 209 c 0
150 209 127 233 127 260 c 0
127 282 136 294 167 312 c 2
250 359 l 1
250 524 l 5
175 524 l 6
149 524 138 526 129 534 c 5
116 543 108 559 108 574 c 4
108 591 117 608 132 617 c 4
141 623 150 624 175 624 c 6
350 624 l 5
EndSplineSet
EndChar
StartChar: Nacute
Encoding: 323 323
Width: 600
Flags: HMW
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
Fore
173 394 m 1
173 100 l 1
208 100 l 2
235 100 244 98 254 91 c 0
267 81 274 66 274 50 c 0
274 33 265 17 250 7 c 0
243 3 228 0 208 0 c 2
79 0 l 2
55 0 42 3 33 10 c 0
20 19 12 34 12 50 c 0
12 82 34 100 73 100 c 1
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 1
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 0 l 1
432 0 l 1
173 394 l 1
452 767 m 1
319 656 l 2
306 645 296 640 287 640 c 0
267 640 250 657 250 676 c 0
250 688 257 700 273 712 c 1
406 824 l 2
420 835 428 839 438 839 c 0
459 839 475 823 475 803 c 0
475 790 469 780 452 767 c 1
EndSplineSet
EndChar
StartChar: nacute
Encoding: 324 324
Width: 600
Flags: W
HStem: 0 100<71 94 196 215 405 409 510 525.03> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<100 288>
DStem: 406 680 452 624 273 569 319 512
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: Ncommaaccent
Encoding: 325 325
Width: 600
Flags: HMW
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
Fore
173 394 m 1
173 100 l 1
208 100 l 2
235 100 244 98 254 91 c 0
267 81 274 66 274 50 c 0
274 33 265 17 250 7 c 0
243 3 228 0 208 0 c 2
79 0 l 2
55 0 42 3 33 10 c 0
20 19 12 34 12 50 c 0
12 82 34 100 73 100 c 1
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 1
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 0 l 1
432 0 l 1
173 394 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: ncommaaccent
Encoding: 326 326
Width: 600
Flags: W
HStem: 0 100<71 94 196 222 407 409 510 525.03> 350 100<311 340> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<100 284>
DStem: 277 -85 338 -126 195 -211 256 -252
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: Ncaron
Encoding: 327 327
Width: 600
Flags: HMW
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
Fore
173 394 m 1
173 100 l 1
208 100 l 2
235 100 244 98 254 91 c 0
267 81 274 66 274 50 c 0
274 33 265 17 250 7 c 0
243 3 228 0 208 0 c 2
79 0 l 2
55 0 42 3 33 10 c 0
20 19 12 34 12 50 c 0
12 82 34 100 73 100 c 1
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 1
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 0 l 1
432 0 l 1
173 394 l 1
301 699 m 5
413 796 l 5
425 805 432 809 442 809 c 4
460 809 476 792 476 774 c 4
476 762 472 755 461 746 c 6
452 738 l 5
301 610 l 5
149 738 l 6
127 757 125 760 125 773 c 4
125 792 141 809 160 809 c 4
169 809 176 805 188 796 c 5
301 699 l 5
EndSplineSet
EndChar
StartChar: ncaron
Encoding: 328 328
Width: 600
Flags: W
HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<100 288>
DStem: 149 605 188 662 301 477 301 566 413 662 452 605 301 566 301 477
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
301 566 m 1
413 662 l 2
425 673 432 676 442 676 c 0
460 676 476 659 476 640 c 0
476 629 472 621 461 612 c 2
452 605 l 1
301 477 l 1
149 605 l 2
127 623 125 627 125 640 c 0
125 659 141 676 160 676 c 0
169 676 175 673 188 662 c 2
301 566 l 1
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: napostrophe
Encoding: 329 329
Width: 600
Flags: W
HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<100 288>
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 5
201 100 l 6
228 100 236 98 246 91 c 4
259 81 267 66 267 50 c 4
267 33 258 17 243 7 c 4
235 2 222 0 201 0 c 6
89 0 l 6
65 0 53 3 43 10 c 4
31 19 23 35 23 50 c 4
23 67 32 84 47 93 c 4
56 98 64 100 89 100 c 6
95 100 l 5
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: Eng
Encoding: 330 330
Width: 600
Flags: W
HStem: -203 100<344 360> 0 100<59 72 174 216> 483 100<40 72 376 430 531.031 546.331>
VStem: 12 262<40.1997 53> 73 100<100 393> 330 262<523.191 535> 431 100<-27 2 192 483>
DStem: 173 394 173 583 431 2 431 191
Fore
431 2 m 1
173 394 l 1
173 100 l 1
208 100 l 2
235 100 244 98 254 91 c 0
267 81 274 66 274 50 c 0
274 33 265 17 250 7 c 0
243 3 228 0 208 0 c 2
79 0 l 2
55 0 42 3 33 10 c 0
20 19 12 34 12 50 c 0
12 82 34 100 73 100 c 1
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 1
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 -14 l 2
531 -121 455 -203 356 -203 c 0
279 -203 234 -179 234 -139 c 0
234 -112 257 -89 282 -89 c 0
288 -89 291 -90 305 -95 c 0
321 -100 337 -103 353 -103 c 0
399 -103 431 -67 431 -14 c 2
431 2 l 1
EndSplineSet
MinimumDistance: x29,-1
EndChar
StartChar: eng
Encoding: 331 331
Width: 600
Flags: W
HStem: -203 100<319 343> 0 100<71 94 196 215> 350 100<311 337> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<-27 293>
Fore
510 282 m 2
510 -14 l 2
510 -121 434 -203 335 -203 c 0
258 -203 213 -179 213 -139 c 0
213 -112 236 -89 261 -89 c 0
267 -89 270 -90 284 -95 c 0
300 -100 316 -103 332 -103 c 0
378 -103 410 -67 410 -14 c 2
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: Omacron
Encoding: 332 332
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5> 689 80<178 422>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
178 769 m 2
422 769 l 2
445 769 457 766 464 758 c 0
470 751 475 737 475 729 c 0
475 704 455 689 422 689 c 2
178 689 l 2
153 689 145 691 136 701 c 0
130 709 125 721 125 729 c 0
125 754 144 769 178 769 c 2
EndSplineSet
EndChar
StartChar: omacron
Encoding: 333 333
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 546 80<178 422>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
178 626 m 2
422 626 l 2
445 626 457 623 464 615 c 0
470 608 475 594 475 586 c 0
475 561 455 546 422 546 c 2
178 546 l 2
153 546 145 548 136 558 c 0
130 566 125 578 125 586 c 0
125 611 144 626 178 626 c 2
EndSplineSet
EndChar
StartChar: Obreve
Encoding: 334 334
Width: 600
Flags: W
HStem: -14 100<251 348.5> 497 100<251 333.5> 623 68<272.5 327.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 728 N 1 0 0 1 0 120
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: obreve
Encoding: 335 335
Width: 600
Flags: W
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 477 68<272.5 327.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 728 N 1 0 0 1 0 -26
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: Ohungarumlaut
Encoding: 336 336
Width: 600
Flags: HMW
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
331 765 m 2
229 656 l 2
219 645 209 639 200 639 c 0
182 639 165 657 165 676 c 0
165 688 166 690 186 712 c 2
288 822 l 2
300 834 306 838 317 838 c 0
335 838 351 821 351 801 c 0
351 791 345 780 331 765 c 2
495 765 m 2
393 656 l 2
383 645 373 639 364 639 c 0
346 639 329 657 329 676 c 0
329 688 330 689 350 712 c 1
452 822 l 2
464 834 470 838 481 838 c 0
499 838 515 821 515 801 c 0
515 791 510 781 495 765 c 2
EndSplineSet
EndChar
StartChar: ohungarumlaut
Encoding: 337 337
Width: 600
Flags: HMW
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
331 622 m 2
229 512 l 2
220 502 209 496 200 496 c 0
182 496 165 514 165 533 c 0
165 544 166 546 186 569 c 1
288 679 l 2
299 690 306 694 317 694 c 0
335 694 351 677 351 658 c 0
351 647 346 638 331 622 c 2
495 622 m 2
393 512 l 2
383 502 373 496 364 496 c 0
346 496 329 514 329 533 c 0
329 544 330 546 350 569 c 1
452 679 l 2
462 690 470 694 481 694 c 0
499 694 515 677 515 658 c 0
515 647 510 638 495 622 c 2
EndSplineSet
EndChar
StartChar: OE
Encoding: 338 338
Width: 600
Flags: W
HStem: 0 100<252 265 367 513> 0 188<556 572> 243 99<367 385> 483 100<252 265 367 493>
VStem: -20 100<272 304> 266 100<101 242 343 482> 266 218<243 342> 493 100<396 482> 513 99<101 144>
Fore
366 243 m 1
366 100 l 1
513 100 l 1
513 122 l 2
513 149 515 158 522 168 c 0
532 180 547 188 563 188 c 0
580 188 597 179 605 164 c 0
611 155 612 148 612 122 c 2
612 0 l 1
259 0 l 2
97 0 -20 122 -20 292 c 0
-20 461 96 583 259 583 c 2
593 583 l 1
593 418 l 2
593 391 591 382 584 372 c 0
574 360 559 352 543 352 c 0
526 352 510 361 500 376 c 0
495 384 493 395 493 418 c 2
493 483 l 1
366 483 l 1
366 342 l 1
385 342 l 1
387 378 404 397 434 397 c 0
452 397 468 388 477 373 c 0
483 364 484 357 484 331 c 2
484 253 l 2
484 226 482 218 475 208 c 0
465 195 450 187 434 187 c 0
405 187 386 208 385 243 c 1
366 243 l 1
266 100 m 1
266 483 l 1
215 482 185 474 155 452 c 0
110 419 80 354 80 291 c 0
80 224 115 155 166 124 c 0
194 107 220 100 266 100 c 1
EndSplineSet
EndChar
StartChar: oe
Encoding: 339 339
Width: 600
Flags: HMW
HStem: -16 100<149.5 195 422.5 458> 171 86<363 504> 349 101<149.5 195.5 422.5 444.5>
VStem: -11 100<180 252.5>
Fore
612 171 m 1
360 171 l 1
373 113 401 84 444 84 c 0
472 84 485 88 540 112 c 0
548 115 556 117 564 117 c 0
591 117 613 94 613 65 c 0
613 41 603 28 576 14 c 0
543 -2 478 -16 438 -16 c 0
381 -16 338 8 303 58 c 1
268 10 221 -16 171 -16 c 0
70 -16 -11 86 -11 212 c 0
-11 345 69 450 170 450 c 0
222 450 265 424 303 370 c 1
338 423 383 450 436 450 c 0
480 450 522 429 557 389 c 0
593 349 612 288 612 216 c 2
612 171 l 1
172 349 m 0
127 349 89 289 89 216 c 0
89 144 127 84 172 84 c 0
218 84 256 143 256 215 c 0
256 290 219 349 172 349 c 0
363 257 m 1
504 257 l 1
499 283 494 297 488 310 c 0
476 334 455 349 434 349 c 0
411 349 390 333 378 306 c 0
373 294 369 282 363 257 c 1
EndSplineSet
EndChar
StartChar: Racute
Encoding: 340 340
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
Fore
194 222 m 1
194 100 l 1
229 100 l 2
256 100 265 98 275 91 c 0
287 81 295 66 295 50 c 0
295 33 286 16 271 7 c 0
264 3 249 0 229 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
302 583 l 2
432 583 522 510 522 405 c 0
522 342 487 294 414 254 c 1
461 213 498 167 540 100 c 1
553 100 l 2
578 100 589 98 599 91 c 0
611 82 619 66 619 50 c 0
619 33 610 16 595 7 c 0
588 3 573 0 553 0 c 2
474 0 l 1
424 97 332 207 290 222 c 1
194 222 l 1
194 322 m 1
270 322 l 2
354 322 416 358 416 408 c 0
416 451 370 483 306 483 c 2
194 483 l 1
194 322 l 1
452 767 m 1
319 656 l 2
306 645 296 640 287 640 c 0
267 640 250 657 250 676 c 0
250 688 257 700 273 712 c 1
406 824 l 2
420 835 428 839 438 839 c 0
459 839 475 823 475 803 c 0
475 790 469 780 452 767 c 1
EndSplineSet
EndChar
StartChar: racute
Encoding: 341 341
Width: 600
Flags: W
HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<437 452>
VStem: 178 100<100 247>
DStem: 406 680 452 624 273 569 319 512
Fore
278 437 m 1
278 372 l 1
358 432 396 449 445 449 c 0
480 449 512 437 543 411 c 0
564 394 571 382 571 364 c 0
571 336 548 313 521 313 c 0
507 313 497 318 482 331 c 0
467 344 457 349 443 349 c 0
411 349 373 325 278 247 c 1
278 100 l 1
417 100 l 2
445 100 453 98 463 91 c 0
476 81 484 66 484 50 c 0
484 33 475 16 460 7 c 0
453 3 438 0 417 0 c 2
120 0 l 2
97 0 83 3 74 10 c 0
62 19 54 35 54 50 c 0
54 67 63 84 78 93 c 0
87 99 94 100 120 100 c 2
178 100 l 1
178 337 l 1
143 337 l 2
118 337 107 339 98 347 c 1
85 356 77 371 77 387 c 0
77 404 86 420 101 429 c 1
107 434 126 437 143 437 c 2
278 437 l 1
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
MinimumDistance: x27,-1
EndChar
StartChar: Rcommaaccent
Encoding: 342 342
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
Fore
194 222 m 1
194 100 l 1
229 100 l 2
256 100 265 98 275 91 c 0
287 81 295 66 295 50 c 0
295 33 286 16 271 7 c 0
264 3 249 0 229 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
302 583 l 2
432 583 522 510 522 405 c 0
522 342 487 294 414 254 c 1
461 213 498 167 540 100 c 1
553 100 l 2
578 100 589 98 599 91 c 0
611 82 619 66 619 50 c 0
619 33 610 16 595 7 c 0
588 3 573 0 553 0 c 2
474 0 l 1
424 97 332 207 290 222 c 1
194 222 l 1
194 322 m 1
270 322 l 2
354 322 416 358 416 408 c 0
416 451 370 483 306 483 c 2
194 483 l 1
194 322 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: rcommaaccent
Encoding: 343 343
Width: 600
Flags: W
HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447>
VStem: 178 100<100 247>
DStem: 277 -85 338 -126 195 -211 256 -252
Fore
278 437 m 1
278 372 l 1
358 432 396 449 445 449 c 0
480 449 512 437 543 411 c 0
564 394 571 382 571 364 c 0
571 336 548 313 521 313 c 0
507 313 497 318 482 331 c 0
467 344 457 349 443 349 c 0
411 349 373 325 278 247 c 1
278 100 l 1
417 100 l 2
445 100 453 98 463 91 c 0
476 81 484 66 484 50 c 0
484 33 475 16 460 7 c 0
453 3 438 0 417 0 c 2
120 0 l 2
97 0 83 3 74 10 c 0
62 19 54 35 54 50 c 0
54 67 63 84 78 93 c 0
87 99 94 100 120 100 c 2
178 100 l 1
178 337 l 1
143 337 l 2
118 337 107 339 98 347 c 1
85 356 77 371 77 387 c 0
77 404 86 420 101 429 c 1
107 434 126 437 143 437 c 2
278 437 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
MinimumDistance: x27,-1
EndChar
StartChar: Rcaron
Encoding: 344 344
Width: 600
Flags: HMW
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
Fore
194 222 m 1
194 100 l 1
229 100 l 2
256 100 265 98 275 91 c 0
287 81 295 66 295 50 c 0
295 33 286 16 271 7 c 0
264 3 249 0 229 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
302 583 l 2
432 583 522 510 522 405 c 0
522 342 487 294 414 254 c 1
461 213 498 167 540 100 c 1
553 100 l 2
578 100 589 98 599 91 c 0
611 82 619 66 619 50 c 0
619 33 610 16 595 7 c 0
588 3 573 0 553 0 c 2
474 0 l 1
424 97 332 207 290 222 c 1
194 222 l 1
194 322 m 1
270 322 l 2
354 322 416 358 416 408 c 0
416 451 370 483 306 483 c 2
194 483 l 1
194 322 l 1
301 729 m 1
413 826 l 1
425 835 432 839 442 839 c 0
460 839 476 822 476 804 c 0
476 792 472 785 461 776 c 2
452 768 l 1
301 640 l 1
149 768 l 2
127 787 125 790 125 803 c 0
125 822 141 839 160 839 c 0
169 839 176 835 188 826 c 1
301 729 l 1
EndSplineSet
EndChar
StartChar: rcaron
Encoding: 345 345
Width: 600
Flags: W
HStem: 0 100<101 177 279 435> 337 100<134 177> 349 100<432 447>
VStem: 178 100<100 247>
DStem: 169 625 208 682 321 497 321 586 433 682 472 625 321 586 321 497
Fore
278 437 m 1
278 372 l 1
358 432 396 449 445 449 c 0
480 449 512 437 543 411 c 0
564 394 571 382 571 364 c 0
571 336 548 313 521 313 c 0
507 313 497 318 482 331 c 0
467 344 457 349 443 349 c 0
411 349 373 325 278 247 c 1
278 100 l 1
417 100 l 2
445 100 453 98 463 91 c 0
476 81 484 66 484 50 c 0
484 33 475 16 460 7 c 0
453 3 438 0 417 0 c 2
120 0 l 2
97 0 83 3 74 10 c 0
62 19 54 35 54 50 c 0
54 67 63 84 78 93 c 0
87 99 94 100 120 100 c 2
178 100 l 1
178 337 l 1
143 337 l 2
118 337 107 339 98 347 c 1
85 356 77 371 77 387 c 0
77 404 86 420 101 429 c 1
107 434 126 437 143 437 c 2
278 437 l 1
321 586 m 1
433 682 l 2
445 693 452 696 462 696 c 0
480 696 496 679 496 660 c 0
496 649 492 641 481 632 c 2
472 625 l 1
321 497 l 1
169 625 l 2
147 643 145 647 145 660 c 0
145 679 161 696 180 696 c 0
189 696 195 693 208 682 c 2
321 586 l 1
EndSplineSet
MinimumDistance: x32,-1
EndChar
StartChar: Sacute
Encoding: 346 346
Width: 600
Flags: HMW
HStem: -14 100<282 339> 497 100<267.5 324.5>
VStem: 82 104<410.5 442.5> 434 104<140.5 172.5>
Fore
517 531 m 2
517 443 l 2
517 415 515 407 508 397 c 0
498 384 483 376 468 376 c 0
454 376 440 382 432 390 c 0
425 398 425 398 418 430 c 0
409 470 361 497 299 497 c 0
236 497 186 464 186 421 c 0
186 400 201 377 223 366 c 0
243 356 248 354 323 340 c 0
410 324 448 310 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 230 293 242 c 0
228 253 196 263 164 281 c 0
113 310 82 363 82 420 c 0
82 521 175 597 299 597 c 0
350 597 394 586 429 564 c 1
439 589 448 597 468 597 c 0
485 597 502 588 510 574 c 0
516 565 517 557 517 531 c 2
452 767 m 1
319 656 l 2
306 645 296 640 287 640 c 0
267 640 250 657 250 676 c 0
250 688 257 700 273 712 c 1
406 824 l 2
420 835 428 839 438 839 c 0
459 839 475 823 475 803 c 0
475 790 469 780 452 767 c 1
EndSplineSet
EndChar
StartChar: sacute
Encoding: 347 347
Width: 600
Flags: HMW
HStem: -16 100<275.5 332> 350 100<275.5 322>
VStem: 92 110<310.5 324> 417 110<115.5 133.5>
Fore
409 312 m 2
404 321 l 1
376 341 343 350 301 350 c 0
250 350 202 333 202 315 c 0
202 306 212 297 228 291 c 0
242 286 248 285 312 276 c 0
387 266 427 255 457 238 c 0
501 214 527 171 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 345 173 291 179 c 0
151 194 92 234 92 313 c 0
92 393 178 450 298 450 c 0
347 450 388 442 427 424 c 1
435 443 444 450 459 450 c 0
491 450 506 430 506 384 c 2
506 347 l 2
506 321 504 311 497 301 c 0
487 289 471 281 456 281 c 0
435 281 421 290 409 312 c 2
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
EndChar
StartChar: Scircumflex
Encoding: 348 348
Width: 600
Flags: W
HStem: -14 100<282 339> 497 100<267.5 324.5>
VStem: 82 104<410.5 442.5> 434 104<140.5 172.5>
DStem: 301 733 301 822 413 636 452 693 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636
Ref: 710 N 1 0 0 1 -0 126
Ref: 83 N 1 0 0 1 0 0
EndChar
StartChar: scircumflex
Encoding: 349 349
Width: 600
Flags: W
HStem: -16 100<275.5 332> 350 100<275.5 322>
VStem: 92 110<310.5 324> 417 110<115.5 133.5>
DStem: 301 587 301 676 413 490 452 547 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490
Ref: 710 N 1 0 0 1 -0 -20
Ref: 115 N 1 0 0 1 0 0
EndChar
StartChar: Scedilla
Encoding: 350 350
Width: 600
Flags: HMW
HStem: -229 70<292.5 312.5> -100 186<281.5 300.5> 497 100<266.5 323.5>
VStem: 82 103<410.5 442.5> 262 70<-42 -13> 337 70<-142 -123.5> 434 104<140.5 172.5>
Fore
332 -13 m 1
332 -42 l 1
383 -52 407 -81 407 -132 c 0
407 -189 362 -229 299 -229 c 0
273 -229 232 -218 208 -205 c 0
189 -194 180 -182 180 -166 c 0
180 -147 196 -131 215 -131 c 0
223 -131 225 -132 244 -142 c 0
262 -152 284 -159 301 -159 c 0
324 -159 337 -150 337 -134 c 0
337 -113 317 -100 284 -100 c 0
279 -100 274 -100 262 -102 c 1
262 -11 l 1
230 -7 185 8 153 25 c 1
136 5 129 1 112 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 162 151 c 0
173 115 235 86 301 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
376 226 361 230 293 242 c 0
227 253 196 263 164 281 c 0
113 310 82 363 82 420 c 0
82 521 175 597 298 597 c 0
349 597 394 586 429 564 c 1
439 589 448 597 468 597 c 0
485 597 502 588 510 574 c 0
516 565 517 557 517 531 c 2
517 443 l 2
517 415 515 407 508 397 c 0
498 384 483 376 467 376 c 0
454 376 440 382 431 390 c 1
424 398 424 398 417 430 c 0
409 470 361 497 298 497 c 0
235 497 185 464 185 421 c 0
185 400 200 377 222 366 c 0
242 356 248 354 322 340 c 0
409 324 447 310 479 285 c 0
519 253 538 212 538 160 c 0
538 62 460 -4 332 -13 c 1
EndSplineSet
EndChar
StartChar: scedilla
Encoding: 351 351
Width: 600
Flags: HMW
HStem: -229 70<292.5 312.5> -100 184<281.5 300.5> 350 100<275.5 322>
VStem: 92 110<310.5 324> 262 70<-42 -15> 337 70<-142 -123.5> 417 110<115.5 133.5>
Fore
332 -15 m 1
332 -42 l 1
383 -52 407 -81 407 -132 c 0
407 -189 362 -229 300 -229 c 0
273 -229 232 -218 208 -205 c 0
189 -194 180 -182 180 -166 c 0
180 -147 196 -131 215 -131 c 0
223 -131 225 -132 244 -142 c 0
262 -152 284 -159 301 -159 c 0
324 -159 337 -150 337 -134 c 0
337 -113 317 -100 284 -100 c 0
279 -100 274 -100 262 -102 c 1
262 -14 l 1
219 -10 184 -1 156 13 c 1
144 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 123 167 c 0
150 167 166 153 174 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 345 173 290 179 c 0
151 194 92 234 92 313 c 0
92 393 178 450 298 450 c 0
346 450 387 442 426 424 c 1
435 443 443 450 459 450 c 0
491 450 506 430 506 384 c 2
506 347 l 2
506 321 504 311 497 301 c 0
487 289 471 281 456 281 c 0
432 281 422 289 404 321 c 1
376 341 343 350 301 350 c 0
250 350 202 333 202 315 c 0
202 306 212 297 228 291 c 0
242 286 248 285 312 276 c 0
388 265 427 255 457 238 c 0
501 213 527 171 527 125 c 0
527 50 451 -5 332 -15 c 1
EndSplineSet
EndChar
StartChar: Scaron
Encoding: 352 352
Width: 600
Flags: W
HStem: -14 100<286 324> 1 198<110 115> 497 100<286 318>
VStem: 82 104<418 431> 434 104<153 164>
DStem: 162 748 201 806 314 620 314 709 426 806 465 748 314 709 314 620
Fore
517 531 m 2
517 443 l 2
517 415 515 407 508 397 c 0
498 384 483 376 468 376 c 0
454 376 440 382 432 390 c 0
425 398 425 398 418 430 c 0
409 470 361 497 299 497 c 0
236 497 186 464 186 421 c 0
186 400 201 377 223 366 c 0
243 356 248 354 323 340 c 0
410 324 448 310 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 230 293 242 c 0
228 253 196 263 164 281 c 0
113 310 82 363 82 420 c 0
82 521 175 597 299 597 c 0
350 597 394 586 429 564 c 1
439 589 448 597 468 597 c 0
485 597 502 588 510 574 c 0
516 565 517 557 517 531 c 2
314 709 m 1
426 806 l 1
438 815 445 819 455 819 c 0
473 819 489 802 489 784 c 0
489 772 485 765 474 756 c 2
465 748 l 1
314 620 l 1
162 748 l 2
140 767 138 770 138 783 c 0
138 802 154 819 173 819 c 0
182 819 189 815 201 806 c 1
314 709 l 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: scaron
Encoding: 353 353
Width: 600
Flags: W
HStem: -16 100<281 314> 1 166<121 135> 350 100<281 314>
VStem: 92 110<311 317> 417 110<122 129>
DStem: 158 605 197 662 310 477 310 566 422 662 461 605 310 566 310 477
Fore
409 312 m 2
404 321 l 1
376 341 343 350 301 350 c 0
250 350 202 333 202 315 c 0
202 306 212 297 228 291 c 0
242 286 248 285 312 276 c 0
387 266 427 255 457 238 c 0
501 214 527 171 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 345 173 291 179 c 0
151 194 92 234 92 313 c 0
92 393 178 450 298 450 c 0
347 450 388 442 427 424 c 1
435 443 444 450 459 450 c 0
491 450 506 430 506 384 c 2
506 347 l 2
506 321 504 311 497 301 c 0
487 289 471 281 456 281 c 0
435 281 421 290 409 312 c 2
310 566 m 1
422 662 l 2
434 673 441 676 451 676 c 0
469 676 485 659 485 640 c 0
485 629 481 621 470 612 c 2
461 605 l 1
310 477 l 1
158 605 l 2
136 623 134 627 134 640 c 0
134 659 150 676 169 676 c 0
178 676 184 673 197 662 c 2
310 566 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni0162
Encoding: 354 354
Width: 600
Flags: W
HStem: -229 70<298.5 318.5> 0 100<184 249 287.5 307 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 268 70<-41 0> 343 70<-142 -123.5> 458 100<390 483 483 483>
Ref: 184 N 1 0 0 1 6 0
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: uni0163
Encoding: 355 355
Width: 600
Flags: W
HStem: -245 70<270.5 290.5> -16 100<259.5 279 281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 114 100<130.5 141 141 337 437 525> 240 70<-57 -16> 315 70<-158 -139.5>
Ref: 184 N 1 0 0 1 -22 -16
Ref: 116 N 1 0 0 1 0 0
EndChar
StartChar: Tcaron
Encoding: 356 356
Width: 600
Flags: HMW
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Fore
349 483 m 1
349 100 l 1
415 100 l 2
442 100 450 98 460 91 c 0
473 81 481 66 481 50 c 0
481 33 472 16 457 7 c 0
450 3 435 0 415 0 c 2
184 0 l 2
161 0 148 3 139 10 c 0
126 19 118 35 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 184 100 c 2
249 100 l 1
249 483 l 1
142 483 l 1
142 390 l 2
142 363 140 355 133 345 c 0
123 332 108 324 92 324 c 0
75 324 58 333 49 348 c 0
44 357 42 367 42 390 c 2
42 583 l 1
558 583 l 1
558 390 l 2
558 362 557 355 549 345 c 0
539 332 524 324 508 324 c 0
491 324 474 334 465 348 c 0
460 357 458 367 458 390 c 2
458 483 l 1
349 483 l 1
301 729 m 1
413 826 l 1
425 835 432 839 442 839 c 0
460 839 476 822 476 804 c 0
476 792 472 785 461 776 c 2
452 768 l 1
301 640 l 1
149 768 l 2
127 787 125 790 125 803 c 0
125 822 141 839 160 839 c 0
169 839 176 835 188 826 c 1
301 729 l 1
EndSplineSet
EndChar
StartChar: tcaron
Encoding: 357 357
Width: 600
Flags: W
HStem: -16 100<285 317> 337 100<61 114 215 365>
VStem: 114 100<122 337 438 544>
DStem: 456 611 517 570 374 486 435 445
Fore
214 437 m 1
366 437 l 1
363 444 362 447 362 453 c 0
362 462 366 473 374 486 c 2
456 611 l 1
470 631 478 637 494 637 c 0
514 637 530 621 530 600 c 0
530 594 525 583 517 570 c 2
435 445 l 2
432 441 431 439 427 434 c 1
449 426 461 409 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
214 141 l 2
214 120 216 111 222 104 c 0
234 91 262 84 300 84 c 0
353 84 401 95 446 118 c 0
463 127 470 129 481 129 c 0
508 129 529 106 529 78 c 0
529 54 517 41 479 24 c 0
430 1 351 -16 299 -16 c 0
185 -16 114 37 114 122 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
114 525 l 2
114 551 116 561 124 571 c 0
133 583 148 591 164 591 c 0
181 591 198 582 207 567 c 0
213 558 214 551 214 525 c 2
214 437 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: Tbar
Encoding: 358 358
Width: 600
Flags: W
HStem: 0 100<170 248 350 426> 483 100<142 248 350 458>
VStem: 42 100<367.667 482> 249 100<100 482> 458 100<367.667 482>
Fore
349 483 m 1
349 100 l 1
415 100 l 2
442 100 450 98 460 91 c 0
473 81 481 66 481 50 c 0
481 33 472 16 457 7 c 0
450 3 435 0 415 0 c 2
184 0 l 2
161 0 148 3 139 10 c 0
126 19 118 35 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 184 100 c 2
249 100 l 1
249 483 l 1
142 483 l 1
142 390 l 2
142 363 140 355 133 345 c 0
123 332 108 324 92 324 c 0
75 324 58 333 49 348 c 0
44 357 42 367 42 390 c 2
42 583 l 1
558 583 l 1
558 390 l 2
558 362 557 355 549 345 c 0
539 332 524 324 508 324 c 0
491 324 474 334 465 348 c 0
460 357 458 367 458 390 c 2
458 483 l 1
349 483 l 1
EndSplineSet
MinimumDistance: x21,-1
EndChar
StartChar: tbar
Encoding: 359 359
Width: 600
Flags: W
HStem: -16 100<285 317> 337 100<61 114 215 413>
VStem: 114 100<122 337 437 544>
Fore
214 337 m 1
214 141 l 2
214 120 216 111 222 104 c 0
234 91 262 84 300 84 c 0
353 84 401 95 446 118 c 0
463 127 470 129 481 129 c 0
508 129 529 106 529 78 c 0
529 54 517 41 479 24 c 0
430 1 351 -16 299 -16 c 0
185 -16 114 37 114 122 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
114 525 l 2
114 551 116 561 124 571 c 0
133 583 148 591 164 591 c 0
181 591 198 582 207 567 c 0
213 558 214 551 214 525 c 2
214 437 l 1
395 437 l 2
422 437 430 435 441 428 c 1
453 418 461 403 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: Utilde
Encoding: 360 360
Width: 600
Flags: W
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 623 69<371 378> 687 69<224 229>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Ref: 732 N 1 0 0 1 0 100
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: utilde
Encoding: 361 361
Width: 600
Flags: W
HStem: -13 100<253 300.5> 337 100<375 410> 477 69<363 370> 541 69<216 221>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Ref: 732 N 1 0 0 1 -8 -46
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: Umacron
Encoding: 362 362
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 689 80<178 422>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
178 769 m 2
422 769 l 2
445 769 457 766 464 758 c 0
470 751 475 737 475 729 c 0
475 704 455 689 422 689 c 2
178 689 l 2
153 689 145 691 136 701 c 0
130 709 125 721 125 729 c 0
125 754 144 769 178 769 c 2
EndSplineSet
EndChar
StartChar: umacron
Encoding: 363 363
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410> 546 80<178 422>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
178 626 m 2
422 626 l 2
445 626 457 623 464 615 c 0
470 608 475 594 475 586 c 0
475 561 455 546 422 546 c 2
178 546 l 2
153 546 145 548 136 558 c 0
130 566 125 578 125 586 c 0
125 611 144 626 178 626 c 2
EndSplineSet
EndChar
StartChar: Ubreve
Encoding: 364 364
Width: 600
Flags: W
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 623 68<272.5 327.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Ref: 728 N 1 0 0 1 0 120
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: ubreve
Encoding: 365 365
Width: 600
Flags: W
HStem: -13 100<253 300.5> 337 100<375 410> 477 68<264.5 319.5>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Ref: 728 N 1 0 0 1 -8 -26
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: Uring
Encoding: 366 366
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 630 54<281 318.5> 818 53<281 319>
VStem: 10 53 71 100<205 483> 203 53 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
300 871 m 0
368 871 423 816 423 749 c 0
423 685 366 630 300 630 c 0
233 630 177 685 177 751 c 0
177 816 233 871 300 871 c 0
300 818 m 0
262 818 230 787 230 751 c 0
230 715 262 684 300 684 c 0
337 684 370 715 370 750 c 0
370 787 338 818 300 818 c 0
EndSplineSet
EndChar
StartChar: uring
Encoding: 367 367
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410> 486 54<281 318.5> 674 53<281 319>
VStem: 13 53 95 100<156 159 159 338 338 338> 206 53 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
300 727 m 0
368 727 423 672 423 605 c 0
423 541 366 486 300 486 c 0
233 486 177 541 177 607 c 0
177 672 233 727 300 727 c 0
300 674 m 0
262 674 230 643 230 607 c 0
230 571 262 540 300 540 c 0
337 540 370 571 370 606 c 0
370 643 338 674 300 674 c 0
EndSplineSet
EndChar
StartChar: Uhungarumlaut
Encoding: 368 368
Width: 600
Flags: HMW
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
331 765 m 2
229 656 l 2
219 645 209 639 200 639 c 0
182 639 165 657 165 676 c 0
165 688 166 690 186 712 c 2
288 822 l 2
300 834 306 838 317 838 c 0
335 838 351 821 351 801 c 0
351 791 345 780 331 765 c 2
495 765 m 2
393 656 l 2
383 645 373 639 364 639 c 0
346 639 329 657 329 676 c 0
329 688 330 689 350 712 c 1
452 822 l 2
464 834 470 838 481 838 c 0
499 838 515 821 515 801 c 0
515 791 510 781 495 765 c 2
EndSplineSet
EndChar
StartChar: uhungarumlaut
Encoding: 369 369
Width: 600
Flags: HMW
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
311 622 m 2
209 512 l 2
200 502 189 496 180 496 c 0
162 496 145 514 145 533 c 0
145 544 146 546 166 569 c 1
268 679 l 2
279 690 286 694 297 694 c 0
315 694 331 677 331 658 c 0
331 647 326 638 311 622 c 2
475 622 m 2
373 512 l 2
363 502 353 496 344 496 c 0
326 496 309 514 309 533 c 0
309 544 310 546 330 569 c 1
432 679 l 2
442 690 450 694 461 694 c 0
479 694 495 677 495 658 c 0
495 647 490 638 475 622 c 2
EndSplineSet
EndChar
StartChar: Uogonek
Encoding: 370 370
Width: 600
Flags: HMW
HStem: -208 76<371 385> -15 100<280 304> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 277 78<-119 -97.5> 429 100<196 205 205 483>
Fore
529 483 m 1
529 205 l 2
529 132 508 89 441 26 c 0
384 -27 355 -74 355 -113 c 0
355 -125 363 -132 379 -132 c 0
391 -132 405 -127 430 -114 c 0
439 -109 444 -108 452 -108 c 0
473 -108 490 -125 490 -146 c 0
490 -158 483 -171 473 -178 c 0
450 -195 406 -208 371 -208 c 0
313 -208 277 -174 277 -119 c 0
277 -76 291 -51 338 -11 c 1
321 -14 308 -15 300 -15 c 0
260 -15 212 -2 179 18 c 0
108 61 71 125 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 85 300 85 c 0
371 85 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
551 583 559 581 570 574 c 0
583 564 590 549 590 533 c 0
590 501 569 483 529 483 c 1
EndSplineSet
EndChar
StartChar: uogonek
Encoding: 371 371
Width: 600
Flags: W
HStem: -208 76<450 461> -13 100<269 285> 338 99<79 95 356 409>
VStem: 95 100<144 337> 357 77<-118 -106> 410 100<155 337>
Fore
510 437 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 28 563 17 534 1 c 0
480 -29 434 -81 434 -112 c 0
434 -125 443 -132 458 -132 c 0
470 -132 481 -128 509 -114 c 0
519 -109 524 -108 531 -108 c 0
553 -108 570 -125 570 -146 c 0
570 -164 559 -178 535 -189 c 0
508 -201 478 -208 451 -208 c 0
393 -208 357 -174 357 -119 c 0
357 -69 378 -38 436 0 c 1
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 338 l 1
79 338 l 1
68 337 l 2
38 335 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 339 339 330 347 c 1
317 356 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: Wcircumflex
Encoding: 372 372
Width: 600
Flags: W
HStem: 0 20 483 100<139 139 139 187 413 466>
DStem: 301 733 301 822 413 636 452 693 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636
Ref: 710 N 1 0 0 1 -0 126
Ref: 87 N 1 0 0 1 0 0
EndChar
StartChar: wcircumflex
Encoding: 373 373
Width: 600
Flags: W
HStem: 0 20 417 20<66 158 158 171 441 534 534 547>
DStem: 301 587 301 676 413 490 452 547 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490
Ref: 710 N 1 0 0 1 -0 -20
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: Ycircumflex
Encoding: 374 374
Width: 600
Flags: W
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 250 100<100 245>
DStem: 301 733 301 822 413 636 452 693 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636 301 733 301 822 413 636 452 693 301 822 301 733 149 693 188 636
Ref: 710 N 1 0 0 1 -0 126
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: ycircumflex
Encoding: 375 375
Width: 600
Flags: W
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
DStem: 301 587 301 676 413 490 452 547 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490 301 587 301 676 413 490 452 547 301 676 301 587 149 547 188 490
Ref: 710 N 1 0 0 1 -0 -20
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: Ydieresis
Encoding: 376 376
Width: 600
Flags: HMW
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 21 120 250 100<100 245>
Fore
350 245 m 1
350 100 l 1
415 100 l 2
443 100 451 98 461 91 c 0
474 81 482 66 482 50 c 0
482 33 473 16 458 7 c 0
451 3 436 0 415 0 c 2
185 0 l 2
161 0 148 3 139 10 c 0
126 19 118 34 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 185 100 c 2
250 100 l 1
250 245 l 1
85 483 l 1
44 483 21 501 21 533 c 0
21 560 38 578 67 581 c 0
79 583 80 583 88 583 c 2
177 583 l 2
204 583 213 581 223 574 c 0
235 564 243 549 243 533 c 0
243 510 231 495 205 484 c 1
300 348 l 1
394 484 l 1
367 494 354 510 354 533 c 0
354 550 363 567 378 576 c 0
387 582 396 583 421 583 c 2
513 583 l 2
540 583 549 581 558 574 c 0
572 564 579 549 579 533 c 0
579 502 551 479 516 483 c 2
514 483 l 1
350 245 l 1
196 798 m 0
230 798 256 771 256 737 c 0
256 705 229 678 196 678 c 0
163 678 136 705 136 738 c 0
136 771 163 798 196 798 c 0
404 798 m 0
438 798 464 771 464 737 c 0
464 705 437 678 404 678 c 0
371 678 344 705 344 738 c 0
344 771 371 798 404 798 c 0
EndSplineSet
EndChar
StartChar: Zacute
Encoding: 377 377
Width: 600
Flags: HMW
HStem: 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
Fore
201 100 m 1
427 100 l 1
427 172 l 2
427 197 429 208 436 218 c 0
446 230 461 238 477 238 c 0
494 238 511 229 520 214 c 0
526 205 527 198 527 172 c 2
527 0 l 1
73 0 l 1
73 100 l 1
375 483 l 1
196 483 l 1
196 413 l 2
196 386 194 377 187 368 c 0
177 355 162 347 146 347 c 0
129 347 113 356 103 371 c 0
98 380 96 388 96 413 c 2
96 583 l 1
504 583 l 1
504 486 l 1
201 100 l 1
452 767 m 1
319 656 l 2
306 645 296 640 287 640 c 0
267 640 250 657 250 676 c 0
250 688 257 700 273 712 c 1
406 824 l 2
420 835 428 839 438 839 c 0
459 839 475 823 475 803 c 0
475 790 469 780 452 767 c 1
EndSplineSet
EndChar
StartChar: zacute
Encoding: 378 378
Width: 600
Flags: HMW
HStem: 0 100<244 419> 337 100<197 346 197 197>
Fore
244 100 m 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
518 121 519 114 519 88 c 2
519 0 l 1
85 0 l 1
85 83 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
244 100 l 1
452 624 m 1
319 512 l 2
304 500 297 496 287 496 c 0
267 496 250 513 250 532 c 0
250 545 257 556 273 569 c 2
406 680 l 2
422 693 427 696 438 696 c 0
459 696 475 680 475 659 c 0
475 647 469 637 452 624 c 1
EndSplineSet
EndChar
StartChar: Zdotaccent
Encoding: 379 379
Width: 600
Flags: HMW
HStem: 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
Fore
201 100 m 1
427 100 l 1
427 172 l 2
427 197 429 208 436 218 c 0
446 230 461 238 477 238 c 0
494 238 511 229 520 214 c 0
526 205 527 198 527 172 c 2
527 0 l 1
73 0 l 1
73 100 l 1
375 483 l 1
196 483 l 1
196 413 l 2
196 386 194 377 187 368 c 0
177 355 162 347 146 347 c 0
129 347 113 356 103 371 c 0
98 380 96 388 96 413 c 2
96 583 l 1
504 583 l 1
504 486 l 1
201 100 l 1
300 798 m 0
334 798 360 771 360 737 c 0
360 705 333 678 300 678 c 0
267 678 240 705 240 738 c 0
240 771 267 798 300 798 c 0
EndSplineSet
EndChar
StartChar: zdotaccent
Encoding: 380 380
Width: 600
Flags: HMW
HStem: 0 100<244 419> 337 100<197 346 197 197>
Fore
244 100 m 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
518 121 519 114 519 88 c 2
519 0 l 1
85 0 l 1
85 83 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
244 100 l 1
300 654 m 0
334 654 360 627 360 593 c 0
360 561 333 534 300 534 c 0
267 534 240 561 240 594 c 0
240 627 267 654 300 654 c 0
EndSplineSet
EndChar
StartChar: Zcaron
Encoding: 381 381
Width: 600
Flags: HMW
HStem: 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
Fore
201 100 m 1
427 100 l 1
427 172 l 2
427 197 429 208 436 218 c 0
446 230 461 238 477 238 c 0
494 238 511 229 520 214 c 0
526 205 527 198 527 172 c 2
527 0 l 1
73 0 l 1
73 100 l 1
375 483 l 1
196 483 l 1
196 413 l 2
196 386 194 377 187 368 c 0
177 355 162 347 146 347 c 0
129 347 113 356 103 371 c 0
98 380 96 388 96 413 c 2
96 583 l 1
504 583 l 1
504 486 l 1
201 100 l 1
300 699 m 1
412 796 l 1
424 805 431 809 441 809 c 0
459 809 475 792 475 774 c 0
475 762 471 755 460 746 c 2
451 738 l 1
300 610 l 1
148 738 l 2
126 757 124 760 124 773 c 0
124 792 140 809 159 809 c 0
168 809 175 805 187 796 c 1
300 699 l 1
EndSplineSet
EndChar
StartChar: zcaron
Encoding: 382 382
Width: 600
Flags: W
HStem: 0 100<245 419> 0 154<461 478> 337 100<197 345>
VStem: 85 434<1 83> 97 100<320 336> 97 409<356 436>
DStem: 150 595 189 652 302 467 302 556 346 337 506 356 85 83 244 100 414 652 453 595 302 556 302 467
Fore
244 100 m 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
518 121 519 114 519 88 c 2
519 0 l 1
85 0 l 1
85 83 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
244 100 l 1
302 556 m 1
414 652 l 2
426 663 433 666 443 666 c 0
461 666 477 649 477 630 c 0
477 619 473 611 462 602 c 2
453 595 l 1
302 467 l 1
150 595 l 2
128 613 126 617 126 630 c 0
126 649 142 666 161 666 c 0
170 666 176 663 189 652 c 2
302 556 l 1
EndSplineSet
MinimumDistance: x16,-1
EndChar
StartChar: longs
Encoding: 383 383
Width: 600
Flags: W
HStem: 0 100<123 199 300 443> 337 100<139 199> 523 100<379 395>
VStem: 199 100<100 337 437 480>
Fore
299 100 m 1
438 100 l 2
465 100 474 98 484 91 c 0
496 81 504 66 504 50 c 0
504 33 495 17 480 7 c 0
473 3 458 0 438 0 c 2
141 0 l 2
118 0 104 3 95 10 c 0
83 19 75 35 75 50 c 0
75 67 84 84 99 93 c 0
108 99 115 100 141 100 c 2
199 100 l 1
199 337 l 1
152 337 l 2
128 337 116 339 107 347 c 1
94 356 86 371 86 387 c 0
86 404 95 421 110 430 c 0
119 436 126 437 153 437 c 2
199 437 l 1
199 474 l 2
199 566 273 623 392 623 c 0
434 623 497 616 529 607 c 0
556 600 571 583 571 560 c 0
571 531 550 509 524 509 c 0
518 509 508 510 496 512 c 0
462 518 414 523 383 523 c 0
326 523 299 507 299 474 c 2
299 100 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni0180
Encoding: 384 384
Width: 600
Flags: W
HStem: -14 100<312 344> 0 100<40 73> 351 100<312 344> 524 100<40 73 175 280>
VStem: -8 347<564.147 578> 74 100<210 226 402 524> 471 100<210 226>
Fore
323 351 m 0
274 351 241 339 213 311 c 0
188 286 174 253 174 220 c 0
174 141 235 86 323 86 c 0
370 86 404 99 432 126 c 0
457 151 471 185 471 219 c 0
471 252 456 286 432 311 c 1
403 339 371 351 323 351 c 0
58 624 m 2
273 624 l 2
299 624 309 622 319 615 c 0
332 605 339 590 339 574 c 0
339 557 330 540 315 531 c 0
307 526 295 524 273 524 c 2
174 524 l 1
174 401 l 1
217 435 264 451 324 451 c 0
399 451 455 430 501 386 c 0
547 342 571 284 571 218 c 0
571 153 547 96 501 51 c 0
455 7 399 -14 325 -14 c 0
266 -14 226 -1 174 35 c 1
174 0 l 1
58 0 l 2
34 0 21 3 12 9 c 0
0 19 -8 34 -8 50 c 0
-8 67 1 84 16 93 c 0
25 99 33 100 58 100 c 2
74 100 l 1
74 524 l 1
58 524 l 2
32 524 22 526 12 533 c 0
0 543 -8 558 -8 574 c 0
-8 591 1 608 16 617 c 0
25 623 34 624 58 624 c 2
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni0181
Encoding: 385 385
Width: 600
Flags: W
HStem: 0 100<62 93 195 382> 242 100<195 328> 483 100<56 93 195 334>
VStem: -66 100<473 476> 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162>
Fore
194 342 m 1
307 342 l 2
379 342 428 373 428 419 c 0
428 459 390 483 327 483 c 2
194 483 l 1
194 342 l 1
194 100 m 1
369 100 l 2
437 100 471 118 471 154 c 0
471 178 454 204 428 220 c 0
403 235 371 242 329 242 c 2
194 242 l 1
194 100 l 1
94 483 m 1
79 483 l 2
40 483 34 479 34 474 c 8
34 468 37 463 41 461 c 0
64 446 69 414 54 391 c 0
38 369 6 362 -16 378 c 0
-42 398 -66 427 -66 474 c 0
-66 559 10 583 79 583 c 2
332 583 l 1
445 583 528 513 528 418 c 0
528 372 509 339 465 305 c 1
537 269 571 223 571 160 c 0
571 64 492 0 374 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
EndSplineSet
MinimumDistance: x22,-1
EndChar
StartChar: uni0182
Encoding: 386 386
Width: 600
Flags: W
HStem: 0 100<68 102 202 390> 242 100<202 390> 483 100<68 102 202 458>
VStem: 102 100<100 241 341 483> 458 100<415 483> 475 104<159 179>
Ref: 1041 N 1 0 0 1 0 0
EndChar
StartChar: uni0183
Encoding: 387 387
Width: 600
Flags: W
HStem: -14 100<312 344> 0 100<40 73> 351 100<312 344> 524 100<40 73 175 488>
VStem: 74 100<210 226 402 524> 471 100<210 226>
Fore
323 351 m 0
274 351 241 339 213 311 c 0
188 286 174 253 174 220 c 0
174 141 235 86 323 86 c 0
370 86 404 99 432 126 c 0
457 151 471 185 471 219 c 0
471 252 456 286 432 311 c 1
403 339 371 351 323 351 c 0
58 624 m 2
473 624 l 2
499 624 509 622 519 615 c 0
532 605 539 590 539 574 c 0
539 557 530 540 515 531 c 0
507 526 495 524 473 524 c 2
174 524 l 1
174 401 l 1
217 435 264 451 324 451 c 0
399 451 455 430 501 386 c 0
547 342 571 284 571 218 c 0
571 153 547 96 501 51 c 0
455 7 399 -14 325 -14 c 0
266 -14 226 -1 174 35 c 1
174 0 l 1
58 0 l 2
34 0 21 3 12 9 c 0
0 19 -8 34 -8 50 c 0
-8 67 1 84 16 93 c 0
25 99 33 100 58 100 c 2
74 100 l 1
74 524 l 1
58 524 l 2
32 524 22 526 12 533 c 0
0 543 -8 558 -8 574 c 0
-8 591 1 608 16 617 c 0
25 623 34 624 58 624 c 2
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni0186
Encoding: 390 390
Width: 600
Flags: W
HStem: -14 100<269 308.488> 0 216<96 100> 497 100<244 292>
VStem: 464 100<261 341>
Ref: 67 N -1 0 0 -1 597 583
EndChar
StartChar: uni0187
Encoding: 391 391
Width: 600
Flags: W
HStem: -14 100<305 353> 497 100<288.512 328> 579 100<557 563>
VStem: 33 100<242 322>
Fore
449.162 562.135 m 1
454.143 616.503 485.957 679 558 679 c 0
605 679 634 655 654 629 c 0
670 607 663 575 641 559 c 0
618 544 586 549 571 572 c 0
569 576 564 579 558 579 c 16
553 579 549 573 549 534 c 2
549 433 l 2
549 408 547 397 540 388 c 0
530 375 515 367 499 367 c 0
486 367 472 373 464 381 c 0
456 389 454 396 450 420 c 0
445 444 435 457 406 473 c 0
379 488 343 497 309 497 c 0
207 497 133 420 133 315 c 2
133 251 l 2
133 151 210 86 330 86 c 0
375 86 415 94 440 109 c 0
451 115 451 115 478 143 c 0
489 154 501 159 514 159 c 0
541 159 564 136 564 109 c 0
564 86 545 60 511 36 c 0
467 4 399 -14 327 -14 c 0
157 -14 33 97 33 249 c 2
33 315 l 2
33 475 151 597 305 597 c 0
357 597 392 589 447 563 c 2
449.162 562.135 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: uni0188
Encoding: 392 392
Width: 600
Flags: W
HStem: -16 100<309 358> 350 100<294 332> 446 100<548 551>
VStem: 54 100<192 224>
Fore
439.948 426.606 m 1
444.163 481.545 475.838 546 549 546 c 0
596 546 625 522 645 496 c 0
661 474 654 442 632 426 c 0
609 411 577 416 562 439 c 0
560 443 555 446 549 446 c 16
544 446 540 440 540 401 c 2
540 307 l 2
540 281 538 271 531 262 c 0
521 249 506 241 490 241 c 0
477 241 462 247 454 255 c 1
446 261 444 267 439 289 c 0
435 307 429 316 416 325 c 0
390 341 354 350 310 350 c 0
259 350 222 336 194 307 c 0
168 281 154 245 154 207 c 0
154 125 213 84 330 84 c 0
370 84 411 89 435 97 c 0
454 103 459 107 485 128 c 0
494 136 503 140 515 140 c 0
542 140 565 117 565 89 c 0
565 63 542 37 501 16 c 0
460 -4 396 -16 323 -16 c 0
226 -16 164 5 115 53 c 0
75 93 54 146 54 207 c 0
54 350 159 450 310 450 c 0
360.334 450 403.65 442.202 439.948 426.606 c 1
EndSplineSet
MinimumDistance: x15,-1
EndChar
StartChar: uni0189
Encoding: 393 393
Width: 600
Flags: W
HStem: 0 100<67.5 74 174 284> 243 100<67 74 174 248> 483 100<174 174 174 284>
VStem: 74 100<100 243 343 483> 450 100<261 305>
Ref: 208 N 1 0 0 1 0 0
EndChar
StartChar: uni018A
Encoding: 394 394
Width: 600
Flags: W
HStem: 0 100<72 73 175 312> 483 100<40 73 175 296>
VStem: -88 100<473 476> 74 100<101 482> 450 100<240 320>
Fore
174 100 m 1
285 100 l 2
345 100 378 112 409 144 c 1
437 175 450 210 450 261 c 2
450 307 l 2
450 354 434 398 405 432 c 0
375 467 337 483 284 483 c 2
174 483 l 1
174 100 l 1
57 583 m 2
292 583 l 2
438 583 550 462 550 305 c 2
550 258 l 2
550 185 526 123 480 75 c 0
431 23 371 0 284 0 c 2
80 0 l 2
56 0 43 3 34 10 c 0
21 19 13 35 13 50 c 0
13 82 36 100 74 100 c 1
74 483 l 1
57 483 l 0
18 483 12 479 12 474 c 8
12 468 15 463 19 461 c 0
42 446 47 414 32 391 c 0
16 369 -16 362 -38 378 c 0
-64 398 -88 427 -88 474 c 0
-88 559 0 583 57 583 c 2
EndSplineSet
MinimumDistance: x10,-1
EndChar
StartChar: uni018B
Encoding: 395 395
Width: 600
Flags: W
HStem: 0 100<210 398 498 532> 242 100<210 398> 483 100<142 398 498 532>
VStem: 21 104<159 179> 42 100<415 483> 398 100<100 241 341 483>
Ref: 1041 N -1 0 0 1 600 0
EndChar
StartChar: uni018C
Encoding: 396 396
Width: 600
Flags: W
HStem: -14 100<273 289> 0 100<531 561> 351 100<273 289> 524 100<113 430>
VStem: 33 100<210 226> 431 100<210 226 402 524>
Fore
281 351 m 0
233 351 200 339 172 311 c 0
147 286 133 252 133 219 c 0
133 185 147 152 172 126 c 1
200 99 234 86 282 86 c 0
330 86 364 99 392 126 c 0
417 151 431 185 431 217 c 0
431 253 417 286 392 311 c 0
363 339 331 351 281 351 c 0
431 524 m 1
131 524 l 1
106 524 95 526 86 533 c 0
73 543 65 558 65 574 c 0
65 591 74 607 89 617 c 0
98 623 106 624 131 624 c 1
531 624 l 1
531 100 l 1
547 100 l 2
574 100 583 98 593 91 c 0
605 81 613 66 613 50 c 0
613 33 604 16 589 7 c 0
581 2 570 0 547 0 c 2
431 0 l 1
431 35 l 1
378 -1 339 -14 280 -14 c 0
205 -14 149 7 103 51 c 0
57 96 33 153 33 219 c 0
33 284 57 342 103 386 c 0
149 430 205 451 281 451 c 0
341 451 388 435 431 401 c 1
431 524 l 1
EndSplineSet
MinimumDistance: x14,-1 x13,15 y15,13 y15,14
EndChar
StartChar: uni018D
Encoding: 397 397
Width: 600
Flags: W
HStem: -204 100<328 366> -198 169<94 100> 350 100<286 318 286 318>
VStem: 458 100<-69 -51 210 226 210 226>
Ref: 948 N -1 0 0 -1 600 434
EndChar
StartChar: uni018E
Encoding: 398 398
Width: 600
Flags: W
HStem: 0 100<135 368 470 502> 241 99<284 368> 364 219<54 70> 483 100<113 368 470 502>
VStem: 35 100<100 168 412 483> 185 99<214 240 341 365> 369 100<101 240 341 482>
Ref: 69 N -1 0 0 -1 563 583
EndChar
StartChar: uni0190
Encoding: 400 400
Width: 600
Flags: W
HStem: -14 100<286 309> 1 198<478 494> 240 101<297 382> 497 100<286 318>
VStem: 62 104<153 164> 83 104<418 431>
Fore
366 341 m 6
391 341 399 339 408 333 c 4
423 324 432 307 432 290 c 4
432 275 424 259 412 249 c 4
403 243 390 240 366 240 c 6
307 240 l 6
239 240 223 226 202 215 c 4
180 203 166 183 166 162 c 4
166 119 224 86 298 86 c 4
364 86 427 115 437 151 c 4
445 178 445 178 452 185 c 4
461 194 474 199 488 199 c 4
504 199 519 192 529 179 c 4
536 169 538 158 538 133 c 6
538 67 l 6
538 22 522 1 487 1 c 4
471 1 464 5 447 25 c 5
398 -1 345 -14 291 -14 c 4
154 -14 62 56 62 160 c 4
62 212 81 253 121 285 c 4
127 290 133 294 139 298 c 5
106 317 83 363 83 420 c 4
83 521 176 597 300 597 c 4
351 597 395 586 430 564 c 5
440 589 449 597 469 597 c 4
486 597 503 588 511 574 c 4
517 565 518 557 518 531 c 6
518 443 l 6
518 415 516 407 509 397 c 4
499 384 484 376 469 376 c 4
455 376 441 382 433 390 c 4
426 398 426 398 419 430 c 4
410 470 362 497 300 497 c 4
237 497 187 464 187 421 c 4
187 400 202 377 224 366 c 4
244 356 250 341 324 341 c 6
366 341 l 6
EndSplineSet
MinimumDistance: x33,-1
EndChar
StartChar: uni0191
Encoding: 401 401
Width: 600
Flags: W
HStem: -123 100<9 25> 243 99<194 279> 483 100<57 93 195 450>
VStem: 94 100<53 242 343 482> 279 99<213.14 242 343 367> 450 100<414 483>
Fore
194 243 m 1
194 66 l 2
194 -41 118 -123 19 -123 c 0
-58 -123 -103 -99 -103 -59 c 0
-103 -32 -80 -9 -55 -9 c 0
-49 -9 -46 -10 -32 -15 c 0
-16 -20 0 -23 16 -23 c 0
62 -23 94 13 94 66 c 2
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
550 583 l 1
550 432 l 2
550 405 548 397 541 387 c 0
531 374 516 366 500 366 c 0
483 366 467 375 457 390 c 0
452 398 450 409 450 432 c 2
450 483 l 1
194 483 l 1
194 342 l 1
279 342 l 1
279 349 l 2
279 374 281 385 288 394 c 0
298 407 313 415 329 415 c 0
346 415 362 406 371 391 c 0
377 381 378 374 378 349 c 2
378 236 l 2
378 209 376 200 369 190 c 0
359 177 344 169 329 169 c 0
312 169 295 179 286 193 c 0
281 202 279 213 279 236 c 2
279 243 l 1
194 243 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: florin
Encoding: 402 402
Width: 600
Flags: HMW
HStem: -123 100<168 199> -9 20 304 100<197 254 354 411> 538 100<407 436>
VStem: 254 100<66 304 404 456>
Fore
354 404 m 1
411 404 l 2
440 404 447 403 457 395 c 0
470 385 478 370 478 354 c 0
478 337 469 320 454 311 c 0
446 306 434 304 411 304 c 2
354 304 l 1
354 66 l 2
354 -41 278 -123 179 -123 c 0
102 -123 57 -99 57 -59 c 0
57 -32 80 -9 105 -9 c 0
111 -9 114 -10 128 -15 c 0
144 -20 160 -23 176 -23 c 0
222 -23 254 13 254 66 c 2
254 304 l 1
197 304 l 2
171 304 160 306 151 313 c 0
138 323 130 338 130 354 c 0
130 371 139 388 154 397 c 0
163 403 170 404 197 404 c 2
254 404 l 1
254 459 l 2
254 558 332 638 428 638 c 0
503 638 548 615 548 577 c 0
548 547 527 524 500 524 c 0
493 524 488 525 476 529 c 0
460 535 445 538 427 538 c 0
387 538 354 501 354 456 c 2
354 404 l 1
EndSplineSet
EndChar
StartChar: uni0193
Encoding: 403 403
Width: 600
Flags: W
HStem: -14 100<304 353> 180 100<330 449> 497 100<304 337> 576 100<558 561>
VStem: 33 100<229 322> 284 308<226 232> 450 100<111 180>
Fore
451.501 569.976 m 1
459.514 621.473 491.708 676 559 676 c 0
606 676 635 652 655 626 c 0
671 604 664 572 642 556 c 0
619 541 587 546 572 569 c 0
570 573 565 576 559 576 c 16
554 576 550 570 550 531 c 2
550 453 l 2
550 425 549 418 541 408 c 0
531 395 516 387 500 387 c 0
487 387 473 393 465 402 c 0
459 409 459 409 451 440 c 0
441 475 391 497 318 497 c 0
262 497 217 481 186 450 c 0
153 417 133 367 133 317 c 2
133 253 l 2
133 195 147 156 178 130 c 0
212 101 262 86 325 86 c 0
373 86 412 94 450 111 c 1
450 180 l 1
350 180 l 2
325 180 314 182 305 190 c 1
292 199 284 214 284 230 c 0
284 247 293 264 308 273 c 0
317 279 325 280 350 280 c 2
525 280 l 2
552 280 561 278 571 271 c 0
585 261 592 246 592 230 c 0
592 205 578 188 550 180 c 1
550 48 l 1
461 1 409 -14 331 -14 c 0
233 -14 148 15 99 65 c 0
58 108 33 176 33 246 c 2
33 317 l 2
33 393 64 467 117 520 c 0
170 572 235 597 317 597 c 4
366.561 597 411.91 587.734 451.501 569.976 c 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni0195
Encoding: 405 405
Width: 600
Flags: W
HStem: -13 100<437.93 457> 0 100<37 54 156 181> 337 100<485 512> 350 100<213 230> 524 100<21 54>
VStem: 55 100<100 315 422 524> 289 100<147 291> 513 100<147 337>
Fore
389 284 m 2
389 159 l 2
389 110 413 87 451 87 c 24
489 87 513 110 513 159 c 2
513 337 l 1
486 337 l 2
453 337 431 358 431 387 c 0
431 404 440 421 455 430 c 0
464 436 472 437 497 437 c 2
613 437 l 1
613 156 l 2
613 97 604 56 562 24 c 0
528 -2 496 -13 451 -13 c 0
406 -13 374 -2 340 24 c 0
298 56 289 97 289 156 c 2
289 271 l 2
289 305 286.077 317.929 272 331 c 0
258 344 248 350 217 350 c 0
187 350 166 332 155 315 c 1
155 100 l 1
161 100 l 2
189 100 197 98 207 91 c 0
220 81 228 66 228 50 c 0
228 33 219 17 204 7 c 0
196 2 182 0 161 0 c 2
49 0 l 2
25 0 13 3 4 9 c 0
-9 19 -17 35 -17 50 c 0
-17 67 -8 84 7 93 c 0
16 98 24 100 49 100 c 2
55 100 l 1
55 524 l 1
39 524 l 2
13 524 3 526 -7 533 c 0
-19 543 -27 559 -27 574 c 0
-27 591 -18 608 -3 617 c 0
6 622 15 624 39 624 c 2
155 624 l 1
155 421 l 1
170 438 195 450 228 450 c 0
334 450 389 384 389 284 c 2
EndSplineSet
EndChar
StartChar: uni0196
Encoding: 406 406
Width: 600
Flags: W
HStem: -16 100<424 441> 483 100<153 250>
VStem: 250 100<160 483>
Fore
350 583 m 1
350 173 l 2
350 120 382 84 428 84 c 0
444 84 460 87 476 92 c 0
490 97 493 98 499 98 c 0
524 98 547 75 547 48 c 0
547 8 502 -16 425 -16 c 0
326 -16 250 66 250 173 c 2
250 483 l 1
172 483 l 2
147 483 135 485 126 493 c 1
113 502 105 517 105 533 c 0
105 550 114 567 129 576 c 0
138 582 146 583 172 583 c 2
350 583 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni0197
Encoding: 407 407
Width: 600
Flags: W
HStem: 0 100<131 249 351 467> 234 100<131 249 351 467> 483 100<131 249 351 467>
VStem: 250 100<100 234 334 483>
Fore
250 334 m 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
350 334 l 1
451 334 l 2
477 334 487 332 497 325 c 0
510 315 517 300 517 284 c 0
517 267 508 250 493 241 c 0
485 236 473 234 451 234 c 2
350 234 l 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 234 l 1
149 234 l 2
124 234 113 236 104 243 c 0
91 253 83 268 83 284 c 0
83 301 92 317 107 327 c 0
116 333 124 334 149 334 c 2
250 334 l 1
EndSplineSet
MinimumDistance: x12,-1
EndChar
StartChar: uni0199
Encoding: 409 409
Width: 600
Flags: W
HStem: 0 100<81.7263 115 471 525> 337 100<429 473> 538 100<277 305>
VStem: 115 100<100 164 288 464> 278 245<384 389> 320 251<48 52>
DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241
Fore
115 100 m 1
115 459 l 2
115 558 193 638 289 638 c 0
364 638 409 615 409 577 c 0
409 547 388 524 361 524 c 0
354 524 349 525 337 529 c 0
321 535 306 538 288 538 c 0
248 538 215 501 215 456 c 2
215 287 l 1
294 350 l 1
282 364 278 373 278 387 c 0
278 404 287 420 302 430 c 0
310 435 321 437 345 437 c 2
457 437 l 2
482 437 493 435 503 428 c 0
516 418 523 403 523 387 c 0
523 370 514 354 499 344 c 0
491 339 480 337 457 337 c 2
429 337 l 1
311 241 l 1
471 100 l 1
504 100 l 2
532 100 540 98 550 91 c 0
563 81 571 66 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 504 0 c 2
386 0 l 2
342 0 320 17 320 50 c 0
320 64 324 74 336 87 c 1
233 178 l 1
215 164 l 1
215 0 l 1
99 0 l 2
55 0 33 17 33 50 c 0
33 67 42 84 57 93 c 0
66 99 74 100 99 100 c 2
115 100 l 1
EndSplineSet
MinimumDistance: x23,-1
EndChar
StartChar: uni019A
Encoding: 410 410
Width: 600
Flags: W
HStem: 0 100<109 249 351 478> 234 100<127 249 350 472> 524 100<150 249>
VStem: 250 100<100 234 334 524>
Fore
250 334 m 5
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
350 334 l 5
451 334 l 6
477 334 487 332 497 325 c 4
510 315 517 300 517 284 c 4
517 267 508 250 493 241 c 4
485 236 473 234 451 234 c 6
350 234 l 5
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 35 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 234 l 5
149 234 l 6
124 234 113 236 104 243 c 4
91 253 83 268 83 284 c 4
83 301 92 317 107 327 c 4
116 333 124 334 149 334 c 6
250 334 l 5
EndSplineSet
MinimumDistance: x7,-1 x6,8 y8,6 y8,7
EndChar
StartChar: uni019B
Encoding: 411 411
Width: 600
Flags: W
HStem: 0 21G<87 177 421 513> 0.943346 99.0567<405 417> 524 100<81 196>
VStem: 21 222<48 52> 30.8324 409.168<565 568> 354 225<48 52>
DStem: 240.889 431.843 298 323 70 100 184 100 298 323 329.863 478.218 418 100 527 100
Fore
240.889 431.843 m 1
155.525 387.349 l 2
148.15 383.505 140.253 381.682 132.47 381.682 c 0
107.323 381.682 82.4102 402.503 82.4102 431.632 c 0
82.4102 449.678 92.2051 467.113 109.305 476.025 c 2
197.125 521.799 l 1
196 524 l 1
96 524 l 2
72 524 63 526 54 531 c 0
39 540 30 557 30 574 c 0
30 590 37 603 51 614 c 24
66 625 71 624 96 624 c 2
193 624 l 2
246.339 624 268.814 598.281 285.049 567.628 c 1
366.885 610.283 l 2
374.26 614.128 382.156 615.95 389.939 615.95 c 0
415.087 615.95 440 595.129 440 566 c 0
440 547.955 430.205 530.52 413.105 521.606 c 2
329.863 478.218 l 1
527 100 l 1
560 97 579 79 579 50 c 0
579 34 572 19 558 9 c 0
549 2 539 0 513 0 c 2
421 0 l 2
382.534 0 354 14.7805 354 50 c 0
354 82 377 100 418 100 c 1
298 323 l 1
184 100 l 1
222 99 243 81 243 50 c 0
243 34 235 19 223 9 c 0
213 2 203 0 177 0 c 2
87 0 l 2
49.1707 0 21 15.2882 21 50 c 0
21 78 39 96 70 100 c 1
240.889 431.843 l 1
EndSplineSet
MinimumDistance: x20,-1 x24,20 x32,28
EndChar
StartChar: uni019C
Encoding: 412 412
Width: 600
Flags: W
HStem: -13 100<171 189 377 389> 0 21G<463 556> 483 99.8486<40 40 237.633 251.969 447.872 462.969 564 576> 563 20G<47 141 258 352 468 556>
VStem: 41 100<115 483> 252 100<132 483> 463 100<132 483>
Fore
463 0 m 1
463 24 l 1
428 -4 408 -13 378 -13 c 0
339 -13 306 3 276 36 c 1
245 2 213 -13 172 -13 c 0
97 -13 41 43 41 118 c 2
41 483 l 1
3 483 -19 501 -19 533 c 0
-19 566 3 583 47 583 c 2
141 583 l 1
141 126 l 2
141 97 150 87 176 87 c 0
202 87 218 96 252 132 c 1
252 483 l 1
214 483 192 502 192 533 c 0
192 550 201 566 216 576 c 0
224 581 237 583 258 583 c 2
352 583 l 1
352 126 l 2
352 98 362 87 387 87 c 0
414 87 433 98 463 132 c 1
463 483 l 1
424 483 402 501 402 533 c 0
402 550 411 566 426 576 c 0
434 581 447 583 468 583 c 2
556 583 l 2
580 583 593 580 602 573 c 0
615 564 623 548 623 533 c 0
623 501 601 483 563 483 c 1
563 100 l 1
601 99 623 81 623 50 c 0
623 24 606 5 577 2 c 0
566 0 564 0 556 0 c 2
463 0 l 1
EndSplineSet
MinimumDistance: x28,-1
EndChar
StartChar: uni019D
Encoding: 413 413
Width: 600
Flags: W
HStem: -123 100<-12 4> 0 21G<432 531> 483 100<36 72 372.499 430 531.031 546.331>
VStem: 73 100<53 393> 330 262<523.191 535> 431 100<192 483>
DStem: 173 394 173 583 432 0 431 191
Fore
173 394 m 1
173 66 l 2
173 -41 97 -123 -2 -123 c 0
-79 -123 -124 -99 -124 -59 c 0
-124 -32 -101 -9 -76 -9 c 0
-70 -9 -67 -10 -53 -15 c 0
-37 -20 -21 -23 -5 -23 c 0
41 -23 73 13 73 66 c 2
73 483 l 1
58 483 l 2
33 483 22 485 13 492 c 0
0 502 -8 517 -8 533 c 0
-8 550 1 567 16 576 c 0
25 582 32 583 58 583 c 2
173 583 l 5
431 191 l 1
431 483 l 1
396 483 l 2
371 483 360 485 351 492 c 0
338 502 330 517 330 533 c 0
330 550 339 567 354 576 c 0
363 582 370 583 396 583 c 2
526 583 l 2
553 583 561 581 571 574 c 0
584 564 592 549 592 533 c 0
592 501 571 483 531 483 c 1
531 0 l 1
432 0 l 1
173 394 l 1
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: uni019E
Encoding: 414 414
Width: 600
Flags: W
HStem: -205 21G<416 505> -204.757 99.7568<407 409 510 525.03> 0 100<71 94 196 215> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<-105 291>
Fore
195 437 m 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 -105 l 1
549 -105 571 -123 571 -155 c 0
571 -172 562 -189 547 -198 c 0
539 -203 526 -205 505 -205 c 2
416 -205 l 2
371 -205 349 -188 349 -155 c 0
349 -123 371 -105 410 -105 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: uni019F
Encoding: 415 415
Width: 600
Flags: W
HStem: -14 100<293 309> 229 100<131 470> 497 100<293 309>
VStem: 21 558<274 306>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
476 329 m 1
460 425 387 497 300 497 c 0
213 497 139 424 124 329 c 1
476 329 l 1
471 229 m 1
130 229 l 1
153 146 221 86 300 86 c 0
379 86 447 147 471 229 c 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: Ohorn
Encoding: 416 416
Width: 600
Flags: W
HStem: -14 100<293 309> 497 100<293 309>
VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562>
Fore
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
533 462 m 1
564 413 579 354 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
352 597 403 581 448 550 c 1
456 550 l 2
495 550 501 554 501 559 c 8
501 565 498 570 494 572 c 0
471 587 466 619 481 642 c 0
497 664 529 671 551 655 c 0
577 635 601 606 601 559 c 0
601 508 570 477 533 462 c 1
EndSplineSet
EndChar
StartChar: ohorn
Encoding: 417 417
Width: 600
Flags: W
HStem: -16 100<282 314> 350 100<282 314>
VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417>
Fore
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
533 317 m 1
549 287 558 253 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
359 450 410 434 452 406 c 1
458 406 l 2
497 406 503 410 503 415 c 8
503 421 500 426 496 428 c 0
473 443 468 475 483 498 c 0
499 520 531 527 553 511 c 0
579 491 603 462 603 415 c 0
603 364 571 333 533 317 c 1
EndSplineSet
EndChar
StartChar: uni01A2
Encoding: 418 418
Width: 600
Flags: W
HStem: -15 100<211 227> 0 100<457 479 580 595> 497 100<211 227> 528 100<439 457>
VStem: 3 100<241 337> 337 100<241 337> 480 100<100 481>
Fore
103 325 m 2
103 257 l 2
103 153 149 85 220 85 c 0
291 85 337 153 337 257 c 2
337 325 l 2
337 429 291 497 220 497 c 0
149 497 103 429 103 325 c 2
321.033 571.964 m 1
348.639 596.336 393.243 628 458 628 c 0
544 628 580 548 580 458 c 2
580 100 l 1
585 100 l 2
612 100 620 98 630 91 c 0
643 81 651 66 651 50 c 0
651 33 642 17 627 7 c 0
619 2 606 0 585 0 c 2
473 0 l 2
449 0 437 3 427 10 c 0
415 19 407 35 407 50 c 0
407 67 416 84 431 93 c 0
440 98 448 100 473 100 c 2
479 100 l 1
480 100 l 1
480 458 l 2
480 524 461.119 528 450 528 c 0
424 528 406.332 512.994 390.816 500.307 c 1
420.719 450.969 437 387.392 437 318 c 2
437 264 l 2
437 173 409 92 359 40 c 0
325 4 277 -15 220 -15 c 0
163 -15 115 4 81 40 c 0
31 92 3 173 3 264 c 2
3 318 l 2
3 409 31 490 81 542 c 0
115 578 163 597 220 597 c 0
258.229 597 292.409 588.453 321.033 571.964 c 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni01A3
Encoding: 419 419
Width: 600
Flags: W
HStem: -16 100<191 208> 0 100<463 478 579 591> 350 100<191 223> 386 100<428 463>
VStem: 479 100<100 358>
Fore
206 350 m 0
114 348 70 296 67 217 c 0
69 139 116 86 204 84 c 0
292 86 339 139 341 217 c 0
339 294 291 349 206 350 c 0
388.097 365.618 m 1
421.633 324.742 441.444 272.925 441 217 c 0
443 90 342 -18 204 -16 c 0
66 -18 -35 90 -33 217 c 0
-35 345 66 453 206 450 c 0
243.896 450.277 278.884 442.213 309.653 427.735 c 1
311.903 430.382 l 0
350.114 478.671 407.4 486 446 486 c 0
522 486 579 431.384 579 358 c 2
579 100 l 1
580 100 l 1
585 100 l 2
612 100 620 98 630 91 c 0
643 81 651 66 651 50 c 0
651 33 642 17 627 7 c 0
619 2 606 0 585 0 c 2
473 0 l 2
449 0 437 3 427 10 c 0
415 19 407 35 407 50 c 0
407 67 416 84 431 93 c 0
440 98 448 100 473 100 c 2
479 100 l 1
479 358 l 2
479 389.554 468 386 446 386 c 0
422 386 402 382 388.097 365.618 c 1
EndSplineSet
MinimumDistance: x12,-1
EndChar
StartChar: uni01A4
Encoding: 420 420
Width: 600
Flags: W
HStem: 0 100<61 93 195 311> 200 100<195 317> 483 100<62 93 195 317>
VStem: -83 100<473 476> 13 346<48 52> 94 100<100 200 301 482> 423 106<377 400>
Fore
194 483 m 1
194 300 l 1
312 300 l 2
381 300 423 335 423 391 c 0
423 448 381 483 312 483 c 2
194 483 l 1
94 483 m 1
62 483 l 2
23 483 17 479 17 474 c 8
17 468 20 463 24 461 c 0
47 446 52 414 37 391 c 0
21 369 -11 362 -33 378 c 0
-59 398 -83 427 -83 474 c 0
-83 559 3.78516 583 62 583 c 2
312 583 l 2
439 583 529 505 529 394 c 0
529 348 511 301 479 266 c 0
435 217 385 200 292 200 c 2
194 200 l 1
194 100 l 1
293 100 l 2
320 100 328 98 338 91 c 0
351 81 359 66 359 50 c 0
359 33 350 16 335 7 c 0
328 3 313 0 293 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 483 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: uni01A5
Encoding: 421 421
Width: 600
Flags: W
HStem: -205 100<40 74 175 250> 10 100<312 331> 350 100<312 344> 538 100<235.642 264>
VStem: -8 306<-157 -153> 74 100<-105 65 223 243 393 467> 471 100<223 243>
Fore
174 231 m 0
174 160 235 110 323 110 c 0
409 110 471 160 471 230 c 0
471 263 452 300 423 321 c 0
397 341 364 350 323 350 c 0
281 350 248 341 222 321 c 0
193 300 174 263 174 231 c 0
174 392 m 1
223 434 265 450 327 450 c 0
467 450 571 353 571 224 c 0
571 101 468 10 329 10 c 0
270 10 226 26 174 66 c 1
174 -105 l 1
232 -105 l 2
258 -105 268 -107 278 -114 c 0
291 -124 298 -139 298 -155 c 0
298 -172 289 -188 274 -198 c 0
266 -203 254 -205 232 -205 c 2
58 -205 l 2
33 -205 22 -203 12 -195 c 0
0 -186 -8 -171 -8 -155 c 0
-8 -138 1 -121 16 -112 c 0
25 -106 34 -105 58 -105 c 2
74 -105 l 1
74 459 l 2
74 558 152 638 248 638 c 0
323 638 368 615 368 577 c 0
368 547 347 524 320 524 c 0
313 524 308 525 296 529 c 0
280 535 265 538 247 538 c 0
207 538 174 501 174 456 c 2
174 392 l 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni01A7
Encoding: 423 423
Width: 600
Flags: W
HStem: -14 100<261 318> 497 100<275.5 332.5>
VStem: 414 104<140.5 172.5 410.5 442.5>
Ref: 83 N -1 0 0 1 600 0
EndChar
StartChar: uni01A8
Encoding: 424 424
Width: 600
Flags: W
HStem: -16 100<268 324.5> 350 100<278 324.5>
VStem: 398 110<115.5 133.5 310.5 324>
Ref: 115 N -1 0 0 1 600 0
EndChar
StartChar: uni01A9
Encoding: 425 425
Width: 600
Flags: W
HStem: 0 100<202 427> 0 238<473 479> 483 100<203 427>
VStem: 73 454<1 100 486 582> 427 100<101 192 400 482>
DStem: 73 486 202 483 225 293 352 293 225 293 352 293 73 100 201 100
Fore
225 293 m 1
73 486 l 1
73 583 l 1
527 583 l 1
527 413 l 2
527 388 525 380 520 371 c 0
510 356 494 347 477 347 c 0
461 347 446 355 436 368 c 0
429 377 427 386 427 413 c 2
427 483 l 1
202 483 l 1
352 293 l 1
201 100 l 1
427 100 l 1
427 172 l 2
427 197 429 208 436 218 c 0
446 230 461 238 477 238 c 0
494 238 511 229 520 214 c 0
526 205 527 198 527 172 c 2
527 0 l 1
73 0 l 1
73 100 l 1
225 293 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: uni01AB
Encoding: 427 427
Width: 600
Flags: W
HStem: -203 100<334.58 356> -16 100<279 317> 337 100<61 114 215 413>
VStem: 114 100<122 337 437 533> 429 100<-27 4>
Fore
429 5 m 1
386 -8 336 -16 299 -16 c 0
185 -16 114 37 114 122 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
114 525 l 2
114 551 116 561 124 571 c 0
133 583 148 591 164 591 c 0
181 591 198 582 207 567 c 0
213 558 214 551 214 525 c 2
214 437 l 1
395 437 l 2
422 437 426 439 441 428 c 28
455 417 461 403 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
214 141 l 2
214 120 216 111 222 104 c 0
234 91 262 84 300 84 c 0
353 84 401 95 446 118 c 0
463 127 470 129 481 129 c 0
508 129 529 106 529 78 c 2
529 -14 l 2
529 -121 453 -203 354 -203 c 0
277 -203 232 -179 232 -139 c 0
232 -112 255 -89 280 -89 c 0
286 -89 289 -90 303 -95 c 0
319 -100 335 -103 351 -103 c 0
397 -103 429 -67 429 -14 c 2
429 5 l 1
EndSplineSet
MinimumDistance: x27,-1
EndChar
StartChar: uni01AC
Encoding: 428 428
Width: 600
Flags: W
HStem: 0 100<173 248 350 429> 483 100<125 248 350 458>
VStem: -3 100<473 476> 249 100<100 482> 458 100<369 482>
Fore
142 483 m 2
104 483 97 479 97 474 c 8
97 468 100 463 104 461 c 0
118 452 126 436 126 420 c 4
126 390 101 369 74 369 c 4
65 369 55 372 47 378 c 0
21 398 -3 427 -3 474 c 0
-3 559 82 583 142 583 c 2
558 583 l 1
558 390 l 2
558 362 557 355 549 345 c 0
539 332 524 324 508 324 c 0
491 324 474 334 465 348 c 0
460 357 458 367 458 390 c 2
458 483 l 1
349 483 l 1
349 100 l 1
415 100 l 2
442 100 450 98 460 91 c 0
473 81 481 66 481 50 c 0
481 33 472 16 457 7 c 0
450 3 435 0 415 0 c 2
184 0 l 2
161 0 148 3 139 10 c 0
126 19 118 35 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 184 100 c 2
249 100 l 1
249 483 l 1
142 483 l 2
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni01AD
Encoding: 429 429
Width: 600
Flags: W
HStem: -16 100<285 317> 337 100<61 114 215 413> 538 100<285 302>
VStem: 114 100<122 337 437 464>
Fore
114 437 m 1
114 459 l 2
114 558 192 638 288 638 c 0
363 638 408 615 408 577 c 0
408 547 387 524 360 524 c 0
353 524 348 525 336 529 c 0
320 535 305 538 287 538 c 0
247 538 214 501 214 456 c 2
214 437 l 1
395 437 l 2
422 437 426 439 441 428 c 24
455 417 461 403 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
214 141 l 2
214 120 216 111 222 104 c 0
234 91 262 84 300 84 c 0
353 84 401 95 446 118 c 0
463 127 470 129 481 129 c 0
508 129 529 106 529 78 c 0
529 54 517 41 479 24 c 0
430 1 351 -16 299 -16 c 0
185 -16 114 37 114 122 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni01AE
Encoding: 430 430
Width: 600
Flags: W
HStem: -123 100<423 442> 483 100<142 249 350 458>
VStem: 42 100<373 482> 249 100<53 482> 458 100<373 482>
Fore
349 483 m 1
349 66 l 2
349 13 381 -23 427 -23 c 0
443 -23 459 -20 475 -15 c 0
489 -10 492 -9 498 -9 c 0
523 -9 546 -32 546 -59 c 0
546 -99 501 -123 424 -123 c 0
325 -123 249 -41 249 66 c 2
249 483 l 1
142 483 l 1
142 390 l 2
142 363 140 355 133 345 c 0
123 332 108 324 92 324 c 0
75 324 58 333 49 348 c 0
44 357 42 367 42 390 c 2
42 583 l 1
558 583 l 1
558 390 l 2
558 362 557 355 549 345 c 0
539 332 524 324 508 324 c 0
491 324 474 334 465 348 c 0
460 357 458 367 458 390 c 2
458 483 l 1
349 483 l 1
EndSplineSet
MinimumDistance: x16,-1
EndChar
StartChar: Uhorn
Encoding: 431 431
Width: 600
Flags: W
HStem: -14 100<282.431 314> 483 100<172 218 378 428>
VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594>
Fore
529 483 m 1
529 205 l 2
529 134 502 78 445 35 c 0
402 2 355 -14 300 -14 c 0
246 -14 198 2 155 35 c 0
99 78 71 134 71 205 c 2
71 483 l 1
31 484 10 501 10 533 c 0
10 550 19 567 34 576 c 0
43 582 51 583 76 583 c 2
206 583 l 2
234 583 241 582 252 574 c 0
264 564 272 549 272 533 c 0
272 516 263 499 248 490 c 0
240 485 229 483 206 483 c 2
171 483 l 1
171 196 l 2
171 135 229 86 300 86 c 0
371 86 429 135 429 196 c 2
429 483 l 1
394 483 l 2
368 483 358 485 349 492 c 0
336 502 328 517 328 533 c 0
328 550 337 567 352 576 c 0
361 582 368 583 394 583 c 2
524 583 l 2
563 583 569 587 569 592 c 8
569 598 566 603 562 605 c 0
539 620 534 652 549 675 c 0
565 697 597 704 619 688 c 0
645 668 669 639 669 592 c 0
669 509.41 586.863 480.032 529 483 c 1
EndSplineSet
EndChar
StartChar: uhorn
Encoding: 432 432
Width: 600
Flags: W
HStem: -13 100<269 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885>
VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451>
Fore
510 437 m 2
549 437 555 441 555 446 c 8
555 452 552 457 548 459 c 0
525 474 520 506 535 529 c 0
551 551 583 558 605 542 c 0
631 522 655 493 655 446 c 0
655 361 568 337 510 337 c 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114 54 95 97 95 156 c 2
95 337 l 1
68 337 l 2
35 337 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 345 336 330 347 c 24
316 358 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 2
EndSplineSet
EndChar
StartChar: uni01B3
Encoding: 435 435
Width: 600
Flags: W
HStem: 0 100<176 249 351 423> 483 100<68 85 514 516>
VStem: -60 100<473 476> 250 100<100 245> 354 225<528 535>
DStem: 85 483 205 484 250 245 300 348 394 484 514 483 300 348 350 245
Fore
85 583 m 2
177 583 l 2
204 583 213 581 223 574 c 0
235 564 243 549 243 533 c 0
243 510 231 495 205 484 c 1
300 348 l 1
394 484 l 1
367 494 354 510 354 533 c 0
354 550 363 567 378 576 c 0
387 582 396 583 421 583 c 2
513 583 l 2
540 583 549 581 558 574 c 0
572 564 579 549 579 533 c 0
579 502 551 479 516 483 c 2
514 483 l 1
350 245 l 1
350 100 l 1
415 100 l 2
443 100 451 98 461 91 c 0
474 81 482 66 482 50 c 0
482 33 473 16 458 7 c 0
451 3 436 0 415 0 c 2
185 0 l 2
161 0 148 3 139 10 c 0
126 19 118 34 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 185 100 c 2
250 100 l 1
250 245 l 1
85 483 l 1
46 483 40 479 40 474 c 8
40 468 43 463 47 461 c 0
70 446 75 414 60 391 c 0
44 369 12 362 -10 378 c 0
-36 398 -60 427 -60 474 c 0
-60 559 26.7852 583 85 583 c 2
EndSplineSet
MinimumDistance: x12,-1
EndChar
StartChar: uni01B4
Encoding: 436 436
Width: 600
Flags: W
HStem: -205 100<66 187 298 309> 337 99.9864<405.713 417.969> 417 20G<87 177>
VStem: 21 222<376.035 389> 21 347<-157 -153> 572 100<445 451>
DStem: 70 337 184 337 242 3 298 114 242 3 527 337 187 -105 297 -105 418 337 527 337 298 114 297 -105
Fore
421 437 m 2
527 437 l 2
566 437 572 441 572 446 c 8
572 452 569 457 565 459 c 0
542 474 537 506 552 529 c 0
568 551 600 558 622 542 c 0
648 522 672 493 672 446 c 0
672 361 585 332 527 337 c 1
297 -105 l 1
302 -105 l 2
328 -105 338 -107 348 -114 c 0
360 -124 368 -139 368 -155 c 0
368 -172 359 -188 344 -198 c 0
336 -203 324 -205 302 -205 c 2
87 -205 l 2
62 -205 57 -206 42 -195 c 24
28 -184 21 -171 21 -155 c 0
21 -138 30 -121 45 -112 c 0
54 -107 63 -105 87 -105 c 2
187 -105 l 1
242 3 l 1
70 337 l 1
39 341 21 359 21 387 c 0
21 414 38 432 67 435 c 0
78 437 80 437 87 437 c 2
177 437 l 2
203 437 213 435 223 428 c 0
235 418 243 403 243 387 c 0
243 356 222 338 184 337 c 1
298 114 l 1
418 337 l 1
377 337 354 355 354 387 c 0
354 414 371 432 400 435 c 0
411 437 413 437 421 437 c 2
EndSplineSet
MinimumDistance: x22,27
EndChar
StartChar: uni01B5
Encoding: 437 437
Width: 600
Flags: W
HStem: 0 100<202 427> 0 190<473 483> 234 100<121.498 169 393 436> 483 100<196 374>
VStem: 73 454<1 100> 79 402<274.191 288> 96 100<448 482> 96 408<486 582> 427 100<101 144>
DStem: 178.661 234 306.187 234 73 100 201 100 375 483 504 486 257.512 334 384.684 334
Fore
306.187 234 m 5
201 100 l 1
427 100 l 1
427 124 l 2
427 149 429 160 436 170 c 0
446 182 461 190 477 190 c 0
494 190 511 181 520 166 c 0
526 157 527 150 527 124 c 2
527 0 l 1
73 0 l 1
73 100 l 1
178.661 234 l 5
145 234 l 6
120 234 109 236 100 243 c 4
87 253 79 268 79 284 c 4
79 301 88 317 103 327 c 4
112 333 120 334 145 334 c 6
257.512 334 l 5
375 483 l 1
196 483 l 1
196 461 l 2
196 434 194 425 187 416 c 0
177 403 162 395 146 395 c 0
129 395 113 404 103 419 c 0
98 428 96 436 96 461 c 2
96 583 l 1
504 583 l 1
504 486 l 1
384.684 334 l 5
415 334 l 6
441 334 451 332 461 325 c 4
474 315 481 300 481 284 c 4
481 267 472 250 457 241 c 4
449 236 437 234 415 234 c 6
306.187 234 l 5
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni01B6
Encoding: 438 438
Width: 600
Flags: W
HStem: 0 100<245 419> 0 154<457.65 471> 0 254<160 244> 337 100<197 345>
VStem: 97 100<320 336> 97 409<356 436> 119 334<194.1 208>
Fore
299.266 154 m 1
244 100 l 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
518 121 519 114 519 88 c 2
519 0 l 1
85 0 l 1
85 83 l 1
159.371 155.377 l 1
135.203 159.06 119 181.117 119 204 c 0
119 221 128 237 143 247 c 0
152 253 160 254 185 254 c 2
260.713 254 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
401.315 253.712 l 1
417.168 252.949 425.084 250.541 433 245 c 0
446 235 453 220 453 204 c 0
453 187 444 170 429 161 c 0
421 156 409 154 387 154 c 2
299.266 154 l 1
EndSplineSet
MinimumDistance: x26,-1
EndChar
StartChar: uni01B7
Encoding: 439 439
Width: 600
Flags: W
HStem: -50 100<300 332> 234 100<252 258> 483 100<196 374>
VStem: 96 100<446 482> 96 408<486 582> 463 100<140 158>
DStem: 375 483 504 486 258 334 385 334
Fore
385 334 m 1
491.479 338.413 563 249.5 563 154 c 0
563 6.9966 423.041 -50 314 -50 c 0
199 -50 100 10 54 68 c 1
38 90 42 121 64 138 c 0
86 154 117 150 134 128 c 1
152 102 239.5 50 314 50 c 0
401.052 50 463 84.5 463 154 c 0
463 208.009 440 234 384 234 c 2
258 234 l 2
230 234 208 256 208 284 c 0
208 312 230 334 258 334 c 1
375 483 l 1
196 483 l 1
196 461 l 2
196 434 194 425 187 416 c 0
177 403 162 395 146 395 c 0
129 395 113 404 103 419 c 0
98 428 96 436 96 461 c 2
96 583 l 1
504 583 l 1
504 486 l 1
385 334 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni01B8
Encoding: 440 440
Width: 600
Flags: W
HStem: -50 100<275.268 307.268> 234 100<349.268 355.268> 483 100<233.268 411.268>
VStem: 44.268 100<140 158> 103.268 408<486 582> 411.268 100<446 482>
DStem: 103.268 486 232.268 483 222.268 334 349.268 334
Ref: 439 N -1 0 0 1 607.268 0
EndChar
StartChar: uni01BB
Encoding: 443 443
Width: 600
Flags: W
HStem: 0 100<216 424> 0 154<470 476> 234 100<166 230> 498 100<278 294>
VStem: 54 470<1 100> 111 402<274.191 288> 403 100<400 416>
Fore
489.883 327.013 m 1
504.582 318.343 513 300.895 513 284 c 0
513 267 504 250 489 241 c 0
481 236 469 234 447 234 c 2
402.93 234 l 1
342.976 186.644 277.433 144.877 215 100 c 1
424 100 l 1
427 136 443 154 474 154 c 0
491 154 508 145 517 130 c 0
522 121 524 112 524 88 c 2
524 0 l 1
54 0 l 1
54 105 l 1
233.921 234 l 1
177 234 l 2
152 234 141 236 132 243 c 0
119 253 111 268 111 284 c 0
111 301 120 317 135 327 c 0
144 333 152 334 177 334 c 2
364.303 334 l 1
393.08 359.77 403 378.098 403 408 c 0
403 458 353 498 288 498 c 0
248 498 213 483 191 457 c 0
181 445 180 443 169 411 c 0
164 394 145 382 124 382 c 0
97 382 74 404 74 430 c 0
74 462 100 511 134 542 c 0
174 578 231 598 290 598 c 0
412 598 503 515 503 404 c 0
503 372.045 499.344 348.158 489.883 327.013 c 1
EndSplineSet
MinimumDistance: x28,-1
EndChar
StartChar: uni01C0
Encoding: 448 448
Width: 600
Flags: W
VStem: 250 100<-87 556>
Ref: 124 N 1 0 0 1 0 0
EndChar
StartChar: uni01C1
Encoding: 449 449
Width: 600
Flags: W
HStem: -153 775<202 206 394 398>
VStem: 154 100<-105 567> 346 100<-105 567>
Fore
446 556 m 2
446 -87 l 2
446 -112 444 -122 437 -132 c 0
427 -145 412 -153 396 -153 c 0
379 -153 363 -144 353 -129 c 0
348 -121 346 -110 346 -87 c 2
346 556 l 2
346 582 348 592 355 602 c 0
365 614 380 622 396 622 c 0
413 622 430 613 439 598 c 0
444 589 446 580 446 556 c 2
254 556 m 2
254 -87 l 2
254 -112 252 -122 245 -132 c 0
235 -145 220 -153 204 -153 c 0
187 -153 171 -144 161 -129 c 0
156 -121 154 -110 154 -87 c 2
154 556 l 2
154 582 156 592 163 602 c 0
173 614 188 622 204 622 c 0
221 622 238 613 247 598 c 0
252 589 254 580 254 556 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni01C3
Encoding: 451 451
Width: 600
Flags: W
HStem: -15 20
Ref: 33 N 1 0 0 1 0 0
EndChar
StartChar: uni01C8
Encoding: 456 456
Width: 600
Flags: W
HStem: -205 100<249 390> 0 100<73 107 209 311> 0 259<350.683 368> 337 100<345 467> 483 100<73 107 209 249> 518 105<392 509>
VStem: 108 100<100 483> 311 100<100 211> 391 119<519 622> 468 100<-29 337>
Fore
208 483 m 1
208 100 l 1
311 100 l 1
311 192 l 2
311 219 313 228 320 238 c 0
330 252 345 259 361 259 c 0
378 259 394 250 404 235 c 0
410 226 411 217 411 192 c 2
411 0 l 1
91 0 l 2
68 0 54 3 46 10 c 0
33 19 25 34 25 50 c 0
25 67 34 84 49 93 c 0
58 99 65 100 91 100 c 2
108 100 l 1
108 483 l 1
91 483 l 2
66 483 55 485 46 492 c 0
33 502 25 517 25 533 c 0
25 550 34 567 49 576 c 0
58 582 65 583 91 583 c 2
233 583 l 2
260 583 268 581 278 574 c 0
291 564 299 549 299 533 c 0
299 516 290 499 275 490 c 0
267 485 256 483 233 483 c 2
208 483 l 1
468 337 m 1
366 337 l 2
341 337 330 339 321 347 c 1
308 356 300 372 300 387 c 0
300 404 309 421 324 430 c 0
333 436 340 437 366 437 c 2
568 437 l 1
568 -20 l 2
568 -125 486 -205 377 -205 c 2
263 -205 l 2
238 -205 227 -203 218 -195 c 1
205 -186 197 -170 197 -155 c 0
197 -138 207 -121 221 -112 c 0
230 -106 238 -105 263 -105 c 2
374 -105 l 2
431 -105 468 -72 468 -20 c 2
468 337 l 1
510 623 m 1
510 518 l 1
391 518 l 1
391 623 l 1
510 623 l 1
EndSplineSet
MinimumDistance: x32,-1
EndChar
StartChar: uni01C9
Encoding: 457 457
Width: 600
Flags: W
HStem: -205 100<234 374> 0 100<74 153 254 330> 337 100<330 451> 518 105<376 493> 524 100<90 153>
VStem: 154 100<100 524> 375 119<519 622> 452 100<-29 337>
Fore
452 337 m 1
350 337 l 2
325 337 314 339 305 347 c 1
292 356 284 372 284 387 c 0
284 404 293 421 308 430 c 0
317 436 324 437 350 437 c 2
552 437 l 1
552 -20 l 2
552 -125 470 -205 361 -205 c 2
247 -205 l 2
222 -205 211 -203 202 -195 c 1
189 -186 181 -170 181 -155 c 0
181 -138 191 -121 205 -112 c 0
214 -106 222 -105 247 -105 c 2
358 -105 l 2
415 -105 452 -72 452 -20 c 2
452 337 l 1
494 623 m 1
494 518 l 1
375 518 l 1
375 623 l 1
494 623 l 1
254 624 m 1
254 100 l 1
316 100 l 2
343 100 351 98 361 91 c 0
374 81 382 66 382 50 c 0
382 33 373 17 358 7 c 0
351 3 336 0 316 0 c 2
92 0 l 2
69 0 55 3 47 10 c 0
34 19 26 35 26 50 c 0
26 67 35 84 50 93 c 0
59 99 66 100 92 100 c 2
154 100 l 1
154 524 l 1
108 524 l 2
83 524 71 526 62 534 c 1
48 543 41 558 41 574 c 0
41 592 50 608 65 617 c 0
74 623 83 624 108 624 c 2
254 624 l 1
EndSplineSet
MinimumDistance: x6,-1 x38,21 y21,38 y21,20
EndChar
StartChar: uni01CD
Encoding: 461 461
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 706 20<247 247>
Ref: 711 N 1 0 0 1 -54 140
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni01CE
Encoding: 462 462
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 559 20<293 293>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Ref: 711 N 1 0 0 1 -8 -7
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni01CF
Encoding: 463 463
Width: 600
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 706 20<301 301>
VStem: 250 100<100 483>
Ref: 711 N 1 0 0 1 -0 140
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni01D0
Encoding: 464 464
Width: 600
HStem: 0 100<128 250 350 472> 337 100<172 250> 559 20<301 301>
VStem: 250 100<100 337 337 337>
Ref: 711 N 1 0 0 1 -0 -7
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: uni01D1
Encoding: 465 465
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 706 20<301 301>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 711 N 1 0 0 1 -0 140
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni01D2
Encoding: 466 466
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 559 20<303 303>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 711 N 1 0 0 1 2 -7
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni01D3
Encoding: 467 467
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 706 20<301 301>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Ref: 711 N 1 0 0 1 -0 140
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni01D4
Encoding: 468 468
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410> 559 20<295 295>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Ref: 711 N 1 0 0 1 -6 -7
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni01D5
Encoding: 469 469
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> 838 80<178 422>
VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483>
Ref: 175 N 1 0 0 1 0 292
Ref: 220 N 1 0 0 1 0 0
EndChar
StartChar: uni01D6
Encoding: 470 470
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> 694 80<173 417>
VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337>
Ref: 175 N 1 0 0 1 -5 148
Ref: 252 N 1 0 0 1 0 0
EndChar
StartChar: uni01D7
Encoding: 471 471
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410>
VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483>
DStem: 419 1022 465 966 286 911 332 854
Ref: 180 N 1 0 0 1 13 342
Ref: 220 N 1 0 0 1 0 0
EndChar
StartChar: uni01D8
Encoding: 472 472
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409>
VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337>
DStem: 414 878 460 822 281 767 327 710
Ref: 180 N 1 0 0 1 8 198
Ref: 252 N 1 0 0 1 0 0
EndChar
StartChar: uni01D9
Encoding: 473 473
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410> 907 20<301 301>
VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483>
Ref: 711 N 1 0 0 1 -0 341
Ref: 220 N 1 0 0 1 0 0
EndChar
StartChar: uni01DA
Encoding: 474 474
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409> 763 20<295 295>
VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337>
Ref: 711 N 1 0 0 1 -6 197
Ref: 252 N 1 0 0 1 0 0
EndChar
StartChar: uni01DB
Encoding: 475 475
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428 529.031 544.331> 678 120<186 206 394 410>
VStem: 10 262<530 535> 71 100<194 483> 136 120<736 740> 328 262<530 535> 344 120<736 740> 429 100<194 483>
DStem: 135 966 181 1022 268 854 314 911
Ref: 96 N 1 0 0 1 -13 342
Ref: 220 N 1 0 0 1 0 0
EndChar
StartChar: uni01DC
Encoding: 476 476
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 338 99<79 95 365 409> 534 120<189 197 397 409>
VStem: 95 100<147 337> 131 120<592 596> 339 120<592 596> 410 100<155 337>
DStem: 130 822 176 878 263 710 309 767
Ref: 96 N 1 0 0 1 -18 198
Ref: 252 N 1 0 0 1 0 0
EndChar
StartChar: uni01DD
Encoding: 477 477
Width: 600
Flags: W
HStem: -16 100<254.5 327.5> 174 88<144 438> 350 100<254 321>
Ref: 101 N -1 0 0 -1 583 434
EndChar
StartChar: uni01DE
Encoding: 478 478
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 838 80<161 405>
VStem: -21 120 187 120
Ref: 175 N 1 0 0 1 -17 292
Ref: 196 N 1 0 0 1 0 0
EndChar
StartChar: uni01DF
Encoding: 479 479
Width: 600
HStem: -16 100<218 246> 0 100<489 522> 196 92<266 298> 350 100<277 314> 534 120<178 187 387 395> 694 80<167 411>
VStem: 42 106<118 128> 125 120<592 596> 333 120<592 596> 389 100<135 185 279 304>
Ref: 175 N 1 0 0 1 -11 148
Ref: 228 N 1 0 0 1 0 0
EndChar
StartChar: uni01E0
Encoding: 480 480
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 637 120<235.067 250> 797 80<124 368>
VStem: 186 120<695 701>
Ref: 175 N 1 0 0 1 -54 251
Ref: 550 N 1 0 0 1 0 0
EndChar
StartChar: uni01E1
Encoding: 481 481
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 490 120<281.067 296> 650 80<170 414>
VStem: 42 106<118 128> 232 120<548 554> 389 100<135 185 279 304>
Ref: 175 N 1 0 0 1 -8 104
Ref: 551 N 1 0 0 1 0 0
EndChar
StartChar: uni01E2
Encoding: 482 482
Width: 600
HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493> 637 80<252 496>
VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144>
DStem: 168 483 267 471 53 100 203 259
Ref: 175 N 1 0 0 1 74 91
Ref: 198 N 1 0 0 1 0 0
EndChar
StartChar: uni01E3
Encoding: 483 483
Width: 600
HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441> 490 80<199 443>
VStem: -13 101<131 147> 255 356<172 189>
Ref: 175 N 1 0 0 1 21 -56
Ref: 230 N 1 0 0 1 0 0
EndChar
StartChar: Gcaron
Encoding: 486 486
Width: 600
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 686 20<315 315>
VStem: 33 100<246 253 253 317> 450 100<111 180>
Ref: 711 N 1 0 0 1 14 120
Ref: 71 N 1 0 0 1 0 0
EndChar
StartChar: gcaron
Encoding: 487 487
Width: 600
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 540 20<285 285>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
Ref: 711 S 1 0 0 1 -16 -26
Ref: 103 N 1 0 0 1 0 0
EndChar
StartChar: uni01E8
Encoding: 488 488
Width: 600
HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5> 676 20<285 285>
VStem: 94 100<100 208 334 483>
Ref: 711 N 1 0 0 1 -16 110
Ref: 75 N 1 0 0 1 0 0
EndChar
StartChar: uni01E9
Encoding: 489 489
Width: 600
HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114> 733 20<157 157>
VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52>
DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241
Ref: 711 N 1 0 0 1 -144 167
Ref: 107 N 1 0 0 1 0 0
EndChar
StartChar: uni01EA
Encoding: 490 490
Width: 600
HStem: -215 76<265.5 279> -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 172 77<-125.5 -103> 479 100<234 335>
Ref: 731 N 1 0 0 1 -78 -7
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni01EB
Encoding: 491 491
Width: 600
HStem: -217 76<265.5 279> -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 172 77<-127.5 -105> 458 100<179.5 254>
Ref: 731 N 1 0 0 1 -78 -9
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni01EC
Encoding: 492 492
Width: 600
HStem: -215 76<265.5 279> -14 100<251 348.5> 497 100<251 333.5> 637 80<178 422>
VStem: 21 100<235.5 348> 172 77<-125.5 -103> 479 100<234 335>
Ref: 175 N 1 0 0 1 0 91
Ref: 490 N 1 0 0 1 0 0
EndChar
StartChar: uni01ED
Encoding: 493 493
Width: 600
HStem: -217 76<265.5 279> -16 100<255.5 344.5> 350 100<256.5 345.5> 490 80<181 425>
VStem: 42 100<179.5 255> 172 77<-127.5 -105> 458 100<179.5 254>
Ref: 175 N 1 0 0 1 3 -56
Ref: 491 N 1 0 0 1 0 0
EndChar
StartChar: uni01EE
Encoding: 494 494
Width: 600
HStem: -50 100<300 332> 234 100<252 258> 483 100<196 374> 676 20<300.5 300.5>
VStem: 96 100<446 482> 96 408<486 582> 463 100<140 158>
DStem: 375 483 504 486 258 334 385 334
Ref: 711 S 1 0 0 1 -0.5 110
Ref: 439 N 1 0 0 1 0 0
EndChar
StartChar: uni01F0
Encoding: 496 496
Width: 600
HStem: -205 100<165 309> 337 100<165 387> 546 20<391 391>
VStem: 388 100<-29 337>
Ref: 711 S 1 0 0 1 90 -20
Ref: 63166 N 1 0 0 1 0 0
EndChar
StartChar: uni01F4
Encoding: 500 500
Width: 600
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344>
VStem: 33 100<246 253 253 317> 450 100<111 180>
DStem: 433 821 479 765 300 710 346 653
Ref: 180 S 1 0 0 1 27 141
Ref: 71 N 1 0 0 1 0 0
EndChar
StartChar: uni01F5
Encoding: 501 501
Width: 600
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
DStem: 388 675 434 619 255 564 301 507
Ref: 180 N 1 0 0 1 -18 -5
Ref: 103 N 1 0 0 1 0 0
EndChar
StartChar: uni01F6
Encoding: 502 502
Width: 600
Flags: W
HStem: 0 100<69 94 367 400> 241 100<195 266> 350 100<439 467> 563 20G<109 195 266 352>
VStem: 95 100<100 240 342 483> 266 100<101 240 342 483> 266 152<528 535> 468 100<160 350>
Fore
380 100 m 18
440 100 468 123 468 172 c 2
468 270 l 1
468 350 l 1
441 350 l 2
408 350 386 371 386 400 c 0
386 417 395 434 410 443 c 0
419 449 427 450 452 450 c 2
568 450 l 1
568 270 l 1
568 169 l 2
568 110 551.43 69.4463 509 37 c 0
475 11 435 0 390 0 c 10
266 0 l 1
266 100 l 1
266 241 l 1
195 241 l 1
195 100 l 1
195 0 l 1
89 0 l 2
65 0 52 3 43 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 99 64 100 89 100 c 2
95 100 l 1
95 483 l 1
62 486 43 504 43 533 c 0
43 550 52 567 67 576 c 0
76 582 84 583 109 583 c 2
195 583 l 1
195 483 l 1
195 341 l 1
266 341 l 1
266 483 l 1
266 583 l 1
352 583 l 2
379 583 388 581 398 574 c 0
410 564 418 549 418 533 c 0
418 504 399 486 366 483 c 1
366 100 l 1
380 100 l 18
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni01F8
Encoding: 504 504
Width: 600
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
DStem: 127 765 173 821 260 653 306 710
Ref: 96 N 1 0 0 1 -21 141
Ref: 78 N 1 0 0 1 0 0
EndChar
StartChar: uni01F9
Encoding: 505 505
Width: 600
HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195>
VStem: 95 100<100 282> 410 100<100 288>
DStem: 132 618 178 674 265 506 311 563
Ref: 96 N 1 0 0 1 -16 -6
Ref: 110 N 1 0 0 1 0 0
EndChar
StartChar: Aringacute
Encoding: 506 506
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 630 54<264 301.5> 818 53<264 302>
VStem: -21 53 172 53
DStem: 402 1095 448 1039 269 984 315 927
Ref: 180 N 1 0 0 1 -4 415
Ref: 197 N 1 0 0 1 0 0
EndChar
StartChar: aringacute
Encoding: 507 507
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 486 54<278 298> 674 53<278 298>
VStem: 42 106<118 128> 166 53<604 609> 359 53<604 609> 389 100<135 185 279 304>
DStem: 408 951 454 895 275 840 321 783
Ref: 180 N 1 0 0 1 2 271
Ref: 229 N 1 0 0 1 0 0
EndChar
StartChar: AEacute
Encoding: 508 508
Width: 600
HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493>
VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144>
DStem: 168 483 267 471 53 100 203 259 492 821 538 765 359 710 405 653
Ref: 180 N 1 0 0 1 86 141
Ref: 198 N 1 0 0 1 0 0
EndChar
StartChar: aeacute
Encoding: 509 509
Width: 600
HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441>
VStem: -13 101<131 147> 255 356<172 189>
DStem: 440 674 486 618 307 563 353 506
Ref: 180 N 1 0 0 1 34 -6
Ref: 230 N 1 0 0 1 0 0
EndChar
StartChar: Oslashacute
Encoding: 510 510
Width: 600
HStem: -14 100<286.5 348.5> 497 100<250 314.5>
VStem: 20 100<270 348> 479 100<234.5 309>
DStem: 415 835 461 779 282 724 328 667
Ref: 180 S 1 0 0 1 9 155
Ref: 216 N 1 0 0 1 0 0
EndChar
StartChar: oslashacute
Encoding: 511 511
Width: 600
HStem: -16 100<289 344> 350 100<255.5 309.5>
VStem: 42 100<204.5 254.5> 458 100<179.5 229>
DStem: 413 688 459 632 280 577 326 520
Ref: 180 S 1 0 0 1 7 8
Ref: 248 N 1 0 0 1 0 0
EndChar
StartChar: uni0200
Encoding: 512 512
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
DStem: 33 763 76 820 135 653 178 710 197 763 240 820 299 653 342 710
Ref: 783 N 1 0 0 1 -112 141
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni0201
Encoding: 513 513
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 79 616 122 673 181 506 224 563 243 616 286 673 345 506 388 563
Ref: 783 N 1 0 0 1 -66 -6
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni0202
Encoding: 514 514
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 761 68<218.5 273.5>
Ref: 728 S 1 0 0 -1 -54 1332
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni0203
Encoding: 515 515
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 632 68<264.5 319.5>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Ref: 728 N 1 0 0 -1 -8 1203
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni0204
Encoding: 516 516
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 91 763 134 820 193 653 236 710 255 763 298 820 357 653 400 710
Ref: 783 N 1 0 0 1 -54 141
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni0205
Encoding: 517 517
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
DStem: 78 616 121 673 180 506 223 563 242 616 285 673 344 506 387 563
Ref: 783 N 1 0 0 1 -67 -6
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni0206
Encoding: 518 518
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 761 68<276.5 331.5>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 728 S 1 0 0 -1 4 1332
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni0207
Encoding: 519 519
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 632 68<263.5 318.5>
Ref: 728 N 1 0 0 -1 -9 1203
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni0208
Encoding: 520 520
Width: 600
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
DStem: 87 763 130 820 189 653 232 710 251 763 294 820 353 653 396 710
Ref: 783 N 1 0 0 1 -58 141
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni0209
Encoding: 521 521
Width: 600
HStem: 0 100<128 250 350 472> 337 100<172 250>
VStem: 250 100<100 337 337 337>
DStem: 87 616 130 673 189 506 232 563 251 616 294 673 353 506 396 563
Ref: 783 N 1 0 0 1 -58 -6
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: uni020A
Encoding: 522 522
Width: 600
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 761 68<272.5 327.5>
VStem: 250 100<100 483>
Ref: 728 S 1 0 0 -1 0 1332
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni020B
Encoding: 523 523
Width: 600
HStem: 0 100<128 250 350 472> 337 100<172 250> 632 68<272.5 327.5>
VStem: 250 100<100 337 337 337>
Ref: 728 N 1 0 0 -1 0 1203
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: uni020C
Encoding: 524 524
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
DStem: 87 763 130 820 189 653 232 710 251 763 294 820 353 653 396 710
Ref: 783 N 1 0 0 1 -58 141
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni020D
Encoding: 525 525
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
DStem: 90 616 133 673 192 506 235 563 254 616 297 673 356 506 399 563
Ref: 783 N 1 0 0 1 -55 -6
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni020E
Encoding: 526 526
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 761 68<272.5 327.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 728 S 1 0 0 -1 0 1332
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni020F
Encoding: 527 527
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 632 68<275.5 330.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 728 N 1 0 0 -1 3 1203
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni0210
Encoding: 528 528
Width: 600
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
DStem: 73 763 116 820 175 653 218 710 237 763 280 820 339 653 382 710
Ref: 783 S 1 0 0 1 -72 141
Ref: 82 N 1 0 0 1 0 0
EndChar
StartChar: uni0211
Encoding: 529 529
Width: 600
HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447>
VStem: 178 100<100 247>
DStem: 99 616 142 673 201 506 244 563 263 616 306 673 365 506 408 563
Ref: 783 N 1 0 0 1 -46 -6
Ref: 114 N 1 0 0 1 0 0
EndChar
StartChar: uni0212
Encoding: 530 530
Width: 600
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> 761 68<226.5 281.5>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
Ref: 728 S 1 0 0 -1 -46 1332
Ref: 82 N 1 0 0 1 0 0
EndChar
StartChar: uni0213
Encoding: 531 531
Width: 600
HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> 632 68<284.5 339.5>
VStem: 178 100<100 247>
Ref: 728 N 1 0 0 -1 12 1203
Ref: 114 N 1 0 0 1 0 0
EndChar
StartChar: uni0214
Encoding: 532 532
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
DStem: 87 763 130 820 189 653 232 710 251 763 294 820 353 653 396 710
Ref: 783 N 1 0 0 1 -58 141
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni0215
Encoding: 533 533
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
DStem: 81 616 124 673 183 506 226 563 245 616 288 673 347 506 390 563
Ref: 783 N 1 0 0 1 -64 -6
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni0216
Encoding: 534 534
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 761 68<272.5 327.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Ref: 728 S 1 0 0 -1 0 1332
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni0217
Encoding: 535 535
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410> 632 68<266.5 321.5>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Ref: 728 N 1 0 0 -1 -6 1203
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: Scommaaccent
Encoding: 536 536
Width: 600
Flags: HMW
HStem: -14 100<282 339> 497 100<267.5 324.5>
VStem: 82 104<410.5 442.5> 434 104<140.5 172.5>
Fore
517 531 m 2
517 443 l 2
517 415 515 407 508 397 c 0
498 384 483 376 468 376 c 0
454 376 440 382 432 390 c 0
425 398 425 398 418 430 c 0
409 470 361 497 299 497 c 0
236 497 186 464 186 421 c 0
186 400 201 377 223 366 c 0
243 356 248 354 323 340 c 0
410 324 448 310 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 230 293 242 c 0
228 253 196 263 164 281 c 0
113 310 82 363 82 420 c 0
82 521 175 597 299 597 c 0
350 597 394 586 429 564 c 1
439 589 448 597 468 597 c 0
485 597 502 588 510 574 c 0
516 565 517 557 517 531 c 2
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: scommaaccent
Encoding: 537 537
Width: 600
Flags: HMW
HStem: -16 100<275.5 332> 350 100<275.5 322>
VStem: 92 110<310.5 324> 417 110<115.5 133.5>
Fore
409 312 m 2
404 321 l 1
376 341 343 350 301 350 c 0
250 350 202 333 202 315 c 0
202 306 212 297 228 291 c 0
242 286 248 285 312 276 c 0
387 266 427 255 457 238 c 0
501 214 527 171 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 345 173 291 179 c 0
151 194 92 234 92 313 c 0
92 393 178 450 298 450 c 0
347 450 388 442 427 424 c 1
435 443 444 450 459 450 c 0
491 450 506 430 506 384 c 2
506 347 l 2
506 321 504 311 497 301 c 0
487 289 471 281 456 281 c 0
435 281 421 290 409 312 c 2
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: Tcommaaccent
Encoding: 538 538
Width: 600
Flags: HMW
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Fore
349 483 m 1
349 100 l 1
415 100 l 2
442 100 450 98 460 91 c 0
473 81 481 66 481 50 c 0
481 33 472 16 457 7 c 0
450 3 435 0 415 0 c 2
184 0 l 2
161 0 148 3 139 10 c 0
126 19 118 35 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 184 100 c 2
249 100 l 1
249 483 l 1
142 483 l 1
142 390 l 2
142 363 140 355 133 345 c 0
123 332 108 324 92 324 c 0
75 324 58 333 49 348 c 0
44 357 42 367 42 390 c 2
42 583 l 1
558 583 l 1
558 390 l 2
558 362 557 355 549 345 c 0
539 332 524 324 508 324 c 0
491 324 474 334 465 348 c 0
460 357 458 367 458 390 c 2
458 483 l 1
349 483 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: tcommaaccent
Encoding: 539 539
Width: 600
Flags: HMW
HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 114 100<130.5 141 141 337 437 525>
Fore
214 337 m 1
214 141 l 2
214 120 216 111 222 104 c 0
234 91 262 84 300 84 c 0
353 84 401 95 446 118 c 0
463 127 470 129 481 129 c 0
508 129 529 106 529 78 c 0
529 54 517 41 479 24 c 0
430 1 351 -16 299 -16 c 4
185 -16 114 37 114 122 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
114 525 l 2
114 551 116 561 124 571 c 0
133 583 148 591 164 591 c 0
181 591 198 582 207 567 c 0
213 558 214 551 214 525 c 2
214 437 l 1
395 437 l 2
422 437 430 435 441 428 c 1
453 418 461 403 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
EndChar
StartChar: uni021E
Encoding: 542 542
Width: 600
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> 706 20<303 303>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 711 N 1 0 0 1 2 140
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni021F
Encoding: 543 543
Width: 600
HStem: 0 20 350 100<306 336.5> 733 20<297 297>
VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
Ref: 711 N 1 0 0 1 -4 167
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni0224
Encoding: 548 548
Width: 600
Flags: W
HStem: -203 100<345 361> 0 100<202 426> 483 100<196 374>
VStem: 96 100<389.566 482> 96 408<486 582> 427 100<-27 -1 101 181>
DStem: 375 483 504 486 73 100 201 100
Fore
427 0 m 1
73 0 l 1
73 100 l 1
375 483 l 1
196 483 l 1
196 413 l 2
196 386 194 377 187 368 c 0
177 355 162 347 146 347 c 0
129 347 113 356 103 371 c 0
98 380 96 388 96 413 c 2
96 583 l 1
504 583 l 1
504 486 l 1
201 100 l 1
427 100 l 1
427 172 l 2
427 197 429 208 436 218 c 0
446 230 461 238 477 238 c 0
494 238 511 229 520 214 c 0
526 205 527 198 527 172 c 2
527 -14 l 2
527 -121 451 -203 352 -203 c 0
275 -203 230 -179 230 -139 c 0
230 -112 253 -89 278 -89 c 0
284 -89 287 -90 301 -95 c 0
317 -100 333 -103 349 -103 c 0
395 -103 427 -67 427 -14 c 2
427 0 l 1
EndSplineSet
MinimumDistance: x19,-1 x0,2 x0,1
EndChar
StartChar: uni0225
Encoding: 549 549
Width: 600
Flags: W
HStem: -203 100<325 348> 0 100<245 418> 337 100<197 345>
VStem: 85 434<0 83> 97 100<309 336> 97 409<356 436> 419 100<-27 -1>
DStem: 346 337 506 356 85 83 244 100
Fore
512 130 m 0
519 119 519 107 519 88 c 2
519 -14 l 2
519 -121 443 -203 344 -203 c 0
267 -203 222 -179 222 -139 c 0
222 -112 245 -89 270 -89 c 0
276 -89 279 -90 293 -95 c 0
309 -100 325 -103 341 -103 c 0
387 -103 419 -67 419 -14 c 2
419 0 l 1
85 0 l 1
85 83 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
244 100 l 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
EndSplineSet
MinimumDistance: x1,-1 y11,9 x9,11 x9,10
EndChar
StartChar: uni0226
Encoding: 550 550
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 637 120<235.067 250>
VStem: 186 120<695 701>
Ref: 729 N 1 0 0 1 -54 103
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni0227
Encoding: 551 551
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 490 120<281.067 296>
VStem: 42 106<118 128> 232 120<548 554> 389 100<135 185 279 304>
Ref: 729 S 1 0 0 1 -8 -44
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni0228
Encoding: 552 552
Width: 600
HStem: -221 70<310.5 330.5> 0 100<61 93 195 450 299.5 319> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 280 70<-33 8> 355 70<-134 -115.5> 428 100<415 483> 450 100<100 171>
Ref: 184 N 1 0 0 1 18 8
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni0229
Encoding: 553 553
Width: 600
HStem: -237 70<292.5 312.5> -16 100<262 329 281.5 301> 172 88<145 439> 350 100<255.5 328.5>
VStem: 262 70<-49 -8> 337 70<-150 -131.5>
Ref: 184 N 1 0 0 1 0 -8
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni022A
Encoding: 554 554
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 838 80<178 422>
VStem: 21 100<235.5 348> 229 120 479 100<234 335>
Ref: 175 N 1 0 0 1 0 292
Ref: 214 N 1 0 0 1 0 0
EndChar
StartChar: uni022B
Encoding: 555 555
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 694 80<178 422>
VStem: 42 100<179.5 255> 250 120 458 100<179.5 254>
Ref: 175 N 1 0 0 1 0 148
Ref: 246 N 1 0 0 1 0 0
EndChar
StartChar: uni022C
Encoding: 556 556
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241> 839 80<224 468>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 175 N 1 0 0 1 46 293
Ref: 213 N 1 0 0 1 0 0
EndChar
StartChar: uni022D
Encoding: 557 557
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241> 696 80<224 468>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 175 N 1 0 0 1 46 150
Ref: 245 N 1 0 0 1 0 0
EndChar
StartChar: uni022E
Encoding: 558 558
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 637 120<289.067 304>
VStem: 21 100<235.5 348> 240 120<695 701> 479 100<234 335>
Ref: 729 N 1 0 0 1 0 103
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni022F
Encoding: 559 559
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 490 120<292.067 307>
VStem: 42 100<179.5 255> 243 120<548 554> 458 100<179.5 254>
Ref: 729 N 1 0 0 1 3 -44
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni0230
Encoding: 560 560
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 637 120<289.067 304> 797 80<178 422>
VStem: 21 100<235.5 348> 240 120<695 701> 479 100<234 335>
Ref: 175 N 1 0 0 1 0 251
Ref: 558 N 1 0 0 1 0 0
EndChar
StartChar: uni0231
Encoding: 561 561
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 490 120<292.067 307> 650 80<181 425>
VStem: 42 100<179.5 255> 243 120<548 554> 458 100<179.5 254>
Ref: 175 N 1 0 0 1 3 104
Ref: 559 N 1 0 0 1 0 0
EndChar
StartChar: uni0232
Encoding: 562 562
Width: 600
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 637 80<178 422>
VStem: 250 100<100 245>
Ref: 175 N 1 0 0 1 0 91
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: uni0233
Encoding: 563 563
Width: 600
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 80<178 422>
Ref: 175 N 1 0 0 1 0 -56
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni0250
Encoding: 592 592
Width: 600
Flags: W
HStem: -13 100<299 336> 149 92<315 347> 353 100<91 124 379 395>
VStem: 124 100<133 158 252 302> 465 106<309 319>
Ref: 97 S -1 0 0 -1 613 437
EndChar
StartChar: uni0251
Encoding: 593 593
Width: 600
Flags: W
HStem: -14 100<257 289> 0 100<531 561> 0 467<471.156 483> 351 100<273 289>
VStem: 33 100<210 226> 431 100<210 226 401.032 423.889>
Fore
281 351 m 0
233 351 200 339 172 311 c 0
147 286 133 252 133 219 c 0
133 185 143 154 172 126 c 24
206 94 234 86 282 86 c 0
330 86 364 99 392 126 c 0
417 151 431 185 431 217 c 0
431 253 417 286 392 311 c 0
363 339 331 351 281 351 c 0
531 401 m 2
531 100 l 1
547 100 l 2
574 100 583 98 593 91 c 0
605 81 613 66 613 50 c 0
613 33 604 16 589 7 c 0
581 2 570 0 547 0 c 2
431 0 l 1
431 35 l 1
378 -1 339 -14 280 -14 c 0
205 -14 149 7 103 51 c 0
57 96 33 153 33 219 c 0
33 284 57 342 103 386 c 0
149 430 205 451 281 451 c 0
341 451 388 435 431 401 c 1
431 427 433 437 441 447 c 0
450 459 465 467 481 467 c 0
498 467 515 458 524 443 c 0
530 434 531 427 531 401 c 2
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni0252
Encoding: 594 594
Width: 600
Flags: W
HStem: -18 467<163 174.844> 363 100<85 115 357 373 357 389>
VStem: 513 100<25.1109 47.9685 223 239 223 239>
Ref: 593 S -1 0 0 -1 646 449
EndChar
StartChar: uni0253
Encoding: 595 595
Width: 600
Flags: W
HStem: -14 100<312 344> 0 100<40 74> 351 100<312 344> 538 100<235.642 264>
VStem: 74 100<210 226 402 466> 471 100<210 226>
Fore
323 351 m 0
274 351 241 339 213 311 c 0
188 286 174 253 174 220 c 0
174 141 235 86 323 86 c 0
370 86 404 99 432 126 c 0
457 151 471 185 471 219 c 0
471 252 456 286 432 311 c 1
403 339 371 351 323 351 c 0
74 100 m 1
74 459 l 2
74 558 152 638 248 638 c 0
323 638 368 615 368 577 c 0
368 547 347 524 320 524 c 0
313 524 308 525 296 529 c 0
280 535 265 538 247 538 c 0
207 538 174 501 174 456 c 2
174 401 l 1
217 435 264 451 324 451 c 0
399 451 455 430 501 386 c 0
547 342 571 284 571 218 c 0
571 153 547 96 501 51 c 0
455 7 399 -14 325 -14 c 0
266 -14 226 -1 174 35 c 1
174 0 l 1
58 0 l 2
34 0 21 3 12 9 c 0
0 19 -8 34 -8 50 c 0
-8 67 1 84 16 93 c 0
25 99 33 100 58 100 c 2
74 100 l 1
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: uni0254
Encoding: 596 596
Width: 600
Flags: W
HStem: -16 100<269 344.5> 350 100<287 334.5>
VStem: 465 100<176.5 226>
Ref: 99 N -1 0 0 1 619 0
EndChar
StartChar: uni0256
Encoding: 598 598
Width: 600
Flags: W
HStem: -203 100<605 625> -14 100<257 289> 351 100<273 289> 525 99<392 430>
VStem: 33 100<213 229> 431 100<-27 34 213 229 402 525>
Fore
281 351 m 0
233 351 200 339 172 311 c 0
147 286 133 252 133 219 c 0
133 185 143 154 172 126 c 24
206 94 234 86 282 86 c 0
330 86 364 99 392 126 c 0
417 151 431 185 431 217 c 0
431 253 417 286 392 311 c 0
363 339 331 351 281 351 c 0
531 624 m 1
531 -14 l 2
531 -67 563 -103 609 -103 c 0
625 -103 641 -100 657 -95 c 0
671 -90 674 -89 680 -89 c 0
705 -89 728 -112 728 -139 c 0
728 -179 683 -203 606 -203 c 0
507 -203 431 -121 431 -14 c 2
431 35 l 1
378 -1 339 -14 280 -14 c 0
205 -14 149 7 103 51 c 0
57 96 33 153 33 219 c 0
33 284 57 342 103 386 c 0
149 430 205 451 281 451 c 0
341 451 388 435 431 401 c 1
431 525 l 1
415 525 l 2
389 525 379 527 369 534 c 0
357 544 349 559 349 575 c 0
349 591 358 608 373 617 c 0
382 623 389 624 415 624 c 2
531 624 l 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni0257
Encoding: 599 599
Width: 600
Flags: W
HStem: -14 100<273 289> 0 100<532 561> 351 100<273 289> 538 100<593 615>
VStem: 33 100<210 226> 431 100<210 226 402 466>
Fore
281 351 m 0
233 351 200 339 172 311 c 0
147 286 133 252 133 219 c 0
133 185 147 152 172 126 c 1
200 99 234 86 282 86 c 0
330 86 364 99 392 126 c 0
417 151 431 185 431 217 c 0
431 253 417 286 392 311 c 0
363 339 331 351 281 351 c 0
431 401 m 1
431 459 l 2
431 558 509 638 605 638 c 0
680 638 725 615 725 577 c 0
725 547 704 524 677 524 c 0
670 524 665 525 653 529 c 0
637 535 622 538 604 538 c 0
564 538 531 501 531 456 c 2
531 100 l 1
547 100 l 2
574 100 583 98 593 91 c 0
605 81 613 66 613 50 c 0
613 33 604 16 589 7 c 0
581 2 570 0 547 0 c 2
431 0 l 1
431 35 l 1
378 -1 339 -14 280 -14 c 0
205 -14 149 7 103 51 c 0
57 96 33 153 33 219 c 0
33 284 57 342 103 386 c 0
149 430 205 451 281 451 c 0
341 451 388 435 431 401 c 1
EndSplineSet
MinimumDistance: x15,-1
EndChar
StartChar: uni0258
Encoding: 600 600
Width: 600
Flags: W
HStem: -16 100<254 321> 172 88<144 438> 350 100<254.5 327.5>
Ref: 101 N -1 0 0 1 583 0
EndChar
StartChar: uni0259
Encoding: 601 601
Width: 600
Flags: W
HStem: -16 100<254.5 327.5> 174 88<144 438> 350 100<254 321>
Ref: 101 N -1 0 0 -1 583 434
EndChar
StartChar: uni025B
Encoding: 603 603
Width: 600
Flags: W
HStem: -16 100<286 320> 1 166<474 480> 178 100<286 365.108> 350 100<286 320>
VStem: 73 110<121 129> 94 110<310 318>
Ref: 1079 N -1 0 0 1 600 0
EndChar
StartChar: uni025C
Encoding: 604 604
Width: 600
Flags: W
HStem: -16 100<280 314> 1 166<120 126> 178 100<234.892 314> 350 100<280 314>
VStem: 396 110<310 318> 417 110<121 129>
Ref: 1079 N 1 0 0 1 0 0
EndChar
StartChar: uni025F
Encoding: 607 607
Width: 600
Flags: W
HStem: -205 100<165 309> 0 100<165 387 488 517> 337 100<165 387>
VStem: 388 100<-29 0 100 337>
Fore
388 1.37836e-07 m 1
320.667 2.24527e-07 186 0 186 0 c 2
161 0 150 2 141 9 c 0
128 19 120 34 120 50 c 0
120 67 129 83 144 93 c 0
153 99 161 100 186 100 c 2
388 100 l 1
388 337 l 1
186 337 l 2
161 337 150 339 141 347 c 1
128 356 120 372 120 387 c 0
120 404 129 421 144 430 c 0
153 436 160 437 186 437 c 2
488 437 l 1
488 100 l 1
498 100 l 2
524 100 534 98 544 91 c 0
557 81 564 66 564 50 c 0
564 33 555 16 540 7 c 0
532 2 520 0 498 0 c 2
488 9.59635e-06 l 1
488 -20 l 2
488 -125 406 -205 297 -205 c 2
183 -205 l 2
158 -205 147 -203 138 -195 c 1
125 -186 117 -170 117 -155 c 0
117 -138 127 -121 141 -112 c 0
150 -106 158 -105 183 -105 c 2
294 -105 l 2
351 -105 388 -72 388 -20 c 2
388 1.37836e-07 l 1
EndSplineSet
MinimumDistance: x13,-1 x12,14 y14,12 y14,13
EndChar
StartChar: uni0260
Encoding: 608 608
Width: 600
Flags: W
HStem: -205 100<193 321> -14 100<257 273> 351 100<257 273> 538 100<577 593>
VStem: 33 100<211 227> 410 100<-29 34 211 227 402 467>
Fore
271 351 m 0
195 351 133 292 133 219 c 0
133 145 195 86 271 86 c 0
347 86 410 145 410 217 c 0
410 292 349 351 271 351 c 0
410 401 m 1
410 459 l 2
410 558 488 638 584 638 c 0
659 638 704 615 704 577 c 0
704 547 683 524 656 524 c 0
649 524 644 525 632 529 c 0
616 535 601 538 583 538 c 0
543 538 510 501 510 456 c 2
510 -20 l 2
510 -126 428 -205 319 -205 c 2
207 -205 l 2
182 -205 171 -203 162 -195 c 1
149 -186 141 -171 141 -155 c 0
141 -138 150 -121 165 -112 c 0
174 -106 181 -105 207 -105 c 2
316 -105 l 2
373 -105 410 -72 410 -20 c 2
410 35 l 1
364 1 321 -14 269 -14 c 0
135 -14 33 86 33 218 c 0
33 351 135 451 269 451 c 0
323 451 371 434 410 401 c 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: uni0261
Encoding: 609 609
Width: 600
Flags: W
HStem: -205 100<193 321> -14 100<257 273> 351 100<257 273> 401 66<450.156 465>
VStem: 33 100<211 227> 410 100<-29 34 211 227 401.032 423.889> 510 0<396 400>
Fore
410 396 m 5
510 396 l 5
510 401 l 6
510 427 509 434 503 443 c 4
494 458 477 467 460 467 c 4
444 467 429 459 420 447 c 4
412 437 410 427 410 401 c 6
410 396 l 5
510 401 m 1
510 -20 l 2
510 -126 428 -205 319 -205 c 2
207 -205 l 2
182 -205 171 -203 162 -195 c 1
149 -186 141 -171 141 -155 c 0
141 -138 150 -121 165 -112 c 0
174 -106 181 -105 207 -105 c 2
316 -105 l 2
373 -105 410 -72 410 -20 c 2
410 35 l 1
364 1 321 -14 269 -14 c 0
135 -14 33 86 33 218 c 0
33 351 135 451 269 451 c 0
323 451 371 434 410 401 c 1
510 401 l 1
271 351 m 0
195 351 133 292 133 219 c 0
133 145 195 86 271 86 c 0
347 86 410 145 410 217 c 0
410 292 349 351 271 351 c 0
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni0265
Encoding: 613 613
Width: 600
Flags: W
HStem: -15 100<257.5 288> 415 20
VStem: 399 100<-89 46 -89 -89 151 164 152 335 164 335>
Ref: 104 S -1 0 0 -1 594 435
EndChar
StartChar: uni0266
Encoding: 614 614
Width: 600
Flags: W
HStem: 0 100<71 95 196 215 387 408 509 535> 350 100<316 342> 538 100<263 279>
VStem: 95 100<100 283 390 464> 409 100<100 288>
Fore
95 100 m 1
95 459 l 2
95 558 173 638 269 638 c 0
344 638 389 615 389 577 c 0
389 547 368 524 341 524 c 0
334 524 329 525 317 529 c 0
301 535 286 538 268 538 c 0
228 538 195 501 195 456 c 2
195 389 l 1
235 430 280 450 332 450 c 0
438 450 509 384 509 284 c 2
509 100 l 1
515 100 l 2
542 100 551 98 561 91 c 0
573 81 581 66 581 50 c 0
581 33 572 16 557 7 c 0
549 2 536 0 515 0 c 2
403 0 l 2
379 0 366 3 357 9 c 0
344 19 336 34 336 50 c 0
336 67 345 83 360 93 c 0
369 98 378 100 403 100 c 2
409 100 l 1
409 271 l 2
409 305 405 317 388 331 c 0
371 345 352 350 321 350 c 0
274 350 252 338 195 283 c 1
195 100 l 1
201 100 l 2
229 100 237 98 247 91 c 0
260 81 268 66 268 50 c 0
268 33 259 17 244 7 c 0
236 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 44 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
EndSplineSet
MinimumDistance: x10,-1
EndChar
StartChar: uni0267
Encoding: 615 615
Width: 600
Flags: W
HStem: 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni0268
Encoding: 616 616
Width: 600
Flags: W
HStem: 0 100<110 249 351 478> 154 100<158 249 350 446> 337 100<158 249> 518 105<219 335>
VStem: 105 390<194.191 208> 218 118<519 622> 250 100<100 154 254 337>
Fore
336 623 m 1
336 518 l 1
218 518 l 1
218 623 l 1
336 623 l 1
250 154 m 5
171 154 l 6
146 154 135 156 126 163 c 4
113 173 105 188 105 204 c 4
105 221 114 237 129 247 c 4
138 253 146 254 171 254 c 6
250 254 l 5
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
350 254 l 5
429 254 l 6
455 254 465 252 475 245 c 4
488 235 495 220 495 204 c 4
495 187 486 170 471 161 c 4
463 156 451 154 429 154 c 6
350 154 l 5
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 34 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 154 l 5
EndSplineSet
MinimumDistance: x17,-1 x16,18 y18,16 y18,17
EndChar
StartChar: uni0269
Encoding: 617 617
Width: 600
Flags: W
HStem: -16 100<424 441> 337 100<153 250>
VStem: 250 100<160 337>
Fore
350 437 m 1
350 173 l 2
350 120 382 84 428 84 c 0
444 84 460 87 476 92 c 0
490 97 493 98 499 98 c 0
524 98 547 75 547 48 c 0
547 8 502 -16 425 -16 c 0
326 -16 250 66 250 173 c 2
250 337 l 1
172 337 l 2
147 337 135 339 126 347 c 1
113 356 105 371 105 387 c 0
105 404 114 421 129 430 c 0
138 436 146 437 172 437 c 2
350 437 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni026A
Encoding: 618 618
Width: 600
Flags: W
HStem: 0 100<158 249 351 430> 337 100<158 249 351 446>
VStem: 250 100<100 337>
Fore
350 337 m 1
350 100 l 1
424 100 l 2
451 100 459 98 469 91 c 0
483 81 490 66 490 50 c 0
490 17 468 0 424 0 c 2
176 0 l 2
152 0 140 3 131 10 c 0
118 19 110 35 110 50 c 0
110 67 119 84 134 93 c 0
143 99 150 100 176 100 c 2
250 100 l 1
250 337 l 1
176 337 l 2
151 337 140 339 131 346 c 0
118 356 110 371 110 387 c 0
110 404 119 421 134 430 c 0
143 436 150 437 176 437 c 2
424 437 l 2
451 437 459 435 469 428 c 0
483 418 490 403 490 387 c 0
490 370 481 353 466 344 c 0
458 339 447 337 424 337 c 2
350 337 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni026B
Encoding: 619 619
Width: 600
Flags: W
HStem: 0 100<110 249 351 490> 179 105<388 393> 281 104<211 215> 524 100<158 249>
VStem: 250 100<100 186 380 524>
Fore
250 379 m 1
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
350 307 l 1
368 292 380 284 389 284 c 0
400 284 413 297 438 330 c 0
458 357 468 364 488 364 c 0
515 364 538 341 538 314 c 0
538 294 530 280 497 241 c 0
460 197 430 179 391 179 c 0
378 179 364 182 350 187 c 1
350 100 l 1
472 100 l 2
499 100 507 98 517 91 c 0
530 81 538 66 538 50 c 0
538 33 529 17 514 7 c 0
507 3 492 0 472 0 c 2
128 0 l 2
105 0 91 3 83 10 c 0
70 19 62 35 62 50 c 0
62 67 71 84 86 93 c 0
95 99 102 100 128 100 c 2
250 100 l 1
250 257 l 1
231 273 219 281 212 281 c 0
202 281 192 272 165 239 c 0
139 207 131 201 113 201 c 0
86 201 62 225 62 252 c 0
62 271 72 290 101 322 c 0
140 367 172 385 213 385 c 0
226 385 238 384 250 379 c 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni026D
Encoding: 621 621
Width: 600
Flags: W
HStem: -203 100<424 441> 524 100<153 250>
VStem: 250 100<-27 524>
Fore
350 624 m 1
350 -14 l 6
350 -67 382 -103 428 -103 c 0
444 -103 460 -100 476 -95 c 0
490 -90 493 -89 499 -89 c 0
524 -89 547 -112 547 -139 c 0
547 -179 502 -203 425 -203 c 0
326 -203 250 -121 250 -14 c 6
250 524 l 1
172 524 l 2
147 524 135 526 126 534 c 1
112 543 105 558 105 574 c 0
105 592 114 608 129 617 c 0
138 623 147 624 172 624 c 2
350 624 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni026F
Encoding: 623 623
Width: 600
Flags: W
HStem: -13 100<170 177 376 388> 0 20<463 556> 337 99.033<31 41 237.633 251.969 447.955 462.969 564 576> 416 21<47 141 258 352 468 556>
VStem: -19 160<385 389> 41 100<116 337> 192 160<385 389> 463 100<132 337 132 337>
Ref: 109 S -1 0 0 -1 604 437
EndChar
StartChar: uni0270
Encoding: 624 624
Width: 600
Flags: W
HStem: -205 21G<463 556> -13 100<171 189 377 389> 337 99.8486<40 40 237.633 251.969 447.872 462.969 564 576> 417 20G<47 141 258 352 468 556>
VStem: 41 100<115 337> 252 100<132 337> 463 100<-105 23 132 337> 463 160<-157 -153>
Fore
463 -205 m 1
463 24 l 1
428 -4 408 -13 378 -13 c 0
339 -13 306 3 276 36 c 1
245 2 213 -13 172 -13 c 0
97 -13 41 43 41 118 c 2
41 337 l 1
3 337 -19 355 -19 387 c 0
-19 420 3 437 47 437 c 2
141 437 l 1
141 126 l 2
141 97 150 87 176 87 c 0
202 87 218 96 252 132 c 1
252 337 l 1
214 337 192 356 192 387 c 0
192 404 201 420 216 430 c 0
224 435 237 437 258 437 c 2
352 437 l 1
352 126 l 2
352 98 362 87 387 87 c 0
414 87 433 98 463 132 c 1
463 337 l 1
424 337 402 355 402 387 c 0
402 404 411 420 426 430 c 0
434 435 447 437 468 437 c 2
556 437 l 2
580 437 593 434 602 427 c 0
615 418 623 402 623 387 c 0
623 355 601 337 563 337 c 1
563 -105 l 1
601 -106 623 -124 623 -155 c 0
623 -181 606 -200 577 -203 c 0
566 -205 564 -205 556 -205 c 2
463 -205 l 1
EndSplineSet
EndChar
StartChar: uni0271
Encoding: 625 625
Width: 600
Flags: W
HStem: -203 100<381 397> 0 21G<48 136 252 346> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367> 350 100<216 228 427 434> 417 20G<48 141>
VStem: 41 100<100 305> 252 100<100 305> 252 160<40.1911 53> 463 100<-27 325>
Fore
563 319 m 2
563 -14 l 2
563 -121 487 -203 388 -203 c 0
311 -203 266 -179 266 -139 c 0
266 -112 289 -89 314 -89 c 0
320 -89 323 -90 337 -95 c 0
353 -100 369 -103 385 -103 c 0
431 -103 463 -67 463 -14 c 2
463 311 l 2
463 340 454 350 428 350 c 0
402 350 386 341 352 305 c 1
352 100 l 1
390 100 412 81 412 50 c 0
412 33 403 17 388 7 c 0
380 2 367 0 346 0 c 2
252 0 l 1
252 311 l 2
252 339 242 350 217 350 c 0
190 350 171 339 141 305 c 1
141 100 l 1
180 100 202 82 202 50 c 0
202 33 193 17 178 7 c 0
170 2 157 0 136 0 c 2
48 0 l 2
24 0 11 3 2 10 c 0
-11 19 -19 35 -19 50 c 0
-19 82 3 100 41 100 c 1
41 337 l 1
3 338 -19 356 -19 387 c 0
-19 413 -2 432 27 435 c 0
38 437 40 437 48 437 c 2
141 437 l 1
141 413 l 1
176 441 196 450 226 450 c 0
265 450 298 434 328 401 c 1
359 435 391 450 432 450 c 0
507 450 563 394 563 319 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni0272
Encoding: 626 626
Width: 600
Flags: W
HStem: -203 100<10 26> 0 21G<416 505> 0.144728 99.8553<409 409 510 525.03> 350 100<314 334> 417 20G<101 195>
VStem: 95 100<-27 282> 410 100<100 293>
Fore
95 -14 m 2
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 16 547 7 c 0
539 2 526 0 505 0 c 2
416 0 l 2
371 0 349 17 349 50 c 0
349 82 371 100 410 100 c 1
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 -14 l 2
195 -121 119 -203 20 -203 c 0
-57 -203 -102 -179 -102 -139 c 0
-102 -112 -79 -89 -54 -89 c 0
-48 -89 -45 -90 -31 -95 c 0
-15 -100 1 -103 17 -103 c 0
63 -103 95 -67 95 -14 c 2
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni0273
Encoding: 627 627
Width: 600
Flags: W
HStem: -203 100<583 599> 0 100<71 94 196 215> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<-27 293>
Fore
510 282 m 2
510 -14 l 2
510 -67 542 -103 588 -103 c 0
604 -103 620 -100 636 -95 c 0
650 -90 653 -89 659 -89 c 0
684 -89 707 -112 707 -139 c 0
707 -179 662 -203 585 -203 c 0
486 -203 410 -121 410 -14 c 2
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni0275
Encoding: 629 629
Width: 600
Flags: W
HStem: -16 100<282 314> 178 80<150 450> 350 100<282 314>
VStem: 42 516<208 224>
Ref: 1257 N 1 0 0 1 0 0
EndChar
StartChar: uni0279
Encoding: 633 633
Width: 600
Flags: W
HStem: 337 100<178 187 203 346 448 491 448 524>
VStem: 347 100<190 337>
Ref: 114 S -1 0 0 -1 625 437
EndChar
StartChar: uni027A
Encoding: 634 634
Width: 600
Flags: W
HStem: 542 100<178 187 203 346 448 491 448 524>
VStem: 347 100<190 542>
Ref: 636 N -1 0 0 -1 625 437
EndChar
StartChar: uni027B
Encoding: 635 635
Width: 600
Flags: W
HStem: -203 100<518 534> -12 100<179 184> 337 100<198 346 448 524>
VStem: 347 100<-27 64 190 337>
Fore
447 337 m 1
447 -14 l 2
447 -67 479 -103 525 -103 c 0
541 -103 557 -100 573 -95 c 0
587 -90 590 -89 596 -89 c 0
621 -89 644 -112 644 -139 c 0
644 -179 599 -203 522 -203 c 0
423 -203 347 -121 347 -14 c 2
347 65 l 1
267 5 229 -12 180 -12 c 0
145 -12 113 0 82 26 c 0
61 43 54 55 54 73 c 0
54 101 77 124 104 124 c 0
118 124 128 119 143 106 c 0
158 93 168 88 182 88 c 0
214 88 252 112 347 190 c 1
347 337 l 1
208 337 l 2
180 337 172 339 162 346 c 0
149 356 141 371 141 387 c 0
141 404 150 421 165 430 c 0
172 434 187 437 208 437 c 2
505 437 l 2
528 437 542 434 551 427 c 0
563 418 571 402 571 387 c 0
571 370 562 353 547 344 c 0
538 338 531 337 505 337 c 2
447 337 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni027C
Encoding: 636 636
Width: 600
Flags: W
HStem: -205 100<101 177 279 422> 337 100<134 177> 349 100<438 447>
VStem: 178 100<-105 247>
Fore
278 437 m 1
278 372 l 1
358 432 396 449 445 449 c 0
480 449 512 437 543 411 c 0
564 394 571 382 571 364 c 0
571 336 548 313 521 313 c 0
507 313 497 318 482 331 c 0
467 344 457 349 443 349 c 0
411 349 373 325 278 247 c 1
278 -105 l 1
417 -105 l 2
445 -105 453 -107 463 -114 c 0
476 -124 484 -139 484 -155 c 0
484 -172 475 -189 460 -198 c 0
453 -202 438 -205 417 -205 c 2
120 -205 l 2
97 -205 83 -202 74 -195 c 0
62 -186 54 -170 54 -155 c 0
54 -138 63 -121 78 -112 c 0
87 -106 94 -105 120 -105 c 2
178 -105 l 1
178 337 l 1
143 337 l 2
118 337 107 339 98 347 c 1
85 356 77 371 77 387 c 0
77 404 86 420 101 429 c 1
107 434 126 437 143 437 c 2
278 437 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni027D
Encoding: 637 637
Width: 600
Flags: W
HStem: -203 100<349 365> 337 100<125.448 178> 349 100<431.619 447>
VStem: 178 100<-27 247>
Fore
278 247 m 1
278 -14 l 2
278 -67 310 -103 356 -103 c 0
372 -103 388 -100 404 -95 c 0
418 -90 421 -89 427 -89 c 0
452 -89 475 -112 475 -139 c 0
475 -179 430 -203 353 -203 c 0
254 -203 178 -121 178 -14 c 2
178 337 l 1
143 337 l 2
118 337 107 339 98 347 c 1
85 356 77 371 77 387 c 0
77 404 86 420 101 429 c 1
107 434 126 437 143 437 c 2
278 437 l 1
278 372 l 1
358 432 396 449 445 449 c 0
480 449 512 437 543 411 c 0
564 394 571 382 571 364 c 0
571 336 548 313 521 313 c 0
507 313 497 318 482 331 c 0
467 344 457 349 443 349 c 0
411 349 373 325 278 247 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni0282
Encoding: 642 642
Width: 600
Flags: W
HStem: -203 100<247 265> -16 100<281 324> 350 100<281 324>
VStem: 73 100<-27 5> 92 110<312 317> 417 110<122 133>
Fore
173 6 m 1
173 -14 l 2
173 -67 205 -103 251 -103 c 0
267 -103 283 -100 299 -95 c 0
313 -90 316 -89 322 -89 c 0
347 -89 370 -112 370 -139 c 0
370 -179 325 -203 248 -203 c 0
149 -203 73 -121 73 -14 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 345 173 291 179 c 0
151 194 92 234 92 313 c 0
92 393 178 450 298 450 c 0
347 450 388 442 427 424 c 1
435 443 444 450 459 450 c 0
491 450 506 430 506 384 c 2
506 347 l 2
506 321 504 311 497 301 c 0
487 289 471 281 456 281 c 0
428 281 416 299 404 321 c 1
376 341 343 350 301 350 c 0
250 350 202 333 202 315 c 0
202 306 212 297 228 291 c 0
242 286 248 285 312 276 c 0
387 266 427 255 457 238 c 0
501 214 527 171 527 125 c 0
527 43 433 -16 304 -16 c 0
255 -16 210 -9 173 6 c 1
EndSplineSet
MinimumDistance: x30,-1
EndChar
StartChar: uni0283
Encoding: 643 643
Width: 600
Flags: W
HStem: -123 100<169 185> 538 100<425 441>
VStem: 254 100<53 469>
Fore
254 66 m 6
254 459 l 6
254 558 332 638 428 638 c 4
503 638 548 615 548 577 c 4
548 547 527 524 500 524 c 4
493 524 488 525 476 529 c 4
460 535 445 538 427 538 c 4
387 538 354 501 354 456 c 6
354 66 l 6
354 -41 278 -123 179 -123 c 0
102 -123 57 -99 57 -59 c 0
57 -32 80 -9 105 -9 c 0
111 -9 114 -10 128 -15 c 0
144 -20 160 -23 176 -23 c 0
222 -23 254 13 254 66 c 6
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni0284
Encoding: 644 644
Width: 600
Flags: W
HStem: -205 100<75 219> 0 100<75 297 399 427> 337 100<75 297> 538 100<459.642 476>
VStem: 298 100<-29 0 100 337 437 467>
Fore
298 1.37836e-07 m 1
230.667 2.24527e-07 163.333 -5.23342e-08 96 0 c 1
71 0 60 2 51 9 c 0
38 19 30 34 30 50 c 0
30 67 39 83 54 93 c 0
63 99 71 100 96 100 c 1
298 100 l 1
298 337 l 1
96 337 l 2
71 337 60 339 51 347 c 1
38 356 30 372 30 387 c 0
30 404 39 421 54 430 c 0
63 436 70 437 96 437 c 2
298 437 l 1
298 459 l 2
298 558 376 638 472 638 c 0
547 638 592 615 592 577 c 0
592 547 571 524 544 524 c 0
537 524 532 525 520 529 c 0
504 535 489 538 471 538 c 0
431 538 398 501 398 456 c 2
398 100 l 1
408 100 l 2
434 100 444 98 454 91 c 0
467 81 474 66 474 50 c 0
474 33 465 16 450 7 c 0
442 2 430 0 408 0 c 2
398 9.59635e-06 l 1
398 -20 l 2
398 -125 316 -205 207 -205 c 2
93 -205 l 2
68 -205 57 -203 48 -195 c 1
35 -186 27 -170 27 -155 c 0
27 -138 37 -121 51 -112 c 0
60 -106 68 -105 93 -105 c 2
204 -105 l 2
261 -105 298 -72 298 -20 c 2
298 1.37836e-07 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: uni0285
Encoding: 645 645
Width: 600
Flags: W
HStem: -123 100<420 436> 538 100<164 180>
VStem: 251 100<53 469>
Ref: 643 N -1 0 0 1 605 0
EndChar
StartChar: uni0287
Encoding: 647 647
Width: 600
Flags: W
HStem: -16 20<369.5 386> 491 100<147 328 217 261 428 463>
VStem: 328 100<50 138 238 434 434 444.5>
Ref: 116 N -1 0 0 -1 542 575
EndChar
StartChar: uni0288
Encoding: 648 648
Width: 600
Flags: W
HStem: -206 100<285 317> 337 100<61 114 215 413>
VStem: 114 100<-68 337 437 546>
Fore
214 337 m 1
214 -49 l 2
214 -70 216 -79 222 -86 c 0
234 -99 262 -106 300 -106 c 0
353 -106 401 -95 446 -72 c 0
463 -63 470 -61 481 -61 c 0
508 -61 529 -84 529 -112 c 0
529 -136 517 -149 479 -166 c 0
430 -189 351 -206 299 -206 c 0
185 -206 114 -153 114 -68 c 2
114 337 l 1
79 337 l 2
54 337 43 339 33 347 c 0
21 356 13 372 13 387 c 0
13 404 22 421 37 430 c 0
46 436 53 437 79 437 c 2
114 437 l 1
114 525 l 2
114 551 116 561 124 571 c 0
133 583 148 591 164 591 c 0
181 591 198 582 207 567 c 0
213 558 214 551 214 525 c 2
214 437 l 1
395 437 l 2
422 437 430 435 441 428 c 1
453 418 461 403 461 387 c 0
461 370 452 353 437 344 c 0
429 339 417 337 395 337 c 2
214 337 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni0289
Encoding: 649 649
Width: 600
Flags: W
HStem: -13 100<269 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 154 100<61 95 197 397 510.031 527.235> 337 100<61 95 349.509 409>
VStem: 95 100<254 337> 410 100<255 337>
Fore
409.053 154 m 1
195.101 154 l 1
196.979 108.434 225.079 87 283 87 c 0
332.696 87 357.695 99.8422 409.053 154 c 1
510 154.037 m 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
228 -13 186 0 154 24 c 0
114.453 53.66 95.4334 96.0269 95.0073 154 c 1
79 154 l 2
54 154 43 156 34 163 c 0
21 173 13 188 13 204 c 0
13 221 22 237 37 247 c 0
46 253 54 254 79 254 c 2
95 254 l 1
95 337 l 1
68 337 l 2
35 337 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 254 l 1
410 254 l 1
410 337 l 1
375 337 l 2
350 337 345 336 330 347 c 24
316 358 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
510 253.972 l 1
532.336 253.711 541.668 251.533 551 245 c 0
564 235 571 220 571 204 c 0
571 187 562 170 547 161 c 0
539.628 156.393 528.86 154.333 510 154.037 c 1
EndSplineSet
MinimumDistance: x3,-1 x23,25 y25,23 y25,24
EndChar
StartChar: uni028C
Encoding: 652 652
Width: 600
Flags: W
HStem: 417 20<53 66 66 201 389 402 402 534>
Ref: 118 N -1 0 0 -1 600 437
EndChar
StartChar: uni028D
Encoding: 653 653
Width: 600
Flags: W
HStem: 417 20<53 66 66 159 429 442 442 534>
Ref: 119 S -1 0 0 -1 600 437
EndChar
StartChar: uni028E
Encoding: 654 654
Width: 600
Flags: W
HStem: 0 20<74 87 87 179 410 423 423 513> 542 100<298 303 413 513>
Ref: 121 S -1 0 0 -1 600 437
EndChar
StartChar: uni0290
Encoding: 656 656
Width: 600
Flags: W
HStem: -203 100<593 613> 0 100<245 419> 337 100<197 345>
VStem: 85 434<0 83> 97 100<309 336> 97 409<356 436> 419 100<-27 -1>
DStem: 346 337 506 356 85 83 244 100
Fore
419 0 m 1
85 0 l 1
85 83 l 1
346 337 l 1
197 337 l 1
197 328 l 2
197 301 195 293 188 283 c 0
178 270 163 262 147 262 c 0
130 262 113 271 104 286 c 0
99 295 97 305 97 328 c 2
97 437 l 1
506 437 l 1
506 356 l 1
244 100 l 1
419 100 l 1
421 135 439 154 469 154 c 0
486 154 503 145 512 130 c 0
518 121 519 114 519 88 c 2
519 -14 l 2
519 -67 551 -103 597 -103 c 0
613 -103 629 -100 645 -95 c 0
659 -90 662 -89 668 -89 c 0
693 -89 716 -112 716 -139 c 0
716 -179 671 -203 594 -203 c 0
495 -203 419 -121 419 -14 c 2
419 0 l 1
EndSplineSet
MinimumDistance: x17,-1 y2,0 x0,2 x0,1
EndChar
StartChar: uni0294
Encoding: 660 660
Width: 600
Flags: W
HStem: 0 100<216 253 354 376> 498 100<296 312>
VStem: 104 100<448 474> 253 100<100 228> 417 100<408 420>
Fore
353 228 m 1
353 100 l 1
369 100 l 2
395 100 405 98 415 91 c 0
428 81 435 66 435 50 c 0
435 33 426 17 411 7 c 0
403 2 391 0 369 0 c 2
237 0 l 2
212 0 201 2 191 10 c 0
179 19 171 34 171 50 c 0
171 67 180 84 195 93 c 0
204 99 213 100 237 100 c 2
253 100 l 1
253 296 l 1
381 345 417 371 417 414 c 0
417 464 373 498 309 498 c 0
271 498 237 490 204 474 c 1
204 460 l 2
204 434 202 424 195 415 c 0
185 402 169 394 154 394 c 0
137 394 120 404 111 418 c 0
106 426 104 437 104 460 c 2
104 539 l 1
200 585 244 598 308 598 c 0
432 598 517 521 517 409 c 0
517 328 474 281 353 228 c 1
EndSplineSet
MinimumDistance: x24,-1
EndChar
StartChar: uni0295
Encoding: 661 661
Width: 600
Flags: W
HStem: 0 100<245 267 368 405> 498 100<309 325>
VStem: 417 100<100 228 408 420 448 474>
Ref: 660 N -1 0 0 1 621 0
EndChar
StartChar: uni0296
Encoding: 662 662
Width: 600
Flags: W
HStem: 483 100<245 267 309 325 368 405>
VStem: 417 100<109 135 163 175 355 483>
Ref: 660 N -1 0 0 -1 621 583
EndChar
StartChar: uni0297
Encoding: 663 663
Width: 600
Flags: W
HStem: -205 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<51 323>
Fore
447 563 m 2
457 559 l 1
470 577 482 583 499 583 c 0
517 583 533 574 542 559 c 0
548 550 549 542 549 517 c 2
549 433 l 2
549 408 547 397 540 388 c 0
530 375 515 367 499 367 c 0
486 367 472 373 464 381 c 0
456 389 454 396 450 420 c 0
445 444 435 457 406 473 c 0
379 488 343 497 309 497 c 0
207 497 133 420 133 315 c 2
133 60 l 2
133 -40 210 -105 330 -105 c 0
375 -105 415 -97 440 -82 c 0
451 -76 451 -76 478 -48 c 0
489 -37 501 -32 514 -32 c 0
541 -32 564 -55 564 -82 c 0
564 -105 545 -131 511 -155 c 0
467 -187 399 -205 327 -205 c 0
157 -205 33 -94 33 58 c 2
33 315 l 2
33 475 151 597 305 597 c 0
357 597 392 589 447 563 c 2
EndSplineSet
MinimumDistance: x12,-1
EndChar
StartChar: uni0298
Encoding: 664 664
Width: 600
Flags: W
HStem: -14 100<293 309> 232 120<293 309> 497 100<293 309>
VStem: 21 100<274 306> 240 120<286 294> 479 100<274 306>
Fore
300 352 m 0
334 352 360 325 360 291 c 0
360 259 333 232 300 232 c 0
267 232 240 259 240 292 c 0
240 325 267 352 300 352 c 0
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni029C
Encoding: 668 668
Width: 600
Flags: W
HStem: 0 100<123 126 227.031 237.034 366.966 376.969 477.031 487.034> 178 100<228 376> 337 100<227.031 237.034 366.966 376.969>
VStem: 127 100<100 177 279 337> 377 100<100 177 279 337>
Fore
477 0 m 2
377 0 l 2
349.4 -0 327 22.4004 327 50 c 0
327 77.5996 349.4 100 377 100 c 1
377 178 l 1
227 178 l 1
227 100 l 1
254.6 100 277 77.5996 277 50 c 0
277 22.4004 254.6 0 227 0 c 2
127 0 l 2
99.4004 -0 77 22.4004 77 50 c 0
77 77.5996 99.4004 100 127 100 c 1
127 337 l 1
94 340 75 358 75 387 c 0
75 404 84 421 99 430 c 0
108 436 116 437 141 437 c 2
227 437 l 2
254.6 437 277 414.6 277 387 c 0
277 359.4 254.6 337 227 337 c 1
227 278 l 1
377 278 l 1
377 337 l 1
349.4 337 327 359.4 327 387 c 0
327 414.6 349.4 437 377 437 c 2
463 437 l 2
490 437 499 435 509 428 c 0
521 418 529 403 529 387 c 0
529 358 510 340 477 337 c 1
477 100 l 1
504.6 100 527 77.5996 527 50 c 0
527 22.4004 504.6 0 477 0 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni029E
Encoding: 670 670
Width: 600
Flags: W
HStem: 524 100<79 133 131 175 490 523 490 522.274>
VStem: 33 251<572 576> 81 245<235 240> 389 100<100 336 460 524>
DStem: 133 524 268 537 293 383 371 446 293 383 389 337 175 287 310 274
Ref: 107 N -1 0 0 -1 604 624
EndChar
StartChar: uni029F
Encoding: 671 671
Width: 600
Flags: W
HStem: 0 100<114 163 265 439> 0 195<482 498> 337 100<114 163 265 306>
VStem: 164 100<100 337> 439 100<100 144>
Fore
264 337 m 1
264 100 l 1
439 100 l 1
439 128 l 2
439 155 441 164 448 174 c 0
458 188 473 195 489 195 c 0
506 195 522 186 532 171 c 0
538 162 539 153 539 128 c 2
539 0 l 1
132 0 l 2
109 0 95 3 87 10 c 0
74 19 66 34 66 50 c 0
66 67 75 84 90 93 c 0
99 99 106 100 132 100 c 2
164 100 l 1
164 337 l 1
132 337 l 2
107 337 96 339 87 346 c 0
74 356 66 371 66 387 c 0
66 404 75 421 90 430 c 0
99 436 106 437 132 437 c 2
297 437 l 2
324 437 332 435 342 428 c 0
355 418 363 403 363 387 c 0
363 370 354 353 339 344 c 0
331 339 320 337 297 337 c 2
264 337 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni02A0
Encoding: 672 672
Width: 600
Flags: W
HStem: -205 100<353 430 532 561> 10 100<273 289> 350 100<273 289> 538 100<593 615>
VStem: 33 100<223 243> 307 306<-157 -153> 431 100<-105 65 223 243 393 467>
Fore
281 350 m 0
240 350 207 340 181 321 c 0
152 299 133 263 133 230 c 0
133 197 152 161 181 139 c 0
206 120 240 110 282 110 c 0
324 110 358 120 383 139 c 0
412 161 431 197 431 229 c 0
431 300 370 350 281 350 c 0
431 392 m 1
431 459 l 2
431 558 509 638 605 638 c 0
680 638 725 615 725 577 c 0
725 547 704 524 677 524 c 0
670 524 665 525 653 529 c 0
637 535 622 538 604 538 c 0
564 538 531 501 531 456 c 2
531 -105 l 1
547 -105 l 2
574 -105 583 -107 593 -114 c 0
605 -124 613 -139 613 -155 c 0
613 -172 604 -188 589 -198 c 0
581 -203 569 -205 547 -205 c 2
373 -205 l 2
348 -205 337 -203 327 -195 c 0
314 -185 307 -171 307 -155 c 0
307 -138 316 -121 331 -112 c 0
339 -107 349 -105 373 -105 c 2
431 -105 l 1
431 66 l 1
379 26 334 10 275 10 c 0
136 10 33 101 33 224 c 0
33 354 137 450 277 450 c 0
340 450 382 434 431 392 c 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: uni02A1
Encoding: 673 673
Width: 600
Flags: W
HStem: 0 100<216 253 354 376> 148 100<153 253> 498 100<296 312>
VStem: 104 100<448 474> 253 100<100 148> 417 100<408 420>
Fore
253 148 m 1
170 148 l 2
126 148 104 165 104 198 c 0
104 214 111 229 124 239 c 0
135 246 143 248 170 248 c 2
253 248 l 1
253 296 l 1
381 345 417 371 417 414 c 0
417 464 373 498 309 498 c 0
271 498 237 490 204 474 c 1
204 460 l 2
204 434 202 424 195 415 c 0
185 402 169 394 154 394 c 0
137 394 120 404 111 418 c 0
106 426 104 437 104 460 c 2
104 539 l 1
200 585 244 598 308 598 c 0
432 598 517 521 517 409 c 0
517 328 474 281 353 228 c 1
353 100 l 1
369 100 l 2
395 100 405 98 415 91 c 0
428 81 435 66 435 50 c 0
435 33 426 17 411 7 c 0
403 2 391 0 369 0 c 2
237 0 l 2
212 0 201 2 191 10 c 0
179 19 171 34 171 50 c 0
171 67 180 84 195 93 c 0
204 99 213 100 237 100 c 2
253 100 l 1
253 148 l 1
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni02A2
Encoding: 674 674
Width: 600
Flags: W
HStem: 0 100<245 267 368 405> 148 100<368 468> 498 100<309 325>
VStem: 417 100<100 148 408 420 448 474>
Ref: 673 N -1 0 0 1 621 0
EndChar
StartChar: circumflex
Encoding: 710 710
Width: 600
Flags: W
DStem: 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567
Fore
301 607 m 1
188 510 l 2
177 501 169 497 160 497 c 0
141 497 125 514 125 532 c 0
125 546 127 549 149 567 c 2
301 696 l 1
452 567 l 2
455 565 459 562 461 560 c 0
472 551 476 543 476 532 c 0
476 514 460 497 442 497 c 0
433 497 424 501 413 510 c 2
301 607 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: caron
Encoding: 711 711
Width: 600
Flags: HMW
HStem: 566 20<301 301>
Fore
301 586 m 1
413 682 l 2
425 693 432 696 442 696 c 0
460 696 476 679 476 660 c 0
476 649 472 641 461 632 c 2
452 625 l 1
301 497 l 1
149 625 l 2
127 643 125 647 125 660 c 0
125 679 141 696 160 696 c 0
169 696 175 693 188 682 c 2
301 586 l 1
EndSplineSet
EndChar
StartChar: uni02D0
Encoding: 720 720
Width: 600
Flags: W
HStem: 0 190.963<299 304> 246.037 190.963<299 304>
VStem: 208.781 182.439<16 19 416 421>
Fore
235 437 m 10
365 437 l 18
390 437 396 423 388 406 c 10
318 261 l 18
309 241 291 241 282 261 c 10
212 406 l 18
204 423 210 437 235 437 c 10
235 0 m 18
210 0 204 14 212 31 c 10
282 176 l 18
291 196 309 196 318 176 c 10
388 31 l 18
396 14 390 0 365 0 c 10
235 0 l 18
EndSplineSet
EndChar
StartChar: uni02D1
Encoding: 721 721
Width: 600
Flags: W
HStem: 246.037 190.963<299 304>
VStem: 208.704 182.592<418 422>
Fore
235 437 m 10
365 437 l 18
390 437 396 423 388 406 c 10
318 261 l 18
309 241 291 241 282 261 c 10
212 406 l 18
204 423 210 437 235 437 c 10
EndSplineSet
EndChar
StartChar: breve
Encoding: 728 728
Width: 600
Flags: HMW
HStem: 503 68<272.5 327.5>
Fore
159 687 m 0
179 687 186 678 193 647 c 0
203 601 245 571 300 571 c 0
355 571 397 601 407 647 c 0
414 678 421 687 441 687 c 0
461 687 475 672 475 649 c 0
475 573 392 503 300 503 c 0
208 503 125 573 125 649 c 0
125 672 139 687 159 687 c 0
EndSplineSet
EndChar
StartChar: dotaccent
Encoding: 729 729
Width: 600
Flags: W
HStem: 534 120<289.067 304>
VStem: 240 120<592 598>
Fore
300 654 m 0
334 654 360 627 360 593 c 0
360 561 333 534 300 534 c 0
267 534 240 561 240 594 c 0
240 627 267 654 300 654 c 0
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: ring
Encoding: 730 730
Width: 600
Flags: HMW
HStem: 486 54<281 318.5> 674 53<281 319>
VStem: 177 53<589 625> 370 53<588.5 624.5>
Fore
300 727 m 0
368 727 423 672 423 605 c 0
423 541 366 486 300 486 c 0
233 486 177 541 177 607 c 0
177 672 233 727 300 727 c 0
300 674 m 0
262 674 230 643 230 607 c 0
230 571 262 540 300 540 c 0
337 540 370 571 370 606 c 0
370 643 338 674 300 674 c 0
EndSplineSet
EndChar
StartChar: ogonek
Encoding: 731 731
Width: 600
Flags: HMW
HStem: -208 76<343.5 357>
VStem: 250 77<-118.5 -96>
Fore
329 0 m 1
427 0 l 1
354 -49 327 -80 327 -112 c 0
327 -125 336 -132 351 -132 c 0
363 -132 373 -128 402 -114 c 0
412 -109 417 -108 424 -108 c 0
446 -108 463 -125 463 -146 c 0
463 -164 452 -178 428 -189 c 0
401 -201 371 -208 344 -208 c 0
286 -208 250 -174 250 -119 c 0
250 -70 272 -36 329 0 c 1
EndSplineSet
EndChar
StartChar: tilde
Encoding: 732 732
Width: 600
Flags: W
HStem: 523 69<371 378> 587 69<224 229>
Fore
453 656 m 0
470 656 485 642 485 628 c 0
485 613 477 598 456 571 c 0
429 537 405 523 376 523 c 0
354 523 321 537 277 566 c 0
250 584 241 587 227 587 c 0
209 587 201 580 172 541 c 0
164 530 156 526 146 526 c 0
129 526 115 540 115 556 c 0
115 570 125 590 142 611 c 0
167 640 196 656 225 656 c 0
248 656 265 649 315 618 c 0
349 598 362 592 373 592 c 0
388 592 392 596 414 626 c 0
428 646 441 656 453 656 c 0
EndSplineSet
EndChar
StartChar: hungarumlaut
Encoding: 733 733
Width: 600
Flags: W
DStem: 248 679 291 622 146 569 189 512 412 679 455 622 310 569 353 512
Fore
291 622 m 2
189 512 l 2
180 502 169 496 160 496 c 0
142 496 125 514 125 533 c 0
125 544 126 546 146 569 c 1
248 679 l 2
259 690 266 694 277 694 c 0
295 694 311 677 311 658 c 0
311 647 306 638 291 622 c 2
455 622 m 2
353 512 l 2
343 502 333 496 324 496 c 0
306 496 289 514 289 533 c 0
289 544 290 546 310 569 c 1
412 679 l 2
422 690 430 694 441 694 c 0
459 694 475 677 475 658 c 0
475 647 470 638 455 622 c 2
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: gravecomb
Encoding: 768 768
Width: 600
Flags: W
DStem: 148 624 194 680 281 512 327 569
Ref: 96 N 1 0 0 1 0 0
EndChar
StartChar: acutecomb
Encoding: 769 769
Width: 600
Flags: W
DStem: 406 680 452 624 273 569 319 512
Ref: 180 N 1 0 0 1 0 0
EndChar
StartChar: uni0302
Encoding: 770 770
Width: 600
Flags: W
DStem: 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567 301 696 301 607 149 567 188 510 301 607 301 696 413 510 452 567
Fore
301 607 m 1
188 510 l 2
177 501 169 497 160 497 c 0
141 497 125 514 125 532 c 0
125 546 127 549 149 567 c 2
301 696 l 1
452 567 l 2
455 565 459 562 461 560 c 0
472 551 476 543 476 532 c 0
476 514 460 497 442 497 c 0
433 497 424 501 413 510 c 2
301 607 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: tildecomb
Encoding: 771 771
Width: 600
Flags: W
HStem: 523 69<371 378> 587 69<224 229>
Ref: 732 N 1 0 0 1 0 0
EndChar
StartChar: uni0304
Encoding: 772 772
Width: 600
Flags: W
HStem: 546 80<178 422>
Ref: 175 N 1 0 0 1 0 0
EndChar
StartChar: uni0305
Encoding: 773 773
Width: 600
Flags: W
HStem: 546 80<103 503>
VStem: 55 490<585 588>
Fore
108 626 m 2
492 626 l 2
515 626 527 623 534 615 c 0
540 608 545 594 545 586 c 0
545 561 525 546 492 546 c 2
108 546 l 2
83 546 75 548 66 558 c 0
60 566 55 578 55 586 c 0
55 611 74 626 108 626 c 2
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: uni0306
Encoding: 774 774
Width: 600
Flags: W
HStem: 503 68<272.5 327.5>
Ref: 728 N 1 0 0 1 0 0
EndChar
StartChar: uni0307
Encoding: 775 775
Width: 600
Flags: W
HStem: 534 120<289.067 304>
VStem: 240 120<592 598>
Ref: 729 N 1 0 0 1 0 0
EndChar
StartChar: uni0308
Encoding: 776 776
Width: 600
Flags: W
VStem: 136 120<577.5 610> 344 120<577.5 610>
Ref: 168 N 1 0 0 1 0 0
EndChar
StartChar: hookabovecomb
Encoding: 777 777
Width: 600
Flags: W
HStem: 674 53<289 305>
VStem: 177 53<597.668 612> 274 52<477 486> 370 53<595 612>
Fore
300 727 m 16
364 727 423 677 423 610 c 0
423 582.596 413.675 545.527 381 520 c 0
337 486 326 499 326 484 c 2
326 478 l 2
326 463 315 451 300 451 c 0
285 451 274 463 274 478 c 2
274 484 l 2
274 555 309 533 345 560 c 0
365 574 370 585.706 370 607 c 16
370 643 338 674 300 674 c 8
261.241 674 230 643 230 607 c 1
230 588 220 577 204 577 c 0
187 577 177 589 177 607 c 1
177 674 231.264 727 300 727 c 16
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni030A
Encoding: 778 778
Width: 600
Flags: W
HStem: 486 54<281 318.5> 674 53<281 319>
VStem: 177 53<589 625> 370 53<588.5 624.5>
Ref: 730 N 1 0 0 1 0 0
EndChar
StartChar: uni030B
Encoding: 779 779
Width: 600
Flags: W
DStem: 248 679 291 622 146 569 189 512 412 679 455 622 310 569 353 512
Ref: 733 N 1 0 0 1 0 0
EndChar
StartChar: uni030C
Encoding: 780 780
Width: 600
Flags: W
HStem: 566 20<301 301>
Ref: 711 N 1 0 0 1 0 0
EndChar
StartChar: uni030D
Encoding: 781 781
Width: 600
Flags: W
HStem: 514 218<292 308>
VStem: 260 80<546 694>
Fore
340 692 m 2
340 554 l 2
340 532 322 514 300 514 c 0
278 514 260 532 260 554 c 2
260 692 l 2
260 714 278 732 300 732 c 0
322 732 340 714 340 692 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni030E
Encoding: 782 782
Width: 600
Flags: W
HStem: 514 218<212 228 372 388>
VStem: 180 80<546 694> 340 80<546 694>
Fore
420 692 m 2
420 554 l 2
420 532 402 514 380 514 c 0
358 514 340 532 340 554 c 2
340 692 l 2
340 714 358 732 380 732 c 0
402 732 420 714 420 692 c 2
260 692 m 2
260 554 l 2
260 532 242 514 220 514 c 0
198 514 180 532 180 554 c 2
180 692 l 2
180 714 198 732 220 732 c 0
242 732 260 714 260 692 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni030F
Encoding: 783 783
Width: 600
Flags: W
DStem: 145 622 188 679 247 512 290 569 309 622 352 679 411 512 454 569
Fore
309 622 m 2
294 638 289 647 289 658 c 0
289 677 305 694 323 694 c 0
334 694 341 690 352 679 c 2
454 569 l 1
474 546 475 544 475 533 c 0
475 514 458 496 440 496 c 0
431 496 420 502 411 512 c 2
309 622 l 2
145 622 m 2
130 638 125 647 125 658 c 0
125 677 141 694 159 694 c 0
170 694 178 690 188 679 c 2
290 569 l 1
310 546 311 544 311 533 c 0
311 514 294 496 276 496 c 0
267 496 257 502 247 512 c 2
145 622 l 2
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: uni0310
Encoding: 784 784
Width: 600
Flags: W
HStem: 503 68<285 317> 626 120<289.067 302>
VStem: 240 120<679 695>
Fore
159 687 m 0
179 687 186 678 193 647 c 0
203 601 245 571 300 571 c 0
355 571 397 601 407 647 c 0
414 678 421 687 441 687 c 0
461 687 475 672 475 649 c 0
475 573 392 503 300 503 c 0
208 503 125 573 125 649 c 0
125 672 139 687 159 687 c 0
300 746 m 0
334 746 360 719 360 685 c 0
360 653 333 626 300 626 c 0
267 626 240 653 240 686 c 0
240 719 267 746 300 746 c 0
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni0311
Encoding: 785 785
Width: 600
Flags: W
HStem: 619 68<272.5 327.5>
Ref: 728 S 1 0 0 -1 0 1190
EndChar
StartChar: uni031B
Encoding: 795 795
Width: 600
Flags: W
HStem: 484 100<247 263>
VStem: 246 161.289<580 584> 308 100<592 596>
Fore
246 584 m 1
263 584 l 0
302 584 308 588 308 593 c 8
308 599 305 604 301 606 c 0
278 621 273 653 288 676 c 0
304 698 336 705 358 689 c 0
384 669 408 640 408 593 c 0
408 508 321 479 263 484 c 0
246 484 l 1
246 584 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni0321
Encoding: 801 801
Width: 600
Flags: W
HStem: -203 100<158 176> -20 20<250 350>
VStem: 250 100<-27 -1>
Ref: 802 N -1 0 0 1 600 0
EndChar
StartChar: uni0322
Encoding: 802 802
Width: 600
Flags: W
HStem: -203 100<424 442> -20 20G<250 350>
VStem: 250 100<-27 -1>
Fore
250 0 m 25
350 0 l 25
350 -14 l 2
350 -67 382 -103 428 -103 c 0
444 -103 460 -100 476 -95 c 0
490 -90 493 -89 499 -89 c 0
524 -89 547 -112 547 -139 c 0
547 -179 502 -203 425 -203 c 0
326 -203 250 -121 250 -14 c 2
250 0 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni0327
Encoding: 807 807
Width: 600
Flags: W
HStem: -229 70<292.5 312.5> -100 100<281.5 301>
VStem: 262 70<-41 0> 337 70<-142 -123.5>
Ref: 184 N 1 0 0 1 0 0
EndChar
StartChar: uni0328
Encoding: 808 808
Width: 600
Flags: W
HStem: -208 76<343.5 357>
VStem: 250 77<-118.5 -96>
Ref: 731 N 1 0 0 1 0 0
EndChar
StartChar: uni0337
Encoding: 823 823
Width: 600
Flags: W
DStem: 412 451 459 362 155 316 201 228
Fore
155 316 m 2
412 451 l 2
420 454 428 456 436 456 c 0
461 456 486 435 486 406 c 0
486 388 476 371 459 362 c 2
201 228 l 2
194 224 186 222 178 222 c 0
153 222 128 243 128 272 c 0
128 290 138 307 155 316 c 2
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: uni0374
Encoding: 884 884
Width: 600
Flags: W
Ref: 8242 N 1 0 0 1 0 0
EndChar
StartChar: uni0375
Encoding: 885 885
Width: 600
Flags: W
Ref: 8242 S 1 0 0 1 0 -480
EndChar
StartChar: uni037A
Encoding: 890 890
Width: 600
Flags: W
HStem: -203 100<405 423> -20 20G<231 331>
VStem: 231 100<-27 -1>
Fore
231 0 m 29
331 0 l 29
331 -14 l 6
331 -67 363 -103 409 -103 c 4
425 -103 441 -100 457 -95 c 4
471 -90 474 -89 480 -89 c 4
505 -89 528 -112 528 -139 c 4
528 -179 483 -203 406 -203 c 4
307 -203 231 -121 231 -14 c 6
231 0 l 29
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni037E
Encoding: 894 894
Width: 600
Flags: W
HStem: 417 20<253.5 299>
Ref: 59 N 1 0 0 1 0 0
EndChar
StartChar: tonos
Encoding: 900 900
Width: 600
Flags: W
HStem: 514 218<292 308>
VStem: 260 80<546 694>
Ref: 781 N 1 0 0 1 0 0
EndChar
StartChar: dieresistonos
Encoding: 901 901
Width: 600
Flags: W
HStem: 526 218<292 308>
VStem: 136 120<577.5 610> 260 80<558 706> 344 120<577.5 610>
Ref: 168 N 1 0 0 1 0 0
Ref: 781 N 1 0 0 1 0 12
EndChar
StartChar: Alphatonos
Encoding: 902 902
Width: 600
Flags: W
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 379 218<50 66> 430 20<297 297> 483 100<138 201>
VStem: 18 80<411 559>
Ref: 900 N 1 0 0 1 -242 -135
Ref: 913 N 1 0 0 1 0 0
EndChar
StartChar: anoteleia
Encoding: 903 903
Width: 600
Flags: W
HStem: 214 132<289 311>
VStem: 225 150<278 282>
Ref: 183 N 1 0 0 1 0 0
EndChar
StartChar: Epsilontonos
Encoding: 904 904
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 379 218<-9 7> 483 100<61 93 195 428>
VStem: -41 80<411 559> 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 900 N 1 0 0 1 -301 -135
Ref: 917 N 1 0 0 1 0 0
EndChar
StartChar: Etatonos
Encoding: 905 905
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 379 218<-3 13> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: -35 80<411 559> 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 900 S 1 0 0 1 -295 -135
Ref: 919 N 1 0 0 1 0 0
EndChar
StartChar: Iotatonos
Encoding: 906 906
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 379 218<29 45> 483 100<149 250 350 451 350 350>
VStem: -3 80<411 559> 250 100<100 483>
Ref: 900 S 1 0 0 1 -263 -135
Ref: 921 N 1 0 0 1 0 0
EndChar
StartChar: Omicrontonos
Encoding: 908 908
Width: 600
Flags: W
HStem: -14 100<251 348.5> 379 218<-18 -2> 497 100<251 333.5>
VStem: -50 80<411 559> 21 100<235.5 348> 479 100<234 335>
Ref: 900 S 1 0 0 1 -310 -135
Ref: 927 N 1 0 0 1 0 0
EndChar
StartChar: Upsilontonos
Encoding: 910 910
Width: 600
Flags: W
HStem: 0 100<185 250 350 415> 379 218<-24 -8> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: -56 80<411 559> 250 100<100 245>
Ref: 900 N 1 0 0 1 -316 -135
Ref: 933 N 1 0 0 1 0 0
EndChar
StartChar: Omegatonos
Encoding: 911 911
Width: 600
Flags: W
HStem: 0 100<129 179 421 471> 0 158<77 81 510.788 525> 0 202<253 279 321 349> 379 218<-19 -3> 483 100<257 344>
VStem: -51 80<411 559> 29 100<101 118> 29 251<1 100> 40 100<336 352> 180 100<101 118> 320 100<101 118> 320 251<1 100> 460 100<336 352> 471 100<101 118>
Ref: 900 S 1 0 0 1 -311 -135
Ref: 937 N 1 0 0 1 0 0
EndChar
StartChar: iotadieresistonos
Encoding: 912 912
Width: 600
Flags: W
HStem: -16 100<424 441> 337 100<153 250> 494 218<292 308>
VStem: 136 120<545.5 578> 250 100<160 337> 260 80<526 674> 344 120<545.5 578>
Ref: 168 S 1 0 0 1 0 -32
Ref: 781 S 1 0 0 1 0 -20
Ref: 617 N 1 0 0 1 0 0
EndChar
StartChar: Alpha
Encoding: 913 913
Width: 600
Flags: W
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: Beta
Encoding: 914 914
Width: 600
Flags: W
HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334>
VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162>
Ref: 66 N 1 0 0 1 0 0
EndChar
StartChar: Gamma
Encoding: 915 915
Width: 600
Flags: W
HStem: 0 100<79 112 212 321> 483 100<79 112 212 468>
VStem: 112 100<99 483> 468 100<415 483>
Ref: 1043 N 1 0 0 1 0 0
EndChar
StartChar: Delta
Encoding: 916 916
Width: 600
Flags: W
HStem: 0 100<70 78 185 412 521.031 539> 483 100<123 200>
VStem: 11 578<48 52>
DStem: 201 483 297 450 78 100 184 100 297 450 354 583 413 100 521 100
Fore
523 0 m 2
77 0 l 2
33 0 11 17 11 50 c 0
11 67 20 84 35 93 c 0
44 99 53 100 78 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
521 100 l 1
549 100 558 98 568 90 c 0
581 81 589 66 589 50 c 0
589 33 580 16 565 7 c 0
557 2 544 0 523 0 c 2
184 100 m 1
413 100 l 1
297 450 l 1
184 100 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: Epsilon
Encoding: 917 917
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: Zeta
Encoding: 918 918
Width: 600
Flags: W
HStem: 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
Ref: 90 N 1 0 0 1 0 0
EndChar
StartChar: Eta
Encoding: 919 919
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: Theta
Encoding: 920 920
Width: 600
Flags: W
HStem: -14 100<293 309> 247 87<240 355> 497 100<293 309>
VStem: 21 100<274 306> 157 83<211.59 246 335 370> 355 83<211.107 246 335 370> 479 100<274 306>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
300 497 m 0
202 497 121 404 121 292 c 0
121 179 202 86 300 86 c 0
397 86 479 179 479 289 c 0
479 404 399 497 300 497 c 0
438 225 m 2
438 207 434 195 427 186 c 1
419 179 409 173 396 173 c 0
385 173 372 181 366 186 c 1
359 195 355 208 355 225 c 2
355 247 l 1
240 247 l 1
240 225 l 2
240 198 230 187 213 177 c 0
208 174 203 173 198 173 c 0
187 173 174 180 166 186 c 1
160 193 157 206 157 225 c 2
157 359 l 2
157 377 160 390 166 397 c 1
176 404 187 408 198 408 c 0
219 408 229 395 236 382 c 0
239 375 240 368 240 359 c 2
240 334 l 1
355 334 l 1
355 359 l 2
355 379 357 389 370 400 c 0
376 405 385 408 396 408 c 0
407 408 417 404 427 397 c 1
435 387 438 378 438 359 c 2
438 225 l 2
EndSplineSet
MinimumDistance: x2,-1
Back
566 287 m 0
566 228 553 173 528 124 c 0
503 71 477 34 448 14 c 0
406.979 -15.7046 357.834 -40 298 -40 c 0
227 -40 165 -9 112 53 c 0
59 115 32 193 32 287 c 0
32 380 58 458 111 520 c 0
164 581 226 612 298 612 c 0
362.679 612 398.417 594.722 446 563 c 0
476 543 500 513 519 473 c 0
546.242 412.461 566 363.069 566 287 c 0
480 287 m 0
480 350 463 405 429 454 c 0
395 502 351 526 298 526 c 0
249 526 206 503 171 456 c 0
135 409 117 353 117 287 c 0
117 212.087 136.716 155.012 174 114 c 0
202.683 80.7878 242.386 47 298 47 c 0
411.72 47 480 170.49 480 287 c 0
438 233 m 2
438 215.132 433.88 203.174 427 194 c 1
418.829 187.191 408.814 181 396 181 c 0
385.239 181 372.299 189.276 366 194 c 1
359 203 355 216 355 233 c 2
355 255 l 1
240 255 l 1
240 233 l 2
240 206.455 229.755 195.053 213 185 c 0
208 182 203 181 198 181 c 0
187.332 181 173.569 187.945 166 194 c 1
160 201 157 214 157 233 c 2
157 367 l 2
157 385 160 398 166 405 c 1
176 412 187 416 198 416 c 0
218.639 416 229.446 403.107 236 390 c 0
239 383 240 376 240 367 c 2
240 342 l 1
355 342 l 1
355 367 l 2
355 387.412 357.202 397.03 370 408 c 0
376 413 385 416 396 416 c 0
407 416 417 412 427 405 c 1
434.811 394.585 438 385.974 438 367 c 2
438 233 l 2
EndSplineSet
EndChar
StartChar: Iota
Encoding: 921 921
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: Kappa
Encoding: 922 922
Width: 600
Flags: W
HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483>
Ref: 75 N 1 0 0 1 0 0
EndChar
StartChar: Lambda
Encoding: 923 923
Width: 600
Flags: W
HStem: 0 100<27.7264 46 156 187 395.592 438 553.031 571> 483 100<123 200>
VStem: -21 265<48 52> 350 271<48 52>
DStem: 201 483 297 450 46 100 155 100 297 450 354 583 439 100 553 100
Fore
155 100 m 1
178 100 l 2
205 100 213 98 223 91 c 0
236 81 244 66 244 50 c 0
244 33 235 16 220 7 c 0
212 2 199 0 178 0 c 2
45 0 l 2
1 0 -21 17 -21 50 c 0
-21 67 -12 84 3 93 c 0
12 99 21 100 46 100 c 1
201 483 l 1
138 483 l 2
112 483 102 485 92 492 c 0
79 502 71 517 71 533 c 0
71 550 80 566 95 576 c 0
104 582 111 583 138 583 c 2
354 583 l 1
553 100 l 1
581 100 590 98 600 90 c 0
613 81 621 66 621 50 c 0
621 33 612 16 597 7 c 0
589 2 576 0 555 0 c 2
416 0 l 2
392 0 380 3 371 10 c 0
358 19 350 34 350 50 c 0
350 67 359 84 374 93 c 0
383 99 390 100 416 100 c 2
439 100 l 1
297 450 l 1
155 100 l 1
EndSplineSet
EndChar
StartChar: Mu
Encoding: 924 924
Width: 600
Flags: W
HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548>
VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388>
DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138
Ref: 77 N 1 0 0 1 0 0
EndChar
StartChar: Nu
Encoding: 925 925
Width: 600
Flags: W
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
Ref: 78 N 1 0 0 1 0 0
EndChar
StartChar: Xi
Encoding: 926 926
Width: 600
Flags: W
HStem: 0 100<135 465> 0 217<83 87 505 517> 255 87<246 355> 483 100<147 453>
VStem: 35 100<101 176> 35 530<1 100> 47 100<406 482> 47 506<483 582> 163 83<216 254 343 369> 355 83<216 254 343 384> 453 100<406 482> 465 100<101 176>
Fore
465 100 m 1
465 167 l 2
465 195 487 217 515 217 c 0
543 217 565 195 565 167 c 2
565 0 l 1
35 0 l 1
35 167 l 2
35 195 57 217 85 217 c 0
113 217 135 195 135 167 c 2
135 100 l 1
465 100 l 1
438 233 m 2
438 215 438 206 427 194 c 24
418 184 409 181 396 181 c 0
385 181 375 184 366 194 c 24
355 206 355 216 355 233 c 2
355 255 l 1
246 255 l 1
246 233 l 2
246 206 244 203 235 193 c 0
227 184 209 181 204 181 c 0
192 181 181 183 172 194 c 24
162 206 163 214 163 233 c 2
163 367 l 2
163 385 162 393 172 405 c 24
181 415 191 416 204 416 c 0
221 416 228 413 236 403 c 0
242 395 246 376 246 367 c 2
246 342 l 1
355 342 l 1
355 367 l 2
355 387 357 397 370 408 c 0
376 413 385 416 396 416 c 0
407 416 418 415 427 405 c 24
438 393 438 386 438 367 c 2
438 233 l 2
453 483 m 1
147 483 l 1
147 416 l 2
147 388 125 366 97 366 c 0
69 366 47 388 47 416 c 2
47 583 l 1
553 583 l 1
553 416 l 2
553 388 531 366 503 366 c 0
475 366 453 388 453 416 c 2
453 483 l 1
EndSplineSet
MinimumDistance: x3,-1 y35,38 y35,36 y34,41 y34,43 y9,6 y9,8 y0,3 y0,1
EndChar
StartChar: Omicron
Encoding: 927 927
Width: 600
Flags: W
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: Pi
Encoding: 928 928
Width: 600
Flags: W
HStem: 0 100<69 94 196 231 375 408 510 535> 483 100<196 408>
VStem: 95 100<100 483> 409 100<100 483>
Fore
409 483 m 1
195 483 l 1
195 100 l 1
210 100 l 2
236 100 246 98 255 91 c 0
268 81 276 66 276 50 c 0
276 33 267 16 252 7 c 0
244 2 231 0 210 0 c 2
89 0 l 2
65 0 52 3 43 9 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 99 64 100 89 100 c 2
95 100 l 1
95 483 l 1
62 486 43 504 43 533 c 0
43 550 52 567 67 576 c 0
76 582 84 583 109 583 c 2
495 583 l 2
522 583 531 581 541 574 c 0
553 564 561 549 561 533 c 0
561 504 542 486 509 483 c 1
509 100 l 1
515 100 l 2
542 100 551 98 560 91 c 0
573 81 581 66 581 50 c 0
581 33 572 16 557 7 c 0
549 2 536 0 515 0 c 2
394 0 l 2
370 0 358 3 349 9 c 0
336 19 328 35 328 50 c 0
328 67 337 84 352 93 c 0
361 99 370 100 394 100 c 2
409 100 l 1
409 483 l 1
EndSplineSet
MinimumDistance: x21,-1
EndChar
StartChar: Rho
Encoding: 929 929
Width: 600
Flags: W
HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194>
VStem: 94 100<100 200 300 483> 423 106<371 419.5>
Ref: 80 N 1 0 0 1 0 0
EndChar
StartChar: Sigma
Encoding: 931 931
Width: 600
Flags: W
HStem: 0 100<202 427> 0 238<473 479> 483 100<203 427>
VStem: 73 454<1 100 486 582> 427 100<101 192 400 482>
DStem: 73 486 202 483 225 293 352 293 225 293 352 293 73 100 201 100
Ref: 425 N 1 0 0 1 0 0
EndChar
StartChar: Tau
Encoding: 932 932
Width: 600
Flags: W
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: Upsilon
Encoding: 933 933
Width: 600
Flags: W
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 250 100<100 245>
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: Phi
Encoding: 934 934
Width: 600
Flags: W
HStem: 0 100<131 250 350 469> 121 100<211 250 350.125 398.707> 362 100<211 250 350.125 400.034> 483 100<131 250 350 469>
VStem: 4 100<287 305> 250 100<99 121 221 362 461 483> 496 100<287 305>
Ref: 1060 N 1 0 0 1 0 0
EndChar
StartChar: Chi
Encoding: 935 935
Width: 600
Flags: W
HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512>
VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535>
DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297
Ref: 88 N 1 0 0 1 0 0
EndChar
StartChar: Psi
Encoding: 936 936
Width: 600
Flags: W
HStem: 0 100<205 249 351 392> 143 104<240 249 350.125 363.429> 483 100<32 50 227 249 351 368 550 560>
VStem: 50 100<343 483> 250 100<100 143 249 483> 450 100<343 483> 450 166<528 535>
Fore
550 483 m 1
550 360 l 2
550 241 453 143 350 143 c 1
350 100 l 1
375 100 l 2
402 100 410 98 420 91 c 0
434 81 441 66 441 50 c 0
441 17 419 0 375 0 c 2
225 0 l 2
201 0 189 3 180 10 c 0
167 19 159 35 159 50 c 0
159 67 168 84 183 93 c 0
192 99 199 100 225 100 c 2
250 100 l 1
250 143 l 1
147 143 50 241 50 360 c 2
50 483 l 1
45 483 l 2
5 483 -16 501 -16 533 c 0
-16 549 -8 564 5 574 c 0
15 581 23 583 50 583 c 2
127 583 l 1
150 583 l 1
150 344 l 2
150 298 197 247 250 247 c 1
250 483 l 1
249 483 l 2
224 483 213 485 204 492 c 0
191 502 183 517 183 533 c 0
183 550 192 567 207 576 c 0
216 582 223 583 249 583 c 2
351 583 l 2
378 583 386 581 396 574 c 0
410 564 417 549 417 533 c 0
417 516 408 499 393 490 c 0
385 485 374 483 351 483 c 2
350 483 l 1
350 248 l 1
405 248 450 298 450 344 c 2
450 583 l 1
473 583 l 1
550 583 l 2
577 583 585 581 595 574 c 0
608 564 616 549 616 533 c 0
616 501 595 483 555 483 c 2
550 483 l 1
EndSplineSet
EndChar
StartChar: Omega
Encoding: 937 937
Width: 600
Flags: W
HStem: 0 100<129 179 421 471> 0 158<77 81 510.788 525> 0 202<253 279 321 349> 483 100<257 344>
VStem: 29 100<101 118> 29 251<1 100> 40 100<336 352> 180 100<101 118> 320 100<101 118> 320 251<1 100> 460 100<336 352> 471 100<101 118>
Fore
180 118 m 1
92 156 40 251 40 344 c 0
40 469 127 583 276 583 c 2
324 583 l 2
480 583 560 451 560 344 c 0
560 251 508 156 420 118 c 1
420 100 l 1
471 100 l 1
471 108 l 2
471 136 493 158 521 158 c 0
549 158 571 136 571 108 c 2
571 0 l 1
320 0 l 1
320 202 l 1
342 202 l 2
403 202 460 270 460 344 c 0
460 419 425 483 324 483 c 2
276 483 l 2
179 483 140 432 140 344 c 0
140 270 196 202 258 202 c 2
280 202 l 1
280 0 l 1
29 0 l 1
29 108 l 2
29 136 51 158 79 158 c 0
107 158 129 136 129 108 c 2
129 100 l 1
180 100 l 1
180 118 l 1
EndSplineSet
MinimumDistance: x10,-1 y26,23 y26,25 y7,10 y7,8
Back
563 -25 m 1
306 -25 l 1
306 193 l 1
353 200 366 199 396 218 c 0
417 228 430 244 443 265 c 0
455 284 467 323 467 353 c 0
467 400 455 436 430 463 c 0
405 490 378 505 347 509 c 1
260 509 l 2
233 505 206 484 191 471 c 0
184 464 177 455 170 442 c 1
157 426 149 382 149 353 c 0
149 307 164 266 188 242 c 0
211 217 236 202 265 198 c 1
308 195 l 1
308 -25 l 1
56 -25 l 1
56 142 l 2
56 172 71 192 99 192 c 0
117 192 120 189 128 179 c 0
136 168 141 160 141 142 c 2
141 63 l 1
222 63 l 1
222 118 l 1
210 120 188 132 172 141 c 0
141 157 116 188 97 218 c 0
78 248 66 307 66 355 c 0
66 424 90 490 125 527 c 0
159 561 200 587 257 594 c 1
350 594 l 1
385 591 415 582 438 567 c 1
469 551 492 529 509 502 c 0
535 458 552 409 552 348 c 0
552 273 520 216 478 173 c 0
453 146 424 128 392 119 c 1
392 63 l 1
477 63 l 1
477 142 l 2
477 161 487 184 500 189 c 0
505 191 511 192 518 192 c 0
533 192 543 188 549 180 c 0
557 166 563 160 563 142 c 2
563 -25 l 1
EndSplineSet
EndChar
StartChar: Iotadieresis
Encoding: 938 938
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 136 120<680.5 713> 250 100<100 483> 344 120<680.5 713>
Ref: 168 N 1 0 0 1 0 103
Ref: 921 N 1 0 0 1 0 0
EndChar
StartChar: Upsilondieresis
Encoding: 939 939
Width: 600
Flags: W
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 136 120<680.5 713> 250 100<100 245> 344 120<680.5 713>
Ref: 168 N 1 0 0 1 0 103
Ref: 933 N 1 0 0 1 0 0
EndChar
StartChar: alphatonos
Encoding: 940 940
Width: 600
Flags: W
HStem: -14 100<257 289> 0 100<531 561> 0 467<471.156 483> 351 100<273 289> 515 218<289 305>
VStem: 33 100<210 226> 257 80<547 695> 431 100<210 226 401.032 423.889>
Ref: 900 S 1 0 0 1 -3 1
Ref: 945 N 1 0 0 1 0 0
EndChar
StartChar: epsilontonos
Encoding: 941 941
Width: 600
Flags: W
HStem: -16 100<286 320> 1 166<474 480> 178 100<286 365.108> 350 100<286 320> 513 218<291 307>
VStem: 73 110<121 129> 94 110<310 318> 259 80<545 693>
Ref: 900 N 1 0 0 1 -1 -1
Ref: 949 N 1 0 0 1 0 0
EndChar
StartChar: etatonos
Encoding: 942 942
Width: 600
Flags: W
HStem: -205 21<410 505> -204.959 99.9592<510 525.03> 0 100<71 94 196 215> 350 100<311 334> 417 20<101 195> 498 218<324 340>
VStem: 95 100<100 282> 292 80<530 678> 410 100<-105 291> 410 161<-157 -153>
Ref: 900 N 1 0 0 1 32 -16
Ref: 951 N 1 0 0 1 0 0
EndChar
StartChar: iotatonos
Encoding: 943 943
Width: 600
Flags: W
HStem: -16 100<424 441> 337 100<153 250> 498 218<253 269>
VStem: 221 80<530 678> 250 100<160 337>
Ref: 900 N 1 0 0 1 -39 -16
Ref: 953 N 1 0 0 1 0 0
EndChar
StartChar: upsilondieresistonos
Encoding: 944 944
Width: 600
Flags: W
HStem: -16 100<282 298> 337 100<58 92 374 404 505 538> 494 218<292 308>
VStem: 92 100<160 337> 136 120<545.5 578> 260 80<526 674> 344 120<545.5 578> 405 100<163 337>
Ref: 168 S 1 0 0 1 0 -32
Ref: 781 S 1 0 0 1 0 -20
Ref: 965 N 1 0 0 1 0 0
EndChar
StartChar: alpha
Encoding: 945 945
Width: 600
Flags: W
HStem: -14 100<257 289> 0 100<531 561> 0 467<471.156 483> 351 100<273 289>
VStem: 33 100<210 226> 431 100<210 226 401.032 423.889>
Ref: 593 N 1 0 0 1 0 0
EndChar
StartChar: beta
Encoding: 946 946
Width: 600
Flags: W
HStem: -205 100<61 95> -16 100<317 352> 523 100<253 280>
VStem: 13 225<-157 -152> 95 100<-105 -13 99 467> 346 100<451 467> 429 100<151.982 179>
Fore
195 1.08574 m 1
195 -105 l 1
223 -110 238 -127 238 -154 c 0
238 -189 217 -205 172 -205 c 2
79 -205 l 2
55 -205 42 -202 33 -196 c 0
21 -186 13 -170 13 -155 c 0
13 -138 23 -121 37 -112 c 0
46 -106 54 -105 79 -105 c 2
95 -105 l 1
95 478 l 2
95 563 167 623 268 623 c 0
369 623 446 551 446 456 c 0
446 419 438 397 411 365 c 1
488 320 529 249 529 165 c 0
529 57 441 -16 342 -16 c 0
292.411 -16 224.702 -4.46357 195 1.08574 c 1
195 99.7696 m 1
218.714 93.9002 270.497 84 350 84 c 0
382 84 429 116 429 164 c 0
429 200 414 234 388 259 c 0
361 285 330 297 278 303 c 0
241 307 223 323 223 353 c 0
223 381 242 399 276 402 c 0
302 405 310 407 321 415 c 0
337 425 346 442 346 459 c 0
346 496 314 523 268 523 c 0
221 523 195 502 195 461 c 2
195 99.7696 l 1
EndSplineSet
MinimumDistance: x14,-1
Back
557 223 m 1
557 153 534 95 487 50 c 0
440 4 379 -19 304 -19 c 0
272 -19 240 -15 207 -6 c 1
207 -59 l 1
222 -61 232 -64 237 -67 c 1
241 -72 245 -78 248 -84 c 0
251 -90 252 -96 252 -102 c 0
252 -107 251 -112 249 -116 c 0
247 -120 244 -125 239 -132 c 1
234 -136 229 -139 222 -142 c 0
215 -145 208 -146 201 -146 c 2
85 -146 l 2
78 -146 72 -145 66 -142 c 0
60 -140 54 -137 49 -132 c 0
42 -123 39 -113 39 -102 c 0
39 -89 42 -78 49 -68 c 1
56 -62 68 -59 85 -59 c 2
122 -59 l 1
122 484 l 2
122 505 126 527 135 552 c 0
144 577 156 598 173 617 c 1
195 639 221 652 252 655 c 0
283 658 308 660 329 660 c 0
377 660 414 648 440 623 c 0
466 598 482 577 489 560 c 0
496 543 499 521 499 496 c 0
499 477 495 457 487 437 c 0
478 417 466 400 451 386 c 1
490 365 516 343 529 318 c 0
542 293 551 261 557 223 c 1
471 216 m 1
461 299 402 341 293 341 c 0
280 341 271 345 264 352 c 0
257 359 253 368 253 380 c 0
253 381 253 383 253 384 c 0
253 395 257 404 264 413 c 1
274 420 285 424 296 424 c 0
308 424 324 425 343 428 c 0
362 430 375 433 382 436 c 0
389 439 394 444 398 451 c 0
401 458 404 464 407 470 c 0
410 476 412 482 414 487 c 0
416 492 417 497 417 501 c 0
417 523 409 541 393 556 c 0
377 571 356 578 329 578 c 0
310 578 292 577 276 574 c 0
259 571 246 566 236 558 c 0
225 549 218 538 214 525 c 0
210 512 208 499 208 488 c 2
208 91 l 1
229 84 248 79 265 76 c 0
282 73 298 72 315 72 c 0
358 72 394 86 425 113 c 0
456 140 471 174 471 216 c 1
EndSplineSet
EndChar
StartChar: gamma
Encoding: 947 947
Width: 600
Flags: W
HStem: -205 100<224 248 351 375> 337 99.0333<408 419> 417 20G<89 179 423 515>
VStem: 23 222<376.035 389> 249 101<-105 -3> 356 225<375.996 389>
DStem: 72 337 186 337 249 -3 300 114 420 337 529 337 300 114 350 -3
Fore
249 -3 m 1
72 337 l 1
41 341 23 359 23 387 c 0
23 414 40 432 69 435 c 0
80 437 82 437 89 437 c 2
179 437 l 2
205 437 215 435 225 428 c 0
237 418 245 403 245 387 c 0
245 356 224 338 186 337 c 1
300 114 l 1
420 337 l 1
379 337 356 355 356 387 c 0
356 414 373 432 402 435 c 0
413 437 415 437 423 437 c 2
515 437 l 2
541 437 551 435 560 428 c 0
574 418 581 403 581 387 c 0
581 358 562 340 529 337 c 1
350 -3 l 1
350 -105 l 1
361 -105 l 2
387 -105 397 -107 407 -114 c 0
419 -124 427 -139 427 -155 c 0
427 -172 418 -188 403 -198 c 0
395 -203 383 -205 361 -205 c 2
238 -205 l 2
213 -205 207.646 -206.203 193 -195 c 24
178.646 -184.021 172 -171 172 -155 c 0
172 -138 181 -121 196 -112 c 0
205 -107 214 -105 238 -105 c 2
249 -105 l 1
249 -3 l 1
EndSplineSet
MinimumDistance: x16,-1 x11,16 x2,7
EndChar
StartChar: delta
Encoding: 948 948
Width: 600
Flags: W
HStem: -16 100<282 314> 350 100<282 314> 463 169<500 506> 538 100<234 272>
VStem: 42 100<208 224> 60 100<485 503> 458 100<208 224>
Fore
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
449 503 m 1
400 514 316 538 248 538 c 0
176.5 538 160 521 160 492 c 0
160 474 173 453 270 450 c 0
303 450 l 2
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 284 71 343 119 385 c 1
84 408 60 443 60 492 c 0
60 599 162.5 638 248 638 c 0
323 638 411 614 471 601 c 1
476 622 489 632 504 632 c 8
536 632 551 612 551 566 c 2
551 529 l 2
551 503 549 493 542 483 c 0
532 471 516 463 501 463 c 0
480 463 466 472 454 494 c 2
449 503 l 1
EndSplineSet
MinimumDistance: x9,-1
Back
540 220 m 0
540 186 534 154 522 125 c 0
509 96 491 69 467 44 c 0
443 19 416 1 387 -12 c 0
358 -25 326 -32 293 -32 c 0
259 -32 227 -26 198 -13 c 0
169 0 136 25 100 63 c 0
64 100 46 153 46 220 c 0
46 290 61 340 91 371 c 0
121 402 143 421 156 428 c 1
138 440 124 454 113 469 c 0
102 484 97 502 97 523 c 0
97 570 110 603 136 623 c 0
161 643 197 653 242 653 c 0
249 653 255 653 262 653 c 0
269 653 276 652 285 651 c 0
302 651 322 649 343 644 c 0
364 639 394 632 434 623 c 1
434 632 435 639 437 646 c 0
439 653 442 658 445 662 c 1
455 669 466 673 477 673 c 0
489 673 498 670 503 665 c 0
508 659 512 653 515 646 c 0
518 639 519 631 519 624 c 2
519 546 l 2
519 537 518 529 516 523 c 0
513 517 509 511 503 504 c 0
496 497 488 494 477 494 c 0
472 494 467 495 461 498 c 0
454 501 449 504 445 507 c 1
438 516 434 529 434 546 c 1
421 550 396 555 358 562 c 0
320 568 294 572 279 574 c 0
264 575 250 576 238 576 c 0
196 576 175 560 175 529 c 1
180 512 191 498 210 488 c 0
229 478 257 473 295 473 c 0
362 473 414 455 450 418 c 0
485 381 509 348 522 318 c 0
534 287 540 255 540 220 c 0
456 220 m 0
456 266 439 305 405 338 c 1
376 369 338 385 293 385 c 0
270 385 249 381 231 374 c 0
212 366 191 350 167 326 c 0
143 302 131 267 131 220 c 0
131 175 147 137 180 104 c 0
213 71 250 55 293 55 c 0
338 55 372 67 395 92 c 0
418 117 434 139 443 159 c 0
452 178 456 199 456 220 c 0
EndSplineSet
EndChar
StartChar: epsilon
Encoding: 949 949
Width: 600
Flags: W
HStem: -16 100<286 320> 1 166<474 480> 178 100<286 365.108> 350 100<286 320>
VStem: 73 110<121 129> 94 110<310 318>
Ref: 1079 N -1 0 0 1 600 0
Back
515 37 m 2
515 27 514 19 511 14 c 0
508 9 503 5 498 2 c 0
491 -4 482 -7 473 -7 c 0
464 -7 456 -4 449 1 c 0
443 4 439 8 436 14 c 0
433 19 431 29 431 42 c 1
450 42 l 1
450 30 l 1
425 13 401 0 378 -10 c 0
355 -20 330 -25 305 -25 c 0
276 -25 253 -22 235 -15 c 0
216 -8 196 2 175 16 c 1
143 44 127 78 127 119 c 1
124 132 l 1
124 151 129 171 138 190 c 0
147 209 161 225 178 238 c 1
163 247 153 259 146 273 c 0
139 286 135 301 135 317 c 0
135 362 151 397 182 424 c 1
197 439 214 450 231 456 c 0
248 462 270 465 299 465 c 0
363 465 426 442 489 396 c 1
506 373 l 1
506 363 506 356 505 351 c 0
504 346 501 341 498 336 c 1
488 327 479 322 472 322 c 0
469 322 l 0
464 322 458 323 451 325 c 0
442 328 433 331 425 336 c 0
416 340 410 344 405 348 c 0
400 352 394 357 387 363 c 0
380 369 368 375 353 381 c 0
338 386 322 389 307 389 c 0
276 389 254 382 239 368 c 0
224 353 216 339 216 325 c 1
219 314 222 306 226 300 c 0
229 294 237 289 248 285 c 0
259 280 270 278 283 278 c 2
295 278 l 2
310 278 321 276 327 271 c 1
338 266 344 254 344 237 c 0
344 228 339 219 330 208 c 1
319 199 308 195 297 195 c 2
283 195 l 1
275 195 l 2
268 195 260 194 253 192 c 0
246 190 239 187 233 183 c 0
227 178 222 170 218 157 c 0
213 144 211 132 211 120 c 0
211 106 217 94 228 84 c 0
239 73 249 66 259 61 c 0
269 56 282 53 297 53 c 0
312 53 327 55 341 60 c 0
354 64 370 70 389 79 c 2
431 101 l 1
431 111 l 2
431 127 434 139 441 147 c 1
451 154 462 158 473 158 c 0
484 158 494 154 502 147 c 1
511 136 515 124 515 111 c 2
515 37 l 2
EndSplineSet
EndChar
StartChar: zeta
Encoding: 950 950
Width: 600
Flags: W
HStem: -205 100<329 361> 0 100<293 340> 524 100<197 316>
VStem: 92 100<179 195> 97 100<499 523> 97 409<543 623> 273 244<-157 -153> 378 99.5483<-29 -20>
DStem: 329.977 524 506 543 238 446 302 370
Fore
467.339 -105.397 m 1
481.856 -106.266 489.428 -108.7 497 -114 c 0
509 -124 517 -139 517 -155 c 0
517 -172 508 -188 493 -198 c 0
485 -203 473 -205 451 -205 c 2
339 -205 l 2
314 -205 308.645 -206.203 294 -195 c 24
279.646 -184.021 273 -171 273 -155 c 0
273 -138 282 -121 297 -112 c 0
306 -107 315 -105 339 -105 c 2
361.525 -105 l 1
373.871 -79.0084 378 -44.8154 378 -22 c 0
378 -4 363 0 300 0 c 0
164 0 92 79 92 182 c 0
92 277 145.427 367.494 238 446 c 2
329.977 524 l 1
197 524 l 1
197 515 l 2
197 488 195 480 188 470 c 0
178 457 163 449 147 449 c 0
130 449 113 458 104 473 c 0
99 482 97 492 97 515 c 2
97 624 l 1
506 624 l 1
506 543 l 1
302 370 l 2
222.502 302.583 192 244 192 182 c 0
192 146 238 100 300 100 c 0
434 100 478 94 478 -6 c 0
478 -26.9424 476.957 -68.9234 467.339 -105.397 c 1
EndSplineSet
MinimumDistance: x23,-1
Back
500 -169 m 0
500 -177 498 -183 495 -188 c 0
491 -193 488 -196 485 -198 c 0
482 -201 477 -204 470 -207 c 0
462 -211 455 -213 450 -213 c 2
324 -213 l 2
316 -213 309 -212 304 -210 c 0
298 -208 293 -205 289 -202 c 0
280 -198 275 -187 275 -169 c 0
275 -158 276 -150 278 -145 c 0
280 -141 284 -138 289 -136 c 1
295 -131 307 -128 324 -128 c 2
352 -128 l 1
367 -103 375 -83 377 -66 c 1
374 -35 341 -15 280 -6 c 0
219 3 173 14 144 28 c 0
114 42 99 83 99 151 c 0
99 229 122 302 168 371 c 0
213 439 270 501 338 556 c 1
190 556 l 1
190 533 l 2
190 524 189 518 188 514 c 0
186 509 182 503 177 495 c 0
171 486 160 482 145 482 c 0
132 482 122 486 116 495 c 0
110 504 107 516 107 533 c 2
107 642 l 1
494 642 l 1
494 564 l 1
407 510 334 444 274 367 c 0
213 290 183 219 183 154 c 0
183 99 207 63 254 47 c 1
297 39 341 31 385 24 c 1
433 11 457 -18 457 -65 c 0
457 -76 456 -86 455 -94 c 0
453 -103 449 -114 444 -128 c 1
450 -128 l 2
464 -128 474 -130 480 -134 c 0
486 -139 491 -144 495 -150 c 0
498 -157 500 -163 500 -169 c 0
EndSplineSet
EndChar
StartChar: eta
Encoding: 951 951
Width: 600
Flags: W
HStem: -205 21G<410 505> -204.959 99.9592<510 525.03> 0 100<71 94 196 215> 350 100<311 334> 417 20G<101 195>
VStem: 95 100<100 282> 410 100<-105 291> 410 161<-157 -153>
Fore
410 -205 m 17
410 278 l 2
410 327 382 350 320 350 c 0
274 350 242 333 195 282 c 1
195 100 l 1
201 100 l 2
228 100 236 98 246 91 c 0
259 81 267 66 267 50 c 0
267 33 258 17 243 7 c 0
235 2 222 0 201 0 c 2
89 0 l 2
65 0 53 3 43 10 c 0
31 19 23 35 23 50 c 0
23 67 32 84 47 93 c 0
56 98 64 100 89 100 c 2
95 100 l 1
95 337 l 1
56 338 34 355 34 387 c 0
34 414 51 432 80 435 c 0
91 437 93 437 101 437 c 2
195 437 l 1
195 389 l 1
243 435 277 450 332 450 c 0
377 450 418 437 451 413 c 0
491 383 510 341 510 282 c 2
510 -105 l 1
549 -105 571 -123 571 -155 c 0
571 -172 562 -189 547 -198 c 0
539 -203 526 -205 505 -205 c 2
410 -205 l 17
EndSplineSet
MinimumDistance: x26,-1
EndChar
StartChar: theta
Encoding: 952 952
Width: 600
Flags: W
HStem: -15 100<291 307> 253 100<184 416> 523 100<291 307>
VStem: 83 434<253 353> 83.6045 99.3955<241 252 353.125 375.056> 417 99.3955<241 252 353.125 375.056>
Fore
517 344 m 2
517 264 l 2
517 173 489 92 439 40 c 0
405 4 357 -15 300 -15 c 0
243 -15 195 4 161 40 c 0
111 92 83 173 83 264 c 2
83 344 l 2
83 435 111 516 161 568 c 0
195 604 243 623 300 623 c 0
357 623 405 604 439 568 c 0
489 516 517 435 517 344 c 2
183 353 m 1
417 353 l 1
416 456 371 523 300 523 c 0
229 523 184 456 183 353 c 1
417 253 m 1
183 253 l 1
184 151 230 85 300 85 c 0
370 85 416 151 417 253 c 1
EndSplineSet
EndChar
StartChar: iota
Encoding: 953 953
Width: 600
Flags: W
HStem: -16 100<424 441> 337 100<153 250>
VStem: 250 100<160 337>
Ref: 617 N 1 0 0 1 0 0
EndChar
StartChar: kappa
Encoding: 954 954
Width: 600
Flags: W
HStem: 0 100<100.726 133 447 501> 337 100<99 133 447 485>
VStem: 134 100<99 164 287 337>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Ref: 1082 N 1 0 0 1 0 0
EndChar
StartChar: lambda
Encoding: 955 955
Width: 600
Flags: W
HStem: 0 21G<87 177 421 513> 0.0135736 99.9864<405.713 417.969> 524 100<85 196>
VStem: 21 222<48 52> 354 225<48 52>
DStem: 196 524 306 524 242 434 527 100 242 434 298 323 70 100 184 100 298 323 306 524 418 100 527 100
Fore
306 524 m 2
527 100 l 1
560 97 579 79 579 50 c 0
579 34 572 19 558 9 c 0
549 2 539 0 513 0 c 2
421 0 l 2
413 0 411 0 400 2 c 0
371 5 354 23 354 50 c 0
354 82 377 100 418 100 c 1
298 323 l 1
184 100 l 1
222 99 243 81 243 50 c 0
243 34 235 19 223 9 c 0
213 2 203 0 177 0 c 2
87 0 l 2
80 0 78 0 67 2 c 0
38 5 21 23 21 50 c 0
21 78 39 96 70 100 c 1
242 434 l 1
196 524 l 1
96 524 l 2
72 524 63 526 54 531 c 0
39 540 30 557 30 574 c 0
30 590 37 603 51 614 c 24
66 625 71 624 96 624 c 2
193 624 l 2
271 624 283 569 306 524 c 2
EndSplineSet
MinimumDistance: x2,-1 x7,2 x16,11
EndChar
StartChar: uni03BC
Encoding: 956 956
Width: 600
Flags: W
HStem: -205 100<67 94 196 221> -13 100<266 285> 0 21G<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 94 349.509 409>
VStem: 95 100<-105 0 147 337> 410 100<155 337>
Fore
195 1 m 1
195 -105 l 5
201 -105 l 6
227 -105 237 -107 247 -114 c 4
259 -124 267 -139 267 -155 c 4
267 -172 258 -188 243 -198 c 4
235 -203 223 -205 201 -205 c 6
89 -205 l 6
64 -205 59 -206 44 -195 c 28
30 -184 23 -171 23 -155 c 4
23 -138 32 -121 47 -112 c 4
56 -107 65 -105 89 -105 c 6
95 -105 l 5
95 337 l 1
68 337 l 2
35 337 13 358 13 387 c 0
13 404 22 421 37 430 c 0
46 436 54 437 79 437 c 2
195 437 l 1
195 159 l 2
195 110 223 87 283 87 c 0
333 87 358 100 410 155 c 1
410 337 l 1
375 337 l 2
350 337 345 336 330 347 c 24
316 358 309 372 309 387 c 0
309 404 318 421 333 430 c 0
342 436 351 437 375 437 c 2
510 437 l 1
510 100 l 1
549 100 571 82 571 50 c 0
571 33 562 17 547 7 c 0
539 2 526 0 505 0 c 2
410 0 l 1
410 48 l 1
360 1 328 -13 273 -13 c 0
245 -13 219 -8 195 1 c 1
EndSplineSet
MinimumDistance: x28,-1
Back
553 20 m 0
553 10 549 0 541 -9 c 1
536 -13 531 -16 526 -19 c 0
521 -22 514 -23 505 -23 c 2
409 -23 l 1
409 13 l 1
364 -20 315 -37 263 -37 c 0
246 -37 232 -36 222 -34 c 0
211 -33 200 -29 187 -23 c 1
187 -128 l 1
241 -128 l 2
254 -128 265 -131 273 -137 c 1
284 -141 289 -152 289 -169 c 0
289 -175 288 -180 286 -184 c 0
284 -189 281 -193 278 -197 c 0
274 -202 269 -205 262 -208 c 0
255 -211 248 -213 241 -213 c 2
48 -213 l 2
40 -213 33 -212 28 -210 c 0
22 -208 17 -205 13 -202 c 1
4 -199 0 -188 0 -169 c 0
0 -157 1 -149 3 -145 c 0
5 -142 8 -139 13 -137 c 1
20 -131 32 -128 48 -128 c 2
102 -128 l 1
102 362 l 1
71 362 l 2
63 362 56 363 50 366 c 0
44 368 38 371 32 376 c 1
25 385 21 395 21 406 c 0
21 424 26 435 36 440 c 1
44 446 56 449 71 449 c 2
187 449 l 1
187 117 l 2
187 96 193 79 204 66 c 1
211 60 220 55 232 52 c 0
243 49 254 47 265 47 c 0
293 47 317 53 338 65 c 0
359 77 382 97 409 126 c 1
409 362 l 1
357 362 l 2
348 362 341 363 336 366 c 0
331 368 325 371 320 376 c 0
315 383 311 388 310 393 c 0
308 397 307 401 307 406 c 0
307 419 312 429 321 437 c 0
330 445 342 449 357 449 c 2
493 449 l 1
493 65 l 1
505 65 l 2
514 65 521 64 527 62 c 0
532 60 537 57 541 54 c 1
544 50 547 45 550 39 c 0
552 32 553 26 553 20 c 0
EndSplineSet
EndChar
StartChar: nu
Encoding: 957 957
Width: 600
Flags: W
HStem: 0 20 417 20<66 198 198 211 399 534 534 547>
Ref: 118 N 1 0 0 1 0 0
EndChar
StartChar: xi
Encoding: 958 958
Width: 600
Flags: W
HStem: -224 86<341 376 473 479> 291 87<385 437> 551 86<201 281 435 504>
VStem: 117 84<517 550> 117 388<554 636> 128 78<128 149> 236 79<432.338 448> 298 224<-189.839 -176> 418 80.8327<-78 -76>
Fore
522 -181 m 0
522 -190 519 -198 514 -204 c 0
508 -210 501 -215 493 -218 c 0
484 -222 477 -224 472 -224 c 2
347 -224 l 2
338 -224 330 -223 325 -221 c 0
320 -219 315 -216 311 -213 c 1
302 -210 298 -199 298 -181 c 0
298 -168 299 -160 301 -156 c 0
303 -153 306 -150 311 -148 c 1
319 -141 331 -138 347 -138 c 2
376 -138 l 1
385 -127 395 -116 405 -105 c 0
413 -96 417 -87 418 -79 c 0
418 -78 418 -76 417 -75 c 0
413 -46 380 -28 319 -21 c 0
257 -14 210 -2 177 15 c 0
144 31 128 76 128 149 c 0
128 202 147 250 184 292 c 0
221 333 252 356 277 359 c 0
302 362 318 364 327 364 c 0
341 364 350 364 353 364 c 0
362 361 l 1
350 316 l 1
312 328 284 343 265 361 c 0
246 379 236 407 236 446 c 0
236 458 237 471 239 485 c 1
250 510 264 532 282 551 c 1
201 551 l 1
201 528 l 2
201 519 200 512 199 508 c 0
197 504 193 498 187 489 c 0
180 480 170 476 157 476 c 0
144 476 134 480 129 488 c 0
124 496 120 502 119 507 c 0
118 512 117 519 117 528 c 2
117 637 l 1
505 637 l 1
505 553 l 1
434 554 l 1
421 550 l 2
397 541 376 531 358 518 c 0
339 505 328 492 323 477 c 0
318 462 315 450 315 443 c 0
315 430 319 419 328 410 c 0
336 401 355 390 385 378 c 1
431 378 l 2
446 378 458 374 467 366 c 1
475 356 479 346 479 335 c 0
479 329 478 324 476 320 c 0
474 315 471 310 467 305 c 0
464 302 458 299 451 296 c 0
443 293 436 291 431 291 c 2
384 291 l 2
278 291 219 244 206 149 c 1
206 86 229 47 274 32 c 1
319 26 365 20 413 13 c 0
461 6 489 -18 498 -61 c 0
499 -65 499 -69 499 -73 c 0
499 -83 497 -92 494 -101 c 0
489 -114 483 -127 476 -138 c 1
472 -138 l 2
486 -138 496 -140 502 -145 c 0
508 -150 513 -156 517 -162 c 0
520 -168 522 -174 522 -181 c 0
EndSplineSet
MinimumDistance: x57,-1
EndChar
StartChar: omicron
Encoding: 959 959
Width: 600
Flags: W
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: pi
Encoding: 960 960
Width: 600
Flags: W
HStem: 0 21<113 202 398 487> 0.144728 99.8553<105 107 207.031 222.093 381 392 492.031 507.176> 337 99.8553<105 107 207 392 492 494> 417 20<113 487>
VStem: 107 100<99 336> 392 100<99 336>
Ref: 1087 N 1 0 0 1 0 0
EndChar
StartChar: rho
Encoding: 961 961
Width: 600
Flags: W
HStem: -205 100<24 42 143 184> -16 100<280 312> 350 100<296 312>
VStem: -24 260<-157 -153> 42 100<-105 19 211 227> 458 100<211 227>
Fore
142 31.9407 m 1
142 -105 l 1
170 -105 l 2
196 -105 206 -107 216 -114 c 0
228 -124 236 -139 236 -155 c 0
236 -172 227 -188 212 -198 c 0
204 -203 192 -205 170 -205 c 2
42 -205 l 2
17 -205 11.6454 -206.203 -3 -195 c 24
-17.3535 -184.021 -24 -171 -24 -155 c 0
-24 -138 -15 -121 0 -112 c 0
9 -107 18 -105 42 -105 c 1
42 217 l 2
42 349 155 450 303 450 c 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
240.137 -16 185.459 1.80026 142 31.9407 c 1
142 217 m 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
211 350 142 293 142 217 c 0
EndSplineSet
MinimumDistance: x14,-1
Back
553 226 m 0
553 161 536 111 502 76 c 0
467 41 436 18 408 6 c 0
379 -7 349 -13 317 -13 c 0
258 -13 208 6 165 43 c 1
165 -128 l 1
241 -128 l 2
254 -128 265 -131 273 -137 c 1
284 -141 289 -152 289 -169 c 0
289 -175 288 -180 286 -184 c 0
284 -189 281 -193 278 -197 c 0
274 -202 269 -205 262 -208 c 0
255 -211 248 -213 241 -213 c 2
48 -213 l 2
40 -213 33 -212 28 -210 c 0
22 -208 17 -205 13 -202 c 1
4 -199 0 -188 0 -169 c 0
0 -157 1 -149 3 -145 c 0
5 -142 8 -139 13 -137 c 1
20 -131 32 -128 48 -128 c 2
80 -128 l 1
80 202 l 1
78 220 l 1
78 244 82 270 91 298 c 0
100 325 110 347 123 363 c 0
136 379 149 394 164 407 c 0
178 420 192 431 207 440 c 0
236 457 273 465 317 465 c 0
361 465 397 457 424 441 c 0
451 425 472 410 487 395 c 0
502 380 513 363 522 345 c 0
533 326 541 307 546 288 c 0
551 269 553 248 553 226 c 0
468 226 m 0
468 267 457 298 436 321 c 0
415 344 395 359 377 366 c 0
359 373 339 376 317 376 c 0
294 376 274 373 257 367 c 0
240 360 221 345 199 322 c 0
176 299 165 267 165 226 c 0
165 186 180 151 209 120 c 0
238 89 274 74 317 74 c 0
358 74 393 89 423 119 c 0
453 148 468 184 468 226 c 0
EndSplineSet
EndChar
StartChar: sigma1
Encoding: 962 962
Width: 600
Flags: W
HStem: -36 89<297 311 321.016 337> -19 171<169 177> 261 186<464 472> 382 81<289 325>
VStem: 113 82<308 317> 134 80<102 111> 411 82<102 111> 431 79<308 317>
Fore
510 315 m 2
510 300 507 288 500 277 c 0
493 266 480 261 462 261 c 1
460 264 l 1
439 277 l 1
436 285 434 291 433 296 c 0
432 301 431 305 431 309 c 0
431 317 428 325 423 334 c 1
417 341 411 348 405 354 c 0
399 359 392 364 383 368 c 0
374 372 363 375 352 378 c 0
340 381 326 382 311 382 c 0
290 382 272 380 258 377 c 0
244 374 232 368 222 359 c 0
212 350 205 342 201 335 c 0
197 328 195 320 195 311 c 0
195 294 202 281 215 273 c 0
228 264 241 258 256 253 c 0
271 248 289 244 311 239 c 1
342 236 364 233 379 230 c 0
393 227 405 223 416 216 c 1
429 210 440 203 449 196 c 0
458 189 468 178 478 163 c 0
488 148 493 128 493 103 c 0
493 56 473 22 434 0 c 1
404 -24 367 -36 323 -36 c 2
304 -36 l 2
269 -36 235 -26 202 -5 c 1
198 -8 l 2
190 -15 182 -19 175 -19 c 0
170 -19 164 -17 158 -14 c 0
152 -11 146 -8 141 -3 c 0
136 4 134 16 134 31 c 2
134 103 l 2
134 119 136 131 141 138 c 0
144 141 150 145 157 148 c 0
164 151 170 152 175 152 c 0
183 152 191 149 200 143 c 1
204 138 207 133 210 128 c 0
213 123 214 117 214 109 c 0
214 95 219 84 230 76 c 0
241 69 254 64 267 60 c 0
280 55 295 53 311 53 c 1
321 51 l 1
336 51 350 53 361 57 c 0
372 60 383 65 394 72 c 1
401 81 406 88 408 91 c 0
410 94 411 98 411 103 c 0
411 116 404 126 391 134 c 0
385 139 375 142 361 145 c 0
347 148 332 150 317 152 c 0
301 154 282 157 260 161 c 0
238 165 221 170 209 177 c 0
194 184 180 192 168 201 c 0
156 210 147 220 140 232 c 1
131 244 124 256 120 269 c 0
115 282 113 296 113 311 c 0
113 332 118 352 127 371 c 0
136 390 149 406 166 421 c 0
183 435 202 446 224 453 c 0
246 460 271 463 298 463 c 2
309 463 l 2
360 463 402 452 437 431 c 1
439 432 440 433 441 434 c 0
442 435 442 436 443 438 c 1
449 441 454 444 459 445 c 0
463 446 467 447 470 447 c 0
481 447 490 444 497 439 c 1
500 434 503 429 506 422 c 0
509 415 510 407 510 400 c 2
510 315 l 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: sigma
Encoding: 963 963
Width: 600
Flags: W
HStem: -16 100<282 314> 350 100<282 314 514 560>
VStem: 42 100<208 224> 458 100<208 224>
Fore
302 350 m 0
211 350 142 293 142 217 c 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
513 350 m 1
541 312 558 267 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 2
552 450 l 2
580 450 602 428 602 400 c 0
602 372 580 350 552 350 c 2
513 350 l 1
EndSplineSet
MinimumDistance: x5,-1
Back
536 360 m 1
431 360 l 1
467 317 485 265 485 204 c 0
485 137 462 80 416 33 c 0
370 -14 316 -38 253 -38 c 0
212 -38 173 -27 138 -5 c 1
103 12 74 41 53 81 c 0
32 120 21 161 21 204 c 0
21 247 29 285 46 316 c 0
63 347 88 377 123 406 c 0
158 435 202 449 257 449 c 2
276 449 l 1
536 451 l 1
536 360 l 1
399 204 m 0
399 251 385 288 356 317 c 0
327 346 293 360 253 360 c 0
212 360 180 349 159 328 c 0
137 306 123 286 117 268 c 0
110 249 107 228 107 204 c 0
107 180 110 159 117 142 c 0
123 125 137 105 160 83 c 1
182 60 213 49 253 49 c 0
294 49 328 64 357 94 c 0
385 123 399 160 399 204 c 0
EndSplineSet
EndChar
StartChar: tau
Encoding: 964 964
Width: 600
Flags: W
HStem: -16 100<406 422> 337 100<118 234 335 470>
VStem: 234 100<160 337>
Fore
334 337 m 1
334 173 l 2
334 120 366 84 412 84 c 0
428 84 444 87 460 92 c 0
474 97 477 98 483 98 c 0
508 98 531 75 531 48 c 0
531 8 486 -16 409 -16 c 0
310 -16 234 66 234 173 c 2
234 337 l 1
120 337 l 2
92 337 70 359 70 387 c 0
70 415 92 437 120 437 c 2
468 437 l 2
496 437 518 415 518 387 c 0
518 359 496 337 468 337 c 2
334 337 l 1
EndSplineSet
MinimumDistance: x12,-1 x8,11 x8,9 x0,12 x0,14
EndChar
StartChar: upsilon
Encoding: 965 965
Width: 600
Flags: W
HStem: -16 100<282 298> 337 100<58 92 374 404 505 538>
VStem: 92 100<160 337> 405 100<163 337>
Fore
405 337 m 1
386 337 l 2
361 337 350 339 341 346 c 0
328 356 320 371 320 387 c 0
320 404 329 421 344 430 c 0
353 435 362 437 386 437 c 2
521 437 l 2
547 437 557 435 567 428 c 0
579 418 587 403 587 387 c 0
587 370 578 353 563 344 c 0
555 339 544 337 521 337 c 2
505 337 l 1
505 166 l 2
505 42 420 -16 294 -16 c 0
171 -16 92 44 92 164 c 2
92 337 l 1
65 337 l 2
32 337 10 358 10 387 c 0
10 404 19 421 34 430 c 0
43 436 51 437 76 437 c 2
192 437 l 1
192 177 l 2
192 143 198 119 219 105 c 0
240 91 266 84 296 84 c 0
326 84 352 92 375 107 c 0
398 122 405 147 405 181 c 2
405 337 l 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: phi
Encoding: 966 966
Width: 600
Flags: W
HStem: -3 100<217 250 350 384> 337 100<217 250 350 384>
VStem: -4 100<210 227> 250 100<-157 -3 98 336 437 595> 504 100<210 227>
Fore
250 337 m 1
218 337 l 2
124 337 97 271 96 217 c 1
97 147 132 97 218 97 c 2
250 97 l 1
250 337 l 1
350 97 m 1
382 97 l 2
468 97 504 149 504 217 c 16
504 268 476 337 382 337 c 2
350 337 l 1
350 97 l 1
250 437 m 1
250 589 l 2
250 617 272 639 300 639 c 0
328 639 350 617 350 589 c 2
350 437 l 1
360 437 l 2
516 437 604 340 604 211 c 0
604 88 518 -3 362 -3 c 2
350 -3 l 1
350 -155 l 2
350 -183 328 -205 300 -205 c 0
272 -205 250 -183 250 -155 c 2
250 -3 l 1
238 -3 l 2
82 -3 -4 88 -4 211 c 0
-4 340 84 437 240 437 c 2
250 437 l 1
EndSplineSet
MinimumDistance: y10,13 y10,11 y18,21 y18,19
EndChar
StartChar: chi
Encoding: 967 967
Width: 600
Flags: W
HStem: -205 100<52 89 209.032 228.518 500 538> 337 100<52 91 372 380 501 538>
VStem: 5 267<-157 -153> 317 267<377.191 389>
DStem: 140 294 228 342 236 118 299 212 236 118 290 19 89 -105 209 -105 290 19 353 113 378 -142 466 -94 381 337 501 337 299 212 353 113
Fore
501 337 m 1
353 113 l 1
466 -94 l 2
467 -96 478 -105 508 -105 c 2
536 -105 l 2
564 -105 586 -127 586 -155 c 0
586 -183 564 -205 536 -205 c 16
471 -205 412 -204 378 -142 c 2
290 19 l 1
209 -105 l 1
232 -105 242 -107 251 -114 c 0
264 -124 272 -139 272 -155 c 0
272 -172 263 -189 248 -198 c 0
239 -203 230 -205 206 -205 c 2
71 -205 l 2
45 -205 35 -203 25 -196 c 0
13 -186 5 -171 5 -155 c 0
5 -138 14 -121 29 -112 c 0
37 -107 48 -105 71 -105 c 2
89 -105 l 1
236 118 l 1
140 294 l 2
126 319 114 337 82 337 c 2
54 337 l 2
26 337 4 359 4 387 c 0
4 415 26 437 54 437 c 2
82 437 l 2
162 437 208 378 228 342 c 2
299 212 l 1
381 337 l 1
358 337 347 339 338 346 c 0
325 356 317 371 317 387 c 0
317 404 326 421 341 430 c 0
350 435 359 437 383 437 c 2
518 437 l 2
544 437 554 435 564 428 c 0
576 418 584 403 584 387 c 0
584 370 575 353 560 344 c 0
552 339 541 337 518 337 c 2
501 337 l 1
EndSplineSet
MinimumDistance: x36,-1
Back
575 408 m 0
575 403 574 398 572 394 c 0
570 390 566 385 561 378 c 1
557 375 552 372 547 369 c 0
541 366 534 364 525 364 c 2
485 364 l 1
337 121 l 1
472 -113 l 1
513 -113 l 2
528 -113 539 -116 548 -123 c 1
553 -129 557 -135 560 -140 c 0
563 -145 564 -150 564 -155 c 0
564 -163 562 -170 559 -175 c 0
555 -181 550 -185 544 -188 c 1
535 -195 524 -199 513 -199 c 2
437 -199 l 1
293 51 l 1
192 -113 l 1
202 -113 l 2
218 -113 230 -116 239 -123 c 1
244 -130 248 -136 250 -141 c 0
252 -146 253 -151 253 -157 c 0
253 -165 251 -172 248 -177 c 0
244 -183 239 -187 233 -190 c 1
224 -197 213 -201 200 -201 c 2
59 -201 l 2
45 -201 33 -197 24 -190 c 1
15 -186 10 -175 10 -157 c 0
10 -144 13 -135 19 -129 c 0
25 -123 31 -119 37 -117 c 0
43 -116 50 -115 59 -115 c 2
98 -115 l 1
247 126 l 1
110 362 l 1
71 362 l 2
65 362 59 363 52 366 c 0
45 368 40 371 37 374 c 0
33 377 29 381 26 388 c 0
23 394 21 400 21 406 c 0
21 423 27 435 38 440 c 1
46 446 57 449 71 449 c 2
147 449 l 1
291 199 l 1
390 362 l 1
382 362 l 2
367 362 354 366 343 375 c 1
336 384 332 395 332 408 c 0
332 427 337 438 348 443 c 0
353 446 358 449 363 450 c 0
368 451 375 451 384 451 c 2
525 451 l 2
534 451 540 451 544 450 c 0
547 449 552 446 557 442 c 1
569 437 575 425 575 408 c 0
EndSplineSet
EndChar
StartChar: psi
Encoding: 968 968
Width: 600
Flags: W
HStem: -4 100<234 250 350 362> 337 100<26 60 540 570> 419 20G<440 556>
VStem: 60 100<178 337> 250 100<-158 -4 97 594> 440 100<178 339> 440 182<386 391>
Fore
44 437 m 2
160 437 l 1
160 190 l 2
160 123 185 96 244 96 c 2
250 96 l 1
250 588 l 2
250 615.6 272.4 638 300 638 c 0
327.6 638 350 615.6 350 588 c 2
350 96 l 1
409.217 96 440 110.176 440 190 c 2
440 439 l 1
556 439 l 2
580 439 589 438 598 432 c 0
613 423 622 406 622 389 c 0
622 373 614 358 602 348 c 0
592 341 582 339 556 339 c 2
540 339 l 1
540 190 l 2
540 74.1113 465 -3.99999 356 -4 c 2
350 -4 l 1
350 -156 l 2
350 -183.6 327.6 -206 300 -206 c 0
272.4 -206 250 -183.6 250 -156 c 2
250 -4 l 1
244 -4 l 2
141 -4 60 74 60 190 c 2
60 337 l 1
44 337 l 2
18 337 8 339 -2 346 c 0
-14 356 -22 371 -22 387 c 0
-22 404 -13 421 2 430 c 0
11 436 20 437 44 437 c 2
EndSplineSet
MinimumDistance: y19,22 y19,20 y4,7 y4,5 x0,2 y3,0 y3,1
EndChar
StartChar: omega
Encoding: 969 969
Width: 600
Flags: W
HStem: -40 87<190 209 387 407> 364 87<150 200 397 445>
VStem: 19 83<200 232> 30 208<407 412> 257 85<104 257> 359 209<407 412> 493 84<200 232>
Fore
568 410 m 0
568 397 564 388 557 382 c 0
550 376 543 372 537 370 c 0
530 367 522 366 512 366 c 1
512 386 l 1
527 386 l 1
545 359 558 332 566 304 c 0
573 276 577 248 577 219 c 0
577 172 569 128 552 87 c 0
535 46 518 19 501 4 c 0
484 -11 468 -21 452 -28 c 0
436 -35 417 -38 396 -38 c 0
374 -38 356 -35 343 -28 c 0
329 -22 316 -12 303 1 c 2
298 5 l 1
295 2 l 2
283 -13 270 -23 256 -30 c 0
241 -37 223 -40 200 -40 c 0
179 -40 160 -37 144 -30 c 0
128 -23 112 -13 96 1 c 0
80 15 63 43 46 85 c 0
28 127 19 171 19 217 c 0
19 246 23 274 31 302 c 0
38 330 51 357 69 384 c 1
84 384 l 1
84 364 l 1
73 364 65 365 59 368 c 0
52 370 46 373 41 378 c 0
34 387 30 397 30 408 c 0
30 419 31 427 33 432 c 0
35 436 39 439 44 441 c 1
52 448 64 451 79 451 c 2
188 451 l 2
202 451 213 448 221 441 c 1
232 436 238 425 238 408 c 0
238 403 237 400 236 397 c 0
235 394 230 387 223 378 c 1
218 374 214 371 209 368 c 0
204 365 197 364 188 364 c 2
150 364 l 1
133 340 121 315 114 289 c 0
106 263 102 238 102 213 c 0
102 180 107 151 117 124 c 0
127 97 137 80 148 71 c 0
158 62 167 56 176 53 c 0
184 49 191 47 198 47 c 0
206 47 212 48 217 51 c 0
221 54 228 59 239 67 c 1
251 81 257 98 257 117 c 2
257 255 l 2
257 264 257 269 258 271 c 0
259 272 261 276 266 281 c 1
268 286 273 289 280 292 c 0
287 295 294 296 302 296 c 0
311 296 321 291 332 282 c 1
339 273 342 264 342 255 c 2
342 117 l 2
342 105 343 96 345 90 c 0
346 83 350 76 356 69 c 1
367 61 374 56 379 53 c 0
383 50 389 49 398 49 c 0
406 49 414 51 422 55 c 0
429 59 437 64 445 70 c 1
456 81 467 100 478 128 c 0
488 155 493 185 493 216 c 0
493 242 490 267 483 291 c 0
476 315 463 340 445 366 c 1
407 366 l 2
394 366 381 371 370 381 c 1
363 390 359 400 359 410 c 0
359 420 360 428 362 433 c 0
363 438 367 441 372 443 c 1
380 450 392 453 407 453 c 2
517 453 l 2
531 453 543 450 553 443 c 0
563 436 568 425 568 410 c 0
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: iotadieresis
Encoding: 970 970
Width: 600
Flags: W
HStem: -16 100<424 441> 337 100<153 250>
VStem: 97 120<533.5 566> 250 100<160 337> 305 120<533.5 566>
Ref: 168 N 1 0 0 1 -39 -44
Ref: 953 N 1 0 0 1 0 0
EndChar
StartChar: upsilondieresis
Encoding: 971 971
Width: 600
Flags: W
HStem: -16 100<282 298> 337 100<58 92 374 404 505 538>
VStem: 92 100<160 337> 134 120<533.5 566> 342 120<533.5 566> 405 100<163 337>
Ref: 168 N 1 0 0 1 -2 -44
Ref: 965 N 1 0 0 1 0 0
EndChar
StartChar: omicrontonos
Encoding: 972 972
Width: 600
Flags: W
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 490 218<295 311>
VStem: 42 100<179.5 255> 263 80<522 670> 458 100<179.5 254>
Ref: 900 N 1 0 0 1 3 -24
Ref: 959 N 1 0 0 1 0 0
EndChar
StartChar: upsilontonos
Encoding: 973 973
Width: 600
Flags: W
HStem: -16 100<282 298> 337 100<58 92 374 404 505 538> 490 218<290 306>
VStem: 92 100<160 337> 258 80<522 670> 405 100<163 337>
Ref: 900 N 1 0 0 1 -2 -24
Ref: 965 N 1 0 0 1 0 0
EndChar
StartChar: omegatonos
Encoding: 974 974
Width: 600
Flags: W
HStem: -40 87<190 209 387 407> 364 87<150 200 397 445> 493 218<454 470>
VStem: 19 83<200 232> 30 208<407 412> 257 85<104 257> 359 209<407 412> 422 80<525 673> 493 84<200 232>
Ref: 900 N 1 0 0 1 162 -21
Ref: 969 N 1 0 0 1 0 0
EndChar
StartChar: uni03D0
Encoding: 976 976
Width: 600
Flags: W
HStem: -34 100<303 322> 178 100<198 338> 322 100<200 338> 525 100<303 338>
VStem: 82 101<278 322> 422 100<129.565 142 459 462>
Fore
200 422 m 1
315 422 l 2
396 422 422 439 422 460 c 0
422 496 385 525 318 525 c 0
261 525 221 486 200 422 c 1
198 178 m 1
219 108 259 66 318 66 c 0
391 66 422 107 422 140 c 0
422 158 396 178 315 178 c 2
315 178 232 178 198 178 c 1
183 322 m 1
182 308 182 292 183 278 c 1
222 278 301 278 301 278 c 2
395 278 522 263 522 140 c 0
522 37 427 -34 318 -34 c 0
137 -34 82 155 82 300 c 0
82 447 142 622 318 625 c 0
411 627 522 574 522 460 c 0
522 337 394 322 301 322 c 2
301 322 222 322 183 322 c 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: theta1
Encoding: 977 977
Width: 600
Flags: W
HStem: -44 89<295 316> 153.631 86.0467<106 108> 293 86<255 314 352.008 359> 559 90<295 316>
VStem: 71 119<174 197> 107 87<420 436> 438 91<276 324>
Fore
529 301 m 0
529 209 508 129 466 60 c 0
424 -9 373 -44 312 -44 c 0
277 -44 244 -35 213 -17 c 0
181 0 157 26 140 60 c 0
127 84 118 102 114 115 c 0
110 128 108 144 108 163 c 1
116 163 120 162 120 160 c 0
119 158 118 156 115 153 c 1
108 153 102 154 97 156 c 0
92 158 87 162 81 167 c 1
74 176 71 186 71 197 c 0
72 202 73 210 73 221 c 1
77 225 81 229 85 232 c 0
89 235 93 237 97 238 c 0
99 239 105 240 115 240 c 2
140 240 l 2
159 240 172 234 177 222 c 1
179 220 182 213 185 201 c 0
188 188 190 179 190 174 c 0
193 152 196 137 200 130 c 0
203 122 209 110 217 95 c 0
225 79 237 67 254 58 c 0
271 49 289 45 310 45 c 0
327 45 342 52 356 65 c 0
370 78 384 97 398 122 c 0
412 144 422 171 429 203 c 0
435 234 438 268 438 303 c 0
438 342 436 376 431 406 c 0
425 435 414 461 401 484 c 0
387 507 375 525 364 539 c 0
353 552 334 559 309 559 c 0
269 559 236 545 218 511 c 0
199 477 194 447 194 428 c 0
194 418 195 409 197 401 c 0
198 393 204 387 213 384 c 0
222 380 233 378 246 378 c 0
259 379 269 379 275 379 c 2
353 379 l 2
363 379 374 375 383 369 c 1
394 364 398 355 398 338 c 0
398 329 394 320 387 312 c 1
385 308 381 304 374 301 c 0
367 297 360 295 352 295 c 2
314 293 l 1
289 293 l 2
237 293 197 299 169 310 c 0
141 321 121 344 110 380 c 1
108 396 107 411 107 424 c 0
107 449 110 470 115 488 c 0
120 506 131 529 147 557 c 0
162 584 185 607 215 624 c 0
245 641 277 649 312 649 c 0
373 649 426 615 469 547 c 1
509 475 529 393 529 301 c 0
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: phi1
Encoding: 981 981
Width: 600
Flags: W
HStem: 0 100<245 274 374 410> 350 100<42 77 374 410>
VStem: 77 100<155 350> 274 100<-154 0 101 349> 478 100<155 296>
Fore
478 168 m 2
478 284 l 2
478 332.042 449.685 350 400 350 c 2
374 350 l 1
374 100 l 1
403 100 l 2
425 100 441.096 103 458 119 c 24
473.375 133.553 478 150 478 168 c 2
274 0 m 1
251 0 l 2
206.774 0 160.205 14.6123 135 34 c 0
104.199 61.5586 77 99.6934 77 153 c 2
77 350 l 1
48 350 l 2
35.3525 350 20.9552 352.52 9 364 c 24
-2.51855 375.062 -6 392.633 -6 401 c 0
-6 432.4 16.275 450 52 450 c 2
177 450 l 1
177 168 l 2
177 150 182 136 192 126 c 0
206.275 111.725 221.411 100 246 100 c 2
274 100 l 1
274 450 l 1
404 450 l 2
468.147 450 497.727 434.273 537 395 c 0
561 371 578 337 578 294 c 2
578 155 l 2
578 106.732 558.211 71.4514 518 37 c 24
481.882 6.05566 453.367 0 405 0 c 2
374 0 l 1
374 -152 l 2
374 -180 352 -202 324 -202 c 0
296 -202 274 -180 274 -152 c 2
274 0 l 1
EndSplineSet
MinimumDistance: x24,-1 x22,20 y20,22 y20,21 y7,29 y7,31
EndChar
StartChar: uni03F1
Encoding: 1009 1009
Width: 600
Flags: W
HStem: -205.302 99.9999<202 491> -16 100<282 314> 350 100<282 314>
VStem: 42 100<-62 18 210 226> 458 100<210 226>
Fore
142 31.9407 m 1
142 -45 l 2
142 -98 163.997 -105.363 218.944 -105.302 c 2
488.944 -105 l 1
516.544 -104.969 538.969 -127.344 539 -154.944 c 0
539.031 -182.544 516.656 -204.969 489.056 -205 c 1
219.056 -205.302 l 2
109.997 -205.424 42 -138 42 -45 c 2
42 217 l 2
42 349 155 450 303 450 c 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
240.137 -16 185.459 1.80026 142 31.9407 c 1
142 217 m 0
142 142 211 84 300 84 c 0
389 84 458 142 458 217 c 0
458 291 389 350 302 350 c 0
211 350 142 293 142 217 c 0
EndSplineSet
MinimumDistance: x10,-1
EndChar
StartChar: uni0400
Encoding: 1024 1024
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 192 751 238 807 325 639 371 696
Ref: 96 N 1 0 0 1 44 127
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: afii10023
Encoding: 1025 1025
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 117 120<666.5 699> 279 99<218 242 343 369> 325 120<666.5 699> 428 100<415 483> 450 100<100 171>
Ref: 168 N 1 0 0 1 -19 89
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: afii10051
Encoding: 1026 1026
Width: 600
Flags: W
HStem: -1 101.385<291 309> 278 100<371 394> 482 100<119 181 282 346>
VStem: 20 100<468 482> 182 100<99 240 340 482> 346 0<482 483.511> 346 99.5089<468 482> 481 100.253<-12 -10 19 240>
Fore
282 99 m 5
282 240 l 5
302.667 265.333 336 278 382 278 c 6
394 278 l 6
442 275.333 471.333 262.667 482 240 c 5
482 20 l 5
481 -10 l 5
481 -26.001 470.604 -43.3955 458 -56 c 4
432.667 -80 381 -90 340 -87 c 4
338 -187 l 5
412.6 -186.333 475.593 -173.35 518 -136 c 5
540 -115 l 5
568 -83.667 582 -42.333 582 9 c 5
582 243 l 5
577 278 l 5
572.333 298 564.333 314.667 553 328 c 4
525 361.333 470 378 388 378 c 4
347.333 378 312 365.333 282 340 c 5
282 482 l 5
346 482 l 5
346 484.057 346 483.972 346 482 c 5
346 463.333 348.333 450 353 442 c 4
363 426 377.333 418 396 418 c 4
412.667 418 426.333 425 437 439 c 6
438 440 l 6
443.333 447.333 446 462 446 484 c 6
446 582 l 5
20 582 l 5
20 480 l 5
20 461.333 22.333 448 27 440 c 4
36.333 424 50.667 416 70 416 c 4
86.667 416 100.333 423 111 437 c 5
111 438 l 5
117 446 120 460.667 120 482 c 6
120 482 l 5
182 482 l 5
182 99 l 5
174 98 l 5
174 98 l 5
174 98 173.667 98 173 98 c 4
144.333 92 130 75.667 130 49 c 6
130 48 l 5
130.667 32 137.333 18.667 150 8 c 6
151 8 l 6
159 2 174 -1 196 -1 c 6
298 -1 l 6
318 -1 332 1.33301 340 6 c 4
356 16 364 30.333 364 49 c 6
364 50 l 5
363.333 66.667 356 80 342 90 c 6
341 90 l 5
339.105 96.1016 316 105 282 99 c 5
EndSplineSet
MinimumDistance: y17,19 x19,17 x19,18 y36,34 x34,36 x34,35
EndChar
StartChar: afii10052
Encoding: 1027 1027
Width: 600
Flags: W
HStem: 0 100<79 112 212 321> 483 100<79 112 212 468>
VStem: 112 100<99 483> 468 100<415 483>
DStem: 344 807 390 751 211 696 257 639
Fore
212 100 m 1
312 100 l 2
340 100 348 98 358 91 c 0
370 81 378 66 378 50 c 0
378 33 370 16 354 7 c 0
348 3 332 0 312 0 c 2
98 0 l 2
74 0 60 3 52 10 c 0
40 19 32 35 32 50 c 0
32 67 40 84 56 93 c 1
64 99 74 100 98 100 c 2
112 100 l 1
112 483 l 1
98 483 l 2
72 483 62 485 52 492 c 0
40 502 32 517 32 533 c 0
32 550 40 567 56 576 c 1
64 582 72 583 98 583 c 2
568 583 l 1
568 432 l 2
568 405 566 397 560 387 c 0
550 374 534 366 518 366 c 0
502 366 486 375 476 390 c 0
470 398 468 409 468 432 c 2
468 483 l 1
212 483 l 1
212 100 l 1
390 751 m 1
257 639 l 2
242 627 235 623 225 623 c 0
205 623 188 640 188 659 c 0
188 672 195 683 211 696 c 2
344 807 l 2
360 820 365 823 376 823 c 0
397 823 413 807 413 786 c 0
413 774 407 764 390 751 c 1
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: afii10053
Encoding: 1028 1028
Width: 600
Flags: W
HStem: -14 100<306 355> 241 100<136 371> 367 216<497 503> 497 100<304 330>
Fore
134 241 m 1
350 241 l 2
374 241 388 244 396 250 c 0
408 260 416 276 416 291 c 0
416 308 408 325 392 334 c 1
384 340 376 341 350 341 c 2
136 341 l 1
148 432 217 497 310 497 c 0
344 497 380 488 408 473 c 0
436 457 446 444 452 420 c 1
456 396 458 389 466 381 c 0
474 373 488 367 500 367 c 0
516 367 532 375 542 388 c 0
548 397 550 408 550 433 c 2
550 517 l 2
550 542 550 550 544 559 c 0
534 574 518 583 500 583 c 0
484 583 472 577 458 559 c 1
448 563 l 2
392 586 358 597 306 597 c 0
152 597 34 475 34 315 c 2
34 249 l 2
34 97 158 -14 328 -14 c 0
400 -14 468 4 512 36 c 0
546 60 566 86 566 109 c 0
566 136 542 159 516 159 c 0
502 159 490 154 480 143 c 0
452 115 452 115 442 109 c 0
416 94 376 86 332 86 c 0
216 86 139 147 134 241 c 1
EndSplineSet
EndChar
StartChar: afii10054
Encoding: 1029 1029
Width: 600
Flags: W
HStem: -14 100<282 339> 497 100<267.5 324.5>
VStem: 82 104<410.5 442.5> 434 104<140.5 172.5>
Ref: 83 N 1 0 0 1 0 0
EndChar
StartChar: afii10055
Encoding: 1030 1030
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: afii10056
Encoding: 1031 1031
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 136 120<666.5 699> 250 100<100 483> 344 120<666.5 699>
Ref: 168 N 1 0 0 1 0 89
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: afii10057
Encoding: 1032 1032
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 136 120<666.5 699> 250 100<100 483> 344 120<666.5 699>
Ref: 168 N 1 0 0 1 0 89
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: afii10058
Encoding: 1033 1033
Width: 600
Flags: W
HStem: 0 100<273 300 404 435> 240 100<404.063 435> 563 20G<136 386>
VStem: -46 100<116.038 145> 122 100<129 483> 300 104<100 240 339 483> 534 106<159 185>
Fore
404 485 m 5
404 340 l 5
475.333 340 528.667 326 564 298 c 4
570 294 575.667 289 581 283 c 6
590 274 l 6
623.333 238 640 217.667 640 169 c 6
640 168 l 6
640 102.667 613 73 559 37 c 4
525.211 15.498 477.965 0 424 0 c 6
285 0 l 21
263.667 0 268.667 3 260 9 c 4
246.667 19.667 239.667 33 239 49 c 5
239 50 l 6
239 69.333 247 83.667 263 93 c 4
269.667 97.667 263.667 100 285 100 c 6
300 100 l 5
300 483 l 5
222 483 l 1
222 130 l 2
222 56.667 184.667 14.333 110 3 c 1
71 0 l 1
20.333 0 6.33301 17 -21 53 c 0
-37.667 74.333 -46 99.333 -46 128 c 1
-46 137 l 1
-46 163.884 -42.0938 167.68 -38 182 c 1
-27.333 196 -13.333 203 4 203 c 0
21.333 203 35.333 195 46 179 c 0
51.333 172.333 54 159.333 54 140 c 2
54 138 l 2
54 116 52.333 103.333 77 100 c 0
80.333 99.333 73 100 77 100 c 0
100.276 100 122 113.188 122 139 c 2
122 483 l 1
88.667 486.333 71.333 502 70 530 c 1
70 533 l 2
70 552.333 78 566.667 94 576 c 0
100.667 580.667 114.667 583 136 583 c 2
386 583 l 6
408 583 423 580 431 574 c 6
432 574 l 6
444.667 563.333 451.333 550 452 534 c 5
452 533 l 6
452 506.839 438.612 485 404 485 c 5
404 100 m 5
424 100 l 6
478 100 512.667 98 528 136 c 4
532 146 534 157.333 534 170 c 6
534 171 l 6
534 213.667 513.333 219.667 472 233 c 5
472 233 l 5
458 237.667 442 240 424 240 c 6
404 240 l 5
404 100 l 5
EndSplineSet
EndChar
StartChar: afii10059
Encoding: 1034 1034
Width: 600
Flags: W
HStem: 0 100<-15 12 112 133 275 300 400 437> 1 21G<284 420> 241 100<112 300 400.063 431> 563 20G<24 26 26 126> 564 20G<284 386>
VStem: -40 232<527 535> 12 100<99 241 341 483> 218 234<533 535> 300 100<101 241 341 485> 530 106<159 177>
Fore
400 484 m 5
400 341 l 5
400 341 l 6
471.333 341 524.667 327 560 299 c 4
566 295 571.667 290 577 284 c 6
586 275 l 6
619.333 239 636 218.667 636 170 c 6
636 169 l 6
636 103.667 609 74 555 38 c 4
533 24 508.333 14 481 8 c 4
461.667 3.33301 441.333 1 420 1 c 6
284 1 l 6
262.667 1 248 4 240 10 c 4
226 20 218.667 33.333 218 50 c 5
218 51 l 6
218 69.667 226 84 242 94 c 4
250 98.667 264 101 284 101 c 6
300 101 l 5
300 242 l 5
112 241 l 5
112 100 l 5
126 100 l 6
148 100 163 97 171 91 c 6
172 91 l 6
184.667 80.333 191.333 67 192 51 c 5
192 50 l 6
192 30 184 15.667 168 7 c 4
160.667 2.33301 146.667 0 126 0 c 6
6 0 l 6
-16.667 0 -32 3 -40 9 c 4
-52.667 19.667 -59.333 33 -60 49 c 5
-60 50 l 6
-60 70 -52 84.333 -36 93 c 5
-30 97.667 -16.667 100 4 100 c 6
6 100 l 5
12 100 l 5
12 483 l 5
-22 485.667 -39.333 501.667 -40 531 c 5
-40 533 l 6
-40 552.333 -32 566.667 -16 576 c 4
-10 580.667 3.33301 583 24 583 c 6
26 583 l 5
126 583 l 6
148 583 163 580 171 574 c 6
172 574 l 6
184.667 563.333 191.333 550 192 534 c 5
192 533 l 6
192 513.667 184 499.333 168 490 c 4
160.667 485.333 146.667 483 126 483 c 6
112 483 l 5
112 341 l 5
300 342 l 5
300 484 l 5
284 484 l 6
263.333 484 249 487 241 493 c 6
240 493 l 6
226 503 218.667 516.333 218 533 c 5
218 534 l 6
218 552.667 226 567 242 577 c 4
250 581.667 264 584 284 584 c 6
386 584 l 6
408 584 423 581 431 575 c 6
432 575 l 6
444.667 564.333 451.333 551 452 535 c 5
452 534 l 6
452 507.333 437.667 491 409 485 c 4
408.333 485 408 485 408 485 c 5
408 485 l 5
400 484 l 5
400 101 m 5
420 101 l 6
474 101 508.667 99 524 137 c 4
528 147 530 158.333 530 171 c 6
530 172 l 6
530 214.667 509.333 220.667 468 234 c 5
468 234 l 5
454 238.667 438 241 420 241 c 6
400 241 l 5
400 101 l 5
EndSplineSet
EndChar
StartChar: afii10060
Encoding: 1035 1035
Width: 600
Flags: W
HStem: 0 21G<168 270 438 540> 279 100<343 366> 483 100<91 153 254 318>
VStem: -8 100<463 483> 102 234<49 51> 154 100<99 241 341 483> 318 0<482 484> 318 100<463.996 484> 372 234<49 56> 454 100<99 241>
Fore
254 483 m 5
254 341 l 5
284 366.333 319.333 379 360 379 c 4
442 379 497 362.333 525 329 c 4
536.333 315.667 544.333 299 549 279 c 5
554 244 l 5
554 100 l 5
585.333 97.333 602.667 82.667 606 56 c 5
606 50 l 6
606 31.333 598 17 582 7 c 4
574 2.33301 560 0 540 0 c 6
438 0 l 6
415.333 0 400.667 3 394 9 c 4
380 19 372.667 32.333 372 49 c 5
372 50 l 6
372 68.667 380 83 396 93 c 4
405.333 97.667 419.333 100 438 100 c 6
454 100 l 5
454 241 l 5
443.333 263.667 414 276.333 366 279 c 6
354 279 l 6
308 279 274.667 266.333 254 241 c 5
254 100 l 5
270 100 l 6
290.667 100 305 97 313 91 c 6
314 91 l 6
328 81 335.333 67.667 336 51 c 5
336 50 l 6
336 31.333 328 17 312 7 c 4
304 2.33301 290 0 270 0 c 6
168 0 l 6
146 0 131 3 123 9 c 6
122 9 l 6
109.333 19.667 102.667 33 102 49 c 5
102 50 l 6
102 76.667 116.333 93 145 99 c 4
145.667 99 146 99 146 99 c 5
146 99 l 5
154 100 l 5
154 483 l 5
92 483 l 5
92 483 l 6
92 461.667 89 447 83 439 c 5
83 438 l 5
72.333 424 58.667 417 42 417 c 4
22.667 417 8.33301 425 -1 441 c 0
-5.66699 449 -8 462.333 -8 481 c 1
-8 583 l 1
418 583 l 5
418 485 l 6
418 463 415.333 448.333 410 441 c 6
409 440 l 6
398.333 426 384.667 419 368 419 c 4
349.333 419 335 427 325 443 c 4
320.333 451 318 464.333 318 483 c 5
318 484.972 318 485.057 318 483 c 5
254 483 l 5
EndSplineSet
MinimumDistance: x5,-1 y1,55 x55,1 x55,0 y38,40 x40,38 x40,39
EndChar
StartChar: afii10061
Encoding: 1036 1036
Width: 600
Flags: W
HStem: 0 100<53 86 186 231 495 548> 483 100<53 86 186 231 504.031 519.737>
VStem: 86 100<99 278 334 483> 334 232<527 536>
DStem: 344 807 390 751 211 696 257 639 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
390 751 m 1
257 639 l 2
242 627 235 623 225 623 c 0
205 623 188 640 188 659 c 0
188 672 195 683 211 696 c 2
344 807 l 2
360 820 365 823 376 823 c 0
397 823 413 807 413 786 c 0
413 774 407 764 390 751 c 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni040D
Encoding: 1037 1037
Width: 600
Flags: W
HStem: 0 100<66 93 193 230 372 406 507 534> 563 20G<107 208 392 493>
VStem: 93 100<99 141 256 483> 407 100<99 326 440 483>
DStem: 211 751 257 807 344 639 390 696 407 441 407 326 193 256 193 141
Fore
407 326 m 1
193 141 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
208 583 l 2
235 583 244 581 253 574 c 0
266 564 274 549 274 533 c 0
274 516 265 499 250 490 c 0
241 485 232 483 208 483 c 2
193 483 l 1
193 256 l 1
407 441 l 1
407 483 l 1
392 483 l 2
366 483 357 485 347 492 c 0
334 502 326 517 326 533 c 0
326 550 335 567 350 576 c 0
359 582 367 583 392 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 326 l 1
257 807 m 2
390 696 l 2
406 683 413 672 413 659 c 0
413 640 396 623 376 623 c 0
366 623 359 627 344 639 c 2
211 751 l 1
194 764 188 774 188 787 c 0
188 807 204 823 225 823 c 0
236 823 241 820 257 807 c 2
EndSplineSet
MinimumDistance: x35,-1
EndChar
StartChar: afii10062
Encoding: 1038 1038
Width: 600
Flags: W
HStem: 0 21G<184 294> 0.957314 99.0427<163 176> 563 20G<86 178 424 514> 623 68<291 308>
VStem: 20 224<527 535> 356 224<527 535>
DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100
Fore
306 100 m 1
340 98 360 80 360 50 c 0
360 33 352 16 336 7 c 0
328 2 316 0 294 0 c 2
184 0 l 2
160 0 148 3 138 9 c 1
126 19 118 34 118 50 c 0
118 81 140 100 176 100 c 1
244 216 l 1
78 483 l 1
42 485 20 503 20 533 c 0
20 560 38 578 66 581 c 0
78 583 80 583 86 583 c 2
178 583 l 2
206 583 214 581 224 574 c 0
236 564 244 549 244 533 c 0
244 511 236 498 206 484 c 1
300 312 l 1
394 484 l 1
366 498 356 511 356 533 c 0
356 548 364 564 378 573 c 1
386 580 402 583 424 583 c 2
514 583 l 2
540 583 548 581 558 574 c 0
572 564 580 549 580 533 c 0
580 502 558 484 522 483 c 1
306 100 l 1
159 807 m 0
179 807 186 798 193 767 c 0
203 721 245 691 300 691 c 0
355 691 397 721 407 767 c 0
414 798 421 807 441 807 c 0
461 807 475 792 475 769 c 0
475 693 392 623 300 623 c 0
208 623 125 693 125 769 c 0
125 792 139 807 159 807 c 0
EndSplineSet
MinimumDistance: x24,-1 x19,24 x6,1
EndChar
StartChar: afii10145
Encoding: 1039 1039
Width: 600
Flags: W
HStem: 0 100<193 254 347 406> 483 100<68 92 193 214 372 406 507 518>
VStem: 93 100<100 483> 257.996 84.4365<-55 -35> 407 100<100 483>
Fore
348 0 m 5
336.598 -45.1787 344.265 -64.9561 348 -90 c 5
322.838 -102.442 284 -102 254 -90 c 5
260.074 -66.0332 258.546 -34.5137 254 0 c 5
107 0 l 2
85.4443 4.39941 70 3 62 9 c 2
61 9 l 2
48.3333 19.6667 41.6667 33 41 49 c 1
41 50 l 2
41 78.6667 57 95.3333 89 100 c 0
90.3333 100 91.6667 100 93 100 c 1
93 483 l 1
87 483 l 2
65 483 50.3333 486 43 492 c 2
42 492 l 2
28.6667 502.667 21.6667 516 21 532 c 1
21 533 l 2
21 552.333 29 566.667 45 576 c 0
52.3333 580.667 66.3333 583 87 583 c 2
208 583 l 2
229.333 583 244.333 580 253 574 c 0
266.333 563.333 273.333 550 274 534 c 1
274 533 l 2
274 513.667 266 499.333 250 490 c 0
243.333 485.333 229.333 483 208 483 c 2
193 483 l 1
193 100 l 1
407 100 l 1
407 483 l 1
392 483 l 2
370 483 355.333 486 348 492 c 2
347 492 l 2
333.667 502.667 326.667 516 326 532 c 1
326 533 l 2
326 552.333 334 566.667 350 576 c 0
357.333 580.667 371.333 583 392 583 c 2
513 583 l 2
535 583 550.333 580 559 574 c 0
571.667 563.333 578.333 550 579 534 c 1
579 533 l 2
579 513.667 571 499.333 555 490 c 0
547.667 485.333 533.667 483 513 483 c 2
507 483 l 1
507 100 l 1
540.333 96.6667 557.667 81 559 53 c 0
559 52.3333 559 51.6667 559 51 c 2
559 50 l 2
559 30.6667 551 16.3333 535 7 c 0
527.667 2.33333 513.238 4.1875 493 0 c 2
348 0 l 5
EndSplineSet
MinimumDistance: x42,-1 x1,3 x2,0 y0,2 y0,1
EndChar
StartChar: afii10017
Encoding: 1040 1040
Width: 600
Flags: W
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: afii10018
Encoding: 1041 1041
Width: 600
Flags: W
HStem: 0 100<68 102 202 390> 242 100<202 390> 483 100<68 102 202 458>
VStem: 102 100<100 241 341 483> 458 100<415 483> 475 104<159 179>
Fore
381 342 m 2
522 342 579 264 579 176 c 0
579 66 526 0 382 0 c 2
87 0 l 2
64 0 50 3 42 10 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 63 100 87 100 c 2
102 100 l 1
102 483 l 1
87 483 l 2
62 483 51 485 42 492 c 0
29 502 21 518 21 533 c 0
21 550 31 567 45 576 c 0
54 582 63 583 87 583 c 2
558 583 l 1
558 432 l 2
558 405 556 397 549 387 c 0
539 374 524 366 508 366 c 0
491 366 475 375 465 390 c 0
460 398 458 409 458 432 c 2
458 483 l 1
202 483 l 1
202 342 l 1
381 342 l 2
202 100 m 1
373 100 l 2
441 100 476 123 475 173 c 0
474 222 438 242 371 242 c 2
202 242 l 1
202 100 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: afii10019
Encoding: 1042 1042
Width: 600
Flags: W
HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334>
VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162>
Ref: 66 N 1 0 0 1 0 0
EndChar
StartChar: afii10020
Encoding: 1043 1043
Width: 600
Flags: W
HStem: 0 100<79 112 212 321> 483 100<79 112 212 468>
VStem: 112 100<99 483> 468 100<415 483>
Fore
212 100 m 1
312 100 l 2
340 100 348 98 358 91 c 0
370 81 378 66 378 50 c 0
378 33 370 16 354 7 c 0
348 3 332 0 312 0 c 2
98 0 l 2
74 0 60 3 52 10 c 0
40 19 32 35 32 50 c 0
32 67 40 84 56 93 c 1
64 99 74 100 98 100 c 2
112 100 l 1
112 483 l 1
98 483 l 2
72 483 62 485 52 492 c 0
40 502 32 517 32 533 c 0
32 550 40 567 56 576 c 1
64 582 72 583 98 583 c 2
568 583 l 1
568 432 l 2
568 405 566 397 560 387 c 0
550 374 534 366 518 366 c 0
502 366 486 375 476 390 c 0
470 398 468 409 468 432 c 2
468 483 l 1
212 483 l 1
212 100 l 1
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: afii10021
Encoding: 1044 1044
Width: 600
Flags: W
HStem: 0 100<104 110 238 395 495 499> 483 100<256 395>
VStem: 5 100<-94 0> 157 100<158 483> 395 100<100 483> 499 100<-94 0>
Fore
495 100 m 1
599 100 l 1
599 -75 l 2
599 -102 597 -110 590 -120 c 0
580 -133 565 -141 549 -141 c 0
532 -141 516 -132 506 -117 c 0
501 -109 499 -98 499 -75 c 2
499 0 l 1
105 0 l 1
105 -75 l 2
105 -98 103 -109 98 -117 c 0
88 -132 72 -141 55 -141 c 0
39 -141 24 -133 14 -120 c 0
7 -110 5 -102 5 -75 c 2
5 100 l 1
107 100 l 2
139 100 157 139 157 169 c 2
157 483 l 1
124 486 105 504 105 533 c 0
105 550 114 567 129 576 c 0
138 582 146 583 171 583 c 2
481 583 l 2
508 583 517 581 527 574 c 0
539 564 547 549 547 533 c 0
547 504 528 486 495 483 c 1
495 100 l 1
238 100 m 1
395 100 l 1
395 483 l 1
257 483 l 1
257 160 l 2
257 137 251 111 238 100 c 1
EndSplineSet
MinimumDistance: x1,-1 y2,0 x0,2 x0,1 y13,15 x16,13 x16,14
EndChar
StartChar: afii10022
Encoding: 1045 1045
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: afii10024
Encoding: 1046 1046
Width: 600
Flags: W
HStem: 0 100<23 52 231 249 349.031 367.854 546 568> 483 100<23 33 231 249 349.031 373.464 566 568>
VStem: -23 186<527 536> 250 99<99 260 337 483> 436 186<527 536>
DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330
Fore
348 583 m 2
374 583 381 582 390 576 c 0
405 567 414 550 414 533 c 0
414 517 406 502 393 492 c 1
387 484 371 483 349 483 c 1
349 337 l 1
467 487 l 1
446 495 436 509 436 532 c 0
436 560 452 578 481 581 c 0
493 583 494 583 502 583 c 2
556 583 l 2
583 583 592 581 602 574 c 0
614 564 622 549 622 533 c 0
622 500 601 483 566 483 c 1
451 330 l 1
512 298 545 214 547 100 c 1
557 100 l 2
584 100 592 98 602 91 c 0
615 81 623 66 623 50 c 0
623 33 614 16 599 7 c 0
592 3 577 0 557 0 c 2
469 0 l 1
467 148 431 260 349 260 c 1
349 100 l 1
370 100 383 100 390 93 c 1
405 84 414 67 414 50 c 0
414 35 406 19 393 10 c 0
385 3 371 0 348 0 c 2
251 0 l 2
228 0 214 3 206 10 c 0
193 19 185 35 185 50 c 0
185 67 194 84 209 93 c 1
216 100 229 100 250 100 c 1
250 260 l 1
168 260 132 148 130 0 c 1
42 0 l 2
22 0 7 3 0 7 c 0
-15 16 -24 33 -24 50 c 0
-24 66 -16 81 -3 91 c 0
7 98 15 100 42 100 c 2
52 100 l 1
54 214 87 298 148 330 c 1
33 483 l 1
-2 483 -23 500 -23 533 c 0
-23 549 -15 564 -3 574 c 0
7 581 16 583 43 583 c 2
97 583 l 2
105 583 106 583 118 581 c 0
147 578 163 560 163 532 c 0
163 509 153 495 132 487 c 1
250 337 l 1
250 483 l 1
228 483 212 484 206 492 c 1
193 502 185 517 185 533 c 0
185 550 194 567 209 576 c 0
218 582 225 583 251 583 c 2
348 583 l 2
EndSplineSet
EndChar
StartChar: afii10025
Encoding: 1047 1047
Width: 600
Flags: W
HStem: -14 100<285 319> 1 198<109 115> 240 101<221 304> 497 100<285 319>
VStem: 413 104<417 432> 434 104<152 164>
Fore
234 341 m 2
276 341 l 2
350 341 356 356 376 366 c 0
398 377 413 400 413 421 c 0
413 464 363 497 300 497 c 0
238 497 190 470 181 430 c 0
174 398 174 398 167 390 c 0
159 382 145 376 131 376 c 0
116 376 101 384 91 397 c 0
84 407 82 415 82 443 c 2
82 531 l 2
82 557 83 565 89 574 c 0
97 588 114 597 131 597 c 0
151 597 160 589 170 564 c 1
205 586 249 597 300 597 c 0
424 597 517 521 517 420 c 0
517 363 494 317 461 298 c 1
467 294 473 290 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 240 293 240 c 2
234 240 l 2
210 240 197 243 188 249 c 0
176 259 168 275 168 290 c 0
168 307 177 324 192 333 c 0
201 339 209 341 234 341 c 2
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: afii10026
Encoding: 1048 1048
Width: 600
Flags: W
HStem: 0 100<66 93 193 230 372 406 507 534> 563 20G<107 208 392 493>
VStem: 93 100<99 141 256 483> 407 100<99 326 440 483>
DStem: 407 441 407 326 193 256 193 141
Fore
407 326 m 1
193 141 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
208 583 l 2
235 583 244 581 253 574 c 0
266 564 274 549 274 533 c 0
274 516 265 499 250 490 c 0
241 485 232 483 208 483 c 2
193 483 l 1
193 256 l 1
407 441 l 1
407 483 l 1
392 483 l 2
366 483 357 485 347 492 c 0
334 502 326 517 326 533 c 0
326 550 335 567 350 576 c 0
359 582 367 583 392 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 326 l 1
EndSplineSet
MinimumDistance: x35,-1
EndChar
StartChar: afii10027
Encoding: 1049 1049
Width: 600
Flags: W
HStem: 0 100<66 93 193 230 372 406 507 534> 563 20G<107 208 392 493> 623 68<292 310>
VStem: 93 100<99 141 256 483> 407 100<99 326 440 483>
DStem: 407 441 407 326 193 256 193 141
Fore
407 326 m 1
193 141 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
208 583 l 2
235 583 244 581 253 574 c 0
266 564 274 549 274 533 c 0
274 516 265 499 250 490 c 0
241 485 232 483 208 483 c 2
193 483 l 1
193 256 l 1
407 441 l 1
407 483 l 1
392 483 l 2
366 483 357 485 347 492 c 0
334 502 326 517 326 533 c 0
326 550 335 567 350 576 c 0
359 582 367 583 392 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 326 l 1
159 807 m 0
179 807 186 798 193 767 c 0
203 721 245 691 300 691 c 0
355 691 397 721 407 767 c 0
414 798 421 807 441 807 c 0
461 807 475 792 475 769 c 0
475 693 392 623 300 623 c 0
208 623 125 693 125 769 c 0
125 792 139 807 159 807 c 0
EndSplineSet
MinimumDistance: x35,-1
EndChar
StartChar: afii10028
Encoding: 1050 1050
Width: 600
Flags: W
HStem: 0 100<53 86 186 231 495 548> 483 100<53 86 186 231 504.031 519.737>
VStem: 86 100<99 278 334 483> 334 232<527 536>
DStem: 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: afii10029
Encoding: 1051 1051
Width: 600
Flags: W
HStem: 0 100<152 163 380 414 515 542> 483 100<305 414>
VStem: 13 100<129 161> 206 100<130 483> 415 100<99 483>
Fore
206 139 m 1
206 483 l 1
173 486 154 504 154 533 c 0
154 550 163 567 178 576 c 0
187 582 195 583 220 583 c 2
501 583 l 2
528 583 537 581 547 574 c 0
559 564 567 549 567 533 c 0
567 504 548 486 515 483 c 1
515 100 l 1
521 100 l 2
548 100 557 98 566 91 c 0
579 81 587 66 587 50 c 0
587 33 578 16 563 7 c 0
555 2 542 0 521 0 c 2
400 0 l 2
376 0 364 3 355 9 c 0
342 19 334 35 334 50 c 0
334 67 343 84 358 93 c 0
367 99 376 100 400 100 c 2
415 100 l 1
415 483 l 1
306 483 l 1
306 130 l 2
306 32 235 0 155 0 c 0
78 0 13 52 13 130 c 2
13 138 l 2
13 165 15 173 21 183 c 0
31 196 47 204 63 204 c 0
79 204 95 195 105 180 c 0
111 172 113 162 113 139 c 0
113 112 136 100 161 100 c 0
185 100 207 116 206 139 c 1
EndSplineSet
MinimumDistance: x8,-1 x25,22 y22,25 y22,23
Back
104 80 m 6
104 54 137 41 150 41 c 4
165 41 197 46 197 80 c 6
197 522 l 5
172 522 l 6
154 522 145 529 145 543 c 4
145 556 154 563 172 563 c 6
238 563 l 5
435 563 l 5
501 563 l 6
519 563 528 556 528 543 c 4
528 529 519 522 501 522 c 6
476 522 l 5
476 41 l 5
522 41 l 6
540 41 549 34 549 21 c 4
549 7 539 0 522 0 c 6
381 0 l 6
363 0 354 7 354 21 c 4
354 34 363 41 381 41 c 6
435 41 l 5
435 522 l 5
238 522 l 5
238 76 l 6
238 24 192 0 148 0 c 4
119 0 63 26 63 76 c 6
63 99 l 6
63 117 70 127 84 127 c 4
97 127 104 118 104 99 c 6
104 80 l 6
EndSplineSet
EndChar
StartChar: afii10030
Encoding: 1052 1052
Width: 600
Flags: W
HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548>
VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388>
DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138
Ref: 77 N 1 0 0 1 0 0
EndChar
StartChar: afii10031
Encoding: 1053 1053
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: afii10032
Encoding: 1054 1054
Width: 600
Flags: W
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: afii10033
Encoding: 1055 1055
Width: 600
Flags: W
HStem: 0 100<66 93 193 230 372 406 507 534> 483 100<193 406>
VStem: 93 100<99 483> 407 100<99 483>
Fore
407 483 m 1
193 483 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 483 l 1
EndSplineSet
MinimumDistance: x21,-1
EndChar
StartChar: afii10034
Encoding: 1056 1056
Width: 600
Flags: W
HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194>
VStem: 94 100<100 200 300 483> 423 106<371 419.5>
Ref: 80 N 1 0 0 1 0 0
EndChar
StartChar: afii10035
Encoding: 1057 1057
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: afii10036
Encoding: 1058 1058
Width: 600
Flags: W
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: afii10037
Encoding: 1059 1059
Width: 600
Flags: W
HStem: 0 21G<184 294> 0.957314 99.0427<163 176> 563 20G<86 178 424 514>
VStem: 20 224<527 535> 356 224<527 535>
DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100
Fore
306 100 m 1
340 98 360 80 360 50 c 0
360 33 352 16 336 7 c 0
328 2 316 0 294 0 c 2
184 0 l 2
160 0 148 3 138 9 c 1
126 19 118 34 118 50 c 0
118 81 140 100 176 100 c 1
244 216 l 1
78 483 l 1
42 485 20 503 20 533 c 0
20 560 38 578 66 581 c 0
78 583 80 583 86 583 c 2
178 583 l 2
206 583 214 581 224 574 c 0
236 564 244 549 244 533 c 0
244 511 236 498 206 484 c 1
300 312 l 1
394 484 l 1
366 498 356 511 356 533 c 0
356 548 364 564 378 573 c 1
386 580 402 583 424 583 c 2
514 583 l 2
540 583 548 581 558 574 c 0
572 564 580 549 580 533 c 0
580 502 558 484 522 483 c 1
306 100 l 1
EndSplineSet
MinimumDistance: x24,-1 x19,24 x6,1
EndChar
StartChar: afii10038
Encoding: 1060 1060
Width: 600
Flags: W
HStem: 0 100<131 250 350 469> 121 100<211 250 350.125 398.707> 362 100<211 250 350.125 400.034> 483 100<131 250 350 469>
VStem: 4 100<287 305> 250 100<99 121 221 362 461 483> 496 100<287 305>
Fore
350 362 m 1
350 221 l 1
412 221 496 220 496 295 c 0
496 363 411 362 350 362 c 1
350 462 m 1
442 462 596 462 596 300 c 0
596 121 442 121 350 121 c 1
350 100 l 1
451 100 l 2
478 100 486 98 496 91 c 0
510 81 517 66 517 50 c 0
517 17 495 0 451 0 c 2
149 0 l 2
125 0 113 3 104 10 c 0
91 19 83 35 83 50 c 0
83 67 92 84 107 93 c 0
116 99 123 100 149 100 c 2
250 100 l 1
250 121 l 1
158 121 4 121 4 300 c 0
4 462 158 462 250 462 c 1
250 483 l 1
149 483 l 2
124 483 113 485 104 492 c 0
91 502 83 517 83 533 c 0
83 550 92 567 107 576 c 0
116 582 123 583 149 583 c 2
451 583 l 2
478 583 486 581 496 574 c 0
510 564 517 549 517 533 c 0
517 516 508 499 493 490 c 0
485 485 474 483 451 483 c 2
350 483 l 1
350 462 l 1
250 362 m 1
189 362 104 363 104 295 c 0
104 220 188 221 250 221 c 1
250 362 l 1
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: afii10039
Encoding: 1061 1061
Width: 600
Flags: W
HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512>
VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535>
DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297
Ref: 88 N 1 0 0 1 0 0
EndChar
StartChar: afii10040
Encoding: 1062 1062
Width: 600
Flags: W
HStem: 0 100<178 391 492 494> 483 100<51 78 178 215 357 391 492 519>
VStem: 78 100<100 483> 392 100<100 483> 494 100<-94 0>
Fore
494 0 m 1
92 0 l 2
67 0 59 1 50 7 c 0
35 16 26 33 26 50 c 0
26 79 45 97 78 100 c 1
78 483 l 1
72 483 l 2
47 483 39 484 30 490 c 0
15 499 6 516 6 533 c 0
6 548 14 564 26 574 c 0
35 580 48 583 72 583 c 2
193 583 l 2
214 583 227 581 235 576 c 0
250 567 259 550 259 533 c 0
259 517 251 502 238 492 c 0
229 485 219 483 193 483 c 2
178 483 l 1
178 100 l 1
392 100 l 1
392 483 l 1
377 483 l 2
353 483 344 484 335 490 c 0
320 499 311 516 311 533 c 0
311 548 319 564 332 574 c 0
341 580 353 583 377 583 c 2
498 583 l 2
519 583 532 581 540 576 c 0
555 567 564 550 564 533 c 0
564 517 556 502 543 492 c 0
534 485 525 483 498 483 c 2
492 483 l 1
492 100 l 1
594 100 l 1
594 -75 l 2
594 -102 592 -110 585 -120 c 0
575 -133 560 -141 544 -141 c 0
527 -141 511 -132 501 -117 c 0
496 -109 494 -98 494 -75 c 2
494 0 l 1
EndSplineSet
MinimumDistance: x32,-1 y33,31 x31,33 x31,32
EndChar
StartChar: afii10041
Encoding: 1063 1063
Width: 600
Flags: W
HStem: 0 100<357 390 490 503> 170 100<270 295> 563 20G<104 206 374 476>
VStem: 90 100<307 483> 390 100<99 208 307 483>
Fore
390 208 m 1
363 185 329 170 284 170 c 0
190 170 96 185 90 305 c 1
90 483 l 1
58 486 38 504 38 533 c 0
38 550 48 567 62 576 c 0
72 582 80 583 104 583 c 2
206 583 l 2
232 583 242 581 250 574 c 0
264 564 272 549 272 533 c 0
272 516 262 499 248 490 c 0
238 485 230 483 206 483 c 2
190 483 l 1
190 308 l 1
202 282 247 270 290 270 c 0
333 270 369 282 390 308 c 1
390 483 l 1
374 483 l 2
348 483 340 485 330 492 c 0
316 502 308 517 308 533 c 0
308 550 318 567 332 576 c 0
342 582 350 583 374 583 c 2
476 583 l 2
502 583 512 581 522 574 c 0
534 564 542 549 542 533 c 0
542 504 522 486 490 483 c 1
490 100 l 1
496 100 l 2
522 100 532 98 540 91 c 0
554 81 562 66 562 50 c 0
562 33 552 16 538 7 c 0
530 2 516 0 496 0 c 2
374 0 l 2
350 0 338 3 330 9 c 0
316 19 308 35 308 50 c 0
308 67 318 84 332 93 c 0
342 99 350 100 374 100 c 2
390 100 l 1
390 208 l 1
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: afii10042
Encoding: 1064 1064
Width: 600
Flags: W
HStem: 0 100<122 250 350 478> 483 99.4037<20 22 122 124 248 250 350 352 473 478 578 580> 563 20G<36 110 268 332 490 564>
VStem: 22 100<100 483> 250 100<100 483> 478 100<100 483>
Fore
268 583 m 2
244 583 232 580 222 574 c 1
210 564 202 548 202 533 c 0
202 516 206 506 218 494 c 0
228 485 229 483 250 483 c 1
250 100 l 1
122 100 l 1
122 483 l 1
138 483 143 485 152 494 c 0
165 506 170 517 170 533 c 0
170 550 160 567 146 576 c 0
138 581 132 583 110 583 c 2
36 583 l 2
12 583 8 580 -2 574 c 1
-14 564 -22 548 -22 533 c 0
-22 516 -16 502 -2 490 c 0
6 483 10 483 22 483 c 1
22 100 l 1
-10 97 -22 79 -22 50 c 0
-22 33 -12 16 2 7 c 0
12 1 20 0 44 0 c 2
556 0 l 2
580 0 588 1 598 7 c 0
612 16 622 33 622 50 c 0
622 74 610 97 578 100 c 1
578 483 l 1
590 483 594 483 602 490 c 0
616 502 622 516 622 533 c 0
622 548 614 564 602 574 c 1
592 580 588 583 564 583 c 2
490 583 l 2
468 583 462 581 454 576 c 0
440 567 430 550 430 533 c 0
430 517 435 506 448 494 c 0
457 485 462 483 478 483 c 1
478 100 l 1
350 100 l 1
350 483 l 1
371 483 372 485 382 494 c 0
394 506 398 516 398 533 c 0
398 548 390 564 378 574 c 1
368 580 356 583 332 583 c 2
268 583 l 2
EndSplineSet
MinimumDistance: x24,-1
EndChar
StartChar: afii10043
Encoding: 1065 1065
Width: 600
Flags: W
HStem: 0 100<116 241 341 466> 483 99.4037<14 16 116 118 239 241 341 343 464 466 566 568> 563 20G<30 104 259 323 478 552>
VStem: 16 100<100 483> 241 100<100 483> 466 100<100 483> 524 100<-94 0>
Fore
566 100 m 1
566 483 l 1
578 483 582 483 590 490 c 0
604 502 610 516 610 533 c 0
610 548 602 564 590 574 c 1
580 580 576 583 552 583 c 2
478 583 l 2
456 583 450 581 442 576 c 0
428 567 418 550 418 533 c 0
418 517 423 506 436 494 c 0
445 485 450 483 466 483 c 1
466 100 l 1
341 100 l 1
341 483 l 1
362 483 363 485 373 494 c 0
385 506 389 516 389 533 c 0
389 548 381 564 369 574 c 1
359 580 347 583 323 583 c 2
259 583 l 2
235 583 223 580 213 574 c 1
201 564 193 548 193 533 c 0
193 516 197 506 209 494 c 0
219 485 220 483 241 483 c 1
241 100 l 1
116 100 l 1
116 483 l 1
132 483 137 485 146 494 c 0
159 506 164 517 164 533 c 0
164 550 154 567 140 576 c 0
132 581 126 583 104 583 c 2
30 583 l 2
6 583 2 580 -8 574 c 1
-20 564 -28 548 -28 533 c 0
-28 516 -22 502 -8 490 c 0
0 483 4 483 16 483 c 1
16 100 l 1
-16 97 -28 79 -28 50 c 0
-28 33 -18 16 -4 7 c 0
6 1 14 0 38 0 c 2
524 0 l 1
524 -75 l 2
524 -98 526 -109 531 -117 c 0
541 -132 557 -141 574 -141 c 0
590 -141 605 -133 615 -120 c 0
622 -110 624 -102 624 -75 c 2
624 100 l 1
566 100 l 1
EndSplineSet
MinimumDistance: y44,0 x0,44 x0,45
EndChar
StartChar: afii10044
Encoding: 1066 1066
Width: 600
Flags: W
HStem: 0 100<168 195 295 410> 283 100<295 395> 483 100<92 195 295 330>
VStem: -7 100<367 483> 195 100<100 283 382 483> 501 106<187 195>
Fore
-7 583 m 1
326 583 l 2
345 583 360 580 368 576 c 0
382 567 392 550 392 533 c 0
392 517 384 502 370 492 c 0
360 485 352 483 326 483 c 2
295 483 l 1
295 383 l 1
371 383 l 2
463 383 513 366 557 317 c 0
589 282 607 235 607 189 c 0
607 78 517 0 391 0 c 2
179 0 l 2
153 0 147 1 137 7 c 0
123 16 113 33 113 50 c 0
113 65 121 81 135 91 c 0
143 98 155 100 179 100 c 2
195 100 l 1
195 483 l 1
93 483 l 1
93 390 l 2
93 363 91 355 83 345 c 0
73 332 59 324 43 324 c 0
25 324 9 333 -1 348 c 1
-5 357 -7 367 -7 390 c 2
-7 583 l 1
295 100 m 1
391 100 l 2
459 100 501 135 501 192 c 0
501 248 459 283 391 283 c 2
295 283 l 1
295 100 l 1
EndSplineSet
EndChar
StartChar: afii10045
Encoding: 1067 1067
Width: 600
Flags: W
HStem: 0 100<26 46 147 219 458 460 561 572> 483 100<26 46 147 188 442 460 561.016 579.601>
VStem: 47 100<100 283 382 483> 311 106<187 195> 461 100<99 483>
Fore
561 483 m 1
561 100 l 1
584 100 595 98 601 91 c 1
615 81 621 66 621 50 c 0
621 17 599 0 555 0 c 2
466 0 l 2
442 0 430 3 422 10 c 1
408 19 400 35 400 50 c 0
400 67 410 84 424 93 c 1
430 100 440 100 461 100 c 1
461 483 l 1
440 483 427 484 422 492 c 1
408 502 400 517 400 533 c 0
400 550 410 567 424 576 c 0
434 582 440 583 466 583 c 2
555 583 l 2
583 583 591 581 601 574 c 0
615 564 621 549 621 533 c 0
621 516 613 499 597 490 c 1
592 485 581 483 561 483 c 1
147 383 m 1
179 383 l 2
273 383 323 366 367 317 c 0
399 282 417 235 417 189 c 0
417 78 327 0 199 0 c 2
45 0 l 2
19 0 11 1 3 7 c 1
-13 16 -21 33 -21 50 c 0
-21 65 -13 81 -1 91 c 1
6 99 24 100 47 100 c 1
47 483 l 1
27 483 8 483 3 490 c 1
-13 499 -21 516 -21 533 c 0
-21 548 -13 564 -1 573 c 0
7 580 21 583 45 583 c 2
173 583 l 2
193 583 207 580 215 576 c 0
229 567 239 550 239 533 c 0
239 517 231 502 217 492 c 0
207 485 199 483 173 483 c 2
147 483 l 1
147 383 l 1
147 100 m 1
199 100 l 2
269 100 311 135 311 192 c 0
311 248 269 283 199 283 c 2
147 283 l 1
147 100 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: afii10046
Encoding: 1068 1068
Width: 600
Flags: W
HStem: 0 100<60 94 194 318> 283 100<194 318> 483 100<60 94 194 312>
VStem: 94 100<100 283 382 483> 423 106<187 195>
Fore
194 383 m 1
194 483 l 1
293 483 l 2
320 483 328 485 338 492 c 0
351 502 359 517 359 533 c 0
359 550 350 567 335 576 c 0
328 580 313 583 293 583 c 2
79 583 l 2
56 583 42 580 34 573 c 0
21 564 13 548 13 533 c 0
13 516 22 499 37 490 c 0
46 484 55 483 79 483 c 2
94 483 l 1
94 100 l 1
79 100 l 2
54 100 43 98 34 91 c 0
21 81 13 65 13 50 c 0
13 33 22 16 37 7 c 0
46 1 53 0 79 0 c 2
312 0 l 2
439 0 529 78 529 189 c 0
529 235 511 282 479 317 c 0
435 366 385 383 292 383 c 2
194 383 l 1
194 100 m 1
194 283 l 1
312 283 l 2
381 283 423 248 423 192 c 0
423 135 381 100 312 100 c 2
194 100 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: afii10047
Encoding: 1069 1069
Width: 600
Flags: W
HStem: -14 100<248 294> 241 100<241 464> 367 216<97 103> 497 100<270 307>
Fore
466 241 m 1
250 241 l 2
226 241 212 244 204 250 c 0
192 260 184 276 184 291 c 0
184 308 192 325 208 334 c 1
216 340 224 341 250 341 c 2
464 341 l 1
452 432 383 497 290 497 c 0
256 497 220 488 192 473 c 0
164 457 154 444 148 420 c 1
144 396 142 389 134 381 c 0
126 373 112 367 100 367 c 0
84 367 68 375 58 388 c 0
52 397 50 408 50 433 c 2
50 517 l 2
50 542 50 550 56 559 c 0
66 574 82 583 100 583 c 0
116 583 128 577 142 559 c 1
152 563 l 2
208 586 242 597 294 597 c 0
448 597 566 475 566 315 c 2
566 249 l 2
566 97 442 -14 272 -14 c 0
200 -14 132 4 88 36 c 0
54 60 34 86 34 109 c 0
34 136 58 159 84 159 c 0
98 159 110 154 120 143 c 0
148 115 148 115 158 109 c 0
184 94 224 86 268 86 c 0
384 86 461 147 466 241 c 1
EndSplineSet
EndChar
StartChar: afii10048
Encoding: 1070 1070
Width: 600
Flags: W
HStem: -14 100<392 426> 0 100<24 32 132 154> 497 100<392 426> 563 20G<46 141>
VStem: -20 227<529 535> 32 100<99 241 341 483> 32 253<257 323> 533 100<273 323>
Fore
190 241 m 1
132 241 l 1
132 100 l 1
141 100 l 2
167 100 177 98 186 91 c 0
199 81 207 66 207 50 c 0
207 33 198 16 183 7 c 0
175 2 162 0 141 0 c 2
43 0 l 2
19 0 6 3 -3 9 c 0
-15 19 -23 35 -23 50 c 0
-23 67 -12 79 3 91 c 0
13 98 13 100 32 100 c 1
32 483 l 1
-1 486 -20 504 -20 533 c 0
-20 550 -11 567 4 576 c 0
13 582 21 583 46 583 c 2
141 583 l 2
168 583 177 581 186 574 c 0
199 564 207 549 207 533 c 0
207 516 198 499 183 490 c 0
174 485 165 483 141 483 c 2
132 483 l 1
132 341 l 1
189 341 l 1
188 480 274 596 409 597 c 0
565 598 634 440 633 287 c 0
632 137 561 -14 409 -14 c 0
271 -14 190 114 190 241 c 1
409 497 m 0
311 497 285 404 285 292 c 0
285 179 311 86 409 86 c 0
506 86 533 179 533 289 c 0
533 404 508 497 409 497 c 0
EndSplineSet
EndChar
StartChar: afii10049
Encoding: 1071 1071
Width: 600
Flags: W
HStem: 0 100<44 76 380 422 522 542> 222 100<325 422> 483 100<300 422 522 558>
VStem: 94 106<399 417> 422 100<99 222 322 483>
Fore
422 222 m 1
326 222 l 1
284 207 192 97 142 0 c 1
63 0 l 2
43 0 28 3 21 7 c 0
6 16 -3 33 -3 50 c 0
-3 66 5 82 17 91 c 0
27 98 38 100 63 100 c 2
76 100 l 1
118 167 155 213 202 254 c 1
129 294 94 342 94 405 c 0
94 510 184 583 314 583 c 2
537 583 l 2
563 583 570 582 579 576 c 0
594 567 603 550 603 533 c 0
603 517 595 502 582 492 c 0
573 485 562 483 537 483 c 2
522 483 l 1
522 100 l 1
537 100 l 2
561 100 570 99 579 93 c 0
594 84 603 67 603 50 c 0
603 35 595 19 582 10 c 0
574 3 560 0 537 0 c 2
387 0 l 2
367 0 352 3 345 7 c 0
330 16 321 33 321 50 c 0
321 66 329 81 341 91 c 0
351 98 360 100 387 100 c 2
422 100 l 1
422 222 l 1
422 322 m 1
422 483 l 1
310 483 l 2
246 483 200 451 200 408 c 0
200 358 262 322 346 322 c 2
422 322 l 1
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: afii10065
Encoding: 1072 1072
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: afii10066
Encoding: 1073 1073
Width: 600
Flags: W
HStem: -14 100<291 309> 351 100<291 309> 499.365 68.6348<339 408> 500.033 140.967<448 460>
VStem: 52 100<209 236> 448 100<209 234>
Fore
508 500 m 1
300 499 184 514 152 401 c 1
194 435 242 451 302 451 c 0
376 451 432 430 478 386 c 0
524 342 548 284 548 218 c 0
548 153 524 96 478 51 c 0
432 7 376 -14 302 -14 c 0
158 -14 52 70 52 234 c 0
51 539 150 569 408 568 c 1
408 575 l 2
408 601 410 611 416 621 c 1
426 633 442 641 458 641 c 0
474 641 492 632 500 617 c 0
506 608 508 599 508 575 c 2
508 500 l 1
300 351 m 0
252 351 218 339 190 311 c 0
166 286 152 253 152 220 c 0
152 141 212 86 300 86 c 0
348 86 382 99 410 126 c 1
434 151 448 185 448 219 c 0
448 252 434 286 410 311 c 1
380 339 348 351 300 351 c 0
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: afii10067
Encoding: 1074 1074
Width: 600
Flags: W
HStem: 0 100<144 146 246.125 320> 180 100<246.125 298.531> 337 100<144 146 246.125 325>
VStem: 146 100<100 180 280 337> 406 99.1928<303 309>
Fore
246 337 m 1
246 280 l 1
358 279 406 275 406 307 c 0
406 339 358 336 246 337 c 1
246 100 m 1
352 100 416 97 414 136 c 1
416 172 344 180 246 180 c 1
246 100 l 1
152 0 m 2
106 0 84 17 84 50 c 0
84 82 106 100 146 100 c 1
146 337 l 1
106 337 84 355 84 387 c 0
84 420 104 437 152 437 c 2
320 437 l 2
362 437 506 434 506 321 c 0
506 270 486 240 452 226 c 1
498 212 516 186 516 116 c 0
516 0 366 -3 320 0 c 1
152 0 l 2
EndSplineSet
EndChar
StartChar: afii10068
Encoding: 1075 1075
Width: 600
Flags: W
HStem: 0 21G<165 254> 0.144728 99.8553<157 159 259.031 274.093> 337 99.8553<157 159 259.063 402> 417 20G<165 502>
VStem: 159 100<99 336> 402 100<287 336>
Fore
402 336 m 1
402 336 338 337 259 337 c 1
259 100 l 1
298 100 321 82 320 50 c 0
319 17 300 -3 254 0 c 1
165 0 l 2
120 0 98 17 98 50 c 0
98 82 120 100 159 100 c 1
159 337 l 1
120 337 98 355 98 387 c 0
98 420 120 437 165 437 c 2
502 437 l 1
502 310 l 2
502 284 500 274 493 264 c 0
483 252 468 244 452 244 c 0
435 244 418 253 409 268 c 0
403 277 402 286 402 310 c 2
402 336 l 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: afii10069
Encoding: 1076 1076
Width: 600
Flags: W
HStem: 0 100<134 138 250 404> 337 99.8553<161 163 263 404 504 516> 417 20G<169 499>
VStem: 35 100<-45 0> 163 100<141 336> 404 100<100 336> 460 100<-45 0>
Fore
250 100 m 1
404 100 l 1
404 336 l 1
263 337 l 1
263 143 l 2
263 128 259 106 250 100 c 1
134 100 m 2
150 100 163 126 163 143 c 2
163 337 l 1
124 337 102 355 102 387 c 0
102 420 124 437 169 437 c 2
499 437 l 2
542 437 564 420 565 387 c 0
566 355 543 337 504 337 c 1
504 100 l 1
560 100 l 1
560 -26 l 2
560 -52 558 -62 552 -72 c 1
542 -84 526 -92 510 -92 c 0
494 -92 476 -83 468 -68 c 0
462 -59 460 -50 460 -26 c 2
460 0 l 1
135 0 l 1
135 -26 l 2
135 -50 133 -59 127 -68 c 0
119 -83 101 -92 85 -92 c 0
69 -92 53 -84 43 -72 c 1
37 -62 35 -52 35 -26 c 2
35 100 l 1
134 100 l 2
EndSplineSet
MinimumDistance: x14,-1 y15,13 x13,15 x13,14 y26,5 x6,26 x6,27
EndChar
StartChar: afii10070
Encoding: 1077 1077
Width: 600
Flags: W
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: afii10072
Encoding: 1078 1078
Width: 600
Flags: W
HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<26 34 565 572> 417 20G<49 118 254 345 481 550>
VStem: -21 205<47 53> -17 201<383 389> 248 103<100 161 287 337> 415 205<47 53> 415 201<383 389>
DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227
Fore
335 0 m 2
379 0 395 17 395 50 c 0
395 67 385 84 369 93 c 1
361 99 351 100 351 100 c 1
351 161 l 1
429 87 l 1
417 74 415 64 415 50 c 0
415 17 437 0 481 0 c 2
552 0 l 2
574 0 588 2 596 7 c 0
610 17 620 33 620 50 c 0
620 66 613 81 598 93 c 0
587 101 581 101 565 100 c 1
429 227 l 1
565 337 l 1
575 337 583 337 592 344 c 0
608 356 616 370 616 387 c 0
616 403 610 418 596 428 c 0
586 435 576 437 550 437 c 2
481 437 l 2
457 437 447 435 439 430 c 0
423 420 415 404 415 387 c 0
415 373 419 364 431 350 c 1
351 287 l 1
351 337 l 1
351 337 365 339 375 346 c 0
387 356 395 371 395 387 c 0
395 404 387 421 371 430 c 1
363 436 369 437 345 437 c 2
254 437 l 2
230 437 236 436 228 430 c 1
212 421 204 404 204 387 c 0
204 371 212 356 224 346 c 0
234 339 248 337 248 337 c 1
248 287 l 1
168 350 l 1
180 364 184 373 184 387 c 0
184 404 176 420 160 430 c 0
152 435 142 437 118 437 c 2
49 437 l 2
23 437 13 435 3 428 c 0
-11 418 -17 403 -17 387 c 0
-17 370 -9 356 7 344 c 0
16 337 24 337 34 337 c 1
170 227 l 1
34 100 l 1
18 101 12 101 1 93 c 0
-14 81 -21 66 -21 50 c 0
-21 33 -11 17 3 7 c 0
11 2 25 0 47 0 c 2
118 0 l 2
162 0 184 17 184 50 c 0
184 64 182 74 170 87 c 1
248 161 l 1
248 100 l 1
248 100 238 99 230 93 c 1
214 84 204 67 204 50 c 0
204 17 220 0 264 0 c 2
335 0 l 2
EndSplineSet
EndChar
StartChar: afii10073
Encoding: 1079 1079
Width: 600
Flags: W
HStem: -16 100<280 314> 1 166<120 126> 178 100<234.892 314> 350 100<280 314>
VStem: 396 110<310 318> 417 110<121 129>
Fore
255 278 m 2
286 278 l 2
352 278 356 286 370 291 c 0
386 297 396 306 396 315 c 0
396 333 348 350 297 350 c 0
255 350 222 341 194 321 c 1
189 312 l 2
177 290 163 281 142 281 c 0
127 281 111 289 101 301 c 0
94 311 92 321 92 347 c 2
92 384 l 2
92 430 107 450 139 450 c 0
154 450 163 443 171 424 c 1
210 442 251 450 300 450 c 0
420 450 506 393 506 313 c 0
506 281 491 252 471 235 c 1
471 225 l 1
504 205 527 164 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 342 178 291 178 c 2
249 178 l 2
210 178 188 196 188 228 c 0
188 261 210 279 255 278 c 2
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: afii10074
Encoding: 1080 1080
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<90 92 192.031 207.093 398 407 507.031 522.093> 337 99.1444<78 92 192 194 391.955 406.969 507 512>
VStem: 92 100<99 113 214 338> 407 100<99 224 324 336>
DStem: 407 325 407 224 192 214 192 113
Fore
192 337 m 1
192 214 l 1
407 325 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 224 l 1
192 113 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: afii10075
Encoding: 1081 1081
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<90 92 192.031 207.093 398 406 507.031 522.093> 337 99.1444<78 92 192 194 391.722 406.969 507 512> 503 68<286 304>
VStem: 92 100<99 113 214 338> 407 100<99 224 324 336>
DStem: 407 325 407 224 192 214 192 113
Fore
156 687 m 0
176 687 183 678 190 647 c 0
200 601 242 571 297 571 c 0
352 571 394 601 404 647 c 0
411 678 418 687 438 687 c 0
458 687 472 672 472 649 c 0
472 573 389 503 297 503 c 0
205 503 122 573 122 649 c 0
122 672 136 687 156 687 c 0
192 337 m 1
192 214 l 1
407 325 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 224 l 1
192 113 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
EndSplineSet
MinimumDistance: x16,-1
EndChar
StartChar: afii10076
Encoding: 1082 1082
Width: 600
Flags: W
HStem: 0 100<100.726 133 447 501> 337 100<99 133 447 485>
VStem: 134 100<99 164 287 337>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x23,-1
EndChar
StartChar: afii10077
Encoding: 1083 1083
Width: 600
Flags: W
HStem: 0 21G<427 516> 0.302727 99.6973<416 421 521.031 536.093> 337 99.7568<176 180 280 421 521 530> 417 20G<186 516>
VStem: 17 99<111 145> 180 100<111 336> 421 100<99 336>
Fore
17 140 m 2
17 179 35 201 67 201 c 0
100 201 116 186 116 140 c 2
116 114 l 2
116 76 180 80 180 114 c 2
180 337 l 1
141 337 119 355 119 387 c 0
119 420 141 437 186 437 c 2
516 437 l 2
559 437 581 420 582 387 c 0
583 355 560 337 521 337 c 1
521 100 l 1
560 100 583 82 582 50 c 0
581 17 562 -3 516 0 c 1
427 0 l 2
382 0 360 17 360 50 c 0
360 82 382 100 421 100 c 1
421 336 l 1
280 337 l 1
280 100 l 2
280 30 226 0 145 0 c 0
81 0 17 30 17 87 c 2
17 140 l 2
EndSplineSet
MinimumDistance: x10,-1
EndChar
StartChar: afii10078
Encoding: 1084 1084
Width: 600
Flags: W
HStem: 0 21G<46 141 463 558> 0.6703 99.3297<31 43 143.031 158.009 447 461 561 563> 337 99.8113<41 43 143 161 442 461 561 563> 417 20G<50 219 385 554>
VStem: 43 100<99 337> 461 100<99 337>
DStem: 161 337 219 437 264 100 302 243 385 437 443 337 302 243 340 100
Fore
264 100 m 1
161 337 l 1
143 337 l 1
143 100 l 1
183 100 207 83 207 51 c 0
207 18 185 0 141 0 c 2
46 0 l 2
0 0 -16 19 -16 51 c 0
-16 82 5 100 43 100 c 1
43 337 l 1
-2 336 -17 357 -16 388 c 0
-15 421 6 437 50 437 c 2
219 437 l 1
302 243 l 1
385 437 l 1
554 437 l 2
598 437 619 421 620 388 c 0
621 357 606 336 561 337 c 1
561 100 l 1
599 100 620 82 620 51 c 0
620 19 604 0 558 0 c 2
463 0 l 2
419 0 397 18 397 51 c 0
397 83 421 100 461 100 c 1
461 337 l 1
443 337 l 1
340 100 l 1
264 100 l 1
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: afii10079
Encoding: 1085 1085
Width: 600
Flags: W
HStem: 0 21G<118 207 393 482> 0.144728 99.8553<110 112 212.031 227.093 385 387 487.031 502.093> 162 101<212 387> 337 99.1444<98 112 212 214 371.955 386.969 487 500>
VStem: 112 100<99 161 263 338> 387 100<99 161 263 336>
Fore
212 337 m 1
212 263 l 1
387 263 l 1
387 336 l 1
348 336 326 354 326 386 c 0
327 419 347 439 392 436 c 1
482 437 l 2
526 437 548 420 548 387 c 0
549 355 526 337 487 337 c 1
487 100 l 1
526 100 549 82 548 50 c 0
548 17 528 -3 482 0 c 1
393 0 l 2
348 0 326 17 326 50 c 0
326 82 348 100 387 100 c 1
387 162 l 1
212 162 l 1
212 100 l 1
251 100 274 82 273 50 c 0
273 17 253 -3 207 0 c 1
118 0 l 2
73 0 51 17 51 50 c 0
51 82 73 100 112 100 c 1
112 337 l 1
73 337 51 355 51 387 c 0
51 420 73 438 118 437 c 2
206 436 l 2
251 435 273 419 273 386 c 0
273 354 251 337 212 337 c 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: afii10080
Encoding: 1086 1086
Width: 600
Flags: W
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: afii10081
Encoding: 1087 1087
Width: 600
Flags: W
HStem: 0 21G<113 202 398 487> 0.144728 99.8553<105 107 207.031 222.093 381 392 492.031 507.176> 337 99.8553<105 107 207 392 492 494> 417 20G<113 487>
VStem: 107 100<99 336> 392 100<99 336>
Fore
392 336 m 1
207 337 l 1
207 100 l 1
246 100 269 82 268 50 c 0
268 17 248 -3 202 0 c 1
113 0 l 2
68 0 46 17 46 50 c 0
46 82 68 100 107 100 c 1
107 337 l 1
68 337 46 355 46 387 c 0
46 420 68 437 113 437 c 2
487 437 l 2
531 437 553 420 553 387 c 0
554 355 531 337 492 337 c 1
492 100 l 1
531 100 554 82 553 50 c 0
553 17 533 -3 487 0 c 1
398 0 l 2
353 0 331 17 331 50 c 0
331 82 353 100 392 100 c 1
392 336 l 1
EndSplineSet
MinimumDistance: x13,-1
EndChar
StartChar: afii10082
Encoding: 1088 1088
Width: 600
Flags: W
HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5>
VStem: 74 100<-105 66 195.5 247> 471 100<195 246.5>
Ref: 112 N 1 0 0 1 0 0
EndChar
StartChar: afii10083
Encoding: 1089 1089
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: afii10084
Encoding: 1090 1090
Width: 600
Flags: W
HStem: 1 21G<256 345> 1.14473 99.8553<248 250 350.031 365.093> 337 101<161 250 350 438>
VStem: 62 100<288 337> 250 100<100 337> 438 100<288 337>
Fore
250 337 m 1
162 337 l 1
162 311 l 2
162 287 161 278 155 269 c 0
146 254 129 245 112 245 c 0
96 245 81 253 71 265 c 0
64 275 62 285 62 311 c 2
62 438 l 1
538 438 l 1
538 311 l 2
538 285 536 275 529 265 c 0
519 253 504 245 488 245 c 0
471 245 454 254 445 269 c 0
439 278 438 287 438 311 c 2
438 337 l 1
350 337 l 1
350 101 l 1
389 101 412 83 411 51 c 0
410 18 391 -2 345 1 c 1
256 1 l 2
211 1 189 18 189 51 c 0
189 83 211 101 250 101 c 1
250 337 l 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: afii10085
Encoding: 1091 1091
Width: 600
Flags: W
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: afii10086
Encoding: 1092 1092
Width: 600
Flags: W
HStem: -205 100<219 250 349 429> 10 0<250 251.704> 10 100<184 250 348.296 417> 110 0<250 252.99> 350 100<184 250 350 417> 450 0<250 253.076> 548 100<219 250>
VStem: -36 100<222 232> 250 100<-106 10 110 350 449 548> 536 100<222 232>
Fore
414 350 m 2
350 350 l 1
350 110 l 1
350 110 326 110 414 110 c 0
500 110 535 160 536 230 c 1
535 284 487 350 414 350 c 2
350 450 m 1
350 450 330 450 392 450 c 0
532 450 636 353 636 224 c 0
636 101 533 10 394 10 c 0
335 10 350 10 350 10 c 1
350 -105 l 1
408 -105 l 2
434 -105 444 -107 454 -114 c 0
467 -124 474 -139 474 -155 c 0
474 -172 465 -188 450 -198 c 0
442 -203 430 -205 408 -205 c 2
234 -205 l 2
209 -205 198 -203 188 -195 c 0
176 -186 168 -171 168 -155 c 0
168 -138 177 -121 192 -112 c 0
201 -106 210 -105 234 -105 c 2
250 -105 l 1
250 10 l 1
250 10 265 10 206 10 c 0
67 10 -36 101 -36 224 c 0
-36 353 68 450 208 450 c 0
270 450 250 450 250 450 c 1
250 548 l 1
234 548 l 2
208 548 198 550 188 557 c 0
176 567 168 582 168 598 c 0
168 615 177 632 192 641 c 0
201 646 210 648 234 648 c 2
350 648 l 1
350 450 l 1
186 350 m 2
113 350 65 284 64 230 c 1
65 160 100 110 186 110 c 0
274 110 250 110 250 110 c 1
250 350 l 1
186 350 l 2
EndSplineSet
MinimumDistance: x32,5 y5,32 y5,33
Back
414 350 m 2
350 350 l 1
350 110 l 1
414 110 l 2
500 110 535 160 536 230 c 5
535 284 487 350 414 350 c 2
350 450 m 1
392 450 l 2
532 450 636 353 636 224 c 0
636 101 533 10 394 10 c 2
350 10 l 1
350 -105 l 1
408 -105 l 2
434 -105 444 -107 454 -114 c 0
467 -124 474 -139 474 -155 c 0
474 -172 465 -188 450 -198 c 0
442 -203 430 -205 408 -205 c 2
234 -205 l 2
209 -205 198 -203 188 -195 c 0
176 -186 168 -171 168 -155 c 0
168 -138 177 -121 192 -112 c 0
201 -106 210 -105 234 -105 c 2
250 -105 l 1
250 10 l 1
206 10 l 2
67 10 -36 101 -36 224 c 0
-36 353 68 450 208 450 c 2
250 450 l 1
250 548 l 1
234 548 l 2
208 548 198 550 188 557 c 0
176 567 168 582 168 598 c 0
168 615 177 632 192 641 c 0
201 646 210 648 234 648 c 2
350 648 l 1
350 450 l 1
186 350 m 2
113 350 65 284 64 230 c 1
65 160 100 110 186 110 c 2
250 110 l 1
250 350 l 1
186 350 l 2
EndSplineSet
EndChar
StartChar: afii10087
Encoding: 1093 1093
Width: 600
Flags: W
HStem: 0 20 417 20<106 198 198 211 400 491 491 504>
Ref: 120 N 1 0 0 1 0 0
EndChar
StartChar: afii10088
Encoding: 1094 1094
Width: 600
Flags: W
HStem: -20 20G<97 469> 0.11526 99.8847<90 92 192 375> 337 99.7765<90 92 192 194 366 375 475 479> 417 20G<97 186 380 469>
VStem: 92 100<100 337> 375 100<100 337> 469 100<-45 0>
Fore
475 100 m 1
569 100 l 1
569 -26 l 2
569 -52 567 -62 560 -72 c 0
550 -84 535 -92 519 -92 c 0
502 -92 485 -83 476 -68 c 0
470 -59 469 -50 469 -26 c 2
469 0 l 1
97 0 l 2
54 0 31 17 31 50 c 0
30 82 53 100 92 100 c 1
92 337 l 1
53 337 30 355 31 387 c 0
31 420 51 436 97 437 c 2
186 437 l 2
231 437 253 420 253 387 c 0
253 355 231 337 192 337 c 1
192 101 l 1
375 100 l 1
375 337 l 1
336 337 313 355 314 387 c 0
314 420 337 436 380 437 c 2
469 437 l 2
514 437 536 420 536 387 c 0
536 355 514 337 475 337 c 1
475 100 l 1
EndSplineSet
MinimumDistance: x1,-1 y2,0 x0,2 x0,1
EndChar
StartChar: afii10089
Encoding: 1095 1095
Width: 600
Flags: W
HStem: 0 21G<396 485> 0.369504 99.6305<384 390 490.031 505.093> 111 97<288 306> 337 99.1444<96 110 210 212 374.907 389.969 490 498>
VStem: 110 100<250 338> 390 100<99 141 250 336>
Fore
210 337 m 1
210 252 l 2
210 218 260 208 300 208 c 0
340 208 390 231 390 252 c 2
390 336 l 1
351 336 328 354 329 386 c 0
330 419 349 439 395 436 c 1
485 437 l 2
528 437 550 420 551 387 c 0
552 355 529 337 490 337 c 1
490 100 l 1
529 100 552 82 551 50 c 0
550 17 531 -3 485 0 c 1
396 0 l 2
351 0 329 17 329 50 c 0
329 82 351 100 390 100 c 1
390 141 l 1
370 122 339 111 302 111 c 0
202 111 110 135 110 252 c 2
110 337 l 1
71 337 49 355 49 387 c 0
49 420 71 438 116 437 c 2
204 436 l 2
249 435 271 419 271 386 c 0
271 354 249 337 210 337 c 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: afii10090
Encoding: 1096 1096
Width: 600
Flags: W
HStem: 0 100<129 250 351 472> 417 20G<56 101 268 333 500 545>
VStem: 29 100<100 337> 250 101<100 337> 472 100<100 337>
Fore
546 0 m 2
589 0 611 17 612 50 c 0
613 81 595 100 572 100 c 1
572 337 l 1
595 338 613 355 612 387 c 0
611 420 588 437 545 437 c 2
500 437 l 2
455 437 428 420 428 387 c 0
428 355 445 336 472 337 c 1
472 100 l 1
351 100 l 1
351 337 l 1
375 336 400 355 399 387 c 0
398 420 378 437 333 437 c 2
268 437 l 2
223 437 203 420 202 387 c 0
201 355 226 336 250 337 c 1
250 100 l 1
129 100 l 1
129 337 l 1
156 336 173 355 173 387 c 0
173 420 146 437 101 437 c 2
56 437 l 2
13 437 -10 420 -11 387 c 0
-12 355 6 338 29 337 c 1
29 100 l 1
6 100 -12 81 -11 50 c 0
-10 17 12 0 55 0 c 2
546 0 l 2
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: afii10091
Encoding: 1097 1097
Width: 600
Flags: W
HStem: 0 100<129 250 351 472> 417 20G<56 101 268 333 500 545>
VStem: 29 100<100 337> 250 101<100 337> 472 100<100 337> 508 100<-45 0>
Fore
572 100 m 1
572 337 l 1
595 338 613 355 612 387 c 0
611 420 588 437 545 437 c 2
500 437 l 2
455 437 428 420 428 387 c 0
428 355 445 336 472 337 c 1
472 100 l 1
351 100 l 1
351 337 l 1
375 336 400 355 399 387 c 0
398 420 378 437 333 437 c 2
268 437 l 2
223 437 203 420 202 387 c 0
201 355 226 336 250 337 c 1
250 100 l 1
129 100 l 1
129 337 l 1
156 336 173 355 173 387 c 0
173 420 146 437 101 437 c 2
56 437 l 2
13 437 -10 420 -11 387 c 0
-12 355 6 338 29 337 c 1
29 100 l 1
6 100 -12 81 -11 50 c 0
-10 17 12 0 55 0 c 2
508 0 l 1
508 -26 l 2
508 -50 509 -59 515 -68 c 0
524 -83 541 -92 558 -92 c 0
574 -92 589 -84 599 -72 c 0
606 -62 608 -52 608 -26 c 2
608 100 l 1
572 100 l 1
EndSplineSet
MinimumDistance: y31,0 x0,31 x0,32
EndChar
StartChar: afii10092
Encoding: 1098 1098
Width: 600
Flags: W
HStem: 0 100<207 209 309.125 406> 180 100<309.125 392> 417 20G<21 303>
VStem: 21 100<287 337> 209 100<100 180 279 337> 478 101<127 145>
Fore
21 437 m 1
303 437 l 2
350 437 370 420 370 387 c 0
370 355 348 337 309 337 c 1
309 280 l 1
390 280 l 2
536 279 578 220 579 143 c 0
580 10 430 0 383 0 c 2
215 0 l 2
170 0 148 17 148 50 c 0
148 82 170 100 209 100 c 1
209 337 l 1
121 337 l 1
121 311 l 2
121 287 120 278 114 269 c 0
105 254 88 245 71 245 c 0
55 245 40 253 30 265 c 0
23 275 21 285 21 311 c 2
21 437 l 1
309 100 m 1
416 100 478 96 478 136 c 0
478 182 408 180 309 180 c 1
309 100 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: afii10093
Encoding: 1099 1099
Width: 600
Flags: W
HStem: 0 100<51 53 153.125 232 455 457 557 559> 180 100<153.125 215> 337 99.8723<51 53 153 155 557 559> 417 20G<59 147>
VStem: 53 100<100 180 279 338> 292 102<135 145> 457 100<99 336>
Fore
153 337 m 1
153 280 l 1
206 280 l 2
348 280 392 241 394 143 c 1
392 8 273 0 227 0 c 2
59 0 l 2
13 0 -9 17 -9 50 c 0
-9 82 13 100 53 100 c 1
53 337 l 1
13 337 -9 355 -9 387 c 0
-9 420 11 437 59 437 c 2
147 437 l 2
194 437 213 420 213 387 c 0
213 355 191 337 153 337 c 1
153 100 m 1
259 100 294 97 292 136 c 1
292 180 251 180 153 180 c 1
153 100 l 1
457 336 m 1
418 336 406 354 406 386 c 0
407 419 427 435 472 436 c 2
542 437 l 2
586 438 608 420 608 387 c 0
609 355 596 337 557 337 c 1
557 100 l 1
596 100 609 82 608 50 c 0
608 17 587 0 542 0 c 2
473 0 l 2
428 0 406 17 406 50 c 0
406 82 418 100 457 100 c 1
457 336 l 1
EndSplineSet
MinimumDistance: x21,-1
EndChar
StartChar: afii10094
Encoding: 1100 1100
Width: 600
Flags: W
HStem: 0 100<144 146 246.125 341> 180 100<246.25 315.06> 337 99.8723<144 146 246 248> 417 20G<152 240>
VStem: 146 100<100 180 279 337> 414 102<135 145>
Fore
246 337 m 1
246 280 l 1
464 280 514 258 516 143 c 1
514 8 366 0 320 0 c 2
152 0 l 2
106 0 84 17 84 50 c 0
84 82 106 100 146 100 c 1
146 337 l 1
106 337 84 355 84 387 c 0
84 420 104 437 152 437 c 2
240 437 l 2
287 437 306 420 306 387 c 0
306 355 284 337 246 337 c 1
246 100 m 1
352 100 416 97 414 136 c 1
414 180 344 180 246 180 c 1
246 100 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: afii10095
Encoding: 1101 1101
Width: 600
Flags: W
HStem: -16 100<250 302> 157 100<250 445> 350 100<278 317>
Fore
446 157 m 1
252 157 l 2
214 157 192 175 192 207 c 0
192 240 214 258 258 257 c 2
448 257 l 1
441 276 430 293 416 307 c 0
388 336 350 350 300 350 c 0
256 350 220 341 194 325 c 0
180 316 174 307 170 289 c 0
166 267 164 261 156 255 c 1
148 247 132 241 120 241 c 0
104 241 88 249 78 262 c 0
72 271 70 281 70 307 c 2
70 384 l 2
70 430 84 450 118 450 c 0
138 450 150 441 156 420 c 1
194 440 242 450 300 450 c 0
450 450 556 350 556 207 c 0
556 146 534 93 494 53 c 0
446 5 384 -16 286 -16 c 0
214 -16 150 -4 108 16 c 1
68 37 44 63 44 89 c 0
44 117 68 140 94 140 c 0
106 140 116 136 124 128 c 1
150 107 156 103 174 97 c 0
198 89 240 84 280 84 c 0
370 84 426 108 446 157 c 1
EndSplineSet
EndChar
StartChar: afii10096
Encoding: 1102 1102
Width: 600
Flags: W
HStem: -16 100<387 421> 0 21G<54 128> 0.973763 99.0262<36 38 138 140> 350 100<387 421>
VStem: 38 100<99 157 258 337> 512 100<191 241>
Fore
200 258 m 1
200 366 276 450 408 450 c 0
548 450 612 346 612 217 c 0
612 87 548 -16 404 -16 c 0
282 -16 204 54 204 157 c 1
138 157 l 1
138 100 l 1
178 100 194 82 194 50 c 0
192 17 170 0 128 0 c 2
54 0 l 2
10 0 -12 17 -12 50 c 0
-12 82 0 100 38 100 c 1
38 337 l 1
10 336 -6 355 -6 387 c 0
-6 420 15 438 60 437 c 2
122 436 l 2
168 435 190 419 190 386 c 0
190 354 170 336 138 337 c 1
138 258 l 1
200 258 l 1
406 350 m 0
316 350 296 293 296 217 c 0
296 142 316 84 404 84 c 0
494 84 512 142 512 217 c 0
512 291 494 350 406 350 c 0
EndSplineSet
EndChar
StartChar: afii10097
Encoding: 1103 1103
Width: 600
Flags: W
HStem: 0 100<99 152 386 388 488 501> 157 100<360 387.885> 337 100<291 388 488 490>
VStem: 118 100<292 305> 388 100<99 157 257 337>
Fore
222 167 m 1
142 181 118 216 118 294 c 0
118 428 266 436 314 437 c 2
482 437 l 2
526 437 548 420 548 387 c 0
548 355 526 337 488 337 c 1
488 100 l 1
526 100 548 82 548 50 c 0
548 17 529 0 482 0 c 2
394 0 l 2
346 0 326 17 326 50 c 0
326 82 348 100 388 100 c 1
388 157 l 1
360 157 l 1
286 87 l 1
298 74 302 64 302 50 c 0
302 17 280 0 236 0 c 2
118 0 l 2
96 0 84 2 76 7 c 0
60 17 52 33 52 50 c 0
52 66 60 81 72 91 c 0
82 98 90 100 118 100 c 2
152 100 l 1
222 167 l 1
388 337 m 1
272 338 218 339 218 301 c 0
218 253 260 257 388 257 c 1
388 337 l 1
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: uni0450
Encoding: 1104 1104
Width: 600
Flags: W
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
DStem: 202 618 248 674 335 506 381 563
Ref: 96 N 1 0 0 1 54 -6
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: afii10071
Encoding: 1105 1105
Width: 600
Flags: W
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
VStem: 127 120<520.5 553> 335 120<520.5 553>
Ref: 168 N 1 0 0 1 -9 -57
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: afii10099
Encoding: 1106 1106
Width: 600
Flags: W
HStem: -185 100<266 332> 0 100<76 96 195 214> 302 100<312 336> 444 58<36 94 195 354> 524 100<60 94>
VStem: 95 100<100 235 341 444 501 524> 408 100<-10 239>
Fore
408 0 m 9
410 223 l 21
410 249.667 404.667 268 394 278 c 5
394 279 l 5
375.14 294.088 357.004 302 323 302 c 6
322 302 l 6
264.291 302 232.925 270.605 196 235 c 5
195 100 l 1
201 100 l 2
223 100 238 97 246 91 c 2
247 91 l 2
260.333 80.3333 267.333 67 268 51 c 1
268 50 l 2
268 32 260 17.6667 244 7 c 0
236.667 2.33333 222.333 2.1684e-19 201 0 c 2
89 0 l 2
68.3333 0 53.3333 3 44 9 c 0
30.6667 19.6667 23.6667 33 23 49 c 1
23 50 l 2
23 69.3333 31 83.6667 47 93 c 0
55.6667 97.6667 69.6667 100 89 100 c 2
95 100 l 1
96 444 l 1
44 444 l 1
10 444 10 502 44 502 c 1
95 502 l 1
95 524 l 1
79 524 l 2
57 524 42 527 34 533 c 2
33 533 l 2
20.3333 543.667 13.6667 557 13 573 c 1
13 574 l 2
13 593.333 21 607.667 37 617 c 0
45.6667 621.667 59.6667 624 79 624 c 2
195 624 l 1
195 502 l 1
352 502 l 1
388 502 388 444 352 444 c 1
195 444 l 1
196 341 l 5
235.333 381.667 280.667 402 332 402 c 6
333 402 l 6
401.667 402 452 378 484 330 c 4
501.695 302.777 510 240.339 510 236 c 13
508 0 l 2
507.53 -61.3311 484.333 -110 437 -146 c 0
403 -172 363 -185 317 -185 c 2
278 -185 l 2
255.333 -185 240.333 -181.667 233 -175 c 0
219.667 -165.667 212.667 -152.667 212 -136 c 1
212 -135 l 2
212 -116.333 220 -102 236 -92 c 0
243.333 -87.333 257.333 -85 278 -85 c 2
314 -85 l 2
367.904 -85 408 -56.97 408 -1 c 2
408 0 l 9
EndSplineSet
MinimumDistance: x44,-1 x33,35 y35,33 y35,34 x35,37 x35,36 x25,23 x25,24
EndChar
StartChar: afii10100
Encoding: 1107 1107
Width: 600
Flags: W
HStem: 0 21G<165 254> 0.144728 99.8553<157 159 259.031 274.093> 244 193<449 455> 337 99.8553<157 159 259.063 402>
VStem: 159 100<99 336> 402 100<287 336>
DStem: 344 661 390 605 211 550 257 493
Fore
402 336 m 1
402 336 338 337 259 337 c 1
259 100 l 1
298 100 321 82 320 50 c 0
319 17 300 -3 254 0 c 1
165 0 l 2
120 0 98 17 98 50 c 0
98 82 120 100 159 100 c 1
159 337 l 1
120 337 98 355 98 387 c 0
98 420 120 437 165 437 c 2
502 437 l 1
502 310 l 2
502 284 500 274 493 264 c 0
483 252 468 244 452 244 c 0
435 244 418 253 409 268 c 0
403 277 402 286 402 310 c 2
402 336 l 1
390 605 m 1
257 493 l 2
242 481 235 477 225 477 c 0
205 477 188 494 188 513 c 0
188 526 195 537 211 550 c 2
344 661 l 2
360 674 365 677 376 677 c 0
397 677 413 661 413 640 c 0
413 628 407 618 390 605 c 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: afii10101
Encoding: 1108 1108
Width: 600
Flags: W
HStem: -16 100<298 350> 157 100<154 350> 350 100<283 322>
Fore
154 157 m 1
348 157 l 2
386 157 408 175 408 207 c 0
408 240 386 258 342 257 c 2
152 257 l 1
159 276 170 293 184 307 c 0
212 336 250 350 300 350 c 0
344 350 380 341 406 325 c 0
420 316 426 307 430 289 c 0
434 267 436 261 444 255 c 1
452 247 468 241 480 241 c 0
496 241 512 249 522 262 c 0
528 271 530 281 530 307 c 2
530 384 l 2
530 430 516 450 482 450 c 0
462 450 450 441 444 420 c 1
406 440 358 450 300 450 c 0
150 450 44 350 44 207 c 0
44 146 66 93 106 53 c 0
154 5 216 -16 314 -16 c 0
386 -16 450 -4 492 16 c 1
532 37 556 63 556 89 c 0
556 117 532 140 506 140 c 0
494 140 484 136 476 128 c 1
450 107 444 103 426 97 c 0
402 89 360 84 320 84 c 0
230 84 174 108 154 157 c 1
EndSplineSet
EndChar
StartChar: afii10102
Encoding: 1109 1109
Width: 600
Flags: W
HStem: -16 100<275.5 332> 350 100<275.5 322>
VStem: 92 110<310.5 324> 417 110<115.5 133.5>
Ref: 115 N 1 0 0 1 0 0
EndChar
StartChar: afii10103
Encoding: 1110 1110
Width: 600
Flags: W
HStem: 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335>
VStem: 218 118<519 622> 250 100<100 337>
Ref: 105 N 1 0 0 1 0 0
EndChar
StartChar: afii10104
Encoding: 1111 1111
Width: 600
Flags: W
HStem: 0 100<128 250 350 472> 337 100<172 250>
VStem: 136 120<520.5 553> 250 100<100 337 337 337> 344 120<520.5 553>
Ref: 168 N 1 0 0 1 0 -57
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: afii10105
Encoding: 1112 1112
Width: 600
Flags: W
HStem: -205 100<165 310> 337 100<165 387> 518 105<312 429>
VStem: 311 119<519 622> 388 100<-29 337>
Ref: 106 N 1 0 0 1 0 0
EndChar
StartChar: afii10106
Encoding: 1113 1113
Width: 600
Flags: W
HStem: -2 101<334 342 441.063 468> 178 100<441.125 474.211> 336 99.7825<130 134 234 342>
VStem: -29 99<104 139> -29 262.161<83 87> 134 100<112 335> 342 99<98 177 277 335> 553 101<127 141>
Fore
458 -2 m 5
348 -1 l 6
304.002 -0.599609 281.667 15.333 281 48 c 1
281 49 l 2
281 79.667 299 96.333 335 99 c 4
337 99 339.333 99 342 99 c 5
342 335 l 5
234 336 l 1
234 99 l 2
234 38.333 196 5.33301 120 0 c 0
113.333 -0.666992 106.333 -1 99 -1 c 0
49 -1 12.333 12.667 -11 40 c 0
-23 52.667 -29 67.667 -29 85 c 2
-29 86 l 1
-29 139 l 2
-29 178.333 -13.333 198.667 18 200 c 0
18.667 200 19.333 200 20 200 c 2
21 200 l 2
48.333 200 64 187 68 161 c 1
70 139 l 1
70 113 l 2
70 97 78.667 88 96 86 c 0
113.333 84 125.333 89.333 132 102 c 1
134 113 l 1
134 336 l 1
94.667 336 74.333 351.667 73 383 c 1
73 384 l 1
73 384 l 1
73 385 l 1
73 386 l 2
73 419.333 95.334 436.136 140 436 c 2
436 435 l 6
478.667 434.87 500.667 418.333 502 385 c 4
502.667 355.667 486.667 339.333 454 336 c 6
441 335 l 5
441 278 l 5
554.333 278 570.667 269 604 251 c 4
634.667 234.333 651.333 202.667 654 156 c 5
654 141 l 5
653.333 66.333 610 20.667 524 4 c 6
523 4 l 6
501.949 4 480.667 -2 458 -2 c 5
441 98 m 5
521 98 512 100.333 528 105 c 6
529 106 l 6
543 110.667 551 118 553 128 c 5
553 134 l 6
553 157.333 529.333 171.333 482 176 c 4
464 177.333 488.333 178 441 178 c 5
441 98 l 5
EndSplineSet
Back
489 180 m 2
425 180 l 1
425 100 l 1
489 100 l 2
513 100 530 113 530 136 c 0
530 170 502 180 489 180 c 2
425 280 m 1
425 280 470 281 489 280 c 2
570 280 630 246 631 143 c 5
630 8 514 0 467 0 c 2
331 0 l 2
286 -0 264 17 264 50 c 0
264 82 286 100 325 100 c 1
325 336 l 1
248 337 l 1
248 100 l 2
248 30 194 0 113 0 c 0
49 0 -15 30 -15 87 c 2
-15 140 l 2
-15 179 3 201 35 201 c 0
68 201 84 186 84 140 c 2
84 114 l 2
84 76 148 80 148 114 c 2
148 337 l 1
109 337 87 355 87 387 c 0
87 420 109 437 154 437 c 2
420 437 l 2
463 437 485 420 486 387 c 0
487 355 464 337 425 337 c 1
425 280 l 1
EndSplineSet
EndChar
StartChar: afii10107
Encoding: 1114 1114
Width: 600
Flags: W
HStem: 0 100<24 32 132.031 148.346 302 310 410.063 453> 180 101<132 310 410.125 443.211> 337 99.0807<18 32 132 134 293.468 309.969>
VStem: 32 100<99 179 281 338> 310 100<100 179 281 336> 522 101<129 143>
Fore
316 0 m 6
272 0 249.667 16.333 249 49 c 5
249 50 l 6
249 80.667 267 97.333 303 100 c 6
310 100 l 5
310 180 l 5
132 180 l 5
132 100 l 5
170 100 190.333 86 193 58 c 6
193 50 l 6
191.667 14 169.667 -2.66699 127 0 c 5
38 0 l 6
-6 0 -28.333 16.333 -29 49 c 5
-29 50 l 6
-29 80.667 -11 97.333 25 100 c 6
32 100 l 5
32 337 l 5
-6.36397 337 -29 352.444 -29 385 c 5
-29 387 l 5
-29 421 -6.66699 437.667 38 437 c 6
126 436 l 6
170 435.333 192.333 419 193 387 c 5
193 386 l 6
193 353.333 172.667 337 132 337 c 5
132 281 l 5
310 281 l 5
310 336 l 5
272 336 251.667 350 249 378 c 5
247.79 420.884 269.214 438.105 315 436 c 5
405 437 l 6
447.667 437 469.667 420.333 471 387 c 4
471.87 348.746 447.239 339.865 410 337 c 5
410 280 l 5
523.333 280 539.667 271 573 253 c 4
609.241 233.304 623 198.324 623 143 c 5
622.333 68.333 579 22.667 493 6 c 6
492 6 l 6
471.333 2 449.667 0 427 0 c 6
316 0 l 6
410 100 m 5
490 100 481 102.333 497 107 c 6
498 108 l 6
512 112.667 520 120 522 130 c 5
522 136 l 6
522 159.333 498.333 173.333 451 178 c 4
433 179.333 457.333 180 410 180 c 5
410 100 l 5
EndSplineSet
Back
309 0 m 2
264 0 242 17 242 50 c 0
242 82 264 100 303 100 c 1
303 180 l 1
152 180 l 1
152 100 l 1
191 100 214 82 213 50 c 0
212 17 193 -3 147 0 c 1
58 0 l 2
13 0 -9 17 -9 50 c 0
-9 82 13 100 52 100 c 1
52 337 l 1
13 337 -9 355 -9 387 c 0
-9 420 13 438 58 437 c 2
146 436 l 2
191 435 213 419 213 386 c 0
213 354 191 337 152 337 c 1
152 281 l 1
303 281 l 1
303 336 l 1
264 336 241 354 242 386 c 0
243 419 262 439 308 436 c 1
398 437 l 2
441 437 463 420 464 387 c 0
465 355 442 337 403 337 c 1
403 280 l 1
426 280 448 281 467 280 c 2
548 280 608 246 609 143 c 1
608 8 492 0 445 0 c 2
403 0 l 1
309 0 l 2
403 100 m 1
427 100 467 100 467 100 c 2
491 100 508 113 508 136 c 0
508 170 480 180 467 180 c 2
467 180 426 180 403 180 c 1
403 100 l 1
EndSplineSet
EndChar
StartChar: afii10108
Encoding: 1115 1115
Width: 600
Flags: W
HStem: 0 100<76 96 195 206 387 409 509 526> 302 100<316 338> 444 58<36 94 195 359> 524 100<60 94>
VStem: 95 100<100 235 341 444 501 524> 409 100<100 241>
Fore
195 624 m 1
195 502 l 1
352 502 l 1
388 502 388 444 352 444 c 1
195 444 l 1
196 341 l 5
235.333 381.667 280.667 402 332 402 c 6
333 402 l 6
401.667 402 452 378 484 330 c 4
501.333 303.333 510 272.333 510 237 c 6
510 236 l 5
509 100 l 1
515 100 l 2
537 100 552 97 560 91 c 2
561 91 l 2
573.667 80.3333 580.333 67 581 51 c 1
581 50 l 2
581 30.6667 573 16.3333 557 7 c 0
549.667 2.33333 535.667 2.1684e-19 515 0 c 2
403 0 l 2
381 0 365.667 3 357 9 c 0
343.667 19.6667 336.667 33 336 49 c 1
336 50 l 2
336 68 344 82.3333 360 93 c 0
368.667 97.6667 383 100 403 100 c 2
409 100 l 1
410 223 l 6
410 249.667 404.667 268 394 278 c 5
394 279 l 5
389 283 l 6
373.667 295.667 351.667 302 323 302 c 6
322 302 l 6
292 302 265 293 241 275 c 4
229.667 266.333 214.667 253 196 235 c 5
195 100 l 1
201 100 l 2
223 100 238 97 246 91 c 2
247 91 l 2
260.333 80.3333 267.333 67 268 51 c 1
268 50 l 2
268 32 260 17.6667 244 7 c 0
236.667 2.33333 222.333 2.1684e-19 201 0 c 2
89 0 l 2
68.3333 0 53.3333 3 44 9 c 0
30.6667 19.6667 23.6667 33 23 49 c 1
23 50 l 2
23 69.3333 31 83.6667 47 93 c 0
55.6667 97.6667 69.6667 100 89 100 c 2
95 100 l 1
96 444 l 1
44 444 l 1
10 444 10 502 44 502 c 1
95 502 l 1
95 524 l 1
79 524 l 2
57 524 42 527 34 533 c 2
33 533 l 2
20.3333 543.667 13.6667 557 13 573 c 1
13 574 l 2
13 593.333 21 607.667 37 617 c 0
45.6667 621.667 59.6667 624 79 624 c 2
195 624 l 1
EndSplineSet
MinimumDistance: x11,-1 x60,1 y1,60 y1,0 x52,50 x52,51 x1,3 x1,2
EndChar
StartChar: afii10109
Encoding: 1116 1116
Width: 600
Flags: W
HStem: 0 100<100.726 133 447 501> 337 100<99 133 447 485>
VStem: 134 100<99 164 287 337>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227 344 661 390 605 211 550 257 493
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
390 605 m 1
257 493 l 2
242 481 235 477 225 477 c 0
205 477 188 494 188 513 c 0
188 526 195 537 211 550 c 2
344 661 l 2
360 674 365 677 376 677 c 0
397 677 413 661 413 640 c 0
413 628 407 618 390 605 c 1
EndSplineSet
MinimumDistance: x23,-1
EndChar
StartChar: uni045D
Encoding: 1117 1117
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<90 92 192.031 207.093 398 407 507.031 522.093> 337 99.1444<78 92 192 194 391.955 406.969 507 512>
VStem: 92 100<99 113 214 338> 407 100<99 224 324 336>
DStem: 210 605 256 661 343 493 389 550 407 325 407 224 192 214 192 113
Fore
192 337 m 1
192 214 l 1
407 325 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 224 l 1
192 113 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
256 661 m 2
389 550 l 2
405 537 412 526 412 513 c 0
412 494 395 477 375 477 c 0
365 477 358 481 343 493 c 2
210 605 l 1
193 618 187 628 187 641 c 0
187 661 203 677 224 677 c 0
235 677 240 674 256 661 c 2
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: afii10110
Encoding: 1118 1118
Width: 600
Flags: W
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 477 68<272.5 327.5>
Ref: 728 N 1 0 0 1 0 -26
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: afii10193
Encoding: 1119 1119
Width: 600
Flags: W
HStem: 0 100<193 254 347 408 508 517> 337 100.247<76.6538 92.9686 193 200 391.654 407.969 508 515> 417 20G<98 187 413 502>
VStem: 93 100<100 337> 257.996 84.436<-55 -35> 408 100<100 337>
Fore
193 101 m 1
408 100 l 1
408 337 l 1
370 337 349.667 351 347 379 c 1
347 387 l 2
347 423 369 439.667 413 437 c 1
502 437 l 2
546 437 568.333 420.667 569 388 c 1
569 387 l 2
569 356.333 551 339.667 515 337 c 0
513 337 510.667 337 508 337 c 1
508 100 l 1
547.333 100 567.667 84.3333 569 53 c 0
569 52.3333 569 51.6667 569 51 c 2
569 50 l 2
569 16.6667 546.667 1.73472e-18 502 0 c 2
348 0 l 5
336.598 -45.1792 344.265 -64.9557 348 -90 c 5
322.838 -102.442 284 -102 254 -90 c 5
260.075 -66.0331 258.546 -34.5136 254 0 c 5
98 0 l 2
54.6667 0 32.6667 16.3333 32 49 c 1
32 50 l 1
31.3333 76.6667 45.6667 92.6667 75 98 c 2
93 100 l 1
93 337 l 1
55 337 34.6667 351 32 379 c 1
32 387 l 2
32 423 54 439.667 98 437 c 1
187 437 l 2
231 437 253.333 420.667 254 388 c 1
254 387 l 2
254 356.333 236 339.667 200 337 c 0
198 337 195.667 337 193 337 c 1
193 101 l 1
EndSplineSet
MinimumDistance: x10,-1 x17,19 x18,16 y16,18 y16,17
EndChar
StartChar: uni048C
Encoding: 1164 1164
Width: 600
Flags: W
HStem: 0 100<61 93 195 317> 283 100<195 317> 483 100<61 93 195 311>
VStem: 13 346<528 535> 94 100<101 282 383 483> 423 106<188 194>
Fore
194 383 m 1
292 383 l 2
385 383 435 366 479 317 c 0
511 282 529 235 529 189 c 0
529 78 439 0 312 0 c 2
79 0 l 2
53 0 46 1 37 7 c 0
22 16 13 33 13 50 c 0
13 65 21 81 34 91 c 0
43 98 54 100 79 100 c 2
94 100 l 1
94 483 l 1
79 483 l 2
55 483 46 484 37 490 c 0
22 499 13 516 13 533 c 0
13 548 21 564 34 573 c 0
42 580 56 583 79 583 c 2
293 583 l 2
313 583 328 580 335 576 c 0
350 567 359 550 359 533 c 0
359 517 351 502 338 492 c 0
328 485 320 483 293 483 c 2
194 483 l 1
194 383 l 1
194 100 m 1
312 100 l 2
381 100 423 135 423 192 c 0
423 248 381 283 312 283 c 2
194 283 l 1
194 100 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: uni048D
Encoding: 1165 1165
Width: 600
Flags: W
HStem: 0 100<145 145 246.125 340> 180 100<246.25 315.06> 417 20G<152 240>
VStem: 146 100<101 179 280 337> 414 102<136 144>
Fore
246 337 m 1
246 280 l 1
464 280 514 258 516 143 c 1
514 8 366 0 320 0 c 2
152 0 l 2
106 0 84 17 84 50 c 0
84 82 106 100 146 100 c 1
146 337 l 1
106 337 84 355 84 387 c 0
84 420 104 437 152 437 c 2
240 437 l 2
287 437 306 420 306 387 c 0
306 355 284 337 246 337 c 1
246 100 m 1
352 100 416 97 414 136 c 1
414 180 344 180 246 180 c 1
246 100 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni048E
Encoding: 1166 1166
Width: 600
Flags: W
HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194>
VStem: 94 100<100 200 300 483> 423 106<371 419.5>
Ref: 80 N 1 0 0 1 0 0
EndChar
StartChar: uni048F
Encoding: 1167 1167
Width: 600
Flags: W
HStem: -205 100<41 74 176 249> 10 100<310 346> 337 100<41 74> 350 100<303 345>
VStem: -7 306<-157 -153> 75 100<-105 65 223 243> 471 101<223 243>
Fore
347 111 m 1
311 147 l 2
293 165 289 172 290 185 c 0
291 195 296 207 302 213 c 0
319 230 343 228 368 204 c 1
428 143 l 1
455 164 471 195 471 230 c 0
471 263 452 300 423 321 c 0
397 341 364 350 323 350 c 0
281 350 248 341 222 321 c 0
193 300 174 263 174 231 c 0
174 160 235 110 323 110 c 0
331 110 339 110 347 111 c 1
430 28 m 1
431 28 l 2
401 16 367 10 330 10 c 0
271 10 227 26 175 66 c 1
175 -105 l 1
233 -105 l 2
259 -105 269 -107 279 -114 c 0
292 -124 299 -139 299 -155 c 0
299 -172 290 -188 275 -198 c 0
267 -203 255 -205 233 -205 c 2
59 -205 l 2
34 -205 23 -203 13 -195 c 0
1 -186 -7 -171 -7 -155 c 0
-7 -138 2 -121 17 -112 c 0
26 -106 35 -105 59 -105 c 2
75 -105 l 1
75 337 l 1
59 337 l 2
33 337 23 339 13 346 c 0
1 356 -7 371 -7 387 c 0
-7 404 2 421 17 430 c 0
26 435 35 437 59 437 c 2
175 437 l 1
175 392 l 1
224 434 266 450 328 450 c 0
468 450 572 353 572 224 c 0
572 162 546 108 502 70 c 1
541 31 l 2
557 15 564 4 563 -6 c 0
562 -16 556 -29 550 -35 c 0
533 -52 508 -49 484 -26 c 2
430 28 l 1
EndSplineSet
MinimumDistance: x37,-1
EndChar
StartChar: afii10050
Encoding: 1168 1168
Width: 600
Flags: W
HStem: 0 100<80 111 213 320> 483 100<80 111 213 468> 483 217<512 520>
VStem: 32 346<48 52> 112 100<100 483> 468 100<583 640>
Fore
468 583 m 1
468 634 l 2
468 657 470 668 476 676 c 0
486 691 502 700 518 700 c 0
534 700 550 692 560 679 c 0
566 669 568 661 568 634 c 2
568 483 l 1
212 483 l 1
212 100 l 1
312 100 l 2
340 100 348 98 358 91 c 0
370 81 378 66 378 50 c 0
378 33 370 16 354 7 c 0
348 3 332 0 312 0 c 2
98 0 l 2
74 0 60 3 52 10 c 0
40 19 32 35 32 50 c 0
32 67 40 84 56 93 c 1
64 99 74 100 98 100 c 2
112 100 l 1
112 483 l 1
98 483 l 2
72 483 62 485 52 492 c 0
40 502 32 517 32 533 c 0
32 550 40 567 56 576 c 1
64 582 72 583 98 583 c 2
468 583 l 1
EndSplineSet
MinimumDistance: x5,-1 y5,7 x7,5 x7,6
EndChar
StartChar: afii10098
Encoding: 1169 1169
Width: 600
Flags: W
HStem: 0 21G<165 254> 0.144728 99.8553<158 158 259.031 274.093> 336.295 192.705<450 454> 337 100<158 158 259.062 402>
VStem: 159 100<100 337> 402 100<437 480>
Fore
402 437 m 1
402 463 l 2
402 487 403 496 409 505 c 0
418 520 435 529 452 529 c 0
468 529 483 521 493 509 c 0
500 499 502 489 502 463 c 2
502 336 l 1
502 336 338 337 259 337 c 1
259 100 l 1
298 100 321 82 320 50 c 0
319 17 300 -3 254 0 c 1
165 0 l 2
120 0 98 17 98 50 c 0
98 82 120 100 159 100 c 1
159 337 l 1
120 337 98 355 98 387 c 0
98 420 120 437 165 437 c 2
402 437 l 1
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: uni0492
Encoding: 1170 1170
Width: 600
Flags: W
HStem: 0 100<80 111 213 320> 483 100<80 111 213 468>
VStem: 32 346<48 52> 112 100<100 483> 468 100<416 483>
Fore
212 100 m 1
312 100 l 2
340 100 348 98 358 91 c 0
370 81 378 66 378 50 c 0
378 33 370 16 354 7 c 0
348 3 332 0 312 0 c 2
98 0 l 2
74 0 60 3 52 10 c 0
40 19 32 35 32 50 c 0
32 67 40 84 56 93 c 1
64 99 74 100 98 100 c 2
112 100 l 1
112 483 l 1
98 483 l 2
72 483 62 485 52 492 c 0
40 502 32 517 32 533 c 0
32 550 40 567 56 576 c 1
64 582 72 583 98 583 c 2
568 583 l 1
568 432 l 2
568 405 566 397 560 387 c 0
550 374 534 366 518 366 c 0
502 366 486 375 476 390 c 0
470 398 468 409 468 432 c 2
468 483 l 1
212 483 l 1
212 100 l 1
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: uni0493
Encoding: 1171 1171
Width: 600
Flags: W
HStem: 0 21G<165 254> 0.144728 99.8553<158 158 259.031 274.093> 177 80<111 158 260 321> 244 193<447 454> 337 99.8553<158 158 259.063 402>
VStem: 79 273<208 224> 159 100<100 177 257 337> 402 100<288 337>
Fore
159 177 m 1
120 177 l 2
100 177 94 179 87 189 c 0
82 197 79 209 79 217 c 0
79 242 93 257 120 257 c 2
159 257 l 1
159 337 l 1
120 337 98 355 98 387 c 0
98 420 120 437 165 437 c 2
502 437 l 1
502 310 l 2
502 284 500 274 493 264 c 0
483 252 468 244 452 244 c 0
435 244 418 253 409 268 c 0
403 277 402 286 402 310 c 2
402 336 l 1
402 336 338 337 259 337 c 1
259 257 l 1
311 257 l 2
329 257 338 254 343 246 c 0
348 239 352 225 352 217 c 0
352 192 336 177 311 177 c 2
259 177 l 1
259 100 l 1
298 100 321 82 320 50 c 0
319 17 300 -3 254 0 c 1
165 0 l 2
120 0 98 17 98 50 c 0
98 82 120 100 159 100 c 1
159 177 l 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni0494
Encoding: 1172 1172
Width: 600
Flags: W
HStem: 0 100<80 111 213 320> 483 100<80 111 213 468>
VStem: 32 346<48 52> 112 100<100 483> 468 100<416 483>
Fore
212 100 m 1
312 100 l 2
340 100 348 98 358 91 c 0
370 81 378 66 378 50 c 0
378 33 370 16 354 7 c 0
348 3 332 0 312 0 c 2
98 0 l 2
74 0 60 3 52 10 c 0
40 19 32 35 32 50 c 0
32 67 40 84 56 93 c 1
64 99 74 100 98 100 c 2
112 100 l 1
112 483 l 1
98 483 l 2
72 483 62 485 52 492 c 0
40 502 32 517 32 533 c 0
32 550 40 567 56 576 c 1
64 582 72 583 98 583 c 2
568 583 l 1
568 432 l 2
568 405 566 397 560 387 c 0
550 374 534 366 518 366 c 0
502 366 486 375 476 390 c 0
470 398 468 409 468 432 c 2
468 483 l 1
212 483 l 1
212 100 l 1
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: uni0495
Encoding: 1173 1173
Width: 600
Flags: W
HStem: 0 21G<165 254> 0.144728 99.8553<158 158 259.031 274.093> 244 193<450 454> 337 99.8553<158 158 259.063 402>
VStem: 159 100<100 337> 402 100<288 337>
Fore
402 336 m 1
402 336 338 337 259 337 c 1
259 100 l 1
298 100 321 82 320 50 c 0
319 17 300 -3 254 0 c 1
165 0 l 2
120 0 98 17 98 50 c 0
98 82 120 100 159 100 c 1
159 337 l 1
120 337 98 355 98 387 c 0
98 420 120 437 165 437 c 2
502 437 l 1
502 310 l 2
502 284 500 274 493 264 c 0
483 252 468 244 452 244 c 0
435 244 418 253 409 268 c 0
403 277 402 286 402 310 c 2
402 336 l 1
EndSplineSet
MinimumDistance: x11,-1
EndChar
StartChar: uni0496
Encoding: 1174 1174
Width: 600
Flags: W
HStem: 0 100<24 52 232 249 349.031 367.854 547 568> 483 100<24 33 232 249 349.031 373.464 567 568>
VStem: -23 186<528 535> 250 99<100 259 338 483> 436 186<528 535>
DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330
Fore
348 583 m 2
374 583 381 582 390 576 c 0
405 567 414 550 414 533 c 0
414 517 406 502 393 492 c 1
387 484 371 483 349 483 c 1
349 337 l 1
467 487 l 1
446 495 436 509 436 532 c 0
436 560 452 578 481 581 c 0
493 583 494 583 502 583 c 2
556 583 l 2
583 583 592 581 602 574 c 0
614 564 622 549 622 533 c 0
622 500 601 483 566 483 c 1
451 330 l 1
512 298 545 214 547 100 c 1
557 100 l 2
584 100 592 98 602 91 c 0
615 81 623 66 623 50 c 0
623 33 614 16 599 7 c 0
592 3 577 0 557 0 c 2
469 0 l 1
467 148 431 260 349 260 c 1
349 100 l 1
370 100 383 100 390 93 c 1
405 84 414 67 414 50 c 0
414 35 406 19 393 10 c 0
385 3 371 0 348 0 c 2
251 0 l 2
228 0 214 3 206 10 c 0
193 19 185 35 185 50 c 0
185 67 194 84 209 93 c 1
216 100 229 100 250 100 c 1
250 260 l 1
168 260 132 148 130 0 c 1
42 0 l 2
22 0 7 3 0 7 c 0
-15 16 -24 33 -24 50 c 0
-24 66 -16 81 -3 91 c 0
7 98 15 100 42 100 c 2
52 100 l 1
54 214 87 298 148 330 c 1
33 483 l 1
-2 483 -23 500 -23 533 c 0
-23 549 -15 564 -3 574 c 0
7 581 16 583 43 583 c 2
97 583 l 2
105 583 106 583 118 581 c 0
147 578 163 560 163 532 c 0
163 509 153 495 132 487 c 1
250 337 l 1
250 483 l 1
228 483 212 484 206 492 c 1
193 502 185 517 185 533 c 0
185 550 194 567 209 576 c 0
218 582 225 583 251 583 c 2
348 583 l 2
EndSplineSet
EndChar
StartChar: uni0497
Encoding: 1175 1175
Width: 600
Flags: W
HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<27 34 566 571> 417 20G<49 118 254 345 481 550>
VStem: -17 201<384 389> 248 103<101 160 288 337> 415 205<48 52> 415 201<384 389>
DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227
Fore
335 0 m 2
264 0 l 2
220 0 204 17 204 50 c 0
204 67 214 84 230 93 c 1
238 99 248 100 248 100 c 1
248 161 l 1
170 87 l 1
182 74 184 64 184 50 c 0
184 17 162 0 118 0 c 2
47 0 l 2
25 0 11 2 3 7 c 0
-11 17 -21 33 -21 50 c 0
-21 66 -14 81 1 93 c 0
12 101 18 101 34 100 c 1
170 227 l 1
34 337 l 1
24 337 16 337 7 344 c 0
-9 356 -17 370 -17 387 c 0
-17 403 -11 418 3 428 c 0
13 435 23 437 49 437 c 2
118 437 l 2
142 437 152 435 160 430 c 0
176 420 184 404 184 387 c 0
184 373 180 364 168 350 c 1
248 287 l 1
248 337 l 1
248 337 234 339 224 346 c 0
212 356 204 371 204 387 c 0
204 404 212 421 228 430 c 1
236 436 230 437 254 437 c 2
345 437 l 2
369 437 363 436 371 430 c 1
387 421 395 404 395 387 c 0
395 371 387 356 375 346 c 0
365 339 351 337 351 337 c 1
351 287 l 1
431 350 l 1
419 364 415 373 415 387 c 0
415 404 423 420 439 430 c 0
447 435 457 437 481 437 c 2
550 437 l 2
576 437 586 435 596 428 c 0
610 418 616 403 616 387 c 0
616 370 608 356 592 344 c 0
583 337 575 337 565 337 c 1
429 227 l 1
565 100 l 1
581 101 587 101 598 93 c 0
613 81 620 66 620 50 c 0
620 33 610 17 596 7 c 0
588 2 574 0 552 0 c 2
481 0 l 2
437 0 415 17 415 50 c 0
415 64 417 74 429 87 c 1
351 161 l 1
351 100 l 1
351 100 361 99 369 93 c 1
385 84 395 67 395 50 c 0
395 17 379 0 335 0 c 2
EndSplineSet
EndChar
StartChar: uni0498
Encoding: 1176 1176
Width: 600
Flags: W
HStem: -14 100<286 318> 1 198<110 115> 240 101<222 304> 497 100<286 318>
VStem: 413 104<418 431> 434 104<153 164>
Fore
234 341 m 2
276 341 l 2
350 341 356 356 376 366 c 0
398 377 413 400 413 421 c 0
413 464 363 497 300 497 c 0
238 497 190 470 181 430 c 0
174 398 174 398 167 390 c 0
159 382 145 376 131 376 c 0
116 376 101 384 91 397 c 0
84 407 82 415 82 443 c 2
82 531 l 2
82 557 83 565 89 574 c 0
97 588 114 597 131 597 c 0
151 597 160 589 170 564 c 1
205 586 249 597 300 597 c 0
424 597 517 521 517 420 c 0
517 363 494 317 461 298 c 1
467 294 473 290 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 240 293 240 c 2
234 240 l 2
210 240 197 243 188 249 c 0
176 259 168 275 168 290 c 0
168 307 177 324 192 333 c 0
201 339 209 341 234 341 c 2
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: uni0499
Encoding: 1177 1177
Width: 600
Flags: W
HStem: -16 100<281 313> 1 166<121 126> 178 100<234.892 313> 350 100<281 313>
VStem: 188 283<225 235> 396 110<311 317> 417 110<122 129>
Fore
255 278 m 2
286 278 l 2
352 278 356 286 370 291 c 0
386 297 396 306 396 315 c 0
396 333 348 350 297 350 c 0
255 350 222 341 194 321 c 1
189 312 l 2
177 290 163 281 142 281 c 0
127 281 111 289 101 301 c 0
94 311 92 321 92 347 c 2
92 384 l 2
92 430 107 450 139 450 c 0
154 450 163 443 171 424 c 1
210 442 251 450 300 450 c 0
420 450 506 393 506 313 c 0
506 281 491 252 471 235 c 1
471 225 l 1
504 205 527 164 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 342 178 291 178 c 2
249 178 l 2
210 178 188 196 188 228 c 0
188 261 210 279 255 278 c 2
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni049A
Encoding: 1178 1178
Width: 600
Flags: W
HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737>
VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535>
DStem: 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni049B
Encoding: 1179 1179
Width: 600
Flags: W
HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484>
VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: uni049C
Encoding: 1180 1180
Width: 600
Flags: W
HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737>
VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535>
DStem: 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni049D
Encoding: 1181 1181
Width: 600
Flags: W
HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484>
VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: uni049E
Encoding: 1182 1182
Width: 600
Flags: W
HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737>
VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535>
DStem: 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni049F
Encoding: 1183 1183
Width: 600
Flags: W
HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484>
VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: uni04A0
Encoding: 1184 1184
Width: 600
Flags: W
HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737>
VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535>
DStem: 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni04A1
Encoding: 1185 1185
Width: 600
Flags: W
HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484>
VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: uni04A2
Encoding: 1186 1186
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni04A3
Encoding: 1187 1187
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 162 101<193 406> 337 99.1444<79 91 193 193 391.955 406.969 508 511>
VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 161 264 337> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 161 264 336>
Fore
192 337 m 1
192 263 l 1
407 263 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 162 l 1
192 162 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni04A4
Encoding: 1188 1188
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni04A5
Encoding: 1189 1189
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 162 101<193 406> 337 99.1444<79 91 193 193 391.955 406.969 508 511>
VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 161 264 337> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 161 264 336>
Fore
192 337 m 1
192 263 l 1
407 263 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 162 l 1
192 162 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni04A6
Encoding: 1190 1190
Width: 600
Flags: W
HStem: 0 100<67 92 194 229 373 406 508 533> 483 100<194 406>
VStem: 93 100<100 483> 407 100<100 483>
Fore
407 483 m 1
193 483 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 483 l 1
EndSplineSet
MinimumDistance: x21,-1
EndChar
StartChar: uni04A7
Encoding: 1191 1191
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 337 99.8553<91 91 193 406 508 511> 417 20G<98 502>
VStem: 92 100<100 337> 407 100<100 337>
Fore
407 336 m 1
192 337 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 437 98 437 c 2
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 336 l 1
EndSplineSet
MinimumDistance: x13,-1
EndChar
StartChar: uni04A8
Encoding: 1192 1192
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: uni04A9
Encoding: 1193 1193
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: uni04AA
Encoding: 1194 1194
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: uni04AB
Encoding: 1195 1195
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: uni04AC
Encoding: 1196 1196
Width: 600
Flags: W
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: uni04AD
Encoding: 1197 1197
Width: 600
Flags: W
HStem: 1.14473 99.8553<249 249 350.031 365.093> 337 101<162 249 351 438>
VStem: 62 100<289 336> 250 100<101 336> 438 100<289 336>
Fore
250 337 m 1
162 337 l 1
162 311 l 2
162 287 161 278 155 269 c 0
146 254 129 245 112 245 c 0
96 245 81 253 71 265 c 0
64 275 62 285 62 311 c 2
62 438 l 1
538 438 l 1
538 311 l 2
538 285 536 275 529 265 c 0
519 253 504 245 488 245 c 0
471 245 454 254 445 269 c 0
439 278 438 287 438 311 c 2
438 337 l 1
350 337 l 1
350 101 l 1
389 101 412 83 411 51 c 0
410 18 391 -2 345 1 c 1
256 1 l 2
211 1 189 18 189 51 c 0
189 83 211 101 250 101 c 1
250 337 l 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni04AE
Encoding: 1198 1198
Width: 600
Flags: W
HStem: 0 100<165 249 351 423> 483 100<73.0894 85 514 516>
VStem: 21 222<528 535> 250 100<100 245> 354 225<528 535>
DStem: 85 483 205 484 250 245 300 348 394 484 514 483 300 348 350 245
Fore
350 245 m 1
350 100 l 1
415 100 l 2
443 100 451 98 461 91 c 0
474 81 482 66 482 50 c 0
482 33 473 16 458 7 c 0
451 3 436 0 415 0 c 2
185 0 l 2
161 0 148 3 139 10 c 0
126 19 118 34 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 185 100 c 2
250 100 l 1
250 245 l 1
85 483 l 1
44 483 21 501 21 533 c 0
21 560 38 578 67 581 c 0
79 583 80 583 88 583 c 2
177 583 l 2
204 583 213 581 223 574 c 0
235 564 243 549 243 533 c 0
243 510 231 495 205 484 c 1
300 348 l 1
394 484 l 1
367 494 354 510 354 533 c 0
354 550 363 567 378 576 c 0
387 582 396 583 421 583 c 2
513 583 l 2
540 583 549 581 558 574 c 0
572 564 579 549 579 533 c 0
579 502 551 479 516 483 c 2
514 483 l 1
350 245 l 1
EndSplineSet
MinimumDistance: x29,-1 x15,20
EndChar
StartChar: uni04AF
Encoding: 1199 1199
Width: 600
Flags: W
HStem: 0 21G<247 351> 337 100<48 80 194 208 384 408 518 544>
VStem: 0 264<384 389> 333 267<384 389>
DStem: 80 337 193 337 247 0 302 122 409 337 518 337 302 122 351 0
Fore
302 122 m 1
409 337 l 1
399 337 l 2
374 337 363 339 354 346 c 0
341 356 333 371 333 387 c 0
333 404 342 421 357 430 c 0
366 435 375 437 399 437 c 2
534 437 l 2
560 437 570 435 580 428 c 0
592 418 600 403 600 387 c 0
600 370 591 353 576 344 c 0
568 339 557 337 534 337 c 2
518 337 l 1
351 0 l 1
247 0 l 1
80 337 l 1
66 337 l 2
41 337 30 339 21 346 c 0
8 356 0 371 0 387 c 0
0 404 9 421 24 430 c 0
33 435 42 437 66 437 c 2
198 437 l 2
224 437 234 435 244 428 c 0
256 418 264 403 264 387 c 0
264 370 255 353 240 344 c 0
232 339 221 337 198 337 c 2
193 337 l 1
302 122 l 1
EndSplineSet
EndChar
StartChar: uni04B0
Encoding: 1200 1200
Width: 600
Flags: W
HStem: 0 100<165 249 351 423> 483 100<73.0894 85 514 516>
VStem: 21 222<528 535> 250 100<100 245> 354 225<528 535>
DStem: 85 483 205 484 250 245 300 348 394 484 514 483 300 348 350 245
Fore
350 245 m 1
350 100 l 1
415 100 l 2
443 100 451 98 461 91 c 0
474 81 482 66 482 50 c 0
482 33 473 16 458 7 c 0
451 3 436 0 415 0 c 2
185 0 l 2
161 0 148 3 139 10 c 0
126 19 118 34 118 50 c 0
118 67 127 84 142 93 c 0
151 99 158 100 185 100 c 2
250 100 l 1
250 245 l 1
85 483 l 1
44 483 21 501 21 533 c 0
21 560 38 578 67 581 c 0
79 583 80 583 88 583 c 2
177 583 l 2
204 583 213 581 223 574 c 0
235 564 243 549 243 533 c 0
243 510 231 495 205 484 c 1
300 348 l 1
394 484 l 1
367 494 354 510 354 533 c 0
354 550 363 567 378 576 c 0
387 582 396 583 421 583 c 2
513 583 l 2
540 583 549 581 558 574 c 0
572 564 579 549 579 533 c 0
579 502 551 479 516 483 c 2
514 483 l 1
350 245 l 1
EndSplineSet
MinimumDistance: x29,-1 x15,20
EndChar
StartChar: uni04B1
Encoding: 1201 1201
Width: 600
Flags: W
HStem: 0 21G<247 351> 337 100<48 80 194 208 384 408 518 544>
VStem: 0 264<384 389> 333 267<384 389>
DStem: 80 337 193 337 247 0 302 122 409 337 518 337 302 122 351 0
Fore
302 122 m 1
409 337 l 1
399 337 l 2
374 337 363 339 354 346 c 0
341 356 333 371 333 387 c 0
333 404 342 421 357 430 c 0
366 435 375 437 399 437 c 2
534 437 l 2
560 437 570 435 580 428 c 0
592 418 600 403 600 387 c 0
600 370 591 353 576 344 c 0
568 339 557 337 534 337 c 2
518 337 l 1
351 0 l 1
247 0 l 1
80 337 l 1
66 337 l 2
41 337 30 339 21 346 c 0
8 356 0 371 0 387 c 0
0 404 9 421 24 430 c 0
33 435 42 437 66 437 c 2
198 437 l 2
224 437 234 435 244 428 c 0
256 418 264 403 264 387 c 0
264 370 255 353 240 344 c 0
232 339 221 337 198 337 c 2
193 337 l 1
302 122 l 1
EndSplineSet
EndChar
StartChar: uni04B2
Encoding: 1202 1202
Width: 600
Flags: W
HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512>
VStem: 10 243<48 52> 19 224<528 535> 347 243<48 52> 355 223<528 535>
DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297
Ref: 88 N 1 0 0 1 0 0
EndChar
StartChar: uni04B3
Encoding: 1203 1203
Width: 600
Flags: W
HStem: 0 20 417 20<106 198 198 211 400 491 491 504>
Ref: 120 N 1 0 0 1 0 0
EndChar
StartChar: uni04B4
Encoding: 1204 1204
Width: 600
Flags: W
HStem: 0 100<179 391 493 494> 483 100<52 77 179 214 358 391 493 518>
VStem: 78 100<100 483> 392 100<100 483> 494 100<-93 0>
Fore
494 0 m 1
92 0 l 2
67 0 59 1 50 7 c 0
35 16 26 33 26 50 c 0
26 79 45 97 78 100 c 1
78 483 l 1
72 483 l 2
47 483 39 484 30 490 c 0
15 499 6 516 6 533 c 0
6 548 14 564 26 574 c 0
35 580 48 583 72 583 c 2
193 583 l 2
214 583 227 581 235 576 c 0
250 567 259 550 259 533 c 0
259 517 251 502 238 492 c 0
229 485 219 483 193 483 c 2
178 483 l 1
178 100 l 1
392 100 l 1
392 483 l 1
377 483 l 2
353 483 344 484 335 490 c 0
320 499 311 516 311 533 c 0
311 548 319 564 332 574 c 0
341 580 353 583 377 583 c 2
498 583 l 2
519 583 532 581 540 576 c 0
555 567 564 550 564 533 c 0
564 517 556 502 543 492 c 0
534 485 525 483 498 483 c 2
492 483 l 1
492 100 l 1
594 100 l 1
594 -75 l 2
594 -102 592 -110 585 -120 c 0
575 -133 560 -141 544 -141 c 0
527 -141 511 -132 501 -117 c 0
496 -109 494 -98 494 -75 c 2
494 0 l 1
EndSplineSet
MinimumDistance: x32,-1 y33,31 x31,33 x31,32
EndChar
StartChar: uni04B5
Encoding: 1205 1205
Width: 600
Flags: W
HStem: 0.11526 99.8847<84 84 186 382> 337 99.7765<84 84 186 186 376 382 484 488> 417 20G<90 179 388 477>
VStem: 85 100<100 337> 383 100<100 337> 477 100<-44 0>
Fore
483 100 m 1
577 100 l 1
577 -26 l 2
577 -52 575 -62 568 -72 c 0
558 -84 543 -92 527 -92 c 0
510 -92 493 -83 484 -68 c 0
478 -59 477 -50 477 -26 c 2
477 0 l 1
90 0 l 2
47 0 24 17 24 50 c 0
23 82 46 100 85 100 c 1
85 337 l 1
46 337 23 355 24 387 c 0
24 420 44 436 90 437 c 2
179 437 l 2
224 437 246 420 246 387 c 0
246 355 224 337 185 337 c 1
185 101 l 1
383 100 l 1
383 337 l 1
344 337 321 355 322 387 c 0
322 420 345 436 388 437 c 2
477 437 l 2
522 437 544 420 544 387 c 0
544 355 522 337 483 337 c 1
483 100 l 1
EndSplineSet
MinimumDistance: x1,-1 y2,0 x0,2 x0,1
EndChar
StartChar: uni04B6
Encoding: 1206 1206
Width: 600
Flags: W
HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389>
VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483>
Fore
390 208 m 1
363 185 329 170 284 170 c 0
190 170 96 185 90 305 c 1
90 483 l 1
58 486 38 504 38 533 c 0
38 550 48 567 62 576 c 0
72 582 80 583 104 583 c 2
206 583 l 2
232 583 242 581 250 574 c 0
264 564 272 549 272 533 c 0
272 516 262 499 248 490 c 0
238 485 230 483 206 483 c 2
190 483 l 1
190 308 l 1
202 282 247 270 290 270 c 0
333 270 369 282 390 308 c 1
390 483 l 1
374 483 l 2
348 483 340 485 330 492 c 0
316 502 308 517 308 533 c 0
308 550 318 567 332 576 c 0
342 582 350 583 374 583 c 2
476 583 l 2
502 583 512 581 522 574 c 0
534 564 542 549 542 533 c 0
542 504 522 486 490 483 c 1
490 100 l 1
496 100 l 2
522 100 532 98 540 91 c 0
554 81 562 66 562 50 c 0
562 33 552 16 538 7 c 0
530 2 516 0 496 0 c 2
374 0 l 2
350 0 338 3 330 9 c 0
316 19 308 35 308 50 c 0
308 67 318 84 332 93 c 0
342 99 350 100 374 100 c 2
390 100 l 1
390 208 l 1
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: uni04B7
Encoding: 1207 1207
Width: 600
Flags: W
HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497>
VStem: 110 100<251 337> 390 100<100 140 251 336>
Fore
210 337 m 1
210 252 l 2
210 218 260 208 300 208 c 0
340 208 390 231 390 252 c 2
390 336 l 1
351 336 328 354 329 386 c 0
330 419 349 439 395 436 c 1
485 437 l 2
528 437 550 420 551 387 c 0
552 355 529 337 490 337 c 1
490 100 l 1
529 100 552 82 551 50 c 0
550 17 531 -3 485 0 c 1
396 0 l 2
351 0 329 17 329 50 c 0
329 82 351 100 390 100 c 1
390 141 l 1
370 122 339 111 302 111 c 0
202 111 110 135 110 252 c 2
110 337 l 1
71 337 49 355 49 387 c 0
49 420 71 438 116 437 c 2
204 436 l 2
249 435 271 419 271 386 c 0
271 354 249 337 210 337 c 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni04B8
Encoding: 1208 1208
Width: 600
Flags: W
HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389>
VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483>
Fore
390 208 m 1
363 185 329 170 284 170 c 0
190 170 96 185 90 305 c 1
90 483 l 1
58 486 38 504 38 533 c 0
38 550 48 567 62 576 c 0
72 582 80 583 104 583 c 2
206 583 l 2
232 583 242 581 250 574 c 0
264 564 272 549 272 533 c 0
272 516 262 499 248 490 c 0
238 485 230 483 206 483 c 2
190 483 l 1
190 308 l 1
202 282 247 270 290 270 c 0
333 270 369 282 390 308 c 1
390 483 l 1
374 483 l 2
348 483 340 485 330 492 c 0
316 502 308 517 308 533 c 0
308 550 318 567 332 576 c 0
342 582 350 583 374 583 c 2
476 583 l 2
502 583 512 581 522 574 c 0
534 564 542 549 542 533 c 0
542 504 522 486 490 483 c 1
490 100 l 1
496 100 l 2
522 100 532 98 540 91 c 0
554 81 562 66 562 50 c 0
562 33 552 16 538 7 c 0
530 2 516 0 496 0 c 2
374 0 l 2
350 0 338 3 330 9 c 0
316 19 308 35 308 50 c 0
308 67 318 84 332 93 c 0
342 99 350 100 374 100 c 2
390 100 l 1
390 208 l 1
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: uni04B9
Encoding: 1209 1209
Width: 600
Flags: W
HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497>
VStem: 110 100<251 337> 390 100<100 140 251 336>
Fore
210 337 m 1
210 252 l 2
210 218 260 208 300 208 c 0
340 208 390 231 390 252 c 2
390 336 l 1
351 336 328 354 329 386 c 0
330 419 349 439 395 436 c 1
485 437 l 2
528 437 550 420 551 387 c 0
552 355 529 337 490 337 c 1
490 100 l 1
529 100 552 82 551 50 c 0
550 17 531 -3 485 0 c 1
396 0 l 2
351 0 329 17 329 50 c 0
329 82 351 100 390 100 c 1
390 141 l 1
370 122 339 111 302 111 c 0
202 111 110 135 110 252 c 2
110 337 l 1
71 337 49 355 49 387 c 0
49 420 71 438 116 437 c 2
204 436 l 2
249 435 271 419 271 386 c 0
271 354 249 337 210 337 c 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni04BA
Encoding: 1210 1210
Width: 600
Flags: W
HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389>
VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483>
Fore
390 208 m 1
363 185 329 170 284 170 c 0
190 170 96 185 90 305 c 1
90 483 l 1
58 486 38 504 38 533 c 0
38 550 48 567 62 576 c 0
72 582 80 583 104 583 c 2
206 583 l 2
232 583 242 581 250 574 c 0
264 564 272 549 272 533 c 0
272 516 262 499 248 490 c 0
238 485 230 483 206 483 c 2
190 483 l 1
190 308 l 1
202 282 247 270 290 270 c 0
333 270 369 282 390 308 c 1
390 483 l 1
374 483 l 2
348 483 340 485 330 492 c 0
316 502 308 517 308 533 c 0
308 550 318 567 332 576 c 0
342 582 350 583 374 583 c 2
476 583 l 2
502 583 512 581 522 574 c 0
534 564 542 549 542 533 c 0
542 504 522 486 490 483 c 1
490 100 l 1
496 100 l 2
522 100 532 98 540 91 c 0
554 81 562 66 562 50 c 0
562 33 552 16 538 7 c 0
530 2 516 0 496 0 c 2
374 0 l 2
350 0 338 3 330 9 c 0
316 19 308 35 308 50 c 0
308 67 318 84 332 93 c 0
342 99 350 100 374 100 c 2
390 100 l 1
390 208 l 1
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: uni04BB
Encoding: 1211 1211
Width: 600
Flags: W
HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497>
VStem: 110 100<251 337> 390 100<100 140 251 336>
Fore
210 337 m 1
210 252 l 2
210 218 260 208 300 208 c 0
340 208 390 231 390 252 c 2
390 336 l 1
351 336 328 354 329 386 c 0
330 419 349 439 395 436 c 1
485 437 l 2
528 437 550 420 551 387 c 0
552 355 529 337 490 337 c 1
490 100 l 1
529 100 552 82 551 50 c 0
550 17 531 -3 485 0 c 1
396 0 l 2
351 0 329 17 329 50 c 0
329 82 351 100 390 100 c 1
390 141 l 1
370 122 339 111 302 111 c 0
202 111 110 135 110 252 c 2
110 337 l 1
71 337 49 355 49 387 c 0
49 420 71 438 116 437 c 2
204 436 l 2
249 435 271 419 271 386 c 0
271 354 249 337 210 337 c 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni04BC
Encoding: 1212 1212
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: uni04BD
Encoding: 1213 1213
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: uni04BE
Encoding: 1214 1214
Width: 600
Flags: W
HStem: -14 100<305 353> 367 216<497 501> 497 100<288.512 328>
VStem: 33 100<242 322>
Ref: 67 N 1 0 0 1 0 0
EndChar
StartChar: uni04BF
Encoding: 1215 1215
Width: 600
Flags: W
HStem: -16 100<274.5 350> 350 100<284.5 332>
VStem: 54 100<176.5 226>
Ref: 99 N 1 0 0 1 0 0
EndChar
StartChar: uni04C0
Encoding: 1216 1216
Width: 600
Flags: W
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni04C1
Encoding: 1217 1217
Width: 600
Flags: W
HStem: 0 100<24 52 232 249 349.031 367.854 547 568> 483 100<24 33 232 249 349.031 373.464 567 568> 623 68<296 312>
VStem: -23 186<528 535> 250 99<100 259 338 483> 436 186<528 535>
DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330
Fore
348 583 m 2
374 583 381 582 390 576 c 0
405 567 414 550 414 533 c 0
414 517 406 502 393 492 c 1
387 484 371 483 349 483 c 1
349 337 l 1
467 487 l 1
446 495 436 509 436 532 c 0
436 560 452 578 481 581 c 0
493 583 494 583 502 583 c 2
556 583 l 2
583 583 592 581 602 574 c 0
614 564 622 549 622 533 c 0
622 500 601 483 566 483 c 1
451 330 l 1
512 298 545 214 547 100 c 1
557 100 l 2
584 100 592 98 602 91 c 0
615 81 623 66 623 50 c 0
623 33 614 16 599 7 c 0
592 3 577 0 557 0 c 2
469 0 l 1
467 148 431 260 349 260 c 1
349 100 l 1
370 100 383 100 390 93 c 1
405 84 414 67 414 50 c 0
414 35 406 19 393 10 c 0
385 3 371 0 348 0 c 2
251 0 l 2
228 0 214 3 206 10 c 0
193 19 185 35 185 50 c 0
185 67 194 84 209 93 c 1
216 100 229 100 250 100 c 1
250 260 l 1
168 260 132 148 130 0 c 1
42 0 l 2
22 0 7 3 0 7 c 0
-15 16 -24 33 -24 50 c 0
-24 66 -16 81 -3 91 c 0
7 98 15 100 42 100 c 2
52 100 l 1
54 214 87 298 148 330 c 1
33 483 l 1
-2 483 -23 500 -23 533 c 0
-23 549 -15 564 -3 574 c 0
7 581 16 583 43 583 c 2
97 583 l 2
105 583 106 583 118 581 c 0
147 578 163 560 163 532 c 0
163 509 153 495 132 487 c 1
250 337 l 1
250 483 l 1
228 483 212 484 206 492 c 1
193 502 185 517 185 533 c 0
185 550 194 567 209 576 c 0
218 582 225 583 251 583 c 2
348 583 l 2
159 807 m 0
179 807 186 798 193 767 c 0
203 721 245 691 300 691 c 0
355 691 397 721 407 767 c 0
414 798 421 807 441 807 c 0
461 807 475 792 475 769 c 0
475 693 392 623 300 623 c 0
208 623 125 693 125 769 c 0
125 792 139 807 159 807 c 0
EndSplineSet
EndChar
StartChar: uni04C2
Encoding: 1218 1218
Width: 600
Flags: W
HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<27 34 566 571> 417 20G<49 118 254 345 481 550> 477 68<283 315>
VStem: -17 201<384 389> 248 103<101 160 288 337> 415 205<48 52> 415 201<384 389>
DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227
Fore
335 0 m 2
264 0 l 2
220 0 204 17 204 50 c 0
204 67 214 84 230 93 c 1
238 99 248 100 248 100 c 1
248 161 l 1
170 87 l 1
182 74 184 64 184 50 c 0
184 17 162 0 118 0 c 2
47 0 l 2
25 0 11 2 3 7 c 0
-11 17 -21 33 -21 50 c 0
-21 66 -14 81 1 93 c 0
12 101 18 101 34 100 c 1
170 227 l 1
34 337 l 1
24 337 16 337 7 344 c 0
-9 356 -17 370 -17 387 c 0
-17 403 -11 418 3 428 c 0
13 435 23 437 49 437 c 2
118 437 l 2
142 437 152 435 160 430 c 0
176 420 184 404 184 387 c 0
184 373 180 364 168 350 c 1
248 287 l 1
248 337 l 1
248 337 234 339 224 346 c 0
212 356 204 371 204 387 c 0
204 404 212 421 228 430 c 1
236 436 230 437 254 437 c 2
345 437 l 2
369 437 363 436 371 430 c 1
387 421 395 404 395 387 c 0
395 371 387 356 375 346 c 0
365 339 351 337 351 337 c 1
351 287 l 1
431 350 l 1
419 364 415 373 415 387 c 0
415 404 423 420 439 430 c 0
447 435 457 437 481 437 c 2
550 437 l 2
576 437 586 435 596 428 c 0
610 418 616 403 616 387 c 0
616 370 608 356 592 344 c 0
583 337 575 337 565 337 c 1
429 227 l 1
565 100 l 1
581 101 587 101 598 93 c 0
613 81 620 66 620 50 c 0
620 33 610 17 596 7 c 0
588 2 574 0 552 0 c 2
481 0 l 2
437 0 415 17 415 50 c 0
415 64 417 74 429 87 c 1
351 161 l 1
351 100 l 1
351 100 361 99 369 93 c 1
385 84 395 67 395 50 c 0
395 17 379 0 335 0 c 2
159 661 m 0
179 661 186 652 193 621 c 0
203 575 245 545 300 545 c 0
355 545 397 575 407 621 c 0
414 652 421 661 441 661 c 0
461 661 475 646 475 623 c 0
475 547 392 477 300 477 c 0
208 477 125 547 125 623 c 0
125 646 139 661 159 661 c 0
EndSplineSet
EndChar
StartChar: uni04C3
Encoding: 1219 1219
Width: 600
Flags: W
HStem: 0 100<54 85 187 230 496 547> 483 100<54 85 187 230 504.031 519.737>
VStem: 6 282<48 52 528 535> 86 100<100 277 335 483> 334 232<528 535>
DStem: 364 487 504 483 186 334 328 330
Fore
186 100 m 1
222 100 l 2
248 100 256 98 266 91 c 0
280 81 288 66 288 50 c 0
288 33 278 16 264 7 c 0
256 3 242 0 222 0 c 2
72 0 l 2
48 0 34 3 26 10 c 0
14 19 6 35 6 50 c 0
6 67 14 84 30 93 c 1
38 99 48 100 72 100 c 2
86 100 l 1
86 483 l 1
72 483 l 2
46 483 36 485 26 492 c 0
14 502 6 517 6 533 c 0
6 550 14 567 30 576 c 1
38 582 46 583 72 583 c 2
222 583 l 2
248 583 258 581 266 574 c 0
280 564 288 549 288 533 c 0
288 516 278 499 264 490 c 0
256 485 244 483 222 483 c 2
186 483 l 1
186 334 l 1
364 487 l 1
344 495 334 509 334 532 c 0
334 560 350 578 378 581 c 0
390 583 392 583 400 583 c 2
500 583 l 2
526 583 536 581 546 574 c 0
558 564 566 549 566 533 c 0
566 500 544 483 504 483 c 1
328 330 l 1
388 298 450 215 496 100 c 1
528 100 l 2
556 100 564 98 574 91 c 0
586 81 594 66 594 50 c 0
594 33 586 16 570 7 c 0
564 3 548 0 528 0 c 2
418 0 l 1
372 143 268 278 186 278 c 1
186 100 l 1
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni04C4
Encoding: 1220 1220
Width: 600
Flags: W
HStem: 0 100<100.726 133 448 500> 337 100<100 133 448 484>
VStem: 134 100<100 163 288 337> 296 252<48 52> 298 244<384 389>
DStem: 234 164 312 227 312 87 448 100 314 350 448 337 234 287 312 227
Fore
234 0 m 1
118 0 l 2
74 0 52 17 52 50 c 0
52 67 62 84 76 93 c 0
86 99 94 100 118 100 c 2
134 100 l 1
134 337 l 1
118 337 l 2
92 337 82 339 72 346 c 0
60 356 52 371 52 387 c 0
52 404 62 421 76 430 c 0
86 436 94 437 118 437 c 2
234 437 l 1
234 287 l 1
314 350 l 1
302 364 298 373 298 387 c 0
298 404 306 420 322 430 c 0
330 435 340 437 364 437 c 2
476 437 l 2
502 437 512 435 522 428 c 0
536 418 542 403 542 387 c 0
542 370 534 354 518 344 c 0
510 339 500 337 476 337 c 2
448 337 l 1
312 227 l 1
448 100 l 1
480 100 l 2
508 100 516 98 526 91 c 0
540 81 548 66 548 50 c 0
548 33 538 17 524 7 c 0
516 2 502 0 480 0 c 2
362 0 l 2
318 0 296 17 296 50 c 0
296 64 300 74 312 87 c 1
234 164 l 1
234 0 l 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: uni04C5
Encoding: 1221 1221
Width: 600
EndChar
StartChar: uni04C6
Encoding: 1222 1222
Width: 600
EndChar
StartChar: uni04C7
Encoding: 1223 1223
Width: 600
Flags: W
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni04C8
Encoding: 1224 1224
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 162 101<193 406> 337 99.1444<79 91 193 193 391.955 406.969 508 511>
VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 161 264 337> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 161 264 336>
Fore
192 337 m 1
192 263 l 1
407 263 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 162 l 1
192 162 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni04C9
Encoding: 1225 1225
Width: 600
EndChar
StartChar: uni04CA
Encoding: 1226 1226
Width: 600
EndChar
StartChar: uni04CB
Encoding: 1227 1227
Width: 600
Flags: W
HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389>
VStem: 38 234<528 535> 90 100<308 483> 308 234<528 535> 390 100<100 207 308 483>
Fore
390 208 m 1
363 185 329 170 284 170 c 0
190 170 96 185 90 305 c 1
90 483 l 1
58 486 38 504 38 533 c 0
38 550 48 567 62 576 c 0
72 582 80 583 104 583 c 2
206 583 l 2
232 583 242 581 250 574 c 0
264 564 272 549 272 533 c 0
272 516 262 499 248 490 c 0
238 485 230 483 206 483 c 2
190 483 l 1
190 308 l 1
202 282 247 270 290 270 c 0
333 270 369 282 390 308 c 1
390 483 l 1
374 483 l 2
348 483 340 485 330 492 c 0
316 502 308 517 308 533 c 0
308 550 318 567 332 576 c 0
342 582 350 583 374 583 c 2
476 583 l 2
502 583 512 581 522 574 c 0
534 564 542 549 542 533 c 0
542 504 522 486 490 483 c 1
490 100 l 1
496 100 l 2
522 100 532 98 540 91 c 0
554 81 562 66 562 50 c 0
562 33 552 16 538 7 c 0
530 2 516 0 496 0 c 2
374 0 l 2
350 0 338 3 330 9 c 0
316 19 308 35 308 50 c 0
308 67 318 84 332 93 c 0
342 99 350 100 374 100 c 2
390 100 l 1
390 208 l 1
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: uni04CC
Encoding: 1228 1228
Width: 600
Flags: W
HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497>
VStem: 110 100<251 337> 390 100<100 140 251 336>
Fore
210 337 m 1
210 252 l 2
210 218 260 208 300 208 c 0
340 208 390 231 390 252 c 2
390 336 l 1
351 336 328 354 329 386 c 0
330 419 349 439 395 436 c 1
485 437 l 2
528 437 550 420 551 387 c 0
552 355 529 337 490 337 c 1
490 100 l 1
529 100 552 82 551 50 c 0
550 17 531 -3 485 0 c 1
396 0 l 2
351 0 329 17 329 50 c 0
329 82 351 100 390 100 c 1
390 141 l 1
370 122 339 111 302 111 c 0
202 111 110 135 110 252 c 2
110 337 l 1
71 337 49 355 49 387 c 0
49 420 71 438 116 437 c 2
204 436 l 2
249 435 271 419 271 386 c 0
271 354 249 337 210 337 c 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni04CD
Encoding: 1229 1229
Width: 600
EndChar
StartChar: uni04CE
Encoding: 1230 1230
Width: 600
EndChar
StartChar: uni04CF
Encoding: 1231 1231
Width: 600
EndChar
StartChar: uni04D0
Encoding: 1232 1232
Width: 600
Flags: W
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 623 68<272.5 327.5>
Ref: 728 N 1 0 0 1 0 120
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni04D1
Encoding: 1233 1233
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 477 68<279.5 334.5>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Ref: 728 N 1 0 0 1 7 -26
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni04D2
Encoding: 1234 1234
Width: 600
Flags: W
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
VStem: 136 120<666.5 699> 344 120<666.5 699>
Ref: 168 N 1 0 0 1 0 89
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni04D3
Encoding: 1235 1235
Width: 600
Flags: W
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 142 120<520.5 553> 350 120<520.5 553> 389 100<135 185 279 304>
Ref: 168 N 1 0 0 1 6 -57
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni04D4
Encoding: 1236 1236
Width: 600
Flags: W
HStem: 0 100<28.7264 53 258 266 368 514> 0 189<556 572> 158 101<204 266> 187 210<428 444> 243 99<368 386> 483 100<140 167 368 493>
VStem: -20 218<48 55> 267 100<101 157 343 470> 267 219<260 342> 493 100<396 482> 514 100<100 144>
DStem: 168 483 267 471 53 100 203 259
Fore
53 100 m 1
168 483 l 1
154 483 l 2
129 483 118 485 109 492 c 0
96 502 88 518 88 533 c 0
88 550 97 567 112 576 c 0
121 582 128 583 154 583 c 2
593 583 l 1
593 418 l 2
593 391 591 383 584 373 c 0
574 360 559 352 543 352 c 0
526 352 510 361 500 376 c 0
495 384 493 395 493 418 c 2
493 483 l 1
367 483 l 1
367 342 l 1
386 342 l 1
388 377 406 397 436 397 c 0
453 397 470 388 479 373 c 0
485 364 486 357 486 331 c 2
486 253 l 2
486 226 484 218 477 208 c 0
467 195 452 187 436 187 c 0
406 187 387 208 386 243 c 1
367 243 l 1
367 100 l 1
514 100 l 1
514 123 l 2
514 148 516 158 523 168 c 0
533 181 548 189 564 189 c 0
581 189 598 180 607 165 c 0
613 156 614 148 614 123 c 2
614 0 l 1
265 0 l 2
231 0 209 20 209 52 c 0
209 79 231 100 259 100 c 2
267 100 l 1
267 158 l 1
174 158 l 1
157 100 l 1
183 96 198 79 198 53 c 0
198 19 177 0 141 0 c 2
46 0 l 2
2 0 -20 17 -20 50 c 0
-20 67 -11 84 4 93 c 0
13 99 22 100 46 100 c 2
53 100 l 1
267 259 m 1
267 471 l 1
203 259 l 1
267 259 l 1
EndSplineSet
EndChar
StartChar: uni04D5
Encoding: 1237 1237
Width: 600
Flags: W
HStem: -16 100<147 163 431 451> 172 86<363 501> 197 89<194 211> 350 100<194 211 431 441>
VStem: -13 101<131 147> 255 356<172 189>
Fore
611 172 m 1
360 172 l 1
377 109 400 84 441 84 c 0
463 84 482 89 509 101 c 0
538 113 553 118 566 118 c 0
592 118 612 96 612 66 c 0
612 47 603 32 587 22 c 0
552 0 489 -16 442 -16 c 0
402 -16 379 -9 342 16 c 1
333 5 321 -1 305 -1 c 0
290 -1 279 5 269 16 c 1
232 -7 202 -16 159 -16 c 0
55 -16 -13 48 -13 145 c 0
-13 189 3 216 45 242 c 0
85 268 148 286 195 286 c 0
210 286 229 284 255 281 c 1
255 301 l 2
255 329 235 350 207 350 c 0
190 350 181 348 117 329 c 0
108 326 100 325 94 325 c 0
68 325 46 348 46 376 c 0
46 401 60 417 87 426 c 0
124 438 182 450 207 450 c 0
253 450 288 433 323 394 c 1
359 433 393 450 435 450 c 0
482 450 528 426 563 381 c 0
594 341 611 285 611 218 c 2
611 172 l 1
255 130 m 1
255 189 l 1
232 195 216 197 199 197 c 0
162 197 121 186 101 171 c 0
93 164 88 154 88 142 c 0
88 107 116 84 158 84 c 0
189 84 215 96 255 130 c 1
362 258 m 1
502 258 l 1
498 285 495 299 487 313 c 0
476 335 454 350 432 350 c 0
409 350 386 333 375 307 c 0
369 294 366 281 362 258 c 1
EndSplineSet
EndChar
StartChar: uni04D6
Encoding: 1238 1238
Width: 600
Flags: W
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 623 68<254.5 309.5>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 728 N 1 0 0 1 -18 120
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni04D7
Encoding: 1239 1239
Width: 600
Flags: W
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 477 68<264.5 319.5>
Ref: 728 N 1 0 0 1 -8 -26
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni04D8
Encoding: 1240 1240
Width: 600
Flags: W
HStem: -14 100<249 293> 241 100<242 463> 367 216<98 102> 497 100<271 306>
VStem: 184 382<281.534 293>
Fore
466 241 m 1
250 241 l 2
226 241 212 244 204 250 c 0
192 260 184 276 184 291 c 0
184 308 192 325 208 334 c 1
216 340 224 341 250 341 c 2
464 341 l 1
452 432 383 497 290 497 c 0
256 497 220 488 192 473 c 0
164 457 154 444 148 420 c 1
144 396 142 389 134 381 c 0
126 373 112 367 100 367 c 0
84 367 68 375 58 388 c 0
52 397 50 408 50 433 c 2
50 517 l 2
50 542 50 550 56 559 c 0
66 574 82 583 100 583 c 0
116 583 128 577 142 559 c 1
152 563 l 2
208 586 242 597 294 597 c 0
448 597 566 475 566 315 c 2
566 249 l 2
566 97 442 -14 272 -14 c 0
200 -14 132 4 88 36 c 0
54 60 34 86 34 109 c 0
34 136 58 159 84 159 c 0
98 159 110 154 120 143 c 0
148 115 148 115 158 109 c 0
184 94 224 86 268 86 c 0
384 86 461 147 466 241 c 1
EndSplineSet
MinimumDistance: x20,-1
EndChar
StartChar: afii10846
Encoding: 1241 1241
Width: 600
Flags: W
HStem: -16 100<251 302> 157 100<251 445> 350 100<279 316>
VStem: 192 364<195.748 209>
Fore
446 157 m 1
252 157 l 2
214 157 192 175 192 207 c 0
192 240 214 258 258 257 c 2
448 257 l 1
441 276 430 293 416 307 c 0
388 336 350 350 300 350 c 0
256 350 220 341 194 325 c 0
180 316 174 307 170 289 c 0
166 267 164 261 156 255 c 1
148 247 132 241 120 241 c 0
104 241 88 249 78 262 c 0
72 271 70 281 70 307 c 2
70 384 l 2
70 430 84 450 118 450 c 0
138 450 150 441 156 420 c 1
194 440 242 450 300 450 c 0
450 450 556 350 556 207 c 0
556 146 534 93 494 53 c 0
446 5 384 -16 286 -16 c 0
214 -16 150 -4 108 16 c 1
68 37 44 63 44 89 c 0
44 117 68 140 94 140 c 0
106 140 116 136 124 128 c 1
150 107 156 103 174 97 c 0
198 89 240 84 280 84 c 0
370 84 426 108 446 157 c 1
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni04DA
Encoding: 1242 1242
Width: 600
Flags: W
HStem: -14 100<249 293> 241 100<242 463> 367 216<98 102> 497 100<271 306> 623 120<186 206 402 406>
VStem: 136 120<674 690> 184 382<281.534 293> 344 120<674 690>
Fore
466 241 m 1
250 241 l 2
226 241 212 244 204 250 c 0
192 260 184 276 184 291 c 0
184 308 192 325 208 334 c 1
216 340 224 341 250 341 c 2
464 341 l 1
452 432 383 497 290 497 c 0
256 497 220 488 192 473 c 0
164 457 154 444 148 420 c 1
144 396 142 389 134 381 c 0
126 373 112 367 100 367 c 0
84 367 68 375 58 388 c 0
52 397 50 408 50 433 c 2
50 517 l 2
50 542 50 550 56 559 c 0
66 574 82 583 100 583 c 0
116 583 128 577 142 559 c 1
152 563 l 2
208 586 242 597 294 597 c 0
448 597 566 475 566 315 c 2
566 249 l 2
566 97 442 -14 272 -14 c 0
200 -14 132 4 88 36 c 0
54 60 34 86 34 109 c 0
34 136 58 159 84 159 c 0
98 159 110 154 120 143 c 0
148 115 148 115 158 109 c 0
184 94 224 86 268 86 c 0
384 86 461 147 466 241 c 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni04DB
Encoding: 1243 1243
Width: 600
Flags: W
HStem: -16 100<251 302> 157 100<251 445> 350 100<279 316> 477 120<188 204 396 412>
VStem: 136 120<528 544> 192 364<195.748 209> 344 120<528 544>
Fore
446 157 m 1
252 157 l 2
214 157 192 175 192 207 c 0
192 240 214 258 258 257 c 2
448 257 l 1
441 276 430 293 416 307 c 0
388 336 350 350 300 350 c 0
256 350 220 341 194 325 c 0
180 316 174 307 170 289 c 0
166 267 164 261 156 255 c 1
148 247 132 241 120 241 c 0
104 241 88 249 78 262 c 0
72 271 70 281 70 307 c 2
70 384 l 2
70 430 84 450 118 450 c 0
138 450 150 441 156 420 c 1
194 440 242 450 300 450 c 0
450 450 556 350 556 207 c 0
556 146 534 93 494 53 c 0
446 5 384 -16 286 -16 c 0
214 -16 150 -4 108 16 c 1
68 37 44 63 44 89 c 0
44 117 68 140 94 140 c 0
106 140 116 136 124 128 c 1
150 107 156 103 174 97 c 0
198 89 240 84 280 84 c 0
370 84 426 108 446 157 c 1
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni04DC
Encoding: 1244 1244
Width: 600
Flags: W
HStem: 0 100<24 52 232 249 349.031 367.854 547 568> 483 100<24 33 232 249 349.031 373.464 567 568> 623 120<186 206 394 414>
VStem: -23 186<528 535> 136 120<681 688> 250 99<100 259 338 483> 344 120<681 688> 436 186<528 535>
DStem: 33 483 132 487 148 330 250 337 467 487 566 483 349 337 451 330
Fore
348 583 m 2
374 583 381 582 390 576 c 0
405 567 414 550 414 533 c 0
414 517 406 502 393 492 c 1
387 484 371 483 349 483 c 1
349 337 l 1
467 487 l 1
446 495 436 509 436 532 c 0
436 560 452 578 481 581 c 0
493 583 494 583 502 583 c 2
556 583 l 2
583 583 592 581 602 574 c 0
614 564 622 549 622 533 c 0
622 500 601 483 566 483 c 1
451 330 l 1
512 298 545 214 547 100 c 1
557 100 l 2
584 100 592 98 602 91 c 0
615 81 623 66 623 50 c 0
623 33 614 16 599 7 c 0
592 3 577 0 557 0 c 2
469 0 l 1
467 148 431 260 349 260 c 1
349 100 l 1
370 100 383 100 390 93 c 1
405 84 414 67 414 50 c 0
414 35 406 19 393 10 c 0
385 3 371 0 348 0 c 2
251 0 l 2
228 0 214 3 206 10 c 0
193 19 185 35 185 50 c 0
185 67 194 84 209 93 c 1
216 100 229 100 250 100 c 1
250 260 l 1
168 260 132 148 130 0 c 1
42 0 l 2
22 0 7 3 0 7 c 0
-15 16 -24 33 -24 50 c 0
-24 66 -16 81 -3 91 c 0
7 98 15 100 42 100 c 2
52 100 l 1
54 214 87 298 148 330 c 1
33 483 l 1
-2 483 -23 500 -23 533 c 0
-23 549 -15 564 -3 574 c 0
7 581 16 583 43 583 c 2
97 583 l 2
105 583 106 583 118 581 c 0
147 578 163 560 163 532 c 0
163 509 153 495 132 487 c 1
250 337 l 1
250 483 l 1
228 483 212 484 206 492 c 1
193 502 185 517 185 533 c 0
185 550 194 567 209 576 c 0
218 582 225 583 251 583 c 2
348 583 l 2
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
EndChar
StartChar: uni04DD
Encoding: 1245 1245
Width: 600
Flags: W
HStem: 0 21G<47 118 264 335 481 552> 337 99.1475<27 34 566 571> 417 20G<49 118 254 345 481 550> 477 120<185 205 394 411>
VStem: -17 201<384 389> 135 120<528 544> 248 103<101 160 288 337> 343 120<528 544> 415 205<48 52> 415 201<384 389>
DStem: 34 337 168 350 170 227 248 287 170 227 248 161 34 100 170 87 351 161 429 227 429 87 565 100 431 350 565 337 351 287 429 227
Fore
335 0 m 2
264 0 l 2
220 0 204 17 204 50 c 0
204 67 214 84 230 93 c 1
238 99 248 100 248 100 c 1
248 161 l 1
170 87 l 1
182 74 184 64 184 50 c 0
184 17 162 0 118 0 c 2
47 0 l 2
25 0 11 2 3 7 c 0
-11 17 -21 33 -21 50 c 0
-21 66 -14 81 1 93 c 0
12 101 18 101 34 100 c 1
170 227 l 1
34 337 l 1
24 337 16 337 7 344 c 0
-9 356 -17 370 -17 387 c 0
-17 403 -11 418 3 428 c 0
13 435 23 437 49 437 c 2
118 437 l 2
142 437 152 435 160 430 c 0
176 420 184 404 184 387 c 0
184 373 180 364 168 350 c 1
248 287 l 1
248 337 l 1
248 337 234 339 224 346 c 0
212 356 204 371 204 387 c 0
204 404 212 421 228 430 c 1
236 436 230 437 254 437 c 2
345 437 l 2
369 437 363 436 371 430 c 1
387 421 395 404 395 387 c 0
395 371 387 356 375 346 c 0
365 339 351 337 351 337 c 1
351 287 l 1
431 350 l 1
419 364 415 373 415 387 c 0
415 404 423 420 439 430 c 0
447 435 457 437 481 437 c 2
550 437 l 2
576 437 586 435 596 428 c 0
610 418 616 403 616 387 c 0
616 370 608 356 592 344 c 0
583 337 575 337 565 337 c 1
429 227 l 1
565 100 l 1
581 101 587 101 598 93 c 0
613 81 620 66 620 50 c 0
620 33 610 17 596 7 c 0
588 2 574 0 552 0 c 2
481 0 l 2
437 0 415 17 415 50 c 0
415 64 417 74 429 87 c 1
351 161 l 1
351 100 l 1
351 100 361 99 369 93 c 1
385 84 395 67 395 50 c 0
395 17 379 0 335 0 c 2
195 597 m 0
229 597 255 570 255 536 c 0
255 504 228 477 195 477 c 0
162 477 135 504 135 537 c 0
135 570 162 597 195 597 c 0
403 597 m 0
437 597 463 570 463 536 c 0
463 504 436 477 403 477 c 0
370 477 343 504 343 537 c 0
343 570 370 597 403 597 c 0
EndSplineSet
EndChar
StartChar: uni04DE
Encoding: 1246 1246
Width: 600
Flags: W
HStem: -14 100<286 318> 1 198<110 115> 240 101<222 304> 497 100<286 318> 623 120<187 206 397 414>
VStem: 136 120<674 690> 344 120<674 690> 413 104<418 431> 434 104<153 164>
Fore
234 341 m 2
276 341 l 2
350 341 356 356 376 366 c 0
398 377 413 400 413 421 c 0
413 464 363 497 300 497 c 0
238 497 190 470 181 430 c 0
174 398 174 398 167 390 c 0
159 382 145 376 131 376 c 0
116 376 101 384 91 397 c 0
84 407 82 415 82 443 c 2
82 531 l 2
82 557 83 565 89 574 c 0
97 588 114 597 131 597 c 0
151 597 160 589 170 564 c 1
205 586 249 597 300 597 c 0
424 597 517 521 517 420 c 0
517 363 494 317 461 298 c 1
467 294 473 290 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 240 293 240 c 2
234 240 l 2
210 240 197 243 188 249 c 0
176 259 168 275 168 290 c 0
168 307 177 324 192 333 c 0
201 339 209 341 234 341 c 2
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: uni04DF
Encoding: 1247 1247
Width: 600
Flags: W
HStem: -16 100<281 313> 1 166<121 135> 178 100<234.892 313> 350 100<281 313> 477 120<187 201 395 409>
VStem: 136 120<528 544> 188 283<225 235> 344 120<528 544> 396 110<311 317> 417 110<122 129>
Fore
255 278 m 2
286 278 l 2
352 278 356 286 370 291 c 0
386 297 396 306 396 315 c 0
396 333 348 350 297 350 c 0
255 350 222 341 194 321 c 1
189 312 l 2
177 290 163 281 142 281 c 0
127 281 111 289 101 301 c 0
94 311 92 321 92 347 c 2
92 384 l 2
92 430 107 450 139 450 c 0
154 450 163 443 171 424 c 1
210 442 251 450 300 450 c 0
420 450 506 393 506 313 c 0
506 281 491 252 471 235 c 1
471 225 l 1
504 205 527 164 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 342 178 291 178 c 2
249 178 l 2
210 178 188 196 188 228 c 0
188 261 210 279 255 278 c 2
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni04E0
Encoding: 1248 1248
Width: 600
Flags: W
HStem: -14 100<286 318> 1 198<110 115> 240 101<222 304> 497 100<286 318>
VStem: 413 104<418 431> 434 104<153 164>
Fore
234 341 m 2
276 341 l 2
350 341 356 356 376 366 c 0
398 377 413 400 413 421 c 0
413 464 363 497 300 497 c 0
238 497 190 470 181 430 c 0
174 398 174 398 167 390 c 0
159 382 145 376 131 376 c 0
116 376 101 384 91 397 c 0
84 407 82 415 82 443 c 2
82 531 l 2
82 557 83 565 89 574 c 0
97 588 114 597 131 597 c 0
151 597 160 589 170 564 c 1
205 586 249 597 300 597 c 0
424 597 517 521 517 420 c 0
517 363 494 317 461 298 c 1
467 294 473 290 479 285 c 0
519 253 538 212 538 160 c 0
538 56 446 -14 309 -14 c 0
255 -14 202 -1 153 25 c 1
136 5 129 1 113 1 c 0
78 1 62 22 62 67 c 2
62 133 l 2
62 158 64 169 71 179 c 0
81 192 96 199 112 199 c 0
126 199 139 194 148 185 c 0
155 178 155 178 163 151 c 0
173 115 236 86 302 86 c 0
376 86 434 119 434 162 c 0
434 183 420 203 398 215 c 0
377 226 361 240 293 240 c 2
234 240 l 2
210 240 197 243 188 249 c 0
176 259 168 275 168 290 c 0
168 307 177 324 192 333 c 0
201 339 209 341 234 341 c 2
EndSplineSet
MinimumDistance: x18,-1
EndChar
StartChar: uni04E1
Encoding: 1249 1249
Width: 600
Flags: W
HStem: -16 100<281 313> 1 166<121 126> 178 100<234.892 313> 350 100<281 313>
VStem: 188 283<225 235> 396 110<311 317> 417 110<122 129>
Fore
255 278 m 2
286 278 l 2
352 278 356 286 370 291 c 0
386 297 396 306 396 315 c 0
396 333 348 350 297 350 c 0
255 350 222 341 194 321 c 1
189 312 l 2
177 290 163 281 142 281 c 0
127 281 111 289 101 301 c 0
94 311 92 321 92 347 c 2
92 384 l 2
92 430 107 450 139 450 c 0
154 450 163 443 171 424 c 1
210 442 251 450 300 450 c 0
420 450 506 393 506 313 c 0
506 281 491 252 471 235 c 1
471 225 l 1
504 205 527 164 527 125 c 0
527 43 433 -16 304 -16 c 0
247 -16 196 -6 156 13 c 1
145 4 137 1 124 1 c 0
106 1 90 9 80 25 c 0
75 34 73 43 73 67 c 2
73 100 l 2
73 127 75 136 83 146 c 0
93 160 107 167 124 167 c 0
150 167 166 153 175 123 c 1
204 97 246 84 300 84 c 0
364 84 417 104 417 127 c 0
417 140 404 154 383 162 c 0
366 169 342 178 291 178 c 2
249 178 l 2
210 178 188 196 188 228 c 0
188 261 210 279 255 278 c 2
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni04E2
Encoding: 1250 1250
Width: 600
Flags: W
HStem: 0 100<67 92 194 229 373 406 508 533> 483 100<194 229 373 406> 623 80<165 424>
VStem: 41 233<528 535> 93 100<100 141 257 483> 125 350<656 665> 326 233<528 535> 407 100<100 325 441 483>
DStem: 407 441 407 326 193 256 193 141
Fore
407 326 m 1
193 141 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
208 583 l 2
235 583 244 581 253 574 c 0
266 564 274 549 274 533 c 0
274 516 265 499 250 490 c 0
241 485 232 483 208 483 c 2
193 483 l 1
193 256 l 1
407 441 l 1
407 483 l 1
392 483 l 2
366 483 357 485 347 492 c 0
334 502 326 517 326 533 c 0
326 550 335 567 350 576 c 0
359 582 367 583 392 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 326 l 1
178 703 m 2
422 703 l 2
445 703 457 700 464 692 c 0
470 685 475 671 475 663 c 0
475 638 455 623 422 623 c 2
178 623 l 2
153 623 145 625 136 635 c 0
130 643 125 655 125 663 c 0
125 688 144 703 178 703 c 2
EndSplineSet
MinimumDistance: x35,-1
EndChar
StartChar: uni04E3
Encoding: 1251 1251
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.093 399 406 507.031 522.093> 337 99.1444<79 91 193 193 391.955 406.969 508 511> 477 80<175 431>
VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 113 215 337> 125 350<512 519> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 223 325 336>
DStem: 407 325 407 224 192 214 192 113
Fore
192 337 m 1
192 214 l 1
407 325 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 224 l 1
192 113 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
178 557 m 2
422 557 l 2
445 557 457 554 464 546 c 0
470 539 475 525 475 517 c 0
475 492 455 477 422 477 c 2
178 477 l 2
153 477 145 479 136 489 c 0
130 497 125 509 125 517 c 0
125 542 144 557 178 557 c 2
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni04E4
Encoding: 1252 1252
Width: 600
Flags: W
HStem: 0 100<67 92 194 229 373 406 508 533> 483 100<194 229 373 406> 623 120<192 198 394 409>
VStem: 41 233<528 535> 93 100<100 141 257 483> 136 120<681 688> 326 233<528 535> 344 120<681 688> 407 100<100 325 441 483>
DStem: 407 441 407 326 193 256 193 141
Fore
407 326 m 1
193 141 l 1
193 100 l 1
208 100 l 2
234 100 244 98 253 91 c 0
266 81 274 66 274 50 c 0
274 33 265 16 250 7 c 0
242 2 229 0 208 0 c 2
87 0 l 2
63 0 50 3 41 9 c 0
29 19 21 35 21 50 c 0
21 67 30 84 45 93 c 0
54 99 62 100 87 100 c 2
93 100 l 1
93 483 l 1
60 486 41 504 41 533 c 0
41 550 50 567 65 576 c 0
74 582 82 583 107 583 c 2
208 583 l 2
235 583 244 581 253 574 c 0
266 564 274 549 274 533 c 0
274 516 265 499 250 490 c 0
241 485 232 483 208 483 c 2
193 483 l 1
193 256 l 1
407 441 l 1
407 483 l 1
392 483 l 2
366 483 357 485 347 492 c 0
334 502 326 517 326 533 c 0
326 550 335 567 350 576 c 0
359 582 367 583 392 583 c 2
493 583 l 2
520 583 529 581 539 574 c 0
551 564 559 549 559 533 c 0
559 504 540 486 507 483 c 1
507 100 l 1
513 100 l 2
540 100 549 98 558 91 c 0
571 81 579 66 579 50 c 0
579 33 570 16 555 7 c 0
547 2 534 0 513 0 c 2
392 0 l 2
368 0 356 3 347 9 c 0
334 19 326 35 326 50 c 0
326 67 335 84 350 93 c 0
359 99 368 100 392 100 c 2
407 100 l 1
407 326 l 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x35,-1
EndChar
StartChar: uni04E5
Encoding: 1253 1253
Width: 600
Flags: W
HStem: 0 21G<98 187 413 502> 0.144728 99.8553<91 91 192.031 207.325 399 406 507.031 522.093> 337 99.1444<79 91 193 198 391.722 406.969 508 511> 477 120<186 198 399 414>
VStem: 31 222<48 50 50.0314 61.2516 384 389> 92 100<100 113 215 337> 136 120<528 544> 344 120<528 544> 346 222<48 50 50.0314 61.2516 374.748 386> 407 100<100 223 325 336>
DStem: 407 325 407 224 192 214 192 113
Fore
192 337 m 1
192 214 l 1
407 325 l 1
407 336 l 1
368 336 346 354 346 386 c 0
347 419 367 439 412 436 c 1
502 437 l 2
546 437 568 420 568 387 c 0
569 355 546 337 507 337 c 1
507 100 l 1
546 100 569 82 568 50 c 0
568 17 548 -3 502 0 c 1
413 0 l 2
368 0 346 17 346 50 c 0
346 82 368 100 407 100 c 1
407 224 l 1
192 113 l 1
192 100 l 1
231 100 254 82 253 50 c 0
253 17 233 -3 187 0 c 1
98 0 l 2
53 0 31 17 31 50 c 0
31 82 53 100 92 100 c 1
92 337 l 1
53 337 31 355 31 387 c 0
31 420 53 438 98 437 c 2
186 436 l 2
231 435 253 419 253 386 c 0
253 354 231 337 192 337 c 1
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x8,-1
EndChar
StartChar: uni04E6
Encoding: 1254 1254
Width: 600
Flags: W
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 136 120<666.5 699> 344 120<666.5 699> 479 100<234 335>
Ref: 168 N 1 0 0 1 0 89
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni04E7
Encoding: 1255 1255
Width: 600
Flags: W
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 136 120<520.5 553> 344 120<520.5 553> 458 100<179.5 254>
Ref: 168 N 1 0 0 1 0 -57
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni04E8
Encoding: 1256 1256
Width: 600
Flags: W
HStem: -14 100<293 309> 237 100<129 472> 497 100<293 309>
VStem: 21 558<274 306>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
473 237 m 1
128 237 l 1
149 150 218 86 300 86 c 0
381 86 452 151 473 237 c 1
474 337 m 1
456 429 385 497 300 497 c 0
215 497 144 428 125 337 c 1
474 337 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni04E9
Encoding: 1257 1257
Width: 600
Flags: W
HStem: -16 100<282 314> 178 80<150 450> 350 100<282 314>
VStem: 42 516<208 224>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
451 258 m 1
431 312 372 350 302 350 c 0
228 350 169 313 149 258 c 1
451 258 l 1
451 178 m 1
149 178 l 1
168 123 227 84 300 84 c 0
373 84 432 123 451 178 c 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni04EA
Encoding: 1258 1258
Width: 600
Flags: W
HStem: -14 100<293 309> 237 100<129 472> 497 100<293 309> 623 120<185.067 198 393.067 406>
VStem: 21 558<274 306> 136 120<674 690> 344 120<674 690>
Fore
300 597 m 0
367 597 432 570 485 520 c 0
548 460 579 383 579 287 c 0
579 123 452 -14 300 -14 c 0
146 -14 21 123 21 292 c 0
21 460 146 597 300 597 c 0
473 237 m 1
128 237 l 1
149 150 218 86 300 86 c 0
381 86 452 151 473 237 c 1
474 337 m 1
456 429 385 497 300 497 c 0
215 497 144 428 125 337 c 1
474 337 l 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x16,-1
EndChar
StartChar: uni04EB
Encoding: 1259 1259
Width: 600
Flags: W
HStem: -16 100<282 314> 178 80<150 450> 350 100<282 314> 477 120<186 202 394 410>
VStem: 42 516<208 224> 136 120<528 544> 344 120<528 544>
Fore
303 450 m 0
444 450 558 346 558 217 c 0
558 87 444 -16 300 -16 c 0
156 -16 42 87 42 217 c 0
42 349 155 450 303 450 c 0
451 258 m 1
431 312 372 350 302 350 c 0
228 350 169 313 149 258 c 1
451 258 l 1
451 178 m 1
149 178 l 1
168 123 227 84 300 84 c 0
373 84 432 123 451 178 c 1
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x15,-1
EndChar
StartChar: uni04EC
Encoding: 1260 1260
Width: 600
Flags: W
HStem: -14 100<249 293> 241 100<242 463> 367 216<98 102> 497 100<271 306> 623 120<186 206 402 406>
VStem: 136 120<674 690> 184 382<281.534 293> 344 120<674 690>
Fore
466 241 m 1
250 241 l 2
226 241 212 244 204 250 c 0
192 260 184 276 184 291 c 0
184 308 192 325 208 334 c 1
216 340 224 341 250 341 c 2
464 341 l 1
452 432 383 497 290 497 c 0
256 497 220 488 192 473 c 0
164 457 154 444 148 420 c 1
144 396 142 389 134 381 c 0
126 373 112 367 100 367 c 0
84 367 68 375 58 388 c 0
52 397 50 408 50 433 c 2
50 517 l 2
50 542 50 550 56 559 c 0
66 574 82 583 100 583 c 0
116 583 128 577 142 559 c 1
152 563 l 2
208 586 242 597 294 597 c 0
448 597 566 475 566 315 c 2
566 249 l 2
566 97 442 -14 272 -14 c 0
200 -14 132 4 88 36 c 0
54 60 34 86 34 109 c 0
34 136 58 159 84 159 c 0
98 159 110 154 120 143 c 0
148 115 148 115 158 109 c 0
184 94 224 86 268 86 c 0
384 86 461 147 466 241 c 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni04ED
Encoding: 1261 1261
Width: 600
Flags: W
HStem: -16 100<251 302> 157 100<251 445> 350 100<279 316> 477 120<188 204 396 412>
VStem: 136 120<528 544> 192 364<195.748 209> 344 120<528 544>
Fore
446 157 m 1
252 157 l 2
214 157 192 175 192 207 c 0
192 240 214 258 258 257 c 2
448 257 l 1
441 276 430 293 416 307 c 0
388 336 350 350 300 350 c 0
256 350 220 341 194 325 c 0
180 316 174 307 170 289 c 0
166 267 164 261 156 255 c 1
148 247 132 241 120 241 c 0
104 241 88 249 78 262 c 0
72 271 70 281 70 307 c 2
70 384 l 2
70 430 84 450 118 450 c 0
138 450 150 441 156 420 c 1
194 440 242 450 300 450 c 0
450 450 556 350 556 207 c 0
556 146 534 93 494 53 c 0
446 5 384 -16 286 -16 c 0
214 -16 150 -4 108 16 c 1
68 37 44 63 44 89 c 0
44 117 68 140 94 140 c 0
106 140 116 136 124 128 c 1
150 107 156 103 174 97 c 0
198 89 240 84 280 84 c 0
370 84 426 108 446 157 c 1
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x31,-1
EndChar
StartChar: uni04EE
Encoding: 1262 1262
Width: 600
Flags: W
HStem: 0 21G<184 294> 0.957314 99.0427<164 176> 563 20G<86 178 424 514> 623 80<164 426>
VStem: 20 224<528 535> 118 242<48 52> 125 350<656 665> 356 224<528 535>
DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100
Fore
306 100 m 1
340 98 360 80 360 50 c 0
360 33 352 16 336 7 c 0
328 2 316 0 294 0 c 2
184 0 l 2
160 0 148 3 138 9 c 1
126 19 118 34 118 50 c 0
118 81 140 100 176 100 c 1
244 216 l 1
78 483 l 1
42 485 20 503 20 533 c 0
20 560 38 578 66 581 c 0
78 583 80 583 86 583 c 2
178 583 l 2
206 583 214 581 224 574 c 0
236 564 244 549 244 533 c 0
244 511 236 498 206 484 c 1
300 312 l 1
394 484 l 1
366 498 356 511 356 533 c 0
356 548 364 564 378 573 c 1
386 580 402 583 424 583 c 2
514 583 l 2
540 583 548 581 558 574 c 0
572 564 580 549 580 533 c 0
580 502 558 484 522 483 c 1
306 100 l 1
178 703 m 2
422 703 l 2
445 703 457 700 464 692 c 0
470 685 475 671 475 663 c 0
475 638 455 623 422 623 c 2
178 623 l 2
153 623 145 625 136 635 c 0
130 643 125 655 125 663 c 0
125 688 144 703 178 703 c 2
EndSplineSet
MinimumDistance: x24,-1 x19,24 x6,1
EndChar
StartChar: uni04EF
Encoding: 1263 1263
Width: 600
Flags: W
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 477 80<178 422>
Ref: 175 N 1 0 0 1 0 -69
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni04F0
Encoding: 1264 1264
Width: 600
Flags: W
HStem: 0 21G<184 294> 0.957314 99.0427<164 176> 563 20G<86 178 424 514> 623 120<186 206 394 406>
VStem: 20 224<528 535> 118 242<48 52> 136 120<681 688> 344 120<681 688> 356 224<528 535>
DStem: 244 216 522 483 176 100 306 100 394 484 522 483 300 312 306 100
Fore
306 100 m 1
340 98 360 80 360 50 c 0
360 33 352 16 336 7 c 0
328 2 316 0 294 0 c 2
184 0 l 2
160 0 148 3 138 9 c 1
126 19 118 34 118 50 c 0
118 81 140 100 176 100 c 1
244 216 l 1
78 483 l 1
42 485 20 503 20 533 c 0
20 560 38 578 66 581 c 0
78 583 80 583 86 583 c 2
178 583 l 2
206 583 214 581 224 574 c 0
236 564 244 549 244 533 c 0
244 511 236 498 206 484 c 1
300 312 l 1
394 484 l 1
366 498 356 511 356 533 c 0
356 548 364 564 378 573 c 1
386 580 402 583 424 583 c 2
514 583 l 2
540 583 548 581 558 574 c 0
572 564 580 549 580 533 c 0
580 502 558 484 522 483 c 1
306 100 l 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x24,-1 x19,24 x6,1
EndChar
StartChar: uni04F1
Encoding: 1265 1265
Width: 600
Flags: W
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
VStem: 136 120<520.5 553> 344 120<520.5 553>
Ref: 168 N 1 0 0 1 0 -57
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni04F2
Encoding: 1266 1266
Width: 600
Flags: W
HStem: 0 21G<184 294> 0.957314 99.0427<164 176> 563 20G<86 178 424 514>
VStem: 20 224<528 535> 118 242<48 52> 356 224<528 535>
DStem: 244 216 522 483 176 100 306 100 248 806 291 749 146 696 189 639 394 484 522 483 300 312 306 100 412 806 455 749 310 696 353 639
Fore
306 100 m 1
340 98 360 80 360 50 c 0
360 33 352 16 336 7 c 0
328 2 316 0 294 0 c 2
184 0 l 2
160 0 148 3 138 9 c 1
126 19 118 34 118 50 c 0
118 81 140 100 176 100 c 1
244 216 l 1
78 483 l 1
42 485 20 503 20 533 c 0
20 560 38 578 66 581 c 0
78 583 80 583 86 583 c 2
178 583 l 2
206 583 214 581 224 574 c 0
236 564 244 549 244 533 c 0
244 511 236 498 206 484 c 1
300 312 l 1
394 484 l 1
366 498 356 511 356 533 c 0
356 548 364 564 378 573 c 1
386 580 402 583 424 583 c 2
514 583 l 2
540 583 548 581 558 574 c 0
572 564 580 549 580 533 c 0
580 502 558 484 522 483 c 1
306 100 l 1
291 749 m 2
189 639 l 2
180 629 169 623 160 623 c 0
142 623 125 641 125 660 c 0
125 671 126 673 146 696 c 1
248 806 l 2
259 817 266 821 277 821 c 0
295 821 311 804 311 785 c 0
311 774 306 765 291 749 c 2
455 749 m 2
353 639 l 2
343 629 333 623 324 623 c 0
306 623 289 641 289 660 c 0
289 671 290 673 310 696 c 1
412 806 l 2
422 817 430 821 441 821 c 0
459 821 475 804 475 785 c 0
475 774 470 765 455 749 c 2
EndSplineSet
MinimumDistance: x24,-1 x19,24 x6,1
EndChar
StartChar: uni04F3
Encoding: 1267 1267
Width: 600
Flags: W
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
DStem: 248 660 291 603 146 550 189 493 412 660 455 603 310 550 353 493
Ref: 733 N 1 0 0 1 0 -19
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni04F4
Encoding: 1268 1268
Width: 600
Flags: W
HStem: 0 100<358 389 491 502> 170 100<271 294> 483 100<191 214 358 389> 623 120<189 206 393.067 406>
VStem: 38 234<528 535> 90 100<308 483> 136 120<681 688> 308 234<528 535> 344 120<681 688> 390 100<100 207 308 483>
Fore
390 208 m 1
363 185 329 170 284 170 c 0
190 170 96 185 90 305 c 1
90 483 l 1
58 486 38 504 38 533 c 0
38 550 48 567 62 576 c 0
72 582 80 583 104 583 c 2
206 583 l 2
232 583 242 581 250 574 c 0
264 564 272 549 272 533 c 0
272 516 262 499 248 490 c 0
238 485 230 483 206 483 c 2
190 483 l 1
190 308 l 1
202 282 247 270 290 270 c 0
333 270 369 282 390 308 c 1
390 483 l 1
374 483 l 2
348 483 340 485 330 492 c 0
316 502 308 517 308 533 c 0
308 550 318 567 332 576 c 0
342 582 350 583 374 583 c 2
476 583 l 2
502 583 512 581 522 574 c 0
534 564 542 549 542 533 c 0
542 504 522 486 490 483 c 1
490 100 l 1
496 100 l 2
522 100 532 98 540 91 c 0
554 81 562 66 562 50 c 0
562 33 552 16 538 7 c 0
530 2 516 0 496 0 c 2
374 0 l 2
350 0 338 3 330 9 c 0
316 19 308 35 308 50 c 0
308 67 318 84 332 93 c 0
342 99 350 100 374 100 c 2
390 100 l 1
390 208 l 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x25,-1
EndChar
StartChar: uni04F5
Encoding: 1269 1269
Width: 600
Flags: W
HStem: 0 436<395 485> 0.369504 99.6305<385 389 490.031 505.093> 111 97<289 305> 337 99.1444<97 109 211 211 374.907 389.969 491 497> 477 120<193 206 394 406>
VStem: 110 100<251 337> 136 120<528 544> 344 120<528 544> 390 100<100 140 251 336>
Fore
210 337 m 1
210 252 l 2
210 218 260 208 300 208 c 0
340 208 390 231 390 252 c 2
390 336 l 1
351 336 328 354 329 386 c 0
330 419 349 439 395 436 c 1
485 437 l 2
528 437 550 420 551 387 c 0
552 355 529 337 490 337 c 1
490 100 l 1
529 100 552 82 551 50 c 0
550 17 531 -3 485 0 c 1
396 0 l 2
351 0 329 17 329 50 c 0
329 82 351 100 390 100 c 1
390 141 l 1
370 122 339 111 302 111 c 0
202 111 110 135 110 252 c 2
110 337 l 1
71 337 49 355 49 387 c 0
49 420 71 438 116 437 c 2
204 436 l 2
249 435 271 419 271 386 c 0
271 354 249 337 210 337 c 1
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni04F6
Encoding: 1270 1270
Width: 600
EndChar
StartChar: uni04F7
Encoding: 1271 1271
Width: 600
EndChar
StartChar: uni04F8
Encoding: 1272 1272
Width: 600
Flags: W
HStem: 0 100<27 46 148 218 459 460 562 571> 283 100<148 215> 483 100<27 46 148 187 443 460 561.016 579.601> 623 120<187 203 395 411>
VStem: -21 260<528 535> 47 100<101 282 383 483> 136 120<681 688> 311 106<188 194> 344 120<681 688> 461 100<100 483>
Fore
561 483 m 1
561 100 l 1
584 100 595 98 601 91 c 1
615 81 621 66 621 50 c 0
621 17 599 0 555 0 c 2
466 0 l 2
442 0 430 3 422 10 c 1
408 19 400 35 400 50 c 0
400 67 410 84 424 93 c 1
430 100 440 100 461 100 c 1
461 483 l 1
440 483 427 484 422 492 c 1
408 502 400 517 400 533 c 0
400 550 410 567 424 576 c 0
434 582 440 583 466 583 c 2
555 583 l 2
583 583 591 581 601 574 c 0
615 564 621 549 621 533 c 0
621 516 613 499 597 490 c 1
592 485 581 483 561 483 c 1
147 383 m 1
179 383 l 2
273 383 323 366 367 317 c 0
399 282 417 235 417 189 c 0
417 78 327 0 199 0 c 2
45 0 l 2
19 0 11 1 3 7 c 1
-13 16 -21 33 -21 50 c 0
-21 65 -13 81 -1 91 c 1
6 99 24 100 47 100 c 1
47 483 l 1
27 483 8 483 3 490 c 1
-13 499 -21 516 -21 533 c 0
-21 548 -13 564 -1 573 c 0
7 580 21 583 45 583 c 2
173 583 l 2
193 583 207 580 215 576 c 0
229 567 239 550 239 533 c 0
239 517 231 502 217 492 c 0
207 485 199 483 173 483 c 2
147 483 l 1
147 383 l 1
147 100 m 1
199 100 l 2
269 100 311 135 311 192 c 0
311 248 269 283 199 283 c 2
147 283 l 1
147 100 l 1
196 743 m 0
230 743 256 716 256 682 c 0
256 650 229 623 196 623 c 0
163 623 136 650 136 683 c 0
136 716 163 743 196 743 c 0
404 743 m 0
438 743 464 716 464 682 c 0
464 650 437 623 404 623 c 0
371 623 344 650 344 683 c 0
344 716 371 743 404 743 c 0
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni04F9
Encoding: 1273 1273
Width: 600
Flags: W
HStem: 0 100<52 52 153.125 231 456 456 558 558> 180 100<153.125 215> 417 20G<59 147> 477 120<185.067 206 394 408>
VStem: 53 100<101 179 280 337> 136 120<528 544> 292 102<136 145> 344 120<528 544> 406 202<48 50 50.0314 64.4753 371.525 386> 457 100<100 336>
Fore
153 337 m 1
153 280 l 1
206 280 l 2
348 280 392 241 394 143 c 1
392 8 273 0 227 0 c 2
59 0 l 2
13 0 -9 17 -9 50 c 0
-9 82 13 100 53 100 c 1
53 337 l 1
13 337 -9 355 -9 387 c 0
-9 420 11 437 59 437 c 2
147 437 l 2
194 437 213 420 213 387 c 0
213 355 191 337 153 337 c 1
153 100 m 1
259 100 294 97 292 136 c 1
292 180 251 180 153 180 c 1
153 100 l 1
457 336 m 1
418 336 406 354 406 386 c 0
407 419 427 435 472 436 c 2
542 437 l 2
586 438 608 420 608 387 c 0
609 355 596 337 557 337 c 1
557 100 l 1
596 100 609 82 608 50 c 0
608 17 587 0 542 0 c 2
473 0 l 2
428 0 406 17 406 50 c 0
406 82 418 100 457 100 c 1
457 336 l 1
196 597 m 0
230 597 256 570 256 536 c 0
256 504 229 477 196 477 c 0
163 477 136 504 136 537 c 0
136 570 163 597 196 597 c 0
404 597 m 0
438 597 464 570 464 536 c 0
464 504 437 477 404 477 c 0
371 477 344 504 344 537 c 0
344 570 371 597 404 597 c 0
EndSplineSet
MinimumDistance: x21,-1
EndChar
StartChar: afii57799
Encoding: 1456 1456
Width: 0
Flags: W
HStem: -236 58<298 304> -119 59<298 304>
Fore
300 -178 m 0
316 -178 329 -191 329 -207 c 0
329 -223 316 -236 300 -236 c 0
284 -236 271 -223 271 -207 c 0
271 -191 284 -178 300 -178 c 0
300 -60 m 0
316 -60 329 -73 329 -89 c 0
329 -106 316 -119 300 -119 c 0
284 -119 271 -106 271 -89 c 0
271 -73 284 -60 300 -60 c 0
EndSplineSet
EndChar
StartChar: afii57801
Encoding: 1457 1457
Width: 0
Flags: W
HStem: -236 58<239 243 416 426> -119 59<180 186 296 302 416 426>
VStem: 153 59<-93 -87> 212 59<-209 -203> 271 58<-93 -87> 388 59<-209 -203 -93 -87>
Fore
241 -178 m 0
257 -178 271 -191 271 -207 c 0
271 -223 257 -236 241 -236 c 0
225 -236 212 -223 212 -207 c 0
212 -191 225 -178 241 -178 c 0
182 -60 m 0
199 -60 212 -73 212 -89 c 0
212 -106 199 -119 182 -119 c 0
166 -119 153 -106 153 -89 c 0
153 -73 166 -60 182 -60 c 0
418 -178 m 0
434 -178 447 -191 447 -207 c 0
447 -223 434 -236 418 -236 c 0
401 -236 388 -223 388 -207 c 0
388 -191 401 -178 418 -178 c 0
418 -60 m 0
434 -60 447 -73 447 -89 c 0
447 -106 434 -119 418 -119 c 0
401 -119 388 -106 388 -89 c 0
388 -73 401 -60 418 -60 c 0
300 -60 m 0
316 -60 329 -73 329 -89 c 0
329 -106 316 -119 300 -119 c 0
284 -119 271 -106 271 -89 c 0
271 -73 284 -60 300 -60 c 0
EndSplineSet
EndChar
StartChar: afii57800
Encoding: 1458 1458
Width: 0
Flags: W
HStem: -236 58<416 426> -101 41<168 314>
VStem: 388 59<-209 -203 -93 -87>
Fore
174 -60 m 2
308 -60 l 2
320 -60 329 -69 329 -80 c 0
329 -92 320 -101 308 -101 c 2
174 -101 l 2
162 -101 153 -92 153 -80 c 0
153 -69 162 -60 174 -60 c 2
418 -178 m 0
434 -178 447 -191 447 -207 c 0
447 -223 434 -236 418 -236 c 0
401 -236 388 -223 388 -207 c 0
388 -191 401 -178 418 -178 c 0
418 -60 m 0
434 -60 447 -73 447 -89 c 0
447 -106 434 -119 418 -119 c 0
401 -119 388 -106 388 -89 c 0
388 -73 401 -60 418 -60 c 0
EndSplineSet
EndChar
StartChar: afii57802
Encoding: 1459 1459
Width: 0
Flags: W
HStem: -236 58<416 425> -101 41<167 219 259 313>
VStem: 219 41<-207 -101> 388 59<-209 -200 -93 -87>
Fore
219 -101 m 1
173 -101 l 2
162 -101 152 -92 152 -80 c 0
152 -69 162 -60 173 -60 c 2
308 -60 l 2
320 -60 329 -69 329 -80 c 0
329 -92 320 -101 308 -101 c 2
260 -101 l 1
260 -200 l 2
260 -211 251 -220 240 -220 c 0
228 -220 219 -211 219 -200 c 2
219 -101 l 1
418 -178 m 0
434 -178 447 -191 447 -207 c 0
447 -223 434 -236 418 -236 c 0
401 -236 388 -223 388 -207 c 0
388 -191 401 -178 418 -178 c 0
418 -60 m 0
434 -60 447 -73 447 -89 c 0
447 -106 434 -119 418 -119 c 0
401 -119 388 -106 388 -89 c 0
388 -73 401 -60 418 -60 c 0
EndSplineSet
MinimumDistance: y0,8 y0,10 x7,4 x7,6 x0,3 x0,1
EndChar
StartChar: afii57793
Encoding: 1460 1460
Width: 0
Flags: W
Fore
300 -60 m 0
316 -60 329 -73 329 -89 c 0
329 -106 316 -119 300 -119 c 0
284 -119 271 -106 271 -89 c 0
271 -73 284 -60 300 -60 c 0
EndSplineSet
EndChar
StartChar: afii57794
Encoding: 1461 1461
Width: 0
Flags: W
VStem: 212 59<-91 -87> 329 59<-91 -87>
Fore
241 -60 m 0
257 -60 271 -73 271 -89 c 0
271 -106 257 -119 241 -119 c 0
225 -119 212 -106 212 -89 c 0
212 -73 225 -60 241 -60 c 0
359 -60 m 0
375 -60 388 -73 388 -89 c 0
388 -106 375 -119 359 -119 c 0
343 -119 329 -106 329 -89 c 0
329 -73 343 -60 359 -60 c 0
EndSplineSet
EndChar
StartChar: afii57795
Encoding: 1462 1462
Width: 0
Flags: W
HStem: -236 58<298 302> -119 59<239 245 355 361>
VStem: 212 59<-93 -87> 271 58<-209 -203> 329 59<-93 -87>
Fore
300 -178 m 0
316 -178 329 -191 329 -207 c 0
329 -223 316 -236 300 -236 c 0
284 -236 271 -223 271 -207 c 0
271 -191 284 -178 300 -178 c 0
241 -60 m 0
257 -60 271 -73 271 -89 c 0
271 -106 257 -119 241 -119 c 0
225 -119 212 -106 212 -89 c 0
212 -73 225 -60 241 -60 c 0
359 -60 m 0
375 -60 388 -73 388 -89 c 0
388 -106 375 -119 359 -119 c 0
343 -119 329 -106 329 -89 c 0
329 -73 343 -60 359 -60 c 0
EndSplineSet
EndChar
StartChar: afii57798
Encoding: 1463 1463
Width: 0
Flags: W
HStem: -101 41<227 373>
Fore
233 -60 m 2
368 -60 l 2
379 -60 388 -69 388 -80 c 0
388 -92 379 -101 368 -101 c 2
233 -101 l 2
222 -101 212 -92 212 -80 c 0
212 -69 222 -60 233 -60 c 2
EndSplineSet
EndChar
StartChar: afii57797
Encoding: 1464 1464
Width: 0
Flags: W
HStem: -101 41<227 279 319 373>
VStem: 279 41<-205 -101>
Fore
279 -101 m 1
233 -101 l 2
222 -101 212 -92 212 -80 c 0
212 -69 222 -60 233 -60 c 2
368 -60 l 2
380 -60 389 -69 389 -80 c 0
389 -92 380 -101 368 -101 c 2
320 -101 l 1
320 -200 l 2
320 -211 311 -220 300 -220 c 0
288 -220 279 -211 279 -200 c 2
279 -101 l 1
EndSplineSet
MinimumDistance: y0,8 y0,10 x7,4 x7,6 x0,3 x0,1
EndChar
StartChar: afii57806
Encoding: 1465 1465
Width: 0
Flags: W
Fore
0 599 m 0
16 599 29 586 29 569 c 0
29 553 16 540 0 540 c 0
-16 540 -29 553 -29 569 c 0
-29 586 -16 599 0 599 c 0
EndSplineSet
EndChar
StartChar: afii57796
Encoding: 1467 1467
Width: 0
Flags: W
HStem: -236 58<416 426> -178 59<296 302> -119 59<180 186>
VStem: 153 59<-93 -87> 271 58<-150 -146> 388 59<-209 -203>
Fore
300 -119 m 0
316 -119 329 -132 329 -148 c 0
329 -164 316 -178 300 -178 c 0
284 -178 271 -164 271 -148 c 0
271 -132 284 -119 300 -119 c 0
182 -60 m 0
199 -60 212 -73 212 -89 c 0
212 -106 199 -119 182 -119 c 0
166 -119 153 -106 153 -89 c 0
153 -73 166 -60 182 -60 c 0
418 -178 m 0
434 -178 447 -191 447 -207 c 0
447 -223 434 -236 418 -236 c 0
401 -236 388 -223 388 -207 c 0
388 -191 401 -178 418 -178 c 0
EndSplineSet
EndChar
StartChar: afii57807
Encoding: 1468 1468
Width: 0
Flags: W
Fore
300 270 m 0
316 270 329 257 329 241 c 0
329 224 316 211 300 211 c 0
284 211 271 224 271 241 c 0
271 257 284 270 300 270 c 0
EndSplineSet
EndChar
StartChar: afii57839
Encoding: 1469 1469
Width: 0
Flags: W
VStem: 280 40<-221 -75>
Fore
280 -216 m 2
280 -80 l 2
280 -69 289 -60 300 -60 c 0
311 -60 320 -69 320 -80 c 2
320 -216 l 2
320 -227 311 -236 300 -236 c 0
289 -236 280 -227 280 -216 c 2
EndSplineSet
EndChar
StartChar: afii57645
Encoding: 1470 1470
Width: 600
Flags: W
HStem: 380 100<107 492>
Fore
110 480 m 2
490 480 l 2
518 480 540 458 540 430 c 0
540 402 518 380 490 380 c 2
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
EndSplineSet
EndChar
StartChar: afii57841
Encoding: 1471 1471
Width: 0
Flags: W
HStem: 540 41<227 373>
Fore
233 581 m 2
368 581 l 2
379 581 388 572 388 560 c 0
388 549 379 540 368 540 c 2
233 540 l 2
222 540 212 549 212 560 c 0
212 572 222 581 233 581 c 2
EndSplineSet
EndChar
StartChar: afii57842
Encoding: 1472 1472
Width: 600
Flags: W
VStem: 250 100<-106 568>
Fore
350 556 m 2
350 -87 l 2
350 -112 348 -122 341 -132 c 0
331 -145 316 -153 300 -153 c 0
283 -153 267 -144 257 -129 c 0
252 -121 250 -110 250 -87 c 2
250 556 l 2
250 582 252 592 259 602 c 0
269 614 284 622 300 622 c 0
317 622 334 613 343 598 c 0
348 589 350 580 350 556 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: afii57804
Encoding: 1473 1473
Width: 0
Flags: W
Fore
549 599 m 0
565 599 578 586 578 569 c 0
578 553 565 540 549 540 c 0
532 540 519 553 519 569 c 0
519 586 532 599 549 599 c 0
EndSplineSet
EndChar
StartChar: afii57803
Encoding: 1474 1474
Width: 0
Flags: W
Fore
79 599 m 0
95 599 108 586 108 569 c 0
108 553 95 540 79 540 c 0
62 540 49 553 49 569 c 0
49 586 62 599 79 599 c 0
EndSplineSet
EndChar
StartChar: afii57658
Encoding: 1475 1475
Width: 600
Flags: W
HStem: -15 132<288 311> 304 133<288 311>
Fore
309 -15 m 2
291 -15 l 2
255 -15 225 15 225 51 c 0
225 87 255 117 291 117 c 2
309 117 l 2
346 117 375 88 375 51 c 0
375 14 346 -15 309 -15 c 2
309 304 m 2
291 304 l 2
255 304 225 334 225 370 c 0
225 407 255 437 291 437 c 2
309 437 l 2
346 437 375 408 375 370 c 0
375 333 346 304 309 304 c 2
EndSplineSet
EndChar
StartChar: uni05C4
Encoding: 1476 1476
Width: 0
Flags: W
Fore
275 734 m 0
292 734 305 721 305 704 c 0
305 687 292 674 275 674 c 0
258 674 245 687 245 704 c 0
245 721 258 734 275 734 c 0
EndSplineSet
EndChar
StartChar: afii57664
Encoding: 1488 1488
Width: 600
Flags: W
HStem: 0 21G<60 173> 380 100<416.788 440>
VStem: 60 163<47 53> 377 163<419.788 433>
DStem: 75 395 145 465 150 319 374 237 225 244 145 465 455 15 374 237 225 244 448 162 455 15 525 85
Fore
374 237 m 1
421 259 442 278 440 303 c 1
440 380 l 1
427 380 l 2
399 380 377 402 377 430 c 0
377 458 399 480 427 480 c 2
540 480 l 1
540 303 l 1
538 230 495 190 448 162 c 1
525 85 l 2
545 66 545 34 525 15 c 1
506 -5 474 -5 455 15 c 1
225 244 l 1
178 223 159 207 160 177 c 1
160 100 l 1
173 100 l 2
201 100 223 78 223 50 c 0
223 22 201 0 173 0 c 2
60 0 l 1
60 177 l 1
61 250 104 292 150 319 c 1
75 395 l 1
55 414 55 446 75 465 c 1
94 485 126 485 145 465 c 1
374 237 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: afii57665
Encoding: 1489 1489
Width: 600
Flags: W
HStem: 0 100<107 345 444 492> 380 100<107 268>
VStem: 345 100<99 321>
Fore
345 100 m 1
345 303 l 1
344 344 344 344 328 363 c 1
310 379 308 379 268 380 c 2
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
268 480 l 2
308 481 360 474 399 434 c 1
439 396 446 344 445 303 c 1
445 100 l 1
490 100 l 2
518 100 540 78 540 50 c 0
540 22 518 0 490 0 c 2
110 0 l 2
82 0 60 22 60 50 c 0
60 78 82 100 110 100 c 2
345 100 l 1
EndSplineSet
MinimumDistance: x11,-1 x10,13 x10,11 x0,14 x0,16
EndChar
StartChar: afii57666
Encoding: 1490 1490
Width: 600
Flags: W
HStem: 380 100<202 284>
Fore
345 221 m 1
345 303 l 1
343 346 345 343 328 363 c 1
314 377 298 380 268 380 c 2
205 380 l 2
177 380 155 402 155 430 c 0
155 458 177 480 205 480 c 2
268 480 l 2
302 480 356 476 399 434 c 0
438 397 447 346 445 303 c 1
445 183 l 1
475 62 l 1
482 35 466 8 439 1 c 0
412 -5 385 11 378 38 c 1
358 121 l 1
335 117 307 110 293 101 c 0
253 77 249 71 215 22 c 0
199 -1 168 -7 145 9 c 0
122 24 116 55 132 78 c 0
163 125 191 160 244 189 c 0
277 207 316 216 345 221 c 1
EndSplineSet
EndChar
StartChar: afii57667
Encoding: 1491 1491
Width: 600
Flags: W
HStem: 380 100<107 345 444 492>
VStem: 345 100<47 380>
Fore
345 380 m 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
490 480 l 2
518 480 540 458 540 430 c 0
540 402 518 380 490 380 c 2
445 380 l 1
445 50 l 2
445 22 423 0 395 0 c 0
367 0 345 22 345 50 c 2
345 380 l 1
EndSplineSet
MinimumDistance: x4,-1 y0,8 y0,10 x7,4 x7,6 x0,3 x0,1
EndChar
StartChar: afii57668
Encoding: 1492 1492
Width: 600
Flags: W
HStem: 380 100<107 363>
VStem: 95 100<47 224> 440 100<47 321>
Fore
95 50 m 2
95 222 l 2
95 250 117 272 145 272 c 0
172 272 195 250 195 222 c 2
195 50 l 2
195 22 172 0 145 0 c 0
117 0 95 22 95 50 c 2
540 303 m 1
540 50 l 2
540 22 518 0 490 0 c 0
462 0 440 22 440 50 c 2
440 303 l 1
439 344 439 344 423 363 c 1
405 379 401 379 363 380 c 2
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 396 541 344 540 303 c 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: afii57669
Encoding: 1493 1493
Width: 600
Flags: W
HStem: 380 100<197 278>
VStem: 278 100<47 380>
Fore
378 480 m 1
378 50 l 2
378 22 356 0 328 0 c 0
300 0 278 22 278 50 c 2
278 380 l 1
200 380 l 2
172 380 150 402 150 430 c 0
150 458 172 480 200 480 c 2
378 480 l 1
EndSplineSet
MinimumDistance: x0,-1 y4,1 y4,3 x4,7 x4,5
EndChar
StartChar: afii57670
Encoding: 1494 1494
Width: 600
Flags: W
HStem: 380 100<170 250 349 429>
VStem: 250 100<47 380>
Fore
250 380 m 1
173 380 l 2
146 380 123 402 123 430 c 0
123 458 146 480 173 480 c 2
427 480 l 2
454 480 477 458 477 430 c 0
477 402 454 380 427 380 c 2
350 380 l 1
350 50 l 2
350 22 328 0 300 0 c 0
272 0 250 22 250 50 c 2
250 380 l 1
EndSplineSet
MinimumDistance: x4,-1 y0,8 y0,10 x7,4 x7,6 x0,3 x0,1
EndChar
StartChar: afii57671
Encoding: 1495 1495
Width: 600
Flags: W
HStem: 380 100<106 118 258 363>
VStem: 87 100<47 297> 440 100<47 303>
Fore
259 380 m 1
204 325 l 2
189 309 188 305 187 297 c 1
187 50 l 2
187 22 165 0 137 0 c 0
110 0 87 22 87 50 c 2
87 297 l 1
85 340 89 351 108 370 c 2
118 380 l 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 395 541 344 540 303 c 1
540 50 l 2
540 22 518 0 490 0 c 0
462 0 440 22 440 50 c 2
440 303 l 1
439 342 439 345 423 363 c 1
405 379 402 379 363 380 c 2
259 380 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: afii57672
Encoding: 1496 1496
Width: 600
Flags: W
HStem: 0 100<284.063 347> 380 100<91 107 417 424>
VStem: 107 100<176 380> 424 100<176 380>
DStem: 379 480 418 380 244 333 324 273
Fore
418 380 m 1
324 273 l 1
307 251 276 247 254 263 c 0
232 280 227 311 244 333 c 1
379 480 l 1
524 480 l 1
524 177 l 1
525 138 519 86 478 46 c 1
426 -8 366 0 284 0 c 0
244 -1 192 6 154 46 c 1
113 85 106 137 107 177 c 1
107 380 l 1
94 380 l 2
66 380 44 402 44 430 c 0
44 458 66 480 94 480 c 2
207 480 l 1
207 177 l 1
208 139 208 135 224 117 c 1
242 101 245 101 284 100 c 2
347 100 l 2
386 101 389 101 407 117 c 1
423 134 423 140 424 177 c 1
424 380 l 1
418 380 l 1
EndSplineSet
MinimumDistance: x5,-1 x11,14 x11,12
EndChar
StartChar: afii57673
Encoding: 1497 1497
Width: 600
Flags: W
HStem: 380 100<191 266>
VStem: 266 100<237 380>
Fore
366 480 m 1
366 240 l 2
366 212 344 190 316 190 c 0
288 190 266 212 266 240 c 2
266 380 l 1
194 380 l 2
166 380 144 402 144 430 c 0
144 458 166 480 194 480 c 2
366 480 l 1
EndSplineSet
MinimumDistance: x0,-1 y4,1 y4,3 x4,7 x4,5
EndChar
StartChar: afii57674
Encoding: 1498 1498
Width: 600
Flags: W
HStem: 380 100<107 323>
VStem: 400 100<-153 329>
Fore
500 303 m 1
500 -150 l 2
500 -178 478 -200 450 -200 c 0
422 -200 400 -178 400 -150 c 2
400 303 l 1
399 344 399 344 383 363 c 1
365 379 361 379 323 380 c 2
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
323 480 l 2
363 481 415 474 454 434 c 1
494 396 501 344 500 303 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: afii57675
Encoding: 1499 1499
Width: 600
Flags: W
HStem: 0 100<107 322> 380 100<107 322>
VStem: 399 100<176 303>
Fore
322 0 m 2
110 0 l 2
82 0 60 22 60 50 c 0
60 78 82 100 110 100 c 2
322 100 l 2
362 101 363 101 382 117 c 1
397 134 398 140 399 177 c 1
399 303 l 1
398 343 398 344 382 363 c 1
364 379 360 379 322 380 c 2
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
322 480 l 2
362 481 414 474 453 434 c 1
493 396 500 344 499 303 c 1
499 177 l 1
500 138 494 86 453 46 c 1
414 6 363 -1 322 0 c 2
EndSplineSet
MinimumDistance: x15,-1
EndChar
StartChar: afii57676
Encoding: 1500 1500
Width: 600
Flags: W
HStem: 380 100<159 440> 380 249<107 113>
VStem: 60 100<479 581>
DStem: 423 275 494 205 233 85 304 15
Fore
494 205 m 2
304 15 l 2
284 -5 252 -5 233 15 c 1
213 34 213 66 233 85 c 2
423 275 l 2
436 289 439 295 440 303 c 1
440 380 l 1
60 380 l 1
60 579 l 2
60 607 82 629 110 629 c 0
138 629 160 607 160 579 c 2
160 480 l 1
540 480 l 1
540 303 l 1
541 260 514 224 494 205 c 2
EndSplineSet
MinimumDistance: x12,-1 y11,8 y11,10 y13,11 x11,13 x11,12
EndChar
StartChar: afii57677
Encoding: 1501 1501
Width: 600
Flags: W
HStem: 0 100<180 428> 380 100<95 136 276 351>
VStem: 80 100<100 272> 428 100<100 304>
Fore
277 380 m 1
197 300 l 2
180 283 180 279 180 272 c 2
180 100 l 1
428 100 l 1
428 303 l 1
427 340 427 346 411 363 c 1
393 379 389 379 351 380 c 2
277 380 l 1
136 380 m 1
98 380 l 2
70 380 48 402 48 430 c 0
48 458 70 480 98 480 c 2
351 480 l 2
391 481 443 474 482 434 c 1
523 394 529 342 528 303 c 1
528 0 l 1
80 0 l 1
80 272 l 1
77 315 107 352 126 370 c 2
136 380 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: afii57678
Encoding: 1502 1502
Width: 600
Flags: W
HStem: 0 100<336 440> 380 100<72 92 337 364>
VStem: 92 100<47 222 371 380> 440 100<99 303>
DStem: 302 480 338 380 192 371 209 255
Fore
192 371 m 1
302 480 l 1
363 480 l 2
403 481 455 474 494 434 c 1
534 395 541 343 540 303 c 1
540 0 l 1
345 0 l 2
317 0 295 22 295 50 c 0
295 78 317 100 345 100 c 2
440 100 l 1
440 303 l 1
439 341 439 345 423 363 c 1
405 379 401 379 363 380 c 2
338 380 l 1
209 255 l 2
197 243 200 246 195 237 c 0
194 236 195 237 192 222 c 1
192 50 l 2
192 22 169 0 142 0 c 0
114 0 92 22 92 50 c 0
92 380 l 1
75 380 l 2
47 380 25 402 25 430 c 0
25 458 47 480 75 480 c 2
192 480 l 1
192 371 l 1
EndSplineSet
MinimumDistance: x4,-1 y20,17 y20,19 x9,6 x9,8 x20,23 x20,21
EndChar
StartChar: afii57679
Encoding: 1503 1503
Width: 600
Flags: W
HStem: 380 100<197 278>
VStem: 278 100<-153 380>
Fore
378 480 m 1
378 -150 l 2
378 -178 356 -200 328 -200 c 0
300 -200 278 -178 278 -150 c 2
278 380 l 1
200 380 l 2
172 380 150 402 150 430 c 0
150 458 172 480 200 480 c 2
378 480 l 1
EndSplineSet
MinimumDistance: x0,-1 y4,1 y4,3 x4,7 x4,5
EndChar
StartChar: afii57680
Encoding: 1504 1504
Width: 600
Flags: W
HStem: 0 100<170 345> 380 100<234 268>
VStem: 345 100<99 303>
Fore
395 0 m 1
173 0 l 2
146 0 123 22 123 50 c 0
123 78 146 100 173 100 c 2
345 100 l 1
345 303 l 1
344 343 344 345 328 363 c 1
310 379 308 379 268 380 c 2
237 380 l 2
209 380 187 402 187 430 c 0
187 458 209 480 237 480 c 2
268 480 l 2
308 481 360 474 399 434 c 1
439 395 446 344 445 303 c 1
445 50 l 1
445 0 l 1
395 0 l 1
EndSplineSet
MinimumDistance: x13,-1 x4,1 x4,3
EndChar
StartChar: afii57681
Encoding: 1505 1505
Width: 600
Flags: W
HStem: 0 21G<268 384> 380 100<107 148 288 363>
DStem: 423 180 494 110 343 100 384 0
Fore
289 380 m 1
209 300 l 2
196 286 193 280 192 272 c 1
192 177 l 1
193 140 193 134 209 117 c 1
227 101 230 101 268 100 c 2
343 100 l 1
423 180 l 2
436 194 439 200 440 208 c 1
440 303 l 1
439 341 439 345 423 363 c 1
405 379 401 379 363 380 c 2
289 380 l 1
148 380 m 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 395 541 343 540 303 c 1
540 208 l 1
541 165 514 129 494 110 c 2
384 0 l 1
268 0 l 2
228 -1 177 6 138 46 c 1
97 86 91 138 92 177 c 1
92 272 l 1
90 323 122 355 148 380 c 1
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: afii57682
Encoding: 1506 1506
Width: 600
Flags: W
HStem: 0 100<107 209 311.063 332 332.031 357.279> 380 100<107 163 389 433>
DStem: 163 380 247 480 209 100 311 100 433 380 547 480 409 183 508 170
Fore
209 100 m 1
163 380 l 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
247 480 l 1
311 100 l 1
357 100 370 98 391 117 c 0
405 131 403 136 409 183 c 1
433 380 l 1
395 380 l 2
367 380 345 402 345 430 c 0
345 458 367 480 395 480 c 2
547 480 l 1
508 170 l 2
504 139 505 89 462 46 c 0
423 6 372 -1 332 0 c 2
110 0 l 2
82 0 60 22 60 50 c 0
60 78 82 100 110 100 c 2
209 100 l 1
EndSplineSet
MinimumDistance: x13,-1
EndChar
StartChar: afii57683
Encoding: 1507 1507
Width: 600
Flags: W
HStem: 380 100<107 148 288 363>
VStem: 92 100<256 272> 440 100<-153 304>
Fore
289 380 m 1
209 300 l 2
190 280 192 280 192 256 c 1
276 256 l 2
304 256 326 234 326 206 c 0
326 178 304 156 276 156 c 2
92 156 l 1
92 272 l 1
89 323 122 355 148 380 c 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 395 541 343 540 303 c 1
540 -150 l 2
540 -178 518 -200 490 -200 c 0
462 -200 440 -178 440 -150 c 2
440 303 l 1
439 341 439 345 423 363 c 1
405 379 401 379 363 380 c 2
289 380 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: afii57684
Encoding: 1508 1508
Width: 600
Flags: W
HStem: 0 100<102 363> 380 100<102 148 288 363>
VStem: 440 100<176 327>
Fore
199 290 m 1
276 290 l 2
304 290 326 268 326 240 c 0
326 212 304 190 276 190 c 2
92 190 l 1
92 244 86 290 104 325 c 0
116 350 132 364 148 380 c 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 396 541 344 540 303 c 1
540 177 l 1
541 137 534 85 494 46 c 1
455 6 403 -1 363 0 c 2
110 0 l 2
82 0 60 22 60 50 c 0
60 78 82 100 110 100 c 2
363 100 l 2
401 101 405 101 423 117 c 1
439 135 439 139 440 177 c 1
440 303 l 1
439 344 439 344 423 363 c 1
405 379 402 379 363 380 c 2
289 380 l 1
262 353 224 316 199 290 c 1
EndSplineSet
MinimumDistance: x12,-1
EndChar
StartChar: afii57685
Encoding: 1509 1509
Width: 600
Flags: W
HStem: 380 100<107 155 384.788 440>
VStem: 234 100<-153 180>
DStem: 440 373 540 320 300 278 334 180
Fore
300 278 m 1
440 373 l 1
440 380 l 1
395 380 l 2
367 380 345 402 345 430 c 0
345 458 367 480 395 480 c 2
540 480 l 1
540 320 l 1
334 180 l 1
334 -150 l 2
334 -178 312 -200 284 -200 c 0
257 -200 234 -178 234 -150 c 2
234 191 l 1
155 347 l 1
155 380 l 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
255 480 l 1
255 360 l 1
300 278 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: afii57686
Encoding: 1510 1510
Width: 600
Flags: W
HStem: 0 100<95 405> 380 100<95 143 372.788 428>
DStem: 143 320 243 367 405 100 329 295 143 320 407 229 405 100 528 127 428 369 528 319 329 295 407 229
Fore
329 295 m 1
428 369 l 1
428 380 l 1
383 380 l 2
355 380 333 402 333 430 c 0
333 458 355 480 383 480 c 2
528 480 l 1
528 319 l 1
407 229 l 1
528 127 l 1
528 0 l 1
98 0 l 2
70 0 48 22 48 50 c 0
48 78 70 100 98 100 c 2
405 100 l 1
143 320 l 1
143 380 l 1
98 380 l 2
70 380 48 402 48 430 c 0
48 458 70 480 98 480 c 2
243 480 l 1
243 367 l 1
329 295 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: afii57687
Encoding: 1511 1511
Width: 600
Flags: W
HStem: 380 100<97 431>
VStem: 113 100<-153 232> 430 100<225.505 380>
DStem: 416 204 481 129 298 85 369 14
Fore
481 129 m 1
369 14 l 1
349 -5 318 -5 298 14 c 0
278 34 278 65 298 85 c 2
416 204 l 2
429 217 417 202 427 220 c 1
432 232 429 222 430 230 c 1
430 380 l 1
100 380 l 2
72 380 50 402 50 430 c 0
50 458 72 480 100 480 c 2
530 480 l 1
530 230 l 1
531 211 523 188 517 177 c 1
514 166 496 138 481 129 c 1
213 222 m 2
213 -150 l 2
213 -178 191 -200 163 -200 c 0
136 -200 113 -178 113 -150 c 2
113 222 l 2
113 250 136 272 163 272 c 0
191 272 213 250 213 222 c 2
EndSplineSet
MinimumDistance: x11,-1 x7,10 x7,8
EndChar
StartChar: afii57688
Encoding: 1512 1512
Width: 600
Flags: W
HStem: 380 100<107 363>
VStem: 440 100<47 321>
Fore
540 303 m 1
540 50 l 2
540 22 518 0 490 0 c 0
462 0 440 22 440 50 c 2
440 303 l 1
439 344 439 344 423 363 c 1
405 379 401 379 363 380 c 2
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 396 541 344 540 303 c 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: afii57689
Encoding: 1513 1513
Width: 600
Flags: W
HStem: 0 100<151 220 321 354> 380 99.3881<151 153>
VStem: 51 100<100 380> 51 143<417.866 433> 228 163<420.192 433>
DStem: 256 385 356 382 220 100 321 100 456 380 569 480 431 183 531 170
Fore
456 380 m 1
431 183 l 1
425 140 426 135 408 117 c 1
388 101 391 102 354 100 c 2
321 100 l 1
356 382 l 1
376 389 391 408 391 430 c 0
391 458 369 480 341 480 c 0
319 480 298 480 278 480 c 0
250 480 228 458 228 430 c 0
228 410 239 393 256 385 c 1
220 100 l 1
151 100 l 1
151 380 l 1
179 380 194 402 194 430 c 0
194 458 172 480 144 480 c 2
51 480 l 1
51 0 l 1
354 0 l 1
395 -2 443 9 478 45 c 1
520 84 527 133 531 170 c 1
569 480 l 1
467 480 l 2
439 480 417 458 417 430 c 0
417 402 428 380 456 380 c 1
EndSplineSet
MinimumDistance: x21,-1 x9,6
EndChar
StartChar: afii57690
Encoding: 1514 1514
Width: 600
Flags: W
HStem: 0 100<75 111> 380 100<107 155 254 363>
VStem: 155 100<144 380> 440 100<39 321>
Fore
255 380 m 1
255 145 l 1
256 115 250 70 217 38 c 1
185 5 140 -1 110 0 c 2
78 0 l 2
51 0 28 22 28 50 c 0
28 78 51 100 78 100 c 2
110 100 l 2
138 101 135 100 146 109 c 1
155 120 154 117 155 145 c 1
155 380 l 1
110 380 l 2
82 380 60 402 60 430 c 0
60 458 82 480 110 480 c 2
363 480 l 2
403 481 455 474 494 434 c 1
534 396 541 344 540 303 c 1
540 50 l 2
540 22 518 0 490 0 c 0
462 0 440 22 440 50 c 2
440 303 l 1
439 344 439 344 423 363 c 1
405 379 401 379 363 380 c 2
255 380 l 1
EndSplineSet
MinimumDistance: x16,-1 x10,13 x10,11
EndChar
StartChar: afii57716
Encoding: 1520 1520
Width: 600
Flags: W
HStem: 380 100<83 164 355 436>
VStem: 164 100<47 380> 436 100<47 380>
Fore
264 480 m 1
264 50 l 2
264 22 242 0 214 0 c 0
186 0 164 22 164 50 c 2
164 380 l 1
86 380 l 2
58 380 36 402 36 430 c 0
36 458 58 480 86 480 c 2
264 480 l 1
536 480 m 1
536 50 l 2
536 22 514 0 486 0 c 0
458 0 436 22 436 50 c 2
436 380 l 1
358 380 l 2
330 380 308 402 308 430 c 0
308 458 330 480 358 480 c 2
536 480 l 1
EndSplineSet
MinimumDistance: x8,-1 y12,9 y12,11 y4,1 y4,3 x12,15 x12,13 x4,7 x4,5
EndChar
StartChar: afii57717
Encoding: 1521 1521
Width: 600
Flags: W
HStem: 380 100<89 164 347.788 436>
VStem: 164 100<229.788 380> 436 100<47 380>
Fore
536 480 m 1
536 50 l 2
536 22 514 0 486 0 c 0
458 0 436 22 436 50 c 2
436 380 l 1
358 380 l 2
330 380 308 402 308 430 c 0
308 458 330 480 358 480 c 2
536 480 l 1
264 480 m 1
264 240 l 2
264 212 242 190 214 190 c 0
186 190 164 212 164 240 c 2
164 380 l 1
92 380 l 2
64 380 42 402 42 430 c 0
42 458 64 480 92 480 c 2
264 480 l 1
EndSplineSet
MinimumDistance: x0,-1 y12,9 y12,11 y4,1 y4,3 x4,7 x4,5 x12,15 x12,13
EndChar
StartChar: afii57718
Encoding: 1522 1522
Width: 600
Flags: W
HStem: 380 100<89 164 361 436>
VStem: 164 100<237 380> 436 100<237 380>
Fore
264 480 m 1
264 240 l 2
264 212 242 190 214 190 c 0
186 190 164 212 164 240 c 2
164 380 l 1
92 380 l 2
64 380 42 402 42 430 c 0
42 458 64 480 92 480 c 2
264 480 l 1
536 480 m 1
536 240 l 2
536 212 514 190 486 190 c 0
458 190 436 212 436 240 c 2
436 380 l 1
364 380 l 2
336 380 314 402 314 430 c 0
314 458 336 480 364 480 c 2
536 480 l 1
EndSplineSet
MinimumDistance: x8,-1 y12,9 y12,11 y4,1 y4,3 x12,15 x12,13 x4,7 x4,5
EndChar
StartChar: uni05F3
Encoding: 1523 1523
Width: 600
Flags: W
Fore
254 605 m 1
395 605 l 1
314 351 l 2
306 326 298 315 276 315 c 0
255 315 245 325 242 350 c 1
254 605 l 1
EndSplineSet
EndChar
StartChar: uni05F4
Encoding: 1524 1524
Width: 600
Flags: W
Fore
152 605 m 1
293 605 l 1
212 351 l 1
203 326 196 315 174 315 c 0
153 315 143 325 140 350 c 1
152 605 l 1
372 605 m 1
513 605 l 1
432 351 l 2
424 326 416 315 394 315 c 0
373 315 363 325 360 350 c 1
372 605 l 1
EndSplineSet
EndChar
StartChar: uni1E00
Encoding: 7680 7680
Width: 600
HStem: -281 54<281 318.5> -93 53<281 319> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
VStem: 177 53<-178 -142> 370 53<-178.5 -142.5>
Ref: 730 N 1 0 0 1 0 -767
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni1E01
Encoding: 7681 7681
Width: 600
HStem: -297 54<203 240.5> -109 53<203 241> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 99 53<-194 -158> 292 53<-194.5 -158.5> 389 100<135 185 279 304>
Ref: 730 N 1 0 0 1 -78 -783
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni1E02
Encoding: 7682 7682
Width: 600
HStem: 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334> 637 120<281.067 296>
VStem: 94 100<101 241 343 482> 232 120<695 701> 428 100<416 421> 471 100<144 162>
Ref: 729 N 1 0 0 1 -8 103
Ref: 66 N 1 0 0 1 0 0
EndChar
StartChar: uni1E03
Encoding: 7683 7683
Width: 600
HStem: -14 100<295.5 346.5> 351 100<298.5 347> 664 120<271.067 286>
VStem: 74 100<180.5 236.5 401 524 524 524> 222 120<722 728> 471 100<202 235.5>
Ref: 729 N 1 0 0 1 -18 130
Ref: 98 N 1 0 0 1 0 0
EndChar
StartChar: uni1E04
Encoding: 7684 7684
Width: 600
HStem: -160 120<215.067 230> 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334>
VStem: 94 100<101 241 343 482> 166 120<-102 -96> 428 100<416 421> 471 100<144 162>
Ref: 729 N 1 0 0 1 -74 -694
Ref: 66 N 1 0 0 1 0 0
EndChar
StartChar: uni1E05
Encoding: 7685 7685
Width: 600
HStem: -174 120<314.067 329> -14 100<295.5 346.5> 351 100<298.5 347>
VStem: 74 100<180.5 236.5 401 524 524 524> 265 120<-116 -110> 471 100<202 235.5>
Ref: 729 N 1 0 0 1 25 -708
Ref: 98 N 1 0 0 1 0 0
EndChar
StartChar: uni1E06
Encoding: 7686 7686
Width: 600
HStem: -120 80<104 348> 0 100<61 93 195 381> 242 100<195 328> 483 100<61 93 195 334>
VStem: 94 100<101 241 343 482> 428 100<416 421> 471 100<144 162>
Ref: 175 N 1 0 0 1 -74 -666
Ref: 66 N 1 0 0 1 0 0
EndChar
StartChar: uni1E07
Encoding: 7687 7687
Width: 600
HStem: -134 80<203 447> -14 100<295.5 346.5> 351 100<298.5 347>
VStem: 74 100<180.5 236.5 401 524 524 524> 471 100<202 235.5>
Ref: 175 N 1 0 0 1 25 -680
Ref: 98 N 1 0 0 1 0 0
EndChar
StartChar: uni1E08
Encoding: 7688 7688
Width: 600
HStem: -229 70<294 311> -100 186<292 329> 367 216<490 501> 497 100<289 328>
VStem: 33 100<235 331> 267 70<-42 -14> 342 70<-141 -129>
DStem: 424 821 470 765 291 710 337 653
Ref: 180 N 1 0 0 1 18 141
Ref: 199 N 1 0 0 1 0 0
EndChar
StartChar: uni1E09
Encoding: 7689 7689
Width: 600
HStem: -229 70<302.5 322.5> 350 100<285 332.5>
VStem: 54 100<168.5 226> 272 70<-42 -16> 347 70<-142 -123>
DStem: 520 674 566 618 387 563 433 506
Ref: 180 N 1 0 0 1 114 -6
Ref: 231 N 1 0 0 1 0 0
EndChar
StartChar: uni1E0A
Encoding: 7690 7690
Width: 600
HStem: 0 100<68 74 174 284> 483 100<174 174 174 284> 637 120<271.067 286>
VStem: 74 100<100 483> 222 120<695 701> 450 100<261 305>
Ref: 729 N 1 0 0 1 -18 103
Ref: 68 N 1 0 0 1 0 0
EndChar
StartChar: uni1E0B
Encoding: 7691 7691
Width: 600
HStem: -14 100<258 306> 351 100<257 306> 664 120<312.067 327>
VStem: 33 100<202 235.5> 263 120<722 728> 431 100<201 235 401 525 525 525>
Ref: 729 N 1 0 0 1 23 130
Ref: 100 N 1 0 0 1 0 0
EndChar
StartChar: uni1E0C
Encoding: 7692 7692
Width: 600
HStem: -160 120<171.067 186> 0 100<68 74 174 284> 483 100<174 174 174 284>
VStem: 74 100<100 483> 122 120<-102 -96> 450 100<261 305>
Ref: 729 N 1 0 0 1 -118 -694
Ref: 68 N 1 0 0 1 0 0
EndChar
StartChar: uni1E0D
Encoding: 7693 7693
Width: 600
HStem: -174 120<269.067 284> -14 100<258 306> 351 100<257 306>
VStem: 33 100<202 235.5> 220 120<-116 -110> 431 100<201 235 401 525 525 525>
Ref: 729 N 1 0 0 1 -20 -708
Ref: 100 N 1 0 0 1 0 0
EndChar
StartChar: uni1E0E
Encoding: 7694 7694
Width: 600
HStem: -120 80<60 304> 0 100<68 74 174 284> 483 100<174 174 174 284>
VStem: 74 100<100 483> 450 100<261 305>
Ref: 175 N 1 0 0 1 -118 -666
Ref: 68 N 1 0 0 1 0 0
EndChar
StartChar: uni1E0F
Encoding: 7695 7695
Width: 600
HStem: -134 80<158 402> -14 100<258 306> 351 100<257 306>
VStem: 33 100<202 235.5> 431 100<201 235 401 525 525 525>
Ref: 175 N 1 0 0 1 -20 -680
Ref: 100 N 1 0 0 1 0 0
EndChar
StartChar: uni1E10
Encoding: 7696 7696
Width: 600
HStem: -221 70<177.5 197.5> 0 100<68 74 166.5 186 174 284> 483 100<174 174 174 284>
VStem: 74 100<100 483> 147 70<-33 8> 222 70<-134 -115.5> 450 100<261 305>
Ref: 184 N 1 0 0 1 -115 8
Ref: 68 N 1 0 0 1 0 0
EndChar
StartChar: uni1E11
Encoding: 7697 7697
Width: 600
HStem: -235 70<275.5 295.5> -14 100<258 306 264.5 284> 351 100<257 306>
VStem: 33 100<202 235.5> 245 70<-47 -6> 320 70<-148 -129.5> 431 100<201 235 401 525 525 525>
Ref: 184 N 1 0 0 1 -17 -6
Ref: 100 N 1 0 0 1 0 0
EndChar
StartChar: uni1E12
Encoding: 7698 7698
Width: 600
HStem: 0 100<68 74 174 284> 483 100<174 174 174 284>
VStem: 74 100<100 483> 450 100<261 305>
DStem: 183 -129 183 -40 295 -226 334 -169 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226 183 -129 183 -40 295 -226 334 -169 183 -40 183 -129 31 -169 70 -226
Ref: 710 N 1 0 0 1 -118 -736
Ref: 68 N 1 0 0 1 0 0
EndChar
StartChar: uni1E13
Encoding: 7699 7699
Width: 600
HStem: -14 100<258 306> 351 100<257 306>
VStem: 33 100<202 235.5> 431 100<201 235 401 525 525 525>
DStem: 281 -143 281 -54 393 -240 432 -183 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240 281 -143 281 -54 393 -240 432 -183 281 -54 281 -143 129 -183 168 -240
Ref: 710 N 1 0 0 1 -20 -750
Ref: 100 N 1 0 0 1 0 0
EndChar
StartChar: uni1E14
Encoding: 7700 7700
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 689 80<173 435>
VStem: 94 100<101 242 343 482> 125 350<728 736> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 135 937 181 993 268 825 314 882
Ref: 96 N 1 0 0 1 -13 313
Ref: 274 N 1 0 0 1 0 0
EndChar
StartChar: uni1E15
Encoding: 7701 7701
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 546 80<178 422>
DStem: 135 794 181 850 268 682 314 739
Ref: 96 N 1 0 0 1 -13 170
Ref: 275 N 1 0 0 1 0 0
EndChar
StartChar: uni1E16
Encoding: 7702 7702
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 689 80<173 435>
VStem: 94 100<101 242 343 482> 125 350<728 736> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 419 993 465 937 286 882 332 825
Ref: 180 N 1 0 0 1 13 313
Ref: 274 N 1 0 0 1 0 0
EndChar
StartChar: uni1E17
Encoding: 7703 7703
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 546 80<178 422>
DStem: 419 850 465 794 286 739 332 682
Ref: 180 N 1 0 0 1 13 170
Ref: 275 N 1 0 0 1 0 0
EndChar
StartChar: uni1E18
Encoding: 7704 7704
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 315 -129 315 -40 427 -226 466 -169 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226 315 -129 315 -40 427 -226 466 -169 315 -40 315 -129 163 -169 202 -226
Ref: 710 N 1 0 0 1 14 -736
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni1E19
Encoding: 7705 7705
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
DStem: 297 -145 297 -56 409 -242 448 -185 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242 297 -145 297 -56 409 -242 448 -185 297 -56 297 -145 145 -185 184 -242
Ref: 710 N 1 0 0 1 -4 -752
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni1E1A
Encoding: 7706 7706
Width: 600
HStem: -173 69<385 392> -109 69<238 243> 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 732 N 1 0 0 1 14 -696
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni1E1B
Encoding: 7707 7707
Width: 600
HStem: -189 69<368 375> -125 69<221 226> -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
Ref: 732 N 1 0 0 1 -3 -712
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni1E1C
Encoding: 7708 7708
Width: 600
HStem: -221 70<310.5 330.5> 0 100<61 93 195 450 299.5 319> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 637 68<276.5 331.5>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 280 70<-33 8> 355 70<-134 -115.5> 428 100<415 483> 450 100<100 171>
Ref: 728 N 1 0 0 1 4 134
Ref: 552 N 1 0 0 1 0 0
EndChar
StartChar: uni1E1D
Encoding: 7709 7709
Width: 600
HStem: -237 70<292.5 312.5> -16 100<262 329 281.5 301> 172 88<145 439> 350 100<255.5 328.5> 490 68<263.5 318.5>
VStem: 262 70<-49 -8> 337 70<-150 -131.5>
Ref: 728 N 1 0 0 1 -9 -13
Ref: 553 N 1 0 0 1 0 0
EndChar
StartChar: uni1E1E
Encoding: 7710 7710
Width: 600
HStem: 0 100<79 94 194 294> 243 99<194 279> 483 100<79 94 194 194 194 450> 637 120<303.067 318>
VStem: 94 100<100 243 342 483> 254 120<695 701> 450 100<432 483 483 483>
Ref: 729 N 1 0 0 1 14 103
Ref: 70 N 1 0 0 1 0 0
EndChar
StartChar: uni1E1F
Encoding: 7711 7711
Width: 600
HStem: 0 100<141 199 299 438> 337 100<153 199 299 450> 523 100<354.5 398.5> 663 120<381.067 396>
VStem: 199 100<100 337 437 474> 332 120<721 727>
Ref: 729 N 1 0 0 1 92 129
Ref: 102 N 1 0 0 1 0 0
EndChar
StartChar: uni1E20
Encoding: 7712 7712
Width: 600
HStem: -14 100<293.5 349> 180 100<350 450> 497 100<290 344> 637 80<288 532>
VStem: 33 100<246 253 253 317> 450 100<111 180>
Ref: 175 N 1 0 0 1 110 91
Ref: 71 N 1 0 0 1 0 0
EndChar
StartChar: uni1E21
Encoding: 7713 7713
Width: 600
HStem: -205 100<207 316 316 319> -14 100<233 295> 351 100<233 296> 491 80<147 391>
VStem: 33 100<182 255.5> 410 100<-20 35 35 35 181 254.5>
Ref: 175 N 1 0 0 1 -31 -55
Ref: 103 N 1 0 0 1 0 0
EndChar
StartChar: uni1E22
Encoding: 7714 7714
Width: 600
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5> 637 120<291.067 306>
VStem: 95 100<100 241 341 483> 242 120<695 701> 409 100<100 241 241 241 341 483>
Ref: 729 N 1 0 0 1 2 103
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni1E23
Encoding: 7715 7715
Width: 600
HStem: 0 20 350 100<306 336.5> 664 120<134.067 149>
VStem: 85 120<722 728> 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
Ref: 729 N 1 0 0 1 -155 130
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni1E24
Encoding: 7716 7716
Width: 600
HStem: -160 120<291.067 306> 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 242 120<-102 -96> 409 100<100 241 241 241 341 483>
Ref: 729 N 1 0 0 1 2 -694
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni1E25
Encoding: 7717 7717
Width: 600
HStem: -160 120<291.067 306> 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 242 120<-102 -96> 409 100<100 271 271 284>
Ref: 729 N 1 0 0 1 2 -694
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni1E26
Encoding: 7718 7718
Width: 600
HStem: 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 138 120<680.5 713> 346 120<680.5 713> 409 100<100 241 241 241 341 483>
Ref: 168 N 1 0 0 1 2 103
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni1E27
Encoding: 7719 7719
Width: 600
HStem: 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 133 120<707.5 740> 341 120<707.5 740> 409 100<100 271 271 284>
Ref: 168 N 1 0 0 1 -3 130
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni1E28
Encoding: 7720 7720
Width: 600
HStem: -221 70<140.5 160.5> -92 100<129.5 149> 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 110 70<-33 8> 185 70<-134 -115.5> 409 100<100 241 241 241 341 483>
Ref: 184 N 1 0 0 1 -152 8
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni1E29
Encoding: 7721 7721
Width: 600
HStem: -221 70<140.5 160.5> -92 100<129.5 149> 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 110 70<-33 8> 185 70<-134 -115.5> 409 100<100 271 271 284>
Ref: 184 N 1 0 0 1 -152 8
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni1E2A
Encoding: 7722 7722
Width: 600
HStem: -224 68<274.5 329.5> 0 20 241 100<195 409> 563 20<109 210 210 223.5 394 495 495 508.5>
VStem: 95 100<100 241 341 483> 409 100<100 241 241 241 341 483>
Ref: 728 N 1 0 0 1 2 -727
Ref: 72 N 1 0 0 1 0 0
EndChar
StartChar: uni1E2B
Encoding: 7723 7723
Width: 600
HStem: -224 68<274.5 329.5> 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
Ref: 728 N 1 0 0 1 2 -727
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni1E2C
Encoding: 7724 7724
Width: 600
HStem: -173 69<371 378> -109 69<224 229> 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 250 100<100 483>
Ref: 732 N 1 0 0 1 0 -696
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni1E2D
Encoding: 7725 7725
Width: 600
HStem: -173 69<371 378> -109 69<224 229> 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335>
VStem: 218 118<519 622> 250 100<100 337>
Ref: 732 N 1 0 0 1 0 -696
Ref: 105 N 1 0 0 1 0 0
EndChar
StartChar: uni1E2E
Encoding: 7726 7726
Width: 600
HStem: 0 100<131 249 351 467> 483 100<131 249 351 467> 678 120<185.067 198 393.067 406>
VStem: 136 120<736 740> 250 100<100 483> 344 120<736 740>
DStem: 419 1022 465 966 286 911 332 854
Ref: 180 N 1 0 0 1 13 342
Ref: 207 N 1 0 0 1 0 0
EndChar
StartChar: uni1E2F
Encoding: 7727 7727
Width: 600
HStem: 0 100<110 249 350 478> 337 100<158 249> 534 120<171 181 382 389>
VStem: 119 120<592 596> 250 100<100 337> 327 120<592 596>
DStem: 402 878 448 822 269 767 315 710
Ref: 180 N 1 0 0 1 -4 198
Ref: 239 N 1 0 0 1 0 0
EndChar
StartChar: uni1E30
Encoding: 7728 7728
Width: 600
HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483>
DStem: 412 821 458 765 279 710 325 653
Ref: 180 N 1 0 0 1 6 141
Ref: 75 N 1 0 0 1 0 0
EndChar
StartChar: uni1E31
Encoding: 7729 7729
Width: 600
HStem: 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114>
VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52>
DStem: 233 178 311 241 336 87 471 100 284 848 330 792 151 737 197 680 294 350 429 337 215 287 311 241
Ref: 180 N 1 0 0 1 -122 168
Ref: 107 N 1 0 0 1 0 0
EndChar
StartChar: uni1E32
Encoding: 7730 7730
Width: 600
HStem: -160 120<297.067 312> 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483> 248 120<-102 -96>
Ref: 729 N 1 0 0 1 8 -694
Ref: 75 N 1 0 0 1 0 0
EndChar
StartChar: uni1E33
Encoding: 7731 7731
Width: 600
HStem: -160 120<291.067 306> 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114>
VStem: 115 100<100 164 288 524> 242 120<-102 -96> 278 245<384 389> 320 251<48 52>
DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241
Ref: 729 N 1 0 0 1 2 -694
Ref: 107 N 1 0 0 1 0 0
EndChar
StartChar: uni1E34
Encoding: 7732 7732
Width: 600
HStem: -120 80<186 430> 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483>
Ref: 175 N 1 0 0 1 8 -666
Ref: 75 N 1 0 0 1 0 0
EndChar
StartChar: uni1E35
Encoding: 7733 7733
Width: 600
HStem: -120 80<180 424> 0 100<81.7263 114 471 525> 337 100<429 473> 524 100<81 114>
VStem: 115 100<100 164 288 524> 278 245<384 389> 320 251<48 52>
DStem: 233 178 311 241 336 87 471 100 294 350 429 337 215 287 311 241
Ref: 175 N 1 0 0 1 2 -666
Ref: 107 N 1 0 0 1 0 0
EndChar
StartChar: uni1E36
Encoding: 7734 7734
Width: 600
HStem: -160 120<324.067 339> 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 275 120<-102 -96> 471 100<100 192>
Ref: 729 N 1 0 0 1 35 -694
Ref: 76 N 1 0 0 1 0 0
EndChar
StartChar: uni1E37
Encoding: 7735 7735
Width: 600
HStem: -160 120<289.067 304> 0 100<128 250 350 472> 524 100<172 250>
VStem: 240 120<-102 -96> 250 100<100 524 524 524>
Ref: 729 N 1 0 0 1 0 -694
Ref: 108 N 1 0 0 1 0 0
EndChar
StartChar: uni1E38
Encoding: 7736 7736
Width: 600
HStem: -160 120<324.067 339> 0 100<99 156 256 471> 483 100<99 156 256 313 256 256> 637 80<84 328>
VStem: 156 100<100 483> 275 120<-102 -96> 471 100<100 192>
Ref: 175 N 1 0 0 1 -94 91
Ref: 7734 N 1 0 0 1 0 0
EndChar
StartChar: uni1E39
Encoding: 7737 7737
Width: 600
HStem: -160 120<289.067 304> 0 100<128 250 350 472> 524 100<172 250> 664 80<139 383>
VStem: 240 120<-102 -96> 250 100<100 524 524 524>
Ref: 175 N 1 0 0 1 -39 118
Ref: 7735 N 1 0 0 1 0 0
EndChar
StartChar: uni1E3A
Encoding: 7738 7738
Width: 600
HStem: -120 80<213 457> 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 471 100<100 192>
Ref: 175 N 1 0 0 1 35 -666
Ref: 76 N 1 0 0 1 0 0
EndChar
StartChar: uni1E3B
Encoding: 7739 7739
Width: 600
HStem: -120 80<178 422> 0 100<128 250 350 472> 524 100<172 250>
VStem: 250 100<100 524 524 524>
Ref: 175 N 1 0 0 1 0 -666
Ref: 108 N 1 0 0 1 0 0
EndChar
StartChar: uni1E3C
Encoding: 7740 7740
Width: 600
HStem: 0 100<99 156 256 471> 483 100<99 156 256 313 256 256>
VStem: 156 100<100 483> 471 100<100 192>
DStem: 335 -129 335 -40 447 -226 486 -169 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226 335 -129 335 -40 447 -226 486 -169 335 -40 335 -129 183 -169 222 -226
Ref: 710 N 1 0 0 1 34 -736
Ref: 76 N 1 0 0 1 0 0
EndChar
StartChar: uni1E3D
Encoding: 7741 7741
Width: 600
HStem: 0 100<128 250 350 472> 524 100<172 250>
VStem: 250 100<100 524 524 524>
DStem: 301 -129 301 -40 413 -226 452 -169 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226 301 -129 301 -40 413 -226 452 -169 301 -40 301 -129 149 -169 188 -226
Ref: 710 N 1 0 0 1 -0 -736
Ref: 108 N 1 0 0 1 0 0
EndChar
StartChar: uni1E3E
Encoding: 7742 7742
Width: 600
HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548>
VStem: -19 262<48 52> 42 100<100 388> 361 262<48 52> 462 100<100 388>
DStem: 142 389 165 583 260 138 303 286 171 821 217 765 38 710 84 653 438 583 462 389 303 286 351 138
Ref: 180 N 1 0 0 1 -235 141
Ref: 77 N 1 0 0 1 0 0
EndChar
StartChar: uni1E3F
Encoding: 7743 7743
Width: 600
HStem: 0 21<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20<48 141>
VStem: 41 100<100 305> 252 100<100 305> 252 160<48 52> 463 100<100 321> 463 160<48 52>
DStem: 448 674 494 618 315 563 361 506
Ref: 180 N 1 0 0 1 42 -6
Ref: 109 N 1 0 0 1 0 0
EndChar
StartChar: uni1E40
Encoding: 7744 7744
Width: 600
HStem: 0 100<29 41 143 189 413 461 563 573> 563 20<438 548> 637 120<41.0667 56>
VStem: -19 262<48 52> -8 120<695 701> 42 100<100 388> 361 262<48 52> 462 100<100 388>
DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138
Ref: 729 N 1 0 0 1 -248 103
Ref: 77 N 1 0 0 1 0 0
EndChar
StartChar: uni1E41
Encoding: 7745 7745
Width: 600
HStem: 0 21<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20<48 141> 490 120<318.067 333>
VStem: 41 100<100 305> 252 100<100 305> 252 160<48 52> 269 120<548 554> 463 100<100 321> 463 160<48 52>
Ref: 729 N 1 0 0 1 29 -44
Ref: 109 N 1 0 0 1 0 0
EndChar
StartChar: uni1E42
Encoding: 7746 7746
Width: 600
HStem: -160 120<291.067 306> 0 100<29 41 143 189 413 461 563 573> 563 20<438 548>
VStem: -19 262<48 52> 42 100<100 388> 242 120<-102 -96> 361 262<48 52> 462 100<100 388>
DStem: 142 389 165 583 260 138 303 286 438 583 462 389 303 286 351 138
Ref: 729 N 1 0 0 1 2 -694
Ref: 77 N 1 0 0 1 0 0
EndChar
StartChar: uni1E43
Encoding: 7747 7747
Width: 600
HStem: -160 120<291.067 306> 0 21<48 136 252 346 463 557> 0.967046 99.033<28 40 141.031 156.045 352.031 366.367 563 573> 350 100<216 228 427 434> 417 20<48 141>
VStem: 41 100<100 305> 242 120<-102 -96> 252 100<100 305> 252 160<48 52> 463 100<100 321> 463 160<48 52>
Ref: 729 N 1 0 0 1 2 -694
Ref: 109 N 1 0 0 1 0 0
EndChar
StartChar: uni1E44
Encoding: 7748 7748
Width: 600
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5> 637 120<281.067 296>
VStem: 73 100<100 394> 232 120<695 701> 431 100<191 483>
Ref: 729 N 1 0 0 1 -8 103
Ref: 78 N 1 0 0 1 0 0
EndChar
StartChar: uni1E45
Encoding: 7749 7749
Width: 600
HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195> 490 120<286.067 301>
VStem: 95 100<100 282> 237 120<548 554> 410 100<100 288>
Ref: 729 N 1 0 0 1 -3 -44
Ref: 110 N 1 0 0 1 0 0
EndChar
StartChar: uni1E46
Encoding: 7750 7750
Width: 600
HStem: -160 120<294.067 309> 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 245 120<-102 -96> 431 100<191 483>
Ref: 729 N 1 0 0 1 5 -694
Ref: 78 N 1 0 0 1 0 0
EndChar
StartChar: uni1E47
Encoding: 7751 7751
Width: 600
HStem: -160 120<286.067 301> 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195>
VStem: 95 100<100 282> 237 120<-102 -96> 410 100<100 288>
Ref: 729 N 1 0 0 1 -3 -694
Ref: 110 N 1 0 0 1 0 0
EndChar
StartChar: uni1E48
Encoding: 7752 7752
Width: 600
HStem: -120 80<183 427> 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
Ref: 175 N 1 0 0 1 5 -666
Ref: 78 N 1 0 0 1 0 0
EndChar
StartChar: uni1E49
Encoding: 7753 7753
Width: 600
HStem: -120 80<175 419> 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195>
VStem: 95 100<100 282> 410 100<100 288>
Ref: 175 N 1 0 0 1 -3 -666
Ref: 110 N 1 0 0 1 0 0
EndChar
StartChar: uni1E4A
Encoding: 7754 7754
Width: 600
HStem: 0 100<67 73 173 208> 483 100<58 73 396 431 531 539.5>
VStem: 73 100<100 394> 431 100<191 483>
DStem: 305 -129 305 -40 417 -226 456 -169 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226 305 -129 305 -40 417 -226 456 -169 305 -40 305 -129 153 -169 192 -226
Ref: 710 N 1 0 0 1 4 -736
Ref: 78 N 1 0 0 1 0 0
EndChar
StartChar: uni1E4B
Encoding: 7755 7755
Width: 600
HStem: 0 100<71 94 196 215 407 409 510 525.03> 350 100<311 334> 417 20<101 195>
VStem: 95 100<100 282> 410 100<100 288>
DStem: 297 -129 297 -40 409 -226 448 -169 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226 297 -129 297 -40 409 -226 448 -169 297 -40 297 -129 145 -169 184 -226
Ref: 710 N 1 0 0 1 -4 -736
Ref: 110 N 1 0 0 1 0 0
EndChar
StartChar: uni1E4C
Encoding: 7756 7756
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241>
VStem: 21 100<235.5 348> 479 100<234 335>
DStem: 465 1023 511 967 332 912 378 855
Ref: 180 N 1 0 0 1 59 343
Ref: 213 N 1 0 0 1 0 0
EndChar
StartChar: uni1E4D
Encoding: 7757 7757
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241>
VStem: 42 100<179.5 255> 458 100<179.5 254>
DStem: 465 880 511 824 332 769 378 712
Ref: 180 N 1 0 0 1 59 200
Ref: 245 N 1 0 0 1 0 0
EndChar
StartChar: uni1E4E
Encoding: 7758 7758
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 730 69<225 241>
VStem: 21 100<235.5 348> 182 120<882.5 915> 390 120<882.5 915> 479 100<234 335>
Ref: 168 N 1 0 0 1 46 305
Ref: 213 N 1 0 0 1 0 0
EndChar
StartChar: uni1E4F
Encoding: 7759 7759
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 587 69<225 241>
VStem: 42 100<179.5 255> 182 120<739.5 772> 390 120<739.5 772> 458 100<179.5 254>
Ref: 168 N 1 0 0 1 46 162
Ref: 245 N 1 0 0 1 0 0
EndChar
StartChar: uni1E50
Encoding: 7760 7760
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 689 80<178 422>
VStem: 21 100<235.5 348> 479 100<234 335>
DStem: 135 937 181 993 268 825 314 882
Ref: 96 N 1 0 0 1 -13 313
Ref: 332 N 1 0 0 1 0 0
EndChar
StartChar: uni1E51
Encoding: 7761 7761
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 546 80<178 422>
VStem: 42 100<179.5 255> 458 100<179.5 254>
DStem: 135 794 181 850 268 682 314 739
Ref: 96 N 1 0 0 1 -13 170
Ref: 333 N 1 0 0 1 0 0
EndChar
StartChar: uni1E52
Encoding: 7762 7762
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 689 80<178 422>
VStem: 21 100<235.5 348> 479 100<234 335>
DStem: 419 993 465 937 286 882 332 825
Ref: 180 N 1 0 0 1 13 313
Ref: 332 N 1 0 0 1 0 0
EndChar
StartChar: uni1E53
Encoding: 7763 7763
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 546 80<178 422>
VStem: 42 100<179.5 255> 458 100<179.5 254>
DStem: 419 850 465 794 286 739 332 682
Ref: 180 N 1 0 0 1 13 170
Ref: 333 N 1 0 0 1 0 0
EndChar
StartChar: uni1E54
Encoding: 7764 7764
Width: 600
HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194>
VStem: 94 100<100 200 300 483> 423 106<371 419.5>
DStem: 314 821 360 765 181 710 227 653
Ref: 180 N 1 0 0 1 -92 141
Ref: 80 N 1 0 0 1 0 0
EndChar
StartChar: uni1E55
Encoding: 7765 7765
Width: 600
HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5>
VStem: 74 100<-105 66 195.5 247> 471 100<195 246.5>
DStem: 446 674 492 618 313 563 359 506
Ref: 180 N 1 0 0 1 40 -6
Ref: 112 N 1 0 0 1 0 0
EndChar
StartChar: uni1E56
Encoding: 7766 7766
Width: 600
HStem: 0 100<79 94 194 293> 200 100<194 292> 483 100<79 94 194 312 194 194> 637 120<185.067 200>
VStem: 94 100<100 200 300 483> 136 120<695 701> 423 106<371 419.5>
Ref: 729 N 1 0 0 1 -104 103
Ref: 80 N 1 0 0 1 0 0
EndChar
StartChar: uni1E57
Encoding: 7767 7767
Width: 600
HStem: -205 100<58 74 174 232> 10 100<299.5 366> 350 100<302 343.5> 490 120<316.067 331>
VStem: 74 100<-105 66 195.5 247> 267 120<548 554> 471 100<195 246.5>
Ref: 729 N 1 0 0 1 27 -44
Ref: 112 N 1 0 0 1 0 0
EndChar
StartChar: uni1E58
Encoding: 7768 7768
Width: 600
HStem: 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> 637 120<179.067 194>
VStem: 94 100<100 222 322 483> 130 120<695 701> 416 106<383 429.5>
Ref: 729 N 1 0 0 1 -110 103
Ref: 82 N 1 0 0 1 0 0
EndChar
StartChar: uni1E59
Encoding: 7769 7769
Width: 600
HStem: 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> 490 120<301.067 316>
VStem: 178 100<100 247> 252 120<548 554>
Ref: 729 N 1 0 0 1 12 -44
Ref: 114 N 1 0 0 1 0 0
EndChar
StartChar: uni1E5A
Encoding: 7770 7770
Width: 600
HStem: -160 120<305.067 320> 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 256 120<-102 -96> 416 106<383 429.5>
Ref: 729 N 1 0 0 1 16 -694
Ref: 82 N 1 0 0 1 0 0
EndChar
StartChar: uni1E5B
Encoding: 7771 7771
Width: 600
HStem: -160 120<257.067 272> 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447>
VStem: 178 100<100 247> 208 120<-102 -96>
Ref: 729 N 1 0 0 1 -32 -694
Ref: 114 N 1 0 0 1 0 0
EndChar
StartChar: uni1E5C
Encoding: 7772 7772
Width: 600
HStem: -160 120<305.067 320> 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306> 637 80<68 312>
VStem: 94 100<100 222 322 483> 256 120<-102 -96> 416 106<383 429.5>
Ref: 175 N 1 0 0 1 -110 91
Ref: 7770 N 1 0 0 1 0 0
EndChar
StartChar: uni1E5D
Encoding: 7773 7773
Width: 600
HStem: -160 120<257.067 272> 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447> 490 80<323 567>
VStem: 178 100<100 247> 208 120<-102 -96>
Ref: 175 N 1 0 0 1 145 -56
Ref: 7771 N 1 0 0 1 0 0
EndChar
StartChar: uni1E5E
Encoding: 7774 7774
Width: 600
HStem: -120 80<194 438> 0 100<79 94 194 229 540 553> 222 100<194 270 270 290> 483 100<79 94 194 194 194 302 302 306>
VStem: 94 100<100 222 322 483> 416 106<383 429.5>
Ref: 175 N 1 0 0 1 16 -666
Ref: 82 N 1 0 0 1 0 0
EndChar
StartChar: uni1E5F
Encoding: 7775 7775
Width: 600
HStem: -120 80<146 390> 0 100<101 177 279 422> 337 100<134 177> 349 100<438 447>
VStem: 178 100<100 247>
Ref: 175 N 1 0 0 1 -32 -666
Ref: 114 N 1 0 0 1 0 0
EndChar
StartChar: uni1E60
Encoding: 7776 7776
Width: 600
HStem: -14 100<282 339> 497 100<267.5 324.5> 637 120<373.067 388>
VStem: 82 104<410.5 442.5> 324 120<695 701> 434 104<140.5 172.5>
Ref: 729 N 1 0 0 1 84 103
Ref: 83 N 1 0 0 1 0 0
EndChar
StartChar: uni1E61
Encoding: 7777 7777
Width: 600
HStem: -16 100<275.5 332> 350 100<275.5 322> 490 120<367.067 382>
VStem: 92 110<310.5 324> 318 120<548 554> 417 110<115.5 133.5>
Ref: 729 N 1 0 0 1 78 -44
Ref: 115 N 1 0 0 1 0 0
EndChar
StartChar: uni1E62
Encoding: 7778 7778
Width: 600
HStem: -174 120<298.067 313> -14 100<282 339> 497 100<267.5 324.5>
VStem: 82 104<410.5 442.5> 249 120<-116 -110> 434 104<140.5 172.5>
Ref: 729 N 1 0 0 1 9 -708
Ref: 83 N 1 0 0 1 0 0
EndChar
StartChar: uni1E63
Encoding: 7779 7779
Width: 600
HStem: -176 120<293.067 308> -16 100<275.5 332> 350 100<275.5 322>
VStem: 92 110<310.5 324> 244 120<-118 -112> 417 110<115.5 133.5>
Ref: 729 N 1 0 0 1 4 -710
Ref: 115 N 1 0 0 1 0 0
EndChar
StartChar: uni1E64
Encoding: 7780 7780
Width: 600
HStem: -14 100<282 339> 497 100<267.5 324.5> 879 120<427.067 442>
VStem: 82 104<410.5 442.5> 378 120<937 943> 434 104<140.5 172.5>
Ref: 729 N 1 0 0 1 138 345
Ref: 346 N 1 0 0 1 0 0
EndChar
StartChar: uni1E65
Encoding: 7781 7781
Width: 600
HStem: -16 100<275.5 332> 350 100<275.5 322> 736 120<427.067 442>
VStem: 92 110<310.5 324> 378 120<794 800> 417 110<115.5 133.5>
Ref: 729 N 1 0 0 1 138 202
Ref: 347 N 1 0 0 1 0 0
EndChar
StartChar: uni1E66
Encoding: 7782 7782
Width: 600
HStem: -14 100<286 324> 1 198<110 115> 497 100<286 318> 879 120<303.067 318>
VStem: 82 104<418 431> 254 120<937 943> 434 104<153 164>
DStem: 162 748 201 806 314 620 314 709 426 806 465 748 314 709 314 620
Ref: 729 N 1 0 0 1 14 345
Ref: 352 N 1 0 0 1 0 0
EndChar
StartChar: uni1E67
Encoding: 7783 7783
Width: 600
HStem: -16 100<281 314> 1 166<121 135> 350 100<281 314> 736 120<299.067 314>
VStem: 92 110<311 317> 250 120<794 800> 417 110<122 129>
DStem: 158 605 197 662 310 477 310 566 422 662 461 605 310 566 310 477
Ref: 729 N 1 0 0 1 10 202
Ref: 353 N 1 0 0 1 0 0
EndChar
StartChar: uni1E68
Encoding: 7784 7784
Width: 600
HStem: -174 120<298.067 313> -14 100<282 339> 497 100<267.5 324.5> 637 120<373.067 388>
VStem: 82 104<410.5 442.5> 249 120<-116 -110> 324 120<695 701> 434 104<140.5 172.5>
Ref: 729 N 1 0 0 1 84 103
Ref: 7778 N 1 0 0 1 0 0
EndChar
StartChar: uni1E69
Encoding: 7785 7785
Width: 600
HStem: -176 120<293.067 308> -16 100<275.5 332> 350 100<275.5 322> 490 120<367.067 382>
VStem: 92 110<310.5 324> 244 120<-118 -112> 318 120<548 554> 417 110<115.5 133.5>
Ref: 729 N 1 0 0 1 78 -44
Ref: 7779 N 1 0 0 1 0 0
EndChar
StartChar: uni1E6A
Encoding: 7786 7786
Width: 600
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349> 637 120<289.067 304>
VStem: 42 100<390 483> 240 120<695 701> 249 100<100 483> 458 100<390 483 483 483>
Ref: 729 N 1 0 0 1 0 103
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: uni1E6B
Encoding: 7787 7787
Width: 600
HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5> 631 120<153.067 168>
VStem: 104 120<689 695> 114 100<130.5 141 141 337 437 525>
Ref: 729 N 1 0 0 1 -136 97
Ref: 116 N 1 0 0 1 0 0
EndChar
StartChar: uni1E6C
Encoding: 7788 7788
Width: 600
HStem: -160 120<289.067 304> 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 240 120<-102 -96> 249 100<100 483> 458 100<390 483 483 483>
Ref: 729 N 1 0 0 1 -0 -694
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: uni1E6D
Encoding: 7789 7789
Width: 600
HStem: -176 120<288.067 303> -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 114 100<130.5 141 141 337 437 525> 239 120<-118 -112>
Ref: 729 N 1 0 0 1 -1 -710
Ref: 116 N 1 0 0 1 0 0
EndChar
StartChar: uni1E6E
Encoding: 7790 7790
Width: 600
HStem: -120 80<178 422> 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
Ref: 175 N 1 0 0 1 -0 -666
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: uni1E6F
Encoding: 7791 7791
Width: 600
HStem: -136 80<177 421> -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 114 100<130.5 141 141 337 437 525>
Ref: 175 N 1 0 0 1 -1 -682
Ref: 116 N 1 0 0 1 0 0
EndChar
StartChar: uni1E70
Encoding: 7792 7792
Width: 600
HStem: 0 100<184 249 349 415> 483 100<142 249 142 142 349 458 349 349>
VStem: 42 100<390 483> 249 100<100 483> 458 100<390 483 483 483>
DStem: 300 -129 300 -40 412 -226 451 -169 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226 300 -129 300 -40 412 -226 451 -169 300 -40 300 -129 148 -169 187 -226
Ref: 710 N 1 0 0 1 -1 -736
Ref: 84 N 1 0 0 1 0 0
EndChar
StartChar: uni1E71
Encoding: 7793 7793
Width: 600
HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 114 100<130.5 141 141 337 437 525>
DStem: 299 -145 299 -56 411 -242 450 -185 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242 299 -145 299 -56 411 -242 450 -185 299 -56 299 -145 147 -185 186 -242
Ref: 710 N 1 0 0 1 -2 -752
Ref: 116 N 1 0 0 1 0 0
EndChar
StartChar: uni1E72
Encoding: 7794 7794
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 136 120<-130.5 -98> 344 120<-130.5 -98> 429 100<196 205 205 483>
Ref: 168 N 1 0 0 1 0 -708
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni1E73
Encoding: 7795 7795
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 109 120<-129.5 -97> 317 120<-129.5 -97> 410 100<155 337 337 337>
Ref: 168 N 1 0 0 1 -27 -707
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni1E74
Encoding: 7796 7796
Width: 600
HStem: -187 69<371 378> -123 69<224 229> -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
Ref: 732 N 1 0 0 1 0 -710
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni1E75
Encoding: 7797 7797
Width: 600
HStem: -186 69<344 351> -122 69<197 202> -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
Ref: 732 N 1 0 0 1 -27 -709
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni1E76
Encoding: 7798 7798
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 429 100<196 205 205 483>
DStem: 301 -143 301 -54 413 -240 452 -183 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240 301 -143 301 -54 413 -240 452 -183 301 -54 301 -143 149 -183 188 -240
Ref: 710 N 1 0 0 1 -0 -750
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni1E77
Encoding: 7799 7799
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
DStem: 273 -142 273 -53 385 -239 424 -182 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239 273 -142 273 -53 385 -239 424 -182 273 -53 273 -142 121 -182 160 -239
Ref: 710 N 1 0 0 1 -28 -749
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni1E78
Encoding: 7800 7800
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 623 69<371 378> 687 69<224 229>
VStem: 71 100<205 483> 429 100<196 205 205 483>
DStem: 458 980 504 924 325 869 371 812
Ref: 180 N 1 0 0 1 52 300
Ref: 360 N 1 0 0 1 0 0
EndChar
StartChar: uni1E79
Encoding: 7801 7801
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410> 477 69<363 370> 541 69<216 221>
VStem: 95 100<156 159 159 338 338 338> 410 100<155 337 337 337>
DStem: 450 834 496 778 317 723 363 666
Ref: 180 N 1 0 0 1 44 154
Ref: 361 N 1 0 0 1 0 0
EndChar
StartChar: uni1E7A
Encoding: 7802 7802
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 689 80<178 422>
VStem: 71 100<205 483> 136 120<852.5 885> 344 120<852.5 885> 429 100<196 205 205 483>
Ref: 168 N 1 0 0 1 0 275
Ref: 362 N 1 0 0 1 0 0
EndChar
StartChar: uni1E7B
Encoding: 7803 7803
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410> 546 80<178 422>
VStem: 95 100<156 159 159 338 338 338> 136 120<709.5 742> 344 120<709.5 742> 410 100<155 337 337 337>
Ref: 168 N 1 0 0 1 0 132
Ref: 363 N 1 0 0 1 0 0
EndChar
StartChar: uni1E7C
Encoding: 7804 7804
Width: 600
HStem: 0 20 483 100<45 47 159 159 159 178 423 447 553 555 555 563.5> 637 69<371 378> 701 69<224 229>
Ref: 732 N 1 0 0 1 0 114
Ref: 86 N 1 0 0 1 0 0
EndChar
StartChar: uni1E7D
Encoding: 7805 7805
Width: 600
HStem: 0 20 417 20<66 198 198 211 399 534 534 547> 490 69<371 378> 554 69<224 229>
Ref: 732 N 1 0 0 1 0 -33
Ref: 118 N 1 0 0 1 0 0
EndChar
StartChar: uni1E7E
Encoding: 7806 7806
Width: 600
HStem: -160 120<287.067 302> 0 20 483 100<45 47 159 159 159 178 423 447 553 555 555 563.5>
VStem: 238 120<-102 -96>
Ref: 729 N 1 0 0 1 -2 -694
Ref: 86 N 1 0 0 1 0 0
EndChar
StartChar: uni1E7F
Encoding: 7807 7807
Width: 600
HStem: -160 120<288.067 303> 0 20 417 20<66 198 198 211 399 534 534 547>
VStem: 239 120<-102 -96>
Ref: 729 N 1 0 0 1 -1 -694
Ref: 118 N 1 0 0 1 0 0
EndChar
StartChar: Wgrave
Encoding: 7808 7808
Width: 600
HStem: 0 20 483 100<139 139 139 187 413 466>
DStem: 135 765 181 821 268 653 314 710
Ref: 96 N 1 0 0 1 -13 141
Ref: 87 N 1 0 0 1 0 0
EndChar
StartChar: wgrave
Encoding: 7809 7809
Width: 600
HStem: 0 20 417 20<66 158 158 171 441 534 534 547>
DStem: 135 618 181 674 268 506 314 563
Ref: 96 N 1 0 0 1 -13 -6
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: Wacute
Encoding: 7810 7810
Width: 600
HStem: 0 20 483 100<139 139 139 187 413 466>
DStem: 419 821 465 765 286 710 332 653
Ref: 180 N 1 0 0 1 13 141
Ref: 87 N 1 0 0 1 0 0
EndChar
StartChar: wacute
Encoding: 7811 7811
Width: 600
HStem: 0 20 417 20<66 158 158 171 441 534 534 547>
DStem: 419 674 465 618 286 563 332 506
Ref: 180 N 1 0 0 1 13 -6
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: Wdieresis
Encoding: 7812 7812
Width: 600
HStem: 0 20 483 100<139 139 139 187 413 466>
VStem: 136 120<680.5 713> 344 120<680.5 713>
Ref: 168 N 1 0 0 1 0 103
Ref: 87 N 1 0 0 1 0 0
EndChar
StartChar: wdieresis
Encoding: 7813 7813
Width: 600
HStem: 0 20 417 20<66 158 158 171 441 534 534 547>
VStem: 136 120<533.5 566> 344 120<533.5 566>
Ref: 168 N 1 0 0 1 0 -44
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: uni1E86
Encoding: 7814 7814
Width: 600
HStem: 0 20 483 100<139 139 139 187 413 466> 637 120<289.067 304>
VStem: 240 120<695 701>
Ref: 729 N 1 0 0 1 0 103
Ref: 87 N 1 0 0 1 0 0
EndChar
StartChar: uni1E87
Encoding: 7815 7815
Width: 600
HStem: 0 20 417 20<66 158 158 171 441 534 534 547> 490 120<289.067 304>
VStem: 240 120<548 554>
Ref: 729 N 1 0 0 1 0 -44
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: uni1E88
Encoding: 7816 7816
Width: 600
HStem: -160 120<289.067 304> 0 20 483 100<139 139 139 187 413 466>
VStem: 240 120<-102 -96>
Ref: 729 N 1 0 0 1 0 -694
Ref: 87 N 1 0 0 1 0 0
EndChar
StartChar: uni1E89
Encoding: 7817 7817
Width: 600
HStem: -160 120<291.067 306> 0 20 417 20<66 158 158 171 441 534 534 547>
VStem: 242 120<-102 -96>
Ref: 729 N 1 0 0 1 2 -694
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: uni1E8A
Encoding: 7818 7818
Width: 600
HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512> 637 120<287.067 302>
VStem: 10 243<48 52> 19 224<528 535> 238 120<695 701> 347 243<48 52> 355 223<528 535>
DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297
Ref: 729 N 1 0 0 1 -2 103
Ref: 88 N 1 0 0 1 0 0
EndChar
StartChar: uni1E8B
Encoding: 7819 7819
Width: 600
HStem: 0 20 417 20<106 198 198 211 400 491 491 504> 490 120<287.067 302>
VStem: 238 120<548 554>
Ref: 729 N 1 0 0 1 -2 -44
Ref: 120 N 1 0 0 1 0 0
EndChar
StartChar: uni1E8C
Encoding: 7820 7820
Width: 600
HStem: 0 21<76 187 413 524> 0.749951 99.25<58 69> 563 20<85 176 422 512>
VStem: 10 243<48 52> 19 224<528 535> 134 120<680.5 713> 342 120<680.5 713> 347 243<48 52> 355 223<528 535>
DStem: 77 483 205 484 235 298 300 375 235 298 301 220 69 100 199 100 301 220 364 297 402 100 531 100 393 484 521 483 300 375 364 297
Ref: 168 N 1 0 0 1 -2 103
Ref: 88 N 1 0 0 1 0 0
EndChar
StartChar: uni1E8D
Encoding: 7821 7821
Width: 600
HStem: 0 20 417 20<106 198 198 211 400 491 491 504>
VStem: 134 120<533.5 566> 342 120<533.5 566>
Ref: 168 N 1 0 0 1 -2 -44
Ref: 120 N 1 0 0 1 0 0
EndChar
StartChar: uni1E8E
Encoding: 7822 7822
Width: 600
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 637 120<289.067 304>
VStem: 240 120<695 701> 250 100<100 245>
Ref: 729 N 1 0 0 1 0 103
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: uni1E8F
Encoding: 7823 7823
Width: 600
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 120<289.067 304>
VStem: 240 120<548 554>
Ref: 729 N 1 0 0 1 0 -44
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni1E90
Encoding: 7824 7824
Width: 600
HStem: 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
DStem: 301 747 301 836 413 650 452 707 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650
Ref: 710 N 1 0 0 1 -0 140
Ref: 90 N 1 0 0 1 0 0
EndChar
StartChar: uni1E91
Encoding: 7825 7825
Width: 600
HStem: 0 100<244 419> 337 100<197 346 197 197>
DStem: 302 600 302 689 414 503 453 560 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503 302 600 302 689 414 503 453 560 302 689 302 600 150 560 189 503
Ref: 710 N 1 0 0 1 1 -7
Ref: 122 N 1 0 0 1 0 0
EndChar
StartChar: uni1E92
Encoding: 7826 7826
Width: 600
HStem: -160 120<289.067 304> 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 240 120<-102 -96> 427 100<100 172>
Ref: 729 N 1 0 0 1 0 -694
Ref: 90 N 1 0 0 1 0 0
EndChar
StartChar: uni1E93
Encoding: 7827 7827
Width: 600
HStem: -160 120<291.067 306> 0 100<244 419> 337 100<197 346 197 197>
VStem: 242 120<-102 -96>
Ref: 729 N 1 0 0 1 2 -694
Ref: 122 N 1 0 0 1 0 0
EndChar
StartChar: uni1E94
Encoding: 7828 7828
Width: 600
HStem: -120 80<178 422> 0 100<201 427> 483 100<196 375 196 196>
VStem: 96 100<413 483> 427 100<100 172>
Ref: 175 N 1 0 0 1 0 -666
Ref: 90 N 1 0 0 1 0 0
EndChar
StartChar: uni1E95
Encoding: 7829 7829
Width: 600
HStem: -120 80<180 424> 0 100<244 419> 337 100<197 346 197 197>
Ref: 175 N 1 0 0 1 2 -666
Ref: 122 N 1 0 0 1 0 0
EndChar
StartChar: uni1E96
Encoding: 7830 7830
Width: 600
HStem: -120 80<180 424> 0 20 350 100<306 336.5>
VStem: 95 100<100 283 389 524 524 524> 409 100<100 271 271 284>
Ref: 175 N 1 0 0 1 2 -666
Ref: 104 N 1 0 0 1 0 0
EndChar
StartChar: uni1E97
Encoding: 7831 7831
Width: 600
HStem: -16 100<281 325> 337 100<79 114 214 395> 571 20<156 172.5>
VStem: 0 120<674.5 707> 114 100<130.5 141 141 337 437 525> 208 120<674.5 707>
Ref: 168 N 1 0 0 1 -136 97
Ref: 116 N 1 0 0 1 0 0
EndChar
StartChar: uni1E98
Encoding: 7832 7832
Width: 600
HStem: 0 20 417 20<66 158 158 171 441 534 534 547> 490 54<281 318.5> 678 53<281 319>
VStem: 177 53<593 629> 370 53<592.5 628.5>
Ref: 730 N 1 0 0 1 0 4
Ref: 119 N 1 0 0 1 0 0
EndChar
StartChar: uni1E99
Encoding: 7833 7833
Width: 600
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 54<281 318.5> 678 53<281 319>
VStem: 177 53<593 629> 370 53<592.5 628.5>
Ref: 730 N 1 0 0 1 0 4
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni1E9B
Encoding: 7835 7835
Width: 600
HStem: 0 100<123 199 300 443> 337 100<139 199> 523 100<379 395> 663 120<381.067 396>
VStem: 199 100<100 337 437 480> 332 120<721 727>
Ref: 729 N 1 0 0 1 92 129
Ref: 383 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA0
Encoding: 7840 7840
Width: 600
HStem: -160 120<289.067 304> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
VStem: 240 120<-102 -96>
Ref: 729 N 1 0 0 1 0 -694
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA1
Encoding: 7841 7841
Width: 600
HStem: -176 120<211.067 226> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 162 120<-118 -112> 389 100<135 185 279 304>
Ref: 729 N 1 0 0 1 -78 -710
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA2
Encoding: 7842 7842
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 860 53<235 251>
VStem: 123 53<783.668 798> 220 52<663 672> 316 53<781 798>
Ref: 777 N 1 0 0 1 -54 186
Ref: 65 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA3
Encoding: 7843 7843
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 713 53<281 297>
VStem: 42 106<118 128> 169 53<636.668 651> 266 52<516 525> 362 53<634 651> 389 100<135 185 279 304>
Ref: 777 N 1 0 0 1 -8 39
Ref: 97 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA4
Encoding: 7844 7844
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
DStem: 403 1063 449 1007 270 952 316 895
Ref: 180 N 1 0 0 1 -3 383
Ref: 194 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA5
Encoding: 7845 7845
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 409 920 455 864 276 809 322 752
Ref: 180 N 1 0 0 1 3 240
Ref: 226 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA6
Encoding: 7846 7846
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
DStem: 119 1007 165 1063 252 895 298 952
Ref: 96 N 1 0 0 1 -29 383
Ref: 194 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA7
Encoding: 7847 7847
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 125 864 171 920 258 752 304 809 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510
Ref: 96 N 1 0 0 1 -23 240
Ref: 226 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA8
Encoding: 7848 7848
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 1102 53<273 289>
VStem: 161 53<1025.67 1040> 258 52<905 914> 354 53<1023 1040>
Ref: 777 N 1 0 0 1 -16 428
Ref: 194 N 1 0 0 1 0 0
EndChar
StartChar: uni1EA9
Encoding: 7849 7849
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 959 53<279 295>
VStem: 42 106<118 128> 167 53<882.668 897> 264 52<762 771> 360 53<880 897> 389 100<135 185 279 304>
DStem: 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510
Ref: 777 N 1 0 0 1 -10 285
Ref: 226 N 1 0 0 1 0 0
EndChar
StartChar: uni1EAA
Encoding: 7850 7850
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 879 69<355 362> 943 69<208 213>
Ref: 732 N 1 0 0 1 -16 356
Ref: 194 N 1 0 0 1 0 0
EndChar
StartChar: uni1EAB
Encoding: 7851 7851
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 736 69<361 368> 800 69<214 219>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 290 607 290 696 402 510 441 567 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510 290 607 290 696 402 510 441 567 290 696 290 607 138 567 177 510
Ref: 732 N 1 0 0 1 -10 213
Ref: 226 N 1 0 0 1 0 0
EndChar
StartChar: uni1EAC
Encoding: 7852 7852
Width: 600
HStem: -160 120<289.067 304> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201>
VStem: 240 120<-102 -96>
DStem: 247 747 247 836 359 650 398 707 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650 247 747 247 836 359 650 398 707 247 836 247 747 95 707 134 650
Ref: 710 N 1 0 0 1 -54 140
Ref: 7840 N 1 0 0 1 0 0
EndChar
StartChar: uni1EAD
Encoding: 7853 7853
Width: 600
HStem: -176 120<211.067 226> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314>
VStem: 42 106<118 128> 162 120<-118 -112> 389 100<135 185 279 304>
DStem: 293 600 293 689 405 503 444 560 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503 293 600 293 689 405 503 444 560 293 689 293 600 141 560 180 503
Ref: 710 N 1 0 0 1 -8 -7
Ref: 7841 N 1 0 0 1 0 0
EndChar
StartChar: uni1EAE
Encoding: 7854 7854
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5>
DStem: 380 983 426 927 247 872 293 815
Ref: 180 S 1 0 0 1 -26 303
Ref: 258 N 1 0 0 1 0 0
EndChar
StartChar: uni1EAF
Encoding: 7855 7855
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 383 839 429 783 250 728 296 671
Ref: 180 S 1 0 0 1 -23 159
Ref: 259 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB0
Encoding: 7856 7856
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5>
DStem: 165 930 211 986 298 818 344 875
Ref: 96 S 1 0 0 1 17 306
Ref: 258 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB1
Encoding: 7857 7857
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314>
VStem: 42 106<118 128> 389 100<135 185 279 304>
DStem: 171 759 217 815 304 647 350 704
Ref: 96 S 1 0 0 1 23 135
Ref: 259 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB2
Encoding: 7858 7858
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> 992 53<277 293>
VStem: 165 53<915.668 930> 262 52<795 804> 358 53<913 930>
Ref: 777 S 1 0 0 1 -12 318
Ref: 258 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB3
Encoding: 7859 7859
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> 857 53<280 296>
VStem: 42 106<118 128> 168 53<780.668 795> 265 52<660 669> 361 53<778 795> 389 100<135 185 279 304>
Ref: 777 N 1 0 0 1 -9 183
Ref: 259 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB4
Encoding: 7860 7860
Width: 600
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 647 68<272.5 327.5> 871 69<371 378> 935 69<224 229>
Ref: 732 N 1 0 0 1 0 348
Ref: 258 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB5
Encoding: 7861 7861
Width: 600
HStem: -16 100<218 234> 0 100<489 522> 196 92<266 302> 350 100<277 314> 503 68<283 314> 727 69<371 378> 791 69<224 229>
VStem: 42 106<118 128> 389 100<135 185 279 304>
Ref: 732 N 1 0 0 1 0 204
Ref: 259 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB6
Encoding: 7862 7862
Width: 600
HStem: -160 120<289.067 304> 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 637 68<218.5 273.5>
VStem: 240 120<-102 -96>
Ref: 728 N 1 0 0 1 -54 134
Ref: 7840 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB7
Encoding: 7863 7863
Width: 600
HStem: -176 120<211.067 226> -16 100<218 234> 0 100<489 522> 196 92<266 298> 350 100<277 314> 490 68<264.5 319.5>
VStem: 42 106<118 128> 162 120<-118 -112> 389 100<135 185 279 304>
Ref: 728 N 1 0 0 1 -8 -13
Ref: 7841 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB8
Encoding: 7864 7864
Width: 600
HStem: -160 120<303.067 318> 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 254 120<-102 -96> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 729 N 1 0 0 1 14 -694
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni1EB9
Encoding: 7865 7865
Width: 600
HStem: -176 120<286.067 301> -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
VStem: 237 120<-118 -112>
Ref: 729 N 1 0 0 1 -3 -710
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni1EBA
Encoding: 7866 7866
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 860 53<292.5 308.5>
VStem: 94 100<101 242 343 482> 180.5 53<783.668 798> 277.5 52<663 672> 279 99<218 242 343 369> 373.5 53<781 798> 428 100<415 483> 450 100<100 171>
Ref: 777 N 1 0 0 1 3.5 186
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni1EBB
Encoding: 7867 7867
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 713 53<280 296>
VStem: 168 53<636.668 651> 265 52<516 525> 361 53<634 651>
Ref: 777 N 1 0 0 1 -9 39
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni1EBC
Encoding: 7868 7868
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 637 69<375 382> 701 69<228 233>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
Ref: 732 N 1 0 0 1 4 114
Ref: 69 N 1 0 0 1 0 0
EndChar
StartChar: uni1EBD
Encoding: 7869 7869
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 490 69<362 369> 554 69<215 220>
Ref: 732 N 1 0 0 1 -9 -33
Ref: 101 N 1 0 0 1 0 0
EndChar
StartChar: uni1EBE
Encoding: 7870 7870
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 411 1063 457 1007 278 952 324 895
Ref: 180 N 1 0 0 1 5 383
Ref: 202 N 1 0 0 1 0 0
EndChar
StartChar: uni1EBF
Encoding: 7871 7871
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
DStem: 424 920 470 864 291 809 337 752
Ref: 180 N 1 0 0 1 18 240
Ref: 234 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC0
Encoding: 7872 7872
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 127 1007 173 1063 260 895 306 952 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653
Ref: 96 N 1 0 0 1 -21 383
Ref: 202 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC1
Encoding: 7873 7873
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
DStem: 140 864 186 920 273 752 319 809
Ref: 96 N 1 0 0 1 -8 240
Ref: 234 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC2
Encoding: 7874 7874
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 1102 53<281 297>
VStem: 94 100<101 242 343 482> 169 53<1025.67 1040> 266 52<905 914> 279 99<218 242 343 369> 362 53<1023 1040> 428 100<415 483> 450 100<100 171>
DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653
Ref: 777 N 1 0 0 1 -8 428
Ref: 202 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC3
Encoding: 7875 7875
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 959 53<294 310>
VStem: 182 53<882.668 897> 279 52<762 771> 375 53<880 897>
Ref: 777 N 1 0 0 1 5 285
Ref: 234 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC4
Encoding: 7876 7876
Width: 600
HStem: 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428> 879 69<363 370> 943 69<216 221>
VStem: 94 100<101 242 343 482> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653 292 750 292 839 404 653 443 711 292 839 292 750 140 711 179 653
Ref: 732 N 1 0 0 1 -8 356
Ref: 202 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC5
Encoding: 7877 7877
Width: 600
HStem: -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5> 736 69<376 383> 800 69<229 234>
Ref: 732 N 1 0 0 1 5 213
Ref: 234 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC6
Encoding: 7878 7878
Width: 600
HStem: -160 120<303.067 318> 0 100<61 93 195 450> 0 219<493 509> 243 99<195 279> 483 100<61 93 195 428>
VStem: 94 100<101 242 343 482> 254 120<-102 -96> 279 99<218 242 343 369> 428 100<415 483> 450 100<100 171>
DStem: 304 747 304 836 416 650 455 707 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650 304 747 304 836 416 650 455 707 304 836 304 747 152 707 191 650
Ref: 710 N 1 0 0 1 3 140
Ref: 7864 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC7
Encoding: 7879 7879
Width: 600
HStem: -176 120<286.067 301> -16 100<262 329> 172 88<145 439> 350 100<255.5 328.5>
VStem: 237 120<-118 -112>
DStem: 291 600 291 689 403 503 442 560 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503 291 600 291 689 403 503 442 560 291 689 291 600 139 560 178 503
Ref: 710 N 1 0 0 1 -10 -7
Ref: 7865 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC8
Encoding: 7880 7880
Width: 600
HStem: 0 100<149 250 350 451> 483 100<149 250 350 451 350 350> 860 53<289 305>
VStem: 177 53<783.668 798> 250 100<100 483> 274 52<663 672> 370 53<781 798>
Ref: 777 N 1 0 0 1 0 186
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni1EC9
Encoding: 7881 7881
Width: 600
HStem: 0 100<128 250 350 472> 337 100<172 250> 713 53<289 305>
VStem: 177 53<636.668 651> 250 100<100 337 337 337> 274 52<516 525> 370 53<634 651>
Ref: 777 S 1 0 0 1 0 39
Ref: 305 N 1 0 0 1 0 0
EndChar
StartChar: uni1ECA
Encoding: 7882 7882
Width: 600
HStem: -160 120<289.067 304> 0 100<149 250 350 451> 483 100<149 250 350 451 350 350>
VStem: 240 120<-102 -96> 250 100<100 483>
Ref: 729 N 1 0 0 1 0 -694
Ref: 73 N 1 0 0 1 0 0
EndChar
StartChar: uni1ECB
Encoding: 7883 7883
Width: 600
HStem: -160 120<289.067 304> 0 100<110 249 350 478> 337 100<158 249> 518 105<219 335>
VStem: 218 118<519 622> 240 120<-102 -96> 250 100<100 337>
Ref: 729 N 1 0 0 1 0 -694
Ref: 105 N 1 0 0 1 0 0
EndChar
StartChar: uni1ECC
Encoding: 7884 7884
Width: 600
HStem: -174 120<289.067 304> -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 240 120<-116 -110> 479 100<234 335>
Ref: 729 N 1 0 0 1 0 -708
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni1ECD
Encoding: 7885 7885
Width: 600
HStem: -176 120<289.067 304> -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 240 120<-118 -112> 458 100<179.5 254>
Ref: 729 N 1 0 0 1 0 -710
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni1ECE
Encoding: 7886 7886
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 860 53<289 305>
VStem: 21 100<235.5 348> 177 53<783.668 798> 274 52<663 672> 370 53<781 798> 479 100<234 335>
Ref: 777 N 1 0 0 1 0 186
Ref: 79 N 1 0 0 1 0 0
EndChar
StartChar: uni1ECF
Encoding: 7887 7887
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 713 53<292 308>
VStem: 42 100<179.5 255> 180 53<636.668 651> 277 52<516 525> 373 53<634 651> 458 100<179.5 254>
Ref: 777 N 1 0 0 1 3 39
Ref: 111 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED0
Encoding: 7888 7888
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
DStem: 419 1063 465 1007 286 952 332 895
Ref: 180 N 1 0 0 1 13 383
Ref: 212 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED1
Encoding: 7889 7889
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
DStem: 419 920 465 864 286 809 332 752
Ref: 180 N 1 0 0 1 13 240
Ref: 244 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED2
Encoding: 7890 7890
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 479 100<234 335>
DStem: 135 1007 181 1063 268 895 314 952
Ref: 96 N 1 0 0 1 -13 383
Ref: 212 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED3
Encoding: 7891 7891
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 458 100<179.5 254>
DStem: 135 864 181 920 268 752 314 809
Ref: 96 N 1 0 0 1 -13 240
Ref: 244 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED4
Encoding: 7892 7892
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 1102 53<289 305>
VStem: 21 100<235.5 348> 177 53<1025.67 1040> 274 52<905 914> 370 53<1023 1040> 479 100<234 335>
Ref: 777 N 1 0 0 1 0 428
Ref: 212 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED5
Encoding: 7893 7893
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 959 53<289 305>
VStem: 42 100<179.5 255> 177 53<882.668 897> 274 52<762 771> 370 53<880 897> 458 100<179.5 254>
Ref: 777 N 1 0 0 1 0 285
Ref: 244 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED6
Encoding: 7894 7894
Width: 600
HStem: -14 100<251 348.5> 497 100<251 333.5> 879 69<371 378> 943 69<224 229>
VStem: 21 100<235.5 348> 479 100<234 335>
Ref: 732 N 1 0 0 1 0 356
Ref: 212 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED7
Encoding: 7895 7895
Width: 600
HStem: -16 100<255.5 344.5> 350 100<256.5 345.5> 736 69<371 378> 800 69<224 229>
VStem: 42 100<179.5 255> 458 100<179.5 254>
Ref: 732 N 1 0 0 1 0 213
Ref: 244 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED8
Encoding: 7896 7896
Width: 600
HStem: -174 120<289.067 304> -14 100<251 348.5> 497 100<251 333.5>
VStem: 21 100<235.5 348> 240 120<-116 -110> 479 100<234 335>
DStem: 301 747 301 836 413 650 452 707 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650 301 747 301 836 413 650 452 707 301 836 301 747 149 707 188 650
Ref: 710 N 1 0 0 1 -0 140
Ref: 7884 N 1 0 0 1 0 0
EndChar
StartChar: uni1ED9
Encoding: 7897 7897
Width: 600
HStem: -176 120<289.067 304> -16 100<255.5 344.5> 350 100<256.5 345.5>
VStem: 42 100<179.5 255> 240 120<-118 -112> 458 100<179.5 254>
DStem: 303 600 303 689 415 503 454 560 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503 303 600 303 689 415 503 454 560 303 689 303 600 151 560 190 503
Ref: 710 N 1 0 0 1 2 -7
Ref: 7885 N 1 0 0 1 0 0
EndChar
StartChar: uni1EDA
Encoding: 7898 7898
Width: 600
HStem: -14 100<293 309> 497 100<293 309>
VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562>
DStem: 369.644 824.719 415.644 768.719 236.644 713.719 282.644 656.719
Ref: 180 N 1 0 0 1 -36.3555 144.719
Ref: 416 N 1 0 0 1 0 0
EndChar
StartChar: uni1EDB
Encoding: 7899 7899
Width: 600
HStem: -16 100<282 314> 350 100<282 314>
VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417>
DStem: 398.644 671.719 444.644 615.719 265.644 560.719 311.644 503.719
Ref: 180 S 1 0 0 1 -7.35553 -8.28064
Ref: 417 N 1 0 0 1 0 0
EndChar
StartChar: uni1EDC
Encoding: 7900 7900
Width: 600
HStem: -14 100<293 309> 497 100<293 309>
VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562>
DStem: 184.644 768.719 230.644 824.719 317.644 656.719 363.644 713.719
Ref: 96 S 1 0 0 1 36.6445 144.719
Ref: 416 N 1 0 0 1 0 0
EndChar
StartChar: uni1EDD
Encoding: 7901 7901
Width: 600
HStem: -16 100<282 314> 350 100<282 314>
VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417>
DStem: 172.644 613.719 218.644 669.719 305.644 501.719 351.644 558.719
Ref: 96 S 1 0 0 1 24.6445 -10.2806
Ref: 417 N 1 0 0 1 0 0
EndChar
StartChar: uni1EDE
Encoding: 7902 7902
Width: 600
HStem: -14 100<293 309> 497 100<293 309> 872.719 53<293.644 309.644>
VStem: 21 100<274 306> 181.644 53<796.387 810.719> 278.644 52<675.719 684.719> 374.644 53<793.719 810.719> 479 100<274 306> 501 100<558 562>
Ref: 777 S 1 0 0 1 4.64447 198.719
Ref: 416 N 1 0 0 1 0 0
EndChar
StartChar: uni1EDF
Encoding: 7903 7903
Width: 600
HStem: -16 100<282 314> 350 100<282 314> 719.719 53<298.644 314.644>
VStem: 42 100<208 224> 186.644 53<643.387 657.719> 283.644 52<522.719 531.719> 379.644 53<640.719 657.719> 458 100<208 224> 503 100<414 417>
Ref: 777 S 1 0 0 1 9.64447 45.7194
Ref: 417 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE0
Encoding: 7904 7904
Width: 600
HStem: -14 100<293 309> 497 100<293 309> 664.719 69<363.644 370.644> 728.719 69<216.644 221.644>
VStem: 21 100<274 306> 479 100<274 306> 501 100<558 562>
Ref: 732 S 1 0 0 1 -7.35553 141.719
Ref: 416 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE1
Encoding: 7905 7905
Width: 600
HStem: -16 100<282 314> 350 100<282 314> 511.719 69<366.644 373.644> 575.719 69<219.644 224.644>
VStem: 42 100<208 224> 458 100<208 224> 503 100<414 417>
Ref: 732 S 1 0 0 1 -4.35553 -11.2806
Ref: 417 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE2
Encoding: 7906 7906
Width: 600
HStem: -174 120<289.067 304> -14 100<293 309> 497 100<293 309>
VStem: 21 100<274 306> 240 120<-116 -110> 479 100<274 306> 501 100<558 562>
Ref: 729 N 1 0 0 1 0 -708
Ref: 416 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE3
Encoding: 7907 7907
Width: 600
HStem: -176 120<289.067 304> -16 100<282 314> 350 100<282 314>
VStem: 42 100<208 224> 240 120<-118 -112> 458 100<208 224> 503 100<414 417>
Ref: 729 N 1 0 0 1 0 -710
Ref: 417 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE4
Encoding: 7908 7908
Width: 600
HStem: -174 120<289.067 304> -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5>
VStem: 71 100<205 483> 240 120<-116 -110> 429 100<196 205 205 483>
Ref: 729 N 1 0 0 1 0 -708
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE5
Encoding: 7909 7909
Width: 600
HStem: -173 120<262.067 277> -13 100<253 300.5> 337 100<375 410>
VStem: 95 100<156 159 159 338 338 338> 213 120<-115 -109> 410 100<155 337 337 337>
Ref: 729 N 1 0 0 1 -27 -707
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE6
Encoding: 7910 7910
Width: 600
HStem: -14 100<273 327.5> 483 100<171 171 171 206 394 429 529 537.5> 860 53<289 305>
VStem: 71 100<205 483> 177 53<783.668 798> 274 52<663 672> 370 53<781 798> 429 100<196 205 205 483>
Ref: 777 N 1 0 0 1 0 186
Ref: 85 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE7
Encoding: 7911 7911
Width: 600
HStem: -13 100<253 300.5> 337 100<375 410> 713 53<283.5 299.5>
VStem: 95 100<156 159 159 338 338 338> 171.5 53<636.668 651> 268.5 52<516 525> 364.5 53<634 651> 410 100<155 337 337 337>
Ref: 777 N 1 0 0 1 -5.5 39
Ref: 117 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE8
Encoding: 7912 7912
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428>
VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594>
DStem: 386.645 827.719 432.645 771.719 253.645 716.719 299.645 659.719
Ref: 180 S 1 0 0 1 -19.3555 147.719
Ref: 431 N 1 0 0 1 0 0
EndChar
StartChar: uni1EE9
Encoding: 7913 7913
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885>
VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451>
DStem: 376.644 694.719 422.644 638.719 243.644 583.719 289.644 526.719
Ref: 180 S 1 0 0 1 -29.3555 14.7194
Ref: 432 N 1 0 0 1 0 0
EndChar
StartChar: uni1EEA
Encoding: 7914 7914
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428>
VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594>
DStem: 174.645 762.719 220.645 818.719 307.645 650.719 353.645 707.719
Ref: 96 S 1 0 0 1 26.6445 138.719
Ref: 431 N 1 0 0 1 0 0
EndChar
StartChar: uni1EEB
Encoding: 7915 7915
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885>
VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451>
DStem: 146.644 622.719 192.644 678.719 279.644 510.719 325.644 567.719
Ref: 96 S 1 0 0 1 -1.35553 -1.28064
Ref: 432 N 1 0 0 1 0 0
EndChar
StartChar: uni1EEC
Encoding: 7916 7916
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428> 848.719 53<292.644 308.644>
VStem: 10 262<530 535> 71 100<194 483> 180.644 53<772.387 786.719> 277.644 52<651.719 660.719> 373.644 53<769.719 786.719> 429 100<194 483> 569 100<591 594>
Ref: 777 S 1 0 0 1 3.64447 174.719
Ref: 431 N 1 0 0 1 0 0
EndChar
StartChar: uni1EED
Encoding: 7917 7917
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> 696.719 53<260.644 276.644>
VStem: 95 100<147 337> 148.644 53<620.387 634.719> 245.644 52<499.719 508.719> 341.644 53<617.719 634.719> 410 100<155 337> 555 100<445 451>
Ref: 777 S 1 0 0 1 -28.3555 22.7194
Ref: 432 N 1 0 0 1 0 0
EndChar
StartChar: uni1EEE
Encoding: 7918 7918
Width: 600
HStem: -14 100<282.431 314> 483 100<172 218 378 428> 664.719 69<380.644 387.644> 728.719 69<233.644 238.644>
VStem: 10 262<530 535> 71 100<194 483> 429 100<194 483> 569 100<591 594>
Ref: 732 S 1 0 0 1 9.64447 141.719
Ref: 431 N 1 0 0 1 0 0
EndChar
StartChar: uni1EEF
Encoding: 7919 7919
Width: 600
HStem: -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885> 528.719 69<368.644 375.644> 592.719 69<221.644 226.644>
VStem: 95 100<147 337> 410 100<155 337> 555 100<445 451>
Ref: 732 S 1 0 0 1 -2.35553 5.71936
Ref: 432 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF0
Encoding: 7920 7920
Width: 600
HStem: -174 120<289.067 304> -14 100<282.431 314> 483 100<172 218 378 428>
VStem: 10 262<530 535> 71 100<194 483> 240 120<-116 -110> 429 100<194 483> 569 100<591 594>
Ref: 729 N 1 0 0 1 0 -708
Ref: 431 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF1
Encoding: 7921 7921
Width: 600
HStem: -173 120<262.067 277> -13 100<269 285> 0 21<410 505> 0.0596637 99.9403<510.031 525.045> 337 100<61 95 349.509 409 510.062 530.885>
VStem: 95 100<147 337> 213 120<-115 -109> 410 100<155 337> 555 100<445 451>
Ref: 729 N 1 0 0 1 -27 -707
Ref: 432 N 1 0 0 1 0 0
EndChar
StartChar: Ygrave
Encoding: 7922 7922
Width: 600
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 250 100<100 245>
DStem: 136 765 182 821 269 653 315 710
Ref: 96 N 1 0 0 1 -12 141
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: ygrave
Encoding: 7923 7923
Width: 600
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
DStem: 135 618 181 674 268 506 314 563
Ref: 96 N 1 0 0 1 -13 -6
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF4
Encoding: 7924 7924
Width: 600
HStem: -160 120<289.067 304> 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5>
VStem: 240 120<-102 -96> 250 100<100 245>
Ref: 729 N 1 0 0 1 0 -694
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF5
Encoding: 7925 7925
Width: 600
HStem: -365 120<183.067 198> -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526>
VStem: 134 120<-307 -301>
Ref: 729 N 1 0 0 1 -106 -899
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF6
Encoding: 7926 7926
Width: 600
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 860 53<289.5 305.5>
VStem: 177.5 53<783.668 798> 250 100<100 245> 274.5 52<663 672> 370.5 53<781 798>
Ref: 777 N 1 0 0 1 0.5 186
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF7
Encoding: 7927 7927
Width: 600
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 713 53<289 305>
VStem: 177 53<636.668 651> 274 52<516 525> 370 53<634 651>
Ref: 777 N 1 0 0 1 0 39
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF8
Encoding: 7928 7928
Width: 600
HStem: 0 100<185 250 350 415> 563 20<88 177 177 190.5 421 513 513 526.5> 637 69<371 378> 701 69<224 229>
VStem: 250 100<100 245>
Ref: 732 N 1 0 0 1 0 114
Ref: 89 N 1 0 0 1 0 0
EndChar
StartChar: uni1EF9
Encoding: 7929 7929
Width: 600
HStem: -205 100<87 187 297 302> 417 20<87 177 177 190 421 513 513 526> 490 69<371 378> 554 69<224 229>
Ref: 732 N 1 0 0 1 0 -33
Ref: 121 N 1 0 0 1 0 0
EndChar
StartChar: uni2011
Encoding: 8209 8209
Width: 600
Flags: W
HStem: 229 100<108 492>
Ref: 45 N 1 0 0 1 0 0
EndChar
StartChar: endash
Encoding: 8211 8211
Width: 600
Flags: HMW
HStem: 229 100<108 492>
Fore
492 229 m 2
108 229 l 2
83 229 72 231 63 238 c 0
50 248 42 263 42 279 c 0
42 296 51 312 66 322 c 0
75 328 83 329 108 329 c 2
492 329 l 2
518 329 528 327 538 320 c 0
551 310 558 295 558 279 c 0
558 262 549 245 534 236 c 0
526 231 514 229 492 229 c 2
EndSplineSet
EndChar
StartChar: emdash
Encoding: 8212 8212
Width: 600
Flags: HMW
HStem: 229 100<37 563>
Fore
563 229 m 2
37 229 l 2
12 229 1 231 -8 238 c 0
-21 248 -29 264 -29 279 c 0
-29 296 -20 313 -5 322 c 0
4 328 12 329 37 329 c 2
563 329 l 2
589 329 599 327 608 320 c 0
622 310 629 295 629 279 c 0
629 262 620 245 605 236 c 0
597 231 585 229 563 229 c 2
EndSplineSet
EndChar
StartChar: afii00208
Encoding: 8213 8213
Width: 600
Flags: W
HStem: 229 100<37 563>
Ref: 8212 N 1 0 0 1 0 0
EndChar
StartChar: quoteleft
Encoding: 8216 8216
Width: 600
Flags: HMW
HStem: 582 20<249 381 381 381>
Fore
381 602 m 1
450 395 l 1
451 390 453 381 453 376 c 0
453 361 438 348 422 348 c 0
409 348 401 354 390 372 c 2
249 602 l 1
381 602 l 1
EndSplineSet
Kerns: 65 -87 198 -85 193 -87 196 -87 197 -87 84 -49 86 -46 87 -38 89 -73
EndChar
StartChar: quoteright
Encoding: 8217 8217
Width: 600
Flags: W
Fore
225 602 m 1
357 602 l 1
216 372 l 2
205 354 197 348 184 348 c 0
168 348 153 361 153 376 c 0
153 381 155 390 156 395 c 1
225 602 l 1
EndSplineSet
Kerns: 65 -154 198 -153 193 -154 196 -154 197 -154 44 -227 100 -140 111 -143 46 -244 114 -149 115 -150 116 -117 118 -110 119 -105 121 -116
EndChar
StartChar: quotesinglbase
Encoding: 8218 8218
Width: 600
Flags: W
Fore
219 134 m 1
351 134 l 5
210 -134 l 2
202 -150 190 -158 178 -158 c 0
161 -158 147 -145 147 -130 c 0
147 -124 147 -122 150 -111 c 2
219 134 l 1
EndSplineSet
EndChar
StartChar: quotereversed
Encoding: 8219 8219
Width: 600
Flags: W
HStem: 582 20<249 381 381 381>
Ref: 8216 N 1 0 0 1 0 0
EndChar
StartChar: quotedblleft
Encoding: 8220 8220
Width: 600
Flags: HMW
HStem: 582 20<98 230 230 230 298 430 430 430>
Fore
430 602 m 1
499 395 l 1
500 390 502 381 502 376 c 0
502 361 487 348 471 348 c 0
458 348 450 354 439 372 c 2
298 602 l 1
430 602 l 1
230 602 m 1
299 395 l 1
300 390 302 381 302 376 c 0
302 361 287 348 271 348 c 0
258 348 250 354 239 372 c 2
98 602 l 1
230 602 l 1
EndSplineSet
Kerns: 65 -62 198 -60 193 -62 196 -62 197 -62 84 -24 86 -22 87 -13 89 -49
EndChar
StartChar: quotedblright
Encoding: 8221 8221
Width: 600
Flags: HMW
HStem: 582 20<159 291 291 291 359 491 491 491>
Fore
159 602 m 1
291 602 l 1
150 372 l 2
139 354 131 348 118 348 c 0
102 348 87 361 87 376 c 0
87 381 88 389 90 395 c 2
159 602 l 1
359 602 m 1
491 602 l 1
350 372 l 2
339 354 331 348 318 348 c 0
302 348 287 361 287 376 c 0
287 381 288 389 290 395 c 2
359 602 l 1
EndSplineSet
Kerns: 65 -76 198 -75 193 -76 196 -76 197 -76 84 -39 86 -30 87 -26 89 -51
EndChar
StartChar: quotedblbase
Encoding: 8222 8222
Width: 600
Flags: W
Fore
159 134 m 1
291 134 l 1
150 -96 l 2
139 -114 131 -120 118 -120 c 0
102 -120 87 -107 87 -92 c 0
87 -87 88 -79 90 -73 c 2
159 134 l 1
359 134 m 1
491 134 l 1
350 -96 l 2
339 -114 331 -120 318 -120 c 0
302 -120 287 -107 287 -92 c 0
287 -87 288 -79 290 -73 c 2
359 134 l 1
EndSplineSet
Kerns: 65 -6 198 -7 84 -90 86 -104 87 -43 89 -78
EndChar
StartChar: uni201F
Encoding: 8223 8223
Width: 600
Flags: W
HStem: 582 20<98 230 230 230 298 430 430 430>
Ref: 8220 N 1 0 0 1 0 0
EndChar
StartChar: dagger
Encoding: 8224 8224
Width: 600
Flags: HMW
HStem: 337 100<160 250 350 439>
VStem: 250 100<-26 337 437 556>
Fore
350 337 m 1
350 -26 l 2
350 -53 348 -61 341 -71 c 0
331 -84 316 -92 300 -92 c 0
283 -92 267 -83 257 -68 c 0
252 -60 250 -49 250 -26 c 2
250 337 l 1
160 337 l 2
134 337 124 339 114 346 c 0
102 356 94 371 94 387 c 0
94 404 103 421 118 430 c 0
127 436 135 437 160 437 c 2
250 437 l 1
250 556 l 2
250 582 252 592 260 601 c 1
269 614 284 622 300 622 c 0
317 622 334 613 343 598 c 0
349 589 350 582 350 556 c 2
350 437 l 1
439 437 l 2
467 437 475 435 485 428 c 0
498 418 506 403 506 387 c 0
506 370 497 354 482 344 c 0
473 339 463 337 439 337 c 2
350 337 l 1
EndSplineSet
EndChar
StartChar: daggerdbl
Encoding: 8225 8225
Width: 600
Flags: HMW
HStem: 93 100<160 250 350 439> 337 100<160 250 350 439>
VStem: 250 100<-26 93 193 337 437 556>
Fore
350 337 m 1
350 193 l 1
439 193 l 2
465 193 475 191 485 184 c 0
498 174 506 159 506 143 c 0
506 126 497 109 482 100 c 0
473 94 464 93 439 93 c 2
350 93 l 1
350 -26 l 2
350 -54 348 -61 341 -71 c 0
331 -84 316 -92 300 -92 c 0
283 -92 267 -83 257 -68 c 0
252 -60 250 -49 250 -26 c 2
250 93 l 1
160 93 l 2
133 93 125 95 114 102 c 1
102 112 94 127 94 143 c 0
94 160 103 177 118 186 c 0
126 191 137 193 160 193 c 2
250 193 l 1
250 337 l 1
160 337 l 2
134 337 124 339 114 346 c 0
102 356 94 371 94 387 c 0
94 404 103 421 118 430 c 0
127 436 135 437 160 437 c 2
250 437 l 1
250 556 l 2
250 582 252 592 260 601 c 1
269 614 284 622 300 622 c 0
317 622 334 613 343 598 c 0
349 589 350 582 350 556 c 2
350 437 l 1
439 437 l 2
467 437 475 435 485 428 c 0
498 418 506 403 506 387 c 0
506 370 497 354 482 344 c 0
473 339 463 337 439 337 c 2
350 337 l 1
EndSplineSet
EndChar
StartChar: bullet
Encoding: 8226 8226
Width: 600
Flags: HMW
HStem: 433 20<258 341>
Fore
299 453 m 0
383 453 449 387 449 302 c 0
449 221 381 154 299 154 c 0
217 154 150 221 150 304 c 0
150 386 217 453 299 453 c 0
EndSplineSet
EndChar
StartChar: ellipsis
Encoding: 8230 8230
Width: 600
Flags: HMW
HStem: -15 20
Fore
109 -15 m 2
91 -15 l 2
55 -15 25 15 25 51 c 0
25 87 55 117 91 117 c 2
109 117 l 2
146 117 175 88 175 51 c 0
175 14 146 -15 109 -15 c 2
309 -15 m 2
291 -15 l 2
255 -15 225 15 225 51 c 0
225 87 255 117 291 117 c 2
309 117 l 2
346 117 375 88 375 51 c 0
375 14 346 -15 309 -15 c 2
509 -15 m 2
491 -15 l 2
455 -15 425 15 425 51 c 0
425 87 455 117 491 117 c 2
509 117 l 2
546 117 575 88 575 51 c 0
575 14 546 -15 509 -15 c 2
EndSplineSet
EndChar
StartChar: perthousand
Encoding: 8240 8240
Width: 600
Flags: W
HStem: 0 58<208 224 480 486> 174 58<208 224 480 486> 386 58<106 118> 560 58<106 118>
VStem: 0 58<496 512> 98 58<112 118> 174 58<496 512> 272 58<112 118> 368 58<112 118> 542 58<112 118>
DStem: 450 436 469 377 85 319 104 259
Fore
469 377 m 2
104 259 l 2
92 255 90 255 85 255 c 0
70 255 56 271 56 288 c 0
56 303 64 312 85 319 c 2
450 436 l 2
462 440 464 440 469 440 c 0
484 440 498 425 498 408 c 0
498 392 490 384 469 377 c 2
116 618 m 0
181 618 232 566 232 501 c 0
232 438 179 386 116 386 c 0
52 386 0 438 0 502 c 0
0 566 52 618 116 618 c 0
116 560 m 0
84 560 58 534 58 502 c 0
58 470 84 444 116 444 c 0
147 444 174 470 174 501 c 0
174 534 148 560 116 560 c 0
214 232 m 0
279 232 330 180 330 115 c 0
330 52 277 0 214 0 c 0
150 0 98 52 98 116 c 0
98 180 150 232 214 232 c 0
214 174 m 0
182 174 156 148 156 116 c 0
156 84 182 58 214 58 c 0
245 58 272 84 272 115 c 0
272 148 246 174 214 174 c 0
484 232 m 0
549 232 600 180 600 115 c 0
600 52 547 0 484 0 c 0
420 0 368 52 368 116 c 0
368 180 420 232 484 232 c 0
484 174 m 0
452 174 426 148 426 116 c 0
426 84 452 58 484 58 c 0
515 58 542 84 542 115 c 0
542 148 516 174 484 174 c 0
EndSplineSet
EndChar
StartChar: minute
Encoding: 8242 8242
Width: 600
Flags: W
Fore
219 623 m 1
351 623 l 1
210 355 l 2
202 339 190 331 178 331 c 0
161 331 147 344 147 359 c 0
147 365 147 367 150 378 c 2
219 623 l 1
EndSplineSet
EndChar
StartChar: second
Encoding: 8243 8243
Width: 600
Flags: W
Fore
347 623 m 1
479 623 l 1
338 355 l 2
330 339 318 331 306 331 c 0
289 331 275 344 275 359 c 0
275 365 275 367 278 378 c 2
347 623 l 1
155 623 m 1
287 623 l 1
146 355 l 2
138 339 126 331 114 331 c 0
97 331 83 344 83 359 c 0
83 365 83 367 86 378 c 2
155 623 l 1
EndSplineSet
EndChar
StartChar: uni2034
Encoding: 8244 8244
Width: 600
Flags: W
Fore
267 623 m 1
399 623 l 1
258 355 l 2
250 339 238 331 226 331 c 0
209 331 195 344 195 359 c 0
195 365 195 367 198 378 c 2
267 623 l 1
443 623 m 1
575 623 l 1
434 355 l 2
426 339 414 331 402 331 c 0
385 331 371 344 371 359 c 0
371 365 371 367 374 378 c 2
443 623 l 1
91 623 m 1
223 623 l 1
82 355 l 2
74 339 62 331 50 331 c 0
33 331 19 344 19 359 c 0
19 365 19 367 22 378 c 2
91 623 l 1
EndSplineSet
EndChar
StartChar: uni2035
Encoding: 8245 8245
Width: 600
Flags: W
Ref: 8242 N -1 0 0 1 498 0
EndChar
StartChar: uni2036
Encoding: 8246 8246
Width: 600
Flags: W
Ref: 8243 N -1 0 0 1 562 0
EndChar
StartChar: uni2037
Encoding: 8247 8247
Width: 600
Flags: W
Ref: 8244 N -1 0 0 1 594 0
EndChar
StartChar: guilsinglleft
Encoding: 8249 8249
Width: 600
Flags: HMW
HStem: 0 20<304.5 318>
Fore
175 218 m 1
326 77 l 2
337 67 342 59 342 50 c 0
342 34 327 20 309 20 c 0
300 20 295 22 281 33 c 2
33 218 l 1
281 402 l 2
295 413 300 415 310 415 c 0
327 415 342 401 342 385 c 0
342 376 338 368 326 358 c 1
175 218 l 1
EndSplineSet
EndChar
StartChar: guilsinglright
Encoding: 8250 8250
Width: 600
Flags: HMW
HStem: 0 20<286.5 300>
Fore
430 217 m 1
279 358 l 2
268 368 263 376 263 385 c 0
263 401 278 415 296 415 c 0
305 415 310 413 324 402 c 2
571 217 l 1
324 33 l 2
310 22 305 20 295 20 c 0
278 20 263 34 263 50 c 0
263 59 267 67 279 77 c 1
430 217 l 1
EndSplineSet
Kerns: 65 -37 198 -34 193 -37 196 -37 197 -37 84 -71 86 -72 87 -29 89 -92
EndChar
StartChar: exclamdbl
Encoding: 8252 8252
Width: 600
Flags: W
HStem: -15 132<159 191 415 436> 179 459<166 186 416 436>
VStem: 95 161<545 561> 100 150<49 53> 345 161<545 561> 350 150<49 53>
Fore
504 525 m 1
475 228 l 2
472 197 454 179 426 179 c 0
398 179 379 198 376 228 c 2
347 525 l 1
346 537 345 551 345 558 c 0
345 604 379 638 426 638 c 0
472 638 506 604 506 558 c 0
506 552 505 538 504 525 c 1
434 -15 m 2
417 -15 l 2
380 -15 350 15 350 51 c 0
350 87 380 117 417 117 c 2
434 117 l 2
471 117 500 88 500 51 c 0
500 14 471 -15 434 -15 c 2
254 525 m 1
225 228 l 2
222 197 204 179 176 179 c 0
148 179 129 198 126 228 c 2
97 525 l 1
96 537 95 551 95 558 c 0
95 604 129 638 176 638 c 0
222 638 256 604 256 558 c 0
256 552 255 538 254 525 c 1
184 -15 m 2
167 -15 l 2
130 -15 100 15 100 51 c 0
100 87 130 117 167 117 c 2
184 117 l 2
221 117 250 88 250 51 c 0
250 14 221 -15 184 -15 c 2
EndSplineSet
MinimumDistance: x13,-1
EndChar
StartChar: fraction
Encoding: 8260 8260
Width: 600
Flags: W
DStem: 489 483 543 398 58 204 112 119
Fore
543 398 m 2
112 119 l 2
94 107 81 102 70 102 c 0
45 102 21 127 21 154 c 0
21 175 29 185 58 204 c 2
489 483 l 2
510 497 518 500 531 500 c 0
557 500 580 476 580 449 c 0
580 428 572 417 543 398 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2045
Encoding: 8261 8261
Width: 600
Flags: W
VStem: 248 100<-25 153 312.913 494>
Fore
348 151 m 2
348 -15 l 2
348 -42 356 -50 384 -52 c 0
413 -54 433 -75 433 -103 c 0
433 -133 411 -153 378 -153 c 0
308 -153 248 -93 248 -22 c 2
248 142 l 2
248 194 253 211 277 240 c 1
254 268 248 285 248 328 c 2
248 492 l 2
248 563 308 623 377 623 c 0
411 623 433 603 433 573 c 0
433 545 413 524 384 522 c 0
356 521 348 512 348 485 c 2
348 328 l 2
348 301 354 293 380 290 c 0
412 287 429 269 429 240 c 0
429 210 412 193 380 189 c 0
354 186 348 179 348 151 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2046
Encoding: 8262 8262
Width: 600
Flags: W
VStem: 252 100<-25 151 311 494>
Fore
352 492 m 2
352 328 l 2
352 276 347 259 323 230 c 1
346 202 352 185 352 142 c 2
352 -22 l 2
352 -93 292 -153 223 -153 c 0
189 -153 167 -133 167 -103 c 0
167 -75 187 -54 216 -52 c 0
244 -51 252 -42 252 -15 c 2
252 142 l 2
252 169 246 177 220 180 c 0
188 183 171 201 171 230 c 0
171 260 188 277 220 281 c 0
246 284 252 291 252 319 c 2
252 485 l 2
252 512 244 520 216 522 c 0
187 524 167 545 167 573 c 0
167 603 189 623 222 623 c 0
292 623 352 563 352 492 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2048
Encoding: 8264 8264
Width: 600
Flags: W
HStem: -15 20 498 100<190 241>
VStem: 317 100<392.5 439>
Ref: 63 N 1 0 0 1 -100 0
Ref: 33 N 1 0 0 1 225 0
EndChar
StartChar: uni2049
Encoding: 8265 8265
Width: 600
Flags: W
HStem: -15 20 498 100<390 441>
VStem: 517 100<392.5 439>
Ref: 63 N 1 0 0 1 100 0
Ref: 33 N 1 0 0 1 -225 0
EndChar
StartChar: uni204B
Encoding: 8267 8267
Width: 600
Flags: W
HStem: -174 78<103 139 337 416> 505 78<105 139 139 139 215 259 259 259>
VStem: 139 76<-96 505> 259 78<-96 185 185 185 266 500 500 500> 445 113<361 405>
Ref: 182 N -1 0 0 1 607 0
EndChar
StartChar: uni2064
Encoding: 8292 8292
Width: 600
Flags: W
EndChar
StartChar: zerosuperior
Encoding: 8304 8304
Width: 600
Flags: W
HStem: 238 67<296 302> 570 67<296 302>
VStem: 168 67<398 478> 365 67<398 478>
Fore
432 466 m 2
432 409 l 2
432 353 415 304 385 272 c 0
364 250 335 238 300 238 c 0
265 238 236 250 215 272 c 0
185 304 168 353 168 409 c 2
168 466 l 2
168 522 185 571 215 603 c 0
236 625 265 637 300 637 c 0
335 637 364 625 385 603 c 0
415 571 432 522 432 466 c 2
235 471 m 2
235 404 l 2
235 343 260 305 300 305 c 0
340 305 365 343 365 404 c 2
365 471 l 2
365 532 340 570 300 570 c 0
260 570 235 532 235 471 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2071
Encoding: 8305 8305
Width: 600
EndChar
StartChar: uni2072
Encoding: 8306 8306
Width: 600
EndChar
StartChar: uni2073
Encoding: 8307 8307
Width: 600
EndChar
StartChar: foursuperior
Encoding: 8308 8308
Width: 600
Flags: W
HStem: 247 67<274.013 305> 330 67<228 305>
VStem: 143 267<359 366> 244 166<279 283> 306 67<314 330 398 525>
DStem: 289 627 306 526 143 385 227 397
Fore
373 627 m 1
373 397 l 1
396 396 410 384 410 364 c 0
410 344 397 331 373 330 c 1
373 314 l 1
396 313 410 301 410 281 c 0
410 259 394 247 366 247 c 2
287 247 l 2
259 247 244 259 244 281 c 0
244 303 258 314 287 314 c 2
306 314 l 1
306 330 l 1
143 330 l 1
143 385 l 1
289 627 l 1
373 627 l 1
306 397 m 1
306 526 l 1
227 397 l 1
306 397 l 1
EndSplineSet
MinimumDistance: x0,-1 y13,11 x11,13 x11,12 x10,7 x10,9
EndChar
StartChar: fivesuperior
Encoding: 8309 8309
Width: 600
Flags: W
HStem: 235 67<260 292> 439 67<292 308> 557 67<249 372>
VStem: 181 67<497 557> 181 224<587 592> 364 67<363 379>
Fore
248 557 m 1
248 496 l 1
270 502 284 506 302 506 c 0
376 506 431 446 431 368 c 0
431 332 419 300 397 277 c 0
370 247 335 235 278 235 c 0
204 235 148 261 148 296 c 0
148 312 160 334 177 334 c 0
185 334 192 333 201 325 c 0
219 310 242 302 277 302 c 0
335 302 364 325 364 367 c 0
364 407 342 439 301 439 c 0
281 439 254 432 228 418 c 0
220 415 215 413 209 413 c 0
191 413 181 431 181 451 c 2
181 624 l 1
365 624 l 2
381 624 384 625 393 618 c 24
402 610 405 600 405 590 c 0
405 580 400 568 390 562 c 0
386 559 378 557 365 557 c 2
248 557 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: sixsuperior
Encoding: 8310 8310
Width: 600
Flags: W
HStem: 238 67<299 310> 423 67<299 310> 568 69<351 367>
VStem: 357 67<351.368 374>
Fore
228 448 m 1
257 479 277 490 308 490 c 0
372 490 424 432 424 363 c 0
424 328 413 297 392 274 c 0
370 250 341 238 300 238 c 0
249 238 210 259 187 301 c 0
171 330 159 377 159 421 c 0
159 476 177 523 208 562 c 0
249 612 300 637 356 637 c 0
399 637 427 618 427 594 c 0
427 577 413 560 396 560 c 0
391 560 384 561 375 565 c 0
368 567 365 568 359 568 c 0
302 568 242 523 228 448 c 1
234 375 m 1
243 322 266 305 302 305 c 0
335 305 357 331 357 363 c 0
357 395 334 423 304 423 c 0
278 423 250 405 234 375 c 1
EndSplineSet
MinimumDistance: x2,-1
Back
225 445 m 1
254 476 277 488 308 488 c 0
372 488 424 432 424 363 c 0
424 328 413 297 392 274 c 0
370 250 341 238 300 238 c 0
249 238 212 259 189 301 c 0
173 330 162 377 162 421 c 0
162 476 178 522 209 561 c 0
250 611 300 637 356 637 c 0
399 637 427 621 427 597 c 0
427 580 413 566 396 566 c 0
391 566 384 567 375 571 c 0
368 573 365 574 359 574 c 0
295 574 239 520 225 445 c 1
231 375 m 1
240 322 262 299 302 299 c 0
340 299 363 324 363 363 c 0
363 399 337 427 304 427 c 0
278 427 247 405 231 375 c 1
EndSplineSet
EndChar
StartChar: sevensuperior
Encoding: 8311 8311
Width: 600
Flags: W
HStem: 560 67<228 359>
VStem: 167 265<566 626>
DStem: 360 560 432 566 272 297 335 276
Fore
360 560 m 1
228 560 l 1
227 538 217 527 198 527 c 0
188 527 177 532 172 541 c 0
169 547 167 552 167 567 c 2
167 627 l 1
432 627 l 1
432 566 l 1
335 276 l 2
328 254 319 246 303 246 c 0
286 246 268 260 268 276 c 0
268 281 268 286 272 297 c 2
360 560 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: eightsuperior
Encoding: 8312 8312
Width: 600
Flags: W
HStem: 238 67<296 312> 405 68<296 302> 570 67<296 312>
VStem: 168 67<347 355> 173 67<521 528> 360 67<521 528> 365 67<347 355>
Fore
373 442 m 1
412 418 432 386 432 348 c 0
432 283 379 238 299 238 c 0
221 238 168 283 168 348 c 0
168 386 188 418 227 442 c 1
190 466 173 493 173 525 c 0
173 587 229 637 300 637 c 0
370 637 427 587 427 526 c 0
427 493 410 466 373 442 c 1
300 570 m 0
266 570 240 550 240 523 c 0
240 496 266 473 300 473 c 0
334 473 360 495 360 522 c 0
360 549 334 570 300 570 c 0
300 405 m 0
266 405 235 380 235 353 c 0
235 326 263 305 300 305 c 0
337 305 365 325 365 352 c 0
365 379 334 405 300 405 c 0
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: ninesuperior
Encoding: 8313 8313
Width: 600
Flags: W
HStem: 238 69<227 243> 385 67<281 292> 570 67<281 292>
VStem: 166 67<501 514>
Fore
362 427 m 1
333 396 313 385 282 385 c 0
218 385 166 443 166 512 c 0
166 547 177 578 198 601 c 0
220 625 249 637 290 637 c 0
341 637 378 616 401 574 c 0
417 546 428 497 428 454 c 0
428 400 412 353 381 314 c 0
340 264 290 238 234 238 c 0
191 238 163 257 163 281 c 0
163 298 177 315 194 315 c 0
199 315 206 314 215 310 c 0
222 308 225 307 231 307 c 0
288 307 348 352 362 427 c 1
356 500 m 1
347 553 327 570 288 570 c 0
254 570 233 547 233 512 c 0
233 480 255 452 286 452 c 0
310 452 340 470 356 500 c 1
EndSplineSet
MinimumDistance: x15,-1
Back
365 430 m 1
336 399 313 387 282 387 c 0
218 387 166 443 166 512 c 0
166 547 177 578 198 601 c 0
220 625 249 637 290 637 c 0
341 637 378 616 401 574 c 0
417 546 428 497 428 454 c 0
428 400 412 353 381 314 c 0
340 264 290 238 234 238 c 0
191 238 163 254 163 278 c 0
163 295 177 309 194 309 c 0
199 309 206 308 215 304 c 0
222 302 225 301 231 301 c 0
295 301 351 355 365 430 c 1
359 500 m 1
350 553 328 576 288 576 c 0
250 576 227 551 227 512 c 0
227 476 253 448 286 448 c 0
312 448 343 470 359 500 c 1
EndSplineSet
EndChar
StartChar: uni207A
Encoding: 8314 8314
Width: 600
Flags: W
EndChar
StartChar: uni207B
Encoding: 8315 8315
Width: 600
Flags: W
EndChar
StartChar: uni207C
Encoding: 8316 8316
Width: 600
Flags: W
EndChar
StartChar: parenleftsuperior
Encoding: 8317 8317
Width: 600
Flags: W
EndChar
StartChar: parenrightsuperior
Encoding: 8318 8318
Width: 600
Flags: W
EndChar
StartChar: nsuperior
Encoding: 8319 8319
Width: 600
Flags: W
EndChar
StartChar: zeroinferior
Encoding: 8320 8320
Width: 600
Flags: W
HStem: -174 67<296 302> 158 67<296 302>
VStem: 168 67<-14 66> 365 67<-14 66>
Ref: 8304 N 1 0 0 1 0 -412
EndChar
StartChar: oneinferior
Encoding: 8321 8321
Width: 600
Flags: W
HStem: -165 67<210 267 334 391>
VStem: 267 67<-98 139 139 139>
Ref: 185 N 1 0 0 1 0 -412
EndChar
StartChar: twoinferior
Encoding: 8322 8322
Width: 600
Flags: W
HStem: -165 67<253 362> 158 67<281.5 311.5>
VStem: 358 67<94 122>
Ref: 178 N 1 0 0 1 0 -412
EndChar
StartChar: threeinferior
Encoding: 8323 8323
Width: 600
Flags: W
HStem: -174 67<269 304> 158 67<283 313>
VStem: 362 67<114 122> 375 67<-62 -53>
Ref: 179 N 1 0 0 1 0 -412
EndChar
StartChar: fourinferior
Encoding: 8324 8324
Width: 600
Flags: W
HStem: -165 67<274.013 305> -82 67<228 305>
VStem: 143 267<-53 -46> 244 166<-133 -129> 306 67<-98 -82 -14 113>
DStem: 289 215 306 114 143 -27 227 -15
Ref: 8308 N 1 0 0 1 0 -412
EndChar
StartChar: fiveinferior
Encoding: 8325 8325
Width: 600
Flags: W
HStem: -177 67<260 292> 27 67<292 308> 145 67<249 372>
VStem: 181 67<85 145> 181 224<175 180> 364 67<-49 -33>
Ref: 8309 N 1 0 0 1 0 -412
EndChar
StartChar: sixinferior
Encoding: 8326 8326
Width: 600
Flags: W
HStem: -174 67<299 310> 11 67<299 310> 156 69<351 367>
VStem: 357 67<-60.6316 -38>
Ref: 8310 N 1 0 0 1 0 -412
EndChar
StartChar: seveninferior
Encoding: 8327 8327
Width: 600
Flags: W
HStem: 148 67<228 359>
VStem: 167 265<154 214>
DStem: 360 148 432 154 272 -115 335 -136
Ref: 8311 N 1 0 0 1 0 -412
EndChar
StartChar: eightinferior
Encoding: 8328 8328
Width: 600
Flags: W
HStem: -174 67<296 312> -7 68<296 302> 158 67<296 312>
VStem: 168 67<-65 -57> 173 67<109 116> 360 67<109 116> 365 67<-65 -57>
Ref: 8312 N 1 0 0 1 0 -412
EndChar
StartChar: nineinferior
Encoding: 8329 8329
Width: 600
Flags: W
HStem: -174 69<227 243> -27 67<281 292> 158 67<281 292>
VStem: 166 67<89 102>
Ref: 8313 N 1 0 0 1 0 -412
EndChar
StartChar: franc
Encoding: 8355 8355
Width: 600
Flags: W
HStem: 0 100<58.7851 93 195 298> 205 56<33 93 195 346> 303 56<33 93 195 346> 483 100<58 93 195 450>
VStem: 10 358<224 240 321.868 336> 13 347<48 52> 94 100<100 205 261 303 359 483> 450 100<416 483>
Fore
94 359 m 1
94 483 l 1
79 483 l 2
54 483 43 485 34 492 c 0
21 502 13 517 13 533 c 0
13 550 22 567 37 576 c 0
46 582 53 583 79 583 c 2
550 583 l 1
550 432 l 2
550 405 548 397 541 387 c 0
531 374 516 366 500 366 c 0
483 366 467 375 457 390 c 0
452 398 450 409 450 432 c 2
450 483 l 1
194 483 l 1
194 359 l 1
340 359 l 2
358 359 368 349 368 331 c 0
368 313 358 303 340 303 c 2
194 303 l 1
194 261 l 1
341 261 l 2
359 261 368 251 368 233 c 0
368 215 358 205 341 205 c 2
194 205 l 1
194 100 l 1
294 100 l 2
321 100 330 98 340 91 c 0
352 81 360 66 360 50 c 0
360 33 351 16 336 7 c 0
329 3 314 0 294 0 c 2
79 0 l 2
56 0 42 3 34 10 c 0
21 19 13 35 13 50 c 0
13 67 22 84 37 93 c 0
46 99 55 100 79 100 c 2
94 100 l 1
94 205 l 1
37 205 l 2
20 205 10 215 10 233 c 0
10 251 19 261 37 261 c 2
94 261 l 1
94 303 l 1
37 303 l 2
20 303 10 313 10 331 c 0
10 349 19 359 37 359 c 2
94 359 l 1
EndSplineSet
MinimumDistance: x7,-1 x37,40 x37,38 x20,23 x20,21 x15,18 x15,16 x0,43 x0,45
EndChar
StartChar: lira
Encoding: 8356 8356
Width: 600
Flags: W
HStem: 0 100<248 450> 205 56<54 161 269 362> 303 56<54 129 265 362> 498 100<289 305>
VStem: 33 348<224 240 321.868 336> 55 495<51 90> 126 100<431 445>
Fore
241.622 359 m 1
353 359 l 2
371 359 381 349 381 331 c 0
381 313 371 303 353 303 c 2
257.159 303 l 1
260.982 288.799 264.229 275.267 266.502 261 c 1
354 261 l 2
372 261 381 251 381 233 c 0
381 215 371 205 354 205 c 2
269.865 205 l 1
268.893 166.78 262.546 138.407 247 100 c 1
450 100 l 1
454 130 471 146 499 146 c 0
530 146 550 124 550 90 c 0
550 32 512 0 442 0 c 2
121 0 l 2
98 0 85 3 76 10 c 0
63 19 55 35 55 51 c 0
55 78 70 93 105 100 c 0
130 105 141 113 150 132 c 0
160.653 152.487 166.606 177.004 168.408 205 c 1
60 205 l 2
43 205 33 215 33 233 c 0
33 251 42 261 60 261 c 2
164.994 261 l 1
162.242 275.12 158.379 289.297 154.415 303 c 1
60 303 l 2
43 303 33 313 33 331 c 0
33 349 42 359 60 359 c 2
138.818 359 l 1
131.661 386.112 126 407.602 126 432 c 0
126 529 198 598 299 598 c 0
377 598 457 546 457 495 c 0
457 467 435 444 408 444 c 0
389 444 384 447 361 472 c 0
345 490 325 498 298 498 c 0
257 498 226 472 226 437 c 0
226 419.043 233.171 390.166 241.622 359 c 1
EndSplineSet
MinimumDistance: x36,-1
EndChar
StartChar: afii57636
Encoding: 8362 8362
Width: 600
Flags: W
HStem: 0 100<273 414> 380 100<121 247>
VStem: 22 100<47 380> 174 100<100 241> 326 100<223 303> 478 100<144 439>
Fore
478 145 m 1
478 430 l 2
478 458 500 480 528 480 c 0
556 480 578 458 578 430 c 2
578 145 l 1
580 114 570 64 532 35 c 1
494 3 449 -1 414 0 c 2
174 0 l 1
174 234 l 2
174 262 196 284 224 284 c 0
252 284 274 262 274 234 c 2
274 100 l 1
414 100 l 2
448 101 454 102 467 112 c 1
480 126 476 116 478 145 c 1
426 303 m 1
426 234 l 2
426 206 404 184 376 184 c 0
348 184 326 206 326 234 c 2
326 303 l 1
324 342 327 340 306 360 c 1
283 378 271 379 224 380 c 2
122 380 l 1
122 50 l 2
122 22 100 0 72 0 c 0
44 0 22 22 22 50 c 2
22 480 l 1
224 480 l 2
272 481 325 476 370 437 c 1
417 400 428 344 426 303 c 1
EndSplineSet
MinimumDistance: x3,-1 y21,24 y21,22 y11,8 y11,10
EndChar
StartChar: Euro
Encoding: 8364 8364
Width: 600
Flags: W
HStem: -14 100<309 343> 205 56<22.3275 58 175 343> 303 56<22.3275 58 174 372> 367 216<469.41 484> 497 100<304 326>
VStem: 4 364<226 242> 4 392<322 338> 59 110<261 303>
Fore
173 359 m 5
368 359 l 6
386 359 396 349 396 331 c 4
396 313 386 303 368 303 c 6
169 303 l 5
169 261 l 5
341 261 l 6
359 261 368 251 368 233 c 4
368 215 358 205 341 205 c 6
174 205 l 5
190 130 247 86 329 86 c 0
367 86 404 95 426 109 c 0
436 115 436 115 461 143 c 0
471 154 481 159 492 159 c 0
517 159 538 136 538 109 c 0
538 86 521 60 490 36 c 0
451 5 389 -14 325 -14 c 0
187 -14 84 72 62 205 c 5
31 205 l 6
14 205 4 215 4 233 c 4
4 251 13 261 31 261 c 6
59 261 l 5
59 303 l 5
31 303 l 6
14 303 4 313 4 331 c 4
4 349 13 359 31 359 c 6
62 359 l 5
78 498 179 597 305 597 c 0
351 597 382 589 432 563 c 2
441 559 l 1
453 576 463 583 479 583 c 0
495 583 509 574 518 559 c 0
523 550 524 542 524 517 c 2
524 433 l 2
524 408 522 397 516 388 c 0
507 375 493 367 479 367 c 0
453 367 440 382 434 420 c 0
431 444 421 457 395 473 c 0
371 488 338 497 309 497 c 0
240 497 188 444 173 359 c 5
EndSplineSet
MinimumDistance: x1,-1 x22,25 x22,23 x21,18 x21,20 x5,8 x5,6 x4,1 x4,3
EndChar
StartChar: uni2112
Encoding: 8466 8466
Width: 600
Flags: W
HStem: 0 100<248 450> 498 100<295 311>
VStem: 55 495<51 90> 126 100<431 445> 169 101<208 240>
Fore
143 343 m 8
133.998 378.108 126 403 126 432 c 0
126 529 198 598 299 598 c 0
377 598 457 546 457 495 c 0
457 467 435 444 408 444 c 0
389 444 384 447 361 472 c 0
345 490 325 498 298 498 c 0
257 498 226 472 226 437 c 0
226 416 235.807 380.066 246 343 c 16
258.915 296.035 270 264.563 270 216 c 0
270 172 264 142 247 100 c 1
450 100 l 1
454 130 471 146 499 146 c 0
530 146 550 124 550 90 c 0
550 32 512 0 442 0 c 2
121 0 l 2
98 0 85 3 76 10 c 0
63 19 55 35 55 51 c 0
55 78 70 93 105 100 c 0
130 105 141 113 150 132 c 0
163 157 169 188 169 224 c 0
169 263.555 152.08 307.587 143 343 c 8
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: afii61352
Encoding: 8470 8470
Width: 600
Flags: W
HStem: 0 100<94 99> 168 80<476.863 587.709> 266.303 44.5892<518.907 543.449> 421.539 43.7635<518.907 543.777> 483 100<66 107 440 562>
VStem: -14 100<112 144> 108 100<112 326> 339 100<249 483> 339 272<528 535> 450.842 34.687<351.353 381.079> 577.155 34.687<350.94 380.666>
DStem: 208 327 208 583 340 0 339 248
Fore
545 583 m 2
571 583 578 582 587 576 c 0
602 567 611 550 611 533 c 0
611 517 603 502 590 492 c 0
581 485 570 483 545 483 c 2
439 483 l 1
439 0 l 1
340 0 l 1
208 327 l 1
208 127 l 1
208 29 170 0 95 0 c 8
31 0 -14 40 -14 118 c 1
-14 126 l 2
-14 153 -12 161 -6 171 c 0
4 184 20 192 36 192 c 0
52 192 68 183 78 168 c 0
84 160 86 150 86 127 c 1
86 105 88 100 97 100 c 0
108 100 108 108 108 128 c 1
108 483 l 1
82 483 l 2
57 483 46 485 37 492 c 0
24 502 16 517 16 533 c 0
16 550 25 567 40 576 c 0
49 582 56 583 82 583 c 2
208 583 l 1
339 248 l 1
339 583 l 1
545 583 l 2
EndSplineSet
MinimumDistance: x7,5 y5,7 y5,6
Ref: 175 N 0.454286 0 0 1 396 -378
Ref: 730 N 0.654472 0 0 0.825726 335 -135
Back
113 80 m 2
112.923 46 96 41 82 41 c 0
68 41 51 54 51 80 c 2
51 99 l 2
51 118 43 127 31 127 c 0
17 127 9 117 9 99 c 2
9 76 l 2
9 26 50 0 80 0 c 0
124 0 155 24 155 76 c 2
155 474 l 1
346 0 l 1
398 0 l 1
398 522 l 1
558 522 l 2
576 522 585 529 585 543 c 0
585 556 576 563 558 563 c 2
320 563 l 2
301 563 292 556 292 543 c 0
292 529 301 522 320 522 c 2
357 522 l 1
357 89 l 1
165 563 l 1
59 563 l 2
41 563 32 556 32 543 c 0
32 529 41 522 59 522 c 2
113 522 l 1
113 80 l 2
EndSplineSet
EndChar
StartChar: trademark
Encoding: 8482 8482
Width: 600
Flags: HMW
HStem: 220 73<52 75 148 170 496 511> 434 20<443 443> 510 73<40 75 40 40 148 183 148 148>
VStem: -33 73<461 510> 75 73<293 510> 183 74<461 510 510 510> 302 73<293 431> 511 73<293 429 429 429>
Fore
148 510 m 1
148 293 l 1
170 293 l 2
201 293 217 281 217 257 c 0
217 233 200 220 170 220 c 2
52 220 l 2
23 220 6 233 6 257 c 0
6 281 22 293 52 293 c 2
75 293 l 1
75 510 l 1
40 510 l 1
40 461 l 2
40 431 27 415 3 415 c 0
-20 415 -33 431 -33 461 c 2
-33 583 l 1
257 583 l 1
257 461 l 2
257 431 244 415 220 415 c 0
196 415 183 431 183 461 c 2
183 510 l 1
148 510 l 1
375 431 m 1
375 293 l 1
406 293 422 281 422 257 c 0
422 233 406 220 375 220 c 2
312 220 l 2
282 220 266 233 266 257 c 0
266 277 279 291 302 293 c 1
302 511 l 1
283 514 271 528 271 547 c 0
271 571 286 583 317 583 c 2
390 583 l 1
443 454 l 1
495 583 l 1
569 583 l 2
599 583 615 571 615 547 c 0
615 528 603 514 584 511 c 1
584 293 l 1
606 291 620 277 620 257 c 0
620 233 604 220 574 220 c 2
511 220 l 2
481 220 464 233 464 257 c 0
464 281 480 293 511 293 c 1
511 429 l 1
455 303 l 1
436 303 l 1
375 431 l 1
EndSplineSet
EndChar
StartChar: uni2126
Encoding: 8486 8486
Width: 600
Flags: W
HStem: 0 100<129 179 421 471> 0 158<77 81 510.788 525> 0 202<253 279 321 349> 483 100<257 344>
VStem: 29 100<101 118> 29 251<1 100> 40 100<336 352> 180 100<101 118> 320 100<101 118> 320 251<1 100> 460 100<336 352> 471 100<101 118>
Ref: 937 N 1 0 0 1 0 0
EndChar
StartChar: uni2127
Encoding: 8487 8487
Width: 600
Flags: W
HStem: 0 100<257 344> 381 202<253 279 321 349> 425 158<77 81 510.788 525> 483 100<129 179 421 471>
VStem: 29 100<465 482> 29 251<483 582> 40 100<231 247> 180 100<465 482> 320 100<465 482> 320 251<483 582> 460 100<231 247> 471 100<465 482>
Ref: 937 N 1 0 0 -1 0 583
EndChar
StartChar: uni212A
Encoding: 8490 8490
Width: 600
Flags: W
HStem: 0 100<79 94 194 229 504 536> 483 100<79 94 194 194 194 229 511 520.5>
VStem: 94 100<100 208 334 483>
Ref: 75 N 1 0 0 1 0 0
EndChar
StartChar: uni212B
Encoding: 8491 8491
Width: 600
Flags: W
HStem: 0 100<33.5 45 45 46 155 178 416 439 553 555> 158 100<218 375> 430 20<297 297> 483 100<138 201> 630 54<264 301.5> 818 53<264 302>
VStem: -21 53 172 53
Ref: 197 N 1 0 0 1 0 0
EndChar
StartChar: onethird
Encoding: 8531 8531
Width: 600
Flags: W
HStem: -20 67<449 495> 247 67<-2 66 134 193> 312 67<474 504>
VStem: 67 67<314 550> 553 67<268 276> 566 67<92 101>
DStem: 415 561 473 528 155 110 213 77
Fore
477 226 m 2
502 226 l 2
529 226 553 247 553 270 c 0
553 296 528 312 490 312 c 0
457 312 442 306 423 285 c 0
417 279 408 275 399 275 c 0
381 275 366 291 366 309 c 0
366 346 427 379 493 379 c 0
566 379 620 333 620 271 c 0
620 240 602 211 572 192 c 2
572 192 570 191 569 190 c 1
610 169 633 135 633 97 c 0
633 64 615 29 587 8 c 0
561 -11 526 -20 476 -20 c 0
398 -20 348 1 348 34 c 0
348 53 363 68 381 68 c 0
389 68 393 67 403 60 c 0
418 50 436 47 474 47 c 0
534 47 566 65 566 99 c 0
566 120 548 141 522 153 c 0
510 158 505 159 477 160 c 0
456 162 443 174 443 193 c 0
443 212 458 226 477 226 c 2
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
MinimumDistance: x30,27 x30,29 x23,26 x23,24
EndChar
StartChar: twothirds
Encoding: 8532 8532
Width: 600
Flags: W
HStem: -20 67<449 495> 248 67<55 163> 248 99<190 198> 312 67<474 504> 571 67<80.2939 97>
VStem: -50 280<249 315> 159 67<517 530> 553 67<268 276> 566 67<92 101>
DStem: 416 561 474 528 155 110 213 77
Fore
54 315 m 1
163 315 l 1
166 336 177 347 196 347 c 0
219 347 230 333 230 304 c 2
230 248 l 1
-50 248 l 1
-50 316 l 1
136 470 159 493 159 521 c 0
159 549 131 571 94 571 c 0
71 571 51 563 38 547 c 0
33 541 32 540 26 521 c 0
22 509 9 501 -4 501 c 0
-23 501 -38 516 -38 534 c 0
-38 554 -22 584 -1 603 c 0
24 625 59 638 95 638 c 0
170 638 226 587 226 518 c 0
226 467 203 440 54 315 c 1
477 226 m 2
502 226 l 2
529 226 553 247 553 270 c 0
553 296 528 312 490 312 c 0
457 312 442 306 423 285 c 0
417 279 408 275 399 275 c 0
381 275 366 291 366 309 c 0
366 346 427 379 493 379 c 0
566 379 620 333 620 271 c 0
620 240 602 211 572 192 c 2
572 192 570 191 569 190 c 1
610 169 633 135 633 97 c 0
633 64 615 29 587 8 c 0
561 -11 526 -20 476 -20 c 0
398 -20 348 1 348 34 c 0
348 53 363 68 381 68 c 0
389 68 393 67 403 60 c 0
418 50 436 47 474 47 c 0
534 47 566 65 566 99 c 0
566 120 548 141 522 153 c 0
510 158 505 159 477 160 c 0
456 162 443 174 443 193 c 0
443 212 458 226 477 226 c 2
474 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 66 145 84 c 0
145 91 147 97 155 110 c 2
416 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 549 480 539 474 528 c 2
EndSplineSet
EndChar
StartChar: uni2155
Encoding: 8533 8533
Width: 600
Flags: W
HStem: -25 67<472 494> 179 67<510 515> 247 67<-2 66 134 193> 297 67<460 578>
VStem: 67 67<314 550> 392 67<237 297> 392 224<327 332> 575 67<103 119>
DStem: 415 561 473 528 155 110 213 77
Fore
459 297 m 1
459 236 l 1
481 242 495 246 513 246 c 0
587 246 642 186 642 108 c 0
642 72 630 40 608 17 c 0
581 -13 546 -25 489 -25 c 0
415 -25 359 1 359 36 c 0
359 52 373 71 390 71 c 0
398 71 403 70 412 62 c 0
430 47 448 42 488 42 c 0
546 42 575 65 575 107 c 0
575 147 553 179 512 179 c 0
492 179 465 172 439 158 c 0
431 155 426 153 420 153 c 0
402 153 392 171 392 191 c 2
392 364 l 1
576 364 l 2
592 364 595 365 604 358 c 24
613 350 616 340 616 330 c 0
616 320 611 308 601 302 c 0
597 299 589 297 576 297 c 2
459 297 l 1
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
MinimumDistance: x29,26 x29,28 x22,25 x22,23
EndChar
StartChar: uni2156
Encoding: 8534 8534
Width: 600
Flags: W
HStem: -25 67<472 494> 179 67<510 515> 248 67<55 163> 248 99<190 198> 297 67<460 578> 571 67<80.2939 97>
VStem: -50 280<249 315> 159 67<517 530> 392 67<237 297> 392 224<327 332> 575 67<103 119>
DStem: 415 561 473 528 155 110 213 77
Fore
54 315 m 1
163 315 l 1
166 336 177 347 196 347 c 0
219 347 230 333 230 304 c 2
230 248 l 1
-50 248 l 1
-50 316 l 1
136 470 159 493 159 521 c 0
159 549 131 571 94 571 c 0
71 571 51 563 38 547 c 0
33 541 32 540 26 521 c 0
22 509 9 501 -4 501 c 0
-23 501 -38 516 -38 534 c 0
-38 554 -22 584 -1 603 c 0
24 625 59 638 95 638 c 0
170 638 226 587 226 518 c 0
226 467 203 440 54 315 c 1
459 297 m 1
459 236 l 1
481 242 495 246 513 246 c 0
587 246 642 186 642 108 c 0
642 72 630 40 608 17 c 0
581 -13 546 -25 489 -25 c 0
415 -25 359 1 359 36 c 0
359 52 373 71 390 71 c 0
398 71 403 70 412 62 c 0
430 47 448 42 488 42 c 0
546 42 575 65 575 107 c 0
575 147 553 179 512 179 c 0
492 179 465 172 439 158 c 0
431 155 426 153 420 153 c 0
402 153 392 171 392 191 c 2
392 364 l 1
576 364 l 2
592 364 595 365 604 358 c 24
613 350 616 340 616 330 c 0
616 320 611 308 601 302 c 0
597 299 589 297 576 297 c 2
459 297 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
EndChar
StartChar: uni2157
Encoding: 8535 8535
Width: 600
Flags: W
HStem: -25 67<469 501> 179 67<501 517> 238 67<69 104> 297 67<460 581> 570 67<83 113>
VStem: 162 67<527 535> 175 67<354 365> 392 67<237 297> 392 224<325 332> 575 67<103 119>
DStem: 415 561 473 528 155 110 213 77
Fore
86 484 m 2
111 484 l 2
138 484 162 505 162 528 c 0
162 554 137 570 99 570 c 0
66 570 51 564 32 543 c 0
26 537 17 533 8 533 c 0
-10 533 -25 549 -25 567 c 0
-25 604 36 637 102 637 c 0
175 637 229 591 229 529 c 0
229 498 211 469 181 450 c 2
181 450 179 449 178 448 c 1
219 427 242 393 242 355 c 0
242 322 224 287 196 266 c 0
170 247 135 238 85 238 c 0
7 238 -43 259 -43 292 c 0
-43 311 -28 326 -10 326 c 0
-2 326 2 325 12 318 c 0
27 308 45 305 83 305 c 0
143 305 175 323 175 357 c 0
175 378 157 399 131 411 c 0
119 416 114 417 86 418 c 0
65 420 52 432 52 451 c 0
52 470 67 484 86 484 c 2
459 297 m 1
459 236 l 1
481 242 495 246 513 246 c 0
587 246 642 186 642 108 c 0
642 72 630 40 608 17 c 0
581 -13 546 -25 489 -25 c 0
415 -25 359 1 359 36 c 0
359 52 373 71 390 71 c 0
398 71 403 70 412 62 c 0
430 47 448 42 488 42 c 0
546 42 575 65 575 107 c 0
575 147 553 179 512 179 c 0
492 179 465 172 439 158 c 0
431 155 426 153 420 153 c 0
402 153 392 171 392 191 c 2
392 364 l 1
576 364 l 2
592 364 595 365 604 358 c 24
613 350 616 340 616 330 c 0
616 320 611 308 601 302 c 0
597 299 589 297 576 297 c 2
459 297 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
EndChar
StartChar: uni2158
Encoding: 8536 8536
Width: 600
Flags: W
HStem: -25 67<472 495> 179 67<497.955 515> 247 67<98.013 129> 247 380<130 197> 297 67<460 578> 330 67<52 129>
VStem: -33 267<357 366> 68 166<279 283> 130 67<314 330 398 525> 392 67<237 297> 392 224<327 332> 575 67<103 119>
DStem: 113 627 130 526 -33 385 51 397 415 561 473 528 155 110 213 77
Fore
197 627 m 1
197 397 l 1
220 396 234 384 234 364 c 0
234 344 221 331 197 330 c 1
197 314 l 1
220 313 234 301 234 281 c 0
234 259 218 247 190 247 c 2
111 247 l 2
83 247 68 259 68 281 c 0
68 303 82 314 111 314 c 2
130 314 l 1
130 330 l 1
-33 330 l 1
-33 385 l 1
113 627 l 1
197 627 l 1
130 397 m 1
130 526 l 1
51 397 l 1
130 397 l 1
459 297 m 1
459 236 l 1
481 242 495 246 513 246 c 0
587 246 642 186 642 108 c 0
642 72 630 40 608 17 c 0
581 -13 546 -25 489 -25 c 0
415 -25 359 1 359 36 c 0
359 52 373 71 390 71 c 0
398 71 403 70 412 62 c 0
430 47 448 42 488 42 c 0
546 42 575 65 575 107 c 0
575 147 553 179 512 179 c 0
492 179 465 172 439 158 c 0
431 155 426 153 420 153 c 0
402 153 392 171 392 191 c 2
392 364 l 1
576 364 l 2
592 364 595 365 604 358 c 24
613 350 616 340 616 330 c 0
616 320 611 308 601 302 c 0
597 299 589 297 576 297 c 2
459 297 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
MinimumDistance: y13,11 x11,13 x11,12 x10,7 x10,9
EndChar
StartChar: uni2159
Encoding: 8537 8537
Width: 600
Flags: W
HStem: -12 67<472 486> 173 67<472 486> 247 67<-2 66 134 193> 318 69<526 542>
VStem: 67 67<314 550> 533 67<109 124>
DStem: 415 561 473 528 155 110 213 77
Fore
404 198 m 1
433 229 453 240 484 240 c 0
548 240 600 182 600 113 c 0
600 78 589 47 568 24 c 0
546 0 517 -12 476 -12 c 0
425 -12 386 9 363 51 c 0
347 80 335 127 335 171 c 0
335 226 353 273 384 312 c 0
425 362 476 387 532 387 c 0
575 387 603 368 603 344 c 0
603 327 589 310 572 310 c 0
567 310 560 311 551 315 c 0
544 317 541 318 535 318 c 0
478 318 418 273 404 198 c 1
410 125 m 1
419 72 442 55 478 55 c 0
511 55 533 81 533 113 c 0
533 145 510 173 480 173 c 0
454 173 426 155 410 125 c 1
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
MinimumDistance: x25,22 x25,24 x18,21 x18,19
EndChar
StartChar: uni215A
Encoding: 8538 8538
Width: 600
Flags: W
HStem: -12 67<472 486> 173 67<472 486> 235 67<76 108> 318 69<524 540> 439 67<108 124> 557 67<65 188>
VStem: -3 67<497 557> -3 224<586 596> 180 67<356 372> 533 67<109 124>
DStem: 415 561 473 528 155 110 213 77
Fore
64 557 m 1
64 496 l 1
86 502 100 506 118 506 c 0
192 506 247 446 247 368 c 0
247 332 235 300 213 277 c 0
186 247 151 235 94 235 c 0
20 235 -36 261 -36 296 c 0
-36 312 -22 331 -5 331 c 0
3 331 8 330 17 322 c 0
35 307 53 302 93 302 c 0
151 302 180 325 180 367 c 0
180 407 158 439 117 439 c 0
97 439 70 432 44 418 c 0
36 415 31 413 25 413 c 0
7 413 -3 431 -3 451 c 2
-3 624 l 1
181 624 l 2
197 624 200 625 209 618 c 24
218 610 221 600 221 590 c 0
221 580 216 568 206 562 c 0
202 559 194 557 181 557 c 2
64 557 l 1
404 198 m 1
433 229 453 240 484 240 c 0
548 240 600 182 600 113 c 0
600 78 589 47 568 24 c 0
546 0 517 -12 476 -12 c 0
425 -12 386 9 363 51 c 0
347 80 335 127 335 171 c 0
335 226 353 273 384 312 c 0
425 362 476 387 532 387 c 0
575 387 603 368 603 344 c 0
603 327 589 310 572 310 c 0
567 310 560 311 551 315 c 0
544 317 541 318 535 318 c 0
478 318 418 273 404 198 c 1
410 125 m 1
419 72 442 55 478 55 c 0
511 55 533 81 533 113 c 0
533 145 510 173 480 173 c 0
454 173 426 155 410 125 c 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
EndChar
StartChar: oneeighth
Encoding: 8539 8539
Width: 600
Flags: W
HStem: -17 67<478 494> 150 68<483 494> 247 67<-2 66 134 193> 315 67<478 494>
VStem: 67 67<314 550> 358 67<92 100> 363 67<266 273> 550 67<266 273> 555 67<92 100>
DStem: 415 561 473 528 155 110 213 77
Fore
563 187 m 1
602 163 622 131 622 93 c 0
622 28 569 -17 489 -17 c 0
411 -17 358 28 358 93 c 0
358 131 378 163 417 187 c 1
380 211 363 238 363 270 c 0
363 332 419 382 490 382 c 0
560 382 617 332 617 271 c 0
617 238 600 211 563 187 c 1
490 315 m 0
456 315 430 295 430 268 c 0
430 241 456 218 490 218 c 0
524 218 550 240 550 267 c 0
550 294 524 315 490 315 c 0
490 150 m 0
456 150 425 125 425 98 c 0
425 71 453 50 490 50 c 0
527 50 555 70 555 97 c 0
555 124 524 150 490 150 c 0
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 6
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
MinimumDistance: x24,21 x24,23 x17,20 x17,18
EndChar
StartChar: threeeighths
Encoding: 8540 8540
Width: 600
Flags: W
HStem: -17 67<483 501> 150 68<483 501> 238 67<69 104> 315 67<483 501> 570 67<83 113>
VStem: 162 67<527 534> 175 67<351 359> 358 67<92 100> 363 67<265 273> 550 67<265 273> 555 67<92 100>
DStem: 415 561 473 528 155 110 213 77
Fore
86 484 m 2
111 484 l 2
138 484 162 505 162 528 c 0
162 554 137 570 99 570 c 0
66 570 51 564 32 543 c 0
26 537 17 533 8 533 c 0
-10 533 -25 549 -25 567 c 0
-25 604 36 637 102 637 c 0
175 637 229 591 229 529 c 0
229 498 211 469 181 450 c 2
181 450 179 449 178 448 c 1
219 427 242 393 242 355 c 0
242 322 224 287 196 266 c 0
170 247 135 238 85 238 c 0
7 238 -43 259 -43 292 c 0
-43 311 -28 326 -10 326 c 0
-2 326 2 325 12 318 c 0
27 308 45 305 83 305 c 0
143 305 175 323 175 357 c 0
175 378 157 399 131 411 c 0
119 416 114 417 86 418 c 0
65 420 52 432 52 451 c 0
52 470 67 484 86 484 c 2
563 187 m 1
602 163 622 131 622 93 c 0
622 28 569 -17 489 -17 c 0
411 -17 358 28 358 93 c 0
358 131 378 163 417 187 c 1
380 211 363 238 363 270 c 0
363 332 419 382 490 382 c 0
560 382 617 332 617 271 c 0
617 238 600 211 563 187 c 1
490 315 m 0
456 315 430 295 430 268 c 0
430 241 456 218 490 218 c 0
524 218 550 240 550 267 c 0
550 294 524 315 490 315 c 0
490 150 m 0
456 150 425 125 425 98 c 0
425 71 453 50 490 50 c 0
527 50 555 70 555 97 c 0
555 124 524 150 490 150 c 0
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 6
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
EndChar
StartChar: fiveeighths
Encoding: 8541 8541
Width: 600
Flags: W
HStem: -17 67<483 492> 150 68<483 492> 235 67<76 108> 315 67<483 492> 439 67<108 124> 557 67<65 188>
VStem: -3 67<497 557> -3 224<586 592> 180 67<354.145 381> 358 67<92 100> 363 67<266 276> 550 67<266 276> 555 67<92 100>
DStem: 415 561 473 528 155 110 213 77
Fore
64 557 m 1
64 496 l 1
86 502 100 506 118 506 c 0
192 506 247 446 247 368 c 0
247 332 235 300 213 277 c 0
186 247 151 235 94 235 c 0
20 235 -36 261 -36 296 c 0
-36 312 -22 331 -5 331 c 0
3 331 8 330 17 322 c 0
35 307 53 302 93 302 c 0
151 302 180 325 180 367 c 0
180 407 158 439 117 439 c 0
97 439 70 432 44 418 c 0
36 415 31 413 25 413 c 0
7 413 -3 431 -3 451 c 2
-3 624 l 1
181 624 l 2
197 624 200 625 209 618 c 24
218 610 221 600 221 590 c 0
221 580 216 568 206 562 c 0
202 559 194 557 181 557 c 2
64 557 l 1
563 187 m 1
602 163 622 131 622 93 c 0
622 28 569 -17 489 -17 c 0
411 -17 358 28 358 93 c 0
358 131 378 163 417 187 c 1
380 211 363 238 363 270 c 0
363 332 419 382 490 382 c 0
560 382 617 332 617 271 c 0
617 238 600 211 563 187 c 1
490 315 m 0
456 315 430 295 430 268 c 0
430 241 456 218 490 218 c 0
524 218 550 240 550 267 c 0
550 294 524 315 490 315 c 0
490 150 m 0
456 150 425 125 425 98 c 0
425 71 453 50 490 50 c 0
527 50 555 70 555 97 c 0
555 124 524 150 490 150 c 0
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 2
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
EndChar
StartChar: seveneighths
Encoding: 8542 8542
Width: 600
Flags: W
HStem: -17 67<483 503> 150 68<483 492> 315 67<483 492> 560 67<68 199>
VStem: 7 265<566 626> 358 67<92 100> 363 67<266 276> 550 67<266 276> 555 67<92 100>
DStem: 200 560 272 566 112 297 175 276 415 561 473 528 155 110 213 77
Fore
200 560 m 1
68 560 l 1
67 538 57 527 38 527 c 0
28 527 17 532 12 541 c 0
9 547 7 552 7 567 c 2
7 627 l 1
272 627 l 1
272 566 l 1
175 276 l 2
168 254 159 246 143 246 c 0
126 246 108 260 108 276 c 0
108 281 108 286 112 297 c 2
200 560 l 1
563 187 m 1
602 163 622 131 622 93 c 0
622 28 569 -17 489 -17 c 0
411 -17 358 28 358 93 c 0
358 131 378 163 417 187 c 1
380 211 363 238 363 270 c 0
363 332 419 382 490 382 c 0
560 382 617 332 617 271 c 0
617 238 600 211 563 187 c 1
490 315 m 0
456 315 430 295 430 268 c 0
430 241 456 218 490 218 c 0
524 218 550 240 550 267 c 0
550 294 524 315 490 315 c 0
490 150 m 0
456 150 425 125 425 98 c 0
425 71 453 50 490 50 c 0
527 50 555 70 555 97 c 0
555 124 524 150 490 150 c 0
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 6
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
EndChar
StartChar: uni215F
Encoding: 8543 8543
Width: 600
Flags: W
HStem: 247 67<-2 66 134 193>
VStem: 67 67<314 550>
DStem: 415 561 473 528 155 110 213 77
Fore
134 638 m 1
134 314 l 1
191 314 l 2
220 314 234 303 234 281 c 0
234 259 219 247 191 247 c 2
10 247 l 2
-18 247 -34 259 -34 281 c 0
-34 303 -20 314 10 314 c 2
67 314 l 1
67 551 l 1
19 539 l 2
8 536 5 535 -1 535 c 0
-18 535 -32 551 -32 570 c 0
-32 589 -23 597 2 604 c 2
134 638 l 1
473 528 m 2
213 77 l 2
202 58 193 51 179 51 c 0
161 51 145 67 145 84 c 0
145 90 148 99 155 110 c 6
415 561 l 2
427 581 435 587 450 587 c 0
467 587 484 571 484 555 c 0
484 548 481 541 473 528 c 2
EndSplineSet
MinimumDistance: x14,-1 x8,5 x8,7 x1,4 x1,2
EndChar
StartChar: arrowleft
Encoding: 8592 8592
Width: 600
Flags: W
HStem: 237 86<303 528>
Fore
302 323 m 1
518 323 l 2
551 323 570 307 570 280 c 0
570 253 551 237 518 237 c 2
302 237 l 1
357 207 l 2
380 195 389 183 389 164 c 0
389 159 387 152 384 145 c 2
383 143 l 2
377 129 361 118 347 118 c 0
339 118 328 121 317 127 c 2
16 280 l 1
317 428 l 2
329 434 339 437 347 437 c 0
361 437 377 426 383 412 c 2
384 410 l 2
387 404 389 397 389 391 c 0
389 372 380 360 357 348 c 2
302 323 l 1
EndSplineSet
EndChar
StartChar: arrowup
Encoding: 8593 8593
Width: 600
Flags: W
VStem: 258 86<48 267>
Fore
258 268 m 1
232 212 l 2
220 190 208 180 190 180 c 0
184 180 176 182 170 186 c 2
168 186 l 2
154 192 144 208 144 222 c 0
144 230 146 240 152 252 c 2
300 554 l 1
454 252 l 2
460 242 462 230 462 222 c 0
462 208 452 192 438 186 c 2
436 186 l 2
428 182 422 180 416 180 c 0
398 180 386 190 374 212 c 2
344 268 l 1
344 52 l 2
344 18 328 0 300 0 c 0
274 0 258 18 258 52 c 2
258 268 l 1
EndSplineSet
MinimumDistance: x14,-1
EndChar
StartChar: arrowright
Encoding: 8594 8594
Width: 600
Flags: W
HStem: 237 86<78 286>
DStem: 243 348 283 428 375 280 584 280
Fore
375 280 m 1
243 348 l 2
220 360 211 372 211 391 c 0
211 397 213 404 216 410 c 2
217 412 l 2
223 426 239 437 253 437 c 0
261 437 271 434 283 428 c 2
584 280 l 1
283 127 l 2
272 121 261 118 253 118 c 0
239 118 223 129 217 143 c 2
216 145 l 2
213 152 211 159 211 164 c 0
211 183 220 195 243 207 c 2
375 280 l 1
82 237 m 2
49 237 30 253 30 280 c 0
30 307 49 323 82 323 c 2
475 323 l 2
509 323 528 307 528 280 c 0
528 253 509 237 475 237 c 2
82 237 l 2
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: arrowdown
Encoding: 8595 8595
Width: 600
Flags: W
VStem: 258 86<287 512>
Fore
258 286 m 1
258 502 l 2
258 536 274 554 300 554 c 0
328 554 344 536 344 502 c 2
344 286 l 1
374 342 l 2
386 364 398 374 416 374 c 0
422 374 428 372 436 368 c 2
438 368 l 2
452 362 462 346 462 332 c 0
462 324 460 312 454 302 c 2
300 0 l 1
152 302 l 2
146 314 144 324 144 332 c 0
144 346 154 362 168 368 c 2
170 368 l 2
176 372 184 374 190 374 c 0
208 374 220 364 232 342 c 2
258 286 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: partialdiff
Encoding: 8706 8706
Width: 600
Flags: HMW
HStem: -16 100<282.5 348.5> 303 100<282.5 319.5> 570 20<175 232>
VStem: 102 100<162.5 226> 424 100<159.5 224.5>
Fore
132 541 m 1
131 547 l 2
129 558 138 574 149 582 c 0
158 588 167 590 183 590 c 0
281 590 363 554 425 484 c 0
485 415 524 311 524 219 c 0
524 75 441 -16 309 -16 c 0
188 -16 102 72 102 195 c 0
102 318 186 403 306 403 c 0
333 403 356 399 375 390 c 1
340 452 268 490 184 491 c 0
167 491 161 492 152 498 c 0
141 505 132 520 132 532 c 2
132 541 l 1
315 303 m 0
250 303 202 257 202 195 c 0
202 130 249 84 316 84 c 0
381 84 424 127 424 192 c 0
424 257 379 303 315 303 c 0
EndSplineSet
EndChar
StartChar: emptyset
Encoding: 8709 8709
Width: 600
Flags: W
HStem: -15 100<291 307> 538 100<291 307>
VStem: 83 100<239 383> 417 100<239 383>
DStem: 416 651 505 610 95 -27 185 -69
Fore
505 610 m 1
185 -69 l 1
170 -103 157 -113 133 -113 c 0
107 -113 83 -90 83 -65 c 0
83 -55 86 -45 95 -27 c 2
416 651 l 1
431 685 444 695 467 695 c 0
494 695 517 672 517 647 c 0
517 636 515 630 505 610 c 1
517 359 m 2
517 264 l 2
517 173 489 92 439 40 c 0
405 4 357 -15 300 -15 c 0
243 -15 195 4 161 40 c 0
111 92 83 173 83 264 c 2
83 359 l 2
83 450 111 531 161 583 c 0
195 619 243 638 300 638 c 0
357 638 405 619 439 583 c 0
489 531 517 450 517 359 c 2
183 366 m 2
183 257 l 2
183 153 229 85 300 85 c 0
371 85 417 153 417 257 c 2
417 366 l 2
417 470 371 538 300 538 c 0
229 538 183 470 183 366 c 2
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: Delta
Encoding: 8710 8710
Width: 600
Flags: HMW
HStem: 0 100<164 436> 563 20<263 338 338 338>
Fore
15 0 m 1
263 583 l 1
338 583 l 1
585 0 l 1
15 0 l 1
164 100 m 1
436 100 l 1
300 421 l 1
164 100 l 1
EndSplineSet
EndChar
StartChar: gradient
Encoding: 8711 8711
Width: 600
Flags: W
HStem: 0 20<263 338 338 338> 483 100<164 436>
Ref: 8710 N 1 0 0 -1 0 583
EndChar
StartChar: summation
Encoding: 8721 8721
Width: 600
Flags: HMW
HStem: -97 100<157 441> 571 100<165 433 165 165>
Fore
433 571 m 1
165 571 l 1
308 332 l 2
316 318 319 310 319 301 c 0
319 292 317 286 309 272 c 2
157 3 l 1
441 3 l 1
445 82 l 1
446 115 462 133 489 133 c 2
491 133 l 2
519 133 534 115 535 81 c 1
537 -44 l 1
538 -81 522 -97 485 -97 c 2
98 -97 l 2
64 -97 45 -81 45 -53 c 2
45 -28 l 2
45 -7 45 -7 55 11 c 2
215 302 l 1
56 562 l 2
45 580 45 581 45 602 c 2
45 627 l 2
45 655 64 671 98 671 c 2
482 671 l 2
518 671 534 656 534 622 c 2
534 617 l 1
530 492 l 1
529 459 514 441 487 441 c 2
483 441 l 2
456 441 441 457 439 490 c 1
433 571 l 1
EndSplineSet
EndChar
StartChar: minus
Encoding: 8722 8722
Width: 600
Flags: HMW
HStem: 230 100<108 492>
Fore
108 330 m 2
492 330 l 2
519 330 527 328 537 321 c 0
550 311 558 296 558 280 c 0
558 263 549 246 534 237 c 0
526 232 514 230 492 230 c 2
108 230 l 2
84 230 72 232 63 240 c 1
50 249 42 264 42 280 c 0
42 297 51 314 66 323 c 0
75 329 83 330 108 330 c 2
EndSplineSet
EndChar
StartChar: uni2215
Encoding: 8725 8725
Width: 600
Flags: W
DStem: 416 651 505 610 95 -27 185 -69
Ref: 47 N 1 0 0 1 0 0
EndChar
StartChar: radical
Encoding: 8730 8730
Width: 600
Flags: HMW
HStem: 251 86<65 104> 611 86<446 589 446 446>
Fore
177 337 m 1
210 216 l 1
377 697 l 1
589 697 l 2
623 697 642 681 642 654 c 0
642 627 623 611 589 611 c 2
446 611 l 1
202 -60 l 1
104 251 l 1
65 251 l 2
31 251 12 267 12 294 c 0
12 321 31 337 65 337 c 2
177 337 l 1
EndSplineSet
EndChar
StartChar: proportional
Encoding: 8733 8733
Width: 600
Flags: W
HStem: 124 96<209 219 478 518> 404 96<209 219 478 518>
VStem: 51 81<300 316>
Fore
132 312 m 0
132 248 165 220 216 220 c 0
267 220 313 312 313 312 c 1
313 312 267 404 217 404 c 0
165 404 132 376 132 312 c 0
516 404 m 2
479 404 l 2
429 404 383 312 383 312 c 1
383 312 429 220 480 220 c 2
516 220 l 2
542.496 220 564 198.496 564 172 c 0
564 145.504 542.496 124 516 124 c 2
484 124 l 2
431 124 388 152 348 212 c 1
308 152 265 124 212 124 c 0
110 124 51 196 51 312 c 0
51 426 110 500 210 500 c 0
265 500 308 470 348 410 c 1
388 470 431 500 486 500 c 2
516 500 l 2
542.496 500 564 478.496 564 452 c 0
564 425.504 542.496 404 516 404 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: infinity
Encoding: 8734 8734
Width: 600
Flags: W
HStem: 124 94<161 171 430 440> 404 96<161 171 430 440>
VStem: 3 81<300 316> 516 81<300 316>
Fore
300 410 m 1
340 470 383 500 438 500 c 0
538 500 597 426 597 312 c 0
597 196 538 124 436 124 c 0
383 124 340 152 300 212 c 1
260 152 217 124 164 124 c 0
62 124 3 196 3 312 c 0
3 426 62 500 162 500 c 0
217 500 260 470 300 410 c 1
516 312 m 0
516 376 483 404 431 404 c 0
381 404 335 312 335 312 c 1
335 312 381 218 432 218 c 0
483 218 516 248 516 312 c 0
84 312 m 0
84 248 117 218 168 218 c 0
219 218 265 312 265 312 c 1
265 312 219 404 169 404 c 0
117 404 84 376 84 312 c 0
EndSplineSet
MinimumDistance: x2,-1
Back
300 349 m 1
336 421 379 468 440 468 c 1
530 468 595 398 595 302 c 0
595 206 530 134 440 134 c 1
379 134 336 182 300 252 c 1
264 182 221 134 160 134 c 1
70 134 5 206 5 302 c 0
5 398 70 468 160 468 c 1
221 468 264 421 300 349 c 1
554 302 m 0
554 378 508 428 437 428 c 1
372 428 320 302 320 302 c 1
320 302 372 176 438 176 c 1
508 176 554 226 554 302 c 0
46 302 m 0
46 226 92 176 162 176 c 1
228 176 280 302 280 302 c 1
280 302 228 428 163 428 c 1
92 428 46 378 46 302 c 0
EndSplineSet
EndChar
StartChar: orthogonal
Encoding: 8735 8735
Width: 600
Flags: W
HStem: 0 100<200 485>
VStem: 100 100<100 385>
Fore
200 100 m 1
483 100 l 2
511 100 533 78 533 50 c 0
533 22 511 0 483 0 c 2
100 0 l 1
100 383 l 2
100 411 122 433 150 433 c 0
178 433 200 411 200 383 c 2
200 100 l 1
EndSplineSet
MinimumDistance: x1,-1 y0,5 y0,7 x0,3 x0,1
EndChar
StartChar: notequal
Encoding: 8800 8800
Width: 600
Flags: HMW
HStem: 138 100<108 171 335 492> 322 100<108 271 434 492>
Fore
434 422 m 1
492 422 l 2
519 422 527 420 537 413 c 0
550 403 558 388 558 372 c 0
558 355 549 338 534 329 c 0
526 324 514 322 492 322 c 2
380 322 l 1
335 238 l 1
492 238 l 2
519 238 527 236 537 229 c 0
550 219 558 204 558 188 c 0
558 171 549 154 534 145 c 0
526 140 514 138 492 138 c 2
281 138 l 1
235 52 l 1
224 33 208 22 189 22 c 0
164 22 141 43 141 66 c 0
141 75 145 89 150 98 c 2
171 138 l 1
108 138 l 2
84 138 72 140 63 148 c 1
50 157 42 173 42 188 c 0
42 205 52 222 66 231 c 0
75 237 83 238 108 238 c 2
225 238 l 1
271 322 l 1
108 322 l 2
84 322 72 324 63 332 c 1
50 341 42 357 42 372 c 0
42 389 52 406 66 415 c 0
75 421 83 422 108 422 c 2
325 422 l 1
363 493 l 2
373 512 392 525 407 525 c 0
433 525 456 502 456 476 c 0
456 466 454 458 448 447 c 2
434 422 l 1
EndSplineSet
EndChar
StartChar: equivalence
Encoding: 8801 8801
Width: 600
Flags: W
HStem: 138 100<90 506> 322 100<90 506>
VStem: 42 516<186 190 362.2 378>
Fore
108 422 m 2
492 422 l 2
519 422 527 420 537 413 c 0
550 403 558 388 558 372 c 0
558 355 549 338 534 329 c 0
526 324 514 322 492 322 c 2
108 322 l 2
84 322 72 324 63 332 c 1
50 341 42 356 42 372 c 0
42 389 51 406 66 415 c 0
75 421 83 422 108 422 c 2
108 238 m 2
492 238 l 2
519 238 527 236 537 229 c 0
550 219 558 204 558 188 c 0
558 171 549 154 534 145 c 0
526 140 514 138 492 138 c 2
108 138 l 2
84 138 72 140 63 148 c 1
50 157 42 172 42 188 c 0
42 205 51 222 66 231 c 0
75 237 83 238 108 238 c 2
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: lessequal
Encoding: 8804 8804
Width: 600
Flags: HMW
HStem: 0 86<94 487> 571 20<503.5 514>
Fore
212 368 m 1
515 230 l 2
539 219 549 206 549 187 c 0
549 181 547 175 545 168 c 1
544 167 l 1
538 153 521 141 507 141 c 0
500 141 489 144 478 149 c 2
3 369 l 1
478 583 l 2
490 588 500 591 507 591 c 0
521 591 538 579 544 566 c 2
545 564 l 2
548 558 549 551 549 545 c 0
549 526 539 513 515 502 c 2
212 368 l 1
487 0 m 2
94 0 l 2
60 0 41 16 41 43 c 0
41 70 60 86 94 86 c 2
487 86 l 2
520 86 539 70 539 43 c 0
539 16 520 0 487 0 c 2
EndSplineSet
EndChar
StartChar: greaterequal
Encoding: 8805 8805
Width: 600
Flags: HMW
HStem: 0 86<97 491> 571 20<70 80.5>
Fore
582 369 m 1
106 149 l 2
95 144 84 141 77 141 c 0
63 141 47 152 40 167 c 1
39 168 l 1
36 175 35 181 35 187 c 0
35 206 45 219 69 230 c 2
372 368 l 1
69 502 l 2
45 513 35 526 35 546 c 0
35 552 36 558 39 564 c 2
40 566 l 2
47 580 63 591 77 591 c 0
84 591 94 588 106 583 c 2
582 369 l 1
97 86 m 2
491 86 l 2
524 86 543 70 543 43 c 0
543 16 524 0 491 0 c 2
97 0 l 2
63 0 44 16 44 43 c 0
44 70 63 86 97 86 c 2
EndSplineSet
EndChar
StartChar: revlogicalnot
Encoding: 8976 8976
Width: 600
Flags: W
HStem: 345 100<142 399>
VStem: 42 100<181 345 345 345>
Ref: 172 N -1 0 0 1 507 0
EndChar
StartChar: SF100000
Encoding: 9472 9472
Width: 600
Flags: W
HStem: 250 100<1 599>
VStem: 0 600<251 349>
Fore
0 350 m 1
600 350 l 1
600 250 l 1
-0 250 l 1
0 350 l 1
EndSplineSet
EndChar
StartChar: uni2501
Encoding: 9473 9473
Width: 600
Flags: W
HStem: 200 200<1 599>
VStem: 0 600<201 399>
Fore
0 400 m 1
600 400 l 1
600 200 l 1
0 200 l 1
0 400 l 1
EndSplineSet
EndChar
StartChar: SF110000
Encoding: 9474 9474
Width: 600
Flags: W
HStem: -200 1000<251 349>
VStem: 250 100<-199 799>
Fore
350 800 m 1
350 -200 l 1
250 -200 l 1
250 800 l 1
350 800 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2503
Encoding: 9475 9475
Width: 600
Flags: W
HStem: -200 1000<201 399>
VStem: 200 200<-199 799>
Fore
400 800 m 1
400 -200 l 1
200 -200 l 1
200 800 l 1
400 800 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2504
Encoding: 9476 9476
Width: 600
Flags: W
HStem: 250 100<1 99 201 399 501 599>
VStem: 0 100<251 349> 200 200<251 349> 500 100<251 349>
Fore
500 350 m 1
600 350 l 1
600 250 l 1
500 250 l 1
500 350 l 1
400 250 m 1
200 250 l 1
200 350 l 1
400 350 l 1
400 250 l 1
100 250 m 1
0 250 l 1
0 350 l 1
100 350 l 1
100 250 l 1
EndSplineSet
EndChar
StartChar: uni2505
Encoding: 9477 9477
Width: 600
Flags: W
HStem: 200 200<1 99 201 399 501 599>
VStem: 0 100<201 399> 200 200<201 399> 500 100<201 399>
Fore
500 400 m 1
600 400 l 1
600 200 l 5
500 200 l 5
500 400 l 1
400 200 m 5
200 200 l 5
200 400 l 1
400 400 l 1
400 200 l 5
100 200 m 5
0 200 l 5
0 400 l 1
100 400 l 1
100 200 l 5
EndSplineSet
EndChar
StartChar: uni2506
Encoding: 9478 9478
Width: 600
Flags: W
HStem: -200 200<251 349> 100 400<251 349> 600 200<251 349>
VStem: 250 100<-199 -1 101 499 601 799>
Fore
350 500 m 5
350 100 l 5
250 100 l 1
250 500 l 1
350 500 l 5
250 600 m 1
250 800 l 1
350 800 l 5
350 600 l 5
250 600 l 1
350 0 m 5
350 -200 l 5
250 -200 l 1
250 0 l 1
350 0 l 5
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2507
Encoding: 9479 9479
Width: 600
Flags: W
HStem: -200 200<201 399> 100 400<201 399> 600 200<201 399>
VStem: 200 200<-199 -1 101 499 601 799>
Fore
400 500 m 5
400 100 l 5
200 100 l 1
200 500 l 1
400 500 l 5
200 600 m 1
200 800 l 1
400 800 l 5
400 600 l 5
200 600 l 1
400 0 m 5
400 -200 l 5
200 -200 l 1
200 0 l 1
400 0 l 5
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2508
Encoding: 9480 9480
Width: 600
Flags: W
HStem: 250 100<1 64 136 264 336 464 536 599>
VStem: 0 65<251 349> 135 130<251 349> 335 130<251 349> 535 65<251 349>
Fore
465 250 m 5
335 250 l 5
335 350 l 1
465 350 l 1
465 250 l 5
535 350 m 1
600 350 l 1
600 250 l 5
535 250 l 5
535 350 l 1
265 250 m 5
135 250 l 5
135 350 l 1
265 350 l 1
265 250 l 5
65 250 m 5
0 250 l 5
0 350 l 1
65 350 l 1
65 250 l 5
EndSplineSet
EndChar
StartChar: uni2509
Encoding: 9481 9481
Width: 600
Flags: W
HStem: 200 200<1 64 136 264 336 464 536 599>
VStem: 0 65<201 399> 135 130<201 399> 335 130<201 399> 535 65<201 399>
Fore
465 200 m 1
335 200 l 1
335 400 l 1
465 400 l 1
465 200 l 1
535 400 m 1
600 400 l 1
600 200 l 1
535 200 l 1
535 400 l 1
265 200 m 1
135 200 l 1
135 400 l 1
265 400 l 1
265 200 l 1
65 200 m 1
0 200 l 1
0 400 l 1
65 400 l 1
65 200 l 1
EndSplineSet
EndChar
StartChar: uni250A
Encoding: 9482 9482
Width: 600
Flags: W
HStem: -200 103<251 349> 30 207<251 349> 364 207<251 349> 697 103<251 349>
VStem: 250 100<-199 -98 31 236 365 570 698 799>
Fore
350 571 m 1
350 364 l 1
250 364 l 5
250 571 l 5
350 571 l 1
350 237 m 1
350 30 l 1
250 30 l 5
250 237 l 5
350 237 l 1
250 697 m 5
250 800 l 5
350 800 l 1
350 697 l 1
250 697 l 5
350 -97 m 1
350 -200 l 1
250 -200 l 5
250 -97 l 5
350 -97 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni250B
Encoding: 9483 9483
Width: 600
Flags: W
HStem: -200 103<201 399> 30 207<201 399> 364 207<201 399> 697 103<201 399>
VStem: 200 200<-199 -98 31 236 365 570 698 799>
Fore
400 571 m 5
400 364 l 5
200 364 l 1
200 571 l 1
400 571 l 5
400 237 m 5
400 30 l 5
200 30 l 1
200 237 l 1
400 237 l 5
200 697 m 1
200 800 l 1
400 800 l 5
400 697 l 5
200 697 l 1
400 -97 m 5
400 -200 l 5
200 -200 l 1
200 -97 l 1
400 -97 l 5
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: SF010000
Encoding: 9484 9484
Width: 600
Flags: W
HStem: 250 100<351 599>
VStem: 250 100<-199 250> 250 350<251 349>
Fore
250 350 m 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 350 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: uni250D
Encoding: 9485 9485
Width: 600
Flags: W
HStem: 200 200<351 599>
VStem: 250 100<-199 200> 250 350<201 399>
Fore
250 400 m 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 400 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: uni250E
Encoding: 9486 9486
Width: 600
Flags: W
HStem: 250 100<401 599>
VStem: 200 200<-199 250> 200 400<251 349>
Fore
200 350 m 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 350 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: uni250F
Encoding: 9487 9487
Width: 600
Flags: W
HStem: 200 200<401 599>
VStem: 200 200<-199 200> 200 400<201 399>
Fore
200 400 m 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 400 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: SF030000
Encoding: 9488 9488
Width: 600
Flags: W
HStem: 250 100<1 249>
VStem: 250 100<-199 249>
Fore
350 350 m 1
350 -200 l 1
250 -200 l 1
250 250 l 1
-0 250 l 1
0 350 l 1
350 350 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2511
Encoding: 9489 9489
Width: 600
Flags: W
HStem: 200 200<1 249>
VStem: 250 100<-199 199>
Fore
350 400 m 1
350 -200 l 1
250 -200 l 1
250 200 l 1
0 200 l 1
0 400 l 1
350 400 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2512
Encoding: 9490 9490
Width: 600
Flags: W
HStem: 250 100<1 199>
VStem: 200 200<-199 249>
Fore
400 350 m 1
400 -200 l 1
200 -200 l 1
200 250 l 1
0 250 l 1
0 350 l 1
400 350 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2513
Encoding: 9491 9491
Width: 600
Flags: W
HStem: 200 200<1 199>
VStem: 200 200<-199 199>
Fore
400 400 m 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
400 400 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: SF020000
Encoding: 9492 9492
Width: 600
Flags: W
HStem: 250 100<350 599>
VStem: 250 100<350 799> 250 350<251 349>
Fore
250 250 m 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2515
Encoding: 9493 9493
Width: 600
Flags: W
HStem: 200 200<350 599>
VStem: 250 100<400 799> 250 350<201 399>
Fore
250 200 m 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
250 200 l 1
EndSplineSet
MinimumDistance: y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2516
Encoding: 9494 9494
Width: 600
Flags: W
HStem: 250 100<400 599>
VStem: 200 200<350 799> 200 400<251 349>
Fore
200 250 m 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
200 250 l 1
EndSplineSet
MinimumDistance: y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2517
Encoding: 9495 9495
Width: 600
Flags: W
HStem: 200 200<400 599>
VStem: 200 200<400 799> 200 400<201 399>
Fore
200 200 m 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
200 200 l 1
EndSplineSet
MinimumDistance: y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: SF040000
Encoding: 9496 9496
Width: 600
Flags: W
HStem: 250 100<1 250>
VStem: 250 100<351 799>
Fore
350 250 m 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 250 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: uni2519
Encoding: 9497 9497
Width: 600
Flags: W
HStem: 200 200<1 250>
VStem: 250 100<401 799>
Fore
350 200 m 1
0 200 l 1
0 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 200 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: uni251A
Encoding: 9498 9498
Width: 600
Flags: W
HStem: 250 100<1 200>
VStem: 200 200<351 799>
Fore
400 250 m 1
0 250 l 1
0 350 l 1
200 350 l 1
200 800 l 1
400 800 l 1
400 250 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: uni251B
Encoding: 9499 9499
Width: 600
Flags: W
HStem: 200 200<1 200>
VStem: 200 200<401 799>
Fore
400 200 m 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 200 l 1
EndSplineSet
MinimumDistance: x0,-1 y3,5 y3,4 x3,1 x3,2
EndChar
StartChar: SF080000
Encoding: 9500 9500
Width: 600
Flags: W
HStem: 250 100<350 599>
VStem: 250 100<-199 250 350 799> 250 350<251 349>
Fore
250 -200 m 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
EndSplineSet
MinimumDistance: y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni251D
Encoding: 9501 9501
Width: 600
Flags: W
HStem: 200 200<350 599>
VStem: 250 100<-199 200 400 799> 250 350<201 399>
Fore
250 -200 m 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
EndSplineSet
MinimumDistance: y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni251E
Encoding: 9502 9502
Width: 600
Flags: W
HStem: 250 100<400 599>
VStem: 200 200<350 799> 200 400<251 349> 250 100<-199 250>
Fore
250 250 m 1
200 250 l 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y7,9 y7,8 y4,2 y4,3 x4,6 x4,5
EndChar
StartChar: uni251F
Encoding: 9503 9503
Width: 600
Flags: W
HStem: 250 100<401 599>
VStem: 200 200<-199 250> 200 400<251 349> 250 100<350 799>
Fore
250 350 m 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 350 l 1
250 350 l 1
EndSplineSet
MinimumDistance: y6,8 y6,7 y0,2 y0,1 y8,0 x0,8 x0,9 x6,4 x6,5
EndChar
StartChar: uni2520
Encoding: 9504 9504
Width: 600
Flags: W
HStem: 250 100<400 599>
VStem: 200 200<-199 250 350 799> 200 400<251 349>
Fore
400 250 m 1
400 -200 l 1
200 -200 l 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
EndSplineSet
MinimumDistance: y5,3 y5,4 y0,2 y0,1 x0,6 x0,7
EndChar
StartChar: uni2521
Encoding: 9505 9505
Width: 600
Flags: W
HStem: 200 200<400 599>
VStem: 200 200<400 799> 200 400<201 399> 250 100<-199 200>
Fore
350 200 m 1
350 -200 l 1
250 -200 l 1
250 200 l 1
200 200 l 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
EndSplineSet
MinimumDistance: y7,5 y7,6 y0,2 y0,1 y5,3 x3,5 x3,4 x7,9 x7,8
EndChar
StartChar: uni2522
Encoding: 9506 9506
Width: 600
Flags: W
HStem: 200 200<401 599>
VStem: 200 200<-199 200> 200 400<201 399> 250 100<400 799>
Fore
350 400 m 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 400 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,8 y0,9 y5,7 x7,5 x7,6 x3,1 x3,2
EndChar
StartChar: uni2523
Encoding: 9507 9507
Width: 600
Flags: W
HStem: 200 200<400 599>
VStem: 200 200<-199 200 400 799> 200 400<201 399>
Fore
200 -200 m 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
EndSplineSet
MinimumDistance: y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: SF090000
Encoding: 9508 9508
Width: 600
Flags: W
HStem: 250 100<1 250>
VStem: 250 100<-199 249 351 799>
Fore
350 800 m 1
350 -200 l 1
250 -200 l 1
250 250 l 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
EndSplineSet
MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2525
Encoding: 9509 9509
Width: 600
Flags: W
HStem: 200 200<1 250>
VStem: 250 100<-199 199 401 799>
Fore
350 800 m 1
350 -200 l 1
250 -200 l 1
250 200 l 1
0 200 l 1
0 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
EndSplineSet
MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2526
Encoding: 9510 9510
Width: 600
Flags: W
HStem: 250 100<1 200>
VStem: 200 200<351 799> 250 100<-199 250>
Fore
350 250 m 1
350 -200 l 1
250 -200 l 1
250 250 l 1
-0 250 l 1
0 350 l 1
200 350 l 1
200 800 l 1
400 800 l 1
400 250 l 1
350 250 l 1
EndSplineSet
MinimumDistance: x8,-1 y6,8 y6,7 y0,2 y0,1 y8,0 x0,8 x0,9 x6,4 x6,5
EndChar
StartChar: uni2527
Encoding: 9511 9511
Width: 600
Flags: W
HStem: 250 100<1 199>
VStem: 200 200<-199 249> 250 100<350 799>
Fore
350 350 m 1
400 350 l 1
400 -200 l 1
200 -200 l 1
200 250 l 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 350 l 1
EndSplineSet
MinimumDistance: x1,-1 y4,2 y4,3 y0,8 y0,9 y2,0 x0,2 x0,1 x4,6 x4,5
EndChar
StartChar: uni2528
Encoding: 9512 9512
Width: 600
Flags: W
HStem: 250 100<1 200>
VStem: 200 200<-199 249 351 799>
Fore
400 800 m 1
400 -200 l 1
200 -200 l 5
200 250 l 5
-0 250 l 1
0 350 l 1
200 350 l 5
200 800 l 5
400 800 l 1
EndSplineSet
MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: uni2529
Encoding: 9513 9513
Width: 600
Flags: W
HStem: 200 200<1 200>
VStem: 200 200<401 799> 250 100<-199 200>
Fore
250 200 m 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 200 l 1
EndSplineSet
MinimumDistance: x5,-1 y3,5 y3,4 y0,8 y0,9 y5,7 x7,5 x7,6 x3,1 x3,2
EndChar
StartChar: uni252A
Encoding: 9514 9514
Width: 600
Flags: W
HStem: 200 200<1 199>
VStem: 200 200<-199 199> 250 100<400 799>
Fore
250 400 m 1
250 800 l 1
350 800 l 1
350 400 l 1
400 400 l 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
250 400 l 1
EndSplineSet
MinimumDistance: x4,-1 y7,5 y7,6 y0,2 y0,1 y5,3 x3,5 x3,4 x7,9 x7,8
EndChar
StartChar: uni252B
Encoding: 9515 9515
Width: 600
Flags: W
HStem: 200 200<1 200>
VStem: 200 200<-199 199 401 799>
Fore
400 800 m 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
EndSplineSet
MinimumDistance: x0,-1 y6,0 y6,7 y3,1 y3,2 x3,5 x3,4
EndChar
StartChar: SF060000
Encoding: 9516 9516
Width: 600
Flags: W
HStem: 250 100<1 249 351 599>
VStem: 250 100<-199 250>
Fore
0 350 m 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 250 l 1
-0 250 l 1
0 350 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: uni252D
Encoding: 9517 9517
Width: 600
Flags: W
HStem: 200 200<1 249> 250 100<350 599>
VStem: 250 100<-199 199>
Fore
600 350 m 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 200 l 1
0 200 l 1
0 400 l 1
350 400 l 1
350 350 l 1
600 350 l 1
EndSplineSet
MinimumDistance: x7,9 y9,7 y9,8 y5,3 y5,4 x5,7 x5,6 x2,0 x2,1
EndChar
StartChar: uni252E
Encoding: 9518 9518
Width: 600
Flags: W
HStem: 200 200<351 599> 250 100<1 250>
VStem: 250 100<-199 200> 250 350<201 249 351 399>
Fore
0 350 m 1
250 350 l 1
250 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 250 l 1
0 250 l 1
0 350 l 1
EndSplineSet
MinimumDistance: y1,3 y1,2 y5,7 y5,6 x5,3 x5,4 x1,9 x1,0
EndChar
StartChar: uni252F
Encoding: 9519 9519
Width: 600
Flags: W
HStem: 200 200<1 249 351 599>
VStem: 250 100<-199 200>
Fore
0 400 m 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 200 l 1
0 200 l 1
0 400 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: uni2530
Encoding: 9520 9520
Width: 600
Flags: W
HStem: 250 100<1 199 401 599>
VStem: 200 200<-199 250>
Fore
0 350 m 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 250 l 1
-0 250 l 1
0 350 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: uni2531
Encoding: 9521 9521
Width: 600
Flags: W
HStem: 200 200<1 199> 250 100<400 599>
VStem: 200 200<-199 199>
Fore
400 250 m 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
400 400 l 1
400 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
EndSplineSet
MinimumDistance: x5,7 y7,5 y7,6 y3,1 y3,2 x3,5 x3,4 x0,8 x0,9
EndChar
StartChar: uni2532
Encoding: 9522 9522
Width: 600
Flags: W
HStem: 200 200<401 599> 250 100<1 200>
VStem: 200 200<-199 200> 200 400<201 249 351 399>
Fore
200 250 m 1
0 250 l 1
0 350 l 1
200 350 l 1
200 400 l 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 250 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y7,9 y7,8 x7,5 x7,6 x0,2 x0,1
EndChar
StartChar: uni2533
Encoding: 9523 9523
Width: 600
Flags: W
HStem: 200 200<1 199 401 599>
VStem: 200 200<-199 200>
Fore
0 400 m 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: SF070000
Encoding: 9524 9524
Width: 600
Flags: W
HStem: 250 100<1 250 350 599> 250 550<251 349>
VStem: 250 100<350 799>
Fore
600 250 m 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: uni2535
Encoding: 9525 9525
Width: 600
Flags: W
HStem: 200 200<1 250> 250 100<350 599>
VStem: 250 100<401 799>
Fore
600 250 m 1
350 250 l 1
350 200 l 1
0 200 l 1
0 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
EndSplineSet
MinimumDistance: x3,1 y1,3 y1,2 y5,7 y5,6 x5,3 x5,4 x1,9 x1,0
EndChar
StartChar: uni2536
Encoding: 9526 9526
Width: 600
Flags: W
HStem: 200 200<350 599> 250 100<1 250>
VStem: 250 100<400 799> 250 350<201 249 351 399>
Fore
0 250 m 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
250 200 l 1
250 250 l 1
0 250 l 1
EndSplineSet
MinimumDistance: y9,7 y9,8 y5,3 y5,4 x5,7 x5,6 x2,0 x2,1
EndChar
StartChar: uni2537
Encoding: 9527 9527
Width: 600
Flags: W
HStem: 200 200<1 250 350 599>
VStem: 250 100<400 799>
Fore
600 200 m 1
0 200 l 1
0 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: uni2538
Encoding: 9528 9528
Width: 600
Flags: W
HStem: 250 100<1 200 400 599> 250 550<201 399>
VStem: 200 200<350 799>
Fore
200 350 m 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
-0 250 l 1
0 350 l 1
200 350 l 1
EndSplineSet
MinimumDistance: y0,2 y0,1 x3,5 x3,4 x0,6 x0,7
EndChar
StartChar: uni2539
Encoding: 9529 9529
Width: 600
Flags: W
HStem: 200 200<1 200> 250 100<400 599>
VStem: 200 200<401 799>
Fore
400 350 m 1
600 350 l 1
600 250 l 1
400 250 l 1
400 200 l 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 350 l 1
EndSplineSet
MinimumDistance: x5,3 y3,5 y3,4 y7,9 y7,8 x7,5 x7,6 x0,2 x0,1
EndChar
StartChar: uni253A
Encoding: 9530 9530
Width: 600
Flags: W
HStem: 200 200<400 599> 250 100<1 200>
VStem: 200 400<201 249 351 399> 200 200<400 799>
Fore
200 350 m 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
200 200 l 1
200 250 l 1
-0 250 l 1
0 350 l 1
200 350 l 1
EndSplineSet
MinimumDistance: y3,1 y3,2 x3,5 x3,4 x0,8 x0,9
EndChar
StartChar: uni253B
Encoding: 9531 9531
Width: 600
Flags: W
HStem: 200 200<1 200 400 599>
VStem: 200 200<400 799>
Fore
600 200 m 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 x6,0 x6,7 x3,1 x3,2
EndChar
StartChar: SF050000
Encoding: 9532 9532
Width: 600
Flags: W
HStem: 250 100<1 250 350 599>
VStem: 250 100<-199 250 350 799>
Fore
250 250 m 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni253D
Encoding: 9533 9533
Width: 600
Flags: W
HStem: 200 200<1 250> 250 100<350 599>
VStem: 250 100<-199 199 401 799>
Fore
250 200 m 5
0 200 l 5
0 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 200 l 5
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni253E
Encoding: 9534 9534
Width: 600
Flags: W
HStem: 200 200<350 599> 250 100<1 250>
VStem: 250 100<-199 200 400 799> 250 350<201 249 351 399>
Fore
250 250 m 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y9,11 y9,10 y6,4 y6,5 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni253F
Encoding: 9535 9535
Width: 600
Flags: W
HStem: 200 200<1 250 350 599>
VStem: 0 600<200 400> 250 100<-199 200 400 799>
Fore
250 200 m 1
0 200 l 1
0 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 200 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni2540
Encoding: 9536 9536
Width: 600
Flags: W
HStem: 250 100<1 200 400 599> 250 550<201 249 351 399>
VStem: 200 200<350 799> 250 100<-199 250>
Fore
250 250 m 1
-0 250 l 1
0 350 l 1
200 350 l 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
350 250 l 1
350 -200 l 1
250 -200 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x3,1 x3,2
EndChar
StartChar: uni2541
Encoding: 9537 9537
Width: 600
Flags: W
HStem: 250 100<1 199 401 599>
VStem: 200 200<-199 250> 250 100<350 799>
Fore
200 250 m 1
-0 250 l 1
0 350 l 1
250 350 l 1
250 800 l 1
350 800 l 1
350 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 250 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x9,7 x9,8 x0,2 x0,1
EndChar
StartChar: uni2542
Encoding: 9538 9538
Width: 600
Flags: W
HStem: 250 100<1 200 400 599>
VStem: 0 600<250 350> 200 200<-199 250 350 799>
Fore
200 250 m 1
-0 250 l 1
0 350 l 1
200 350 l 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 250 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni2543
Encoding: 9539 9539
Width: 600
Flags: W
HStem: 200 200<1 200> 250 100<400 599>
VStem: 200 200<401 799> 250 100<-199 200>
Fore
250 200 m 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
400 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 200 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,12 y0,13 x6,8 x6,7 x3,1 x3,2
EndChar
StartChar: uni2544
Encoding: 9540 9540
Width: 600
Flags: W
HStem: 200 200<400 599> 250 100<1 200>
VStem: 200 200<400 799> 200 400<201 249 351 399> 250 100<-199 200>
Fore
350 200 m 1
350 -200 l 1
250 -200 l 1
250 200 l 1
200 200 l 1
200 250 l 1
0 250 l 1
0 350 l 1
200 350 l 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
EndSplineSet
MinimumDistance: y11,9 y11,10 y0,2 y0,1 x11,13 x11,12 x5,7 x5,6
EndChar
StartChar: uni2545
Encoding: 9541 9541
Width: 600
Flags: W
HStem: 200 200<1 199> 250 100<400 599>
VStem: 200 200<-199 199> 250 100<400 799>
Fore
250 400 m 1
250 800 l 1
350 800 l 1
350 400 l 1
400 400 l 1
400 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
250 400 l 1
EndSplineSet
MinimumDistance: y11,9 y11,10 y0,2 y0,1 x11,13 x11,12 x5,7 x5,6
EndChar
StartChar: uni2546
Encoding: 9542 9542
Width: 600
Flags: W
HStem: 200 200<401 599> 250 100<1 200>
VStem: 200 200<-199 200> 200 400<201 249 351 399> 250 100<400 799>
Fore
350 400 m 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 250 l 1
0 250 l 1
0 350 l 1
200 350 l 1
200 400 l 1
250 400 l 1
250 800 l 1
350 800 l 1
350 400 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,12 y0,13 x6,8 x6,7 x3,1 x3,2
EndChar
StartChar: uni2547
Encoding: 9543 9543
Width: 600
Flags: W
HStem: 200 200<1 200 400 599>
VStem: 200 200<400 799> 250 100<-199 200>
Fore
250 200 m 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
350 200 l 1
350 -200 l 1
250 -200 l 1
250 200 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x3,1 x3,2
EndChar
StartChar: uni2548
Encoding: 9544 9544
Width: 600
Flags: W
HStem: 200 200<1 199 401 599>
VStem: 200 200<-199 200> 250 100<400 799>
Fore
250 400 m 1
250 800 l 1
350 800 l 1
350 400 l 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 200 l 1
0 200 l 1
0 400 l 1
250 400 l 1
EndSplineSet
MinimumDistance: y6,8 y6,7 y0,2 y0,1 x9,11 x9,10 x6,4 x6,5
EndChar
StartChar: uni2549
Encoding: 9545 9545
Width: 600
Flags: W
HStem: 200 200<1 200> 250 100<400 599>
VStem: 0 600<251 349> 200 200<-199 199 401 799>
Fore
200 200 m 5
0 200 l 5
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 350 l 1
600 350 l 1
600 250 l 1
400 250 l 1
400 -200 l 1
200 -200 l 1
200 200 l 5
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni254A
Encoding: 9546 9546
Width: 600
Flags: W
HStem: 200 200<400 599> 250 100<1 200>
VStem: 0 600<250 350> 200 200<-199 200 400 799> 200 400<201 249 351 399>
Fore
400 200 m 5
400 -200 l 1
200 -200 l 1
200 250 l 1
0 250 l 1
0 350 l 1
200 350 l 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 5
400 200 l 5
EndSplineSet
MinimumDistance: y9,7 y9,8 y0,2 y0,1 x3,5 x3,4 x0,10 x0,11
EndChar
StartChar: uni254B
Encoding: 9547 9547
Width: 600
Flags: W
HStem: 200 200<1 200 400 599>
VStem: 0 600<200 400> 200 200<-199 200 400 799>
Fore
200 200 m 1
0 200 l 1
0 400 l 1
200 400 l 1
200 800 l 1
400 800 l 1
400 400 l 1
600 400 l 1
600 200 l 1
400 200 l 1
400 -200 l 1
200 -200 l 1
200 200 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y0,10 y0,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: uni254C
Encoding: 9548 9548
Width: 600
Flags: W
HStem: 250 100<1 249 351 599>
VStem: 0 250<251 349> 350 250<251 349>
Fore
600 250 m 5
350 250 l 5
350 350 l 1
600 350 l 1
600 250 l 5
250 250 m 5
0 250 l 5
0 350 l 1
250 350 l 1
250 250 l 5
EndSplineSet
EndChar
StartChar: uni254D
Encoding: 9549 9549
Width: 600
Flags: W
HStem: 200 200<1 249 351 599>
VStem: 0 250<201 399> 350 250<201 399>
Fore
600 200 m 5
350 200 l 5
350 400 l 1
600 400 l 1
600 200 l 5
250 200 m 5
0 200 l 5
0 400 l 1
250 400 l 1
250 200 l 5
EndSplineSet
EndChar
StartChar: uni254E
Encoding: 9550 9550
Width: 600
Flags: W
HStem: -200 450<231 369> 350 450<231 369>
VStem: 230 140<-199 249 351 799>
Fore
370 800 m 5
370 350 l 5
230 350 l 1
230 800 l 1
370 800 l 5
370 250 m 5
370 -200 l 5
230 -200 l 1
230 250 l 1
370 250 l 5
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni254F
Encoding: 9551 9551
Width: 600
Flags: W
HStem: -200 450<181 419> 350 450<181 419>
VStem: 180 240<-199 249 351 799>
Fore
420 800 m 5
420 350 l 5
180 350 l 1
180 800 l 1
420 800 l 5
420 250 m 5
420 -200 l 5
180 -200 l 1
180 250 l 1
420 250 l 5
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: SF430000
Encoding: 9552 9552
Width: 600
Flags: W
HStem: 150 100<1 599> 350 100<1 599>
VStem: 0 600<151 249 351 449>
Fore
0 250 m 1
600 250 l 1
600 150 l 1
0 150 l 1
0 250 l 1
0 450 m 1
600 450 l 1
600 350 l 1
0 350 l 1
0 450 l 1
EndSplineSet
EndChar
StartChar: SF240000
Encoding: 9553 9553
Width: 600
Flags: W
HStem: -200 1000<151 249 351 449>
VStem: 150 100<-199 799> 350 100<-199 799>
Fore
450 800 m 1
450 -200 l 1
350 -200 l 1
350 800 l 1
450 800 l 1
250 800 m 1
250 -200 l 1
150 -200 l 1
150 800 l 1
250 800 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: SF510000
Encoding: 9554 9554
Width: 600
Flags: W
HStem: 150 100<351 599> 350 100<351 599>
VStem: 250 100<-199 150 250 350> 250 350<151 249 351 449>
Fore
350 350 m 1
350 250 l 1
600 250 l 1
600 150 l 1
350 150 l 1
350 -200 l 1
250 -200 l 1
250 450 l 1
600 450 l 1
600 350 l 1
350 350 l 1
EndSplineSet
MinimumDistance: y4,6 y4,5 x1,3 x1,2 x0,8 x0,9
EndChar
StartChar: SF520000
Encoding: 9555 9555
Width: 600
Flags: W
HStem: 250 100<251 349 451 599>
VStem: 150 100<-199 249> 350 100<-199 250>
Fore
250 250 m 1
250 -200 l 1
150 -200 l 1
150 350 l 1
600 350 l 1
600 250 l 1
450 250 l 1
450 -200 l 1
350 -200 l 1
350 250 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y6,8 y6,7 y0,2 y0,1 x6,4 x6,5
EndChar
StartChar: SF390000
Encoding: 9556 9556
Width: 600
Flags: W
HStem: 150 100<451 599> 350 100<251 599>
VStem: 150 100<-199 350> 150 450<351 449> 350 100<-199 150> 350 250<151 249>
Fore
250 350 m 1
250 -200 l 1
150 -200 l 1
150 450 l 1
600 450 l 1
600 350 l 1
250 350 l 1
450 150 m 1
450 -200 l 1
350 -200 l 1
350 250 l 1
600 250 l 1
600 150 l 1
450 150 l 1
EndSplineSet
MinimumDistance: y0,2 y0,1 y6,8 y6,7 x6,10 x6,11 x0,4 x0,5
EndChar
StartChar: SF220000
Encoding: 9557 9557
Width: 600
Flags: W
HStem: 150 100<1 249> 350 100<1 249>
VStem: 250 100<-199 149 251 349>
Fore
250 350 m 1
0 350 l 1
0 450 l 1
350 450 l 1
350 -200 l 1
250 -200 l 1
250 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
250 350 l 1
EndSplineSet
MinimumDistance: x3,-1 y6,4 y6,5 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: SF210000
Encoding: 9558 9558
Width: 600
Flags: W
HStem: 250 100<1 149 251 349>
VStem: 150 100<-199 249> 350 100<-199 249>
Fore
350 250 m 1
250 250 l 1
250 -200 l 1
150 -200 l 1
150 250 l 1
0 250 l 1
0 350 l 1
450 350 l 1
450 -200 l 1
350 -200 l 1
350 250 l 1
EndSplineSet
MinimumDistance: x7,-1 y1,3 y1,2 y0,8 y0,9 x4,6 x4,5
EndChar
StartChar: SF250000
Encoding: 9559 9559
Width: 600
Flags: W
HStem: 150 100<1 149> 350 100<1 349>
VStem: 150 100<-199 149> 350 100<-199 349>
Fore
350 350 m 1
0 350 l 1
0 450 l 1
450 450 l 1
450 -200 l 1
350 -200 l 1
350 350 l 1
150 150 m 1
0 150 l 1
0 250 l 1
250 250 l 1
250 -200 l 1
150 -200 l 1
150 150 l 1
EndSplineSet
MinimumDistance: x3,-1 y0,4 y0,5 y6,10 y6,11 x0,2 x0,1 x6,8 x6,7
EndChar
StartChar: SF500000
Encoding: 9560 9560
Width: 600
Flags: W
HStem: 150 100<351 599> 350 100<350 599>
VStem: 250 100<250 350 450 799> 250 350<151 249 351 449>
Fore
350 250 m 1
600 250 l 1
600 150 l 1
250 150 l 1
250 800 l 1
350 800 l 1
350 450 l 1
600 450 l 1
600 350 l 1
350 350 l 1
350 250 l 1
EndSplineSet
MinimumDistance: y6,4 y6,5 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: SF490000
Encoding: 9561 9561
Width: 600
Flags: W
HStem: 250 100<250 350 450 599>
VStem: 150 100<351 799> 350 100<350 799>
Fore
250 350 m 1
350 350 l 1
350 800 l 1
450 800 l 1
450 350 l 1
600 350 l 1
600 250 l 1
150 250 l 1
150 800 l 1
250 800 l 1
250 350 l 1
EndSplineSet
MinimumDistance: y1,3 y1,2 y0,8 y0,9 x4,6 x4,5
EndChar
StartChar: SF380000
Encoding: 9562 9562
Width: 600
Flags: W
HStem: 150 100<250 599> 350 100<450 599>
VStem: 150 100<250 799> 150 450<151 249> 350 100<450 799> 350 250<351 449>
Fore
250 250 m 1
600 250 l 1
600 150 l 1
150 150 l 1
150 800 l 1
250 800 l 1
250 250 l 1
450 450 m 1
600 450 l 1
600 350 l 1
350 350 l 1
350 800 l 1
450 800 l 1
450 450 l 1
EndSplineSet
MinimumDistance: y6,10 y6,11 y0,4 y0,5 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: SF280000
Encoding: 9563 9563
Width: 600
Flags: W
HStem: 150 100<1 249> 350 100<1 250>
VStem: 250 100<251 349 451 799>
Fore
250 250 m 1
250 350 l 1
0 350 l 1
0 450 l 1
250 450 l 1
250 800 l 1
350 800 l 1
350 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
EndSplineSet
MinimumDistance: x6,-1 y4,6 y4,5 x1,3 x1,2 x0,8 x0,9
EndChar
StartChar: SF270000
Encoding: 9564 9564
Width: 600
Flags: W
HStem: 250 100<1 150 250 350>
VStem: 150 100<351 799> 350 100<351 799>
Fore
350 350 m 1
350 800 l 1
450 800 l 1
450 250 l 1
0 250 l 1
0 350 l 1
150 350 l 1
150 800 l 1
250 800 l 1
250 350 l 1
350 350 l 1
EndSplineSet
MinimumDistance: x2,-1 y6,8 y6,7 y0,2 y0,1 x6,4 x6,5
EndChar
StartChar: SF260000
Encoding: 9565 9565
Width: 600
Flags: W
HStem: 150 100<1 350> 350 100<1 150>
VStem: 150 100<451 799> 350 100<251 799>
Fore
350 250 m 1
350 800 l 1
450 800 l 1
450 150 l 1
0 150 l 1
0 250 l 1
350 250 l 1
150 450 m 1
150 800 l 1
250 800 l 1
250 350 l 1
0 350 l 1
0 450 l 1
150 450 l 1
EndSplineSet
MinimumDistance: x2,-1 y6,8 y6,7 y0,2 y0,1 x0,4 x0,5 x6,10 x6,11
EndChar
StartChar: SF360000
Encoding: 9566 9566
Width: 600
Flags: W
HStem: 150 100<351 599> 350 100<350 599>
VStem: 250 100<-199 150 250 350 450 799> 250 350<151 249 351 449>
Fore
350 450 m 1
600 450 l 1
600 350 l 1
350 350 l 1
350 250 l 1
600 250 l 1
600 150 l 1
350 150 l 1
350 -200 l 1
250 -200 l 1
250 800 l 1
350 800 l 1
350 450 l 1
EndSplineSet
MinimumDistance: y0,10 y0,11 y7,9 y7,8 x4,6 x4,5 x0,2 x0,1
EndChar
StartChar: SF370000
Encoding: 9567 9567
Width: 600
Flags: W
HStem: 250 100<450 599>
VStem: 150 100<-199 799> 350 100<-199 250 350 799> 350 250<251 349>
Fore
150 800 m 1
250 800 l 1
250 -200 l 1
150 -200 l 1
150 800 l 1
450 250 m 1
450 -200 l 1
350 -200 l 1
350 800 l 1
450 800 l 1
450 350 l 1
600 350 l 1
600 250 l 1
450 250 l 1
EndSplineSet
MinimumDistance: y9,7 y9,8 y4,6 y4,5 x4,10 x4,11
EndChar
StartChar: SF420000
Encoding: 9568 9568
Width: 600
Flags: W
HStem: 150 100<451 599> 350 100<450 599>
VStem: 150 100<-199 799> 350 100<-199 150 450 799> 350 250<151 249 351 449>
Fore
150 800 m 1
250 800 l 1
250 -200 l 1
150 -200 l 1
150 800 l 1
350 250 m 1
600 250 l 1
600 150 l 1
450 150 l 1
450 -200 l 1
350 -200 l 1
350 250 l 1
600 350 m 1
350 350 l 1
350 800 l 1
450 800 l 1
450 450 l 1
600 450 l 1
600 350 l 1
EndSplineSet
MinimumDistance: y14,12 y14,13 y7,9 y7,8 x14,10 x14,15 x7,5 x7,6
EndChar
StartChar: SF190000
Encoding: 9569 9569
Width: 600
Flags: W
HStem: 150 100<1 249> 350 100<1 250>
VStem: 250 100<-199 149 251 349 451 799>
Fore
250 450 m 1
250 800 l 1
350 800 l 1
350 -200 l 1
250 -200 l 1
250 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
250 350 l 1
0 350 l 1
0 450 l 1
250 450 l 1
EndSplineSet
MinimumDistance: x2,-1 y0,2 y0,1 y5,3 y5,4 x5,7 x5,6 x0,10 x0,11
EndChar
StartChar: SF200000
Encoding: 9570 9570
Width: 600
Flags: W
HStem: 250 100<1 150>
VStem: 150 100<-199 249 351 799> 350 100<-199 799>
Fore
450 800 m 1
450 -200 l 1
350 -200 l 1
350 800 l 1
450 800 l 1
150 250 m 1
-0 250 l 1
0 350 l 1
150 350 l 1
150 800 l 1
250 800 l 1
250 -200 l 1
150 -200 l 1
150 250 l 1
EndSplineSet
MinimumDistance: x0,-1 y7,9 y7,8 y4,10 y4,11 x4,6 x4,5
EndChar
StartChar: SF230000
Encoding: 9571 9571
Width: 600
Flags: W
HStem: 150 100<1 149> 350 100<1 150>
VStem: 150 100<-199 149 451 799> 350 100<-199 799>
Fore
450 800 m 1
450 -200 l 1
350 -200 l 1
350 800 l 1
450 800 l 1
250 250 m 1
250 -200 l 1
150 -200 l 1
150 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
250 350 m 1
0 350 l 1
0 450 l 1
150 450 l 1
150 800 l 1
250 800 l 1
250 350 l 1
EndSplineSet
MinimumDistance: x0,-1 y13,15 y13,14 y7,5 y7,6 x13,11 x13,12 x7,9 x7,8
EndChar
StartChar: SF470000
Encoding: 9572 9572
Width: 600
Flags: W
HStem: 150 100<1 249 351 599> 350 100<1 599>
VStem: 0 600<150 249 351 449> 250 100<-199 150>
Fore
0 450 m 1
600 450 l 1
600 350 l 1
0 350 l 1
0 450 l 1
350 150 m 1
350 -200 l 1
250 -200 l 1
250 150 l 1
0 150 l 1
0 250 l 1
600 250 l 1
600 150 l 1
350 150 l 1
EndSplineSet
MinimumDistance: y4,6 y4,5 x7,9 x7,8 x4,10 x4,11
EndChar
StartChar: SF480000
Encoding: 9573 9573
Width: 600
Flags: W
HStem: 250 100<1 149 251 349 451 599>
VStem: 150 100<-199 249> 350 100<-199 250>
Fore
450 250 m 1
450 -200 l 1
350 -200 l 1
350 250 l 1
250 250 l 1
250 -200 l 1
150 -200 l 1
150 250 l 1
0 250 l 1
0 350 l 1
600 350 l 1
600 250 l 1
450 250 l 1
EndSplineSet
MinimumDistance: y4,6 y4,5 y0,2 y0,1 x0,10 x0,11 x7,9 x7,8
EndChar
StartChar: SF410000
Encoding: 9574 9574
Width: 600
Flags: W
HStem: 150 100<1 149 451 599> 350 100<1 599>
VStem: 0 600<351 449> 150 100<-199 149> 350 100<-199 150> 350 250<151 249>
Fore
0 450 m 1
600 450 l 1
600 350 l 1
0 350 l 1
0 450 l 1
350 250 m 1
600 250 l 1
600 150 l 1
450 150 l 1
450 -200 l 1
350 -200 l 1
350 250 l 1
250 250 m 1
250 -200 l 1
150 -200 l 1
150 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y13,11 y13,12 y7,9 y7,8 x7,5 x7,6 x13,15 x13,14
EndChar
StartChar: SF450000
Encoding: 9575 9575
Width: 600
Flags: W
HStem: 150 100<1 599> 350 100<1 250 350 599> 350 450<251 349>
VStem: 0 600<151 249 351 450> 250 100<450 799>
Fore
0 150 m 1
0 250 l 1
600 250 l 1
600 150 l 1
0 150 l 1
350 450 m 1
600 450 l 1
600 350 l 1
0 350 l 1
0 450 l 1
250 450 l 1
250 800 l 1
350 800 l 1
350 450 l 1
EndSplineSet
MinimumDistance: y4,10 y4,11 x9,7 x9,8 x4,6 x4,5
EndChar
StartChar: SF460000
Encoding: 9576 9576
Width: 600
Flags: W
HStem: 250 100<1 150 250 350 450 599> 250 550<151 249 351 449>
VStem: 150 100<351 799> 350 100<350 799>
Fore
450 350 m 1
600 350 l 1
600 250 l 1
0 250 l 1
0 350 l 1
150 350 l 1
150 800 l 1
250 800 l 1
250 350 l 1
350 350 l 1
350 800 l 1
450 800 l 1
450 350 l 1
EndSplineSet
MinimumDistance: y5,7 y5,6 y0,10 y0,11 x0,2 x0,1 x5,3 x5,4
EndChar
StartChar: SF400000
Encoding: 9577 9577
Width: 600
Flags: W
HStem: 150 100<1 599> 350 100<1 150 450 599> 350 450<151 249 351 449>
VStem: 0 600<151 249> 150 100<451 799> 350 100<450 799> 350 250<351 449>
Fore
0 150 m 1
0 250 l 1
600 250 l 1
600 150 l 1
0 150 l 1
350 350 m 1
350 800 l 1
450 800 l 1
450 450 l 1
600 450 l 1
600 350 l 1
350 350 l 1
250 350 m 1
0 350 l 1
0 450 l 1
150 450 l 1
150 800 l 1
250 800 l 1
250 350 l 1
EndSplineSet
MinimumDistance: y13,15 y13,14 y7,5 y7,6 x7,9 x7,8 x13,11 x13,12
EndChar
StartChar: SF540000
Encoding: 9578 9578
Width: 600
Flags: W
HStem: 150 100<1 249 351 599> 350 100<1 250 350 599>
VStem: 0 600<150 250 350 450> 250 100<-199 150 250 350 450 799>
Fore
250 350 m 1
0 350 l 1
0 450 l 1
250 450 l 1
250 800 l 1
350 800 l 1
350 450 l 1
600 450 l 1
600 350 l 1
350 350 l 1
350 250 l 1
600 250 l 1
600 150 l 1
350 150 l 1
350 -200 l 1
250 -200 l 1
250 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
250 350 l 1
EndSplineSet
MinimumDistance: y3,5 y3,4 y13,15 y13,14 x16,18 x16,17 x10,12 x10,11 x6,8 x6,7 x0,2 x0,1
EndChar
StartChar: SF530000
Encoding: 9579 9579
Width: 600
Flags: W
HStem: 250 100<1 150 450 599>
VStem: 150 100<-199 249 351 799> 350 100<-199 250 350 799> 350 250<251 349>
Fore
150 250 m 1
-0 250 l 1
0 350 l 1
150 350 l 1
150 800 l 1
250 800 l 1
250 -200 l 1
150 -200 l 1
150 250 l 1
450 250 m 1
450 -200 l 1
350 -200 l 1
350 800 l 1
450 800 l 1
450 350 l 1
600 350 l 1
600 250 l 1
450 250 l 1
EndSplineSet
MinimumDistance: y13,11 y13,12 y8,10 y8,9 y3,5 y3,4 y0,6 y0,7 x8,14 x8,15 x0,2 x0,1
EndChar
StartChar: SF440000
Encoding: 9580 9580
Width: 600
Flags: W
HStem: 150 100<1 149 451 599> 350 100<1 150 450 599> 350 450<151 249 351 449>
VStem: 150 100<-199 149 451 799> 350 100<-199 150 450 799> 350 250<151 249 351 449>
Fore
350 350 m 1
350 800 l 1
450 800 l 1
450 450 l 1
600 450 l 1
600 350 l 1
350 350 l 1
250 350 m 1
0 350 l 1
0 450 l 1
150 450 l 1
150 800 l 1
250 800 l 1
250 350 l 1
350 250 m 1
600 250 l 1
600 150 l 1
450 150 l 1
450 -200 l 1
350 -200 l 1
350 250 l 1
250 250 m 1
250 -200 l 1
150 -200 l 1
150 150 l 1
0 150 l 1
0 250 l 1
250 250 l 1
EndSplineSet
MinimumDistance: y9,11 y9,10 y3,1 y3,2 y21,19 y21,20 y15,17 y15,16 x15,13 x15,14 x3,5 x3,4 x21,23 x21,22 x9,7 x9,8
EndChar
StartChar: uni256D
Encoding: 9581 9581
Width: 600
Flags: W
HStem: 250 100<474 599>
VStem: 250 100<-199 120>
Fore
500 350 m 2
600 350 l 1
600 250 l 1
500 250 l 2
394 250 350 206 350 100 c 2
350 -200 l 1
250 -200 l 1
250 100 l 2
250 260 340 350 500 350 c 2
EndSplineSet
MinimumDistance: y3,6 y3,5 x4,1 x4,2
EndChar
StartChar: uni256E
Encoding: 9582 9582
Width: 600
Flags: W
HStem: 250 100<1 126>
VStem: 250 100<-199 120>
Ref: 9581 N -1 0 0 1 600 0
EndChar
StartChar: uni256F
Encoding: 9583 9583
Width: 600
Flags: W
HStem: 250 100<1 126>
VStem: 250 100<480 799>
Ref: 9581 N -1 -0 0 -1 600 600
EndChar
StartChar: uni2570
Encoding: 9584 9584
Width: 600
Flags: W
HStem: 250 100<474 599>
VStem: 250 100<480 799>
Ref: 9581 N 1 0 -0 -1 0 600
EndChar
StartChar: uni2571
Encoding: 9585 9585
Width: 600
Flags: W
DStem: 557 826 643 774 -43 -174 43 -226
Fore
-43 -174 m 1
557 826 l 1
643 774 l 1
43 -226 l 1
-43 -174 l 1
EndSplineSet
EndChar
StartChar: uni2572
Encoding: 9586 9586
Width: 600
Flags: W
DStem: -43 774 43 826 557 -226 643 -174
Ref: 9585 N -1 0 0 1 600 0
EndChar
StartChar: uni2573
Encoding: 9587 9587
Width: 600
Flags: W
DStem: -43 774 43 826 241 300 300 398 241 300 300 202 -43 -174 43 -226 300 202 359 300 557 -226 643 -174 557 826 643 774 300 398 359 300
Fore
359 300 m 1
643 -174 l 1
557 -226 l 1
300 202 l 1
43 -226 l 1
-43 -174 l 1
241 300 l 1
-43 774 l 1
43 826 l 1
300 398 l 1
557 826 l 1
643 774 l 1
359 300 l 1
EndSplineSet
EndChar
StartChar: uni2574
Encoding: 9588 9588
Width: 600
Flags: W
HStem: 250 100<1 299>
VStem: 0 300<251 349>
Fore
0 350 m 1
300 350 l 1
300 250 l 1
0 250 l 1
0 350 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni2575
Encoding: 9589 9589
Width: 600
Flags: W
HStem: 300 500<251 349>
VStem: 250 100<301 799>
Fore
350 800 m 1
350 300 l 1
250 300 l 1
250 800 l 1
350 800 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni2576
Encoding: 9590 9590
Width: 600
Flags: W
HStem: 250 100<301 599>
VStem: 300 300<251 349>
Ref: 9588 N 1 0 0 1 300 0
EndChar
StartChar: uni2577
Encoding: 9591 9591
Width: 600
Flags: W
HStem: -200 500<251 349>
VStem: 250 100<-199 299>
Ref: 9589 N 1 0 0 1 0 -500
EndChar
StartChar: uni2578
Encoding: 9592 9592
Width: 600
Flags: W
HStem: 200 200<1 299>
VStem: 0 300<201 399>
Fore
0 400 m 1
300 400 l 1
300 200 l 1
0 200 l 1
0 400 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni2579
Encoding: 9593 9593
Width: 600
Flags: W
HStem: 300 500<201 399>
VStem: 200 200<301 799>
Fore
400 800 m 1
400 300 l 5
200 300 l 5
200 800 l 1
400 800 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni257A
Encoding: 9594 9594
Width: 600
Flags: W
HStem: 200 200<301 599>
VStem: 300 300<201 399>
Ref: 9592 N 1 0 0 1 300 0
EndChar
StartChar: uni257B
Encoding: 9595 9595
Width: 600
Flags: W
HStem: -200 500<201 399>
VStem: 200 200<-199 299>
Ref: 9593 N 1 0 0 1 0 -500
EndChar
StartChar: uni257C
Encoding: 9596 9596
Width: 600
Flags: W
HStem: 200 200<300 599> 250 100<1 300>
Fore
300 250 m 1
0 250 l 1
0 350 l 1
300 350 l 1
300 400 l 1
600 400 l 1
600 200 l 1
300 200 l 1
300 250 l 1
EndSplineSet
MinimumDistance: x5,3 y3,5 y3,4 x6,0 y0,6 y0,7
EndChar
StartChar: uni257D
Encoding: 9597 9597
Width: 600
Flags: W
VStem: 200 200<-199 300> 250 100<300 799>
Fore
250 300 m 1
250 800 l 1
350 800 l 1
350 300 l 1
400 300 l 1
400 -200 l 1
200 -200 l 1
200 300 l 1
250 300 l 1
EndSplineSet
MinimumDistance: x4,-1 y5,3 x3,5 x3,4 y6,0 x0,6 x0,7
EndChar
StartChar: uni257E
Encoding: 9598 9598
Width: 600
Flags: W
HStem: 200 200<1 300> 250 100<300 599>
Ref: 9596 N -1 0 0 1 600 0
EndChar
StartChar: uni257F
Encoding: 9599 9599
Width: 600
Flags: W
VStem: 200 200<300 799> 250 100<-199 300>
Ref: 9597 N 1 0 0 -1 0 600
EndChar
StartChar: upblock
Encoding: 9600 9600
Width: 600
Flags: W
HStem: 300 500<1 599>
VStem: 0 600<301 799>
Fore
0 800 m 25
600 800 l 25
600 300 l 29
0 300 l 29
0 800 l 25
EndSplineSet
EndChar
StartChar: uni2581
Encoding: 9601 9601
Width: 600
Flags: W
HStem: -200 125<1 599>
VStem: 0 600<-199 -76>
Fore
0 -75 m 29
600 -75 l 29
600 -200 l 25
0 -200 l 25
0 -75 l 29
EndSplineSet
EndChar
StartChar: uni2582
Encoding: 9602 9602
Width: 600
Flags: W
HStem: -200 250<1 599>
VStem: 0 600<-199 49>
Fore
0 50 m 29
600 50 l 29
600 -200 l 25
0 -200 l 25
0 50 l 29
EndSplineSet
EndChar
StartChar: uni2583
Encoding: 9603 9603
Width: 600
Flags: W
HStem: -200 375<1 599>
VStem: 0 600<-199 174>
Fore
0 175 m 29
600 175 l 29
600 -200 l 25
0 -200 l 25
0 175 l 29
EndSplineSet
EndChar
StartChar: dnblock
Encoding: 9604 9604
Width: 600
Flags: W
HStem: -200 500<1 599>
VStem: 0 600<-199 299>
Fore
0 300 m 25
600 300 l 25
600 -200 l 29
0 -200 l 29
0 300 l 25
EndSplineSet
EndChar
StartChar: uni2585
Encoding: 9605 9605
Width: 600
Flags: W
HStem: -200 625<1 599>
VStem: 0 600<-199 424>
Fore
0 425 m 29
600 425 l 29
600 -200 l 25
0 -200 l 25
0 425 l 29
EndSplineSet
EndChar
StartChar: uni2586
Encoding: 9606 9606
Width: 600
Flags: W
HStem: -200 750<1 599>
VStem: 0 600<-199 549>
Fore
0 550 m 29
600 550 l 29
600 -200 l 25
0 -200 l 25
0 550 l 29
EndSplineSet
EndChar
StartChar: uni2587
Encoding: 9607 9607
Width: 600
Flags: W
HStem: -200 875<1 599>
VStem: 0 600<-199 674>
Fore
0 675 m 29
600 675 l 29
600 -200 l 25
0 -200 l 25
0 675 l 29
EndSplineSet
EndChar
StartChar: block
Encoding: 9608 9608
Width: 600
Flags: W
HStem: -200 1000<1 599>
VStem: 0 600<-199 799>
Fore
0 800 m 25
600 800 l 25
600 -200 l 25
0 -200 l 25
0 800 l 25
EndSplineSet
EndChar
StartChar: uni2589
Encoding: 9609 9609
Width: 600
Flags: W
HStem: -200 1000<1 524>
VStem: 0 525<-199 799>
Fore
0 800 m 25
525 800 l 25
525 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni258A
Encoding: 9610 9610
Width: 600
Flags: W
HStem: -200 1000<1 449>
VStem: 0 450<-199 799>
Fore
0 800 m 25
450 800 l 25
450 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni258B
Encoding: 9611 9611
Width: 600
Flags: W
HStem: -200 1000<1 374>
VStem: 0 375<-199 799>
Fore
0 800 m 25
375 800 l 25
375 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: lfblock
Encoding: 9612 9612
Width: 600
Flags: W
HStem: -200 1000<1 299>
VStem: 0 300<-199 799>
Fore
0 800 m 25
300 800 l 25
300 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni258D
Encoding: 9613 9613
Width: 600
Flags: W
HStem: -200 1000<1 224>
VStem: 0 225<-199 799>
Fore
0 800 m 25
225 800 l 25
225 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni258E
Encoding: 9614 9614
Width: 600
Flags: W
HStem: -200 1000<1 149>
VStem: 0 150<-199 799>
Fore
0 800 m 25
150 800 l 25
150 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni258F
Encoding: 9615 9615
Width: 600
Flags: W
HStem: -200 1000<1 74>
VStem: 0 75<-199 799>
Fore
0 800 m 25
75 800 l 25
75 -200 l 29
0 -200 l 29
0 800 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: rtblock
Encoding: 9616 9616
Width: 600
Flags: W
HStem: -200 1000<301 599>
VStem: 300 300<-199 799>
Fore
300 800 m 25
600 800 l 25
600 -200 l 29
300 -200 l 29
300 800 l 25
EndSplineSet
EndChar
StartChar: ltshade
Encoding: 9617 9617
Width: 600
Flags: W
HStem: -200 50<1 49 201 249 401 449> -100 50<101 149 301 349 501 549> 0 50<1 49 201 249 401 449> 100 50<101 149 301 349 501 549> 200 50<1 49 201 249 401 449> 300 50<101 149 301 349 501 549> 400 50<1 49 201 249 401 449> 500 50<101 149 301 349 501 549> 600 50<1 49 201 249 401 449> 700 50<101 149 301 349 501 549>
VStem: 0 50<-199 -151 1 49 201 249 401 449 601 649> 100 50<-99 -51 101 149 301 349 501 549 701 749> 200 50<-199 -151 1 49 201 249 401 449 601 649> 300 50<-99 -51 101 149 301 349 501 549 701 749> 400 50<-199 -151 1 49 201 249 401 449 601 649> 500 50<-99 -51 101 149 301 349 501 549 701 749>
Fore
400 50 m 25
450 50 l 25
450 0 l 25
400 0 l 25
400 50 l 25
200 50 m 25
250 50 l 25
250 0 l 25
200 0 l 25
200 50 l 25
0 50 m 25
50 50 l 25
50 0 l 25
0 0 l 25
0 50 l 25
500 150 m 25
550 150 l 25
550 100 l 25
500 100 l 25
500 150 l 25
300 150 m 25
350 150 l 25
350 100 l 25
300 100 l 25
300 150 l 25
100 150 m 25
150 150 l 25
150 100 l 25
100 100 l 25
100 150 l 25
400 -150 m 25
450 -150 l 25
450 -200 l 25
400 -200 l 25
400 -150 l 25
200 -150 m 25
250 -150 l 25
250 -200 l 25
200 -200 l 25
200 -150 l 25
0 -150 m 25
50 -150 l 25
50 -200 l 25
0 -200 l 25
0 -150 l 25
500 -50 m 25
550 -50 l 25
550 -100 l 25
500 -100 l 25
500 -50 l 25
300 -50 m 25
350 -50 l 25
350 -100 l 25
300 -100 l 25
300 -50 l 25
100 -50 m 25
150 -50 l 25
150 -100 l 25
100 -100 l 25
100 -50 l 25
400 250 m 25
450 250 l 25
450 200 l 25
400 200 l 25
400 250 l 25
200 250 m 25
250 250 l 25
250 200 l 25
200 200 l 25
200 250 l 25
0 250 m 25
50 250 l 25
50 200 l 25
0 200 l 25
0 250 l 25
500 350 m 25
550 350 l 25
550 300 l 25
500 300 l 25
500 350 l 25
300 350 m 25
350 350 l 25
350 300 l 25
300 300 l 25
300 350 l 25
100 350 m 25
150 350 l 25
150 300 l 25
100 300 l 25
100 350 l 25
400 450 m 25
450 450 l 25
450 400 l 25
400 400 l 25
400 450 l 25
200 450 m 25
250 450 l 25
250 400 l 25
200 400 l 25
200 450 l 25
0 450 m 25
50 450 l 25
50 400 l 25
0 400 l 25
0 450 l 25
500 550 m 25
550 550 l 25
550 500 l 25
500 500 l 25
500 550 l 25
300 550 m 25
350 550 l 25
350 500 l 25
300 500 l 25
300 550 l 25
100 550 m 25
150 550 l 25
150 500 l 25
100 500 l 25
100 550 l 25
400 650 m 25
450 650 l 25
450 600 l 25
400 600 l 25
400 650 l 25
200 650 m 25
250 650 l 25
250 600 l 25
200 600 l 25
200 650 l 25
0 650 m 25
50 650 l 25
50 600 l 25
0 600 l 25
0 650 l 25
500 750 m 25
550 750 l 25
550 700 l 25
500 700 l 25
500 750 l 25
300 750 m 25
350 750 l 25
350 700 l 25
300 700 l 25
300 750 l 25
100 750 m 25
150 750 l 25
150 700 l 25
100 700 l 25
100 750 l 25
EndSplineSet
MinimumDistance: x13,-1
EndChar
StartChar: shade
Encoding: 9618 9618
Width: 600
Flags: W
HStem: -200 50<1 49 101 149 201 249 301 349 401 449 501 549> -100 50<51 99 151 199 251 299 351 399 451 499 551 599> 0 50<1 49 101 149 201 249 301 349 401 449 501 549> 100 50<51 99 151 199 251 299 351 399 451 499 551 599> 200 50<1 49 101 149 201 249 301 349 401 449 501 549> 300 50<51 99 151 199 251 299 351 399 451 499 551 599> 400 50<1 49 101 149 201 249 301 349 401 449 501 549> 500 50<51 99 151 199 251 299 351 399 451 499 551 599> 600 50<1 49 101 149 201 249 301 349 401 449 501 549> 700 50<51 99 151 199 251 299 351 399 451 499 551 599>
VStem: 0 50<-199 -151 1 49 201 249 401 449 601 649> 50 50<-99 -51 101 149 301 349 501 549 701 749> 100 50<-199 -151 1 49 201 249 401 449 601 649> 150 50<-99 -51 101 149 301 349 501 549 701 749> 200 50<-199 -151 1 49 201 249 401 449 601 649> 250 50<-99 -51 101 149 301 349 501 549 701 749> 300 50<-199 -151 1 49 201 249 401 449 601 649> 350 50<-99 -51 101 149 301 349 501 549 701 749> 400 50<-199 -151 1 49 201 249 401 449 601 649> 450 50<-99 -51 101 149 301 349 501 549 701 749> 500 50<-199 -151 1 49 201 249 401 449 601 649> 550 50<-99 -51 101 149 301 349 501 549 701 749>
Fore
400 50 m 25
450 50 l 25
450 0 l 25
400 0 l 25
400 50 l 25
300 50 m 25
350 50 l 25
350 0 l 25
300 0 l 25
300 50 l 25
200 50 m 25
250 50 l 25
250 0 l 25
200 0 l 25
200 50 l 25
100 50 m 25
150 50 l 25
150 0 l 25
100 0 l 25
100 50 l 25
0 50 m 25
50 50 l 25
50 0 l 25
0 0 l 25
0 50 l 25
500 50 m 25
550 50 l 25
550 0 l 25
500 0 l 25
500 50 l 25
450 150 m 25
500 150 l 25
500 100 l 25
450 100 l 25
450 150 l 25
350 150 m 25
400 150 l 25
400 100 l 25
350 100 l 25
350 150 l 25
250 150 m 25
300 150 l 25
300 100 l 25
250 100 l 25
250 150 l 25
150 150 m 25
200 150 l 25
200 100 l 25
150 100 l 25
150 150 l 25
50 150 m 25
100 150 l 25
100 100 l 25
50 100 l 25
50 150 l 25
550 150 m 25
600 150 l 25
600 100 l 25
550 100 l 25
550 150 l 25
400 -150 m 25
450 -150 l 25
450 -200 l 25
400 -200 l 25
400 -150 l 25
300 -150 m 25
350 -150 l 25
350 -200 l 25
300 -200 l 25
300 -150 l 25
200 -150 m 25
250 -150 l 25
250 -200 l 25
200 -200 l 25
200 -150 l 25
100 -150 m 25
150 -150 l 25
150 -200 l 25
100 -200 l 25
100 -150 l 25
0 -150 m 25
50 -150 l 25
50 -200 l 25
0 -200 l 25
0 -150 l 25
500 -150 m 25
550 -150 l 25
550 -200 l 25
500 -200 l 25
500 -150 l 25
450 -50 m 25
500 -50 l 25
500 -100 l 25
450 -100 l 25
450 -50 l 25
350 -50 m 25
400 -50 l 25
400 -100 l 25
350 -100 l 25
350 -50 l 25
250 -50 m 25
300 -50 l 25
300 -100 l 25
250 -100 l 25
250 -50 l 25
150 -50 m 25
200 -50 l 25
200 -100 l 25
150 -100 l 25
150 -50 l 25
50 -50 m 25
100 -50 l 25
100 -100 l 25
50 -100 l 25
50 -50 l 25
550 -50 m 25
600 -50 l 25
600 -100 l 25
550 -100 l 25
550 -50 l 25
400 250 m 25
450 250 l 25
450 200 l 25
400 200 l 25
400 250 l 25
300 250 m 25
350 250 l 25
350 200 l 25
300 200 l 25
300 250 l 25
200 250 m 25
250 250 l 25
250 200 l 25
200 200 l 25
200 250 l 25
100 250 m 25
150 250 l 25
150 200 l 25
100 200 l 25
100 250 l 25
0 250 m 25
50 250 l 25
50 200 l 25
0 200 l 25
0 250 l 25
500 250 m 25
550 250 l 25
550 200 l 25
500 200 l 25
500 250 l 25
450 350 m 25
500 350 l 25
500 300 l 25
450 300 l 25
450 350 l 25
350 350 m 25
400 350 l 25
400 300 l 25
350 300 l 25
350 350 l 25
250 350 m 25
300 350 l 25
300 300 l 25
250 300 l 25
250 350 l 25
150 350 m 25
200 350 l 25
200 300 l 25
150 300 l 25
150 350 l 25
50 350 m 25
100 350 l 25
100 300 l 25
50 300 l 25
50 350 l 25
550 350 m 25
600 350 l 25
600 300 l 25
550 300 l 25
550 350 l 25
400 450 m 25
450 450 l 25
450 400 l 25
400 400 l 25
400 450 l 25
300 450 m 25
350 450 l 25
350 400 l 25
300 400 l 25
300 450 l 25
200 450 m 25
250 450 l 25
250 400 l 25
200 400 l 25
200 450 l 25
100 450 m 25
150 450 l 25
150 400 l 25
100 400 l 25
100 450 l 25
0 450 m 25
50 450 l 25
50 400 l 25
0 400 l 25
0 450 l 25
500 450 m 25
550 450 l 25
550 400 l 25
500 400 l 25
500 450 l 25
450 550 m 25
500 550 l 25
500 500 l 25
450 500 l 25
450 550 l 25
350 550 m 25
400 550 l 25
400 500 l 25
350 500 l 25
350 550 l 25
250 550 m 25
300 550 l 25
300 500 l 25
250 500 l 25
250 550 l 25
150 550 m 25
200 550 l 25
200 500 l 25
150 500 l 25
150 550 l 25
50 550 m 25
100 550 l 25
100 500 l 25
50 500 l 25
50 550 l 25
550 550 m 25
600 550 l 25
600 500 l 25
550 500 l 25
550 550 l 25
400 650 m 25
450 650 l 25
450 600 l 25
400 600 l 25
400 650 l 25
300 650 m 25
350 650 l 25
350 600 l 25
300 600 l 25
300 650 l 25
200 650 m 25
250 650 l 25
250 600 l 25
200 600 l 25
200 650 l 25
100 650 m 25
150 650 l 25
150 600 l 25
100 600 l 25
100 650 l 25
0 650 m 25
50 650 l 25
50 600 l 25
0 600 l 25
0 650 l 25
500 650 m 25
550 650 l 25
550 600 l 25
500 600 l 25
500 650 l 25
450 750 m 25
500 750 l 25
500 700 l 25
450 700 l 25
450 750 l 25
350 750 m 25
400 750 l 25
400 700 l 25
350 700 l 25
350 750 l 25
250 750 m 25
300 750 l 25
300 700 l 25
250 700 l 25
250 750 l 25
150 750 m 25
200 750 l 25
200 700 l 25
150 700 l 25
150 750 l 25
50 750 m 25
100 750 l 25
100 700 l 25
50 700 l 25
50 750 l 25
550 750 m 25
600 750 l 25
600 700 l 25
550 700 l 25
550 750 l 25
EndSplineSet
EndChar
StartChar: dkshade
Encoding: 9619 9619
Width: 600
Flags: W
HStem: -200 50<1 49 100 149 200 249 300 349 400 449 500 549> -150 50<50 100 150 200 250 300 350 400 450 500 550 599> -100 50<1 50 100 150 200 250 300 350 400 450 500 550> -50 50<50 100 150 200 250 300 350 400 450 500 550 599> 0 50<1 50 100 150 200 250 300 350 400 450 500 550> 50 50<50 100 150 200 250 300 350 400 450 500 550 599> 100 50<1 50 100 150 200 250 300 350 400 450 500 550> 150 50<50 100 150 200 250 300 350 400 450 500 550 599> 200 50<1 50 100 150 200 250 300 350 400 450 500 550> 250 50<50 100 150 200 250 300 350 400 450 500 550 599> 300 50<1 50 100 150 200 250 300 350 400 450 500 550> 350 50<50 100 150 200 250 300 350 400 450 500 550 599> 400 50<1 50 100 150 200 250 300 350 400 450 500 550> 450 50<50 100 150 200 250 300 350 400 450 500 550 599> 500 50<1 50 100 150 200 250 300 350 400 450 500 550> 550 50<50 100 150 200 250 300 350 400 450 500 550 599> 600 50<1 50 100 150 200 250 300 350 400 450 500 550> 650 50<50 100 150 200 250 300 350 400 450 500 550 599> 700 50<1 50 100 150 200 250 300 350 400 450 500 550> 750 50<51 100 151 200 251 300 351 400 451 500 551 599>
VStem: 0 50<-199 -151 -100 -51 0 49 100 149 200 249 300 349 400 449 500 549 600 649 700 749> 50 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 100 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 150 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 200 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 250 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 300 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 350 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 400 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 450 50<-150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 799> 500 50<-199 -150 -100 -50 0 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750> 550 50<-149 -100 -49 0 51 100 151 200 251 300 351 400 451 500 551 600 651 700 751 799>
Fore
400 50 m 25
450 50 l 25
450 0 l 25
400 0 l 25
400 50 l 25
300 50 m 25
350 50 l 25
350 0 l 25
300 0 l 25
300 50 l 25
200 50 m 25
250 50 l 25
250 0 l 25
200 0 l 25
200 50 l 25
100 50 m 25
150 50 l 25
150 0 l 25
100 0 l 25
100 50 l 25
0 50 m 25
50 50 l 25
50 0 l 25
0 0 l 25
0 50 l 25
500 50 m 25
550 50 l 25
550 0 l 25
500 0 l 25
500 50 l 25
450 0 m 25
500 0 l 25
500 -50 l 25
450 -50 l 25
450 0 l 25
350 0 m 25
400 0 l 25
400 -50 l 25
350 -50 l 25
350 0 l 25
250 0 m 25
300 0 l 25
300 -50 l 25
250 -50 l 25
250 0 l 25
150 0 m 25
200 0 l 25
200 -50 l 25
150 -50 l 25
150 0 l 25
50 0 m 25
100 0 l 25
100 -50 l 25
50 -50 l 25
50 0 l 25
550 0 m 25
600 0 l 25
600 -50 l 25
550 -50 l 25
550 0 l 25
450 -100 m 25
500 -100 l 25
500 -150 l 25
450 -150 l 25
450 -100 l 25
350 -100 m 25
400 -100 l 25
400 -150 l 25
350 -150 l 25
350 -100 l 25
250 -100 m 25
300 -100 l 25
300 -150 l 25
250 -150 l 25
250 -100 l 25
150 -100 m 25
200 -100 l 25
200 -150 l 25
150 -150 l 25
150 -100 l 25
50 -100 m 25
100 -100 l 25
100 -150 l 25
50 -150 l 25
50 -100 l 25
550 -100 m 25
600 -100 l 25
600 -150 l 25
550 -150 l 25
550 -100 l 25
400 -50 m 25
450 -50 l 25
450 -100 l 25
400 -100 l 25
400 -50 l 25
300 -50 m 25
350 -50 l 25
350 -100 l 25
300 -100 l 25
300 -50 l 25
200 -50 m 25
250 -50 l 25
250 -100 l 25
200 -100 l 25
200 -50 l 25
100 -50 m 25
150 -50 l 25
150 -100 l 25
100 -100 l 25
100 -50 l 25
0 -50 m 25
50 -50 l 25
50 -100 l 25
0 -100 l 25
0 -50 l 25
500 -50 m 25
550 -50 l 25
550 -100 l 25
500 -100 l 25
500 -50 l 25
400 -150 m 25
450 -150 l 25
450 -200 l 25
400 -200 l 25
400 -150 l 25
300 -150 m 25
350 -150 l 25
350 -200 l 25
300 -200 l 25
300 -150 l 25
200 -150 m 25
250 -150 l 25
250 -200 l 25
200 -200 l 25
200 -150 l 25
100 -150 m 25
150 -150 l 25
150 -200 l 25
100 -200 l 25
100 -150 l 25
0 -150 m 25
50 -150 l 25
50 -200 l 25
0 -200 l 25
0 -150 l 25
500 -150 m 25
550 -150 l 25
550 -200 l 25
500 -200 l 25
500 -150 l 25
450 100 m 25
500 100 l 25
500 50 l 25
450 50 l 25
450 100 l 25
350 100 m 25
400 100 l 25
400 50 l 25
350 50 l 25
350 100 l 25
250 100 m 25
300 100 l 25
300 50 l 25
250 50 l 25
250 100 l 25
150 100 m 25
200 100 l 25
200 50 l 25
150 50 l 25
150 100 l 25
50 100 m 25
100 100 l 25
100 50 l 25
50 50 l 25
50 100 l 25
550 100 m 25
600 100 l 25
600 50 l 25
550 50 l 25
550 100 l 25
400 150 m 25
450 150 l 25
450 100 l 25
400 100 l 25
400 150 l 25
300 150 m 25
350 150 l 25
350 100 l 25
300 100 l 25
300 150 l 25
200 150 m 25
250 150 l 25
250 100 l 25
200 100 l 25
200 150 l 25
100 150 m 25
150 150 l 25
150 100 l 25
100 100 l 25
100 150 l 25
0 150 m 25
50 150 l 25
50 100 l 25
0 100 l 25
0 150 l 25
500 150 m 25
550 150 l 25
550 100 l 25
500 100 l 25
500 150 l 25
450 200 m 25
500 200 l 25
500 150 l 25
450 150 l 25
450 200 l 25
350 200 m 25
400 200 l 25
400 150 l 25
350 150 l 25
350 200 l 25
250 200 m 25
300 200 l 25
300 150 l 25
250 150 l 25
250 200 l 25
150 200 m 25
200 200 l 25
200 150 l 25
150 150 l 25
150 200 l 25
50 200 m 25
100 200 l 25
100 150 l 25
50 150 l 25
50 200 l 25
550 200 m 25
600 200 l 25
600 150 l 25
550 150 l 25
550 200 l 25
400 250 m 25
450 250 l 25
450 200 l 25
400 200 l 25
400 250 l 25
300 250 m 25
350 250 l 25
350 200 l 25
300 200 l 25
300 250 l 25
200 250 m 25
250 250 l 25
250 200 l 25
200 200 l 25
200 250 l 25
100 250 m 25
150 250 l 25
150 200 l 25
100 200 l 25
100 250 l 25
0 250 m 25
50 250 l 25
50 200 l 25
0 200 l 25
0 250 l 25
500 250 m 25
550 250 l 25
550 200 l 25
500 200 l 25
500 250 l 25
450 300 m 25
500 300 l 25
500 250 l 25
450 250 l 25
450 300 l 25
350 300 m 25
400 300 l 25
400 250 l 25
350 250 l 25
350 300 l 25
250 300 m 25
300 300 l 25
300 250 l 25
250 250 l 25
250 300 l 25
150 300 m 25
200 300 l 25
200 250 l 25
150 250 l 25
150 300 l 25
50 300 m 25
100 300 l 25
100 250 l 25
50 250 l 25
50 300 l 25
550 300 m 25
600 300 l 25
600 250 l 25
550 250 l 25
550 300 l 25
400 350 m 25
450 350 l 25
450 300 l 25
400 300 l 25
400 350 l 25
300 350 m 25
350 350 l 25
350 300 l 25
300 300 l 25
300 350 l 25
200 350 m 25
250 350 l 25
250 300 l 25
200 300 l 25
200 350 l 25
100 350 m 25
150 350 l 25
150 300 l 25
100 300 l 25
100 350 l 25
0 350 m 25
50 350 l 25
50 300 l 25
0 300 l 25
0 350 l 25
500 350 m 25
550 350 l 25
550 300 l 25
500 300 l 25
500 350 l 25
450 400 m 25
500 400 l 25
500 350 l 25
450 350 l 25
450 400 l 25
350 400 m 25
400 400 l 25
400 350 l 25
350 350 l 25
350 400 l 25
250 400 m 25
300 400 l 25
300 350 l 25
250 350 l 25
250 400 l 25
150 400 m 25
200 400 l 25
200 350 l 25
150 350 l 25
150 400 l 25
50 400 m 25
100 400 l 25
100 350 l 25
50 350 l 25
50 400 l 25
550 400 m 25
600 400 l 25
600 350 l 25
550 350 l 25
550 400 l 25
400 450 m 25
450 450 l 25
450 400 l 25
400 400 l 25
400 450 l 25
300 450 m 25
350 450 l 25
350 400 l 25
300 400 l 25
300 450 l 25
200 450 m 25
250 450 l 25
250 400 l 25
200 400 l 25
200 450 l 25
100 450 m 25
150 450 l 25
150 400 l 25
100 400 l 25
100 450 l 25
0 450 m 25
50 450 l 25
50 400 l 25
0 400 l 25
0 450 l 25
500 450 m 25
550 450 l 25
550 400 l 25
500 400 l 25
500 450 l 25
450 500 m 25
500 500 l 25
500 450 l 25
450 450 l 25
450 500 l 25
350 500 m 25
400 500 l 25
400 450 l 25
350 450 l 25
350 500 l 25
250 500 m 25
300 500 l 25
300 450 l 25
250 450 l 25
250 500 l 25
150 500 m 25
200 500 l 25
200 450 l 25
150 450 l 25
150 500 l 25
50 500 m 25
100 500 l 25
100 450 l 25
50 450 l 25
50 500 l 25
550 500 m 25
600 500 l 25
600 450 l 25
550 450 l 25
550 500 l 25
400 550 m 25
450 550 l 25
450 500 l 25
400 500 l 25
400 550 l 25
300 550 m 25
350 550 l 25
350 500 l 25
300 500 l 25
300 550 l 25
200 550 m 25
250 550 l 25
250 500 l 25
200 500 l 25
200 550 l 25
100 550 m 25
150 550 l 25
150 500 l 25
100 500 l 25
100 550 l 25
0 550 m 25
50 550 l 25
50 500 l 25
0 500 l 25
0 550 l 25
500 550 m 25
550 550 l 25
550 500 l 25
500 500 l 25
500 550 l 25
450 600 m 25
500 600 l 25
500 550 l 25
450 550 l 25
450 600 l 25
350 600 m 25
400 600 l 25
400 550 l 25
350 550 l 25
350 600 l 25
250 600 m 25
300 600 l 25
300 550 l 25
250 550 l 25
250 600 l 25
150 600 m 25
200 600 l 25
200 550 l 25
150 550 l 25
150 600 l 25
50 600 m 25
100 600 l 25
100 550 l 25
50 550 l 25
50 600 l 25
550 600 m 25
600 600 l 25
600 550 l 25
550 550 l 25
550 600 l 25
400 650 m 25
450 650 l 25
450 600 l 25
400 600 l 25
400 650 l 25
300 650 m 25
350 650 l 25
350 600 l 25
300 600 l 25
300 650 l 25
200 650 m 25
250 650 l 25
250 600 l 25
200 600 l 25
200 650 l 25
100 650 m 25
150 650 l 25
150 600 l 25
100 600 l 25
100 650 l 25
0 650 m 25
50 650 l 25
50 600 l 25
0 600 l 25
0 650 l 25
500 650 m 25
550 650 l 25
550 600 l 25
500 600 l 25
500 650 l 25
450 700 m 25
500 700 l 25
500 650 l 25
450 650 l 25
450 700 l 25
350 700 m 25
400 700 l 25
400 650 l 25
350 650 l 25
350 700 l 25
250 700 m 25
300 700 l 25
300 650 l 25
250 650 l 25
250 700 l 25
150 700 m 25
200 700 l 25
200 650 l 25
150 650 l 25
150 700 l 25
50 700 m 25
100 700 l 25
100 650 l 25
50 650 l 25
50 700 l 25
550 700 m 25
600 700 l 25
600 650 l 25
550 650 l 25
550 700 l 25
400 750 m 25
450 750 l 25
450 700 l 25
400 700 l 25
400 750 l 25
300 750 m 25
350 750 l 25
350 700 l 25
300 700 l 25
300 750 l 25
200 750 m 25
250 750 l 25
250 700 l 25
200 700 l 25
200 750 l 25
100 750 m 25
150 750 l 25
150 700 l 25
100 700 l 25
100 750 l 25
0 750 m 25
50 750 l 25
50 700 l 25
0 700 l 25
0 750 l 25
500 750 m 25
550 750 l 25
550 700 l 25
500 700 l 25
500 750 l 25
450 800 m 25
500 800 l 25
500 750 l 25
450 750 l 25
450 800 l 25
350 800 m 25
400 800 l 25
400 750 l 25
350 750 l 25
350 800 l 25
250 800 m 25
300 800 l 25
300 750 l 25
250 750 l 25
250 800 l 25
150 800 m 25
200 800 l 25
200 750 l 25
150 750 l 25
150 800 l 25
50 800 m 25
100 800 l 25
100 750 l 25
50 750 l 25
50 800 l 25
550 800 m 25
600 800 l 25
600 750 l 25
550 750 l 25
550 800 l 25
EndSplineSet
EndChar
StartChar: uni2594
Encoding: 9620 9620
Width: 600
Flags: W
HStem: 675 125<1 599>
VStem: 0 600<676 799>
Fore
0 800 m 25
600 800 l 25
600 675 l 25
0 675 l 25
0 800 l 25
EndSplineSet
EndChar
StartChar: uni2595
Encoding: 9621 9621
Width: 600
Flags: W
HStem: -200 1000<526 599>
VStem: 525 75<-199 799>
Fore
525 800 m 25
600 800 l 25
600 -200 l 25
525 -200 l 25
525 800 l 25
EndSplineSet
EndChar
StartChar: filledbox
Encoding: 9632 9632
Width: 600
Flags: W
HStem: 0 500<51 549>
VStem: 50 500<1 499>
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: H22073
Encoding: 9633 9633
Width: 600
Flags: W
HStem: 0 88<139 461> 412 88<139 461>
VStem: 50 88<89 411> 462 88<89 411>
Fore
138 88 m 25
462 88 l 25
462 412 l 25
138 412 l 25
138 88 l 25
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni25A3
Encoding: 9635 9635
Width: 600
Flags: W
HStem: 0 88<139 461> 156 188<207 393> 412 88<139 461>
VStem: 50 88<89 411> 206 188<157 343> 462 88<89 411>
Fore
206 156 m 25
206 344 l 25
394 344 l 25
394 156 l 25
206 156 l 25
138 88 m 25
462 88 l 25
462 412 l 25
138 412 l 25
138 88 l 25
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x10,-1
EndChar
StartChar: uni25A4
Encoding: 9636 9636
Width: 600
Flags: W
HStem: 0 88<139 461> 139 88<139 461> 275 88<139 461> 412 88<139 461>
VStem: 50 88<89 138 228 274 364 411> 462 88<89 138 228 274 364 411>
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
138 275 m 1
138 227 l 1
462 227 l 1
462 275 l 1
138 275 l 1
138 363 m 1
462 363 l 1
462 412 l 9
138 412 l 17
138 363 l 1
138 139 m 1
138 88 l 9
462 88 l 17
462 139 l 1
138 139 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni25A5
Encoding: 9637 9637
Width: 600
Flags: W
HStem: 0 88<139 186 276 322 412 461> 412 88<139 186 276 322 412 461>
VStem: 50 88<89 411> 187 88<89 411> 323 88<89 411> 462 88<89 411>
Fore
550 0 m 25
50 0 l 25
50 500 l 25
550 500 l 25
550 0 l 25
275 88 m 1
323 88 l 1
323 412 l 1
275 412 l 1
275 88 l 1
187 88 m 1
187 412 l 1
138 412 l 9
138 88 l 17
187 88 l 1
411 88 m 1
462 88 l 9
462 412 l 17
411 412 l 1
411 88 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni25A6
Encoding: 9638 9638
Width: 600
Flags: W
HStem: 0 88<139 186 276 324 414 461> 139 88<139 186 276 324 414 461> 275 88<139 186 276 324 414 461> 412 88<139 186 276 324 414 461>
VStem: 50 88<89 138 228 274 364 411> 187 88<89 138 228 274 364 411> 325 88<89 138 228 274 364 411> 462 88<89 138 228 274 364 411>
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
187 139 m 1
138 139 l 1
138 88 l 1
187 88 l 1
187 139 l 1
187 412 m 1
138 412 l 1
138 363 l 1
187 363 l 1
187 412 l 1
187 275 m 1
138 275 l 1
138 227 l 1
187 227 l 1
187 275 l 1
325 275 m 1
275 275 l 1
275 227 l 1
325 227 l 1
325 275 l 1
325 412 m 1
275 412 l 1
275 363 l 1
325 363 l 1
325 412 l 1
325 139 m 1
275 139 l 1
275 88 l 1
325 88 l 1
325 139 l 1
413 275 m 1
413 227 l 1
462 227 l 1
462 275 l 1
413 275 l 1
413 412 m 1
413 363 l 1
462 363 l 1
462 412 l 1
413 412 l 1
413 139 m 1
413 88 l 1
462 88 l 1
462 139 l 1
413 139 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni25A7
Encoding: 9639 9639
Width: 600
Flags: W
HStem: 0 88<139 263 388 461> 412 88<139 212 337 461>
VStem: 50 88<89 213 338 411> 462 88<89 162 287 411>
DStem: 138 214 138 338 264 88 388 88 212 412 336 412 462 162 462 286
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
138 214 m 1
138 88 l 1
264 88 l 1
138 214 l 1
138 338 m 1
388 88 l 1
462 88 l 1
462 162 l 1
212 412 l 1
138 412 l 1
138 338 l 1
336 412 m 1
462 286 l 1
462 412 l 1
336 412 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni25A8
Encoding: 9640 9640
Width: 600
Flags: W
HStem: 0 88<139 212 337 461> 412 88<139 263 388 461>
VStem: 462 88<89 162 89 213 287 411 338 411>
DStem: 264 412 388 412 138 286 138 162 462 338 462 214 212 88 336 88
Ref: 9639 N -1 0 0 1 600 0
EndChar
StartChar: uni25A9
Encoding: 9641 9641
Width: 600
Flags: W
HStem: 0 88<139 212 388 461> 412 88<139 212 388 461>
VStem: 50 88<89 162 338 411> 462 88<89 162 338 411>
DStem: 164 188 226 250 238 114 300 176 238 386 300 324 164 312 226 250 300 324 362 386 374 250 436 312 374 250 436 188 300 176 362 114
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
238 114 m 1
164 188 l 1
138 162 l 1
138 88 l 1
212 88 l 1
238 114 l 1
138 338 m 1
164 312 l 1
238 386 l 1
212 412 l 1
138 412 l 1
138 338 l 1
388 88 m 1
462 88 l 1
462 162 l 1
436 188 l 1
362 114 l 1
388 88 l 1
300 176 m 1
374 250 l 1
300 324 l 1
226 250 l 1
300 176 l 1
436 312 m 1
462 338 l 1
462 412 l 1
388 412 l 1
362 386 l 1
436 312 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: H18543
Encoding: 9642 9642
Width: 600
Flags: W
HStem: 0 250<176 424>
VStem: 175 250<1 249>
Fore
175 0 m 25
175 250 l 25
425 250 l 25
425 0 l 25
175 0 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: H18551
Encoding: 9643 9643
Width: 600
Flags: W
HStem: 0 78<254 346> 172 78<254 346>
VStem: 175 78<79 171> 347 78<79 171>
Fore
253 78 m 25
347 78 l 25
347 172 l 25
253 172 l 25
253 78 l 25
175 0 m 25
175 250 l 25
425 250 l 25
425 0 l 25
175 0 l 25
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: filledrect
Encoding: 9644 9644
Width: 600
Flags: W
HStem: 0 300<51 549>
VStem: 50 500<1 299>
Fore
50 0 m 25
50 300 l 25
550 300 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni25AD
Encoding: 9645 9645
Width: 600
Flags: W
HStem: 0 88<135 461> 212 88<135 461>
VStem: 50 84<89 211> 462 88<89 211>
Fore
134 88 m 25
462 88 l 25
462 212 l 25
134 212 l 25
134 88 l 25
50 0 m 25
50 300 l 25
550 300 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni25AE
Encoding: 9646 9646
Width: 600
Flags: W
HStem: 0 500<151 449>
VStem: 150 300<1 499>
Fore
450 0 m 25
150 0 l 25
150 500 l 25
450 500 l 25
450 0 l 25
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni25AF
Encoding: 9647 9647
Width: 600
Flags: W
HStem: 0 84<239 361> 412 88<239 361>
VStem: 150 88<85 411> 362 88<85 411>
Fore
362 84 m 25
362 412 l 25
238 412 l 25
238 84 l 25
362 84 l 25
450 0 m 25
150 0 l 25
150 500 l 25
450 500 l 25
450 0 l 25
EndSplineSet
MinimumDistance: x4,-1
EndChar
StartChar: uni25B0
Encoding: 9648 9648
Width: 600
Flags: W
HStem: 0 300<75 525>
Fore
25 0 m 9
75 300 l 25
575 300 l 25
525 0 l 17
25 0 l 9
EndSplineSet
EndChar
StartChar: uni25B1
Encoding: 9649 9649
Width: 600
Flags: W
HStem: 0 88<125 452> 212 88<144 471>
DStem: 75 300 144 212 25 0 124 88 472 212 575 300 452 88 525 0
Fore
124 88 m 25
452 88 l 25
472 212 l 25
144 212 l 25
124 88 l 25
25 0 m 25
75 300 l 25
575 300 l 25
525 0 l 25
25 0 l 25
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: triagup
Encoding: 9650 9650
Width: 600
Flags: W
HStem: 0 21G<35 565>
Fore
565 0 m 1
35 0 l 1
301 454 l 1
565 0 l 1
EndSplineSet
EndChar
StartChar: uni25B3
Encoding: 9651 9651
Width: 600
Flags: W
HStem: 0 88<190 410>
DStem: 300 278 301 454 411 88 565 0 301 454 300 278 35 0 189 88
Fore
411 88 m 1
300 278 l 1
189 88 l 1
411 88 l 1
565 0 m 1
35 0 l 1
301 454 l 1
565 0 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: uni25B4
Encoding: 9652 9652
Width: 600
Flags: W
HStem: 0 21G<168 432>
Fore
432 0 m 1
168 0 l 1
300 226 l 1
432 0 l 1
EndSplineSet
EndChar
StartChar: uni25B5
Encoding: 9653 9653
Width: 600
Flags: W
HStem: 0 60<274 326>
Fore
327 60 m 1
300 106 l 1
273 60 l 1
327 60 l 1
432 0 m 1
168 0 l 1
300 226 l 1
432 0 l 1
EndSplineSet
EndChar
StartChar: uni25B6
Encoding: 9654 9654
Width: 600
Flags: W
Fore
543 265 m 1
84 0 l 1
84 530 l 1
543 265 l 1
EndSplineSet
EndChar
StartChar: uni25B7
Encoding: 9655 9655
Width: 600
Flags: W
VStem: 84 89<155 375>
DStem: 173 376 84 530 366 265 543 265 366 265 543 265 173 154 84 0
Fore
366 265 m 1
173 376 l 1
173 154 l 1
366 265 l 1
543 265 m 1
84 0 l 1
84 530 l 1
543 265 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: uni25B8
Encoding: 9656 9656
Width: 600
Flags: W
Fore
428 133 m 1
199 0 l 1
199 266 l 1
428 133 l 1
EndSplineSet
EndChar
StartChar: uni25B9
Encoding: 9657 9657
Width: 600
Flags: W
VStem: 199 61<107 159>
Fore
307 133 m 1
260 160 l 1
260 106 l 1
307 133 l 1
428 133 m 1
199 0 l 1
199 266 l 1
428 133 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: triagrt
Encoding: 9658 9658
Width: 600
Flags: W
Fore
506 133 m 1
121 0 l 1
121 266 l 1
506 133 l 1
EndSplineSet
EndChar
StartChar: triagdn
Encoding: 9660 9660
Width: 600
Flags: W
HStem: 433 21<35 565>
Ref: 9650 N 1 0 0 -1 0 454
EndChar
StartChar: uni25BD
Encoding: 9661 9661
Width: 600
Flags: W
HStem: 366 88<190 410>
DStem: 35 454 189 366 301 0 300 176 411 366 565 454 300 176 301 0
Ref: 9651 N 1 0 0 -1 0 454
EndChar
StartChar: uni25BE
Encoding: 9662 9662
Width: 600
Flags: W
HStem: 205 21<168 432>
Ref: 9652 N 1 0 0 -1 0 226
EndChar
StartChar: uni25BF
Encoding: 9663 9663
Width: 600
Flags: W
HStem: 166 60<274 326>
Ref: 9653 N 1 0 0 -1 0 226
EndChar
StartChar: uni25C0
Encoding: 9664 9664
Width: 600
Flags: W
Ref: 9654 S -1 0 0 1 627 0
EndChar
StartChar: uni25C1
Encoding: 9665 9665
Width: 600
Flags: W
VStem: 454 89<155 375>
DStem: 84 265 261 265 543 0 454 154 543 530 454 376 84 265 261 265
Ref: 9655 N -1 0 0 1 627 0
EndChar
StartChar: uni25C2
Encoding: 9666 9666
Width: 600
Flags: W
Ref: 9656 N -1 0 0 1 627 0
EndChar
StartChar: uni25C3
Encoding: 9667 9667
Width: 600
Flags: W
VStem: 367 61<107 159>
Ref: 9657 N -1 0 0 1 627 0
EndChar
StartChar: triaglf
Encoding: 9668 9668
Width: 600
Flags: W
Fore
94 133 m 1
479 266 l 1
479 0 l 5
94 133 l 1
EndSplineSet
EndChar
StartChar: uni25C5
Encoding: 9669 9669
Width: 600
Flags: W
EndChar
StartChar: uni25C6
Encoding: 9670 9670
Width: 600
Flags: W
Fore
300 0 m 25
35 265 l 25
300 530 l 25
565 265 l 25
300 0 l 25
EndSplineSet
EndChar
StartChar: uni25C7
Encoding: 9671 9671
Width: 600
Flags: W
DStem: 35 265 160 265 300 0 300 125 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 300 405 300 530 440 265 565 265 300 530 300 405 35 265 160 265 440 265 565 265 300 125 300 0
Fore
300 125 m 25
440 265 l 25
300 405 l 25
160 265 l 25
300 125 l 25
300 0 m 25
35 265 l 25
300 530 l 25
565 265 l 25
300 0 l 25
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni25C9
Encoding: 9673 9673
Width: 600
Flags: W
HStem: -2 84<289 305> 168 196<289 305> 448 84<289 321>
VStem: 33 84<254 286> 202 196<254 270> 483 84<254 270>
Fore
302 364 m 4
354 364 398 319 398 266 c 4
398 212 354 168 300 168 c 4
246 168 202 212 202 267 c 4
202 321 246 364 302 364 c 4
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
303 448 m 0
199 448 117 367 117 267 c 0
117 164 198 82 300 82 c 0
401 82 483 164 483 265 c 0
483 365 400 448 303 448 c 0
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: lozenge
Encoding: 9674 9674
Width: 600
Flags: HMW
HStem: -19 20 573 20<299 299>
Fore
299 593 m 1
529 288 l 1
299 -19 l 1
72 289 l 1
299 593 l 1
299 468 m 1
177 288 l 1
300 109 l 1
423 288 l 1
299 468 l 1
EndSplineSet
EndChar
StartChar: circle
Encoding: 9675 9675
Width: 600
Flags: W
HStem: -2 84<289 305> 448 84<289 321>
VStem: 33 84<254 286> 483 84<254 270>
Fore
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
303 448 m 0
199 448 117 367 117 267 c 0
117 164 198 82 300 82 c 0
401 82 483 164 483 265 c 0
483 365 400 448 303 448 c 0
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni25CD
Encoding: 9677 9677
Width: 600
Flags: W
HStem: -2 84<289 305> 448 84<289 305>
VStem: 33 84<254 270> 184 88<124 406> 328 88<125 405> 483 84<254 270>
Fore
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
184 123 m 1
184 407 l 1
143 373 117 323 117 267 c 0
117 209 143 157 184 123 c 1
272 84 m 1
281 83 290 82 300 82 c 0
310 82 319 83 328 84 c 1
328 446 l 1
320 447 311 448 303 448 c 0
292 448 282 447 272 446 c 1
272 84 l 1
416 406 m 1
416 124 l 1
457 157 483 208 483 265 c 0
483 321 457 373 416 406 c 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: H18533
Encoding: 9679 9679
Width: 600
Flags: W
HStem: -2 534<289 321>
VStem: 33 534<254 286>
Fore
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni25D0
Encoding: 9680 9680
Width: 600
Flags: W
HStem: -2 84<300.125 319.182> 448 84<300 321>
VStem: 33 267<254 286> 483 84<254 270>
Fore
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
300 448 m 1
300 82 l 1
401 82 483 164 483 265 c 0
483 365 400 448 303 448 c 2
303 448 301 448 300 448 c 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni25D1
Encoding: 9681 9681
Width: 600
Flags: W
HStem: -2 84<280.818 299.875> 448 84<279 300>
VStem: 33 84<254 270> 300 267<254 286>
Ref: 9680 N -1 0 0 1 600 0
EndChar
StartChar: uni25D2
Encoding: 9682 9682
Width: 600
Flags: W
Ref: 9680 N 0 -1 1 0 35 565
EndChar
StartChar: uni25D3
Encoding: 9683 9683
Width: 600
Flags: W
Ref: 9680 N 0 1 -1 0 565 -35
EndChar
StartChar: uni25D4
Encoding: 9684 9684
Width: 600
Flags: W
HStem: -2 84<289 305> 266 266<296 305> 447.997 84.0029<289 295>
VStem: 33 84<254 270> 296 271<266 286> 482.997 83.6996<254 265>
Fore
297 532 m 0
445 532 567 415 567 267 c 0
567 118 448 -2 300 -2 c 0
153 -2 33 118 33 265 c 0
33 411 152 532 297 532 c 0
482.997 266 m 1
296 266 l 1
296 447.997 l 1
199.431 447.429 117 364.656 117 265 c 0
117 164 199 82 300 82 c 0
401.67 82 482.476 163.47 482.997 266 c 1
EndSplineSet
EndChar
StartChar: uni25D5
Encoding: 9685 9685
Width: 600
Flags: W
HStem: -2 270<289 299> 448 83.6497<289 299>
VStem: 33.0074 83.9926<268.125 285.399> 300 266.97<268 288.272>
Fore
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
117 268 m 1
300 268 l 1
300 448 l 1
198 446 118 367 117 268 c 1
EndSplineSet
EndChar
StartChar: uni25D6
Encoding: 9686 9686
Width: 600
Flags: W
HStem: 0 530<291 299>
VStem: 35 265<256 288>
Fore
300 0 m 0
152 0 35 119 35 267 c 0
35 413 151 530 300 530 c 1
300 0 l 0
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni25D7
Encoding: 9687 9687
Width: 600
Flags: W
HStem: 0 530<303 311>
VStem: 302 265<256 288>
Ref: 9686 N -1 0 0 1 602 0
EndChar
StartChar: invbullet
Encoding: 9688 9688
Width: 600
Flags: W
HStem: -200 368<288 304> 364 436<288 304>
VStem: 0 202<264 280> 0 600<-199 168 364 799> 398 202<251.911 269>
Fore
0 800 m 25
600 800 l 25
600 -200 l 25
0 -200 l 25
0 800 l 25
302 364 m 0
246 364 202 321 202 267 c 0
202 212 246 168 300 168 c 0
354 168 398 212 398 266 c 0
398 319 354 364 302 364 c 0
EndSplineSet
EndChar
StartChar: invcircle
Encoding: 9689 9689
Width: 600
Flags: W
HStem: 0 31<288 320> 115 366<288 305> 565 35<288 320>
VStem: 0 33<288 320> 117 366<288 304> 567 33<288 320>
Fore
0 0 m 25
0 600 l 25
600 600 l 25
600 0 l 25
0 0 l 25
303 565 m 0
155 565 33 448 33 300 c 0
33 151 152 31 300 31 c 0
447 31 567 151 567 298 c 0
567 444 448 565 303 565 c 0
303 481 m 0
400 481 483 398 483 298 c 0
483 197 401 115 300 115 c 0
198 115 117 197 117 300 c 0
117 400 199 481 303 481 c 0
EndSplineSet
EndChar
StartChar: uni25E2
Encoding: 9698 9698
Width: 600
Flags: W
HStem: 0 21G<50 550>
Fore
550 500 m 25
550 0 l 25
50 0 l 25
550 500 l 25
EndSplineSet
EndChar
StartChar: uni25E3
Encoding: 9699 9699
Width: 600
Flags: W
HStem: 0 21<50 550>
Ref: 9698 N -1 0 0 1 600 0
EndChar
StartChar: uni25E4
Encoding: 9700 9700
Width: 600
Flags: W
HStem: 479 21<50 550>
Ref: 9698 N -1 0 0 -1 600 500
EndChar
StartChar: uni25E5
Encoding: 9701 9701
Width: 600
Flags: W
HStem: 479 21<50 550>
Ref: 9698 N 1 0 0 -1 0 500
EndChar
StartChar: openbullet
Encoding: 9702 9702
Width: 600
Flags: W
HStem: 138 60<288.385 304> 334 60<299 302 302.063 313.722>
VStem: 172 60<265 269> 368 60<254.539 269>
Fore
302 394 m 0
372 393 428 336 428 266 c 0
428 195 371 138 300 138 c 0
229 138 172 196 172 267 c 0
172 338 230 394 302 394 c 0
302 334 m 0
262 334 232 304 232 267 c 0
232 228 263 198 300 198 c 0
337 198 368 229 368 266 c 0
368 302 336 335 302 334 c 0
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni25E7
Encoding: 9703 9703
Width: 600
Flags: W
HStem: 0 88<301 461> 412 88<301 461>
VStem: 50 250<89 411> 462 88<89 411>
Fore
300 88 m 25
462 88 l 25
462 412 l 25
300 412 l 25
300 88 l 25
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni25E8
Encoding: 9704 9704
Width: 600
Flags: W
HStem: 412 88<139 299 139 299>
VStem: 50 88<89 411> 300 250<89 411>
Ref: 9703 N -1 0 0 -1 600 500
EndChar
StartChar: uni25E9
Encoding: 9705 9705
Width: 600
Flags: W
HStem: 0 88<139 461>
VStem: 462 88<89 411>
Fore
138 88 m 25
462 88 l 25
462 412 l 25
138 88 l 25
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: uni25EA
Encoding: 9706 9706
Width: 600
Flags: W
HStem: 412 88<139 461>
VStem: 50 88<89 411>
Ref: 9705 N -1 0 0 -1 600 500
EndChar
StartChar: uni25EB
Encoding: 9707 9707
Width: 600
Flags: W
HStem: 0 88<139 255 345 461> 412 88<139 255 345 461>
VStem: 50 88<89 411> 256 88<89 411> 462 88<89 411>
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
256 412 m 1
138 412 l 9
138 88 l 17
256 88 l 1
256 412 l 1
344 412 m 1
344 88 l 1
462 88 l 9
462 412 l 17
344 412 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni25EC
Encoding: 9708 9708
Width: 600
Flags: W
HStem: 0 88<190 410> 110 88<299 307>
VStem: 256 88<144.75 160>
DStem: 300 278 301 454 411 88 565 0 301 454 300 278 35 0 189 88
Fore
301 198 m 0
324 198 344 177 344 154 c 0
344 130 324 110 300 110 c 0
276 110 256 130 256 154 c 0
256 179 276 198 301 198 c 0
411 88 m 1
300 278 l 1
189 88 l 1
411 88 l 1
565 0 m 1
35 0 l 1
301 454 l 1
565 0 l 1
EndSplineSet
MinimumDistance: x7,-1
EndChar
StartChar: uni25ED
Encoding: 9709 9709
Width: 600
Flags: W
HStem: 0 88<301 410>
DStem: 300 278 301 454 411 88 565 0
Fore
411 88 m 1
300 278 l 1
300 88 l 1
411 88 l 1
565 0 m 1
35 0 l 1
301 454 l 1
565 0 l 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: uni25EE
Encoding: 9710 9710
Width: 600
Flags: W
HStem: 0 88<190 299>
DStem: 299 454 300 278 35 0 189 88
Ref: 9709 N -1 0 0 1 600 0
EndChar
StartChar: uni25F0
Encoding: 9712 9712
Width: 600
Flags: W
HStem: 0 88<139 461> 206 88<139 255> 412 88<139 255 345 461>
VStem: 50 88<89 206 295 411> 256 88<295 411> 462 88<89 411>
Fore
50 0 m 25
50 500 l 25
550 500 l 25
550 0 l 25
50 0 l 25
344 412 m 1
344 206 l 1
138 206 l 1
138 88 l 9
462 88 l 25
462 412 l 17
344 412 l 1
256 412 m 1
138 412 l 1
138 294 l 1
256 294 l 1
256 412 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni25F1
Encoding: 9713 9713
Width: 600
Flags: W
HStem: 412 88<139 255 139 255 139 461 345 461>
VStem: 50 88<89 205 294 411> 256 88<89 205> 462 88<89 411>
Ref: 9712 N 1 0 0 -1 0 500
EndChar
StartChar: uni25F2
Encoding: 9714 9714
Width: 600
Flags: W
HStem: 412 88<139 255 139 461 345 461 345 461>
VStem: 462 88<89 411 89 205 89 205 294 411>
Ref: 9712 N -1 -0 0 -1 600 500
EndChar
StartChar: uni25F3
Encoding: 9715 9715
Width: 600
Flags: W
HStem: 0 88<139 461> 206 88<345 461> 412 88<139 255 345 461>
VStem: 462 88<89 411 89 206 295 411 295 411>
Ref: 9712 N -1 0 0 1 600 0
EndChar
StartChar: uni25F4
Encoding: 9716 9716
Width: 600
Flags: W
HStem: -2 84<289 305> 224 88<124 255> 224 308<289 321>
VStem: 256 88<313 441> 483 84<254 270>
Fore
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
123 312 m 1
256 312 l 1
256 442 l 1
190 426 139 376 123 312 c 1
122 224 m 1
141 142 213 82 300 82 c 0
401 82 483 164 483 265 c 0
483 351 422 424 344 443 c 1
344 224 l 1
122 224 l 1
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni25F5
Encoding: 9717 9717
Width: 600
Flags: W
HStem: -2 308<289 321> 218 88<124 255> 448 84<289 305>
VStem: 256 88<89 217> 483 84<260 276>
Ref: 9716 N 1 0 0 -1 0 530
EndChar
StartChar: uni25F6
Encoding: 9718 9718
Width: 600
Flags: W
HStem: -2 308<279 311> 218 88<345 476> 448 84<295 311>
VStem: 33 84<260 276> 256 88<89 217>
Ref: 9716 N -1 -0 0 -1 600 530
EndChar
StartChar: uni25F7
Encoding: 9719 9719
Width: 600
Flags: W
HStem: -2 84<295 311> 224 88<345 476> 224 308<279 311>
VStem: 33 84<254 270> 256 88<313 441>
Ref: 9716 N -1 0 0 1 600 0
EndChar
StartChar: uni2607
Encoding: 9735 9735
Width: 600
Flags: W
HStem: 0 89<248 264> 0 220<384 386 386.031 396.715>
VStem: 342 88<152 179>
DStem: 88 281 212 281 279.57 88.709 342 151 354 547 417 485 88 281 212 281
Fore
279.57 88.709 m 1
88 281 l 1
354 547 l 2
371 564 400 564 417 547 c 0
434 530 434 502 417 485 c 2
212 281 l 1
342 151 l 1
342 177 l 2
342 201 362 220 386 220 c 0
410 221 430 201 430 176 c 2
430 0 l 1
255 0 l 2
229 0 209 20 210 45 c 0
210 69 230.002 89.2725 254 89 c 2
279.57 88.709 l 1
EndSplineSet
MinimumDistance: x9,-1
EndChar
StartChar: uni2608
Encoding: 9736 9736
Width: 600
Flags: W
HStem: 0 89<371 387> 0 220<499 508 508.031 518.715> 484 88<171 412>
VStem: 83 88<14.6074 483> 464 88<152 179>
DStem: 210 281 334 281 401.57 88.709 464 151 413 484 539 485 210 281 334 281
Fore
561 528 m 0
561 510.883 549.97 495.97 539 485 c 2
334 281 l 1
464 151 l 1
464 177 l 2
464 201 484 220 508 220 c 0
532 221 552 201 552 176 c 2
552 0 l 1
377 0 l 2
351 0 331 20 332 45 c 0
332 69 352.002 89.2725 376 89 c 2
401.57 88.709 l 1
210 281 l 1
413 484 l 1
171 484 l 1
171 24 l 2
171 -0.288086 151.288 -20 127 -20 c 0
102.712 -20 83 -0.288086 83 24 c 2
83 572 l 1
517 572 l 2
541.288 572 561 552.288 561 528 c 0
EndSplineSet
MinimumDistance: x6,-1 y14,17 y14,15
EndChar
StartChar: uni2609
Encoding: 9737 9737
Width: 600
Flags: W
HStem: -2 84<289 305> 216.02 99.96<299 305> 448 84<289 321>
VStem: 33 84<254 286> 250.02 99.96<264 270> 483 84<254 270>
Fore
301.02 315.98 m 4
327.54 315.98 349.98 293.03 349.98 266 c 4
349.98 238.46 327.54 216.02 300 216.02 c 4
272.46 216.02 250.02 238.46 250.02 266.51 c 4
250.02 294.05 272.46 315.98 301.02 315.98 c 4
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
303 448 m 0
199 448 117 367 117 267 c 0
117 164 198 82 300 82 c 0
401 82 483 164 483 265 c 0
483 365 400 448 303 448 c 0
EndSplineSet
MinimumDistance: x5,-1
EndChar
StartChar: uni2630
Encoding: 9776 9776
Width: 600
Flags: W
HStem: 0 100<51 549> 200 100<51 549> 400 100<51 549>
VStem: 50 500<1 99 201 299 401 499>
Fore
50 0 m 25
50 100 l 25
550 100 l 25
550 0 l 25
50 0 l 25
50 200 m 25
50 300 l 25
550 300 l 25
550 200 l 25
50 200 l 25
50 400 m 25
50 500 l 25
550 500 l 25
550 400 l 25
50 400 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni2631
Encoding: 9777 9777
Width: 600
Flags: W
HStem: 0 100<51 549> 200 100<51 549> 400 100<51 249 351 549>
VStem: 50 200<401 499> 350 200<401 499>
Fore
350 400 m 5
350 500 l 1
550 500 l 9
550 400 l 17
350 400 l 5
250 500 m 1
250 400 l 1
50 400 l 9
50 500 l 17
250 500 l 1
50 0 m 25
50 100 l 25
550 100 l 25
550 0 l 25
50 0 l 25
50 200 m 25
50 300 l 25
550 300 l 25
550 200 l 25
50 200 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni2632
Encoding: 9778 9778
Width: 600
Flags: W
HStem: 0 100<51 549> 200 100<51 249 351 549> 400 100<51 549>
VStem: 50 200<201 299> 350 200<201 299>
Fore
50 0 m 25
50 100 l 25
550 100 l 25
550 0 l 25
50 0 l 25
350 200 m 1
350 300 l 1
550 300 l 9
550 200 l 17
350 200 l 1
250 300 m 1
250 200 l 1
50 200 l 9
50 300 l 17
250 300 l 1
50 400 m 25
50 500 l 25
550 500 l 25
550 400 l 25
50 400 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni2633
Encoding: 9779 9779
Width: 600
Flags: W
HStem: 0 100<51 549> 200 100<51 249 351 549> 400 100<51 249 351 549>
VStem: 50 200<201 299 401 499> 350 200<201 299 401 499>
Fore
350 400 m 1
350 500 l 1
550 500 l 9
550 400 l 17
350 400 l 1
250 500 m 1
250 400 l 1
50 400 l 9
50 500 l 17
250 500 l 1
350 200 m 1
350 300 l 1
550 300 l 9
550 200 l 17
350 200 l 1
250 300 m 1
250 200 l 1
50 200 l 9
50 300 l 17
250 300 l 1
50 0 m 25
50 100 l 25
550 100 l 25
550 0 l 25
50 0 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni2634
Encoding: 9780 9780
Width: 600
Flags: W
HStem: 0 100<51 249 351 549> 200 100<51 549> 400 100<51 549>
VStem: 50 200<1 99> 350 200<1 99>
Fore
250 100 m 1
250 0 l 1
50 0 l 9
50 100 l 17
250 100 l 1
350 0 m 1
350 100 l 1
550 100 l 9
550 0 l 17
350 0 l 1
550 500 m 25
550 400 l 25
50 400 l 25
50 500 l 25
550 500 l 25
550 300 m 25
550 200 l 25
50 200 l 25
50 300 l 25
550 300 l 25
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: uni2635
Encoding: 9781 9781
Width: 600
Flags: W
HStem: 0 100<51 249 351 549> 200 100<51 549> 400 100<51 249 351 549>
VStem: 50 200<1 99 401 499> 350 200<1 99 401 499>
Fore
350 400 m 1
350 500 l 1
550 500 l 9
550 400 l 17
350 400 l 1
250 500 m 1
250 400 l 1
50 400 l 9
50 500 l 17
250 500 l 1
350 0 m 1
350 100 l 1
550 100 l 9
550 0 l 17
350 0 l 1
250 100 m 1
250 0 l 1
50 0 l 9
50 100 l 17
250 100 l 1
50 200 m 25
50 300 l 25
550 300 l 25
550 200 l 25
50 200 l 25
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni2636
Encoding: 9782 9782
Width: 600
Flags: W
HStem: 0 100<51 249 351 549> 200 100<51 249 351 549> 400 100<51 549>
VStem: 50 200<1 99 201 299> 350 200<1 99 201 299>
Fore
350 100 m 1
550 100 l 9
550 0 l 17
350 0 l 1
350 100 l 1
250 0 m 1
50 0 l 9
50 100 l 17
250 100 l 1
250 0 l 1
350 300 m 1
550 300 l 9
550 200 l 17
350 200 l 1
350 300 l 1
250 200 m 1
50 200 l 9
50 300 l 17
250 300 l 1
250 200 l 1
50 500 m 25
550 500 l 25
550 400 l 25
50 400 l 25
50 500 l 25
EndSplineSet
MinimumDistance: x1,-1
EndChar
StartChar: uni2637
Encoding: 9783 9783
Width: 600
Flags: W
HStem: 0 100<51 249 351 549> 200 100<51 249 351 549> 400 100<51 249 351 549>
VStem: 50 200<1 99 201 299 401 499> 350 200<1 99 201 299 401 499>
Fore
350 400 m 1
350 500 l 1
550 500 l 9
550 400 l 17
350 400 l 1
250 500 m 1
250 400 l 1
50 400 l 9
50 500 l 17
250 500 l 1
350 200 m 1
350 300 l 1
550 300 l 9
550 200 l 17
350 200 l 1
250 300 m 1
250 200 l 1
50 200 l 9
50 300 l 17
250 300 l 1
350 0 m 1
350 100 l 1
550 100 l 9
550 0 l 17
350 0 l 1
250 100 m 1
250 0 l 1
50 0 l 9
50 100 l 17
250 100 l 1
EndSplineSet
MinimumDistance: x2,-1
EndChar
StartChar: uni2639
Encoding: 9785 9785
Width: 600
Flags: W
HStem: -2 84<289 305> 230 51<289 305> 284.04 99.96<217 225 377 385> 448 84<289 321>
VStem: 33 84<254 286> 169 99.96<333 336> 329 99.96<333 336> 483 84<254 283>
Fore
380 384 m 0
406.52 384 428.96 361.05 428.96 334.02 c 0
428.96 306.48 406.52 284.04 378.98 284.04 c 0
351.44 284.04 329 306.48 329 334.53 c 0
329 362.07 351.44 384 380 384 c 0
220 384 m 0
246.52 384 268.96 361.05 268.96 334.02 c 0
268.96 306.48 246.52 284.04 218.98 284.04 c 0
191.44 284.04 169 306.48 169 334.53 c 0
169 362.07 191.44 384 220 384 c 0
194.25 143 m 0
179.25 143 168.75 154.25 168.75 171.5 c 0
168.75 228.5 231 281 300 281 c 0
369 281 431.25 228.5 431.25 171.5 c 0
431.25 154.25 420.75 143 405.75 143 c 0
390.75 143 385.5 149.75 380.25 173 c 0
372.75 207.5 341.25 230 300 230 c 0
258.75 230 227.25 207.5 219.75 173 c 0
214.5 149.75 209.25 143 194.25 143 c 0
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
303 448 m 0
199 448 117 367 117 267 c 0
117 164 198 82 300 82 c 0
401 82 483 164 483 265 c 0
483 365 400 448 303 448 c 0
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: smileface
Encoding: 9786 9786
Width: 600
Flags: W
HStem: -2 84<289 305> 111 51<289 305> 284.04 99.96<217 225 377 385> 448 84<289 321>
VStem: 33 84<248 286> 169 99.96<333 336> 329 99.96<333 336> 483 84<248 283>
Fore
380 384 m 0
406.52 384 428.96 361.05 428.96 334.02 c 0
428.96 306.48 406.52 284.04 378.98 284.04 c 0
351.44 284.04 329 306.48 329 334.53 c 0
329 362.07 351.44 384 380 384 c 0
220 384 m 0
246.52 384 268.96 361.05 268.96 334.02 c 0
268.96 306.48 246.52 284.04 218.98 284.04 c 0
191.44 284.04 169 306.48 169 334.53 c 0
169 362.07 191.44 384 220 384 c 0
194.25 249 m 0
209.25 249 214.5 242.25 219.75 219 c 0
227.25 184.5 258.75 162 300 162 c 0
341.25 162 372.75 184.5 380.25 219 c 0
385.5 242.25 390.75 249 405.75 249 c 0
420.75 249 431.25 237.75 431.25 220.5 c 0
431.25 163.5 369 111 300 111 c 0
231 111 168.75 163.5 168.75 220.5 c 0
168.75 237.75 179.25 249 194.25 249 c 0
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
303 448 m 0
199 448 117 367 117 267 c 0
117 164 198 82 300 82 c 0
401 82 483 164 483 265 c 0
483 365 400 448 303 448 c 0
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: invsmileface
Encoding: 9787 9787
Width: 600
Flags: W
HStem: -2 96<289 305> 158 374<289 305>
VStem: 269 60<333 337> 464 103<231 265>
Fore
380 384 m 0
351 384 329 362 329 335 c 0
329 306 351 284 379 284 c 0
407 284 429 306 429 334 c 0
429 361 407 384 380 384 c 0
220 384 m 0
191 384 169 362 169 335 c 0
169 306 191 284 219 284 c 0
247 284 269 306 269 334 c 0
269 361 247 384 220 384 c 0
168 266 m 0
149 266 136 252 136 231 c 0
136 159 214 94 300 94 c 0
386 94 464 159 464 231 c 0
464 252 451 266 432 266 c 0
413 266 407 258 400 229 c 0
391 186 352 158 300 158 c 0
248 158 209 186 200 229 c 0
193 258 187 266 168 266 c 0
303 532 m 0
448 532 567 411 567 265 c 0
567 118 447 -2 300 -2 c 0
152 -2 33 118 33 267 c 0
33 415 155 532 303 532 c 0
EndSplineSet
MinimumDistance: x17,-1
EndChar
StartChar: uni2669
Encoding: 9833 9833
Width: 600
Flags: W
HStem: -17 168<208 224>
VStem: 248 84<150 543>
Fore
248 149 m 1
248 541 l 1
248 564 267 583 290 583 c 0
313 583 332 564 332 541 c 1
332 70 l 2
332 14 278 -17 222 -17 c 24
166 -17 112 14 112 70 c 16
112 127 167 151 222 151 c 16
231 151 239 150 248 149 c 1
EndSplineSet
MinimumDistance: x3,-1
EndChar
StartChar: musicalnote
Encoding: 9834 9834
Width: 600
Flags: W
HStem: -17 168<208 224>
VStem: 248 84<150 350 486 543> 438 84<182.921 192>
Fore
248 149 m 1
248 541 l 2
248 564 267 583 290 583 c 0
313 583 332 564 332 541 c 2
332 486 l 1
350 375 506 452 522 192 c 1
522 169 503 150 480 150 c 0
457 150 438 169 438 192 c 1
449 313 388 314 332 351 c 1
332 70 l 2
332 14 278 -17 222 -17 c 24
166 -17 112 14 112 70 c 16
112 127 167 151 222 151 c 16
231 151 239 150 248 149 c 1
EndSplineSet
MinimumDistance: x5,-1
Back
270 123.644 m 1
270 556 l 1
310 556 l 1
310 517.398 l 1
317.811 338.186 489.957 433.37 498 188 c 1
458 188 l 1
464.095 343.982 310 496.939 310 401.968 c 2
310 64 l 10
310 20.4756 265.524 0 222 0 c 24
178.476 0 134.939 20.4853 134 64 c 24
133.029 108.968 177.021 134 222 134 c 16
238.92 134 255.7 130.458 270 123.644 c 1
EndSplineSet
EndChar
StartChar: musicalnotedbl
Encoding: 9835 9835
Width: 600
Flags: W
HStem: -17 168<400 416> 111 168<144 160>
VStem: 184 84<278 441> 440 84<150 367>
DStem: 268 442 184 570 440 367 524 422
Fore
524 422 m 1
524 70 l 2
524 14 470 -17 414 -17 c 24
358 -17 304 14 304 70 c 16
304 127 359 151 414 151 c 16
423 151 431 150 440 149 c 1
440 367 l 1
268 442 l 1
268 198 l 2
268 142 214 111 158 111 c 24
102 111 48 142 48 198 c 16
48 255 103 279 158 279 c 16
167 279 175 278 184 277 c 1
184 570 l 1
524 422 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: uni266C
Encoding: 9836 9836
Width: 600
Flags: W
HStem: -17 168<400 416> 111 168<144 160>
VStem: 184 84<278 297 389 441> 440 84<150 223 315 367>
DStem: 268 442 184 570 440 367 524 422
Fore
524 422 m 1
524 70 l 2
524 14 470 -17 414 -17 c 24
358 -17 304 14 304 70 c 16
304 127 359 151 414 151 c 16
423 151 431 150 440 149 c 1
440 223 l 1
268 298 l 1
268 198 l 2
268 142 214 111 158 111 c 24
102 111 48 142 48 198 c 16
48 255 103 279 158 279 c 16
167 279 175 278 184 277 c 1
184 570 l 1
524 422 l 1
268 389 m 1
440 314 l 1
440 367 l 1
268 442 l 1
268 389 l 1
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: dotlessj
Encoding: 63166 63166
Width: 600
Flags: W
HStem: -205 100<165 309> 337 100<165 387>
VStem: 388 100<-29 337>
Fore
388 337 m 1
186 337 l 2
161 337 150 339 141 347 c 1
128 356 120 372 120 387 c 0
120 404 129 421 144 430 c 0
153 436 160 437 186 437 c 2
488 437 l 1
488 -20 l 2
488 -125 406 -205 297 -205 c 2
183 -205 l 2
158 -205 147 -203 138 -195 c 1
125 -186 117 -170 117 -155 c 0
117 -138 127 -121 141 -112 c 0
150 -106 158 -105 183 -105 c 2
294 -105 l 2
351 -105 388 -72 388 -20 c 2
388 337 l 1
EndSplineSet
MinimumDistance: x6,-1
EndChar
StartChar: commaaccent
Encoding: 63171 63171
Width: 600
Flags: W
DStem: 277 -85 338 -126 195 -211 256 -252
Fore
338 -126 m 2
256 -252 l 2
243 -272 234 -278 220 -278 c 0
200 -278 183 -262 183 -243 c 0
183 -234 187 -223 195 -211 c 2
277 -85 l 2
290 -65 299 -59 315 -59 c 0
335 -59 351 -76 351 -96 c 0
351 -103 346 -114 338 -126 c 2
EndSplineSet
MinimumDistance: x0,-1
EndChar
StartChar: ff
Encoding: 64256 64256
Width: 600
Flags: W
HStem: 0 100<34 95 196 242 370 421 522 562> 337 100<33.6442 95 196 242 370 421 522 562> 524 99<227 242 553 562>
VStem: -10 304<384 389> 95 100<100 337 437 480> 316 304<384 389> 421 100<100 337 437 480>
Fore
195 337 m 1
195 100 l 1
228 100 l 2
255 100 263 98 273 91 c 0
286 81 294 66 294 50 c 0
294 33 285 17 270 7 c 0
263 3 248 0 228 0 c 2
53 0 l 2
29 0 16 3 7 10 c 0
-6 19 -14 34 -14 50 c 0
-14 67 -5 84 10 93 c 0
19 99 26 100 53 100 c 2
95 100 l 1
95 337 l 1
57 337 l 2
31 337 21 339 11 347 c 0
-2 356 -10 371 -10 387 c 0
-10 404 -1 421 14 430 c 0
23 436 30 437 57 437 c 2
95 437 l 1
95 476 l 2
95 558 155 623 231 623 c 0
267 623 310 612 330 599 c 0
344 590 352 575 352 559 c 0
352 531 330 508 303 508 c 0
294 508 290 509 273 515 c 0
257 521 244 524 234 524 c 0
213 524 195 502 195 476 c 2
195 437 l 1
228 437 l 2
255 437 263 435 273 428 c 0
286 418 294 403 294 387 c 0
294 370 285 354 270 344 c 0
262 339 251 337 228 337 c 2
195 337 l 1
521 337 m 1
521 100 l 1
554 100 l 2
581 100 589 98 599 91 c 0
612 81 620 66 620 50 c 0
620 33 611 17 596 7 c 0
589 3 574 0 554 0 c 2
379 0 l 2
355 0 342 3 333 10 c 0
320 19 312 34 312 50 c 0
312 67 321 84 336 93 c 0
345 99 352 100 379 100 c 2
421 100 l 1
421 337 l 1
383 337 l 2
357 337 347 339 337 347 c 0
324 356 316 371 316 387 c 0
316 404 325 421 340 430 c 0
349 436 356 437 383 437 c 2
421 437 l 1
421 476 l 2
421 558 481 623 557 623 c 0
593 623 636 612 656 599 c 0
670 590 678 575 678 559 c 0
678 531 656 508 629 508 c 0
620 508 616 509 599 515 c 0
583 521 570 524 560 524 c 0
539 524 521 502 521 476 c 2
521 437 l 1
554 437 l 2
581 437 589 435 599 428 c 0
612 418 620 403 620 387 c 0
620 370 611 354 596 344 c 0
588 339 577 337 554 337 c 2
521 337 l 1
EndSplineSet
MinimumDistance: x34,-1
Ligature: f f
EndChar
StartChar: fi
Encoding: 64257 64257
Width: 600
Flags: W
HStem: 0 100<34 94 196 242 370 416 517 562> 337 100<33.6442 94 196 242 378 416> 519 105<383 499> 524 99<227 242>
VStem: -10 304<384 389> 95 100<100 337 437 480> 382 118<520 623> 417 100<100 337>
Fore
195 337 m 1
195 100 l 1
228 100 l 2
255 100 263 98 273 91 c 0
286 81 294 66 294 50 c 0
294 33 285 17 270 7 c 0
263 3 248 0 228 0 c 2
53 0 l 2
29 0 16 3 7 10 c 0
-6 19 -14 34 -14 50 c 4
-14 67 -5 84 10 93 c 0
19 99 26 100 53 100 c 2
95 100 l 1
95 337 l 1
57 337 l 2
31 337 21 339 11 347 c 0
-2 356 -10 371 -10 387 c 0
-10 404 -1 421 14 430 c 0
23 436 30 437 57 437 c 2
95 437 l 1
95 476 l 2
95 558 155 623 231 623 c 0
267 623 310 612 330 599 c 0
344 590 352 575 352 559 c 0
352 531 330 508 303 508 c 0
294 508 290 509 273 515 c 0
257 521 244 524 234 524 c 0
213 524 195 502 195 476 c 2
195 437 l 1
228 437 l 2
255 437 263 435 273 428 c 0
286 418 294 403 294 387 c 0
294 370 285 354 270 344 c 0
262 339 251 337 228 337 c 2
195 337 l 1
517 437 m 1
517 100 l 1
553 100 l 2
580 100 589 98 599 91 c 0
612 81 619 66 619 50 c 0
619 33 610 16 595 7 c 0
588 3 573 0 553 0 c 2
379 0 l 2
355 0 342 3 333 10 c 0
320 19 312 34 312 50 c 0
312 67 321 84 336 93 c 0
345 99 352 100 379 100 c 2
417 100 l 1
417 337 l 1
397 337 l 2
372 337 362 339 352 347 c 0
339 356 331 371 331 387 c 0
331 404 340 421 355 430 c 0
364 436 371 437 397 437 c 2
517 437 l 1
500 624 m 1
500 519 l 1
382 519 l 1
382 624 l 1
500 624 l 1
EndSplineSet
MinimumDistance: x34,-1 x52,35 y35,52 y35,34
Ligature: f i
EndChar
StartChar: fl
Encoding: 64258 64258
Width: 600
Flags: W
HStem: 0 100<31 91 193 239 367 412 513 559> 337 100<31.4927 92 193 239> 523 100<223 239 374 412>
VStem: -12 303<384 389> 92 100<100 337 437 480> 413 100<100 523>
Fore
192 337 m 1
192 100 l 1
225 100 l 2
251 100 261 98 270 91 c 0
283 81 291 66 291 50 c 0
291 33 282 17 267 7 c 0
260 3 245 0 225 0 c 2
49 0 l 2
26 0 12 3 3 10 c 0
-9 19 -17 34 -17 50 c 0
-17 67 -8 84 7 93 c 0
16 99 23 100 49 100 c 2
92 100 l 1
92 337 l 1
55 337 l 2
29 337 19 339 9 347 c 0
-4 356 -12 371 -12 387 c 0
-12 404 -3 421 12 430 c 0
21 436 28 437 55 437 c 2
92 437 l 1
92 475 l 2
92 557 152 623 225 623 c 0
267 623 305 613 334 595 c 1
345 616 358 623 383 623 c 2
513 623 l 1
513 100 l 1
550 100 l 2
578 100 586 98 596 91 c 0
609 81 617 66 617 50 c 0
617 33 608 16 593 7 c 0
586 3 571 0 550 0 c 2
375 0 l 2
351 0 338 3 329 10 c 0
316 19 308 34 308 50 c 0
308 67 317 83 332 93 c 0
341 99 348 100 375 100 c 2
413 100 l 1
413 523 l 1
379 523 l 2
364 523 356 526 343 535 c 1
333 517 320 508 303 508 c 0
295 508 287 510 274 514 c 0
250 522 243 523 232 523 c 0
207 523 192 505 192 475 c 2
192 437 l 1
225 437 l 2
252 437 260 435 270 428 c 0
283 418 291 403 291 387 c 0
291 370 282 354 267 344 c 0
259 339 248 337 225 337 c 2
192 337 l 1
EndSplineSet
MinimumDistance: x24,-1 x23,25 y25,23 y25,24
Ligature: f l
EndChar
EndChars
EndSplineFont
tvtime-1.0.11/data/COPYING.FreeMonoBold 0000664 0001750 0001750 00000001635 12354244126 014313 0000000 0000000 The FreeMonoBold.ttf and source file FreeMonoBold.sfd comes from
the freefont project. See http://www.nongnu.org/freefont/
--
freefont is a collection of free Universal Character Set outline fonts.
Copyright (C) 2002 Free Software Foundation
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.
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.
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.
tvtime-1.0.11/data/filmstrip_0004.png 0000664 0001750 0001750 00000003210 12354244126 014117 0000000 0000000 ‰PNG
IHDR ' ' Œ£Q5 bKGD ÿ ÿ ÿ ½§“ pHYs d_‘ tIMEÓ -ƒP| IDATxœí˜MhS]Ç777_I†D‹Æ6µJÅHÅY™¢]#è ³éÆ
~ ADQWŽPÝ(ÈÈÀZ°³Pì,lkeЊ…Š8U[;µJk•&–SÛ$÷+g5y›6ê;Útõþá½ç<ç<¿{¸Ïyžsá7ý˜¤oôÙ+Pl 8}ú4gÏžuùýþÖ/6ÇɹƒÃàÊ•+¿×4íÌÜö™™™‘ÆÆÆ¿ ÿ?û»/0å@ð €Ø¶m›hjj_S,CCC¢ªªJdÆÌ»þü(ù50sWîÏÀŸ€_žK ÷ü~¿Ÿæææ¼“uuuÑÑÑÁ›7o¾åS ÿòO2«öùpB’$$i¶)NËÁ¢*ãW"ËeÍX,¶lÙÂúõë1ƒÞÞ^ÆÇÇæ÷û©®®Æív3>>N__©TŠ8EQ¨««ãðáèªÊÑ£Gùøñ#»ví"
-:T8æöíÛTVVrùòe‚Á œ8q‚p8œ`³Ùp¹\ȲŒÕjÅáp°gÏ8×Aæø={öŒ{÷î!Ë2.—‹¢¢"ìv{ŽMN×uÚÚÚèïïÇ0úúú$ §Ó‰Û½ .~Z.—I’æÜ¹s¸ÝnÆÆÆˆÇãyí³A!$I€ðz½¢í«[ÇÏèÉ“'"äøÌø]°r EEE8N„|þüyÑW+Ÿ¬V+Ë–-C–e4Mczz:»SX2FŠ¢püøq:;;ioo§¦¦fIà6nÜHKK]]]\¼x¯×ûxæF–e***غu+ªªâ÷û—Îëõ²yóf‚Á áp‡Ã±Î4MèîîFÓ4&&&–.ÒÓÓÃÈÈOŸ>%™LæµÅÅÅ¢¤¤D¬X±BØíö% EQ„ßï%%%Âãñ‹Å’? 4MC’$Òé4†axÍfeš&‰DY–Ñu='mfá¬V+{÷îeçÎèºNKKoß¾-8Üš5k8xð Ë—/§¿¿Ÿ7ndwЏ;vpäÈ4MãñãÇK¨««#ÒÑÑÁ;wÂ¥Ói¢Ñ(¤R)fff
L& ‡ÃØív&''Ñu=Û—“¾®_¿Î[·H§ÓŒÿTîüµ ¾¾»ÝN<'‹-„B011A$ÉÖU§àp‰D‚ׯ_gë¹¼!I•••ƒALÓäÅ‹hšVp8ÇCUUEEED"³~sê¹úúz:„ªª444ÐÝÝÍÀÀ ÷ïß_t¨ááaTUeÆ
\½z•²²2ººº8uê‘H$N’$\.^¯UU±Ùl$ š››¹yóæ¢Ã©ªÊ§OŸP·ÛÇ㡸¸‹%›î3ƒ»wï‹ÅÐu—/_’N§‰D"Ù7)„FGG¹ví>ŸW¯^155•íË9àȲŒÅbAiš™ÃFA%I²,g3“išY.Ë\Ã¥€ù”ÇŽcÿþý¤R)yøð!‡EQݱiš$“IB¡.\ ðèÑ#ššš²{]N=
…¨©©AUUZZZ(..æüùóìÞ½{Ñá9yò$>Ÿêêj‚Á ÓÓÓ8Î…p¦i266ÆóçÏQU•h4Š,Ë”••±iÓ¦E‡Ó4
EQ˜ššbpp©©)FFFPUu¡±$IÂëõŠÒÒR±zõját:—¤ž³ÙlbåÊ•¢´´Tøýþüõœ‚D"a!Ð4mÁ9²2ƒx<ŽÅbùz='Ë2µµµèº~ûÇÑwïÞ-þÈ쯰‚)°oß>|>CCC´··g+¢¹õÜžÚÚZB¡Pï¥K—>†áYµjÕnàܼùd b±àÊËËihh ¬¬ŒÎÎNzzz>,€SUµýÌ™œÿ}©íÛ·ß þ=o>pú;>]À€Õ߃Ó4x<>iµZ;EÑÖ®]ûÏ÷ïßçÂåSkk«ÞÚÚ:ZWW—mBHÀÉïø´U@øÛ¼¾À_3Éd’ÑÑÑOëÖ{©|ï~Ó7õ?bÆÀX$w IEND®B`‚ tvtime-1.0.11/data/filmstrip_0003.png 0000664 0001750 0001750 00000003252 12354244126 014124 0000000 0000000 ‰PNG
IHDR ' ' Œ£Q5 bKGD ÿ ÿ ÿ ½§“ pHYs d_‘ tIMEÓ ,8,lL 7IDATxœí˜_hÛÇ?3³Én²¡]³M2«š*lû Š$>HKs
>\!$hP.úp- ¨ˆH^|JIQ ŠBÁ¥WÜ$ÛEšM¢&ÆÜ5Ù?ì&3»3§7™ëï½Åîæ¡ôÃùýæœÏÌ™ó;ç÷ƒÿëó$ýˆÍîr¹lãããån·{ûíùÀµÕû?ß~âÙ]ÀŸ>jûð%0.IRâs`7å«×W.—ëʽ{÷¾™Ó?…Büâ?±}pÿ…$I ~°ÚÁÏB¡Ðç¼äé×À¯€¿ßµ¡¡ÙÙYdYF’$„˜¦ Г'IÒmÇCii)†aBdÌ
øbõÂétRQQÃá`qq‘ééiR©””—““CSS‡B×uÚÚÚxüø1±XŒ÷ïßgœ0‰`š&555œ?UUàìÙ³¬ÍÖ‡_ǃÏçCÓ4\.‰D‚Ë—/Óßߟq¸p8ÌÒÒUUUlÛ¶
¯×ËëׯÉÉɱ|,8Ã0$??]×™œœ$™L2<<ÌððpÆáÖ477Gww7n·›@ @<·l†‘——‡ÝnGA"‘ ™Lf
jMŠ¢ŸŸ¢($“I‰Bˆô ™L®ÃÈ:€išhš†,ˆ‘¶-8›ÍÆØ»w/º®sãÆ
FGGq8iÿA¦dËËËx½^š››)..æéӧܺu‹X,–§(
ûöí£µµMÓbbb‚#GŽP[[›q¸©©).]ºÄ–-[hii¡¼¼œ¾¾>z{{×à !XXX ¢i±XŒÜÜ\êêêhllÌ8ÜÐÐ$ fff0M“¹¹9R©”åcÁ%“I®_¿ÎÇ1M“ñññŒ}Jœ:uм¼