From: André Wobst Date: Sun, 15 May 2011 15:59:57 +0000 (+0000) Subject: update upload data X-Git-Tag: pyx_0_11 X-Git-Url: https://repo.or.cz/w/PyX.git/commitdiff_plain/tags/pyx_0_11?hp=tags%2Fpyx_0_10 update upload data git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@3131 069f4177-920e-0410-937b-c2a4a81bcd90 --- diff --git a/AUTHORS b/AUTHORS index bfbd62e9..df6f82d3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,3 @@ -Jörg Lehmann +Jörg Lehmann Michael Schindler -André Wobst +André Wobst diff --git a/CHANGES b/CHANGES index dda6656b..79518984 100644 --- a/CHANGES +++ b/CHANGES @@ -9,8 +9,6 @@ TODO: - keep an eye on PEP 324 (popen 5): it could make the texrunner much easier - discuss reltransform: https://sourceforge.net/mailarchive/forum.php?thread_id=9137692&forum_id=23700 - add encoding; check whether encoding=ascii works well for the common existing cases - - we need output-specific map files (see Palatino example - http://sourceforge.net/mailarchive/message.php?msg_id=14863643) - write graphics driver for pgf.sty from LaTeX - ignore "(Please type a command or say `\end')" in preamble method - properly handle file names with spaces in (like "C:\program files\texmf\tex\latex\base\article.cls" in @@ -35,6 +33,9 @@ TODO: this depends on the plattform and is not only an issue within the graph system) - graph.style module: - add styles using curves instead of lines + - graph.texter module: + - rename period argument of decimal texters to recurring_decimal or something similar (as pointed out + by Tim Head) - canvas module: - contructor should only take a texrunner keyword argument - SVG support @@ -44,10 +45,12 @@ TODO: - bitmap module: - ReusableStreamDecode? - proper ASCII85Decode/HexDecode switch + - Support for transparent bitmaps? - bbox module: - rewrite height, etc. using properties - dvifile module: - support single-character mode + - fix problem reported by Gert Ingold: http://sourceforge.net/mailarchive/forum.php?thread_name=20090323081817.GA34112%40physik.uni-augsburg.de&forum_name=pyx-user - deformer module: - move helper path routines to some more generic place for paths? - pdffile module needed (similar to epsfile) @@ -85,13 +88,79 @@ TODO: - add an epsfile example (suggested by Stathis Sideris) - add a small example line on y="f($1)" in one of the plot examples - add a grid example - - add a plot data from list example FAQ: - describe creation and modification (inplace and ``modify by new'') of graph data +0.11 (2011/05/15): + - font and dvi modules: + - major reorganization + - TeX mapping files are a property of the writer now + By that the pdfwriter now uses pdftex.map instead of psfonts.map + (It's also possible to pass a fontmap to a texrunners text method to use + different mappings within a single output file) + - support for font matrices (afm) for Type1 fonts + (using fonts without a metrics is still supported, but properly issues + a warning now) + - interface for basic TeX-less text output + - new PS and PDF writer options: strip_fonts, text_as_path, mesh_as_bitmap, + mesh_as_bitmap_resolution + - fix for commented out UniqueID + - fix rounding of font sizes + - fix scaling of VF position increments + - new filelocator module + - graph modules: + - bar style on graphxyz (single datasets only) + - graphxyz: + - fix position of z4 axis + - set correct errorname for z axis (thanks to Axel Freyn) + - fix wrong y value usage instead of z value in pos methods + - fix unused color range settings in surface style (thanks to Michael J Gruber) + - fallbackrange for axes with vanishing range + - dokeyitem method (to be called with a plotitem) to alter the key order + - doplot() was renamed to doplotitem(), dodata() was renamed to doplot() + to have similar naming conventions like for the graph key + - axis module: do not divide by None for data.min and/or data.max being None (see patch #2833369) + - axis painter: + - properly rotate axis titles when ticks are not othorgonal + to the axis (reported by Christian Delfosse) + - correct namedirection in bar axis painter (reported by rhunger, bug #2028032) + - graph.style.arrow: decorator is an parameter of the constructor now + (thanks to Axel Freyn) + - remove ticks with unset ticklevel and labellevel to prevent rating failures + (thanks to Brendon Higgins) + - canvas and document modules: + - auto-guess output filename from the script filename + - add ciecolor flag and input type to the pipeGS method of canvas + - pyxrc: + - new config options for psfontmaps and pdffontmaps + - new config option for formatting of Python warnings + - new config section for new filelocator module + - text module: + - fix two bugs in the read pipe of the texrunner (thanks to + Laurence Tratt and Eric Faurot) + - fix "<" token handling in mapping file parser (thanks to Matthew West) + - fix start message parse error in MiKTeX (thanks to Wojciech Jaskowski) + - fix rigid aux file checking (thanks to Clayton E. Myers) + - use subprocess module if available + - proper error messages when TeX is stopped due to unrecoverable error + - style module: + - implement style.fillrule + - deco module: + - added an explicit hatch pattern as an alternative for real postscript patterns + - arrow decorator: take into account constriction length when arrow pos < 1 + - bitmap module: + - add support for transparent bitmaps (in postscript stencil masking only) + - path and normpath modules: + - remove incorrect zero length line in PDF output for each first moveto + path element (thanks to Michael J Gruber) + - raise correct normpath exception (thanks to Axel Freyn) + - epsfile module: + - an ugly way to import EPS in PDF using a bitmap (requires PIL) + + 0.10 (2007/10/03): - graph modules: - graph module: @@ -123,6 +192,7 @@ TODO: - support transparency for filling/stroking in pdf separately - transparency support for postscript as available by means of a proprietary ghostscript extension (for ps2pdf) + - renamed method: tostring8bit -> to8bitstring (bug #2932888) - attr module: - add multichangeattr to perform a select on different changeable attributes depending on the selects total number diff --git a/INSTALL b/INSTALL index 23fceb30..1bd3cefb 100644 --- a/INSTALL +++ b/INSTALL @@ -5,8 +5,8 @@ Installation Prerequisites ------------- -PyX needs Python 2.1 or newer and a TeX installation (including Type1 fonts). -Try to start 'python', 'tex' and 'kpsewhich cmr10.pfb' (the later should issue +PyX requires Python 2.3 or newer and a TeX installation (including Type1 fonts). +Try to start 'python', 'tex' and 'kpsewhich cmr10.pfb' (the latter should issue a full path of the requested Type1 font). diff --git a/MANIFEST.in b/MANIFEST.in index cfe70435..470a457f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,7 @@ include AUTHORS CHANGES INSTALL LICENSE README pyxrc setup.cfg setup.py include manual/Makefile manual/pyx.sty manual/*.tex manual/*.py manual/*.dat include faq/Makefile faq/pyxfaq.tex faq/glifaq.dtx faq/glifaq.ins faq/tipa.py faq/tipa*.pdf recursive-include pyx *.c *.py -recursive-include pyx/lfs *.lfs createlfs.tex -recursive-include contrib *.py *.cfg *.def *.tex -recursive-include examples README *.py *.dat *.jpg -recursive-include gallery README *.py *.dat +recursive-include pyx/data * +recursive-include contrib *.py *.cfg *.tex +recursive-include examples README *.py *.dat *.jpg *.txt +recursive-include gallery README *.py *.dat *.txt diff --git a/contrib/callingtex.py b/contrib/callingtex.py index 3e9b08bc..5bf12ba2 100755 --- a/contrib/callingtex.py +++ b/contrib/callingtex.py @@ -3,18 +3,19 @@ # It spits out a lot of information about the Python installation, the PyX # installation and the environment in which PyX will try to use TeX/LaTeX. # -import sys, os +import sys, os, subprocess +#sys.path.insert(0, "..") +#sys.path.insert(0, "../build/lib.linux-x86_64-2.5") import pyx -pyx.text.set(fontmaps="psfonts.map psfonts.cmz") +#pyx.text.set(fontmaps="psfonts.map psfonts.cmz") def test_installation(): try: from pyx.pykpathsea import _pykpathsea + compiled_pykpathsea = True except ImportError: compiled_pykpathsea = False - else: - compiled_pykpathsea = False print "Platform is %s" % sys.platform print "Python installation prefix is %s" % sys.prefix @@ -27,7 +28,6 @@ def test_installation(): print "PyX pykpathsea python module used" print - def test_commands(): for command in [r"echo $0 \"$*\"", r"echo $SHELL", @@ -54,59 +54,84 @@ def test_commands(): print def test_fontmaps(): - allformats = [ - pyx.pykpathsea.kpse_gf_format, - pyx.pykpathsea.kpse_pk_format, - pyx.pykpathsea.kpse_any_glyph_format, - pyx.pykpathsea.kpse_tfm_format, - pyx.pykpathsea.kpse_afm_format, - pyx.pykpathsea.kpse_base_format, - pyx.pykpathsea.kpse_bib_format, - pyx.pykpathsea.kpse_bst_format, - pyx.pykpathsea.kpse_cnf_format, - pyx.pykpathsea.kpse_db_format, - pyx.pykpathsea.kpse_fmt_format, - pyx.pykpathsea.kpse_fontmap_format, - pyx.pykpathsea.kpse_mem_format, - pyx.pykpathsea.kpse_mf_format, - pyx.pykpathsea.kpse_mfpool_format, - pyx.pykpathsea.kpse_mft_format, - pyx.pykpathsea.kpse_mp_format, - pyx.pykpathsea.kpse_mppool_format, - pyx.pykpathsea.kpse_mpsupport_format, - pyx.pykpathsea.kpse_ocp_format, - pyx.pykpathsea.kpse_ofm_format, - pyx.pykpathsea.kpse_opl_format, - pyx.pykpathsea.kpse_otp_format, - pyx.pykpathsea.kpse_ovf_format, - pyx.pykpathsea.kpse_ovp_format, - pyx.pykpathsea.kpse_pict_format, - pyx.pykpathsea.kpse_tex_format, - pyx.pykpathsea.kpse_texdoc_format, - pyx.pykpathsea.kpse_texpool_format, - pyx.pykpathsea.kpse_texsource_format, - pyx.pykpathsea.kpse_tex_ps_header_format, - pyx.pykpathsea.kpse_troff_font_format, - pyx.pykpathsea.kpse_type1_format, - pyx.pykpathsea.kpse_vf_format, - pyx.pykpathsea.kpse_dvips_config_format, - pyx.pykpathsea.kpse_ist_format, - pyx.pykpathsea.kpse_truetype_format, - pyx.pykpathsea.kpse_type42_format, - pyx.pykpathsea.kpse_web2c_format, - pyx.pykpathsea.kpse_program_text_format, - pyx.pykpathsea.kpse_program_binary_format, - pyx.pykpathsea.kpse_miscfonts_format, - pyx.pykpathsea.kpse_web_format, - pyx.pykpathsea.kpse_cweb_format] + allformats = [] + allnames = {} + for formatstr in [ + "pyx.pykpathsea.kpse_gf_format", + "pyx.pykpathsea.kpse_pk_format", +# "pyx.pykpathsea.kpse_any_glyph_format", # gives segmentation fault + "pyx.pykpathsea.kpse_tfm_format", + "pyx.pykpathsea.kpse_afm_format", + "pyx.pykpathsea.kpse_base_format", + "pyx.pykpathsea.kpse_bib_format", + "pyx.pykpathsea.kpse_bst_format", + "pyx.pykpathsea.kpse_cnf_format", + "pyx.pykpathsea.kpse_db_format", + "pyx.pykpathsea.kpse_fmt_format", + "pyx.pykpathsea.kpse_fontmap_format", + "pyx.pykpathsea.kpse_mem_format", + "pyx.pykpathsea.kpse_mf_format", + "pyx.pykpathsea.kpse_mfpool_format", + "pyx.pykpathsea.kpse_mft_format", + "pyx.pykpathsea.kpse_mp_format", + "pyx.pykpathsea.kpse_mppool_format", + "pyx.pykpathsea.kpse_mpsupport_format", + "pyx.pykpathsea.kpse_ocp_format", + "pyx.pykpathsea.kpse_ofm_format", + "pyx.pykpathsea.kpse_opl_format", + "pyx.pykpathsea.kpse_otp_format", + "pyx.pykpathsea.kpse_ovf_format", + "pyx.pykpathsea.kpse_ovp_format", +# "pyx.pykpathsea.kpse_pict_format", # unknown in python module + "pyx.pykpathsea.kpse_tex_format", + "pyx.pykpathsea.kpse_texdoc_format", + "pyx.pykpathsea.kpse_texpool_format", + "pyx.pykpathsea.kpse_texsource_format", + "pyx.pykpathsea.kpse_tex_ps_header_format", +# "pyx.pykpathsea.kpse_troff_font_format", (takes too long) + "pyx.pykpathsea.kpse_type1_format", + "pyx.pykpathsea.kpse_vf_format", + "pyx.pykpathsea.kpse_dvips_config_format", + "pyx.pykpathsea.kpse_ist_format", + "pyx.pykpathsea.kpse_truetype_format", + "pyx.pykpathsea.kpse_type42_format", + "pyx.pykpathsea.kpse_web2c_format", + "pyx.pykpathsea.kpse_program_text_format", + "pyx.pykpathsea.kpse_program_binary_format", + "pyx.pykpathsea.kpse_miscfonts_format", + "pyx.pykpathsea.kpse_web_format", + "pyx.pykpathsea.kpse_cweb_format", + "pyx.pykpathsea.kpse_enc_format", + "pyx.pykpathsea.kpse_cmap_format", + "pyx.pykpathsea.kpse_subfont_definition_format", + "pyx.pykpathsea.kpse_opentype_format", + "pyx.pykpathsea.kpse_pdftex_config_format", + "pyx.pykpathsea.kpse_lig_format", + "pyx.pykpathsea.kpse_texmfscripts_format", + "pyx.pykpathsea.kpse_lua_format", + "pyx.pykpathsea.kpse_font_feature_format", + "pyx.pykpathsea.kpse_cid_maps_format", + "pyx.pykpathsea.kpse_mlbib_format", + "pyx.pykpathsea.kpse_mlbst_format"]: + try: + allformats.append(eval(formatstr)) + allnames[eval(formatstr)] = formatstr + except AttributeError: + continue - for fontmap in pyx.text.defaulttexrunner.fontmaps.split(): + if pyx.__version__ in ["0.10"]: + fontmaps = pyx.text.defaulttexrunner.fontmaps.split() + else: + fontmaps = [] + fontmaps += pyx.config.getlist("text", "pdffontmaps", ["pdftex.map"]) + fontmaps += pyx.config.getlist("text", "psfontmaps", ["psfonts.map"]) + for fontmap in fontmaps: found = 0 - for format in allformats: - mappath = pyx.pykpathsea.find_file(fontmap, format) + for form in allformats: + mappath = pyx.pykpathsea.find_file(fontmap, form) if mappath: found = 1 - print "\"%s\" found at \"%s\" as format \"%s\"" % (fontmap, mappath, format) + print "\"%s\" found at \"%s\" as format \"%s\"" % (fontmap, mappath, allnames[form]) if not found: print "\"%s\" not found" % fontmap print diff --git a/design/beziertoline.py b/design/beziertoline.py index 2b4236fc..621ffd45 100755 --- a/design/beziertoline.py +++ b/design/beziertoline.py @@ -22,3 +22,4 @@ mark(c, "Y", -45, 2, 2) mark(c, "X", 90, *b.at(normpathparam(b, 0, 0.5))) mark(c, "X'", 135, *b.at(0.5*b.arclen())) c.writeEPSfile("beziertoline") +c.writePDFfile("beziertoline") diff --git a/examples/3dgraphs/INDEX b/examples/3dgraphs/INDEX index 21086f56..d3eed32a 100644 --- a/examples/3dgraphs/INDEX +++ b/examples/3dgraphs/INDEX @@ -1,3 +1,4 @@ surface color grid +bar diff --git a/examples/3dgraphs/bar.py b/examples/3dgraphs/bar.py new file mode 100755 index 00000000..ae130da1 --- /dev/null +++ b/examples/3dgraphs/bar.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python +from pyx import * + +g = graph.graphxyz(0, 0, size=5, x=graph.axis.bar(), y=graph.axis.bar(), z=None, z2=graph.axis.lin()) +g.plot(graph.data.data(graph.data.points([[1, 1, 1.4], [1, 2, 1.8], [2, 1, -0.5], [2, 2, 0.9]]), xname=1, yname=2, z2=3), + [graph.style.barpos(fromvalue=0, frompathattrs=None), graph.style.bar(barattrs=[style.linejoin.bevel])]) +g.doplot() +g.writeEPSfile("bar") +g.writePDFfile("bar") diff --git a/examples/3dgraphs/bar.txt b/examples/3dgraphs/bar.txt new file mode 100644 index 00000000..76ba137c --- /dev/null +++ b/examples/3dgraphs/bar.txt @@ -0,0 +1,3 @@ +Bar graphs in 3d + +The bar style can also be used in 3d graphs. diff --git a/examples/3dgraphs/surface.py b/examples/3dgraphs/surface.py index d8c6b5fd..4b105b2b 100755 --- a/examples/3dgraphs/surface.py +++ b/examples/3dgraphs/surface.py @@ -3,6 +3,6 @@ from pyx import * g = graph.graphxyz(size=4, x2=None, y2=None) g.plot(graph.data.file("surface.dat", x=1, y=2, z=3), [graph.style.surface()]) -g.dodata() +g.doplot() g.writeEPSfile("surface") g.writePDFfile("surface") diff --git a/examples/3dgraphs/surface.txt b/examples/3dgraphs/surface.txt index 368b49d9..340538f8 100644 --- a/examples/3dgraphs/surface.txt +++ b/examples/3dgraphs/surface.txt @@ -10,6 +10,17 @@ plotted prior to the axes by the dodata call. ! A missing point will create a hole in the surface. +! The surface is plotted using a mesh. In case of a huge number of data points, +you may want to replace the mesh by a bitmap rasterized on a different (i.e. +lower) resolution. This can reduce the file size and may also resolve various +printing problems (unfortunately those are quite common with mesh data). To +enable the mesh by bitmap replacement feature use the option `meshasbitmap` +(together with its `meshasbitmap_resolution` option):: + + d = document.document([document.page(g)]) + d.writeEPSfile("color", mesh_as_bitmap=1) + d.writePDFfile("color", mesh_as_bitmap=1) + !! The underlying rectangular grid is created by the gridpos style. By changing its parameters you can also create the base rectangular grid from others than the first two coordinates. diff --git a/examples/axis/INDEX b/examples/axis/INDEX index 92080bb3..8fbdc8ad 100644 --- a/examples/axis/INDEX +++ b/examples/axis/INDEX @@ -1,8 +1,8 @@ +log link minimal painter -rating +texter manualticks +rating parter -texter -log diff --git a/examples/axis/README b/examples/axis/README index a45b57d9..a5907eb2 100644 --- a/examples/axis/README +++ b/examples/axis/README @@ -2,7 +2,7 @@ Graph axes This section demonstrates the axis subsystem of the graph module. The axes delegate a lot of tasks to different components like ''painters'' (which -control how the baseline of the axis, the ticks and the axis title is drawn), +control how the baseline of the axis, the ticks and the axis title are drawn), ''texters'' (which create the label strings written on the ticks), ''parters'' (short for partionioners, which take care of determining appropriate tick positions along the axis, and ''raters'' (which adjust the number of ticks to diff --git a/examples/axis/link.txt b/examples/axis/link.txt index 281b7a10..addc940e 100644 --- a/examples/axis/link.txt +++ b/examples/axis/link.txt @@ -1,4 +1,4 @@ -Linking an axis to another one +Linking one axis to another one When plotting two or more related graphs, you sometimes want to have identical axes. This example demonstrates how to achieve this goal in PyX using a @@ -14,6 +14,6 @@ the axis dictionary `axes` of the graph. Note that for a linked axis, PyX automatically turns off the drawing of the axis labels, as you can see in the upper panel. If you do not like this behaviour, you -have to pass a different axis painter to the `´linkedaxis` constructor. +have to pass a different axis painter to the `linkedaxis` constructor. diff --git a/examples/axis/log.py b/examples/axis/log.py index 999ab97b..30fbbf05 100644 --- a/examples/axis/log.py +++ b/examples/axis/log.py @@ -2,19 +2,16 @@ import math from pyx import * from pyx.graph import axis -p = path.curve(0, 0, 3, 0, 1, 4, 4, 4) - +# we here use parters and texters which are explained in the examples below log2parter = axis.parter.log([axis.parter.preexp([axis.tick.rational(1)], 4), axis.parter.preexp([axis.tick.rational(1)], 2)]) log2texter = axis.texter.exponential(nomantissaexp=r"{2^{%s}}", mantissamax=axis.tick.rational(2)) -c = canvas.canvas() -c.insert(axis.pathaxis(p, axis.log(min=1, max=1024))) -c.insert(axis.pathaxis(p.transformed(trafo.translate(4, 0)), - axis.log(min=1, max=1024, parter=log2parter))) -c.insert(axis.pathaxis(p.transformed(trafo.translate(8, 0)), - axis.log(min=1, max=1024, parter=log2parter, - texter=log2texter))) -c.writeEPSfile("log") -c.writePDFfile("log") +g = graph.graphxy(width=10, + x=axis.log(min=1, max=1024), + y=axis.log(min=1, max=1024, parter=log2parter), + y2=axis.log(min=1, max=1024, parter=log2parter, texter=log2texter)) + +g.writeEPSfile("log") +g.writePDFfile("log") diff --git a/examples/axis/log.txt b/examples/axis/log.txt dissimilarity index 77% index caaaf934..4a4028fc 100644 --- a/examples/axis/log.txt +++ b/examples/axis/log.txt @@ -1,14 +1,15 @@ -Logarithmic axes - -Logarithmic axes are quite similar to linear axes and differ only in a very few -properties, namely the non-linear convert method in which they transform values -to positions on the axis, a different default partitioner and a different -default rater. ... While the partitioner really is quite different - it implements -a logarithmic positioning of the ticks - the rater just alters some defaults in -favour of using more subticks to improve the visualization of the logarithmic -nature of the axis. - -! Beside presenting a standard logarithmic axis we also show you how to alter -the base used by the logarithmic axis. Since the functionality of a logarithmic -axis is independend of the base, all we need to adjust are certain components -creating ticks, the texts for the labels etc. +Logarithmic axes + +Logarithmic axes are quite similar to linear axes and differ only in a very few +properties, namely a non-linear mapping of values to axis positions. They also +have different default partitioners and raters (see below). ... While the +partitioner really is quite different - it implements a logarithmic positioning +of the ticks - the rater just alters some defaults in favour of using more +subticks to improve the visualization of the logarithmic nature of the axis. + +! Besides presenting a standard logarithmic axis, we also show you how to alter +the base used by the logarithmic axis. Since the functionality of a logarithmic +axis is independent of the base, all we need to adjust are the components for +creating ticks (see `log2parter`) and the texts for the labels (see +`log2texter`). More details about the parters and texters components are given +below in the corresponding examples. diff --git a/examples/axis/manualticks.py b/examples/axis/manualticks.py index 42396fd0..291b9f4a 100644 --- a/examples/axis/manualticks.py +++ b/examples/axis/manualticks.py @@ -1,14 +1,14 @@ import math from pyx import * -p = path.curve(0, 0, 3, 0, 1, 4, 4, 4) +p1 = path.curve(0, 0, 3, 0, 1, 4, 4, 4) +p2 = p1.transformed(trafo.translate(4, 0)) myticks = [graph.axis.tick.tick(math.pi, label="\pi", labelattrs=[text.mathmode]), graph.axis.tick.tick(2*math.pi, label="2\pi", labelattrs=[text.mathmode])] c = canvas.canvas() -c.insert(graph.axis.pathaxis(p, graph.axis.linear(min=0, max=10))) -c.insert(graph.axis.pathaxis(p.transformed(trafo.translate(4, 0)), - graph.axis.linear(min=0, max=10, manualticks=myticks))) +c.insert(graph.axis.pathaxis(p1, graph.axis.linear(min=0, max=10))) +c.insert(graph.axis.pathaxis(p2, graph.axis.linear(min=0, max=10, manualticks=myticks))) c.writeEPSfile("manualticks") c.writePDFfile("manualticks") diff --git a/examples/axis/manualticks.txt b/examples/axis/manualticks.txt dissimilarity index 69% index 42259ab6..3b8e58ef 100644 --- a/examples/axis/manualticks.txt +++ b/examples/axis/manualticks.txt @@ -1,11 +1,11 @@ -Manually place ticks at certain positions - -Ticks can be set manually by passing tick instances to the `manualticks` -argument of the axis instance as shown at the right axis in this example. ... - -As you can see the manual ticks are combined with tick created automatically. -You could disable any automatic tick creation by setting the `parter` argument -to None. But what's much more interesting is, that the manually and -automatically created ticks are not just merged, but the combination together -is used when rating the resulting partion. Hence the manual ticks lead to a -different set of automatically created ticks for this example. +Manually place ticks at certain positions + +Ticks can be set manually by passing tick instances to the `manualticks` +argument of the axis instance as shown at the right axis in this example. ... + +As you can see, the manual ticks are combined with the automatically created +ticks. You could disable any automatic tick creation by setting the `parter` +argument to None. But what's much more interesting is, that the manually and +automatically created ticks are not just merged, but their combination is used +for rating the resulting partition. Therefore, the additional manual ticks lead +to a different set of automatically created ticks in this example. diff --git a/examples/axis/minimal.txt b/examples/axis/minimal.txt dissimilarity index 99% index de24651d..1b30faba 100644 --- a/examples/axis/minimal.txt +++ b/examples/axis/minimal.txt @@ -1,13 +1,11 @@ -Minimal example drawing an axis along a path - -This is the basic example how to draw an axis along an arbitrary path. The -function `pathaxis` from the `graph.axis` module takes a path and returns a -canvas. ... As opposed to the typical usecase in graphs, we must fix the axis -range by appropriate `min` and `max` arguments, because no data is provided to -the axis instance where a data range could be extracted from. In graphs the -range of an axis gets adjusted automatically although you can still set minimal -and/or maximal values to force a certain axis range. - -The axis instance is passed as the second argument to the `pathaxis` function. -To use the axis at a graph all you need to do is to path the instance to the -axis constructor using an appropriate keyword specifying the axis name. +Minimal example for drawing an isolated axis + +This is the basic example of how to draw an axis alone -- without the whole +graph. It serves to simplify the following examples. ... The function +`pathaxis` from the `graph.axis` module takes a path and returns a canvas which +contains the drawn axis. + +In contrast to the typical usecase of graphs containing data, we here have to +provide the range explicitly (using the `min` and `max` arguments). For real +graphs the range of an axis, of course, is adjusted automatically, although you +can still set minimal and/or maximal values to force a certain axis range. diff --git a/examples/axis/painter.py b/examples/axis/painter.py index 701b0ee5..aaaea389 100644 --- a/examples/axis/painter.py +++ b/examples/axis/painter.py @@ -1,8 +1,9 @@ from pyx import * -mypainter = graph.axis.painter.regular(outerticklength=graph.axis.painter.ticklength.normal) +mypainter = graph.axis.painter.regular(outerticklength=graph.axis.painter.ticklength.normal, + basepathattrs=[style.linewidth.THick, deco.earrow.large]) c = graph.axis.pathaxis(path.curve(0, 0, 3, 0, 1, 4, 4, 4), - graph.axis.linear(min=0, max=10, title="axis title", painter=mypainter)) + graph.axis.linear(min=0, max=9, title="axis title", painter=mypainter)) c.writeEPSfile("painter") c.writePDFfile("painter") diff --git a/examples/axis/painter.txt b/examples/axis/painter.txt dissimilarity index 92% index 9f773078..f1a356ae 100644 --- a/examples/axis/painter.txt +++ b/examples/axis/painter.txt @@ -1,17 +1,19 @@ -Painting of an axis - -Axis painters performs the painting of an axis, which means they take all the -information of the axis an create a proper drawing for that. ... - -While an usual axis painter has quite some parameters to adjust the output, -here we only alter the ticks. By default, ticks are stroked only towards the -inside of the graph (in the path examples there is no graph but don't mind). -The labels and the axis title are plotted outside of the graph. Futhermore the -axis title (when present as in this example) is rotated along the axis (without -writing it upside down), while the tick labels are not rotated at all. - -In this example we set an `outerticklength`. Together with the -`innerticklength` set to the same value by default the ticks are stroked across -the axis. As it is common to sub-components of the axis, you need to pass the -adapted instances (stored in the variable `mypainter` here) to the axis in its -constructor. +Painter: Controlling the visual features of an axis + +The visual features of an axis (such as ticklengths, linewidths, distances of +the labels, their orientation, text attributes, etc.) are controlled by its +painter. You can modify these attributes by creating a painter explicitly. ... + +While the axis painter has quite some parameters to adjust the output, here we +only change its width, add an arrow and alter the ticks: By default, ticks are +stroked only towards the inside of the graph (in the path examples there is no +graph but don't mind). The labels and the axis title are plotted outside of the +graph. Futhermore, the axis title (when present as in this example) is rotated +along the axis (without writing it upside down), while the tick labels are not +rotated at all. + +In this example we set an `outerticklength`. Together with the +`innerticklength`, which by default is set to the same value, the ticks are +stroked across the axis. As it is common to sub-components of the axis, you +need to pass the adapted instances (stored in the variable `mypainter` here) to +the axis in its constructor. diff --git a/examples/axis/parter.txt b/examples/axis/parter.txt index 1315e3df..83064338 100644 --- a/examples/axis/parter.txt +++ b/examples/axis/parter.txt @@ -1,19 +1,23 @@ -Manual parters and rational number arithmetics +Parter: Control over the partitioning of the axis -Partitioners (in the code the short form `parter` is used all over the place) -take care of calculating appropriate tick positions for a given axis range. -Automatic partitioners create several tick lists, which are than rated by an -axis rater instance afterwards. In contrast manual partitioners create a single -tick list only, which thus doesn't need to be rated at all. ... +In the above example, the (default) automatic choice of a good partitioning has +been selected. Here, we show how to gain more control over the ticks, in order +to fix their intervals. ... + +Partitioners (in the code the short form `parter` is used) take care of +calculating appropriate tick positions for a given axis range. Automatic +partitioners create several tick lists, which are than rated by an axis rater +instance, as explained in the above example. In contrast, manual partitioners +create a single tick list only, which thus doesn't need to be rated at all. In this example we create a manual partitioner, which places ticks with a -distance of 1/3 and subticks with a distance of 1/6. We than use this -partitioner at two axis, which are identical except for a texter instance to +distance of 1/3 and subticks with a distance of 1/6. We then use this +partitioner at two axis, which are identical except for a texter instance (to show you another feature of the axes in PyX, namely the rational number -arithmetics used to place ticks. The rational numbers are preserved throughout +arithmetics used to place ticks). The rational numbers are preserved throughout the whole process of merging ticks, until the texter finally needs to output the rational numbers. And at the very end the decimal texter steps into the -problem to create a proper representation for the frations. The solution is +problem to create a proper representation for the fractions. The solution is shown at the left part of the example: the texter marks a period to express the fraction. diff --git a/examples/axis/rating.txt b/examples/axis/rating.txt index ba9f6b83..9e746325 100644 --- a/examples/axis/rating.txt +++ b/examples/axis/rating.txt @@ -1,14 +1,16 @@ -Rating of axis partitionings +Rater: How a nicely looking axis partition is chosen -In this example several axes with the same parameters are plotted on a path -scaled at 3 different sizes. Note that the axes adjust the ticks appropriately -to the available space. For that a `partitioner` (the short form `parter` is -used in the code) creates several possible solutions for placing ticks and -labels at the axis. ... +We here demonstrate how an axis actually chooses its partition. ... -However, we do not address this partioning feature here (we just use the -default), but we show you the rating facilities instead. Still, we don't modify -the defaults either, but we want to discuss certain features of this system. +There are good-looking partitions of an axis and bad-looking ones. The element +which chooses one or the other, is the `rater` of an axis. It asks yet another +element, the `parter` to suggest several partitions and then chooses the best, +according to criteria such as tick distance, number of ticks, subticks, etc. +(The partitioning process itself is explained in a later example). + +In this example we show the influence of the tick distances: Several axes with +the same parameters are plotted on a path which is scaled. Note that the axes +choose the ticks appropriately to the available space. The rating mechanism takes into account the number of ticks and subticks, but also the distances between the labels. Thus, the example in the middle has less @@ -22,10 +24,10 @@ instances to the `rater` keyword of the axis constructor. But instead of reconfiguring the whole rating mechanism, simple adjustments to favour more or less ticks are easily possible by the axis keyword argument `density`. -!! In this example the same axis instance is used several times. This works +!! In this example, the same axis instance is used several times. This works since the axis does not store any data within its own instance. Instead, an -`anchoredaxis` instance is created by the `pathaxis` which embbeds the axis in -a proper environment. Among others a place for storing information for this -specific use of the axis instance is provided that way. When using axes in a -graph the graph instance takes care of the proper setup of the anchored axes -instances. +`anchoredaxis` instance is created by the `pathaxis` which embeds the axis in a +proper environment. This way, a place for storing information for this specific +use of the axis instance is provided. When using axes in a graph, the graph +instance takes care of the proper setup of the anchored axes instances. + diff --git a/examples/axis/texter.py b/examples/axis/texter.py index 88549da4..45da0e31 100644 --- a/examples/axis/texter.py +++ b/examples/axis/texter.py @@ -2,20 +2,24 @@ import math from pyx import * from pyx.graph import axis +texter1 = axis.texter.decimal(plus="+", minus="-", equalprecision=1) +texter2 = axis.texter.rational() + class piaxis(axis.linear): def __init__(self, divisor=math.pi, texter=axis.texter.rational(suffix="\pi"), **kwargs): axis.linear.__init__(self, divisor=divisor, texter=texter, **kwargs) - -p = path.path(path.moveto(0, 0), path.curveto(3, 0, 1, 4, 4, 4)) +p1 = path.path(path.moveto(0, 0), path.curveto(3, 0, 1, 4, 4, 4)) +p2 = p1.transformed(trafo.translate(4, 0)) +p3 = p2.transformed(trafo.translate(4, 0)) +p4 = p3.transformed(trafo.translate(4, 0)) c = canvas.canvas() -c.insert(axis.pathaxis(p, axis.linear(min=0, max=10))) -c.insert(axis.pathaxis(p.transformed(trafo.translate(4, 0)), - axis.linear(min=0, max=1e5))) -c.insert(axis.pathaxis(p.transformed(trafo.translate(8, 0)), - piaxis(min=0, max=2*math.pi))) +c.insert(axis.pathaxis(p1, axis.linear(min=0, max=1e2))) +c.insert(axis.pathaxis(p2, axis.linear(min=-0.7, max=0.4, texter=texter1))) +c.insert(axis.pathaxis(p3, axis.linear(min=-0.7, max=0.4, texter=texter2))) +c.insert(axis.pathaxis(p4, piaxis(min=0, max=2*math.pi))) c.writeEPSfile("texter") c.writePDFfile("texter") diff --git a/examples/axis/texter.txt b/examples/axis/texter.txt dissimilarity index 99% index 1f2a1c8c..25ae4e95 100644 --- a/examples/axis/texter.txt +++ b/examples/axis/texter.txt @@ -1,11 +1,22 @@ -Texter - -Texters create the label strings written to the ticks. There are texters -available for decimal numbers without and with an exponential part as well as -fractions. ... - -! At the right axis we also show how to create a special piaxis. Here some axis -parameters are altered to fit an pi-scaled axis nicely. Futhermore instead of -just creating a special axis instance by setting the divisor and texter -parameters, a `piaxis` class is created which just alters the defaults of the -linear axis it is based at. +Texter: Controlling the formatting of tick labels + +Texters do the formatting of the tick labels: They create the strings which are +then passed to the painter. You can choose between fractions and decimal +numbers with/without an exponential part. ... The `texter` should not be mixed +up with the `painter`: The `painter` is afterwards doing the TeXing and finally +creates the labels -- the `texter` prepares the string that is to be processed +by TeX. + +The first example shows the default behavior, which chooses either decimal and +exponential formatting. + +The second example is for special purpose only (because it is ugly), in case +that it is strictly necessary to have the same width of all labels. + +The third example shows how to create fractions instead of decimal numbers. + +! At the rightmost axis we also show how to create a special piaxis. Here, some +axis parameters are altered to fit an pi-scaled axis nicely. Futhermore, +instead of just creating a special axis instance by setting the divisor and +texter parameters, a `piaxis` class is created which just alters the defaults +of the linear axis it is based at. diff --git a/examples/bargraphs/months.py b/examples/bargraphs/months.py deleted file mode 100644 index 18f9c545..00000000 --- a/examples/bargraphs/months.py +++ /dev/null @@ -1,4 +0,0 @@ -bap = graph.axis.painter.bar -a = graph.axis.nestedbar(painter=bap(nameattrs=[trafo.rotate(45), - text.halign.right], - innerticklength=0.1)) diff --git a/examples/bitmap/jpeg.txt b/examples/bitmap/jpeg.txt index eb14485c..e58941b7 100644 --- a/examples/bitmap/jpeg.txt +++ b/examples/bitmap/jpeg.txt @@ -18,7 +18,7 @@ the data and write it to the file. The straightforward solution would be to replace the creation of the `bitmap.jpegimage` instance by: import Image - i = image.open("jpeg.jpg") + i = Image.open("jpeg.jpg") While this works perfectly, it will result in a totally uncompressed image. The size of the EPS file will for example become almost 1.1MB. diff --git a/examples/graphs/INDEX b/examples/graphs/INDEX index 815b25e4..d19bb93d 100644 --- a/examples/graphs/INDEX +++ b/examples/graphs/INDEX @@ -1,5 +1,6 @@ minimal function +points lissajous axis change diff --git a/examples/graphs/axis.py b/examples/graphs/axis.py index 14e26098..f9e085bd 100644 --- a/examples/graphs/axis.py +++ b/examples/graphs/axis.py @@ -1,8 +1,8 @@ from pyx import * g = graph.graphxy(width=8, - x=graph.axis.log(min=1e-1, max=1e4), - y=graph.axis.lin(max=5)) + x=graph.axis.log(min=1e-1, max=1e4, title=r"$x$-axis"), + y=graph.axis.lin(max=5, title=r"$y$-axis")) g.plot(graph.data.function("y(x)=tan(log(1/x))**2")) g.writeEPSfile("axis") g.writePDFfile("axis") diff --git a/examples/graphs/axis.txt b/examples/graphs/axis.txt index 65df2a70..a1fbe760 100644 --- a/examples/graphs/axis.txt +++ b/examples/graphs/axis.txt @@ -1,4 +1,4 @@ -Using a logarithmic axis and defining the axis range +Using a logarithmic axis and defining the axis range and its label Sometimes, you have to visualize rather pathological funtions containing divergencies and/or varying over a large parameter range. This is best done @@ -19,7 +19,8 @@ of the function in the y-direction, which, moreover, would strongly depend on the sampling points choosen by PyX along the x-direction. Since the function only diverges towards positive y-values, we only need to set the maximal value of the y-axis (using the `max`-argument). Of course, you can also fix the lower end -of the axis range by providing a `min`-argument. +of the axis range by providing a `min`-argument. In order to introduce the +`title` keyword, we give names to the axes. ! Note how PyX changes the way the x-axis is drawn. Instead of simple decimal numbers, an exponential notation is used. This happens automatically by diff --git a/examples/graphs/points.py b/examples/graphs/points.py new file mode 100644 index 00000000..8559760f --- /dev/null +++ b/examples/graphs/points.py @@ -0,0 +1,12 @@ +# suggested by Chris Spencer + +from pyx import * + +g = graph.graphxy(width=8) +# either provide lists of the individual coordinates +g.plot(graph.data.values(x=range(10), y=range(10))) +# or provide one list containing the whole points +g.plot(graph.data.points(zip(range(10), range(10)), x=1, y=2)) +g.writeEPSfile("points") +g.writePDFfile("points") + diff --git a/examples/graphs/points.txt b/examples/graphs/points.txt new file mode 100644 index 00000000..5541ce9a --- /dev/null +++ b/examples/graphs/points.txt @@ -0,0 +1,22 @@ +Plotting data contained in one or more lists + +Here, we explain how to plot data which has been calculated before and which is +available in a list. ... + +The procedure is quite the same as for plotting a data file or a function in +the above examples. It differs in that we use an instance of +`graph.data.values` or `graph.data.points` in the `plot` method of the graph. +The choice of one or the other variant depends on convenience and how the data +has been generated: In `graph.data.values` the coordinate values are provided +as individual lists. Alternatively, `graph.data.points` takes a list of data +points which come as coordinate tuples. You will then have to say something +like `x=1, y=2` to specify which entry in your tuples is to be used on which +axis. + +Similarly to the plotting of a data file, the default plotting style here are +symbols. + +Caution: This feature has been renamed/introduced between versions 0.9 and +0.10. In versions 0.9 and before the functionality of `graph.data.points` was +provided by `graph.data.list`. + diff --git a/examples/graphstyles/INDEX b/examples/graphstyles/INDEX index 82f1d034..3cd0a0d4 100644 --- a/examples/graphstyles/INDEX +++ b/examples/graphstyles/INDEX @@ -1,4 +1,5 @@ errorbar histogram +usesymbol changesymbol cal diff --git a/examples/graphstyles/cal.py b/examples/graphstyles/cal.py index 58d71697..ccb004eb 100644 --- a/examples/graphstyles/cal.py +++ b/examples/graphstyles/cal.py @@ -36,11 +36,11 @@ class daystyle(graph.style._style): graph.text_pt(x1_pt+3, y1_pt+3, point["note"], [text.size.tiny]) # create calendar data -year = 2007 +year = 2011 notes = {1: {17: r"\PyX{} 0.2 (2003)", 20: r"\PyX{} 0.5 (2004)", 22: r"\PyX{} 0.5.1 (2004)"}, 3: {30: r"\PyX{} 0.6 (2004)", 31: r"\PyX{} 0.3 ('03), \PyX{} 0.6.1 ('04)"}, 4: {4: r"\PyX{} 0.3.1 (2003)", 7: r"\PyX{} 0.6.2 (2004)", 27: r"\PyX{} 0.6.3 (2004)"}, - 5: {24: r"\PyX{} 0.9 (2006)"}, + 5: {24: r"\PyX{} 0.9 (2006)", 5: r"\PyX{} 0.11 (2011)"}, 7: {13: r"\PyX{} 0.8 (2005)"}, 8: {13: r"\PyX{} 0.8.1 (2005)", 22: r"\PyX{} 0.4 (2003)"}, 9: {17: r"\PyX{} 0.4.1 (2003)"}, diff --git a/examples/graphstyles/usesymbol.py b/examples/graphstyles/usesymbol.py new file mode 100644 index 00000000..91c04a2d --- /dev/null +++ b/examples/graphstyles/usesymbol.py @@ -0,0 +1,18 @@ +from pyx import * + +# colors and symbols to use (alternatingly) +colors = [color.rgb.red, color.rgb.green, color.rgb.blue, color.gray.black] +symbols = [graph.style._diamondsymbol, graph.style._trianglesymbol, graph.style._circlesymbol] + +# create the graph styles to be used below +symbol = graph.style.symbol(symbol=attr.changelist(symbols), + symbolattrs=[deco.stroked.clear, + attr.changelist([deco.filled([cc]) for cc in colors])]) +line = graph.style.line(lineattrs=[attr.changelist(colors), + attr.changelist([style.linestyle.solid])]) + +g = graph.graphxy(width=8, x=graph.axis.linear(min=0, max=1)) +g.plot([graph.data.function("y(x) = x**%d" % i, points=8) for i in range(1, 7)], + styles=[line, symbol]) +g.writeEPSfile("usesymbol") +g.writePDFfile("usesymbol") diff --git a/examples/graphstyles/usesymbol.txt b/examples/graphstyles/usesymbol.txt new file mode 100644 index 00000000..5f0bed4c --- /dev/null +++ b/examples/graphstyles/usesymbol.txt @@ -0,0 +1,11 @@ +Using the functionality of existing graph styles + +This example demonstrates how linestyles, symboltypes, colors, and other +decorations can be changed in existing graph styles. ... We make use of the +`changelist' feature as an argument when using a style. Generally, all items in +the attribute lists can be iterable `changelists'. If the end of such a list is +reached, the changelist restarts from its beginning (see e.g. the colors which +are used several times). + +The `attr.stroked.clear' in the symbol deletes the default property of the +symbols, which says to stroke the symbol outline. diff --git a/examples/hello.py b/examples/hello.py index b6b524dc..df944a2c 100644 --- a/examples/hello.py +++ b/examples/hello.py @@ -3,5 +3,5 @@ from pyx import * c = canvas.canvas() c.text(0, 0, "Hello, world!") c.stroke(path.line(0, 0, 2, 0)) -c.writeEPSfile("hello") -c.writePDFfile("hello") +c.writeEPSfile() +c.writePDFfile() diff --git a/examples/hello.txt b/examples/hello.txt index 4368a090..18eba4e0 100644 --- a/examples/hello.txt +++ b/examples/hello.txt @@ -4,8 +4,10 @@ As it is good practice to say "Hello, world!" in the first example, let's discuss how to do that in PyX. At first we import the PyX modules. Most PyX programs will start with a line -like that. In order to produce some output we create a canvas instance `c`. Such -an instance provides some useful methods to output some text at a certain +like that. In order to produce some output we create a canvas instance `c`. +Such an instance provides some useful methods to output some text at a certain position and for directly stroking a path, for which we use a `line` instance from the `path` module here. Once this is done, we write an EPS file and a PDF -file containing all items inserted into the canvas instance. +file containing all items inserted into the canvas instance. Since we did not +pass a filename as argument to the write methods, the resulting files will just +be named as the Python script - minus the extension, of course. diff --git a/examples/text/color.txt b/examples/text/color.txt index c556e186..cdd12b06 100644 --- a/examples/text/color.txt +++ b/examples/text/color.txt @@ -18,7 +18,7 @@ in PyX. The other alternative allows to use PyX colors directly. !! Note that no graphics driver has been used for the color.sty LaTeX package. PyX performs a hack to enforce the use of its own LaTeX driver file pyx.def. In case that you have installed the three files `pyx.def`, `color.cfg`, and -`graphics.cfg` from /contrib somewhere in the LaTeX search path, it is +`graphics.cfg` from the PyX distribution somewhere in the LaTeX search path, it is possible to use text.set(mode="latex", pyxgraphics=0) diff --git a/faq/pyxfaq.tex b/faq/pyxfaq.tex index dce08b06..472aae9c 100644 --- a/faq/pyxfaq.tex +++ b/faq/pyxfaq.tex @@ -181,7 +181,7 @@ of the example code or adapting it for your purposes may help. There is also a user discussion list about \PyX{} which you can subscribe to at \url{http://lists.sourceforge.net/lists/listinfo/pyx-user}. The archive of -the discussion list is available at \url{http://sourceforge.net/mailarchive/forum.php?forum_id=23700}. +the discussion list is available at \url{http://sourceforge.net/mailarchive/forum.php?forum_name=pyx-user}. Finally, it might be worth checking \url{http://pyx.sourceforge.net/pyxfaq.pdf} for an updated version of this FAQ. @@ -506,7 +506,7 @@ be drawn at all integers: from pyx.graph import axis\\ tg = graph.graphxy(width=10,\\ ~~~~~~~~~~~~~~~~~~~x=axis.linear(min=1, max=10,\\ -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~parter=axis.parter.linear(tickdist=[2,1]))\\ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~parter=axis.parter.linear(tickdists=[2,1]))\\ ~~~~~~~~~~~~~~~~~~~) \end{progcode} } diff --git a/manual/axis.tex b/manual/axis.tex index 4031e0aa..12f0665a 100644 --- a/manual/axis.tex +++ b/manual/axis.tex @@ -72,14 +72,17 @@ keyword arguments of a graph. Those instances should only be used once. parter=parter.autolinear(), manualticks=[], density=1, maxworse=2, rater=rater.linear(), texter=texter.mixed(), painter=painter.regular(), - linkpainter=painter.linked()} + linkpainter=painter.linked(), fallbackrange=None} This class provides a linear axis. \var{min} and \var{max} define the axis range. When not set, they are adjusted automatically by the data to be plotted in the graph. Note, that some data might want to access the range of an axis (\emph{e.g.} the \class{function} class when no range was provided there) or you need to specify a range when using the axis without plugging it into a graph (\emph{e.g.} - when drawing an axis along a path). + when drawing an axis along a path). In cases where the data provides + a range of zero (e.g.~a when plotting a constant function), then a + \var{fallbackrange} can be set to guarantee a minimal range of the + axis. \var{reverse} can be set to indicate a reversed axis starting with bigger values first. Alternatively you can fix the axis range by @@ -125,7 +128,7 @@ keyword arguments of a graph. Those instances should only be used once. parter=parter.autologarithmic(), manualticks=[], density=1, maxworse=2, rater=rater.logarithmic(), texter=texter.mixed(), painter=painter.regular(), - linkpainter=painter.linked()} + linkpainter=painter.linked(), fallbackrange=None} This class provides a logarithmic axis. All parameters work like \class{linear}. Only two parameters have a different default: \var{parter} and \var{rater}. Furthermore and most importantly, the diff --git a/manual/canvas.tex b/manual/canvas.tex index fc810514..0d54adcf 100644 --- a/manual/canvas.tex +++ b/manual/canvas.tex @@ -110,7 +110,8 @@ document. \begin{methoddesc}{pipeGS}{filename="-", device=None, resolution=100, gscommand="gs", gsoptions="", - textalphabits=4, graphicsalphabits=4, **kwargs} + textalphabits=4, graphicsalphabits=4, + ciecolor=False, input="eps", **kwargs} This method pipes the content of a canvas to the ghostscript interpreter directly to generate other output formats. At least \var{filename} or \var{device} must be set. \var{filename} specifies @@ -124,7 +125,7 @@ document. others. See the output of \texttt{gs --help} and the ghostscript documentation for more information. When \var{filename} is specified but the device is not set, \code{"png16m"} is used when the filename - ends in \texttt{.eps} and \code{"jpeg"} is used when the filename + ends in \texttt{.png} and \code{"jpeg"} is used when the filename ends in \texttt{.jpg}. \var{resolution} specifies the resolution in dpi (dots per inch). @@ -134,6 +135,11 @@ document. conventient parameters to set the \texttt{TextAlphaBits} and \texttt{GraphicsAlphaBits} options of ghostscript. You can skip the addition of those option by set their value to \code{None}. + \var{ciecolor} adds the \texttt{-dUseCIEColor} flag to improve + the CMYK to RGB color conversion. \var{input} can be either + \code{"eps"} or \code{"pdf"} to select the input type to be passed + to ghostscript (note slightly different features available in the + different input types). \var{kwargs} are passed to the \method{writeEPSfile} method (not counting the \var{file} parameter), which is used to generate the diff --git a/manual/document.tex b/manual/document.tex index 150cd64d..adf2844a 100644 --- a/manual/document.tex +++ b/manual/document.tex @@ -18,7 +18,7 @@ A \class{page} is a thin wrapper around a \class{canvas}, which defines some additional properties of the page. \begin{classdesc}{page}{canvas, pagename=None, - paperformat=paperformat.A4, rotated=0, centered=1, fittosize=0, + paperformat=None, rotated=0, centered=1, fittosize=0, margin=1 * unit.t_cm, bboxenlarge=1 * unit.t_pt, bbox=None} Construct a new \class{page} from the given \class{canvas} instance. A string \var{pagename} and the \var{paperformat} can be @@ -41,20 +41,36 @@ defines some additional properties of the page. A \class{document} can be written to a file using one of the following methods: -\begin{methoddesc}{writeEPSfile}{file, *args, **kwargs} - Write a single page \class{document} to an EPS file, passing - \var{args} and \var{kwargs} to the \class{epswriter} instance - created for writing. +\begin{methoddesc}{writeEPSfile}{file, title=None, strip_fonts=True, + text_as_path=False, mesh_as_bitmap=False, mesh_as_bitmap_resolution=300} + Write a single page \class{document} to an EPS file. \var{title} + is used as the document title, \var{strip_fonts} enabled font + stripping (removal of unused glyphs), \var{text_as_path} converts + all text to paths instead of using fonts in the output, + \var{mesh_as_bitmap} converts meshs (like 3d surface plots) to + bitmaps (to reduce complexity in the output) and + \var{mesh_as_bitmap_resolution} is the resolution of this conversion + in dots per inch. \end{methoddesc} -\begin{methoddesc}{writePSfile}{file, *args, **kwargs} - Write \class{document} to a PS file, passing \var{args} and - \var{kwargs} to the \class{pswriter} instance created for writing. +\begin{methoddesc}{writePSfile}{file, writebbox=False, title=None, strip_fonts=True, + text_as_path=False, mesh_as_bitmap=False, mesh_as_bitmap_resolution=300} + Write \class{document} to a PS file. \var{writebbox} add the page + bounding boxes to the output. All other parameters are identical to + the \method{writeEPSfile} method. \end{methoddesc} -\begin{methoddesc}{writePDFfile}{file, *args, **kwargs} - Write \class{document} to a PDF file, passing \var{args} and - \var{kwargs} to the \class{pdfwriter} instance created for writing. +\begin{methoddesc}{writePDFfile}{file, title=None, author=None, subject=None, +keywords=None, fullscreen=False, writebbox=False, compress=True, compresslevel=6, +strip_fonts=True, text_as_path=False, mesh_as_bitmap=False, mesh_as_bitmap_resolution=300} + Write \class{document} to a PDF file. \var{author}, \var{subject}, + and \var{keywords} are used for the document author, subject, and + keyword information, respectively. \var{fullscreen} enabled + fullscreen mode when the document is opened, \var{writebbox} enables + writing of the crop box to each page, \var{compress} enables output + stream compression and \var{compresslevel} sets the compress level + to be used (from 1 to 9). All other parameters are identical to the + \method{writeEPSfile}. \end{methoddesc} \begin{methoddesc}{writetofile}{filename, *args, **kwargs} diff --git a/manual/gradientname.py b/manual/gradientname.py index 8a188d6f..8c72b639 100755 --- a/manual/gradientname.py +++ b/manual/gradientname.py @@ -38,7 +38,7 @@ for line in lines: # we yet don't use a file iterator else: g = graph.graphxy(ypos=y, width=10, height=0.5, x2=graph.axis.linkedaxis(firstgraph.axes["x2"]), y=graph.axis.lin(parter=None)) g.plot(pf, [graph.style.rect(getattr(pyx.color.gradient, m.group("name")))]) - g.dodata() + g.doplot() g.finish() c.insert(g) c.text(10.2, y + 0.15, m.group("id"), [text.size.footnotesize]) diff --git a/manual/graph.tex b/manual/graph.tex index 02fb1702..155c9978 100644 --- a/manual/graph.tex +++ b/manual/graph.tex @@ -42,7 +42,7 @@ The result \file{graph.eps} is shown in figure~\ref{fig:graph}. \begin{figure}[ht] \centerline{\includegraphics{graph}} -\caption{A minimalistic plot for the data from file \file{graph.dat}.} +\caption[A minimalistic plot for the data from a file.]{A minimalistic plot for the data from file \file{graph.dat}.} \label{fig:graph} \end{figure} @@ -229,12 +229,16 @@ orginal order in which the \method{do}-methods are called is: Inserts the axes. \end{methoddesc} -\begin{methoddesc}{doplot}{plotitem} +\begin{methoddesc}{doplotitem}{plotitem} Plots the plotitem as returned by the graphs plot method. \end{methoddesc} -\begin{methoddesc}{dodata}{} - Plots the data. +\begin{methoddesc}{doplot}{} + Plots all (remaining) plotitems. +\end{methoddesc} + +\begin{methoddesc}{dokeyitem}{} + Inserts a plotitem in the graph key as returned by the graphs plot method. \end{methoddesc} \begin{methoddesc}{dokey}{} @@ -899,7 +903,7 @@ definition is: \begin{classdesc}{arrow}{linelength=0.25*unit.v\_cm, % {{{ arrowsize=0.15*unit.v\_cm, lineattrs=[], arrowattrs=[], arrowpos=0.5, - epsilon=1e-10} + epsilon=1e-10, decorator=deco.earrow} This class is a style to plot short lines with arrows into a two-dimensional graph to a given graph position. The arrow parameters are defined by two additional data columns named @@ -915,7 +919,8 @@ definition is: means centered at the graph position, whereas \code{0} and \code{1} creates the arrows to start or end at the graph position, respectively. \var{epsilon} is used as a cutoff for short arrows in - order to prevent numerical instabilities. + order to prevent numerical instabilities. \var{decorator} defines + the decorator to be added to the line. \end{classdesc} % }}} \begin{classdesc}{rect}{gradient=color.gradient.Grey} % {{{ @@ -951,19 +956,23 @@ definition is: \var{rectkey} can be set to generate a rectanglar area instead of a line in the graph key. - Usually, a histogram wants a range specification (like for an - errorbar) in one graph dimension and a value for the other graph - dimension. By that, the widths of the histogram boxes might be - variable. But a typical use case is, that you just provide graph - positions for both graph dimensions. Then - \var{autohistogramaxisindex} defines the graph dimension where the - histogram should be plotted on top of it. (\code{0} thus means a - histogram at the x axes and \code{1} for the y axes.) The style will - then demand equal spaced values on this axis. The histogram boxes - are usually centered on those values for \var{autohistogrampointpos} - equals \code{0.5}, but they can also be aligned at the right side or - left side of this value for \var{autohistogrampointpos} being - \code{0} or \code{1}. + In the most general case, a histogram is defined by a range + specification (like for an errorbar) in one graph dimension (say, + along the x-axis) and a value for the other graph dimension. This + allows for the widths of the histogram boxes being variable. Often, + however, all histogram bin ranges are equally sized, and instead of + passing the range, the position of the bin along the x-axis fully + specifies the histogram - assuming that there are at least two bins. + This common case is supported via two parameters: + \var{autohistogramaxisindex}, which defines the index of the + independent histogram axis (in the case just described this would be + \code{0} designating the x axis). \var{autohistogrampointpos}, + defines the relative position of the center of the histogram bin: + \code{0.5} means that the bin is centered at the values passed to + the style, \code{0} (\code{1}) means that the bin is aligned at the + right-(left-)hand side. + + XXX describe, how to specify general histograms with varying bin widths Positions of the histograms are considered to be out of graph when they exceed the graph coordinate range [0:1] by more than @@ -994,11 +1003,19 @@ definition is: top of the bar. \end{classdesc} % }}} -\begin{classdesc}{bar}{barattrs=[]} % {{{ +\begin{classdesc}{bar}{barattrs=[], epsilon=1e-10, gradient=color.gradient.RedBlack} % {{{ This class draws bars in a bar graph. The bars are filled using \var{barattrs}. \var{barattrs} is merged with \code{defaultbarattrs} which is a list containing \code{[color.gradient.Rainbow, deco.stroked([color.grey.black])]}. + + The bar style has limited support for 3d graphs: Occlusion does not + work properly on stacked bars or multiple dataset. \var{epsilon} is + used in 3d to prevent numerical instabilities on bars without hight. + When \var{gradient} is not \code{None} it is used to calculate a + lighting coloring taking into account the angle between the view ray + and the bar and the distance between viewer and bar. The precise + conversion is defined in the \method{lighting} method. \end{classdesc} % }}} \begin{classdesc}{changebar}{barattrs=[]} % {{{ @@ -1006,7 +1023,7 @@ definition is: \var{barattrs} to be changed on subsequent data instances the \var{barattrs} are changed for each value within a single data instance. In the result the style can't be applied to several data - instances. The style raises an error instead. + instances and does not support 3d. The style raises an error instead. \end{classdesc} % }}} \begin{classdesc}{gridpos}{index1=0, index2=1, % {{{ @@ -1039,15 +1056,15 @@ definition is: into 4 triangles. The grid can be colored using values provided by the data column - named \var{columnname}. The values are rescaled to the range [0:1] + named \var{colorname}. The values are rescaled to the range [0:1] using mincolor and maxcolor (which are taken from the minimal and maximal values, but larger bounds could be set). - If no \var{columnname} column exists, the surface style falls back - to a lightning coloring taking into account the angle between the + If no \var{colorname} column exists, the surface style falls back + to a lighting coloring taking into account the angle between the view ray and the triangle and the distance between viewer and triangle. The precise conversion is defined in the - \method{lightning} method. + \method{lighting} method. If a \var{gridcolor} is set, the rectangular grid is marked by small stripes of the relative (compared to each rectangle) size of diff --git a/manual/graphics.tex b/manual/graphics.tex index 43d0a22e..40c25ecf 100644 --- a/manual/graphics.tex +++ b/manual/graphics.tex @@ -325,6 +325,9 @@ Attribute category & description & examples\\ \class{style.fillstyle} & style used for path filling & \class{color.color}\newline\class{pattern.pattern} \\ +\class{style.filltype} & type of path filling & +\code{style.filltype.nonzero_winding} (default)\newline\code{style.filltype.even_odd} +\\ \class{deformer.deformer} & operations changing the shape of the path & diff --git a/manual/intro.tex b/manual/intro.tex index 565c6272..57b7e4b0 100644 --- a/manual/intro.tex +++ b/manual/intro.tex @@ -20,17 +20,11 @@ The \PyX{} package is split in several modules, which can be categorised in the following groups \begin{tableii}{l|l}{textrm}{Functionality}{Modules} - basic graphics functionality & \module{canvas}, \module{path}, \module{deco}, \module{style}, \module{color}, - and \module{connector} - \\ - text output via \TeX{}/\LaTeX{} & \module{text} and \module{box} - \\ - linear transformations and units & \module{trafo} and \module{unit} - \\ - graph plotting functionality & \module{graph} (including submodules) - and \module{graph.axis} (including submodules) - \\ - EPS file inclusion & \module{epsfile} +\lineii{basic graphics functionality}{\module{canvas}, \module{path}, \module{deco}, \module{style}, \module{color}, and \module{connector}} +\lineii{text output via \TeX{}/\LaTeX{}}{\module{text} and \module{box}} +\lineii{linear transformations and units}{\module{trafo} and \module{unit}} +\lineii{graph plotting functionality}{\module{graph} (including submodules) and \module{graph.axis} (including submodules)} +\lineii{EPS file inclusion}{\module{epsfile}} \end{tableii} These modules (and some other less import ones) are imported into the diff --git a/manual/path.tex b/manual/path.tex index 776d050d..20fcfac4 100644 --- a/manual/path.tex +++ b/manual/path.tex @@ -278,7 +278,8 @@ be given in PostScript points. \begin{classdesc}{multicurveto_pt}{points_pt} Path element which appends B\'ezier curve segments starting from the current point and going through the list of each three control -points given in the \var{points_pt} argument. +points given in the \var{points_pt} argument. Thus, \var{points_pt} must be a +sequence of 6-tuples. \end{classdesc} diff --git a/manual/pattern.tex b/manual/pattern.tex index 0aa397e6..540a6aa6 100644 --- a/manual/pattern.tex +++ b/manual/pattern.tex @@ -39,10 +39,12 @@ bounding box.\\ bounding box.\\ \texttt{bbox}&bounding box of pattern. Use \texttt{None} for an automatic determination of the bounding box (including an -enlargement by $5$ pts on each side.)\\ +enlargement by \texttt{bboxenlarge} pts on each side.)\\ \texttt{trafo}&additional transformation applied to pattern or \texttt{None} (default). This may be used to rotate the pattern or to -shift its phase (by a translation). +shift its phase (by a translation).\\ +\texttt{bboxenlarge}&enlargement when using the automatic bounding box +determination; default is 5 pts. \end{tabularx} \medskip diff --git a/manual/text.tex b/manual/text.tex index a8fd1cf5..14a1fd3b 100644 --- a/manual/text.tex +++ b/manual/text.tex @@ -29,8 +29,8 @@ look for \texttt{updmap} used by many \TeX{} distributions to create an appropriate font mapping file. You may also specify one or several alternative font mapping files like \texttt{psfonts.cmz} in the global \texttt{pyxrc} or your local \texttt{.pyxrc}. Finally you can also use -the \var{fontmaps} keyword argument of the \class{texrunner} -constructor or its \method{set()} method. +the \var{fontmap} keyword argument to a texrunners \method{text} +method to use different mappings within a single outout file. \section[TeX/LaTeX instances: the \class{texrunner} class]% {\TeX/\LaTeX{} instances: the \class{texrunner} class} @@ -174,7 +174,7 @@ the user: which takes a string \emph{s}, returns a position in the text, where the expression \texttt{\textbackslash{}PyXMarker\{\emph{s}\}} is contained in \var{expr}. You should not use \texttt{@} within your - strings \emph{s} to prevent prevent name clashes with \PyX{} + strings \emph{s} to prevent name clashes with \PyX{} internal macros (although we don't the marker feature internally right now). \end{methoddesc} diff --git a/pyx/__init__.py b/pyx/__init__.py index 6bf2b886..9807f393 100644 --- a/pyx/__init__.py +++ b/pyx/__init__.py @@ -1,8 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2005 Jörg Lehmann -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2005 Jörg Lehmann +# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2006 Michael Schindler # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -32,7 +33,7 @@ import version __version__ = version.version __all__ = ["attr", "box", "bitmap", "canvas", "color", "connector", "deco", "deformer", "document", - "epsfile", "graph", "mesh", "path", "pattern", "style", "trafo", "text", "unit"] + "epsfile", "graph", "mesh", "path", "pattern", "pdfextra", "style", "trafo", "text", "unit"] # automatically import main modules into pyx namespace diff --git a/pyx/attr.py b/pyx/attr.py index 778b4720..63994a9a 100644 --- a/pyx/attr.py +++ b/pyx/attr.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2003-2004 Jörg Lehmann +# Copyright (C) 2003-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2003-2004 André Wobst +# Copyright (C) 2003-2004 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,22 +21,6 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -# check for an isinstance which accepts both a class and a sequence of classes -# as second argument and emulate this behaviour if necessary -try: - isinstance(1, (int, float)) -except TypeError: - # workaround for Python 2.1 - _isinstance = isinstance - def isinstance(instance, clsarg): - import types - if _isinstance(clsarg, types.ClassType): - return _isinstance(instance, clsarg) - for cls in clsarg: - if _isinstance(instance, cls): - return 1 - return 0 - # # some helper functions for the attribute handling # diff --git a/pyx/bbox.py b/pyx/bbox.py index d00383d8..403eea46 100644 --- a/pyx/bbox.py +++ b/pyx/bbox.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2002-2004 André Wobst +# Copyright (C) 2002-2006 Jörg Lehmann +# Copyright (C) 2002-2004 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,7 +21,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA import math -import unit +import path, unit # # classes representing bounding boxes @@ -248,7 +248,6 @@ class bbox_pt: """return rectangle corresponding to bbox""" if self.llx_pt is None: raise ValueError("Cannot return path for empty bbox") - import path return path.rect_pt(self.llx_pt, self.lly_pt, self.urx_pt-self.llx_pt, self.ury_pt-self.lly_pt) path = rect diff --git a/pyx/bitmap.py b/pyx/bitmap.py index 0ae8d9b2..42dffc5c 100644 --- a/pyx/bitmap.py +++ b/pyx/bitmap.py @@ -1,7 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2004-2006 André Wobst +# Copyright (C) 2004-2011 André Wobst +# Copyright (C) 2011 Michael Schindler # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -26,7 +27,16 @@ try: except: haszlib = 0 -import bbox, canvas, pswriter, pdfwriter, trafo, unit +import bbox, canvasitem, pswriter, pdfwriter, trafo, unit + +devicenames = {"L": "/DeviceGray", + "RGB": "/DeviceRGB", + "CMYK": "/DeviceCMYK"} +decodestrings = {"L": "[0 1]", + "RGB": "[0 1 0 1 0 1]", + "CMYK": "[0 1 0 1 0 1 0 1]", + "P": "[0 255]"} + def ascii85lines(datalen): if datalen < 4: @@ -83,10 +93,10 @@ def asciihexstream(file, data): class image: - def __init__(self, width, height, mode, data, compressed=None): + def __init__(self, width, height, mode, data, compressed=None, palette=None): if width <= 0 or height <= 0: raise ValueError("valid image size") - if mode not in ["L", "RGB", "CMYK"]: + if mode not in ["L", "RGB", "CMYK", "LA", "RGBA", "CMYKA", "AL", "ARGB", "ACMYK"]: raise ValueError("invalid mode") if compressed is None and len(mode)*width*height != len(data): raise ValueError("wrong size of uncompressed data") @@ -94,6 +104,16 @@ class image: self.mode = mode self.data = data self.compressed = compressed + self.palette = palette + + def split(self): + if self.compressed is not None: + raise RuntimeError("cannot extract bands from compressed image") + bands = len(self.mode) + width, height = self.size + return [image(width, height, "L", "".join([self.data[i*bands+band] + for i in range(width*height)])) + for band in range(bands)] def tostring(self, *args): if len(args): @@ -206,29 +226,33 @@ class PDFimagepalettedata(pdfwriter.PDFobject): class PDFimage(pdfwriter.PDFobject): - def __init__(self, name, width, height, palettecolorspace, palettedata, colorspace, - bitspercomponent, compressmode, data, registry): - if palettedata is not None: - procset = "ImageI" - elif colorspace == "/DeviceGray": - procset = "ImageB" - else: - procset = "ImageC" + def __init__(self, name, width, height, palettemode, palettedata, mode, + bitspercomponent, compressmode, data, smask, registry, addresource=True): pdfwriter.PDFobject.__init__(self, "image", name) - registry.addresource("XObject", name, self, procset=procset) + + if addresource: + if palettedata is not None: + procset = "ImageI" + elif mode == "L": + procset = "ImageB" + else: + procset = "ImageC" + registry.addresource("XObject", name, self, procset=procset) if palettedata is not None: - # acrobat wants a palette to be an object + # note that acrobat wants a palette to be an object (which clearly is a bug) self.PDFpalettedata = PDFimagepalettedata(name, palettedata) registry.add(self.PDFpalettedata) + self.name = name self.width = width self.height = height - self.palettecolorspace = palettecolorspace + self.palettemode = palettemode self.palettedata = palettedata - self.colorspace = colorspace + self.mode = mode self.bitspercomponent = bitspercomponent self.compressmode = compressmode self.data = data + self.smask = smask def write(self, file, writer, registry): file.write("<<\n" @@ -237,11 +261,13 @@ class PDFimage(pdfwriter.PDFobject): "/Width %d\n" % self.width) file.write("/Height %d\n" % self.height) if self.palettedata is not None: - file.write("/ColorSpace [ /Indexed %s %i\n" % (self.palettecolorspace, len(self.palettedata)/3-1)) + file.write("/ColorSpace [ /Indexed %s %i\n" % (devicenames[self.palettemode], len(self.palettedata)/3-1)) file.write("%d 0 R\n" % registry.getrefno(self.PDFpalettedata)) file.write("]\n") else: - file.write("/ColorSpace %s\n" % self.colorspace) + file.write("/ColorSpace %s\n" % devicenames[self.mode]) + if self.smask: + file.write("/SMask %d 0 R\n" % registry.getrefno(self.smask)) file.write("/BitsPerComponent %d\n" % self.bitspercomponent) file.write("/Length %d\n" % len(self.data)) if self.compressmode: @@ -253,163 +279,195 @@ class PDFimage(pdfwriter.PDFobject): "endstream\n") -class bitmap(canvas.canvasitem): +class bitmap_pt(canvasitem.canvasitem): - def __init__(self, xpos, ypos, image, width=None, height=None, ratio=None, + def __init__(self, xpos_pt, ypos_pt, image, width_pt=None, height_pt=None, ratio=None, PSstoreimage=0, PSmaxstrlen=4093, PSbinexpand=1, compressmode="Flate", flatecompresslevel=6, dctquality=75, dctoptimize=0, dctprogression=0): - # keep a copy of the image instance to ensure different id's + self.xpos_pt = xpos_pt + self.ypos_pt = ypos_pt self.image = image - self.xpos = xpos - self.ypos = ypos self.imagewidth, self.imageheight = image.size - self.PSstoreimage = PSstoreimage - self.PSmaxstrlen = PSmaxstrlen - self.PSbinexpand = PSbinexpand - if width is not None or height is not None: - self.width = width - self.height = height - if self.width is None: + if width_pt is not None or height_pt is not None: + self.width_pt = width_pt + self.height_pt = height_pt + if self.width_pt is None: if ratio is None: - self.width = self.height * self.imagewidth / float(self.imageheight) + self.width_pt = self.height_pt * self.imagewidth / float(self.imageheight) else: - self.width = ratio * self.height - elif self.height is None: + self.width_pt = ratio * self.height_pt + elif self.height_pt is None: if ratio is None: - self.height = self.width * self.imageheight / float(self.imagewidth) + self.height_pt = self.width_pt * self.imageheight / float(self.imagewidth) else: - self.height = (1.0/ratio) * self.width + self.height_pt = (1.0/ratio) * self.width_pt elif ratio is not None: - raise ValueError("can't specify a ratio when setting width and height") + raise ValueError("can't specify a ratio when setting width_pt and height_pt") else: if ratio is not None: - raise ValueError("must specify width or height to set a ratio") + raise ValueError("must specify width_pt or height_pt to set a ratio") widthdpi, heightdpi = image.info["dpi"] # fails when no dpi information available - self.width = self.imagewidth / float(widthdpi) * unit.t_inch - self.height = self.imageheight / float(heightdpi) * unit.t_inch - - self.xpos_pt = unit.topt(self.xpos) - self.ypos_pt = unit.topt(self.ypos) - self.width_pt = unit.topt(self.width) - self.height_pt = unit.topt(self.height) - - # create decode and colorspace - self.colorspace = self.palettecolorspace = self.palettedata = None - if image.mode == "P": - palettemode, self.palettedata = image.palette.getdata() - self.decode = "[0 255]" - try: - self.palettecolorspace = {"L": "/DeviceGray", - "RGB": "/DeviceRGB", - "CMYK": "/DeviceCMYK"}[palettemode] - except KeyError: - warnings.warn("image with unknown palette mode '%s' converted to rgb image" % palettemode) - image = image.convert("RGB") - self.decode = "[0 1 0 1 0 1]" - self.palettedata = None - self.colorspace = "/DeviceRGB" - elif len(image.mode) == 1: - if image.mode != "L": - image = image.convert("L") - warnings.warn("specific single channel image mode not natively supported, converted to regular grayscale") - self.decode = "[0 1]" - self.colorspace = "/DeviceGray" - elif image.mode == "CMYK": - self.decode = "[0 1 0 1 0 1 0 1]" - self.colorspace = "/DeviceCMYK" - else: - if image.mode != "RGB": - image = image.convert("RGB") - warnings.warn("image with unknown mode converted to rgb") - self.decode = "[0 1 0 1 0 1]" - self.colorspace = "/DeviceRGB" - - # create imagematrix - self.imagematrixPS = (trafo.mirror(0) - .translated_pt(-self.xpos_pt, self.ypos_pt+self.height_pt) - .scaled_pt(self.imagewidth/self.width_pt, self.imageheight/self.height_pt)) - self.imagematrixPDF = (trafo.scale_pt(self.width_pt, self.height_pt) - .translated_pt(self.xpos_pt, self.ypos_pt)) - - # check whether imagedata is compressed or not + self.width_pt = 72.0 * self.imagewidth / float(widthdpi) + self.height_pt = 72.0 * self.imageheight / float(heightdpi) + + self.PSstoreimage = PSstoreimage + self.PSmaxstrlen = PSmaxstrlen + self.PSbinexpand = PSbinexpand + self.compressmode = compressmode + self.flatecompresslevel = flatecompresslevel + self.dctquality = dctquality + self.dctoptimize = dctoptimize + self.dctprogression = dctprogression + try: - imagecompressed = image.compressed + self.imagecompressed = image.compressed except: - imagecompressed = None - if compressmode != None and imagecompressed != None: + self.imagecompressed = None + if self.compressmode not in [None, "Flate", "DCT"]: + raise ValueError("invalid compressmode '%s'" % self.compressmode) + if self.imagecompressed not in [None, "Flate", "DCT"]: + raise ValueError("invalid compressed image '%s'" % self.imagecompressed) + if self.compressmode is not None and self.imagecompressed is not None: raise ValueError("compression of a compressed image not supported") - self.compressmode = compressmode - if compressmode is not None and compressmode not in ["Flate", "DCT"]: - raise ValueError("invalid compressmode '%s'" % compressmode) - if imagecompressed is not None: - self.compressmode = imagecompressed - if imagecompressed not in ["Flate", "DCT"]: - raise ValueError("invalid compressed image '%s'" % imagecompressed) - if not haszlib and compressmode == "Flate": + if not haszlib and self.compressmode == "Flate": warnings.warn("zlib module not available, disable compression") - self.compressmode = compressmode = None - - # create data - if compressmode == "Flate": - self.data = zlib.compress(image.tostring(), flatecompresslevel) - elif compressmode == "DCT": - self.data = image.tostring("jpeg", image.mode, - dctquality, dctoptimize, dctprogression) + self.compressmode = None + + def imagedata(self, interleavealpha): + """internal function + + returns a tuple (mode, data, alpha, palettemode, palettedata) + where mode does not contain antialiasing anymore + """ + + alpha = palettemode = palettedata = None + data = self.image + mode = data.mode + if mode.startswith("A"): + mode = mode[1:] + if interleavealpha: + alpha = True + else: + bands = data.split() + alpha = band[0] + data = image(self.imagewidth, self.imageheight, mode, + "".join(["".join(values) + for values in zip(*[band.tostring() + for band in bands[1:]])]), palette=data.palette) + if mode.endswith("A"): + bands = data.split() + bands = list(bands[-1:]) + list(bands[:-1]) + mode = mode[:-1] + if interleavealpha: + alpha = True + # TODO: this is slow, but we don't want to depend on PIL or anything ... still, its incredibly slow to do it with lists and joins + data = image(self.imagewidth, self.imageheight, "A%s" % mode, + "".join(["".join(values) + for values in zip(*[band.tostring() + for band in bands])]), palette=data.palette) + else: + alpha = bands[0] + data = image(self.imagewidth, self.imageheight, mode, + "".join(["".join(values) + for values in zip(*[band.tostring() + for band in bands[1:]])]), palette=data.palette) + + if mode == "P": + palettemode, palettedata = data.palette.getdata() + if palettemode not in ["L", "RGB", "CMYK"]: + warnings.warn("image with unknown palette mode '%s' converted to rgb image" % palettemode) + data = data.convert("RGB") + mode = "RGB" + palettemode = None + palettedata = None + elif len(mode) == 1: + if mode != "L": + warnings.warn("specific single channel image mode not natively supported, converted to regular grayscale") + data = data.convert("L") + mode = "L" + elif mode not in ["CMYK", "RGB"]: + warnings.warn("image with unknown mode converted to rgb") + data = data.convert("RGB") + mode = "RGB" + + if self.compressmode == "Flate": + data = zlib.compress(data.tostring(), self.flatecompresslevel) + elif self.compressmode == "DCT": + data = data.tostring("jpeg", mode, self.dctquality, self.dctoptimize, self.dctprogression) else: - self.data = image.tostring() + data = data.tostring() + if alpha and not interleavealpha: + if self.compressmode == "Flate": + alpha = zlib.compress(alpha.tostring(), self.flatecompresslevel) + elif self.compressmode == "DCT": + # well, this here is strange, we might want a alphacompressmode ... + alpha = alpha.tostring("jpeg", mode, self.dctquality, self.dctoptimize, self.dctprogression) + else: + alpha = alpha.tostring() - self.PSsinglestring = self.PSstoreimage and len(self.data) < self.PSmaxstrlen - if self.PSsinglestring: - self.PSimagename = "image-%d-%s-singlestring" % (id(image), compressmode) - else: - self.PSimagename = "image-%d-%s-stringarray" % (id(image), compressmode) - self.PDFimagename = "image-%d-%s" % (id(image), compressmode) + return mode, data, alpha, palettemode, palettedata def bbox(self): return bbox.bbox_pt(self.xpos_pt, self.ypos_pt, self.xpos_pt+self.width_pt, self.ypos_pt+self.height_pt) def processPS(self, file, writer, context, registry, bbox): - if self.PSstoreimage and not self.PSsinglestring: + mode, data, alpha, palettemode, palettedata = self.imagedata(True) + imagematrixPS = (trafo.mirror(0) + .translated_pt(-self.xpos_pt, self.ypos_pt+self.height_pt) + .scaled_pt(self.imagewidth/self.width_pt, self.imageheight/self.height_pt)) + + + PSsinglestring = self.PSstoreimage and len(data) < self.PSmaxstrlen + if PSsinglestring: + PSimagename = "image-%d-%s-singlestring" % (id(self.image), self.compressmode) + else: + PSimagename = "image-%d-%s-stringarray" % (id(self.image), self.compressmode) + + if self.PSstoreimage and not PSsinglestring: registry.add(pswriter.PSdefinition("imagedataaccess", "{ /imagedataindex load " # get list index "dup 1 add /imagedataindex exch store " # store increased index "/imagedataid load exch get }")) # select string from array if self.PSstoreimage: - registry.add(PSimagedata(self.PSimagename, self.data, self.PSsinglestring, self.PSmaxstrlen)) + registry.add(PSimagedata(PSimagename, data, PSsinglestring, self.PSmaxstrlen)) bbox += self.bbox() file.write("gsave\n") - if self.palettedata is not None: - file.write("[ /Indexed %s %i\n" % (self.palettecolorspace, len(self.palettedata)/3-1)) - file.write("%%%%BeginData: %i ASCII Lines\n" % ascii85lines(len(self.palettedata))) + if palettedata is not None: + file.write("[ /Indexed %s %i\n" % (devicenames[palettemode], len(palettedata)/3-1)) + file.write("%%%%BeginData: %i ASCII Lines\n" % ascii85lines(len(palettedata))) file.write("<~") - ascii85stream(file, self.palettedata) + ascii85stream(file, palettedata) file.write("~>\n" "%%EndData\n") file.write("] setcolorspace\n") else: - file.write("%s setcolorspace\n" % self.colorspace) + file.write("%s setcolorspace\n" % devicenames[mode]) - if self.PSstoreimage and not self.PSsinglestring: + if self.PSstoreimage and not PSsinglestring: file.write("/imagedataindex 0 store\n" # not use the stack since interpreters differ in their stack usage - "/imagedataid %s store\n" % self.PSimagename) - - file.write("<<\n" - "/ImageType 1\n" + "/imagedataid %s store\n" % PSimagename) + + file.write("<<\n") + if alpha: + file.write("/ImageType 3\n" + "/DataDict\n" + "<<\n") + file.write("/ImageType 1\n" "/Width %i\n" % self.imagewidth) file.write("/Height %i\n" % self.imageheight) file.write("/BitsPerComponent 8\n" - "/ImageMatrix %s\n" % self.imagematrixPS) - file.write("/Decode %s\n" % self.decode) + "/ImageMatrix %s\n" % imagematrixPS) + file.write("/Decode %s\n" % decodestrings[mode]) file.write("/DataSource ") if self.PSstoreimage: - if self.PSsinglestring: - file.write("/%s load" % self.PSimagename) + if PSsinglestring: + file.write("/%s load" % PSimagename) else: file.write("/imagedataaccess load") # some printers do not allow for inline code here -> we store it in a resource else: @@ -417,36 +475,77 @@ class bitmap(canvas.canvasitem): file.write("currentfile /ASCIIHexDecode filter") else: file.write("currentfile /ASCII85Decode filter") - if self.compressmode: - file.write(" /%sDecode filter" % self.compressmode) + if self.compressmode or self.imagecompressed: + file.write(" /%sDecode filter" % (self.compressmode or self.imagecompressed)) file.write("\n") file.write(">>\n") + if alpha: + file.write("/MaskDict\n" + "<<\n" + "/ImageType 1\n" + "/Width %i\n" % self.imagewidth) + file.write("/Height %i\n" % self.imageheight) + file.write("/BitsPerComponent 8\n" + "/ImageMatrix %s\n" % imagematrixPS) + file.write("/Decode [1 0]\n" + ">>\n" + "/InterleaveType 1\n" + ">>\n") + if self.PSstoreimage: file.write("image\n") else: if self.PSbinexpand == 2: file.write("%%%%BeginData: %i ASCII Lines\n" - "image\n" % (asciihexlines(len(self.data)) + 1)) - asciihexstream(file, self.data) + "image\n" % (asciihexlines(len(data)) + 1)) + asciihexstream(file, data) else: # the datasource is currentstream (plus some filters) file.write("%%%%BeginData: %i ASCII Lines\n" - "image\n" % (ascii85lines(len(self.data)) + 1)) - ascii85stream(file, self.data) + "image\n" % (ascii85lines(len(data)) + 1)) + ascii85stream(file, data) file.write("~>\n") file.write("%%EndData\n") file.write("grestore\n") def processPDF(self, file, writer, context, registry, bbox): - registry.add(PDFimage(self.PDFimagename, self.imagewidth, self.imageheight, - self.palettecolorspace, self.palettedata, self.colorspace, - 8, self.compressmode, self.data, registry)) + mode, data, alpha, palettemode, palettedata = self.imagedata(False) + + name = "image-%d-%s" % (id(self.image), self.compressmode or self.imagecompressed) + if alpha: + alpha = PDFimage("%s-smask" % name, self.imagewidth, self.imageheight, + None, None, "L", 8, + self.compressmode, alpha, None, registry, addresource=False) + registry.add(alpha) + registry.add(PDFimage(name, self.imagewidth, self.imageheight, + palettemode, palettedata, mode, 8, + self.compressmode or self.imagecompressed, data, alpha, registry)) + bbox += self.bbox() + imagematrixPDF = (trafo.scale_pt(self.width_pt, self.height_pt) + .translated_pt(self.xpos_pt, self.ypos_pt)) file.write("q\n") - self.imagematrixPDF.processPDF(file, writer, context, registry, bbox) - file.write("/%s Do\n" % self.PDFimagename) + imagematrixPDF.processPDF(file, writer, context, registry, bbox) + file.write("/%s Do\n" % name) file.write("Q\n") + + +class bitmap(bitmap_pt): + + def __init__(self, xpos, ypos, image, width=None, height=None, **kwargs): + xpos_pt = unit.topt(xpos) + ypos_pt = unit.topt(ypos) + if width is not None: + width_pt = unit.topt(width) + else: + width_pt = None + if height is not None: + height_pt = unit.topt(height) + else: + height_pt = None + + bitmap_pt.__init__(self, xpos_pt, ypos_pt, image, width_pt=width_pt, height_pt=height_pt, **kwargs) diff --git a/pyx/box.py b/pyx/box.py index a05eb218..c664815a 100644 --- a/pyx/box.py +++ b/pyx/box.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2004 André Wobst +# Copyright (C) 2002-2004 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/canvas.py b/pyx/canvas.py index 6110af17..468ec698 100644 --- a/pyx/canvas.py +++ b/pyx/canvas.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -25,54 +25,8 @@ A canvas holds a collection of all elements and corresponding attributes to be displayed. """ -# -# canvas item -# - -from __future__ import nested_scopes -import os - -class canvasitem: - - """Base class for everything which can be inserted into a canvas""" - - def bbox(self): - """return bounding box of canvasitem""" - pass - - def processPS(self, file, writer, context, registry, bbox): - """process canvasitem by writing the corresponding PS code to file and - by updating context, registry as well as bbox - - - the PS code corresponding to the canvasitem has to be written in the - stream file, which provides a write(string) method - - writer is the PSwriter used for the output - - context is an instance of pswriter.context which is used for keeping - track of the graphics state (current linewidth, colorspace and font)) - - registry is used for tracking resources needed by the canvasitem - - bbox has to be updated to include the bounding box of the canvasitem - """ - raise NotImplementedError() - - def processPDF(self, file, writer, context, registry, bbox): - """process canvasitem by writing the corresponding PDF code to file and - by updating context, registry as well as bbox - - - the PDF code corresponding to the canvasitem has to be written in the - stream file, which provides a write(string) method - - writer is the PDFwriter used for the output, which contains properties - like whether streamcompression is used - - context is an instance of pdfwriter.context which is used for keeping - track of the graphics state, in particular for the emulation of PS - behaviour regarding fill and stroke styles, for keeping track of the - currently selected font as well as of text regions. - - registry is used for tracking resources needed by the canvasitem - - bbox has to be updated to include the bounding box of the canvasitem - """ - raise NotImplementedError() - - -import attr, deco, deformer, document, style, trafo, type1font +import os, tempfile +import attr, canvasitem, deco, deformer, document, font, pycompat, style, trafo import bbox as bboxmodule @@ -80,7 +34,7 @@ import bbox as bboxmodule # clipping class # -class clip(canvasitem): +class clip(canvasitem.canvasitem): """class for use in canvas constructor which clips to a path""" @@ -110,15 +64,15 @@ class clip(canvasitem): # general canvas class # -class _canvas(canvasitem): +class _canvas(canvasitem.canvasitem): """a canvas holds a collection of canvasitems""" - def __init__(self, attrs=[], texrunner=None): + def __init__(self, attrs=None, texrunner=None): """construct a canvas - The canvas can be modfied by supplying args, which have + The canvas can be modfied by supplying a list of attrs, which have to be instances of one of the following classes: - trafo.trafo (leading to a global transformation of the canvas) - canvas.clip (clips the canvas) @@ -135,6 +89,8 @@ class _canvas(canvasitem): self.items = [] self.trafo = trafo.trafo() self.clipbbox = None + if attrs is None: + attrs = [] if texrunner is not None: self.texrunner = texrunner else: @@ -145,12 +101,10 @@ class _canvas(canvasitem): attr.checkattrs(attrs, [trafo.trafo_pt, clip, style.strokestyle, style.fillstyle]) # We have to reverse the trafos such that the PostScript concat operators # are in the right order. Correspondingly, we below multiply the current self.trafo - # from the right. - # Note that while for the stroke and fill styles the order doesn't matter at all, + # from the right. + # Note that while for the stroke and fill styles the order doesn't matter at all, # this is not true for the clip operation. - attrs = attrs[:] - attrs.reverse() - for aattr in attrs: + for aattr in attrs[::-1]: if isinstance(aattr, trafo.trafo_pt): self.trafo = self.trafo * aattr elif isinstance(aattr, clip): @@ -200,24 +154,28 @@ class _canvas(canvasitem): def processPDF(self, file, writer, context, registry, bbox): context = context() + context.trafo = context.trafo * self.trafo if self.items: file.write("q\n") # gsave nbbox = bboxmodule.empty() for item in self.items: - if isinstance(item, type1font.text_pt): - if not context.textregion: - file.write("BT\n") - context.textregion = 1 - else: - if context.textregion: - file.write("ET\n") - context.textregion = 0 - context.font = None + if isinstance(item, style.fillstyle): + context.fillstyles.append(item) + if not writer.text_as_path: + if isinstance(item, font.text_pt): + if not context.textregion: + file.write("BT\n") + context.textregion = 1 + else: + if context.textregion: + file.write("ET\n") + context.textregion = 0 + context.selectedfont = None item.processPDF(file, writer, context, registry, nbbox) if context.textregion: file.write("ET\n") context.textregion = 0 - context.font = None + context.selectedfont = None # update bounding bbox nbbox.transform(self.trafo) if self.clipbbox is not None: @@ -234,8 +192,8 @@ class _canvas(canvasitem): """ - if not isinstance(item, canvasitem): - raise RuntimeError("only instances of base.canvasitem can be inserted into a canvas") + if not isinstance(item, canvasitem.canvasitem): + raise RuntimeError("only instances of canvasitem.canvasitem can be inserted into a canvas") if attrs: sc = _canvas(attrs) @@ -256,13 +214,14 @@ class _canvas(canvasitem): """ attrs = attr.mergeattrs(attrs) - attr.checkattrs(attrs, [deco.deco, deformer.deformer, style.fillstyle, style.strokestyle]) + attr.checkattrs(attrs, [deco.deco, deformer.deformer, style.fillstyle, style.strokestyle, style.fillrule]) for adeformer in attr.getattrs(attrs, [deformer.deformer]): path = adeformer.deform(path) styles = attr.getattrs(attrs, [style.fillstyle, style.strokestyle]) - dp = deco.decoratedpath(path, styles=styles) + fillrule, = attr.getattrs(attrs, [style.fillrule]) or [style.fillrule.nonzero_winding] + dp = deco.decoratedpath(path, styles=styles, fillrule=fillrule) # add path decorations and modify path accordingly for adeco in attr.getattrs(attrs, [deco.deco]): @@ -323,8 +282,8 @@ class _canvas(canvasitem): # def _wrappedindocument(method): - def wrappedindocument(self, file, *args, **kwargs): - d = document.document([document.page(self, *args, **kwargs)]) + def wrappedindocument(self, file=None, **kwargs): + d = document.document([document.page(self, **kwargs)]) self.__name__ = method.__name__ self.__doc__ = method.__doc__ return method(d, file) @@ -343,7 +302,7 @@ class canvas(_canvas): def pipeGS(self, filename="-", device=None, resolution=100, gscommand="gs", gsoptions="", textalphabits=4, graphicsalphabits=4, - **kwargs): + ciecolor=False, input="eps", **kwargs): if device is None: if filename.endswith(".png"): device = "png16m" @@ -356,6 +315,19 @@ class canvas(_canvas): gscommand += " -dTextAlphaBits=%i" % textalphabits if graphicsalphabits is not None: gscommand += " -dGraphicsAlphaBits=%i" % graphicsalphabits - gscommand += " -" - input = os.popen(gscommand, "w") - self.writeEPSfile(input, **kwargs) + if ciecolor: + gscommand += " -dUseCIEColor" + if input == "eps": + gscommand += " -" + pipe = pycompat.popen(gscommand, "wb") + self.writeEPSfile(pipe, **kwargs) + elif input == "pdf": + fd, fname = tempfile.mkstemp() + f = os.fdopen(fd, "wb") + gscommand += " %s" % fname + self.writePDFfile(f, **kwargs) + f.close() + os.system(gscommand) + os.unlink(fname) + else: + raise RuntimeError("input 'eps' or 'pdf' expected") diff --git a/pyx/canvasitem.py b/pyx/canvasitem.py new file mode 100644 index 00000000..fce9d69f --- /dev/null +++ b/pyx/canvasitem.py @@ -0,0 +1,60 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2002-2007 Jörg Lehmann +# Copyright (C) 2002-2007 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +class canvasitem: + + """Base class for everything which can be inserted into a canvas""" + + def bbox(self): + """return bounding box of canvasitem""" + pass + + def processPS(self, file, writer, context, registry, bbox): + """process canvasitem by writing the corresponding PS code to file and + by updating context, registry as well as bbox + + - the PS code corresponding to the canvasitem has to be written in the + stream file, which provides a write(string) method + - writer is the PSwriter used for the output + - context is an instance of pswriter.context which is used for keeping + track of the graphics state (current linewidth, colorspace and font)) + - registry is used for tracking resources needed by the canvasitem + - bbox has to be updated to include the bounding box of the canvasitem + """ + raise NotImplementedError() + + def processPDF(self, file, writer, context, registry, bbox): + """process canvasitem by writing the corresponding PDF code to file and + by updating context, registry as well as bbox + + - the PDF code corresponding to the canvasitem has to be written in the + stream file, which provides a write(string) method + - writer is the PDFwriter used for the output, which contains properties + like whether streamcompression is used + - context is an instance of pdfwriter.context which is used for keeping + track of the graphics state, in particular for the emulation of PS + behaviour regarding fill and stroke styles, for keeping track of the + currently selected font as well as of text regions. + - registry is used for tracking resources needed by the canvasitem + - bbox has to be updated to include the bounding box of the canvasitem + """ + raise NotImplementedError() diff --git a/pyx/color.py b/pyx/color.py index 8b7d1609..4686588b 100644 --- a/pyx/color.py +++ b/pyx/color.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004, 2006 Jörg Lehmann +# Copyright (C) 2002-2004, 2006 Jörg Lehmann # Copyright (C) 2003-2006 Michael Schindler -# Copyright (C) 2002-2007 André Wobst +# Copyright (C) 2002-2007 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -94,7 +94,7 @@ class grey(color): def colorspacestring(self): return "/DeviceGray" - def tostring8bit(self): + def to8bitstring(self): return chr(int(self.color["gray"]*255)) grey.black = grey(0.0) @@ -164,7 +164,7 @@ class rgb(color): def colorspacestring(self): return "/DeviceRGB" - def tostring8bit(self): + def to8bitstring(self): return struct.pack("BBB", int(self.color["r"]*255), int(self.color["g"]*255), int(self.color["b"]*255)) def tohexstring(self, cssstrip=1, addhash=1): @@ -279,7 +279,7 @@ class cmyk(color): def colorspacestring(self): return "/DeviceCMYK" - def tostring8bit(self): + def to8bitstring(self): return struct.pack("BBBB", int(self.color["c"]*255), int(self.color["m"]*255), int(self.color["y"]*255), int(self.color["k"]*255)) cmyk.GreenYellow = cmyk(0.15, 0, 0.69, 0) diff --git a/pyx/config.py b/pyx/config.py index 611ab70e..441e943c 100644 --- a/pyx/config.py +++ b/pyx/config.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2003-2004 Jörg Lehmann -# Copyright (C) 2003-2005 André Wobst +# Copyright (C) 2003-2011 Jörg Lehmann +# Copyright (C) 2003-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -20,35 +20,74 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -import ConfigParser, os.path -import siteconfig +import ConfigParser, os.path, warnings +import filelocator -cflist = [os.path.join(siteconfig.pyxrcdir, "pyxrc"), os.path.expanduser("~/.pyxrc")] +class _marker: pass config = ConfigParser.ConfigParser() -config.read(cflist) +config.readfp(filelocator.locator_classes["internal"]().openers("pyxrc", [], [""], "r")[0]()) +config.read(os.path.expanduser("~/.pyxrc")) -def get(section, option, default): - try: +def get(section, option, default=_marker): + if default is _marker: return config.get(section, option) - except: - return default + else: + try: + return config.get(section, option) + except ConfigParser.Error: + return default -def getint(section, option, default): - try: +def getint(section, option, default=_marker): + if default is _marker: return config.getint(section, option) - except: - return default + else: + try: + return config.getint(section, option) + except ConfigParser.Error: + return default -def getfloat(section, option, default): - try: +def getfloat(section, option, default=_marker): + if default is _marker: return config.getfloat(section, option) - except: - return default + else: + try: + return config.getfloat(section, option) + except ConfigParser.Error: + return default -def getboolean(section, option, default): - try: +def getboolean(section, option, default=_marker): + if default is _marker: return config.getboolean(section, option) - except: - return default + else: + try: + return config.getboolean(section, option) + except ConfigParser.Error: + return default +def getlist(section, option, default=_marker): + if default is _marker: + l = config.get(section, option).split() + else: + try: + l = config.get(section, option).split() + except ConfigParser.Error: + return default + if space: + l = [item.replace(space, ' ') for item in l] + return l + + +space = get("general", "space", None) +formatWarnings = get("general", "warnings", "default") +if formatWarnings not in ["default", "short", "shortest"]: + raise RuntimeError("invalid config value for option 'warnings' in section 'general'") +if formatWarnings != "default": + def formatwarning(message, category, filename, lineno, line=None): + if formatWarnings == "short": + return "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message) + else: + return "%s\n" % message + warnings.formatwarning = formatwarning + +filelocator.init() diff --git a/pyx/connector.py b/pyx/connector.py index 53a52445..4ce9b33b 100644 --- a/pyx/connector.py +++ b/pyx/connector.py @@ -1,4 +1,4 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # # Copyright (C) 2003-2006 Michael Schindler @@ -21,14 +21,8 @@ import math -from math import pi, sin, cos, atan2, tan, hypot, acos, sqrt +from math import degrees, radians, pi, sin, cos, atan2, tan, hypot, acos, sqrt import path, unit, mathutils, normpath -try: - from math import radians, degrees -except ImportError: - # fallback implementation for Python 2.1 and below - def radians(x): return x*pi/180 - def degrees(x): return x*180/pi ######################### diff --git a/pyx/data/afm/Courier-Bold.afm b/pyx/data/afm/Courier-Bold.afm new file mode 100644 index 00000000..d25d776f --- /dev/null +++ b/pyx/data/afm/Courier-Bold.afm @@ -0,0 +1,342 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Mon Jun 23 16:28:00 1997 +Comment UniqueID 43048 +Comment VMusage 41139 52164 +FontName Courier-Bold +FullName Courier Bold +FamilyName Courier +Weight Bold +ItalicAngle 0 +IsFixedPitch true +CharacterSet ExtendedRoman +FontBBox -113 -250 749 801 +UnderlinePosition -100 +UnderlineThickness 50 +Version 003.000 +Notice Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +EncodingScheme AdobeStandardEncoding +CapHeight 562 +XHeight 439 +Ascender 629 +Descender -157 +StdHW 84 +StdVW 106 +StartCharMetrics 315 +C 32 ; WX 600 ; N space ; B 0 0 0 0 ; +C 33 ; WX 600 ; N exclam ; B 202 -15 398 572 ; +C 34 ; WX 600 ; N quotedbl ; B 135 277 465 562 ; +C 35 ; WX 600 ; N numbersign ; B 56 -45 544 651 ; +C 36 ; WX 600 ; N dollar ; B 82 -126 519 666 ; +C 37 ; WX 600 ; N percent ; B 5 -15 595 616 ; +C 38 ; WX 600 ; N ampersand ; B 36 -15 546 543 ; +C 39 ; WX 600 ; N quoteright ; B 171 277 423 562 ; +C 40 ; WX 600 ; N parenleft ; B 219 -102 461 616 ; +C 41 ; WX 600 ; N parenright ; B 139 -102 381 616 ; +C 42 ; WX 600 ; N asterisk ; B 91 219 509 601 ; +C 43 ; WX 600 ; N plus ; B 71 39 529 478 ; +C 44 ; WX 600 ; N comma ; B 123 -111 393 174 ; +C 45 ; WX 600 ; N hyphen ; B 100 203 500 313 ; +C 46 ; WX 600 ; N period ; B 192 -15 408 171 ; +C 47 ; WX 600 ; N slash ; B 98 -77 502 626 ; +C 48 ; WX 600 ; N zero ; B 87 -15 513 616 ; +C 49 ; WX 600 ; N one ; B 81 0 539 616 ; +C 50 ; WX 600 ; N two ; B 61 0 499 616 ; +C 51 ; WX 600 ; N three ; B 63 -15 501 616 ; +C 52 ; WX 600 ; N four ; B 53 0 507 616 ; +C 53 ; WX 600 ; N five ; B 70 -15 521 601 ; +C 54 ; WX 600 ; N six ; B 90 -15 521 616 ; +C 55 ; WX 600 ; N seven ; B 55 0 494 601 ; +C 56 ; WX 600 ; N eight ; B 83 -15 517 616 ; +C 57 ; WX 600 ; N nine ; B 79 -15 510 616 ; +C 58 ; WX 600 ; N colon ; B 191 -15 407 425 ; +C 59 ; WX 600 ; N semicolon ; B 123 -111 408 425 ; +C 60 ; WX 600 ; N less ; B 66 15 523 501 ; +C 61 ; WX 600 ; N equal ; B 71 118 529 398 ; +C 62 ; WX 600 ; N greater ; B 77 15 534 501 ; +C 63 ; WX 600 ; N question ; B 98 -14 501 580 ; +C 64 ; WX 600 ; N at ; B 16 -15 584 616 ; +C 65 ; WX 600 ; N A ; B -9 0 609 562 ; +C 66 ; WX 600 ; N B ; B 30 0 573 562 ; +C 67 ; WX 600 ; N C ; B 22 -18 560 580 ; +C 68 ; WX 600 ; N D ; B 30 0 594 562 ; +C 69 ; WX 600 ; N E ; B 25 0 560 562 ; +C 70 ; WX 600 ; N F ; B 39 0 570 562 ; +C 71 ; WX 600 ; N G ; B 22 -18 594 580 ; +C 72 ; WX 600 ; N H ; B 20 0 580 562 ; +C 73 ; WX 600 ; N I ; B 77 0 523 562 ; +C 74 ; WX 600 ; N J ; B 37 -18 601 562 ; +C 75 ; WX 600 ; N K ; B 21 0 599 562 ; +C 76 ; WX 600 ; N L ; B 39 0 578 562 ; +C 77 ; WX 600 ; N M ; B -2 0 602 562 ; +C 78 ; WX 600 ; N N ; B 8 -12 610 562 ; +C 79 ; WX 600 ; N O ; B 22 -18 578 580 ; +C 80 ; WX 600 ; N P ; B 48 0 559 562 ; +C 81 ; WX 600 ; N Q ; B 32 -138 578 580 ; +C 82 ; WX 600 ; N R ; B 24 0 599 562 ; +C 83 ; WX 600 ; N S ; B 47 -22 553 582 ; +C 84 ; WX 600 ; N T ; B 21 0 579 562 ; +C 85 ; WX 600 ; N U ; B 4 -18 596 562 ; +C 86 ; WX 600 ; N V ; B -13 0 613 562 ; +C 87 ; WX 600 ; N W ; B -18 0 618 562 ; +C 88 ; WX 600 ; N X ; B 12 0 588 562 ; +C 89 ; WX 600 ; N Y ; B 12 0 589 562 ; +C 90 ; WX 600 ; N Z ; B 62 0 539 562 ; +C 91 ; WX 600 ; N bracketleft ; B 245 -102 475 616 ; +C 92 ; WX 600 ; N backslash ; B 99 -77 503 626 ; +C 93 ; WX 600 ; N bracketright ; B 125 -102 355 616 ; +C 94 ; WX 600 ; N asciicircum ; B 108 250 492 616 ; +C 95 ; WX 600 ; N underscore ; B 0 -125 600 -75 ; +C 96 ; WX 600 ; N quoteleft ; B 178 277 428 562 ; +C 97 ; WX 600 ; N a ; B 35 -15 570 454 ; +C 98 ; WX 600 ; N b ; B 0 -15 584 626 ; +C 99 ; WX 600 ; N c ; B 40 -15 545 459 ; +C 100 ; WX 600 ; N d ; B 20 -15 591 626 ; +C 101 ; WX 600 ; N e ; B 40 -15 563 454 ; +C 102 ; WX 600 ; N f ; B 83 0 547 626 ; L i fi ; L l fl ; +C 103 ; WX 600 ; N g ; B 30 -146 580 454 ; +C 104 ; WX 600 ; N h ; B 5 0 592 626 ; +C 105 ; WX 600 ; N i ; B 77 0 523 658 ; +C 106 ; WX 600 ; N j ; B 63 -146 440 658 ; +C 107 ; WX 600 ; N k ; B 20 0 585 626 ; +C 108 ; WX 600 ; N l ; B 77 0 523 626 ; +C 109 ; WX 600 ; N m ; B -22 0 626 454 ; +C 110 ; WX 600 ; N n ; B 18 0 592 454 ; +C 111 ; WX 600 ; N o ; B 30 -15 570 454 ; +C 112 ; WX 600 ; N p ; B -1 -142 570 454 ; +C 113 ; WX 600 ; N q ; B 20 -142 591 454 ; +C 114 ; WX 600 ; N r ; B 47 0 580 454 ; +C 115 ; WX 600 ; N s ; B 68 -17 535 459 ; +C 116 ; WX 600 ; N t ; B 47 -15 532 562 ; +C 117 ; WX 600 ; N u ; B -1 -15 569 439 ; +C 118 ; WX 600 ; N v ; B -1 0 601 439 ; +C 119 ; WX 600 ; N w ; B -18 0 618 439 ; +C 120 ; WX 600 ; N x ; B 6 0 594 439 ; +C 121 ; WX 600 ; N y ; B -4 -142 601 439 ; +C 122 ; WX 600 ; N z ; B 81 0 520 439 ; +C 123 ; WX 600 ; N braceleft ; B 160 -102 464 616 ; +C 124 ; WX 600 ; N bar ; B 255 -250 345 750 ; +C 125 ; WX 600 ; N braceright ; B 136 -102 440 616 ; +C 126 ; WX 600 ; N asciitilde ; B 71 153 530 356 ; +C 161 ; WX 600 ; N exclamdown ; B 202 -146 398 449 ; +C 162 ; WX 600 ; N cent ; B 66 -49 518 614 ; +C 163 ; WX 600 ; N sterling ; B 72 -28 558 611 ; +C 164 ; WX 600 ; N fraction ; B 25 -60 576 661 ; +C 165 ; WX 600 ; N yen ; B 10 0 590 562 ; +C 166 ; WX 600 ; N florin ; B -30 -131 572 616 ; +C 167 ; WX 600 ; N section ; B 83 -70 517 580 ; +C 168 ; WX 600 ; N currency ; B 54 49 546 517 ; +C 169 ; WX 600 ; N quotesingle ; B 227 277 373 562 ; +C 170 ; WX 600 ; N quotedblleft ; B 71 277 535 562 ; +C 171 ; WX 600 ; N guillemotleft ; B 8 70 553 446 ; +C 172 ; WX 600 ; N guilsinglleft ; B 141 70 459 446 ; +C 173 ; WX 600 ; N guilsinglright ; B 141 70 459 446 ; +C 174 ; WX 600 ; N fi ; B 12 0 593 626 ; +C 175 ; WX 600 ; N fl ; B 12 0 593 626 ; +C 177 ; WX 600 ; N endash ; B 65 203 535 313 ; +C 178 ; WX 600 ; N dagger ; B 106 -70 494 580 ; +C 179 ; WX 600 ; N daggerdbl ; B 106 -70 494 580 ; +C 180 ; WX 600 ; N periodcentered ; B 196 165 404 351 ; +C 182 ; WX 600 ; N paragraph ; B 6 -70 576 580 ; +C 183 ; WX 600 ; N bullet ; B 140 132 460 430 ; +C 184 ; WX 600 ; N quotesinglbase ; B 175 -142 427 143 ; +C 185 ; WX 600 ; N quotedblbase ; B 65 -142 529 143 ; +C 186 ; WX 600 ; N quotedblright ; B 61 277 525 562 ; +C 187 ; WX 600 ; N guillemotright ; B 47 70 592 446 ; +C 188 ; WX 600 ; N ellipsis ; B 26 -15 574 116 ; +C 189 ; WX 600 ; N perthousand ; B -113 -15 713 616 ; +C 191 ; WX 600 ; N questiondown ; B 99 -146 502 449 ; +C 193 ; WX 600 ; N grave ; B 132 508 395 661 ; +C 194 ; WX 600 ; N acute ; B 205 508 468 661 ; +C 195 ; WX 600 ; N circumflex ; B 103 483 497 657 ; +C 196 ; WX 600 ; N tilde ; B 89 493 512 636 ; +C 197 ; WX 600 ; N macron ; B 88 505 512 585 ; +C 198 ; WX 600 ; N breve ; B 83 468 517 631 ; +C 199 ; WX 600 ; N dotaccent ; B 230 498 370 638 ; +C 200 ; WX 600 ; N dieresis ; B 128 498 472 638 ; +C 202 ; WX 600 ; N ring ; B 198 481 402 678 ; +C 203 ; WX 600 ; N cedilla ; B 205 -206 387 0 ; +C 205 ; WX 600 ; N hungarumlaut ; B 68 488 588 661 ; +C 206 ; WX 600 ; N ogonek ; B 169 -199 400 0 ; +C 207 ; WX 600 ; N caron ; B 103 493 497 667 ; +C 208 ; WX 600 ; N emdash ; B -10 203 610 313 ; +C 225 ; WX 600 ; N AE ; B -29 0 602 562 ; +C 227 ; WX 600 ; N ordfeminine ; B 147 196 453 580 ; +C 232 ; WX 600 ; N Lslash ; B 39 0 578 562 ; +C 233 ; WX 600 ; N Oslash ; B 22 -22 578 584 ; +C 234 ; WX 600 ; N OE ; B -25 0 595 562 ; +C 235 ; WX 600 ; N ordmasculine ; B 147 196 453 580 ; +C 241 ; WX 600 ; N ae ; B -4 -15 601 454 ; +C 245 ; WX 600 ; N dotlessi ; B 77 0 523 439 ; +C 248 ; WX 600 ; N lslash ; B 77 0 523 626 ; +C 249 ; WX 600 ; N oslash ; B 30 -24 570 463 ; +C 250 ; WX 600 ; N oe ; B -18 -15 611 454 ; +C 251 ; WX 600 ; N germandbls ; B 22 -15 596 626 ; +C -1 ; WX 600 ; N Idieresis ; B 77 0 523 761 ; +C -1 ; WX 600 ; N eacute ; B 40 -15 563 661 ; +C -1 ; WX 600 ; N abreve ; B 35 -15 570 661 ; +C -1 ; WX 600 ; N uhungarumlaut ; B -1 -15 628 661 ; +C -1 ; WX 600 ; N ecaron ; B 40 -15 563 667 ; +C -1 ; WX 600 ; N Ydieresis ; B 12 0 589 761 ; +C -1 ; WX 600 ; N divide ; B 71 16 529 500 ; +C -1 ; WX 600 ; N Yacute ; B 12 0 589 784 ; +C -1 ; WX 600 ; N Acircumflex ; B -9 0 609 780 ; +C -1 ; WX 600 ; N aacute ; B 35 -15 570 661 ; +C -1 ; WX 600 ; N Ucircumflex ; B 4 -18 596 780 ; +C -1 ; WX 600 ; N yacute ; B -4 -142 601 661 ; +C -1 ; WX 600 ; N scommaaccent ; B 68 -250 535 459 ; +C -1 ; WX 600 ; N ecircumflex ; B 40 -15 563 657 ; +C -1 ; WX 600 ; N Uring ; B 4 -18 596 801 ; +C -1 ; WX 600 ; N Udieresis ; B 4 -18 596 761 ; +C -1 ; WX 600 ; N aogonek ; B 35 -199 586 454 ; +C -1 ; WX 600 ; N Uacute ; B 4 -18 596 784 ; +C -1 ; WX 600 ; N uogonek ; B -1 -199 585 439 ; +C -1 ; WX 600 ; N Edieresis ; B 25 0 560 761 ; +C -1 ; WX 600 ; N Dcroat ; B 30 0 594 562 ; +C -1 ; WX 600 ; N commaaccent ; B 205 -250 397 -57 ; +C -1 ; WX 600 ; N copyright ; B 0 -18 600 580 ; +C -1 ; WX 600 ; N Emacron ; B 25 0 560 708 ; +C -1 ; WX 600 ; N ccaron ; B 40 -15 545 667 ; +C -1 ; WX 600 ; N aring ; B 35 -15 570 678 ; +C -1 ; WX 600 ; N Ncommaaccent ; B 8 -250 610 562 ; +C -1 ; WX 600 ; N lacute ; B 77 0 523 801 ; +C -1 ; WX 600 ; N agrave ; B 35 -15 570 661 ; +C -1 ; WX 600 ; N Tcommaaccent ; B 21 -250 579 562 ; +C -1 ; WX 600 ; N Cacute ; B 22 -18 560 784 ; +C -1 ; WX 600 ; N atilde ; B 35 -15 570 636 ; +C -1 ; WX 600 ; N Edotaccent ; B 25 0 560 761 ; +C -1 ; WX 600 ; N scaron ; B 68 -17 535 667 ; +C -1 ; WX 600 ; N scedilla ; B 68 -206 535 459 ; +C -1 ; WX 600 ; N iacute ; B 77 0 523 661 ; +C -1 ; WX 600 ; N lozenge ; B 66 0 534 740 ; +C -1 ; WX 600 ; N Rcaron ; B 24 0 599 790 ; +C -1 ; WX 600 ; N Gcommaaccent ; B 22 -250 594 580 ; +C -1 ; WX 600 ; N ucircumflex ; B -1 -15 569 657 ; +C -1 ; WX 600 ; N acircumflex ; B 35 -15 570 657 ; +C -1 ; WX 600 ; N Amacron ; B -9 0 609 708 ; +C -1 ; WX 600 ; N rcaron ; B 47 0 580 667 ; +C -1 ; WX 600 ; N ccedilla ; B 40 -206 545 459 ; +C -1 ; WX 600 ; N Zdotaccent ; B 62 0 539 761 ; +C -1 ; WX 600 ; N Thorn ; B 48 0 557 562 ; +C -1 ; WX 600 ; N Omacron ; B 22 -18 578 708 ; +C -1 ; WX 600 ; N Racute ; B 24 0 599 784 ; +C -1 ; WX 600 ; N Sacute ; B 47 -22 553 784 ; +C -1 ; WX 600 ; N dcaron ; B 20 -15 727 626 ; +C -1 ; WX 600 ; N Umacron ; B 4 -18 596 708 ; +C -1 ; WX 600 ; N uring ; B -1 -15 569 678 ; +C -1 ; WX 600 ; N threesuperior ; B 138 222 433 616 ; +C -1 ; WX 600 ; N Ograve ; B 22 -18 578 784 ; +C -1 ; WX 600 ; N Agrave ; B -9 0 609 784 ; +C -1 ; WX 600 ; N Abreve ; B -9 0 609 784 ; +C -1 ; WX 600 ; N multiply ; B 81 39 520 478 ; +C -1 ; WX 600 ; N uacute ; B -1 -15 569 661 ; +C -1 ; WX 600 ; N Tcaron ; B 21 0 579 790 ; +C -1 ; WX 600 ; N partialdiff ; B 63 -38 537 728 ; +C -1 ; WX 600 ; N ydieresis ; B -4 -142 601 638 ; +C -1 ; WX 600 ; N Nacute ; B 8 -12 610 784 ; +C -1 ; WX 600 ; N icircumflex ; B 73 0 523 657 ; +C -1 ; WX 600 ; N Ecircumflex ; B 25 0 560 780 ; +C -1 ; WX 600 ; N adieresis ; B 35 -15 570 638 ; +C -1 ; WX 600 ; N edieresis ; B 40 -15 563 638 ; +C -1 ; WX 600 ; N cacute ; B 40 -15 545 661 ; +C -1 ; WX 600 ; N nacute ; B 18 0 592 661 ; +C -1 ; WX 600 ; N umacron ; B -1 -15 569 585 ; +C -1 ; WX 600 ; N Ncaron ; B 8 -12 610 790 ; +C -1 ; WX 600 ; N Iacute ; B 77 0 523 784 ; +C -1 ; WX 600 ; N plusminus ; B 71 24 529 515 ; +C -1 ; WX 600 ; N brokenbar ; B 255 -175 345 675 ; +C -1 ; WX 600 ; N registered ; B 0 -18 600 580 ; +C -1 ; WX 600 ; N Gbreve ; B 22 -18 594 784 ; +C -1 ; WX 600 ; N Idotaccent ; B 77 0 523 761 ; +C -1 ; WX 600 ; N summation ; B 15 -10 586 706 ; +C -1 ; WX 600 ; N Egrave ; B 25 0 560 784 ; +C -1 ; WX 600 ; N racute ; B 47 0 580 661 ; +C -1 ; WX 600 ; N omacron ; B 30 -15 570 585 ; +C -1 ; WX 600 ; N Zacute ; B 62 0 539 784 ; +C -1 ; WX 600 ; N Zcaron ; B 62 0 539 790 ; +C -1 ; WX 600 ; N greaterequal ; B 26 0 523 696 ; +C -1 ; WX 600 ; N Eth ; B 30 0 594 562 ; +C -1 ; WX 600 ; N Ccedilla ; B 22 -206 560 580 ; +C -1 ; WX 600 ; N lcommaaccent ; B 77 -250 523 626 ; +C -1 ; WX 600 ; N tcaron ; B 47 -15 532 703 ; +C -1 ; WX 600 ; N eogonek ; B 40 -199 563 454 ; +C -1 ; WX 600 ; N Uogonek ; B 4 -199 596 562 ; +C -1 ; WX 600 ; N Aacute ; B -9 0 609 784 ; +C -1 ; WX 600 ; N Adieresis ; B -9 0 609 761 ; +C -1 ; WX 600 ; N egrave ; B 40 -15 563 661 ; +C -1 ; WX 600 ; N zacute ; B 81 0 520 661 ; +C -1 ; WX 600 ; N iogonek ; B 77 -199 523 658 ; +C -1 ; WX 600 ; N Oacute ; B 22 -18 578 784 ; +C -1 ; WX 600 ; N oacute ; B 30 -15 570 661 ; +C -1 ; WX 600 ; N amacron ; B 35 -15 570 585 ; +C -1 ; WX 600 ; N sacute ; B 68 -17 535 661 ; +C -1 ; WX 600 ; N idieresis ; B 77 0 523 618 ; +C -1 ; WX 600 ; N Ocircumflex ; B 22 -18 578 780 ; +C -1 ; WX 600 ; N Ugrave ; B 4 -18 596 784 ; +C -1 ; WX 600 ; N Delta ; B 6 0 594 688 ; +C -1 ; WX 600 ; N thorn ; B -14 -142 570 626 ; +C -1 ; WX 600 ; N twosuperior ; B 143 230 436 616 ; +C -1 ; WX 600 ; N Odieresis ; B 22 -18 578 761 ; +C -1 ; WX 600 ; N mu ; B -1 -142 569 439 ; +C -1 ; WX 600 ; N igrave ; B 77 0 523 661 ; +C -1 ; WX 600 ; N ohungarumlaut ; B 30 -15 668 661 ; +C -1 ; WX 600 ; N Eogonek ; B 25 -199 576 562 ; +C -1 ; WX 600 ; N dcroat ; B 20 -15 591 626 ; +C -1 ; WX 600 ; N threequarters ; B -47 -60 648 661 ; +C -1 ; WX 600 ; N Scedilla ; B 47 -206 553 582 ; +C -1 ; WX 600 ; N lcaron ; B 77 0 597 626 ; +C -1 ; WX 600 ; N Kcommaaccent ; B 21 -250 599 562 ; +C -1 ; WX 600 ; N Lacute ; B 39 0 578 784 ; +C -1 ; WX 600 ; N trademark ; B -9 230 749 562 ; +C -1 ; WX 600 ; N edotaccent ; B 40 -15 563 638 ; +C -1 ; WX 600 ; N Igrave ; B 77 0 523 784 ; +C -1 ; WX 600 ; N Imacron ; B 77 0 523 708 ; +C -1 ; WX 600 ; N Lcaron ; B 39 0 637 562 ; +C -1 ; WX 600 ; N onehalf ; B -47 -60 648 661 ; +C -1 ; WX 600 ; N lessequal ; B 26 0 523 696 ; +C -1 ; WX 600 ; N ocircumflex ; B 30 -15 570 657 ; +C -1 ; WX 600 ; N ntilde ; B 18 0 592 636 ; +C -1 ; WX 600 ; N Uhungarumlaut ; B 4 -18 638 784 ; +C -1 ; WX 600 ; N Eacute ; B 25 0 560 784 ; +C -1 ; WX 600 ; N emacron ; B 40 -15 563 585 ; +C -1 ; WX 600 ; N gbreve ; B 30 -146 580 661 ; +C -1 ; WX 600 ; N onequarter ; B -56 -60 656 661 ; +C -1 ; WX 600 ; N Scaron ; B 47 -22 553 790 ; +C -1 ; WX 600 ; N Scommaaccent ; B 47 -250 553 582 ; +C -1 ; WX 600 ; N Ohungarumlaut ; B 22 -18 628 784 ; +C -1 ; WX 600 ; N degree ; B 86 243 474 616 ; +C -1 ; WX 600 ; N ograve ; B 30 -15 570 661 ; +C -1 ; WX 600 ; N Ccaron ; B 22 -18 560 790 ; +C -1 ; WX 600 ; N ugrave ; B -1 -15 569 661 ; +C -1 ; WX 600 ; N radical ; B -19 -104 473 778 ; +C -1 ; WX 600 ; N Dcaron ; B 30 0 594 790 ; +C -1 ; WX 600 ; N rcommaaccent ; B 47 -250 580 454 ; +C -1 ; WX 600 ; N Ntilde ; B 8 -12 610 759 ; +C -1 ; WX 600 ; N otilde ; B 30 -15 570 636 ; +C -1 ; WX 600 ; N Rcommaaccent ; B 24 -250 599 562 ; +C -1 ; WX 600 ; N Lcommaaccent ; B 39 -250 578 562 ; +C -1 ; WX 600 ; N Atilde ; B -9 0 609 759 ; +C -1 ; WX 600 ; N Aogonek ; B -9 -199 625 562 ; +C -1 ; WX 600 ; N Aring ; B -9 0 609 801 ; +C -1 ; WX 600 ; N Otilde ; B 22 -18 578 759 ; +C -1 ; WX 600 ; N zdotaccent ; B 81 0 520 638 ; +C -1 ; WX 600 ; N Ecaron ; B 25 0 560 790 ; +C -1 ; WX 600 ; N Iogonek ; B 77 -199 523 562 ; +C -1 ; WX 600 ; N kcommaaccent ; B 20 -250 585 626 ; +C -1 ; WX 600 ; N minus ; B 71 203 529 313 ; +C -1 ; WX 600 ; N Icircumflex ; B 77 0 523 780 ; +C -1 ; WX 600 ; N ncaron ; B 18 0 592 667 ; +C -1 ; WX 600 ; N tcommaaccent ; B 47 -250 532 562 ; +C -1 ; WX 600 ; N logicalnot ; B 71 103 529 413 ; +C -1 ; WX 600 ; N odieresis ; B 30 -15 570 638 ; +C -1 ; WX 600 ; N udieresis ; B -1 -15 569 638 ; +C -1 ; WX 600 ; N notequal ; B 12 -47 537 563 ; +C -1 ; WX 600 ; N gcommaaccent ; B 30 -146 580 714 ; +C -1 ; WX 600 ; N eth ; B 58 -27 543 626 ; +C -1 ; WX 600 ; N zcaron ; B 81 0 520 667 ; +C -1 ; WX 600 ; N ncommaaccent ; B 18 -250 592 454 ; +C -1 ; WX 600 ; N onesuperior ; B 153 230 447 616 ; +C -1 ; WX 600 ; N imacron ; B 77 0 523 585 ; +C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +EndFontMetrics diff --git a/pyx/data/afm/Courier-BoldOblique.afm b/pyx/data/afm/Courier-BoldOblique.afm new file mode 100644 index 00000000..9f365eec --- /dev/null +++ b/pyx/data/afm/Courier-BoldOblique.afm @@ -0,0 +1,342 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Mon Jun 23 16:28:46 1997 +Comment UniqueID 43049 +Comment VMusage 17529 79244 +FontName Courier-BoldOblique +FullName Courier Bold Oblique +FamilyName Courier +Weight Bold +ItalicAngle -12 +IsFixedPitch true +CharacterSet ExtendedRoman +FontBBox -57 -250 869 801 +UnderlinePosition -100 +UnderlineThickness 50 +Version 003.000 +Notice Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +EncodingScheme AdobeStandardEncoding +CapHeight 562 +XHeight 439 +Ascender 629 +Descender -157 +StdHW 84 +StdVW 106 +StartCharMetrics 315 +C 32 ; WX 600 ; N space ; B 0 0 0 0 ; +C 33 ; WX 600 ; N exclam ; B 215 -15 495 572 ; +C 34 ; WX 600 ; N quotedbl ; B 211 277 585 562 ; +C 35 ; WX 600 ; N numbersign ; B 88 -45 641 651 ; +C 36 ; WX 600 ; N dollar ; B 87 -126 630 666 ; +C 37 ; WX 600 ; N percent ; B 101 -15 625 616 ; +C 38 ; WX 600 ; N ampersand ; B 61 -15 595 543 ; +C 39 ; WX 600 ; N quoteright ; B 229 277 543 562 ; +C 40 ; WX 600 ; N parenleft ; B 265 -102 592 616 ; +C 41 ; WX 600 ; N parenright ; B 117 -102 444 616 ; +C 42 ; WX 600 ; N asterisk ; B 179 219 598 601 ; +C 43 ; WX 600 ; N plus ; B 114 39 596 478 ; +C 44 ; WX 600 ; N comma ; B 99 -111 430 174 ; +C 45 ; WX 600 ; N hyphen ; B 143 203 567 313 ; +C 46 ; WX 600 ; N period ; B 206 -15 427 171 ; +C 47 ; WX 600 ; N slash ; B 90 -77 626 626 ; +C 48 ; WX 600 ; N zero ; B 135 -15 593 616 ; +C 49 ; WX 600 ; N one ; B 93 0 562 616 ; +C 50 ; WX 600 ; N two ; B 61 0 594 616 ; +C 51 ; WX 600 ; N three ; B 71 -15 571 616 ; +C 52 ; WX 600 ; N four ; B 81 0 559 616 ; +C 53 ; WX 600 ; N five ; B 77 -15 621 601 ; +C 54 ; WX 600 ; N six ; B 135 -15 652 616 ; +C 55 ; WX 600 ; N seven ; B 147 0 622 601 ; +C 56 ; WX 600 ; N eight ; B 115 -15 604 616 ; +C 57 ; WX 600 ; N nine ; B 75 -15 592 616 ; +C 58 ; WX 600 ; N colon ; B 205 -15 480 425 ; +C 59 ; WX 600 ; N semicolon ; B 99 -111 481 425 ; +C 60 ; WX 600 ; N less ; B 120 15 613 501 ; +C 61 ; WX 600 ; N equal ; B 96 118 614 398 ; +C 62 ; WX 600 ; N greater ; B 97 15 589 501 ; +C 63 ; WX 600 ; N question ; B 183 -14 592 580 ; +C 64 ; WX 600 ; N at ; B 65 -15 642 616 ; +C 65 ; WX 600 ; N A ; B -9 0 632 562 ; +C 66 ; WX 600 ; N B ; B 30 0 630 562 ; +C 67 ; WX 600 ; N C ; B 74 -18 675 580 ; +C 68 ; WX 600 ; N D ; B 30 0 664 562 ; +C 69 ; WX 600 ; N E ; B 25 0 670 562 ; +C 70 ; WX 600 ; N F ; B 39 0 684 562 ; +C 71 ; WX 600 ; N G ; B 74 -18 675 580 ; +C 72 ; WX 600 ; N H ; B 20 0 700 562 ; +C 73 ; WX 600 ; N I ; B 77 0 643 562 ; +C 74 ; WX 600 ; N J ; B 58 -18 721 562 ; +C 75 ; WX 600 ; N K ; B 21 0 692 562 ; +C 76 ; WX 600 ; N L ; B 39 0 636 562 ; +C 77 ; WX 600 ; N M ; B -2 0 722 562 ; +C 78 ; WX 600 ; N N ; B 8 -12 730 562 ; +C 79 ; WX 600 ; N O ; B 74 -18 645 580 ; +C 80 ; WX 600 ; N P ; B 48 0 643 562 ; +C 81 ; WX 600 ; N Q ; B 83 -138 636 580 ; +C 82 ; WX 600 ; N R ; B 24 0 617 562 ; +C 83 ; WX 600 ; N S ; B 54 -22 673 582 ; +C 84 ; WX 600 ; N T ; B 86 0 679 562 ; +C 85 ; WX 600 ; N U ; B 101 -18 716 562 ; +C 86 ; WX 600 ; N V ; B 84 0 733 562 ; +C 87 ; WX 600 ; N W ; B 79 0 738 562 ; +C 88 ; WX 600 ; N X ; B 12 0 690 562 ; +C 89 ; WX 600 ; N Y ; B 109 0 709 562 ; +C 90 ; WX 600 ; N Z ; B 62 0 637 562 ; +C 91 ; WX 600 ; N bracketleft ; B 223 -102 606 616 ; +C 92 ; WX 600 ; N backslash ; B 222 -77 496 626 ; +C 93 ; WX 600 ; N bracketright ; B 103 -102 486 616 ; +C 94 ; WX 600 ; N asciicircum ; B 171 250 556 616 ; +C 95 ; WX 600 ; N underscore ; B -27 -125 585 -75 ; +C 96 ; WX 600 ; N quoteleft ; B 297 277 487 562 ; +C 97 ; WX 600 ; N a ; B 61 -15 593 454 ; +C 98 ; WX 600 ; N b ; B 13 -15 636 626 ; +C 99 ; WX 600 ; N c ; B 81 -15 631 459 ; +C 100 ; WX 600 ; N d ; B 60 -15 645 626 ; +C 101 ; WX 600 ; N e ; B 81 -15 605 454 ; +C 102 ; WX 600 ; N f ; B 83 0 677 626 ; L i fi ; L l fl ; +C 103 ; WX 600 ; N g ; B 40 -146 674 454 ; +C 104 ; WX 600 ; N h ; B 18 0 615 626 ; +C 105 ; WX 600 ; N i ; B 77 0 546 658 ; +C 106 ; WX 600 ; N j ; B 36 -146 580 658 ; +C 107 ; WX 600 ; N k ; B 33 0 643 626 ; +C 108 ; WX 600 ; N l ; B 77 0 546 626 ; +C 109 ; WX 600 ; N m ; B -22 0 649 454 ; +C 110 ; WX 600 ; N n ; B 18 0 615 454 ; +C 111 ; WX 600 ; N o ; B 71 -15 622 454 ; +C 112 ; WX 600 ; N p ; B -32 -142 622 454 ; +C 113 ; WX 600 ; N q ; B 60 -142 685 454 ; +C 114 ; WX 600 ; N r ; B 47 0 655 454 ; +C 115 ; WX 600 ; N s ; B 66 -17 608 459 ; +C 116 ; WX 600 ; N t ; B 118 -15 567 562 ; +C 117 ; WX 600 ; N u ; B 70 -15 592 439 ; +C 118 ; WX 600 ; N v ; B 70 0 695 439 ; +C 119 ; WX 600 ; N w ; B 53 0 712 439 ; +C 120 ; WX 600 ; N x ; B 6 0 671 439 ; +C 121 ; WX 600 ; N y ; B -21 -142 695 439 ; +C 122 ; WX 600 ; N z ; B 81 0 614 439 ; +C 123 ; WX 600 ; N braceleft ; B 203 -102 595 616 ; +C 124 ; WX 600 ; N bar ; B 201 -250 505 750 ; +C 125 ; WX 600 ; N braceright ; B 114 -102 506 616 ; +C 126 ; WX 600 ; N asciitilde ; B 120 153 590 356 ; +C 161 ; WX 600 ; N exclamdown ; B 196 -146 477 449 ; +C 162 ; WX 600 ; N cent ; B 121 -49 605 614 ; +C 163 ; WX 600 ; N sterling ; B 106 -28 650 611 ; +C 164 ; WX 600 ; N fraction ; B 22 -60 708 661 ; +C 165 ; WX 600 ; N yen ; B 98 0 710 562 ; +C 166 ; WX 600 ; N florin ; B -57 -131 702 616 ; +C 167 ; WX 600 ; N section ; B 74 -70 620 580 ; +C 168 ; WX 600 ; N currency ; B 77 49 644 517 ; +C 169 ; WX 600 ; N quotesingle ; B 303 277 493 562 ; +C 170 ; WX 600 ; N quotedblleft ; B 190 277 594 562 ; +C 171 ; WX 600 ; N guillemotleft ; B 62 70 639 446 ; +C 172 ; WX 600 ; N guilsinglleft ; B 195 70 545 446 ; +C 173 ; WX 600 ; N guilsinglright ; B 165 70 514 446 ; +C 174 ; WX 600 ; N fi ; B 12 0 644 626 ; +C 175 ; WX 600 ; N fl ; B 12 0 644 626 ; +C 177 ; WX 600 ; N endash ; B 108 203 602 313 ; +C 178 ; WX 600 ; N dagger ; B 175 -70 586 580 ; +C 179 ; WX 600 ; N daggerdbl ; B 121 -70 587 580 ; +C 180 ; WX 600 ; N periodcentered ; B 248 165 461 351 ; +C 182 ; WX 600 ; N paragraph ; B 61 -70 700 580 ; +C 183 ; WX 600 ; N bullet ; B 196 132 523 430 ; +C 184 ; WX 600 ; N quotesinglbase ; B 144 -142 458 143 ; +C 185 ; WX 600 ; N quotedblbase ; B 34 -142 560 143 ; +C 186 ; WX 600 ; N quotedblright ; B 119 277 645 562 ; +C 187 ; WX 600 ; N guillemotright ; B 71 70 647 446 ; +C 188 ; WX 600 ; N ellipsis ; B 35 -15 587 116 ; +C 189 ; WX 600 ; N perthousand ; B -45 -15 743 616 ; +C 191 ; WX 600 ; N questiondown ; B 100 -146 509 449 ; +C 193 ; WX 600 ; N grave ; B 272 508 503 661 ; +C 194 ; WX 600 ; N acute ; B 312 508 609 661 ; +C 195 ; WX 600 ; N circumflex ; B 212 483 607 657 ; +C 196 ; WX 600 ; N tilde ; B 199 493 643 636 ; +C 197 ; WX 600 ; N macron ; B 195 505 637 585 ; +C 198 ; WX 600 ; N breve ; B 217 468 652 631 ; +C 199 ; WX 600 ; N dotaccent ; B 348 498 493 638 ; +C 200 ; WX 600 ; N dieresis ; B 246 498 595 638 ; +C 202 ; WX 600 ; N ring ; B 319 481 528 678 ; +C 203 ; WX 600 ; N cedilla ; B 168 -206 368 0 ; +C 205 ; WX 600 ; N hungarumlaut ; B 171 488 729 661 ; +C 206 ; WX 600 ; N ogonek ; B 143 -199 367 0 ; +C 207 ; WX 600 ; N caron ; B 238 493 633 667 ; +C 208 ; WX 600 ; N emdash ; B 33 203 677 313 ; +C 225 ; WX 600 ; N AE ; B -29 0 708 562 ; +C 227 ; WX 600 ; N ordfeminine ; B 188 196 526 580 ; +C 232 ; WX 600 ; N Lslash ; B 39 0 636 562 ; +C 233 ; WX 600 ; N Oslash ; B 48 -22 673 584 ; +C 234 ; WX 600 ; N OE ; B 26 0 701 562 ; +C 235 ; WX 600 ; N ordmasculine ; B 188 196 543 580 ; +C 241 ; WX 600 ; N ae ; B 21 -15 652 454 ; +C 245 ; WX 600 ; N dotlessi ; B 77 0 546 439 ; +C 248 ; WX 600 ; N lslash ; B 77 0 587 626 ; +C 249 ; WX 600 ; N oslash ; B 54 -24 638 463 ; +C 250 ; WX 600 ; N oe ; B 18 -15 662 454 ; +C 251 ; WX 600 ; N germandbls ; B 22 -15 629 626 ; +C -1 ; WX 600 ; N Idieresis ; B 77 0 643 761 ; +C -1 ; WX 600 ; N eacute ; B 81 -15 609 661 ; +C -1 ; WX 600 ; N abreve ; B 61 -15 658 661 ; +C -1 ; WX 600 ; N uhungarumlaut ; B 70 -15 769 661 ; +C -1 ; WX 600 ; N ecaron ; B 81 -15 633 667 ; +C -1 ; WX 600 ; N Ydieresis ; B 109 0 709 761 ; +C -1 ; WX 600 ; N divide ; B 114 16 596 500 ; +C -1 ; WX 600 ; N Yacute ; B 109 0 709 784 ; +C -1 ; WX 600 ; N Acircumflex ; B -9 0 632 780 ; +C -1 ; WX 600 ; N aacute ; B 61 -15 609 661 ; +C -1 ; WX 600 ; N Ucircumflex ; B 101 -18 716 780 ; +C -1 ; WX 600 ; N yacute ; B -21 -142 695 661 ; +C -1 ; WX 600 ; N scommaaccent ; B 66 -250 608 459 ; +C -1 ; WX 600 ; N ecircumflex ; B 81 -15 607 657 ; +C -1 ; WX 600 ; N Uring ; B 101 -18 716 801 ; +C -1 ; WX 600 ; N Udieresis ; B 101 -18 716 761 ; +C -1 ; WX 600 ; N aogonek ; B 61 -199 593 454 ; +C -1 ; WX 600 ; N Uacute ; B 101 -18 716 784 ; +C -1 ; WX 600 ; N uogonek ; B 70 -199 592 439 ; +C -1 ; WX 600 ; N Edieresis ; B 25 0 670 761 ; +C -1 ; WX 600 ; N Dcroat ; B 30 0 664 562 ; +C -1 ; WX 600 ; N commaaccent ; B 151 -250 385 -57 ; +C -1 ; WX 600 ; N copyright ; B 53 -18 667 580 ; +C -1 ; WX 600 ; N Emacron ; B 25 0 670 708 ; +C -1 ; WX 600 ; N ccaron ; B 81 -15 633 667 ; +C -1 ; WX 600 ; N aring ; B 61 -15 593 678 ; +C -1 ; WX 600 ; N Ncommaaccent ; B 8 -250 730 562 ; +C -1 ; WX 600 ; N lacute ; B 77 0 639 801 ; +C -1 ; WX 600 ; N agrave ; B 61 -15 593 661 ; +C -1 ; WX 600 ; N Tcommaaccent ; B 86 -250 679 562 ; +C -1 ; WX 600 ; N Cacute ; B 74 -18 675 784 ; +C -1 ; WX 600 ; N atilde ; B 61 -15 643 636 ; +C -1 ; WX 600 ; N Edotaccent ; B 25 0 670 761 ; +C -1 ; WX 600 ; N scaron ; B 66 -17 633 667 ; +C -1 ; WX 600 ; N scedilla ; B 66 -206 608 459 ; +C -1 ; WX 600 ; N iacute ; B 77 0 609 661 ; +C -1 ; WX 600 ; N lozenge ; B 145 0 614 740 ; +C -1 ; WX 600 ; N Rcaron ; B 24 0 659 790 ; +C -1 ; WX 600 ; N Gcommaaccent ; B 74 -250 675 580 ; +C -1 ; WX 600 ; N ucircumflex ; B 70 -15 597 657 ; +C -1 ; WX 600 ; N acircumflex ; B 61 -15 607 657 ; +C -1 ; WX 600 ; N Amacron ; B -9 0 633 708 ; +C -1 ; WX 600 ; N rcaron ; B 47 0 655 667 ; +C -1 ; WX 600 ; N ccedilla ; B 81 -206 631 459 ; +C -1 ; WX 600 ; N Zdotaccent ; B 62 0 637 761 ; +C -1 ; WX 600 ; N Thorn ; B 48 0 620 562 ; +C -1 ; WX 600 ; N Omacron ; B 74 -18 663 708 ; +C -1 ; WX 600 ; N Racute ; B 24 0 665 784 ; +C -1 ; WX 600 ; N Sacute ; B 54 -22 673 784 ; +C -1 ; WX 600 ; N dcaron ; B 60 -15 861 626 ; +C -1 ; WX 600 ; N Umacron ; B 101 -18 716 708 ; +C -1 ; WX 600 ; N uring ; B 70 -15 592 678 ; +C -1 ; WX 600 ; N threesuperior ; B 193 222 526 616 ; +C -1 ; WX 600 ; N Ograve ; B 74 -18 645 784 ; +C -1 ; WX 600 ; N Agrave ; B -9 0 632 784 ; +C -1 ; WX 600 ; N Abreve ; B -9 0 684 784 ; +C -1 ; WX 600 ; N multiply ; B 104 39 606 478 ; +C -1 ; WX 600 ; N uacute ; B 70 -15 599 661 ; +C -1 ; WX 600 ; N Tcaron ; B 86 0 679 790 ; +C -1 ; WX 600 ; N partialdiff ; B 91 -38 627 728 ; +C -1 ; WX 600 ; N ydieresis ; B -21 -142 695 638 ; +C -1 ; WX 600 ; N Nacute ; B 8 -12 730 784 ; +C -1 ; WX 600 ; N icircumflex ; B 77 0 577 657 ; +C -1 ; WX 600 ; N Ecircumflex ; B 25 0 670 780 ; +C -1 ; WX 600 ; N adieresis ; B 61 -15 595 638 ; +C -1 ; WX 600 ; N edieresis ; B 81 -15 605 638 ; +C -1 ; WX 600 ; N cacute ; B 81 -15 649 661 ; +C -1 ; WX 600 ; N nacute ; B 18 0 639 661 ; +C -1 ; WX 600 ; N umacron ; B 70 -15 637 585 ; +C -1 ; WX 600 ; N Ncaron ; B 8 -12 730 790 ; +C -1 ; WX 600 ; N Iacute ; B 77 0 643 784 ; +C -1 ; WX 600 ; N plusminus ; B 76 24 614 515 ; +C -1 ; WX 600 ; N brokenbar ; B 217 -175 489 675 ; +C -1 ; WX 600 ; N registered ; B 53 -18 667 580 ; +C -1 ; WX 600 ; N Gbreve ; B 74 -18 684 784 ; +C -1 ; WX 600 ; N Idotaccent ; B 77 0 643 761 ; +C -1 ; WX 600 ; N summation ; B 15 -10 672 706 ; +C -1 ; WX 600 ; N Egrave ; B 25 0 670 784 ; +C -1 ; WX 600 ; N racute ; B 47 0 655 661 ; +C -1 ; WX 600 ; N omacron ; B 71 -15 637 585 ; +C -1 ; WX 600 ; N Zacute ; B 62 0 665 784 ; +C -1 ; WX 600 ; N Zcaron ; B 62 0 659 790 ; +C -1 ; WX 600 ; N greaterequal ; B 26 0 627 696 ; +C -1 ; WX 600 ; N Eth ; B 30 0 664 562 ; +C -1 ; WX 600 ; N Ccedilla ; B 74 -206 675 580 ; +C -1 ; WX 600 ; N lcommaaccent ; B 77 -250 546 626 ; +C -1 ; WX 600 ; N tcaron ; B 118 -15 627 703 ; +C -1 ; WX 600 ; N eogonek ; B 81 -199 605 454 ; +C -1 ; WX 600 ; N Uogonek ; B 101 -199 716 562 ; +C -1 ; WX 600 ; N Aacute ; B -9 0 655 784 ; +C -1 ; WX 600 ; N Adieresis ; B -9 0 632 761 ; +C -1 ; WX 600 ; N egrave ; B 81 -15 605 661 ; +C -1 ; WX 600 ; N zacute ; B 81 0 614 661 ; +C -1 ; WX 600 ; N iogonek ; B 77 -199 546 658 ; +C -1 ; WX 600 ; N Oacute ; B 74 -18 645 784 ; +C -1 ; WX 600 ; N oacute ; B 71 -15 649 661 ; +C -1 ; WX 600 ; N amacron ; B 61 -15 637 585 ; +C -1 ; WX 600 ; N sacute ; B 66 -17 609 661 ; +C -1 ; WX 600 ; N idieresis ; B 77 0 561 618 ; +C -1 ; WX 600 ; N Ocircumflex ; B 74 -18 645 780 ; +C -1 ; WX 600 ; N Ugrave ; B 101 -18 716 784 ; +C -1 ; WX 600 ; N Delta ; B 6 0 594 688 ; +C -1 ; WX 600 ; N thorn ; B -32 -142 622 626 ; +C -1 ; WX 600 ; N twosuperior ; B 191 230 542 616 ; +C -1 ; WX 600 ; N Odieresis ; B 74 -18 645 761 ; +C -1 ; WX 600 ; N mu ; B 49 -142 592 439 ; +C -1 ; WX 600 ; N igrave ; B 77 0 546 661 ; +C -1 ; WX 600 ; N ohungarumlaut ; B 71 -15 809 661 ; +C -1 ; WX 600 ; N Eogonek ; B 25 -199 670 562 ; +C -1 ; WX 600 ; N dcroat ; B 60 -15 712 626 ; +C -1 ; WX 600 ; N threequarters ; B 8 -60 699 661 ; +C -1 ; WX 600 ; N Scedilla ; B 54 -206 673 582 ; +C -1 ; WX 600 ; N lcaron ; B 77 0 731 626 ; +C -1 ; WX 600 ; N Kcommaaccent ; B 21 -250 692 562 ; +C -1 ; WX 600 ; N Lacute ; B 39 0 636 784 ; +C -1 ; WX 600 ; N trademark ; B 86 230 869 562 ; +C -1 ; WX 600 ; N edotaccent ; B 81 -15 605 638 ; +C -1 ; WX 600 ; N Igrave ; B 77 0 643 784 ; +C -1 ; WX 600 ; N Imacron ; B 77 0 663 708 ; +C -1 ; WX 600 ; N Lcaron ; B 39 0 757 562 ; +C -1 ; WX 600 ; N onehalf ; B 22 -60 716 661 ; +C -1 ; WX 600 ; N lessequal ; B 26 0 671 696 ; +C -1 ; WX 600 ; N ocircumflex ; B 71 -15 622 657 ; +C -1 ; WX 600 ; N ntilde ; B 18 0 643 636 ; +C -1 ; WX 600 ; N Uhungarumlaut ; B 101 -18 805 784 ; +C -1 ; WX 600 ; N Eacute ; B 25 0 670 784 ; +C -1 ; WX 600 ; N emacron ; B 81 -15 637 585 ; +C -1 ; WX 600 ; N gbreve ; B 40 -146 674 661 ; +C -1 ; WX 600 ; N onequarter ; B 13 -60 707 661 ; +C -1 ; WX 600 ; N Scaron ; B 54 -22 689 790 ; +C -1 ; WX 600 ; N Scommaaccent ; B 54 -250 673 582 ; +C -1 ; WX 600 ; N Ohungarumlaut ; B 74 -18 795 784 ; +C -1 ; WX 600 ; N degree ; B 173 243 570 616 ; +C -1 ; WX 600 ; N ograve ; B 71 -15 622 661 ; +C -1 ; WX 600 ; N Ccaron ; B 74 -18 689 790 ; +C -1 ; WX 600 ; N ugrave ; B 70 -15 592 661 ; +C -1 ; WX 600 ; N radical ; B 67 -104 635 778 ; +C -1 ; WX 600 ; N Dcaron ; B 30 0 664 790 ; +C -1 ; WX 600 ; N rcommaaccent ; B 47 -250 655 454 ; +C -1 ; WX 600 ; N Ntilde ; B 8 -12 730 759 ; +C -1 ; WX 600 ; N otilde ; B 71 -15 643 636 ; +C -1 ; WX 600 ; N Rcommaaccent ; B 24 -250 617 562 ; +C -1 ; WX 600 ; N Lcommaaccent ; B 39 -250 636 562 ; +C -1 ; WX 600 ; N Atilde ; B -9 0 669 759 ; +C -1 ; WX 600 ; N Aogonek ; B -9 -199 632 562 ; +C -1 ; WX 600 ; N Aring ; B -9 0 632 801 ; +C -1 ; WX 600 ; N Otilde ; B 74 -18 669 759 ; +C -1 ; WX 600 ; N zdotaccent ; B 81 0 614 638 ; +C -1 ; WX 600 ; N Ecaron ; B 25 0 670 790 ; +C -1 ; WX 600 ; N Iogonek ; B 77 -199 643 562 ; +C -1 ; WX 600 ; N kcommaaccent ; B 33 -250 643 626 ; +C -1 ; WX 600 ; N minus ; B 114 203 596 313 ; +C -1 ; WX 600 ; N Icircumflex ; B 77 0 643 780 ; +C -1 ; WX 600 ; N ncaron ; B 18 0 633 667 ; +C -1 ; WX 600 ; N tcommaaccent ; B 118 -250 567 562 ; +C -1 ; WX 600 ; N logicalnot ; B 135 103 617 413 ; +C -1 ; WX 600 ; N odieresis ; B 71 -15 622 638 ; +C -1 ; WX 600 ; N udieresis ; B 70 -15 595 638 ; +C -1 ; WX 600 ; N notequal ; B 30 -47 626 563 ; +C -1 ; WX 600 ; N gcommaaccent ; B 40 -146 674 714 ; +C -1 ; WX 600 ; N eth ; B 93 -27 661 626 ; +C -1 ; WX 600 ; N zcaron ; B 81 0 643 667 ; +C -1 ; WX 600 ; N ncommaaccent ; B 18 -250 615 454 ; +C -1 ; WX 600 ; N onesuperior ; B 212 230 514 616 ; +C -1 ; WX 600 ; N imacron ; B 77 0 575 585 ; +C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +EndFontMetrics diff --git a/pyx/data/afm/Courier-Oblique.afm b/pyx/data/afm/Courier-Oblique.afm new file mode 100644 index 00000000..acacb3dd --- /dev/null +++ b/pyx/data/afm/Courier-Oblique.afm @@ -0,0 +1,342 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 17:37:52 1997 +Comment UniqueID 43051 +Comment VMusage 16248 75829 +FontName Courier-Oblique +FullName Courier Oblique +FamilyName Courier +Weight Medium +ItalicAngle -12 +IsFixedPitch true +CharacterSet ExtendedRoman +FontBBox -27 -250 849 805 +UnderlinePosition -100 +UnderlineThickness 50 +Version 003.000 +Notice Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +EncodingScheme AdobeStandardEncoding +CapHeight 562 +XHeight 426 +Ascender 629 +Descender -157 +StdHW 51 +StdVW 51 +StartCharMetrics 315 +C 32 ; WX 600 ; N space ; B 0 0 0 0 ; +C 33 ; WX 600 ; N exclam ; B 243 -15 464 572 ; +C 34 ; WX 600 ; N quotedbl ; B 273 328 532 562 ; +C 35 ; WX 600 ; N numbersign ; B 133 -32 596 639 ; +C 36 ; WX 600 ; N dollar ; B 108 -126 596 662 ; +C 37 ; WX 600 ; N percent ; B 134 -15 599 622 ; +C 38 ; WX 600 ; N ampersand ; B 87 -15 580 543 ; +C 39 ; WX 600 ; N quoteright ; B 283 328 495 562 ; +C 40 ; WX 600 ; N parenleft ; B 313 -108 572 622 ; +C 41 ; WX 600 ; N parenright ; B 137 -108 396 622 ; +C 42 ; WX 600 ; N asterisk ; B 212 257 580 607 ; +C 43 ; WX 600 ; N plus ; B 129 44 580 470 ; +C 44 ; WX 600 ; N comma ; B 157 -112 370 122 ; +C 45 ; WX 600 ; N hyphen ; B 152 231 558 285 ; +C 46 ; WX 600 ; N period ; B 238 -15 382 109 ; +C 47 ; WX 600 ; N slash ; B 112 -80 604 629 ; +C 48 ; WX 600 ; N zero ; B 154 -15 575 622 ; +C 49 ; WX 600 ; N one ; B 98 0 515 622 ; +C 50 ; WX 600 ; N two ; B 70 0 568 622 ; +C 51 ; WX 600 ; N three ; B 82 -15 538 622 ; +C 52 ; WX 600 ; N four ; B 108 0 541 622 ; +C 53 ; WX 600 ; N five ; B 99 -15 589 607 ; +C 54 ; WX 600 ; N six ; B 155 -15 629 622 ; +C 55 ; WX 600 ; N seven ; B 182 0 612 607 ; +C 56 ; WX 600 ; N eight ; B 132 -15 588 622 ; +C 57 ; WX 600 ; N nine ; B 93 -15 574 622 ; +C 58 ; WX 600 ; N colon ; B 238 -15 441 385 ; +C 59 ; WX 600 ; N semicolon ; B 157 -112 441 385 ; +C 60 ; WX 600 ; N less ; B 96 42 610 472 ; +C 61 ; WX 600 ; N equal ; B 109 138 600 376 ; +C 62 ; WX 600 ; N greater ; B 85 42 599 472 ; +C 63 ; WX 600 ; N question ; B 222 -15 583 572 ; +C 64 ; WX 600 ; N at ; B 127 -15 582 622 ; +C 65 ; WX 600 ; N A ; B 3 0 607 562 ; +C 66 ; WX 600 ; N B ; B 43 0 616 562 ; +C 67 ; WX 600 ; N C ; B 93 -18 655 580 ; +C 68 ; WX 600 ; N D ; B 43 0 645 562 ; +C 69 ; WX 600 ; N E ; B 53 0 660 562 ; +C 70 ; WX 600 ; N F ; B 53 0 660 562 ; +C 71 ; WX 600 ; N G ; B 83 -18 645 580 ; +C 72 ; WX 600 ; N H ; B 32 0 687 562 ; +C 73 ; WX 600 ; N I ; B 96 0 623 562 ; +C 74 ; WX 600 ; N J ; B 52 -18 685 562 ; +C 75 ; WX 600 ; N K ; B 38 0 671 562 ; +C 76 ; WX 600 ; N L ; B 47 0 607 562 ; +C 77 ; WX 600 ; N M ; B 4 0 715 562 ; +C 78 ; WX 600 ; N N ; B 7 -13 712 562 ; +C 79 ; WX 600 ; N O ; B 94 -18 625 580 ; +C 80 ; WX 600 ; N P ; B 79 0 644 562 ; +C 81 ; WX 600 ; N Q ; B 95 -138 625 580 ; +C 82 ; WX 600 ; N R ; B 38 0 598 562 ; +C 83 ; WX 600 ; N S ; B 76 -20 650 580 ; +C 84 ; WX 600 ; N T ; B 108 0 665 562 ; +C 85 ; WX 600 ; N U ; B 125 -18 702 562 ; +C 86 ; WX 600 ; N V ; B 105 -13 723 562 ; +C 87 ; WX 600 ; N W ; B 106 -13 722 562 ; +C 88 ; WX 600 ; N X ; B 23 0 675 562 ; +C 89 ; WX 600 ; N Y ; B 133 0 695 562 ; +C 90 ; WX 600 ; N Z ; B 86 0 610 562 ; +C 91 ; WX 600 ; N bracketleft ; B 246 -108 574 622 ; +C 92 ; WX 600 ; N backslash ; B 249 -80 468 629 ; +C 93 ; WX 600 ; N bracketright ; B 135 -108 463 622 ; +C 94 ; WX 600 ; N asciicircum ; B 175 354 587 622 ; +C 95 ; WX 600 ; N underscore ; B -27 -125 584 -75 ; +C 96 ; WX 600 ; N quoteleft ; B 343 328 457 562 ; +C 97 ; WX 600 ; N a ; B 76 -15 569 441 ; +C 98 ; WX 600 ; N b ; B 29 -15 625 629 ; +C 99 ; WX 600 ; N c ; B 106 -15 608 441 ; +C 100 ; WX 600 ; N d ; B 85 -15 640 629 ; +C 101 ; WX 600 ; N e ; B 106 -15 598 441 ; +C 102 ; WX 600 ; N f ; B 114 0 662 629 ; L i fi ; L l fl ; +C 103 ; WX 600 ; N g ; B 61 -157 657 441 ; +C 104 ; WX 600 ; N h ; B 33 0 592 629 ; +C 105 ; WX 600 ; N i ; B 95 0 515 657 ; +C 106 ; WX 600 ; N j ; B 52 -157 550 657 ; +C 107 ; WX 600 ; N k ; B 58 0 633 629 ; +C 108 ; WX 600 ; N l ; B 95 0 515 629 ; +C 109 ; WX 600 ; N m ; B -5 0 615 441 ; +C 110 ; WX 600 ; N n ; B 26 0 585 441 ; +C 111 ; WX 600 ; N o ; B 102 -15 588 441 ; +C 112 ; WX 600 ; N p ; B -24 -157 605 441 ; +C 113 ; WX 600 ; N q ; B 85 -157 682 441 ; +C 114 ; WX 600 ; N r ; B 60 0 636 441 ; +C 115 ; WX 600 ; N s ; B 78 -15 584 441 ; +C 116 ; WX 600 ; N t ; B 167 -15 561 561 ; +C 117 ; WX 600 ; N u ; B 101 -15 572 426 ; +C 118 ; WX 600 ; N v ; B 90 -10 681 426 ; +C 119 ; WX 600 ; N w ; B 76 -10 695 426 ; +C 120 ; WX 600 ; N x ; B 20 0 655 426 ; +C 121 ; WX 600 ; N y ; B -4 -157 683 426 ; +C 122 ; WX 600 ; N z ; B 99 0 593 426 ; +C 123 ; WX 600 ; N braceleft ; B 233 -108 569 622 ; +C 124 ; WX 600 ; N bar ; B 222 -250 485 750 ; +C 125 ; WX 600 ; N braceright ; B 140 -108 477 622 ; +C 126 ; WX 600 ; N asciitilde ; B 116 197 600 320 ; +C 161 ; WX 600 ; N exclamdown ; B 225 -157 445 430 ; +C 162 ; WX 600 ; N cent ; B 151 -49 588 614 ; +C 163 ; WX 600 ; N sterling ; B 124 -21 621 611 ; +C 164 ; WX 600 ; N fraction ; B 84 -57 646 665 ; +C 165 ; WX 600 ; N yen ; B 120 0 693 562 ; +C 166 ; WX 600 ; N florin ; B -26 -143 671 622 ; +C 167 ; WX 600 ; N section ; B 104 -78 590 580 ; +C 168 ; WX 600 ; N currency ; B 94 58 628 506 ; +C 169 ; WX 600 ; N quotesingle ; B 345 328 460 562 ; +C 170 ; WX 600 ; N quotedblleft ; B 262 328 541 562 ; +C 171 ; WX 600 ; N guillemotleft ; B 92 70 652 446 ; +C 172 ; WX 600 ; N guilsinglleft ; B 204 70 540 446 ; +C 173 ; WX 600 ; N guilsinglright ; B 170 70 506 446 ; +C 174 ; WX 600 ; N fi ; B 3 0 619 629 ; +C 175 ; WX 600 ; N fl ; B 3 0 619 629 ; +C 177 ; WX 600 ; N endash ; B 124 231 586 285 ; +C 178 ; WX 600 ; N dagger ; B 217 -78 546 580 ; +C 179 ; WX 600 ; N daggerdbl ; B 163 -78 546 580 ; +C 180 ; WX 600 ; N periodcentered ; B 275 189 434 327 ; +C 182 ; WX 600 ; N paragraph ; B 100 -78 630 562 ; +C 183 ; WX 600 ; N bullet ; B 224 130 485 383 ; +C 184 ; WX 600 ; N quotesinglbase ; B 185 -134 397 100 ; +C 185 ; WX 600 ; N quotedblbase ; B 115 -134 478 100 ; +C 186 ; WX 600 ; N quotedblright ; B 213 328 576 562 ; +C 187 ; WX 600 ; N guillemotright ; B 58 70 618 446 ; +C 188 ; WX 600 ; N ellipsis ; B 46 -15 575 111 ; +C 189 ; WX 600 ; N perthousand ; B 59 -15 627 622 ; +C 191 ; WX 600 ; N questiondown ; B 105 -157 466 430 ; +C 193 ; WX 600 ; N grave ; B 294 497 484 672 ; +C 194 ; WX 600 ; N acute ; B 348 497 612 672 ; +C 195 ; WX 600 ; N circumflex ; B 229 477 581 654 ; +C 196 ; WX 600 ; N tilde ; B 212 489 629 606 ; +C 197 ; WX 600 ; N macron ; B 232 525 600 565 ; +C 198 ; WX 600 ; N breve ; B 279 501 576 609 ; +C 199 ; WX 600 ; N dotaccent ; B 373 537 478 640 ; +C 200 ; WX 600 ; N dieresis ; B 272 537 579 640 ; +C 202 ; WX 600 ; N ring ; B 332 463 500 627 ; +C 203 ; WX 600 ; N cedilla ; B 197 -151 344 10 ; +C 205 ; WX 600 ; N hungarumlaut ; B 239 497 683 672 ; +C 206 ; WX 600 ; N ogonek ; B 189 -172 377 4 ; +C 207 ; WX 600 ; N caron ; B 262 492 614 669 ; +C 208 ; WX 600 ; N emdash ; B 49 231 661 285 ; +C 225 ; WX 600 ; N AE ; B 3 0 655 562 ; +C 227 ; WX 600 ; N ordfeminine ; B 209 249 512 580 ; +C 232 ; WX 600 ; N Lslash ; B 47 0 607 562 ; +C 233 ; WX 600 ; N Oslash ; B 94 -80 625 629 ; +C 234 ; WX 600 ; N OE ; B 59 0 672 562 ; +C 235 ; WX 600 ; N ordmasculine ; B 210 249 535 580 ; +C 241 ; WX 600 ; N ae ; B 41 -15 626 441 ; +C 245 ; WX 600 ; N dotlessi ; B 95 0 515 426 ; +C 248 ; WX 600 ; N lslash ; B 95 0 587 629 ; +C 249 ; WX 600 ; N oslash ; B 102 -80 588 506 ; +C 250 ; WX 600 ; N oe ; B 54 -15 615 441 ; +C 251 ; WX 600 ; N germandbls ; B 48 -15 617 629 ; +C -1 ; WX 600 ; N Idieresis ; B 96 0 623 753 ; +C -1 ; WX 600 ; N eacute ; B 106 -15 612 672 ; +C -1 ; WX 600 ; N abreve ; B 76 -15 576 609 ; +C -1 ; WX 600 ; N uhungarumlaut ; B 101 -15 723 672 ; +C -1 ; WX 600 ; N ecaron ; B 106 -15 614 669 ; +C -1 ; WX 600 ; N Ydieresis ; B 133 0 695 753 ; +C -1 ; WX 600 ; N divide ; B 136 48 573 467 ; +C -1 ; WX 600 ; N Yacute ; B 133 0 695 805 ; +C -1 ; WX 600 ; N Acircumflex ; B 3 0 607 787 ; +C -1 ; WX 600 ; N aacute ; B 76 -15 612 672 ; +C -1 ; WX 600 ; N Ucircumflex ; B 125 -18 702 787 ; +C -1 ; WX 600 ; N yacute ; B -4 -157 683 672 ; +C -1 ; WX 600 ; N scommaaccent ; B 78 -250 584 441 ; +C -1 ; WX 600 ; N ecircumflex ; B 106 -15 598 654 ; +C -1 ; WX 600 ; N Uring ; B 125 -18 702 760 ; +C -1 ; WX 600 ; N Udieresis ; B 125 -18 702 753 ; +C -1 ; WX 600 ; N aogonek ; B 76 -172 569 441 ; +C -1 ; WX 600 ; N Uacute ; B 125 -18 702 805 ; +C -1 ; WX 600 ; N uogonek ; B 101 -172 572 426 ; +C -1 ; WX 600 ; N Edieresis ; B 53 0 660 753 ; +C -1 ; WX 600 ; N Dcroat ; B 43 0 645 562 ; +C -1 ; WX 600 ; N commaaccent ; B 145 -250 323 -58 ; +C -1 ; WX 600 ; N copyright ; B 53 -18 667 580 ; +C -1 ; WX 600 ; N Emacron ; B 53 0 660 698 ; +C -1 ; WX 600 ; N ccaron ; B 106 -15 614 669 ; +C -1 ; WX 600 ; N aring ; B 76 -15 569 627 ; +C -1 ; WX 600 ; N Ncommaaccent ; B 7 -250 712 562 ; +C -1 ; WX 600 ; N lacute ; B 95 0 640 805 ; +C -1 ; WX 600 ; N agrave ; B 76 -15 569 672 ; +C -1 ; WX 600 ; N Tcommaaccent ; B 108 -250 665 562 ; +C -1 ; WX 600 ; N Cacute ; B 93 -18 655 805 ; +C -1 ; WX 600 ; N atilde ; B 76 -15 629 606 ; +C -1 ; WX 600 ; N Edotaccent ; B 53 0 660 753 ; +C -1 ; WX 600 ; N scaron ; B 78 -15 614 669 ; +C -1 ; WX 600 ; N scedilla ; B 78 -151 584 441 ; +C -1 ; WX 600 ; N iacute ; B 95 0 612 672 ; +C -1 ; WX 600 ; N lozenge ; B 94 0 519 706 ; +C -1 ; WX 600 ; N Rcaron ; B 38 0 642 802 ; +C -1 ; WX 600 ; N Gcommaaccent ; B 83 -250 645 580 ; +C -1 ; WX 600 ; N ucircumflex ; B 101 -15 572 654 ; +C -1 ; WX 600 ; N acircumflex ; B 76 -15 581 654 ; +C -1 ; WX 600 ; N Amacron ; B 3 0 607 698 ; +C -1 ; WX 600 ; N rcaron ; B 60 0 636 669 ; +C -1 ; WX 600 ; N ccedilla ; B 106 -151 614 441 ; +C -1 ; WX 600 ; N Zdotaccent ; B 86 0 610 753 ; +C -1 ; WX 600 ; N Thorn ; B 79 0 606 562 ; +C -1 ; WX 600 ; N Omacron ; B 94 -18 628 698 ; +C -1 ; WX 600 ; N Racute ; B 38 0 670 805 ; +C -1 ; WX 600 ; N Sacute ; B 76 -20 650 805 ; +C -1 ; WX 600 ; N dcaron ; B 85 -15 849 629 ; +C -1 ; WX 600 ; N Umacron ; B 125 -18 702 698 ; +C -1 ; WX 600 ; N uring ; B 101 -15 572 627 ; +C -1 ; WX 600 ; N threesuperior ; B 213 240 501 622 ; +C -1 ; WX 600 ; N Ograve ; B 94 -18 625 805 ; +C -1 ; WX 600 ; N Agrave ; B 3 0 607 805 ; +C -1 ; WX 600 ; N Abreve ; B 3 0 607 732 ; +C -1 ; WX 600 ; N multiply ; B 103 43 607 470 ; +C -1 ; WX 600 ; N uacute ; B 101 -15 602 672 ; +C -1 ; WX 600 ; N Tcaron ; B 108 0 665 802 ; +C -1 ; WX 600 ; N partialdiff ; B 45 -38 546 710 ; +C -1 ; WX 600 ; N ydieresis ; B -4 -157 683 620 ; +C -1 ; WX 600 ; N Nacute ; B 7 -13 712 805 ; +C -1 ; WX 600 ; N icircumflex ; B 95 0 551 654 ; +C -1 ; WX 600 ; N Ecircumflex ; B 53 0 660 787 ; +C -1 ; WX 600 ; N adieresis ; B 76 -15 575 620 ; +C -1 ; WX 600 ; N edieresis ; B 106 -15 598 620 ; +C -1 ; WX 600 ; N cacute ; B 106 -15 612 672 ; +C -1 ; WX 600 ; N nacute ; B 26 0 602 672 ; +C -1 ; WX 600 ; N umacron ; B 101 -15 600 565 ; +C -1 ; WX 600 ; N Ncaron ; B 7 -13 712 802 ; +C -1 ; WX 600 ; N Iacute ; B 96 0 640 805 ; +C -1 ; WX 600 ; N plusminus ; B 96 44 594 558 ; +C -1 ; WX 600 ; N brokenbar ; B 238 -175 469 675 ; +C -1 ; WX 600 ; N registered ; B 53 -18 667 580 ; +C -1 ; WX 600 ; N Gbreve ; B 83 -18 645 732 ; +C -1 ; WX 600 ; N Idotaccent ; B 96 0 623 753 ; +C -1 ; WX 600 ; N summation ; B 15 -10 670 706 ; +C -1 ; WX 600 ; N Egrave ; B 53 0 660 805 ; +C -1 ; WX 600 ; N racute ; B 60 0 636 672 ; +C -1 ; WX 600 ; N omacron ; B 102 -15 600 565 ; +C -1 ; WX 600 ; N Zacute ; B 86 0 670 805 ; +C -1 ; WX 600 ; N Zcaron ; B 86 0 642 802 ; +C -1 ; WX 600 ; N greaterequal ; B 98 0 594 710 ; +C -1 ; WX 600 ; N Eth ; B 43 0 645 562 ; +C -1 ; WX 600 ; N Ccedilla ; B 93 -151 658 580 ; +C -1 ; WX 600 ; N lcommaaccent ; B 95 -250 515 629 ; +C -1 ; WX 600 ; N tcaron ; B 167 -15 587 717 ; +C -1 ; WX 600 ; N eogonek ; B 106 -172 598 441 ; +C -1 ; WX 600 ; N Uogonek ; B 124 -172 702 562 ; +C -1 ; WX 600 ; N Aacute ; B 3 0 660 805 ; +C -1 ; WX 600 ; N Adieresis ; B 3 0 607 753 ; +C -1 ; WX 600 ; N egrave ; B 106 -15 598 672 ; +C -1 ; WX 600 ; N zacute ; B 99 0 612 672 ; +C -1 ; WX 600 ; N iogonek ; B 95 -172 515 657 ; +C -1 ; WX 600 ; N Oacute ; B 94 -18 640 805 ; +C -1 ; WX 600 ; N oacute ; B 102 -15 612 672 ; +C -1 ; WX 600 ; N amacron ; B 76 -15 600 565 ; +C -1 ; WX 600 ; N sacute ; B 78 -15 612 672 ; +C -1 ; WX 600 ; N idieresis ; B 95 0 545 620 ; +C -1 ; WX 600 ; N Ocircumflex ; B 94 -18 625 787 ; +C -1 ; WX 600 ; N Ugrave ; B 125 -18 702 805 ; +C -1 ; WX 600 ; N Delta ; B 6 0 598 688 ; +C -1 ; WX 600 ; N thorn ; B -24 -157 605 629 ; +C -1 ; WX 600 ; N twosuperior ; B 230 249 535 622 ; +C -1 ; WX 600 ; N Odieresis ; B 94 -18 625 753 ; +C -1 ; WX 600 ; N mu ; B 72 -157 572 426 ; +C -1 ; WX 600 ; N igrave ; B 95 0 515 672 ; +C -1 ; WX 600 ; N ohungarumlaut ; B 102 -15 723 672 ; +C -1 ; WX 600 ; N Eogonek ; B 53 -172 660 562 ; +C -1 ; WX 600 ; N dcroat ; B 85 -15 704 629 ; +C -1 ; WX 600 ; N threequarters ; B 73 -56 659 666 ; +C -1 ; WX 600 ; N Scedilla ; B 76 -151 650 580 ; +C -1 ; WX 600 ; N lcaron ; B 95 0 667 629 ; +C -1 ; WX 600 ; N Kcommaaccent ; B 38 -250 671 562 ; +C -1 ; WX 600 ; N Lacute ; B 47 0 607 805 ; +C -1 ; WX 600 ; N trademark ; B 75 263 742 562 ; +C -1 ; WX 600 ; N edotaccent ; B 106 -15 598 620 ; +C -1 ; WX 600 ; N Igrave ; B 96 0 623 805 ; +C -1 ; WX 600 ; N Imacron ; B 96 0 628 698 ; +C -1 ; WX 600 ; N Lcaron ; B 47 0 632 562 ; +C -1 ; WX 600 ; N onehalf ; B 65 -57 669 665 ; +C -1 ; WX 600 ; N lessequal ; B 98 0 645 710 ; +C -1 ; WX 600 ; N ocircumflex ; B 102 -15 588 654 ; +C -1 ; WX 600 ; N ntilde ; B 26 0 629 606 ; +C -1 ; WX 600 ; N Uhungarumlaut ; B 125 -18 761 805 ; +C -1 ; WX 600 ; N Eacute ; B 53 0 670 805 ; +C -1 ; WX 600 ; N emacron ; B 106 -15 600 565 ; +C -1 ; WX 600 ; N gbreve ; B 61 -157 657 609 ; +C -1 ; WX 600 ; N onequarter ; B 65 -57 674 665 ; +C -1 ; WX 600 ; N Scaron ; B 76 -20 672 802 ; +C -1 ; WX 600 ; N Scommaaccent ; B 76 -250 650 580 ; +C -1 ; WX 600 ; N Ohungarumlaut ; B 94 -18 751 805 ; +C -1 ; WX 600 ; N degree ; B 214 269 576 622 ; +C -1 ; WX 600 ; N ograve ; B 102 -15 588 672 ; +C -1 ; WX 600 ; N Ccaron ; B 93 -18 672 802 ; +C -1 ; WX 600 ; N ugrave ; B 101 -15 572 672 ; +C -1 ; WX 600 ; N radical ; B 85 -15 765 792 ; +C -1 ; WX 600 ; N Dcaron ; B 43 0 645 802 ; +C -1 ; WX 600 ; N rcommaaccent ; B 60 -250 636 441 ; +C -1 ; WX 600 ; N Ntilde ; B 7 -13 712 729 ; +C -1 ; WX 600 ; N otilde ; B 102 -15 629 606 ; +C -1 ; WX 600 ; N Rcommaaccent ; B 38 -250 598 562 ; +C -1 ; WX 600 ; N Lcommaaccent ; B 47 -250 607 562 ; +C -1 ; WX 600 ; N Atilde ; B 3 0 655 729 ; +C -1 ; WX 600 ; N Aogonek ; B 3 -172 607 562 ; +C -1 ; WX 600 ; N Aring ; B 3 0 607 750 ; +C -1 ; WX 600 ; N Otilde ; B 94 -18 655 729 ; +C -1 ; WX 600 ; N zdotaccent ; B 99 0 593 620 ; +C -1 ; WX 600 ; N Ecaron ; B 53 0 660 802 ; +C -1 ; WX 600 ; N Iogonek ; B 96 -172 623 562 ; +C -1 ; WX 600 ; N kcommaaccent ; B 58 -250 633 629 ; +C -1 ; WX 600 ; N minus ; B 129 232 580 283 ; +C -1 ; WX 600 ; N Icircumflex ; B 96 0 623 787 ; +C -1 ; WX 600 ; N ncaron ; B 26 0 614 669 ; +C -1 ; WX 600 ; N tcommaaccent ; B 165 -250 561 561 ; +C -1 ; WX 600 ; N logicalnot ; B 155 108 591 369 ; +C -1 ; WX 600 ; N odieresis ; B 102 -15 588 620 ; +C -1 ; WX 600 ; N udieresis ; B 101 -15 575 620 ; +C -1 ; WX 600 ; N notequal ; B 43 -16 621 529 ; +C -1 ; WX 600 ; N gcommaaccent ; B 61 -157 657 708 ; +C -1 ; WX 600 ; N eth ; B 102 -15 639 629 ; +C -1 ; WX 600 ; N zcaron ; B 99 0 624 669 ; +C -1 ; WX 600 ; N ncommaaccent ; B 26 -250 585 441 ; +C -1 ; WX 600 ; N onesuperior ; B 231 249 491 622 ; +C -1 ; WX 600 ; N imacron ; B 95 0 543 565 ; +C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +EndFontMetrics diff --git a/pyx/data/afm/Courier.afm b/pyx/data/afm/Courier.afm new file mode 100644 index 00000000..be84b6b9 --- /dev/null +++ b/pyx/data/afm/Courier.afm @@ -0,0 +1,342 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 17:27:09 1997 +Comment UniqueID 43050 +Comment VMusage 39754 50779 +FontName Courier +FullName Courier +FamilyName Courier +Weight Medium +ItalicAngle 0 +IsFixedPitch true +CharacterSet ExtendedRoman +FontBBox -23 -250 715 805 +UnderlinePosition -100 +UnderlineThickness 50 +Version 003.000 +Notice Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +EncodingScheme AdobeStandardEncoding +CapHeight 562 +XHeight 426 +Ascender 629 +Descender -157 +StdHW 51 +StdVW 51 +StartCharMetrics 315 +C 32 ; WX 600 ; N space ; B 0 0 0 0 ; +C 33 ; WX 600 ; N exclam ; B 236 -15 364 572 ; +C 34 ; WX 600 ; N quotedbl ; B 187 328 413 562 ; +C 35 ; WX 600 ; N numbersign ; B 93 -32 507 639 ; +C 36 ; WX 600 ; N dollar ; B 105 -126 496 662 ; +C 37 ; WX 600 ; N percent ; B 81 -15 518 622 ; +C 38 ; WX 600 ; N ampersand ; B 63 -15 538 543 ; +C 39 ; WX 600 ; N quoteright ; B 213 328 376 562 ; +C 40 ; WX 600 ; N parenleft ; B 269 -108 440 622 ; +C 41 ; WX 600 ; N parenright ; B 160 -108 331 622 ; +C 42 ; WX 600 ; N asterisk ; B 116 257 484 607 ; +C 43 ; WX 600 ; N plus ; B 80 44 520 470 ; +C 44 ; WX 600 ; N comma ; B 181 -112 344 122 ; +C 45 ; WX 600 ; N hyphen ; B 103 231 497 285 ; +C 46 ; WX 600 ; N period ; B 229 -15 371 109 ; +C 47 ; WX 600 ; N slash ; B 125 -80 475 629 ; +C 48 ; WX 600 ; N zero ; B 106 -15 494 622 ; +C 49 ; WX 600 ; N one ; B 96 0 505 622 ; +C 50 ; WX 600 ; N two ; B 70 0 471 622 ; +C 51 ; WX 600 ; N three ; B 75 -15 466 622 ; +C 52 ; WX 600 ; N four ; B 78 0 500 622 ; +C 53 ; WX 600 ; N five ; B 92 -15 497 607 ; +C 54 ; WX 600 ; N six ; B 111 -15 497 622 ; +C 55 ; WX 600 ; N seven ; B 82 0 483 607 ; +C 56 ; WX 600 ; N eight ; B 102 -15 498 622 ; +C 57 ; WX 600 ; N nine ; B 96 -15 489 622 ; +C 58 ; WX 600 ; N colon ; B 229 -15 371 385 ; +C 59 ; WX 600 ; N semicolon ; B 181 -112 371 385 ; +C 60 ; WX 600 ; N less ; B 41 42 519 472 ; +C 61 ; WX 600 ; N equal ; B 80 138 520 376 ; +C 62 ; WX 600 ; N greater ; B 66 42 544 472 ; +C 63 ; WX 600 ; N question ; B 129 -15 492 572 ; +C 64 ; WX 600 ; N at ; B 77 -15 533 622 ; +C 65 ; WX 600 ; N A ; B 3 0 597 562 ; +C 66 ; WX 600 ; N B ; B 43 0 559 562 ; +C 67 ; WX 600 ; N C ; B 41 -18 540 580 ; +C 68 ; WX 600 ; N D ; B 43 0 574 562 ; +C 69 ; WX 600 ; N E ; B 53 0 550 562 ; +C 70 ; WX 600 ; N F ; B 53 0 545 562 ; +C 71 ; WX 600 ; N G ; B 31 -18 575 580 ; +C 72 ; WX 600 ; N H ; B 32 0 568 562 ; +C 73 ; WX 600 ; N I ; B 96 0 504 562 ; +C 74 ; WX 600 ; N J ; B 34 -18 566 562 ; +C 75 ; WX 600 ; N K ; B 38 0 582 562 ; +C 76 ; WX 600 ; N L ; B 47 0 554 562 ; +C 77 ; WX 600 ; N M ; B 4 0 596 562 ; +C 78 ; WX 600 ; N N ; B 7 -13 593 562 ; +C 79 ; WX 600 ; N O ; B 43 -18 557 580 ; +C 80 ; WX 600 ; N P ; B 79 0 558 562 ; +C 81 ; WX 600 ; N Q ; B 43 -138 557 580 ; +C 82 ; WX 600 ; N R ; B 38 0 588 562 ; +C 83 ; WX 600 ; N S ; B 72 -20 529 580 ; +C 84 ; WX 600 ; N T ; B 38 0 563 562 ; +C 85 ; WX 600 ; N U ; B 17 -18 583 562 ; +C 86 ; WX 600 ; N V ; B -4 -13 604 562 ; +C 87 ; WX 600 ; N W ; B -3 -13 603 562 ; +C 88 ; WX 600 ; N X ; B 23 0 577 562 ; +C 89 ; WX 600 ; N Y ; B 24 0 576 562 ; +C 90 ; WX 600 ; N Z ; B 86 0 514 562 ; +C 91 ; WX 600 ; N bracketleft ; B 269 -108 442 622 ; +C 92 ; WX 600 ; N backslash ; B 118 -80 482 629 ; +C 93 ; WX 600 ; N bracketright ; B 158 -108 331 622 ; +C 94 ; WX 600 ; N asciicircum ; B 94 354 506 622 ; +C 95 ; WX 600 ; N underscore ; B 0 -125 600 -75 ; +C 96 ; WX 600 ; N quoteleft ; B 224 328 387 562 ; +C 97 ; WX 600 ; N a ; B 53 -15 559 441 ; +C 98 ; WX 600 ; N b ; B 14 -15 575 629 ; +C 99 ; WX 600 ; N c ; B 66 -15 529 441 ; +C 100 ; WX 600 ; N d ; B 45 -15 591 629 ; +C 101 ; WX 600 ; N e ; B 66 -15 548 441 ; +C 102 ; WX 600 ; N f ; B 114 0 531 629 ; L i fi ; L l fl ; +C 103 ; WX 600 ; N g ; B 45 -157 566 441 ; +C 104 ; WX 600 ; N h ; B 18 0 582 629 ; +C 105 ; WX 600 ; N i ; B 95 0 505 657 ; +C 106 ; WX 600 ; N j ; B 82 -157 410 657 ; +C 107 ; WX 600 ; N k ; B 43 0 580 629 ; +C 108 ; WX 600 ; N l ; B 95 0 505 629 ; +C 109 ; WX 600 ; N m ; B -5 0 605 441 ; +C 110 ; WX 600 ; N n ; B 26 0 575 441 ; +C 111 ; WX 600 ; N o ; B 62 -15 538 441 ; +C 112 ; WX 600 ; N p ; B 9 -157 555 441 ; +C 113 ; WX 600 ; N q ; B 45 -157 591 441 ; +C 114 ; WX 600 ; N r ; B 60 0 559 441 ; +C 115 ; WX 600 ; N s ; B 80 -15 513 441 ; +C 116 ; WX 600 ; N t ; B 87 -15 530 561 ; +C 117 ; WX 600 ; N u ; B 21 -15 562 426 ; +C 118 ; WX 600 ; N v ; B 10 -10 590 426 ; +C 119 ; WX 600 ; N w ; B -4 -10 604 426 ; +C 120 ; WX 600 ; N x ; B 20 0 580 426 ; +C 121 ; WX 600 ; N y ; B 7 -157 592 426 ; +C 122 ; WX 600 ; N z ; B 99 0 502 426 ; +C 123 ; WX 600 ; N braceleft ; B 182 -108 437 622 ; +C 124 ; WX 600 ; N bar ; B 275 -250 326 750 ; +C 125 ; WX 600 ; N braceright ; B 163 -108 418 622 ; +C 126 ; WX 600 ; N asciitilde ; B 63 197 540 320 ; +C 161 ; WX 600 ; N exclamdown ; B 236 -157 364 430 ; +C 162 ; WX 600 ; N cent ; B 96 -49 500 614 ; +C 163 ; WX 600 ; N sterling ; B 84 -21 521 611 ; +C 164 ; WX 600 ; N fraction ; B 92 -57 509 665 ; +C 165 ; WX 600 ; N yen ; B 26 0 574 562 ; +C 166 ; WX 600 ; N florin ; B 4 -143 539 622 ; +C 167 ; WX 600 ; N section ; B 113 -78 488 580 ; +C 168 ; WX 600 ; N currency ; B 73 58 527 506 ; +C 169 ; WX 600 ; N quotesingle ; B 259 328 341 562 ; +C 170 ; WX 600 ; N quotedblleft ; B 143 328 471 562 ; +C 171 ; WX 600 ; N guillemotleft ; B 37 70 563 446 ; +C 172 ; WX 600 ; N guilsinglleft ; B 149 70 451 446 ; +C 173 ; WX 600 ; N guilsinglright ; B 149 70 451 446 ; +C 174 ; WX 600 ; N fi ; B 3 0 597 629 ; +C 175 ; WX 600 ; N fl ; B 3 0 597 629 ; +C 177 ; WX 600 ; N endash ; B 75 231 525 285 ; +C 178 ; WX 600 ; N dagger ; B 141 -78 459 580 ; +C 179 ; WX 600 ; N daggerdbl ; B 141 -78 459 580 ; +C 180 ; WX 600 ; N periodcentered ; B 222 189 378 327 ; +C 182 ; WX 600 ; N paragraph ; B 50 -78 511 562 ; +C 183 ; WX 600 ; N bullet ; B 172 130 428 383 ; +C 184 ; WX 600 ; N quotesinglbase ; B 213 -134 376 100 ; +C 185 ; WX 600 ; N quotedblbase ; B 143 -134 457 100 ; +C 186 ; WX 600 ; N quotedblright ; B 143 328 457 562 ; +C 187 ; WX 600 ; N guillemotright ; B 37 70 563 446 ; +C 188 ; WX 600 ; N ellipsis ; B 37 -15 563 111 ; +C 189 ; WX 600 ; N perthousand ; B 3 -15 600 622 ; +C 191 ; WX 600 ; N questiondown ; B 108 -157 471 430 ; +C 193 ; WX 600 ; N grave ; B 151 497 378 672 ; +C 194 ; WX 600 ; N acute ; B 242 497 469 672 ; +C 195 ; WX 600 ; N circumflex ; B 124 477 476 654 ; +C 196 ; WX 600 ; N tilde ; B 105 489 503 606 ; +C 197 ; WX 600 ; N macron ; B 120 525 480 565 ; +C 198 ; WX 600 ; N breve ; B 153 501 447 609 ; +C 199 ; WX 600 ; N dotaccent ; B 249 537 352 640 ; +C 200 ; WX 600 ; N dieresis ; B 148 537 453 640 ; +C 202 ; WX 600 ; N ring ; B 218 463 382 627 ; +C 203 ; WX 600 ; N cedilla ; B 224 -151 362 10 ; +C 205 ; WX 600 ; N hungarumlaut ; B 133 497 540 672 ; +C 206 ; WX 600 ; N ogonek ; B 211 -172 407 4 ; +C 207 ; WX 600 ; N caron ; B 124 492 476 669 ; +C 208 ; WX 600 ; N emdash ; B 0 231 600 285 ; +C 225 ; WX 600 ; N AE ; B 3 0 550 562 ; +C 227 ; WX 600 ; N ordfeminine ; B 156 249 442 580 ; +C 232 ; WX 600 ; N Lslash ; B 47 0 554 562 ; +C 233 ; WX 600 ; N Oslash ; B 43 -80 557 629 ; +C 234 ; WX 600 ; N OE ; B 7 0 567 562 ; +C 235 ; WX 600 ; N ordmasculine ; B 157 249 443 580 ; +C 241 ; WX 600 ; N ae ; B 19 -15 570 441 ; +C 245 ; WX 600 ; N dotlessi ; B 95 0 505 426 ; +C 248 ; WX 600 ; N lslash ; B 95 0 505 629 ; +C 249 ; WX 600 ; N oslash ; B 62 -80 538 506 ; +C 250 ; WX 600 ; N oe ; B 19 -15 559 441 ; +C 251 ; WX 600 ; N germandbls ; B 48 -15 588 629 ; +C -1 ; WX 600 ; N Idieresis ; B 96 0 504 753 ; +C -1 ; WX 600 ; N eacute ; B 66 -15 548 672 ; +C -1 ; WX 600 ; N abreve ; B 53 -15 559 609 ; +C -1 ; WX 600 ; N uhungarumlaut ; B 21 -15 580 672 ; +C -1 ; WX 600 ; N ecaron ; B 66 -15 548 669 ; +C -1 ; WX 600 ; N Ydieresis ; B 24 0 576 753 ; +C -1 ; WX 600 ; N divide ; B 87 48 513 467 ; +C -1 ; WX 600 ; N Yacute ; B 24 0 576 805 ; +C -1 ; WX 600 ; N Acircumflex ; B 3 0 597 787 ; +C -1 ; WX 600 ; N aacute ; B 53 -15 559 672 ; +C -1 ; WX 600 ; N Ucircumflex ; B 17 -18 583 787 ; +C -1 ; WX 600 ; N yacute ; B 7 -157 592 672 ; +C -1 ; WX 600 ; N scommaaccent ; B 80 -250 513 441 ; +C -1 ; WX 600 ; N ecircumflex ; B 66 -15 548 654 ; +C -1 ; WX 600 ; N Uring ; B 17 -18 583 760 ; +C -1 ; WX 600 ; N Udieresis ; B 17 -18 583 753 ; +C -1 ; WX 600 ; N aogonek ; B 53 -172 587 441 ; +C -1 ; WX 600 ; N Uacute ; B 17 -18 583 805 ; +C -1 ; WX 600 ; N uogonek ; B 21 -172 590 426 ; +C -1 ; WX 600 ; N Edieresis ; B 53 0 550 753 ; +C -1 ; WX 600 ; N Dcroat ; B 30 0 574 562 ; +C -1 ; WX 600 ; N commaaccent ; B 198 -250 335 -58 ; +C -1 ; WX 600 ; N copyright ; B 0 -18 600 580 ; +C -1 ; WX 600 ; N Emacron ; B 53 0 550 698 ; +C -1 ; WX 600 ; N ccaron ; B 66 -15 529 669 ; +C -1 ; WX 600 ; N aring ; B 53 -15 559 627 ; +C -1 ; WX 600 ; N Ncommaaccent ; B 7 -250 593 562 ; +C -1 ; WX 600 ; N lacute ; B 95 0 505 805 ; +C -1 ; WX 600 ; N agrave ; B 53 -15 559 672 ; +C -1 ; WX 600 ; N Tcommaaccent ; B 38 -250 563 562 ; +C -1 ; WX 600 ; N Cacute ; B 41 -18 540 805 ; +C -1 ; WX 600 ; N atilde ; B 53 -15 559 606 ; +C -1 ; WX 600 ; N Edotaccent ; B 53 0 550 753 ; +C -1 ; WX 600 ; N scaron ; B 80 -15 513 669 ; +C -1 ; WX 600 ; N scedilla ; B 80 -151 513 441 ; +C -1 ; WX 600 ; N iacute ; B 95 0 505 672 ; +C -1 ; WX 600 ; N lozenge ; B 18 0 443 706 ; +C -1 ; WX 600 ; N Rcaron ; B 38 0 588 802 ; +C -1 ; WX 600 ; N Gcommaaccent ; B 31 -250 575 580 ; +C -1 ; WX 600 ; N ucircumflex ; B 21 -15 562 654 ; +C -1 ; WX 600 ; N acircumflex ; B 53 -15 559 654 ; +C -1 ; WX 600 ; N Amacron ; B 3 0 597 698 ; +C -1 ; WX 600 ; N rcaron ; B 60 0 559 669 ; +C -1 ; WX 600 ; N ccedilla ; B 66 -151 529 441 ; +C -1 ; WX 600 ; N Zdotaccent ; B 86 0 514 753 ; +C -1 ; WX 600 ; N Thorn ; B 79 0 538 562 ; +C -1 ; WX 600 ; N Omacron ; B 43 -18 557 698 ; +C -1 ; WX 600 ; N Racute ; B 38 0 588 805 ; +C -1 ; WX 600 ; N Sacute ; B 72 -20 529 805 ; +C -1 ; WX 600 ; N dcaron ; B 45 -15 715 629 ; +C -1 ; WX 600 ; N Umacron ; B 17 -18 583 698 ; +C -1 ; WX 600 ; N uring ; B 21 -15 562 627 ; +C -1 ; WX 600 ; N threesuperior ; B 155 240 406 622 ; +C -1 ; WX 600 ; N Ograve ; B 43 -18 557 805 ; +C -1 ; WX 600 ; N Agrave ; B 3 0 597 805 ; +C -1 ; WX 600 ; N Abreve ; B 3 0 597 732 ; +C -1 ; WX 600 ; N multiply ; B 87 43 515 470 ; +C -1 ; WX 600 ; N uacute ; B 21 -15 562 672 ; +C -1 ; WX 600 ; N Tcaron ; B 38 0 563 802 ; +C -1 ; WX 600 ; N partialdiff ; B 17 -38 459 710 ; +C -1 ; WX 600 ; N ydieresis ; B 7 -157 592 620 ; +C -1 ; WX 600 ; N Nacute ; B 7 -13 593 805 ; +C -1 ; WX 600 ; N icircumflex ; B 94 0 505 654 ; +C -1 ; WX 600 ; N Ecircumflex ; B 53 0 550 787 ; +C -1 ; WX 600 ; N adieresis ; B 53 -15 559 620 ; +C -1 ; WX 600 ; N edieresis ; B 66 -15 548 620 ; +C -1 ; WX 600 ; N cacute ; B 66 -15 529 672 ; +C -1 ; WX 600 ; N nacute ; B 26 0 575 672 ; +C -1 ; WX 600 ; N umacron ; B 21 -15 562 565 ; +C -1 ; WX 600 ; N Ncaron ; B 7 -13 593 802 ; +C -1 ; WX 600 ; N Iacute ; B 96 0 504 805 ; +C -1 ; WX 600 ; N plusminus ; B 87 44 513 558 ; +C -1 ; WX 600 ; N brokenbar ; B 275 -175 326 675 ; +C -1 ; WX 600 ; N registered ; B 0 -18 600 580 ; +C -1 ; WX 600 ; N Gbreve ; B 31 -18 575 732 ; +C -1 ; WX 600 ; N Idotaccent ; B 96 0 504 753 ; +C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ; +C -1 ; WX 600 ; N Egrave ; B 53 0 550 805 ; +C -1 ; WX 600 ; N racute ; B 60 0 559 672 ; +C -1 ; WX 600 ; N omacron ; B 62 -15 538 565 ; +C -1 ; WX 600 ; N Zacute ; B 86 0 514 805 ; +C -1 ; WX 600 ; N Zcaron ; B 86 0 514 802 ; +C -1 ; WX 600 ; N greaterequal ; B 98 0 502 710 ; +C -1 ; WX 600 ; N Eth ; B 30 0 574 562 ; +C -1 ; WX 600 ; N Ccedilla ; B 41 -151 540 580 ; +C -1 ; WX 600 ; N lcommaaccent ; B 95 -250 505 629 ; +C -1 ; WX 600 ; N tcaron ; B 87 -15 530 717 ; +C -1 ; WX 600 ; N eogonek ; B 66 -172 548 441 ; +C -1 ; WX 600 ; N Uogonek ; B 17 -172 583 562 ; +C -1 ; WX 600 ; N Aacute ; B 3 0 597 805 ; +C -1 ; WX 600 ; N Adieresis ; B 3 0 597 753 ; +C -1 ; WX 600 ; N egrave ; B 66 -15 548 672 ; +C -1 ; WX 600 ; N zacute ; B 99 0 502 672 ; +C -1 ; WX 600 ; N iogonek ; B 95 -172 505 657 ; +C -1 ; WX 600 ; N Oacute ; B 43 -18 557 805 ; +C -1 ; WX 600 ; N oacute ; B 62 -15 538 672 ; +C -1 ; WX 600 ; N amacron ; B 53 -15 559 565 ; +C -1 ; WX 600 ; N sacute ; B 80 -15 513 672 ; +C -1 ; WX 600 ; N idieresis ; B 95 0 505 620 ; +C -1 ; WX 600 ; N Ocircumflex ; B 43 -18 557 787 ; +C -1 ; WX 600 ; N Ugrave ; B 17 -18 583 805 ; +C -1 ; WX 600 ; N Delta ; B 6 0 598 688 ; +C -1 ; WX 600 ; N thorn ; B -6 -157 555 629 ; +C -1 ; WX 600 ; N twosuperior ; B 177 249 424 622 ; +C -1 ; WX 600 ; N Odieresis ; B 43 -18 557 753 ; +C -1 ; WX 600 ; N mu ; B 21 -157 562 426 ; +C -1 ; WX 600 ; N igrave ; B 95 0 505 672 ; +C -1 ; WX 600 ; N ohungarumlaut ; B 62 -15 580 672 ; +C -1 ; WX 600 ; N Eogonek ; B 53 -172 561 562 ; +C -1 ; WX 600 ; N dcroat ; B 45 -15 591 629 ; +C -1 ; WX 600 ; N threequarters ; B 8 -56 593 666 ; +C -1 ; WX 600 ; N Scedilla ; B 72 -151 529 580 ; +C -1 ; WX 600 ; N lcaron ; B 95 0 533 629 ; +C -1 ; WX 600 ; N Kcommaaccent ; B 38 -250 582 562 ; +C -1 ; WX 600 ; N Lacute ; B 47 0 554 805 ; +C -1 ; WX 600 ; N trademark ; B -23 263 623 562 ; +C -1 ; WX 600 ; N edotaccent ; B 66 -15 548 620 ; +C -1 ; WX 600 ; N Igrave ; B 96 0 504 805 ; +C -1 ; WX 600 ; N Imacron ; B 96 0 504 698 ; +C -1 ; WX 600 ; N Lcaron ; B 47 0 554 562 ; +C -1 ; WX 600 ; N onehalf ; B 0 -57 611 665 ; +C -1 ; WX 600 ; N lessequal ; B 98 0 502 710 ; +C -1 ; WX 600 ; N ocircumflex ; B 62 -15 538 654 ; +C -1 ; WX 600 ; N ntilde ; B 26 0 575 606 ; +C -1 ; WX 600 ; N Uhungarumlaut ; B 17 -18 590 805 ; +C -1 ; WX 600 ; N Eacute ; B 53 0 550 805 ; +C -1 ; WX 600 ; N emacron ; B 66 -15 548 565 ; +C -1 ; WX 600 ; N gbreve ; B 45 -157 566 609 ; +C -1 ; WX 600 ; N onequarter ; B 0 -57 600 665 ; +C -1 ; WX 600 ; N Scaron ; B 72 -20 529 802 ; +C -1 ; WX 600 ; N Scommaaccent ; B 72 -250 529 580 ; +C -1 ; WX 600 ; N Ohungarumlaut ; B 43 -18 580 805 ; +C -1 ; WX 600 ; N degree ; B 123 269 477 622 ; +C -1 ; WX 600 ; N ograve ; B 62 -15 538 672 ; +C -1 ; WX 600 ; N Ccaron ; B 41 -18 540 802 ; +C -1 ; WX 600 ; N ugrave ; B 21 -15 562 672 ; +C -1 ; WX 600 ; N radical ; B 3 -15 597 792 ; +C -1 ; WX 600 ; N Dcaron ; B 43 0 574 802 ; +C -1 ; WX 600 ; N rcommaaccent ; B 60 -250 559 441 ; +C -1 ; WX 600 ; N Ntilde ; B 7 -13 593 729 ; +C -1 ; WX 600 ; N otilde ; B 62 -15 538 606 ; +C -1 ; WX 600 ; N Rcommaaccent ; B 38 -250 588 562 ; +C -1 ; WX 600 ; N Lcommaaccent ; B 47 -250 554 562 ; +C -1 ; WX 600 ; N Atilde ; B 3 0 597 729 ; +C -1 ; WX 600 ; N Aogonek ; B 3 -172 608 562 ; +C -1 ; WX 600 ; N Aring ; B 3 0 597 750 ; +C -1 ; WX 600 ; N Otilde ; B 43 -18 557 729 ; +C -1 ; WX 600 ; N zdotaccent ; B 99 0 502 620 ; +C -1 ; WX 600 ; N Ecaron ; B 53 0 550 802 ; +C -1 ; WX 600 ; N Iogonek ; B 96 -172 504 562 ; +C -1 ; WX 600 ; N kcommaaccent ; B 43 -250 580 629 ; +C -1 ; WX 600 ; N minus ; B 80 232 520 283 ; +C -1 ; WX 600 ; N Icircumflex ; B 96 0 504 787 ; +C -1 ; WX 600 ; N ncaron ; B 26 0 575 669 ; +C -1 ; WX 600 ; N tcommaaccent ; B 87 -250 530 561 ; +C -1 ; WX 600 ; N logicalnot ; B 87 108 513 369 ; +C -1 ; WX 600 ; N odieresis ; B 62 -15 538 620 ; +C -1 ; WX 600 ; N udieresis ; B 21 -15 562 620 ; +C -1 ; WX 600 ; N notequal ; B 15 -16 540 529 ; +C -1 ; WX 600 ; N gcommaaccent ; B 45 -157 566 708 ; +C -1 ; WX 600 ; N eth ; B 62 -15 538 629 ; +C -1 ; WX 600 ; N zcaron ; B 99 0 502 669 ; +C -1 ; WX 600 ; N ncommaaccent ; B 26 -250 575 441 ; +C -1 ; WX 600 ; N onesuperior ; B 172 249 428 622 ; +C -1 ; WX 600 ; N imacron ; B 95 0 505 565 ; +C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +EndFontMetrics diff --git a/pyx/data/afm/Helvetica-Bold.afm b/pyx/data/afm/Helvetica-Bold.afm new file mode 100644 index 00000000..0d410494 --- /dev/null +++ b/pyx/data/afm/Helvetica-Bold.afm @@ -0,0 +1,2827 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:43:52 1997 +Comment UniqueID 43052 +Comment VMusage 37169 48194 +FontName Helvetica-Bold +FullName Helvetica Bold +FamilyName Helvetica +Weight Bold +ItalicAngle 0 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -170 -228 1003 962 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 718 +XHeight 532 +Ascender 718 +Descender -207 +StdHW 118 +StdVW 140 +StartCharMetrics 315 +C 32 ; WX 278 ; N space ; B 0 0 0 0 ; +C 33 ; WX 333 ; N exclam ; B 90 0 244 718 ; +C 34 ; WX 474 ; N quotedbl ; B 98 447 376 718 ; +C 35 ; WX 556 ; N numbersign ; B 18 0 538 698 ; +C 36 ; WX 556 ; N dollar ; B 30 -115 523 775 ; +C 37 ; WX 889 ; N percent ; B 28 -19 861 710 ; +C 38 ; WX 722 ; N ampersand ; B 54 -19 701 718 ; +C 39 ; WX 278 ; N quoteright ; B 69 445 209 718 ; +C 40 ; WX 333 ; N parenleft ; B 35 -208 314 734 ; +C 41 ; WX 333 ; N parenright ; B 19 -208 298 734 ; +C 42 ; WX 389 ; N asterisk ; B 27 387 362 718 ; +C 43 ; WX 584 ; N plus ; B 40 0 544 506 ; +C 44 ; WX 278 ; N comma ; B 64 -168 214 146 ; +C 45 ; WX 333 ; N hyphen ; B 27 215 306 345 ; +C 46 ; WX 278 ; N period ; B 64 0 214 146 ; +C 47 ; WX 278 ; N slash ; B -33 -19 311 737 ; +C 48 ; WX 556 ; N zero ; B 32 -19 524 710 ; +C 49 ; WX 556 ; N one ; B 69 0 378 710 ; +C 50 ; WX 556 ; N two ; B 26 0 511 710 ; +C 51 ; WX 556 ; N three ; B 27 -19 516 710 ; +C 52 ; WX 556 ; N four ; B 27 0 526 710 ; +C 53 ; WX 556 ; N five ; B 27 -19 516 698 ; +C 54 ; WX 556 ; N six ; B 31 -19 520 710 ; +C 55 ; WX 556 ; N seven ; B 25 0 528 698 ; +C 56 ; WX 556 ; N eight ; B 32 -19 524 710 ; +C 57 ; WX 556 ; N nine ; B 30 -19 522 710 ; +C 58 ; WX 333 ; N colon ; B 92 0 242 512 ; +C 59 ; WX 333 ; N semicolon ; B 92 -168 242 512 ; +C 60 ; WX 584 ; N less ; B 38 -8 546 514 ; +C 61 ; WX 584 ; N equal ; B 40 87 544 419 ; +C 62 ; WX 584 ; N greater ; B 38 -8 546 514 ; +C 63 ; WX 611 ; N question ; B 60 0 556 727 ; +C 64 ; WX 975 ; N at ; B 118 -19 856 737 ; +C 65 ; WX 722 ; N A ; B 20 0 702 718 ; +C 66 ; WX 722 ; N B ; B 76 0 669 718 ; +C 67 ; WX 722 ; N C ; B 44 -19 684 737 ; +C 68 ; WX 722 ; N D ; B 76 0 685 718 ; +C 69 ; WX 667 ; N E ; B 76 0 621 718 ; +C 70 ; WX 611 ; N F ; B 76 0 587 718 ; +C 71 ; WX 778 ; N G ; B 44 -19 713 737 ; +C 72 ; WX 722 ; N H ; B 71 0 651 718 ; +C 73 ; WX 278 ; N I ; B 64 0 214 718 ; +C 74 ; WX 556 ; N J ; B 22 -18 484 718 ; +C 75 ; WX 722 ; N K ; B 87 0 722 718 ; +C 76 ; WX 611 ; N L ; B 76 0 583 718 ; +C 77 ; WX 833 ; N M ; B 69 0 765 718 ; +C 78 ; WX 722 ; N N ; B 69 0 654 718 ; +C 79 ; WX 778 ; N O ; B 44 -19 734 737 ; +C 80 ; WX 667 ; N P ; B 76 0 627 718 ; +C 81 ; WX 778 ; N Q ; B 44 -52 737 737 ; +C 82 ; WX 722 ; N R ; B 76 0 677 718 ; +C 83 ; WX 667 ; N S ; B 39 -19 629 737 ; +C 84 ; WX 611 ; N T ; B 14 0 598 718 ; +C 85 ; WX 722 ; N U ; B 72 -19 651 718 ; +C 86 ; WX 667 ; N V ; B 19 0 648 718 ; +C 87 ; WX 944 ; N W ; B 16 0 929 718 ; +C 88 ; WX 667 ; N X ; B 14 0 653 718 ; +C 89 ; WX 667 ; N Y ; B 15 0 653 718 ; +C 90 ; WX 611 ; N Z ; B 25 0 586 718 ; +C 91 ; WX 333 ; N bracketleft ; B 63 -196 309 722 ; +C 92 ; WX 278 ; N backslash ; B -33 -19 311 737 ; +C 93 ; WX 333 ; N bracketright ; B 24 -196 270 722 ; +C 94 ; WX 584 ; N asciicircum ; B 62 323 522 698 ; +C 95 ; WX 556 ; N underscore ; B 0 -125 556 -75 ; +C 96 ; WX 278 ; N quoteleft ; B 69 454 209 727 ; +C 97 ; WX 556 ; N a ; B 29 -14 527 546 ; +C 98 ; WX 611 ; N b ; B 61 -14 578 718 ; +C 99 ; WX 556 ; N c ; B 34 -14 524 546 ; +C 100 ; WX 611 ; N d ; B 34 -14 551 718 ; +C 101 ; WX 556 ; N e ; B 23 -14 528 546 ; +C 102 ; WX 333 ; N f ; B 10 0 318 727 ; L i fi ; L l fl ; +C 103 ; WX 611 ; N g ; B 40 -217 553 546 ; +C 104 ; WX 611 ; N h ; B 65 0 546 718 ; +C 105 ; WX 278 ; N i ; B 69 0 209 725 ; +C 106 ; WX 278 ; N j ; B 3 -214 209 725 ; +C 107 ; WX 556 ; N k ; B 69 0 562 718 ; +C 108 ; WX 278 ; N l ; B 69 0 209 718 ; +C 109 ; WX 889 ; N m ; B 64 0 826 546 ; +C 110 ; WX 611 ; N n ; B 65 0 546 546 ; +C 111 ; WX 611 ; N o ; B 34 -14 578 546 ; +C 112 ; WX 611 ; N p ; B 62 -207 578 546 ; +C 113 ; WX 611 ; N q ; B 34 -207 552 546 ; +C 114 ; WX 389 ; N r ; B 64 0 373 546 ; +C 115 ; WX 556 ; N s ; B 30 -14 519 546 ; +C 116 ; WX 333 ; N t ; B 10 -6 309 676 ; +C 117 ; WX 611 ; N u ; B 66 -14 545 532 ; +C 118 ; WX 556 ; N v ; B 13 0 543 532 ; +C 119 ; WX 778 ; N w ; B 10 0 769 532 ; +C 120 ; WX 556 ; N x ; B 15 0 541 532 ; +C 121 ; WX 556 ; N y ; B 10 -214 539 532 ; +C 122 ; WX 500 ; N z ; B 20 0 480 532 ; +C 123 ; WX 389 ; N braceleft ; B 48 -196 365 722 ; +C 124 ; WX 280 ; N bar ; B 84 -225 196 775 ; +C 125 ; WX 389 ; N braceright ; B 24 -196 341 722 ; +C 126 ; WX 584 ; N asciitilde ; B 61 163 523 343 ; +C 161 ; WX 333 ; N exclamdown ; B 90 -186 244 532 ; +C 162 ; WX 556 ; N cent ; B 34 -118 524 628 ; +C 163 ; WX 556 ; N sterling ; B 28 -16 541 718 ; +C 164 ; WX 167 ; N fraction ; B -170 -19 336 710 ; +C 165 ; WX 556 ; N yen ; B -9 0 565 698 ; +C 166 ; WX 556 ; N florin ; B -10 -210 516 737 ; +C 167 ; WX 556 ; N section ; B 34 -184 522 727 ; +C 168 ; WX 556 ; N currency ; B -3 76 559 636 ; +C 169 ; WX 238 ; N quotesingle ; B 70 447 168 718 ; +C 170 ; WX 500 ; N quotedblleft ; B 64 454 436 727 ; +C 171 ; WX 556 ; N guillemotleft ; B 88 76 468 484 ; +C 172 ; WX 333 ; N guilsinglleft ; B 83 76 250 484 ; +C 173 ; WX 333 ; N guilsinglright ; B 83 76 250 484 ; +C 174 ; WX 611 ; N fi ; B 10 0 542 727 ; +C 175 ; WX 611 ; N fl ; B 10 0 542 727 ; +C 177 ; WX 556 ; N endash ; B 0 227 556 333 ; +C 178 ; WX 556 ; N dagger ; B 36 -171 520 718 ; +C 179 ; WX 556 ; N daggerdbl ; B 36 -171 520 718 ; +C 180 ; WX 278 ; N periodcentered ; B 58 172 220 334 ; +C 182 ; WX 556 ; N paragraph ; B -8 -191 539 700 ; +C 183 ; WX 350 ; N bullet ; B 10 194 340 524 ; +C 184 ; WX 278 ; N quotesinglbase ; B 69 -146 209 127 ; +C 185 ; WX 500 ; N quotedblbase ; B 64 -146 436 127 ; +C 186 ; WX 500 ; N quotedblright ; B 64 445 436 718 ; +C 187 ; WX 556 ; N guillemotright ; B 88 76 468 484 ; +C 188 ; WX 1000 ; N ellipsis ; B 92 0 908 146 ; +C 189 ; WX 1000 ; N perthousand ; B -3 -19 1003 710 ; +C 191 ; WX 611 ; N questiondown ; B 55 -195 551 532 ; +C 193 ; WX 333 ; N grave ; B -23 604 225 750 ; +C 194 ; WX 333 ; N acute ; B 108 604 356 750 ; +C 195 ; WX 333 ; N circumflex ; B -10 604 343 750 ; +C 196 ; WX 333 ; N tilde ; B -17 610 350 737 ; +C 197 ; WX 333 ; N macron ; B -6 604 339 678 ; +C 198 ; WX 333 ; N breve ; B -2 604 335 750 ; +C 199 ; WX 333 ; N dotaccent ; B 104 614 230 729 ; +C 200 ; WX 333 ; N dieresis ; B 6 614 327 729 ; +C 202 ; WX 333 ; N ring ; B 59 568 275 776 ; +C 203 ; WX 333 ; N cedilla ; B 6 -228 245 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B 9 604 486 750 ; +C 206 ; WX 333 ; N ogonek ; B 71 -228 304 0 ; +C 207 ; WX 333 ; N caron ; B -10 604 343 750 ; +C 208 ; WX 1000 ; N emdash ; B 0 227 1000 333 ; +C 225 ; WX 1000 ; N AE ; B 5 0 954 718 ; +C 227 ; WX 370 ; N ordfeminine ; B 22 401 347 737 ; +C 232 ; WX 611 ; N Lslash ; B -20 0 583 718 ; +C 233 ; WX 778 ; N Oslash ; B 33 -27 744 745 ; +C 234 ; WX 1000 ; N OE ; B 37 -19 961 737 ; +C 235 ; WX 365 ; N ordmasculine ; B 6 401 360 737 ; +C 241 ; WX 889 ; N ae ; B 29 -14 858 546 ; +C 245 ; WX 278 ; N dotlessi ; B 69 0 209 532 ; +C 248 ; WX 278 ; N lslash ; B -18 0 296 718 ; +C 249 ; WX 611 ; N oslash ; B 22 -29 589 560 ; +C 250 ; WX 944 ; N oe ; B 34 -14 912 546 ; +C 251 ; WX 611 ; N germandbls ; B 69 -14 579 731 ; +C -1 ; WX 278 ; N Idieresis ; B -21 0 300 915 ; +C -1 ; WX 556 ; N eacute ; B 23 -14 528 750 ; +C -1 ; WX 556 ; N abreve ; B 29 -14 527 750 ; +C -1 ; WX 611 ; N uhungarumlaut ; B 66 -14 625 750 ; +C -1 ; WX 556 ; N ecaron ; B 23 -14 528 750 ; +C -1 ; WX 667 ; N Ydieresis ; B 15 0 653 915 ; +C -1 ; WX 584 ; N divide ; B 40 -42 544 548 ; +C -1 ; WX 667 ; N Yacute ; B 15 0 653 936 ; +C -1 ; WX 722 ; N Acircumflex ; B 20 0 702 936 ; +C -1 ; WX 556 ; N aacute ; B 29 -14 527 750 ; +C -1 ; WX 722 ; N Ucircumflex ; B 72 -19 651 936 ; +C -1 ; WX 556 ; N yacute ; B 10 -214 539 750 ; +C -1 ; WX 556 ; N scommaaccent ; B 30 -228 519 546 ; +C -1 ; WX 556 ; N ecircumflex ; B 23 -14 528 750 ; +C -1 ; WX 722 ; N Uring ; B 72 -19 651 962 ; +C -1 ; WX 722 ; N Udieresis ; B 72 -19 651 915 ; +C -1 ; WX 556 ; N aogonek ; B 29 -224 545 546 ; +C -1 ; WX 722 ; N Uacute ; B 72 -19 651 936 ; +C -1 ; WX 611 ; N uogonek ; B 66 -228 545 532 ; +C -1 ; WX 667 ; N Edieresis ; B 76 0 621 915 ; +C -1 ; WX 722 ; N Dcroat ; B -5 0 685 718 ; +C -1 ; WX 250 ; N commaaccent ; B 64 -228 199 -50 ; +C -1 ; WX 737 ; N copyright ; B -11 -19 749 737 ; +C -1 ; WX 667 ; N Emacron ; B 76 0 621 864 ; +C -1 ; WX 556 ; N ccaron ; B 34 -14 524 750 ; +C -1 ; WX 556 ; N aring ; B 29 -14 527 776 ; +C -1 ; WX 722 ; N Ncommaaccent ; B 69 -228 654 718 ; +C -1 ; WX 278 ; N lacute ; B 69 0 329 936 ; +C -1 ; WX 556 ; N agrave ; B 29 -14 527 750 ; +C -1 ; WX 611 ; N Tcommaaccent ; B 14 -228 598 718 ; +C -1 ; WX 722 ; N Cacute ; B 44 -19 684 936 ; +C -1 ; WX 556 ; N atilde ; B 29 -14 527 737 ; +C -1 ; WX 667 ; N Edotaccent ; B 76 0 621 915 ; +C -1 ; WX 556 ; N scaron ; B 30 -14 519 750 ; +C -1 ; WX 556 ; N scedilla ; B 30 -228 519 546 ; +C -1 ; WX 278 ; N iacute ; B 69 0 329 750 ; +C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ; +C -1 ; WX 722 ; N Rcaron ; B 76 0 677 936 ; +C -1 ; WX 778 ; N Gcommaaccent ; B 44 -228 713 737 ; +C -1 ; WX 611 ; N ucircumflex ; B 66 -14 545 750 ; +C -1 ; WX 556 ; N acircumflex ; B 29 -14 527 750 ; +C -1 ; WX 722 ; N Amacron ; B 20 0 702 864 ; +C -1 ; WX 389 ; N rcaron ; B 18 0 373 750 ; +C -1 ; WX 556 ; N ccedilla ; B 34 -228 524 546 ; +C -1 ; WX 611 ; N Zdotaccent ; B 25 0 586 915 ; +C -1 ; WX 667 ; N Thorn ; B 76 0 627 718 ; +C -1 ; WX 778 ; N Omacron ; B 44 -19 734 864 ; +C -1 ; WX 722 ; N Racute ; B 76 0 677 936 ; +C -1 ; WX 667 ; N Sacute ; B 39 -19 629 936 ; +C -1 ; WX 743 ; N dcaron ; B 34 -14 750 718 ; +C -1 ; WX 722 ; N Umacron ; B 72 -19 651 864 ; +C -1 ; WX 611 ; N uring ; B 66 -14 545 776 ; +C -1 ; WX 333 ; N threesuperior ; B 8 271 326 710 ; +C -1 ; WX 778 ; N Ograve ; B 44 -19 734 936 ; +C -1 ; WX 722 ; N Agrave ; B 20 0 702 936 ; +C -1 ; WX 722 ; N Abreve ; B 20 0 702 936 ; +C -1 ; WX 584 ; N multiply ; B 40 1 545 505 ; +C -1 ; WX 611 ; N uacute ; B 66 -14 545 750 ; +C -1 ; WX 611 ; N Tcaron ; B 14 0 598 936 ; +C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ; +C -1 ; WX 556 ; N ydieresis ; B 10 -214 539 729 ; +C -1 ; WX 722 ; N Nacute ; B 69 0 654 936 ; +C -1 ; WX 278 ; N icircumflex ; B -37 0 316 750 ; +C -1 ; WX 667 ; N Ecircumflex ; B 76 0 621 936 ; +C -1 ; WX 556 ; N adieresis ; B 29 -14 527 729 ; +C -1 ; WX 556 ; N edieresis ; B 23 -14 528 729 ; +C -1 ; WX 556 ; N cacute ; B 34 -14 524 750 ; +C -1 ; WX 611 ; N nacute ; B 65 0 546 750 ; +C -1 ; WX 611 ; N umacron ; B 66 -14 545 678 ; +C -1 ; WX 722 ; N Ncaron ; B 69 0 654 936 ; +C -1 ; WX 278 ; N Iacute ; B 64 0 329 936 ; +C -1 ; WX 584 ; N plusminus ; B 40 0 544 506 ; +C -1 ; WX 280 ; N brokenbar ; B 84 -150 196 700 ; +C -1 ; WX 737 ; N registered ; B -11 -19 748 737 ; +C -1 ; WX 778 ; N Gbreve ; B 44 -19 713 936 ; +C -1 ; WX 278 ; N Idotaccent ; B 64 0 214 915 ; +C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ; +C -1 ; WX 667 ; N Egrave ; B 76 0 621 936 ; +C -1 ; WX 389 ; N racute ; B 64 0 384 750 ; +C -1 ; WX 611 ; N omacron ; B 34 -14 578 678 ; +C -1 ; WX 611 ; N Zacute ; B 25 0 586 936 ; +C -1 ; WX 611 ; N Zcaron ; B 25 0 586 936 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ; +C -1 ; WX 722 ; N Eth ; B -5 0 685 718 ; +C -1 ; WX 722 ; N Ccedilla ; B 44 -228 684 737 ; +C -1 ; WX 278 ; N lcommaaccent ; B 69 -228 213 718 ; +C -1 ; WX 389 ; N tcaron ; B 10 -6 421 878 ; +C -1 ; WX 556 ; N eogonek ; B 23 -228 528 546 ; +C -1 ; WX 722 ; N Uogonek ; B 72 -228 651 718 ; +C -1 ; WX 722 ; N Aacute ; B 20 0 702 936 ; +C -1 ; WX 722 ; N Adieresis ; B 20 0 702 915 ; +C -1 ; WX 556 ; N egrave ; B 23 -14 528 750 ; +C -1 ; WX 500 ; N zacute ; B 20 0 480 750 ; +C -1 ; WX 278 ; N iogonek ; B 16 -224 249 725 ; +C -1 ; WX 778 ; N Oacute ; B 44 -19 734 936 ; +C -1 ; WX 611 ; N oacute ; B 34 -14 578 750 ; +C -1 ; WX 556 ; N amacron ; B 29 -14 527 678 ; +C -1 ; WX 556 ; N sacute ; B 30 -14 519 750 ; +C -1 ; WX 278 ; N idieresis ; B -21 0 300 729 ; +C -1 ; WX 778 ; N Ocircumflex ; B 44 -19 734 936 ; +C -1 ; WX 722 ; N Ugrave ; B 72 -19 651 936 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 611 ; N thorn ; B 62 -208 578 718 ; +C -1 ; WX 333 ; N twosuperior ; B 9 283 324 710 ; +C -1 ; WX 778 ; N Odieresis ; B 44 -19 734 915 ; +C -1 ; WX 611 ; N mu ; B 66 -207 545 532 ; +C -1 ; WX 278 ; N igrave ; B -50 0 209 750 ; +C -1 ; WX 611 ; N ohungarumlaut ; B 34 -14 625 750 ; +C -1 ; WX 667 ; N Eogonek ; B 76 -224 639 718 ; +C -1 ; WX 611 ; N dcroat ; B 34 -14 650 718 ; +C -1 ; WX 834 ; N threequarters ; B 16 -19 799 710 ; +C -1 ; WX 667 ; N Scedilla ; B 39 -228 629 737 ; +C -1 ; WX 400 ; N lcaron ; B 69 0 408 718 ; +C -1 ; WX 722 ; N Kcommaaccent ; B 87 -228 722 718 ; +C -1 ; WX 611 ; N Lacute ; B 76 0 583 936 ; +C -1 ; WX 1000 ; N trademark ; B 44 306 956 718 ; +C -1 ; WX 556 ; N edotaccent ; B 23 -14 528 729 ; +C -1 ; WX 278 ; N Igrave ; B -50 0 214 936 ; +C -1 ; WX 278 ; N Imacron ; B -33 0 312 864 ; +C -1 ; WX 611 ; N Lcaron ; B 76 0 583 718 ; +C -1 ; WX 834 ; N onehalf ; B 26 -19 794 710 ; +C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ; +C -1 ; WX 611 ; N ocircumflex ; B 34 -14 578 750 ; +C -1 ; WX 611 ; N ntilde ; B 65 0 546 737 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 72 -19 681 936 ; +C -1 ; WX 667 ; N Eacute ; B 76 0 621 936 ; +C -1 ; WX 556 ; N emacron ; B 23 -14 528 678 ; +C -1 ; WX 611 ; N gbreve ; B 40 -217 553 750 ; +C -1 ; WX 834 ; N onequarter ; B 26 -19 766 710 ; +C -1 ; WX 667 ; N Scaron ; B 39 -19 629 936 ; +C -1 ; WX 667 ; N Scommaaccent ; B 39 -228 629 737 ; +C -1 ; WX 778 ; N Ohungarumlaut ; B 44 -19 734 936 ; +C -1 ; WX 400 ; N degree ; B 57 426 343 712 ; +C -1 ; WX 611 ; N ograve ; B 34 -14 578 750 ; +C -1 ; WX 722 ; N Ccaron ; B 44 -19 684 936 ; +C -1 ; WX 611 ; N ugrave ; B 66 -14 545 750 ; +C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ; +C -1 ; WX 722 ; N Dcaron ; B 76 0 685 936 ; +C -1 ; WX 389 ; N rcommaaccent ; B 64 -228 373 546 ; +C -1 ; WX 722 ; N Ntilde ; B 69 0 654 923 ; +C -1 ; WX 611 ; N otilde ; B 34 -14 578 737 ; +C -1 ; WX 722 ; N Rcommaaccent ; B 76 -228 677 718 ; +C -1 ; WX 611 ; N Lcommaaccent ; B 76 -228 583 718 ; +C -1 ; WX 722 ; N Atilde ; B 20 0 702 923 ; +C -1 ; WX 722 ; N Aogonek ; B 20 -224 742 718 ; +C -1 ; WX 722 ; N Aring ; B 20 0 702 962 ; +C -1 ; WX 778 ; N Otilde ; B 44 -19 734 923 ; +C -1 ; WX 500 ; N zdotaccent ; B 20 0 480 729 ; +C -1 ; WX 667 ; N Ecaron ; B 76 0 621 936 ; +C -1 ; WX 278 ; N Iogonek ; B -11 -228 222 718 ; +C -1 ; WX 556 ; N kcommaaccent ; B 69 -228 562 718 ; +C -1 ; WX 584 ; N minus ; B 40 197 544 309 ; +C -1 ; WX 278 ; N Icircumflex ; B -37 0 316 936 ; +C -1 ; WX 611 ; N ncaron ; B 65 0 546 750 ; +C -1 ; WX 333 ; N tcommaaccent ; B 10 -228 309 676 ; +C -1 ; WX 584 ; N logicalnot ; B 40 108 544 419 ; +C -1 ; WX 611 ; N odieresis ; B 34 -14 578 729 ; +C -1 ; WX 611 ; N udieresis ; B 66 -14 545 729 ; +C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ; +C -1 ; WX 611 ; N gcommaaccent ; B 40 -217 553 850 ; +C -1 ; WX 611 ; N eth ; B 34 -14 578 737 ; +C -1 ; WX 500 ; N zcaron ; B 20 0 480 750 ; +C -1 ; WX 611 ; N ncommaaccent ; B 65 -228 546 546 ; +C -1 ; WX 333 ; N onesuperior ; B 26 283 237 710 ; +C -1 ; WX 278 ; N imacron ; B -8 0 285 678 ; +C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2481 +KPX A C -40 +KPX A Cacute -40 +KPX A Ccaron -40 +KPX A Ccedilla -40 +KPX A G -50 +KPX A Gbreve -50 +KPX A Gcommaaccent -50 +KPX A O -40 +KPX A Oacute -40 +KPX A Ocircumflex -40 +KPX A Odieresis -40 +KPX A Ograve -40 +KPX A Ohungarumlaut -40 +KPX A Omacron -40 +KPX A Oslash -40 +KPX A Otilde -40 +KPX A Q -40 +KPX A T -90 +KPX A Tcaron -90 +KPX A Tcommaaccent -90 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -80 +KPX A W -60 +KPX A Y -110 +KPX A Yacute -110 +KPX A Ydieresis -110 +KPX A u -30 +KPX A uacute -30 +KPX A ucircumflex -30 +KPX A udieresis -30 +KPX A ugrave -30 +KPX A uhungarumlaut -30 +KPX A umacron -30 +KPX A uogonek -30 +KPX A uring -30 +KPX A v -40 +KPX A w -30 +KPX A y -30 +KPX A yacute -30 +KPX A ydieresis -30 +KPX Aacute C -40 +KPX Aacute Cacute -40 +KPX Aacute Ccaron -40 +KPX Aacute Ccedilla -40 +KPX Aacute G -50 +KPX Aacute Gbreve -50 +KPX Aacute Gcommaaccent -50 +KPX Aacute O -40 +KPX Aacute Oacute -40 +KPX Aacute Ocircumflex -40 +KPX Aacute Odieresis -40 +KPX Aacute Ograve -40 +KPX Aacute Ohungarumlaut -40 +KPX Aacute Omacron -40 +KPX Aacute Oslash -40 +KPX Aacute Otilde -40 +KPX Aacute Q -40 +KPX Aacute T -90 +KPX Aacute Tcaron -90 +KPX Aacute Tcommaaccent -90 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -80 +KPX Aacute W -60 +KPX Aacute Y -110 +KPX Aacute Yacute -110 +KPX Aacute Ydieresis -110 +KPX Aacute u -30 +KPX Aacute uacute -30 +KPX Aacute ucircumflex -30 +KPX Aacute udieresis -30 +KPX Aacute ugrave -30 +KPX Aacute uhungarumlaut -30 +KPX Aacute umacron -30 +KPX Aacute uogonek -30 +KPX Aacute uring -30 +KPX Aacute v -40 +KPX Aacute w -30 +KPX Aacute y -30 +KPX Aacute yacute -30 +KPX Aacute ydieresis -30 +KPX Abreve C -40 +KPX Abreve Cacute -40 +KPX Abreve Ccaron -40 +KPX Abreve Ccedilla -40 +KPX Abreve G -50 +KPX Abreve Gbreve -50 +KPX Abreve Gcommaaccent -50 +KPX Abreve O -40 +KPX Abreve Oacute -40 +KPX Abreve Ocircumflex -40 +KPX Abreve Odieresis -40 +KPX Abreve Ograve -40 +KPX Abreve Ohungarumlaut -40 +KPX Abreve Omacron -40 +KPX Abreve Oslash -40 +KPX Abreve Otilde -40 +KPX Abreve Q -40 +KPX Abreve T -90 +KPX Abreve Tcaron -90 +KPX Abreve Tcommaaccent -90 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -80 +KPX Abreve W -60 +KPX Abreve Y -110 +KPX Abreve Yacute -110 +KPX Abreve Ydieresis -110 +KPX Abreve u -30 +KPX Abreve uacute -30 +KPX Abreve ucircumflex -30 +KPX Abreve udieresis -30 +KPX Abreve ugrave -30 +KPX Abreve uhungarumlaut -30 +KPX Abreve umacron -30 +KPX Abreve uogonek -30 +KPX Abreve uring -30 +KPX Abreve v -40 +KPX Abreve w -30 +KPX Abreve y -30 +KPX Abreve yacute -30 +KPX Abreve ydieresis -30 +KPX Acircumflex C -40 +KPX Acircumflex Cacute -40 +KPX Acircumflex Ccaron -40 +KPX Acircumflex Ccedilla -40 +KPX Acircumflex G -50 +KPX Acircumflex Gbreve -50 +KPX Acircumflex Gcommaaccent -50 +KPX Acircumflex O -40 +KPX Acircumflex Oacute -40 +KPX Acircumflex Ocircumflex -40 +KPX Acircumflex Odieresis -40 +KPX Acircumflex Ograve -40 +KPX Acircumflex Ohungarumlaut -40 +KPX Acircumflex Omacron -40 +KPX Acircumflex Oslash -40 +KPX Acircumflex Otilde -40 +KPX Acircumflex Q -40 +KPX Acircumflex T -90 +KPX Acircumflex Tcaron -90 +KPX Acircumflex Tcommaaccent -90 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -80 +KPX Acircumflex W -60 +KPX Acircumflex Y -110 +KPX Acircumflex Yacute -110 +KPX Acircumflex Ydieresis -110 +KPX Acircumflex u -30 +KPX Acircumflex uacute -30 +KPX Acircumflex ucircumflex -30 +KPX Acircumflex udieresis -30 +KPX Acircumflex ugrave -30 +KPX Acircumflex uhungarumlaut -30 +KPX Acircumflex umacron -30 +KPX Acircumflex uogonek -30 +KPX Acircumflex uring -30 +KPX Acircumflex v -40 +KPX Acircumflex w -30 +KPX Acircumflex y -30 +KPX Acircumflex yacute -30 +KPX Acircumflex ydieresis -30 +KPX Adieresis C -40 +KPX Adieresis Cacute -40 +KPX Adieresis Ccaron -40 +KPX Adieresis Ccedilla -40 +KPX Adieresis G -50 +KPX Adieresis Gbreve -50 +KPX Adieresis Gcommaaccent -50 +KPX Adieresis O -40 +KPX Adieresis Oacute -40 +KPX Adieresis Ocircumflex -40 +KPX Adieresis Odieresis -40 +KPX Adieresis Ograve -40 +KPX Adieresis Ohungarumlaut -40 +KPX Adieresis Omacron -40 +KPX Adieresis Oslash -40 +KPX Adieresis Otilde -40 +KPX Adieresis Q -40 +KPX Adieresis T -90 +KPX Adieresis Tcaron -90 +KPX Adieresis Tcommaaccent -90 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -80 +KPX Adieresis W -60 +KPX Adieresis Y -110 +KPX Adieresis Yacute -110 +KPX Adieresis Ydieresis -110 +KPX Adieresis u -30 +KPX Adieresis uacute -30 +KPX Adieresis ucircumflex -30 +KPX Adieresis udieresis -30 +KPX Adieresis ugrave -30 +KPX Adieresis uhungarumlaut -30 +KPX Adieresis umacron -30 +KPX Adieresis uogonek -30 +KPX Adieresis uring -30 +KPX Adieresis v -40 +KPX Adieresis w -30 +KPX Adieresis y -30 +KPX Adieresis yacute -30 +KPX Adieresis ydieresis -30 +KPX Agrave C -40 +KPX Agrave Cacute -40 +KPX Agrave Ccaron -40 +KPX Agrave Ccedilla -40 +KPX Agrave G -50 +KPX Agrave Gbreve -50 +KPX Agrave Gcommaaccent -50 +KPX Agrave O -40 +KPX Agrave Oacute -40 +KPX Agrave Ocircumflex -40 +KPX Agrave Odieresis -40 +KPX Agrave Ograve -40 +KPX Agrave Ohungarumlaut -40 +KPX Agrave Omacron -40 +KPX Agrave Oslash -40 +KPX Agrave Otilde -40 +KPX Agrave Q -40 +KPX Agrave T -90 +KPX Agrave Tcaron -90 +KPX Agrave Tcommaaccent -90 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -80 +KPX Agrave W -60 +KPX Agrave Y -110 +KPX Agrave Yacute -110 +KPX Agrave Ydieresis -110 +KPX Agrave u -30 +KPX Agrave uacute -30 +KPX Agrave ucircumflex -30 +KPX Agrave udieresis -30 +KPX Agrave ugrave -30 +KPX Agrave uhungarumlaut -30 +KPX Agrave umacron -30 +KPX Agrave uogonek -30 +KPX Agrave uring -30 +KPX Agrave v -40 +KPX Agrave w -30 +KPX Agrave y -30 +KPX Agrave yacute -30 +KPX Agrave ydieresis -30 +KPX Amacron C -40 +KPX Amacron Cacute -40 +KPX Amacron Ccaron -40 +KPX Amacron Ccedilla -40 +KPX Amacron G -50 +KPX Amacron Gbreve -50 +KPX Amacron Gcommaaccent -50 +KPX Amacron O -40 +KPX Amacron Oacute -40 +KPX Amacron Ocircumflex -40 +KPX Amacron Odieresis -40 +KPX Amacron Ograve -40 +KPX Amacron Ohungarumlaut -40 +KPX Amacron Omacron -40 +KPX Amacron Oslash -40 +KPX Amacron Otilde -40 +KPX Amacron Q -40 +KPX Amacron T -90 +KPX Amacron Tcaron -90 +KPX Amacron Tcommaaccent -90 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -80 +KPX Amacron W -60 +KPX Amacron Y -110 +KPX Amacron Yacute -110 +KPX Amacron Ydieresis -110 +KPX Amacron u -30 +KPX Amacron uacute -30 +KPX Amacron ucircumflex -30 +KPX Amacron udieresis -30 +KPX Amacron ugrave -30 +KPX Amacron uhungarumlaut -30 +KPX Amacron umacron -30 +KPX Amacron uogonek -30 +KPX Amacron uring -30 +KPX Amacron v -40 +KPX Amacron w -30 +KPX Amacron y -30 +KPX Amacron yacute -30 +KPX Amacron ydieresis -30 +KPX Aogonek C -40 +KPX Aogonek Cacute -40 +KPX Aogonek Ccaron -40 +KPX Aogonek Ccedilla -40 +KPX Aogonek G -50 +KPX Aogonek Gbreve -50 +KPX Aogonek Gcommaaccent -50 +KPX Aogonek O -40 +KPX Aogonek Oacute -40 +KPX Aogonek Ocircumflex -40 +KPX Aogonek Odieresis -40 +KPX Aogonek Ograve -40 +KPX Aogonek Ohungarumlaut -40 +KPX Aogonek Omacron -40 +KPX Aogonek Oslash -40 +KPX Aogonek Otilde -40 +KPX Aogonek Q -40 +KPX Aogonek T -90 +KPX Aogonek Tcaron -90 +KPX Aogonek Tcommaaccent -90 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -80 +KPX Aogonek W -60 +KPX Aogonek Y -110 +KPX Aogonek Yacute -110 +KPX Aogonek Ydieresis -110 +KPX Aogonek u -30 +KPX Aogonek uacute -30 +KPX Aogonek ucircumflex -30 +KPX Aogonek udieresis -30 +KPX Aogonek ugrave -30 +KPX Aogonek uhungarumlaut -30 +KPX Aogonek umacron -30 +KPX Aogonek uogonek -30 +KPX Aogonek uring -30 +KPX Aogonek v -40 +KPX Aogonek w -30 +KPX Aogonek y -30 +KPX Aogonek yacute -30 +KPX Aogonek ydieresis -30 +KPX Aring C -40 +KPX Aring Cacute -40 +KPX Aring Ccaron -40 +KPX Aring Ccedilla -40 +KPX Aring G -50 +KPX Aring Gbreve -50 +KPX Aring Gcommaaccent -50 +KPX Aring O -40 +KPX Aring Oacute -40 +KPX Aring Ocircumflex -40 +KPX Aring Odieresis -40 +KPX Aring Ograve -40 +KPX Aring Ohungarumlaut -40 +KPX Aring Omacron -40 +KPX Aring Oslash -40 +KPX Aring Otilde -40 +KPX Aring Q -40 +KPX Aring T -90 +KPX Aring Tcaron -90 +KPX Aring Tcommaaccent -90 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -80 +KPX Aring W -60 +KPX Aring Y -110 +KPX Aring Yacute -110 +KPX Aring Ydieresis -110 +KPX Aring u -30 +KPX Aring uacute -30 +KPX Aring ucircumflex -30 +KPX Aring udieresis -30 +KPX Aring ugrave -30 +KPX Aring uhungarumlaut -30 +KPX Aring umacron -30 +KPX Aring uogonek -30 +KPX Aring uring -30 +KPX Aring v -40 +KPX Aring w -30 +KPX Aring y -30 +KPX Aring yacute -30 +KPX Aring ydieresis -30 +KPX Atilde C -40 +KPX Atilde Cacute -40 +KPX Atilde Ccaron -40 +KPX Atilde Ccedilla -40 +KPX Atilde G -50 +KPX Atilde Gbreve -50 +KPX Atilde Gcommaaccent -50 +KPX Atilde O -40 +KPX Atilde Oacute -40 +KPX Atilde Ocircumflex -40 +KPX Atilde Odieresis -40 +KPX Atilde Ograve -40 +KPX Atilde Ohungarumlaut -40 +KPX Atilde Omacron -40 +KPX Atilde Oslash -40 +KPX Atilde Otilde -40 +KPX Atilde Q -40 +KPX Atilde T -90 +KPX Atilde Tcaron -90 +KPX Atilde Tcommaaccent -90 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -80 +KPX Atilde W -60 +KPX Atilde Y -110 +KPX Atilde Yacute -110 +KPX Atilde Ydieresis -110 +KPX Atilde u -30 +KPX Atilde uacute -30 +KPX Atilde ucircumflex -30 +KPX Atilde udieresis -30 +KPX Atilde ugrave -30 +KPX Atilde uhungarumlaut -30 +KPX Atilde umacron -30 +KPX Atilde uogonek -30 +KPX Atilde uring -30 +KPX Atilde v -40 +KPX Atilde w -30 +KPX Atilde y -30 +KPX Atilde yacute -30 +KPX Atilde ydieresis -30 +KPX B A -30 +KPX B Aacute -30 +KPX B Abreve -30 +KPX B Acircumflex -30 +KPX B Adieresis -30 +KPX B Agrave -30 +KPX B Amacron -30 +KPX B Aogonek -30 +KPX B Aring -30 +KPX B Atilde -30 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX D A -40 +KPX D Aacute -40 +KPX D Abreve -40 +KPX D Acircumflex -40 +KPX D Adieresis -40 +KPX D Agrave -40 +KPX D Amacron -40 +KPX D Aogonek -40 +KPX D Aring -40 +KPX D Atilde -40 +KPX D V -40 +KPX D W -40 +KPX D Y -70 +KPX D Yacute -70 +KPX D Ydieresis -70 +KPX D comma -30 +KPX D period -30 +KPX Dcaron A -40 +KPX Dcaron Aacute -40 +KPX Dcaron Abreve -40 +KPX Dcaron Acircumflex -40 +KPX Dcaron Adieresis -40 +KPX Dcaron Agrave -40 +KPX Dcaron Amacron -40 +KPX Dcaron Aogonek -40 +KPX Dcaron Aring -40 +KPX Dcaron Atilde -40 +KPX Dcaron V -40 +KPX Dcaron W -40 +KPX Dcaron Y -70 +KPX Dcaron Yacute -70 +KPX Dcaron Ydieresis -70 +KPX Dcaron comma -30 +KPX Dcaron period -30 +KPX Dcroat A -40 +KPX Dcroat Aacute -40 +KPX Dcroat Abreve -40 +KPX Dcroat Acircumflex -40 +KPX Dcroat Adieresis -40 +KPX Dcroat Agrave -40 +KPX Dcroat Amacron -40 +KPX Dcroat Aogonek -40 +KPX Dcroat Aring -40 +KPX Dcroat Atilde -40 +KPX Dcroat V -40 +KPX Dcroat W -40 +KPX Dcroat Y -70 +KPX Dcroat Yacute -70 +KPX Dcroat Ydieresis -70 +KPX Dcroat comma -30 +KPX Dcroat period -30 +KPX F A -80 +KPX F Aacute -80 +KPX F Abreve -80 +KPX F Acircumflex -80 +KPX F Adieresis -80 +KPX F Agrave -80 +KPX F Amacron -80 +KPX F Aogonek -80 +KPX F Aring -80 +KPX F Atilde -80 +KPX F a -20 +KPX F aacute -20 +KPX F abreve -20 +KPX F acircumflex -20 +KPX F adieresis -20 +KPX F agrave -20 +KPX F amacron -20 +KPX F aogonek -20 +KPX F aring -20 +KPX F atilde -20 +KPX F comma -100 +KPX F period -100 +KPX J A -20 +KPX J Aacute -20 +KPX J Abreve -20 +KPX J Acircumflex -20 +KPX J Adieresis -20 +KPX J Agrave -20 +KPX J Amacron -20 +KPX J Aogonek -20 +KPX J Aring -20 +KPX J Atilde -20 +KPX J comma -20 +KPX J period -20 +KPX J u -20 +KPX J uacute -20 +KPX J ucircumflex -20 +KPX J udieresis -20 +KPX J ugrave -20 +KPX J uhungarumlaut -20 +KPX J umacron -20 +KPX J uogonek -20 +KPX J uring -20 +KPX K O -30 +KPX K Oacute -30 +KPX K Ocircumflex -30 +KPX K Odieresis -30 +KPX K Ograve -30 +KPX K Ohungarumlaut -30 +KPX K Omacron -30 +KPX K Oslash -30 +KPX K Otilde -30 +KPX K e -15 +KPX K eacute -15 +KPX K ecaron -15 +KPX K ecircumflex -15 +KPX K edieresis -15 +KPX K edotaccent -15 +KPX K egrave -15 +KPX K emacron -15 +KPX K eogonek -15 +KPX K o -35 +KPX K oacute -35 +KPX K ocircumflex -35 +KPX K odieresis -35 +KPX K ograve -35 +KPX K ohungarumlaut -35 +KPX K omacron -35 +KPX K oslash -35 +KPX K otilde -35 +KPX K u -30 +KPX K uacute -30 +KPX K ucircumflex -30 +KPX K udieresis -30 +KPX K ugrave -30 +KPX K uhungarumlaut -30 +KPX K umacron -30 +KPX K uogonek -30 +KPX K uring -30 +KPX K y -40 +KPX K yacute -40 +KPX K ydieresis -40 +KPX Kcommaaccent O -30 +KPX Kcommaaccent Oacute -30 +KPX Kcommaaccent Ocircumflex -30 +KPX Kcommaaccent Odieresis -30 +KPX Kcommaaccent Ograve -30 +KPX Kcommaaccent Ohungarumlaut -30 +KPX Kcommaaccent Omacron -30 +KPX Kcommaaccent Oslash -30 +KPX Kcommaaccent Otilde -30 +KPX Kcommaaccent e -15 +KPX Kcommaaccent eacute -15 +KPX Kcommaaccent ecaron -15 +KPX Kcommaaccent ecircumflex -15 +KPX Kcommaaccent edieresis -15 +KPX Kcommaaccent edotaccent -15 +KPX Kcommaaccent egrave -15 +KPX Kcommaaccent emacron -15 +KPX Kcommaaccent eogonek -15 +KPX Kcommaaccent o -35 +KPX Kcommaaccent oacute -35 +KPX Kcommaaccent ocircumflex -35 +KPX Kcommaaccent odieresis -35 +KPX Kcommaaccent ograve -35 +KPX Kcommaaccent ohungarumlaut -35 +KPX Kcommaaccent omacron -35 +KPX Kcommaaccent oslash -35 +KPX Kcommaaccent otilde -35 +KPX Kcommaaccent u -30 +KPX Kcommaaccent uacute -30 +KPX Kcommaaccent ucircumflex -30 +KPX Kcommaaccent udieresis -30 +KPX Kcommaaccent ugrave -30 +KPX Kcommaaccent uhungarumlaut -30 +KPX Kcommaaccent umacron -30 +KPX Kcommaaccent uogonek -30 +KPX Kcommaaccent uring -30 +KPX Kcommaaccent y -40 +KPX Kcommaaccent yacute -40 +KPX Kcommaaccent ydieresis -40 +KPX L T -90 +KPX L Tcaron -90 +KPX L Tcommaaccent -90 +KPX L V -110 +KPX L W -80 +KPX L Y -120 +KPX L Yacute -120 +KPX L Ydieresis -120 +KPX L quotedblright -140 +KPX L quoteright -140 +KPX L y -30 +KPX L yacute -30 +KPX L ydieresis -30 +KPX Lacute T -90 +KPX Lacute Tcaron -90 +KPX Lacute Tcommaaccent -90 +KPX Lacute V -110 +KPX Lacute W -80 +KPX Lacute Y -120 +KPX Lacute Yacute -120 +KPX Lacute Ydieresis -120 +KPX Lacute quotedblright -140 +KPX Lacute quoteright -140 +KPX Lacute y -30 +KPX Lacute yacute -30 +KPX Lacute ydieresis -30 +KPX Lcommaaccent T -90 +KPX Lcommaaccent Tcaron -90 +KPX Lcommaaccent Tcommaaccent -90 +KPX Lcommaaccent V -110 +KPX Lcommaaccent W -80 +KPX Lcommaaccent Y -120 +KPX Lcommaaccent Yacute -120 +KPX Lcommaaccent Ydieresis -120 +KPX Lcommaaccent quotedblright -140 +KPX Lcommaaccent quoteright -140 +KPX Lcommaaccent y -30 +KPX Lcommaaccent yacute -30 +KPX Lcommaaccent ydieresis -30 +KPX Lslash T -90 +KPX Lslash Tcaron -90 +KPX Lslash Tcommaaccent -90 +KPX Lslash V -110 +KPX Lslash W -80 +KPX Lslash Y -120 +KPX Lslash Yacute -120 +KPX Lslash Ydieresis -120 +KPX Lslash quotedblright -140 +KPX Lslash quoteright -140 +KPX Lslash y -30 +KPX Lslash yacute -30 +KPX Lslash ydieresis -30 +KPX O A -50 +KPX O Aacute -50 +KPX O Abreve -50 +KPX O Acircumflex -50 +KPX O Adieresis -50 +KPX O Agrave -50 +KPX O Amacron -50 +KPX O Aogonek -50 +KPX O Aring -50 +KPX O Atilde -50 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -50 +KPX O X -50 +KPX O Y -70 +KPX O Yacute -70 +KPX O Ydieresis -70 +KPX O comma -40 +KPX O period -40 +KPX Oacute A -50 +KPX Oacute Aacute -50 +KPX Oacute Abreve -50 +KPX Oacute Acircumflex -50 +KPX Oacute Adieresis -50 +KPX Oacute Agrave -50 +KPX Oacute Amacron -50 +KPX Oacute Aogonek -50 +KPX Oacute Aring -50 +KPX Oacute Atilde -50 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -50 +KPX Oacute X -50 +KPX Oacute Y -70 +KPX Oacute Yacute -70 +KPX Oacute Ydieresis -70 +KPX Oacute comma -40 +KPX Oacute period -40 +KPX Ocircumflex A -50 +KPX Ocircumflex Aacute -50 +KPX Ocircumflex Abreve -50 +KPX Ocircumflex Acircumflex -50 +KPX Ocircumflex Adieresis -50 +KPX Ocircumflex Agrave -50 +KPX Ocircumflex Amacron -50 +KPX Ocircumflex Aogonek -50 +KPX Ocircumflex Aring -50 +KPX Ocircumflex Atilde -50 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -50 +KPX Ocircumflex X -50 +KPX Ocircumflex Y -70 +KPX Ocircumflex Yacute -70 +KPX Ocircumflex Ydieresis -70 +KPX Ocircumflex comma -40 +KPX Ocircumflex period -40 +KPX Odieresis A -50 +KPX Odieresis Aacute -50 +KPX Odieresis Abreve -50 +KPX Odieresis Acircumflex -50 +KPX Odieresis Adieresis -50 +KPX Odieresis Agrave -50 +KPX Odieresis Amacron -50 +KPX Odieresis Aogonek -50 +KPX Odieresis Aring -50 +KPX Odieresis Atilde -50 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -50 +KPX Odieresis X -50 +KPX Odieresis Y -70 +KPX Odieresis Yacute -70 +KPX Odieresis Ydieresis -70 +KPX Odieresis comma -40 +KPX Odieresis period -40 +KPX Ograve A -50 +KPX Ograve Aacute -50 +KPX Ograve Abreve -50 +KPX Ograve Acircumflex -50 +KPX Ograve Adieresis -50 +KPX Ograve Agrave -50 +KPX Ograve Amacron -50 +KPX Ograve Aogonek -50 +KPX Ograve Aring -50 +KPX Ograve Atilde -50 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -50 +KPX Ograve X -50 +KPX Ograve Y -70 +KPX Ograve Yacute -70 +KPX Ograve Ydieresis -70 +KPX Ograve comma -40 +KPX Ograve period -40 +KPX Ohungarumlaut A -50 +KPX Ohungarumlaut Aacute -50 +KPX Ohungarumlaut Abreve -50 +KPX Ohungarumlaut Acircumflex -50 +KPX Ohungarumlaut Adieresis -50 +KPX Ohungarumlaut Agrave -50 +KPX Ohungarumlaut Amacron -50 +KPX Ohungarumlaut Aogonek -50 +KPX Ohungarumlaut Aring -50 +KPX Ohungarumlaut Atilde -50 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -50 +KPX Ohungarumlaut X -50 +KPX Ohungarumlaut Y -70 +KPX Ohungarumlaut Yacute -70 +KPX Ohungarumlaut Ydieresis -70 +KPX Ohungarumlaut comma -40 +KPX Ohungarumlaut period -40 +KPX Omacron A -50 +KPX Omacron Aacute -50 +KPX Omacron Abreve -50 +KPX Omacron Acircumflex -50 +KPX Omacron Adieresis -50 +KPX Omacron Agrave -50 +KPX Omacron Amacron -50 +KPX Omacron Aogonek -50 +KPX Omacron Aring -50 +KPX Omacron Atilde -50 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -50 +KPX Omacron X -50 +KPX Omacron Y -70 +KPX Omacron Yacute -70 +KPX Omacron Ydieresis -70 +KPX Omacron comma -40 +KPX Omacron period -40 +KPX Oslash A -50 +KPX Oslash Aacute -50 +KPX Oslash Abreve -50 +KPX Oslash Acircumflex -50 +KPX Oslash Adieresis -50 +KPX Oslash Agrave -50 +KPX Oslash Amacron -50 +KPX Oslash Aogonek -50 +KPX Oslash Aring -50 +KPX Oslash Atilde -50 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -50 +KPX Oslash X -50 +KPX Oslash Y -70 +KPX Oslash Yacute -70 +KPX Oslash Ydieresis -70 +KPX Oslash comma -40 +KPX Oslash period -40 +KPX Otilde A -50 +KPX Otilde Aacute -50 +KPX Otilde Abreve -50 +KPX Otilde Acircumflex -50 +KPX Otilde Adieresis -50 +KPX Otilde Agrave -50 +KPX Otilde Amacron -50 +KPX Otilde Aogonek -50 +KPX Otilde Aring -50 +KPX Otilde Atilde -50 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -50 +KPX Otilde X -50 +KPX Otilde Y -70 +KPX Otilde Yacute -70 +KPX Otilde Ydieresis -70 +KPX Otilde comma -40 +KPX Otilde period -40 +KPX P A -100 +KPX P Aacute -100 +KPX P Abreve -100 +KPX P Acircumflex -100 +KPX P Adieresis -100 +KPX P Agrave -100 +KPX P Amacron -100 +KPX P Aogonek -100 +KPX P Aring -100 +KPX P Atilde -100 +KPX P a -30 +KPX P aacute -30 +KPX P abreve -30 +KPX P acircumflex -30 +KPX P adieresis -30 +KPX P agrave -30 +KPX P amacron -30 +KPX P aogonek -30 +KPX P aring -30 +KPX P atilde -30 +KPX P comma -120 +KPX P e -30 +KPX P eacute -30 +KPX P ecaron -30 +KPX P ecircumflex -30 +KPX P edieresis -30 +KPX P edotaccent -30 +KPX P egrave -30 +KPX P emacron -30 +KPX P eogonek -30 +KPX P o -40 +KPX P oacute -40 +KPX P ocircumflex -40 +KPX P odieresis -40 +KPX P ograve -40 +KPX P ohungarumlaut -40 +KPX P omacron -40 +KPX P oslash -40 +KPX P otilde -40 +KPX P period -120 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX Q comma 20 +KPX Q period 20 +KPX R O -20 +KPX R Oacute -20 +KPX R Ocircumflex -20 +KPX R Odieresis -20 +KPX R Ograve -20 +KPX R Ohungarumlaut -20 +KPX R Omacron -20 +KPX R Oslash -20 +KPX R Otilde -20 +KPX R T -20 +KPX R Tcaron -20 +KPX R Tcommaaccent -20 +KPX R U -20 +KPX R Uacute -20 +KPX R Ucircumflex -20 +KPX R Udieresis -20 +KPX R Ugrave -20 +KPX R Uhungarumlaut -20 +KPX R Umacron -20 +KPX R Uogonek -20 +KPX R Uring -20 +KPX R V -50 +KPX R W -40 +KPX R Y -50 +KPX R Yacute -50 +KPX R Ydieresis -50 +KPX Racute O -20 +KPX Racute Oacute -20 +KPX Racute Ocircumflex -20 +KPX Racute Odieresis -20 +KPX Racute Ograve -20 +KPX Racute Ohungarumlaut -20 +KPX Racute Omacron -20 +KPX Racute Oslash -20 +KPX Racute Otilde -20 +KPX Racute T -20 +KPX Racute Tcaron -20 +KPX Racute Tcommaaccent -20 +KPX Racute U -20 +KPX Racute Uacute -20 +KPX Racute Ucircumflex -20 +KPX Racute Udieresis -20 +KPX Racute Ugrave -20 +KPX Racute Uhungarumlaut -20 +KPX Racute Umacron -20 +KPX Racute Uogonek -20 +KPX Racute Uring -20 +KPX Racute V -50 +KPX Racute W -40 +KPX Racute Y -50 +KPX Racute Yacute -50 +KPX Racute Ydieresis -50 +KPX Rcaron O -20 +KPX Rcaron Oacute -20 +KPX Rcaron Ocircumflex -20 +KPX Rcaron Odieresis -20 +KPX Rcaron Ograve -20 +KPX Rcaron Ohungarumlaut -20 +KPX Rcaron Omacron -20 +KPX Rcaron Oslash -20 +KPX Rcaron Otilde -20 +KPX Rcaron T -20 +KPX Rcaron Tcaron -20 +KPX Rcaron Tcommaaccent -20 +KPX Rcaron U -20 +KPX Rcaron Uacute -20 +KPX Rcaron Ucircumflex -20 +KPX Rcaron Udieresis -20 +KPX Rcaron Ugrave -20 +KPX Rcaron Uhungarumlaut -20 +KPX Rcaron Umacron -20 +KPX Rcaron Uogonek -20 +KPX Rcaron Uring -20 +KPX Rcaron V -50 +KPX Rcaron W -40 +KPX Rcaron Y -50 +KPX Rcaron Yacute -50 +KPX Rcaron Ydieresis -50 +KPX Rcommaaccent O -20 +KPX Rcommaaccent Oacute -20 +KPX Rcommaaccent Ocircumflex -20 +KPX Rcommaaccent Odieresis -20 +KPX Rcommaaccent Ograve -20 +KPX Rcommaaccent Ohungarumlaut -20 +KPX Rcommaaccent Omacron -20 +KPX Rcommaaccent Oslash -20 +KPX Rcommaaccent Otilde -20 +KPX Rcommaaccent T -20 +KPX Rcommaaccent Tcaron -20 +KPX Rcommaaccent Tcommaaccent -20 +KPX Rcommaaccent U -20 +KPX Rcommaaccent Uacute -20 +KPX Rcommaaccent Ucircumflex -20 +KPX Rcommaaccent Udieresis -20 +KPX Rcommaaccent Ugrave -20 +KPX Rcommaaccent Uhungarumlaut -20 +KPX Rcommaaccent Umacron -20 +KPX Rcommaaccent Uogonek -20 +KPX Rcommaaccent Uring -20 +KPX Rcommaaccent V -50 +KPX Rcommaaccent W -40 +KPX Rcommaaccent Y -50 +KPX Rcommaaccent Yacute -50 +KPX Rcommaaccent Ydieresis -50 +KPX T A -90 +KPX T Aacute -90 +KPX T Abreve -90 +KPX T Acircumflex -90 +KPX T Adieresis -90 +KPX T Agrave -90 +KPX T Amacron -90 +KPX T Aogonek -90 +KPX T Aring -90 +KPX T Atilde -90 +KPX T O -40 +KPX T Oacute -40 +KPX T Ocircumflex -40 +KPX T Odieresis -40 +KPX T Ograve -40 +KPX T Ohungarumlaut -40 +KPX T Omacron -40 +KPX T Oslash -40 +KPX T Otilde -40 +KPX T a -80 +KPX T aacute -80 +KPX T abreve -80 +KPX T acircumflex -80 +KPX T adieresis -80 +KPX T agrave -80 +KPX T amacron -80 +KPX T aogonek -80 +KPX T aring -80 +KPX T atilde -80 +KPX T colon -40 +KPX T comma -80 +KPX T e -60 +KPX T eacute -60 +KPX T ecaron -60 +KPX T ecircumflex -60 +KPX T edieresis -60 +KPX T edotaccent -60 +KPX T egrave -60 +KPX T emacron -60 +KPX T eogonek -60 +KPX T hyphen -120 +KPX T o -80 +KPX T oacute -80 +KPX T ocircumflex -80 +KPX T odieresis -80 +KPX T ograve -80 +KPX T ohungarumlaut -80 +KPX T omacron -80 +KPX T oslash -80 +KPX T otilde -80 +KPX T period -80 +KPX T r -80 +KPX T racute -80 +KPX T rcommaaccent -80 +KPX T semicolon -40 +KPX T u -90 +KPX T uacute -90 +KPX T ucircumflex -90 +KPX T udieresis -90 +KPX T ugrave -90 +KPX T uhungarumlaut -90 +KPX T umacron -90 +KPX T uogonek -90 +KPX T uring -90 +KPX T w -60 +KPX T y -60 +KPX T yacute -60 +KPX T ydieresis -60 +KPX Tcaron A -90 +KPX Tcaron Aacute -90 +KPX Tcaron Abreve -90 +KPX Tcaron Acircumflex -90 +KPX Tcaron Adieresis -90 +KPX Tcaron Agrave -90 +KPX Tcaron Amacron -90 +KPX Tcaron Aogonek -90 +KPX Tcaron Aring -90 +KPX Tcaron Atilde -90 +KPX Tcaron O -40 +KPX Tcaron Oacute -40 +KPX Tcaron Ocircumflex -40 +KPX Tcaron Odieresis -40 +KPX Tcaron Ograve -40 +KPX Tcaron Ohungarumlaut -40 +KPX Tcaron Omacron -40 +KPX Tcaron Oslash -40 +KPX Tcaron Otilde -40 +KPX Tcaron a -80 +KPX Tcaron aacute -80 +KPX Tcaron abreve -80 +KPX Tcaron acircumflex -80 +KPX Tcaron adieresis -80 +KPX Tcaron agrave -80 +KPX Tcaron amacron -80 +KPX Tcaron aogonek -80 +KPX Tcaron aring -80 +KPX Tcaron atilde -80 +KPX Tcaron colon -40 +KPX Tcaron comma -80 +KPX Tcaron e -60 +KPX Tcaron eacute -60 +KPX Tcaron ecaron -60 +KPX Tcaron ecircumflex -60 +KPX Tcaron edieresis -60 +KPX Tcaron edotaccent -60 +KPX Tcaron egrave -60 +KPX Tcaron emacron -60 +KPX Tcaron eogonek -60 +KPX Tcaron hyphen -120 +KPX Tcaron o -80 +KPX Tcaron oacute -80 +KPX Tcaron ocircumflex -80 +KPX Tcaron odieresis -80 +KPX Tcaron ograve -80 +KPX Tcaron ohungarumlaut -80 +KPX Tcaron omacron -80 +KPX Tcaron oslash -80 +KPX Tcaron otilde -80 +KPX Tcaron period -80 +KPX Tcaron r -80 +KPX Tcaron racute -80 +KPX Tcaron rcommaaccent -80 +KPX Tcaron semicolon -40 +KPX Tcaron u -90 +KPX Tcaron uacute -90 +KPX Tcaron ucircumflex -90 +KPX Tcaron udieresis -90 +KPX Tcaron ugrave -90 +KPX Tcaron uhungarumlaut -90 +KPX Tcaron umacron -90 +KPX Tcaron uogonek -90 +KPX Tcaron uring -90 +KPX Tcaron w -60 +KPX Tcaron y -60 +KPX Tcaron yacute -60 +KPX Tcaron ydieresis -60 +KPX Tcommaaccent A -90 +KPX Tcommaaccent Aacute -90 +KPX Tcommaaccent Abreve -90 +KPX Tcommaaccent Acircumflex -90 +KPX Tcommaaccent Adieresis -90 +KPX Tcommaaccent Agrave -90 +KPX Tcommaaccent Amacron -90 +KPX Tcommaaccent Aogonek -90 +KPX Tcommaaccent Aring -90 +KPX Tcommaaccent Atilde -90 +KPX Tcommaaccent O -40 +KPX Tcommaaccent Oacute -40 +KPX Tcommaaccent Ocircumflex -40 +KPX Tcommaaccent Odieresis -40 +KPX Tcommaaccent Ograve -40 +KPX Tcommaaccent Ohungarumlaut -40 +KPX Tcommaaccent Omacron -40 +KPX Tcommaaccent Oslash -40 +KPX Tcommaaccent Otilde -40 +KPX Tcommaaccent a -80 +KPX Tcommaaccent aacute -80 +KPX Tcommaaccent abreve -80 +KPX Tcommaaccent acircumflex -80 +KPX Tcommaaccent adieresis -80 +KPX Tcommaaccent agrave -80 +KPX Tcommaaccent amacron -80 +KPX Tcommaaccent aogonek -80 +KPX Tcommaaccent aring -80 +KPX Tcommaaccent atilde -80 +KPX Tcommaaccent colon -40 +KPX Tcommaaccent comma -80 +KPX Tcommaaccent e -60 +KPX Tcommaaccent eacute -60 +KPX Tcommaaccent ecaron -60 +KPX Tcommaaccent ecircumflex -60 +KPX Tcommaaccent edieresis -60 +KPX Tcommaaccent edotaccent -60 +KPX Tcommaaccent egrave -60 +KPX Tcommaaccent emacron -60 +KPX Tcommaaccent eogonek -60 +KPX Tcommaaccent hyphen -120 +KPX Tcommaaccent o -80 +KPX Tcommaaccent oacute -80 +KPX Tcommaaccent ocircumflex -80 +KPX Tcommaaccent odieresis -80 +KPX Tcommaaccent ograve -80 +KPX Tcommaaccent ohungarumlaut -80 +KPX Tcommaaccent omacron -80 +KPX Tcommaaccent oslash -80 +KPX Tcommaaccent otilde -80 +KPX Tcommaaccent period -80 +KPX Tcommaaccent r -80 +KPX Tcommaaccent racute -80 +KPX Tcommaaccent rcommaaccent -80 +KPX Tcommaaccent semicolon -40 +KPX Tcommaaccent u -90 +KPX Tcommaaccent uacute -90 +KPX Tcommaaccent ucircumflex -90 +KPX Tcommaaccent udieresis -90 +KPX Tcommaaccent ugrave -90 +KPX Tcommaaccent uhungarumlaut -90 +KPX Tcommaaccent umacron -90 +KPX Tcommaaccent uogonek -90 +KPX Tcommaaccent uring -90 +KPX Tcommaaccent w -60 +KPX Tcommaaccent y -60 +KPX Tcommaaccent yacute -60 +KPX Tcommaaccent ydieresis -60 +KPX U A -50 +KPX U Aacute -50 +KPX U Abreve -50 +KPX U Acircumflex -50 +KPX U Adieresis -50 +KPX U Agrave -50 +KPX U Amacron -50 +KPX U Aogonek -50 +KPX U Aring -50 +KPX U Atilde -50 +KPX U comma -30 +KPX U period -30 +KPX Uacute A -50 +KPX Uacute Aacute -50 +KPX Uacute Abreve -50 +KPX Uacute Acircumflex -50 +KPX Uacute Adieresis -50 +KPX Uacute Agrave -50 +KPX Uacute Amacron -50 +KPX Uacute Aogonek -50 +KPX Uacute Aring -50 +KPX Uacute Atilde -50 +KPX Uacute comma -30 +KPX Uacute period -30 +KPX Ucircumflex A -50 +KPX Ucircumflex Aacute -50 +KPX Ucircumflex Abreve -50 +KPX Ucircumflex Acircumflex -50 +KPX Ucircumflex Adieresis -50 +KPX Ucircumflex Agrave -50 +KPX Ucircumflex Amacron -50 +KPX Ucircumflex Aogonek -50 +KPX Ucircumflex Aring -50 +KPX Ucircumflex Atilde -50 +KPX Ucircumflex comma -30 +KPX Ucircumflex period -30 +KPX Udieresis A -50 +KPX Udieresis Aacute -50 +KPX Udieresis Abreve -50 +KPX Udieresis Acircumflex -50 +KPX Udieresis Adieresis -50 +KPX Udieresis Agrave -50 +KPX Udieresis Amacron -50 +KPX Udieresis Aogonek -50 +KPX Udieresis Aring -50 +KPX Udieresis Atilde -50 +KPX Udieresis comma -30 +KPX Udieresis period -30 +KPX Ugrave A -50 +KPX Ugrave Aacute -50 +KPX Ugrave Abreve -50 +KPX Ugrave Acircumflex -50 +KPX Ugrave Adieresis -50 +KPX Ugrave Agrave -50 +KPX Ugrave Amacron -50 +KPX Ugrave Aogonek -50 +KPX Ugrave Aring -50 +KPX Ugrave Atilde -50 +KPX Ugrave comma -30 +KPX Ugrave period -30 +KPX Uhungarumlaut A -50 +KPX Uhungarumlaut Aacute -50 +KPX Uhungarumlaut Abreve -50 +KPX Uhungarumlaut Acircumflex -50 +KPX Uhungarumlaut Adieresis -50 +KPX Uhungarumlaut Agrave -50 +KPX Uhungarumlaut Amacron -50 +KPX Uhungarumlaut Aogonek -50 +KPX Uhungarumlaut Aring -50 +KPX Uhungarumlaut Atilde -50 +KPX Uhungarumlaut comma -30 +KPX Uhungarumlaut period -30 +KPX Umacron A -50 +KPX Umacron Aacute -50 +KPX Umacron Abreve -50 +KPX Umacron Acircumflex -50 +KPX Umacron Adieresis -50 +KPX Umacron Agrave -50 +KPX Umacron Amacron -50 +KPX Umacron Aogonek -50 +KPX Umacron Aring -50 +KPX Umacron Atilde -50 +KPX Umacron comma -30 +KPX Umacron period -30 +KPX Uogonek A -50 +KPX Uogonek Aacute -50 +KPX Uogonek Abreve -50 +KPX Uogonek Acircumflex -50 +KPX Uogonek Adieresis -50 +KPX Uogonek Agrave -50 +KPX Uogonek Amacron -50 +KPX Uogonek Aogonek -50 +KPX Uogonek Aring -50 +KPX Uogonek Atilde -50 +KPX Uogonek comma -30 +KPX Uogonek period -30 +KPX Uring A -50 +KPX Uring Aacute -50 +KPX Uring Abreve -50 +KPX Uring Acircumflex -50 +KPX Uring Adieresis -50 +KPX Uring Agrave -50 +KPX Uring Amacron -50 +KPX Uring Aogonek -50 +KPX Uring Aring -50 +KPX Uring Atilde -50 +KPX Uring comma -30 +KPX Uring period -30 +KPX V A -80 +KPX V Aacute -80 +KPX V Abreve -80 +KPX V Acircumflex -80 +KPX V Adieresis -80 +KPX V Agrave -80 +KPX V Amacron -80 +KPX V Aogonek -80 +KPX V Aring -80 +KPX V Atilde -80 +KPX V G -50 +KPX V Gbreve -50 +KPX V Gcommaaccent -50 +KPX V O -50 +KPX V Oacute -50 +KPX V Ocircumflex -50 +KPX V Odieresis -50 +KPX V Ograve -50 +KPX V Ohungarumlaut -50 +KPX V Omacron -50 +KPX V Oslash -50 +KPX V Otilde -50 +KPX V a -60 +KPX V aacute -60 +KPX V abreve -60 +KPX V acircumflex -60 +KPX V adieresis -60 +KPX V agrave -60 +KPX V amacron -60 +KPX V aogonek -60 +KPX V aring -60 +KPX V atilde -60 +KPX V colon -40 +KPX V comma -120 +KPX V e -50 +KPX V eacute -50 +KPX V ecaron -50 +KPX V ecircumflex -50 +KPX V edieresis -50 +KPX V edotaccent -50 +KPX V egrave -50 +KPX V emacron -50 +KPX V eogonek -50 +KPX V hyphen -80 +KPX V o -90 +KPX V oacute -90 +KPX V ocircumflex -90 +KPX V odieresis -90 +KPX V ograve -90 +KPX V ohungarumlaut -90 +KPX V omacron -90 +KPX V oslash -90 +KPX V otilde -90 +KPX V period -120 +KPX V semicolon -40 +KPX V u -60 +KPX V uacute -60 +KPX V ucircumflex -60 +KPX V udieresis -60 +KPX V ugrave -60 +KPX V uhungarumlaut -60 +KPX V umacron -60 +KPX V uogonek -60 +KPX V uring -60 +KPX W A -60 +KPX W Aacute -60 +KPX W Abreve -60 +KPX W Acircumflex -60 +KPX W Adieresis -60 +KPX W Agrave -60 +KPX W Amacron -60 +KPX W Aogonek -60 +KPX W Aring -60 +KPX W Atilde -60 +KPX W O -20 +KPX W Oacute -20 +KPX W Ocircumflex -20 +KPX W Odieresis -20 +KPX W Ograve -20 +KPX W Ohungarumlaut -20 +KPX W Omacron -20 +KPX W Oslash -20 +KPX W Otilde -20 +KPX W a -40 +KPX W aacute -40 +KPX W abreve -40 +KPX W acircumflex -40 +KPX W adieresis -40 +KPX W agrave -40 +KPX W amacron -40 +KPX W aogonek -40 +KPX W aring -40 +KPX W atilde -40 +KPX W colon -10 +KPX W comma -80 +KPX W e -35 +KPX W eacute -35 +KPX W ecaron -35 +KPX W ecircumflex -35 +KPX W edieresis -35 +KPX W edotaccent -35 +KPX W egrave -35 +KPX W emacron -35 +KPX W eogonek -35 +KPX W hyphen -40 +KPX W o -60 +KPX W oacute -60 +KPX W ocircumflex -60 +KPX W odieresis -60 +KPX W ograve -60 +KPX W ohungarumlaut -60 +KPX W omacron -60 +KPX W oslash -60 +KPX W otilde -60 +KPX W period -80 +KPX W semicolon -10 +KPX W u -45 +KPX W uacute -45 +KPX W ucircumflex -45 +KPX W udieresis -45 +KPX W ugrave -45 +KPX W uhungarumlaut -45 +KPX W umacron -45 +KPX W uogonek -45 +KPX W uring -45 +KPX W y -20 +KPX W yacute -20 +KPX W ydieresis -20 +KPX Y A -110 +KPX Y Aacute -110 +KPX Y Abreve -110 +KPX Y Acircumflex -110 +KPX Y Adieresis -110 +KPX Y Agrave -110 +KPX Y Amacron -110 +KPX Y Aogonek -110 +KPX Y Aring -110 +KPX Y Atilde -110 +KPX Y O -70 +KPX Y Oacute -70 +KPX Y Ocircumflex -70 +KPX Y Odieresis -70 +KPX Y Ograve -70 +KPX Y Ohungarumlaut -70 +KPX Y Omacron -70 +KPX Y Oslash -70 +KPX Y Otilde -70 +KPX Y a -90 +KPX Y aacute -90 +KPX Y abreve -90 +KPX Y acircumflex -90 +KPX Y adieresis -90 +KPX Y agrave -90 +KPX Y amacron -90 +KPX Y aogonek -90 +KPX Y aring -90 +KPX Y atilde -90 +KPX Y colon -50 +KPX Y comma -100 +KPX Y e -80 +KPX Y eacute -80 +KPX Y ecaron -80 +KPX Y ecircumflex -80 +KPX Y edieresis -80 +KPX Y edotaccent -80 +KPX Y egrave -80 +KPX Y emacron -80 +KPX Y eogonek -80 +KPX Y o -100 +KPX Y oacute -100 +KPX Y ocircumflex -100 +KPX Y odieresis -100 +KPX Y ograve -100 +KPX Y ohungarumlaut -100 +KPX Y omacron -100 +KPX Y oslash -100 +KPX Y otilde -100 +KPX Y period -100 +KPX Y semicolon -50 +KPX Y u -100 +KPX Y uacute -100 +KPX Y ucircumflex -100 +KPX Y udieresis -100 +KPX Y ugrave -100 +KPX Y uhungarumlaut -100 +KPX Y umacron -100 +KPX Y uogonek -100 +KPX Y uring -100 +KPX Yacute A -110 +KPX Yacute Aacute -110 +KPX Yacute Abreve -110 +KPX Yacute Acircumflex -110 +KPX Yacute Adieresis -110 +KPX Yacute Agrave -110 +KPX Yacute Amacron -110 +KPX Yacute Aogonek -110 +KPX Yacute Aring -110 +KPX Yacute Atilde -110 +KPX Yacute O -70 +KPX Yacute Oacute -70 +KPX Yacute Ocircumflex -70 +KPX Yacute Odieresis -70 +KPX Yacute Ograve -70 +KPX Yacute Ohungarumlaut -70 +KPX Yacute Omacron -70 +KPX Yacute Oslash -70 +KPX Yacute Otilde -70 +KPX Yacute a -90 +KPX Yacute aacute -90 +KPX Yacute abreve -90 +KPX Yacute acircumflex -90 +KPX Yacute adieresis -90 +KPX Yacute agrave -90 +KPX Yacute amacron -90 +KPX Yacute aogonek -90 +KPX Yacute aring -90 +KPX Yacute atilde -90 +KPX Yacute colon -50 +KPX Yacute comma -100 +KPX Yacute e -80 +KPX Yacute eacute -80 +KPX Yacute ecaron -80 +KPX Yacute ecircumflex -80 +KPX Yacute edieresis -80 +KPX Yacute edotaccent -80 +KPX Yacute egrave -80 +KPX Yacute emacron -80 +KPX Yacute eogonek -80 +KPX Yacute o -100 +KPX Yacute oacute -100 +KPX Yacute ocircumflex -100 +KPX Yacute odieresis -100 +KPX Yacute ograve -100 +KPX Yacute ohungarumlaut -100 +KPX Yacute omacron -100 +KPX Yacute oslash -100 +KPX Yacute otilde -100 +KPX Yacute period -100 +KPX Yacute semicolon -50 +KPX Yacute u -100 +KPX Yacute uacute -100 +KPX Yacute ucircumflex -100 +KPX Yacute udieresis -100 +KPX Yacute ugrave -100 +KPX Yacute uhungarumlaut -100 +KPX Yacute umacron -100 +KPX Yacute uogonek -100 +KPX Yacute uring -100 +KPX Ydieresis A -110 +KPX Ydieresis Aacute -110 +KPX Ydieresis Abreve -110 +KPX Ydieresis Acircumflex -110 +KPX Ydieresis Adieresis -110 +KPX Ydieresis Agrave -110 +KPX Ydieresis Amacron -110 +KPX Ydieresis Aogonek -110 +KPX Ydieresis Aring -110 +KPX Ydieresis Atilde -110 +KPX Ydieresis O -70 +KPX Ydieresis Oacute -70 +KPX Ydieresis Ocircumflex -70 +KPX Ydieresis Odieresis -70 +KPX Ydieresis Ograve -70 +KPX Ydieresis Ohungarumlaut -70 +KPX Ydieresis Omacron -70 +KPX Ydieresis Oslash -70 +KPX Ydieresis Otilde -70 +KPX Ydieresis a -90 +KPX Ydieresis aacute -90 +KPX Ydieresis abreve -90 +KPX Ydieresis acircumflex -90 +KPX Ydieresis adieresis -90 +KPX Ydieresis agrave -90 +KPX Ydieresis amacron -90 +KPX Ydieresis aogonek -90 +KPX Ydieresis aring -90 +KPX Ydieresis atilde -90 +KPX Ydieresis colon -50 +KPX Ydieresis comma -100 +KPX Ydieresis e -80 +KPX Ydieresis eacute -80 +KPX Ydieresis ecaron -80 +KPX Ydieresis ecircumflex -80 +KPX Ydieresis edieresis -80 +KPX Ydieresis edotaccent -80 +KPX Ydieresis egrave -80 +KPX Ydieresis emacron -80 +KPX Ydieresis eogonek -80 +KPX Ydieresis o -100 +KPX Ydieresis oacute -100 +KPX Ydieresis ocircumflex -100 +KPX Ydieresis odieresis -100 +KPX Ydieresis ograve -100 +KPX Ydieresis ohungarumlaut -100 +KPX Ydieresis omacron -100 +KPX Ydieresis oslash -100 +KPX Ydieresis otilde -100 +KPX Ydieresis period -100 +KPX Ydieresis semicolon -50 +KPX Ydieresis u -100 +KPX Ydieresis uacute -100 +KPX Ydieresis ucircumflex -100 +KPX Ydieresis udieresis -100 +KPX Ydieresis ugrave -100 +KPX Ydieresis uhungarumlaut -100 +KPX Ydieresis umacron -100 +KPX Ydieresis uogonek -100 +KPX Ydieresis uring -100 +KPX a g -10 +KPX a gbreve -10 +KPX a gcommaaccent -10 +KPX a v -15 +KPX a w -15 +KPX a y -20 +KPX a yacute -20 +KPX a ydieresis -20 +KPX aacute g -10 +KPX aacute gbreve -10 +KPX aacute gcommaaccent -10 +KPX aacute v -15 +KPX aacute w -15 +KPX aacute y -20 +KPX aacute yacute -20 +KPX aacute ydieresis -20 +KPX abreve g -10 +KPX abreve gbreve -10 +KPX abreve gcommaaccent -10 +KPX abreve v -15 +KPX abreve w -15 +KPX abreve y -20 +KPX abreve yacute -20 +KPX abreve ydieresis -20 +KPX acircumflex g -10 +KPX acircumflex gbreve -10 +KPX acircumflex gcommaaccent -10 +KPX acircumflex v -15 +KPX acircumflex w -15 +KPX acircumflex y -20 +KPX acircumflex yacute -20 +KPX acircumflex ydieresis -20 +KPX adieresis g -10 +KPX adieresis gbreve -10 +KPX adieresis gcommaaccent -10 +KPX adieresis v -15 +KPX adieresis w -15 +KPX adieresis y -20 +KPX adieresis yacute -20 +KPX adieresis ydieresis -20 +KPX agrave g -10 +KPX agrave gbreve -10 +KPX agrave gcommaaccent -10 +KPX agrave v -15 +KPX agrave w -15 +KPX agrave y -20 +KPX agrave yacute -20 +KPX agrave ydieresis -20 +KPX amacron g -10 +KPX amacron gbreve -10 +KPX amacron gcommaaccent -10 +KPX amacron v -15 +KPX amacron w -15 +KPX amacron y -20 +KPX amacron yacute -20 +KPX amacron ydieresis -20 +KPX aogonek g -10 +KPX aogonek gbreve -10 +KPX aogonek gcommaaccent -10 +KPX aogonek v -15 +KPX aogonek w -15 +KPX aogonek y -20 +KPX aogonek yacute -20 +KPX aogonek ydieresis -20 +KPX aring g -10 +KPX aring gbreve -10 +KPX aring gcommaaccent -10 +KPX aring v -15 +KPX aring w -15 +KPX aring y -20 +KPX aring yacute -20 +KPX aring ydieresis -20 +KPX atilde g -10 +KPX atilde gbreve -10 +KPX atilde gcommaaccent -10 +KPX atilde v -15 +KPX atilde w -15 +KPX atilde y -20 +KPX atilde yacute -20 +KPX atilde ydieresis -20 +KPX b l -10 +KPX b lacute -10 +KPX b lcommaaccent -10 +KPX b lslash -10 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX b v -20 +KPX b y -20 +KPX b yacute -20 +KPX b ydieresis -20 +KPX c h -10 +KPX c k -20 +KPX c kcommaaccent -20 +KPX c l -20 +KPX c lacute -20 +KPX c lcommaaccent -20 +KPX c lslash -20 +KPX c y -10 +KPX c yacute -10 +KPX c ydieresis -10 +KPX cacute h -10 +KPX cacute k -20 +KPX cacute kcommaaccent -20 +KPX cacute l -20 +KPX cacute lacute -20 +KPX cacute lcommaaccent -20 +KPX cacute lslash -20 +KPX cacute y -10 +KPX cacute yacute -10 +KPX cacute ydieresis -10 +KPX ccaron h -10 +KPX ccaron k -20 +KPX ccaron kcommaaccent -20 +KPX ccaron l -20 +KPX ccaron lacute -20 +KPX ccaron lcommaaccent -20 +KPX ccaron lslash -20 +KPX ccaron y -10 +KPX ccaron yacute -10 +KPX ccaron ydieresis -10 +KPX ccedilla h -10 +KPX ccedilla k -20 +KPX ccedilla kcommaaccent -20 +KPX ccedilla l -20 +KPX ccedilla lacute -20 +KPX ccedilla lcommaaccent -20 +KPX ccedilla lslash -20 +KPX ccedilla y -10 +KPX ccedilla yacute -10 +KPX ccedilla ydieresis -10 +KPX colon space -40 +KPX comma quotedblright -120 +KPX comma quoteright -120 +KPX comma space -40 +KPX d d -10 +KPX d dcroat -10 +KPX d v -15 +KPX d w -15 +KPX d y -15 +KPX d yacute -15 +KPX d ydieresis -15 +KPX dcroat d -10 +KPX dcroat dcroat -10 +KPX dcroat v -15 +KPX dcroat w -15 +KPX dcroat y -15 +KPX dcroat yacute -15 +KPX dcroat ydieresis -15 +KPX e comma 10 +KPX e period 20 +KPX e v -15 +KPX e w -15 +KPX e x -15 +KPX e y -15 +KPX e yacute -15 +KPX e ydieresis -15 +KPX eacute comma 10 +KPX eacute period 20 +KPX eacute v -15 +KPX eacute w -15 +KPX eacute x -15 +KPX eacute y -15 +KPX eacute yacute -15 +KPX eacute ydieresis -15 +KPX ecaron comma 10 +KPX ecaron period 20 +KPX ecaron v -15 +KPX ecaron w -15 +KPX ecaron x -15 +KPX ecaron y -15 +KPX ecaron yacute -15 +KPX ecaron ydieresis -15 +KPX ecircumflex comma 10 +KPX ecircumflex period 20 +KPX ecircumflex v -15 +KPX ecircumflex w -15 +KPX ecircumflex x -15 +KPX ecircumflex y -15 +KPX ecircumflex yacute -15 +KPX ecircumflex ydieresis -15 +KPX edieresis comma 10 +KPX edieresis period 20 +KPX edieresis v -15 +KPX edieresis w -15 +KPX edieresis x -15 +KPX edieresis y -15 +KPX edieresis yacute -15 +KPX edieresis ydieresis -15 +KPX edotaccent comma 10 +KPX edotaccent period 20 +KPX edotaccent v -15 +KPX edotaccent w -15 +KPX edotaccent x -15 +KPX edotaccent y -15 +KPX edotaccent yacute -15 +KPX edotaccent ydieresis -15 +KPX egrave comma 10 +KPX egrave period 20 +KPX egrave v -15 +KPX egrave w -15 +KPX egrave x -15 +KPX egrave y -15 +KPX egrave yacute -15 +KPX egrave ydieresis -15 +KPX emacron comma 10 +KPX emacron period 20 +KPX emacron v -15 +KPX emacron w -15 +KPX emacron x -15 +KPX emacron y -15 +KPX emacron yacute -15 +KPX emacron ydieresis -15 +KPX eogonek comma 10 +KPX eogonek period 20 +KPX eogonek v -15 +KPX eogonek w -15 +KPX eogonek x -15 +KPX eogonek y -15 +KPX eogonek yacute -15 +KPX eogonek ydieresis -15 +KPX f comma -10 +KPX f e -10 +KPX f eacute -10 +KPX f ecaron -10 +KPX f ecircumflex -10 +KPX f edieresis -10 +KPX f edotaccent -10 +KPX f egrave -10 +KPX f emacron -10 +KPX f eogonek -10 +KPX f o -20 +KPX f oacute -20 +KPX f ocircumflex -20 +KPX f odieresis -20 +KPX f ograve -20 +KPX f ohungarumlaut -20 +KPX f omacron -20 +KPX f oslash -20 +KPX f otilde -20 +KPX f period -10 +KPX f quotedblright 30 +KPX f quoteright 30 +KPX g e 10 +KPX g eacute 10 +KPX g ecaron 10 +KPX g ecircumflex 10 +KPX g edieresis 10 +KPX g edotaccent 10 +KPX g egrave 10 +KPX g emacron 10 +KPX g eogonek 10 +KPX g g -10 +KPX g gbreve -10 +KPX g gcommaaccent -10 +KPX gbreve e 10 +KPX gbreve eacute 10 +KPX gbreve ecaron 10 +KPX gbreve ecircumflex 10 +KPX gbreve edieresis 10 +KPX gbreve edotaccent 10 +KPX gbreve egrave 10 +KPX gbreve emacron 10 +KPX gbreve eogonek 10 +KPX gbreve g -10 +KPX gbreve gbreve -10 +KPX gbreve gcommaaccent -10 +KPX gcommaaccent e 10 +KPX gcommaaccent eacute 10 +KPX gcommaaccent ecaron 10 +KPX gcommaaccent ecircumflex 10 +KPX gcommaaccent edieresis 10 +KPX gcommaaccent edotaccent 10 +KPX gcommaaccent egrave 10 +KPX gcommaaccent emacron 10 +KPX gcommaaccent eogonek 10 +KPX gcommaaccent g -10 +KPX gcommaaccent gbreve -10 +KPX gcommaaccent gcommaaccent -10 +KPX h y -20 +KPX h yacute -20 +KPX h ydieresis -20 +KPX k o -15 +KPX k oacute -15 +KPX k ocircumflex -15 +KPX k odieresis -15 +KPX k ograve -15 +KPX k ohungarumlaut -15 +KPX k omacron -15 +KPX k oslash -15 +KPX k otilde -15 +KPX kcommaaccent o -15 +KPX kcommaaccent oacute -15 +KPX kcommaaccent ocircumflex -15 +KPX kcommaaccent odieresis -15 +KPX kcommaaccent ograve -15 +KPX kcommaaccent ohungarumlaut -15 +KPX kcommaaccent omacron -15 +KPX kcommaaccent oslash -15 +KPX kcommaaccent otilde -15 +KPX l w -15 +KPX l y -15 +KPX l yacute -15 +KPX l ydieresis -15 +KPX lacute w -15 +KPX lacute y -15 +KPX lacute yacute -15 +KPX lacute ydieresis -15 +KPX lcommaaccent w -15 +KPX lcommaaccent y -15 +KPX lcommaaccent yacute -15 +KPX lcommaaccent ydieresis -15 +KPX lslash w -15 +KPX lslash y -15 +KPX lslash yacute -15 +KPX lslash ydieresis -15 +KPX m u -20 +KPX m uacute -20 +KPX m ucircumflex -20 +KPX m udieresis -20 +KPX m ugrave -20 +KPX m uhungarumlaut -20 +KPX m umacron -20 +KPX m uogonek -20 +KPX m uring -20 +KPX m y -30 +KPX m yacute -30 +KPX m ydieresis -30 +KPX n u -10 +KPX n uacute -10 +KPX n ucircumflex -10 +KPX n udieresis -10 +KPX n ugrave -10 +KPX n uhungarumlaut -10 +KPX n umacron -10 +KPX n uogonek -10 +KPX n uring -10 +KPX n v -40 +KPX n y -20 +KPX n yacute -20 +KPX n ydieresis -20 +KPX nacute u -10 +KPX nacute uacute -10 +KPX nacute ucircumflex -10 +KPX nacute udieresis -10 +KPX nacute ugrave -10 +KPX nacute uhungarumlaut -10 +KPX nacute umacron -10 +KPX nacute uogonek -10 +KPX nacute uring -10 +KPX nacute v -40 +KPX nacute y -20 +KPX nacute yacute -20 +KPX nacute ydieresis -20 +KPX ncaron u -10 +KPX ncaron uacute -10 +KPX ncaron ucircumflex -10 +KPX ncaron udieresis -10 +KPX ncaron ugrave -10 +KPX ncaron uhungarumlaut -10 +KPX ncaron umacron -10 +KPX ncaron uogonek -10 +KPX ncaron uring -10 +KPX ncaron v -40 +KPX ncaron y -20 +KPX ncaron yacute -20 +KPX ncaron ydieresis -20 +KPX ncommaaccent u -10 +KPX ncommaaccent uacute -10 +KPX ncommaaccent ucircumflex -10 +KPX ncommaaccent udieresis -10 +KPX ncommaaccent ugrave -10 +KPX ncommaaccent uhungarumlaut -10 +KPX ncommaaccent umacron -10 +KPX ncommaaccent uogonek -10 +KPX ncommaaccent uring -10 +KPX ncommaaccent v -40 +KPX ncommaaccent y -20 +KPX ncommaaccent yacute -20 +KPX ncommaaccent ydieresis -20 +KPX ntilde u -10 +KPX ntilde uacute -10 +KPX ntilde ucircumflex -10 +KPX ntilde udieresis -10 +KPX ntilde ugrave -10 +KPX ntilde uhungarumlaut -10 +KPX ntilde umacron -10 +KPX ntilde uogonek -10 +KPX ntilde uring -10 +KPX ntilde v -40 +KPX ntilde y -20 +KPX ntilde yacute -20 +KPX ntilde ydieresis -20 +KPX o v -20 +KPX o w -15 +KPX o x -30 +KPX o y -20 +KPX o yacute -20 +KPX o ydieresis -20 +KPX oacute v -20 +KPX oacute w -15 +KPX oacute x -30 +KPX oacute y -20 +KPX oacute yacute -20 +KPX oacute ydieresis -20 +KPX ocircumflex v -20 +KPX ocircumflex w -15 +KPX ocircumflex x -30 +KPX ocircumflex y -20 +KPX ocircumflex yacute -20 +KPX ocircumflex ydieresis -20 +KPX odieresis v -20 +KPX odieresis w -15 +KPX odieresis x -30 +KPX odieresis y -20 +KPX odieresis yacute -20 +KPX odieresis ydieresis -20 +KPX ograve v -20 +KPX ograve w -15 +KPX ograve x -30 +KPX ograve y -20 +KPX ograve yacute -20 +KPX ograve ydieresis -20 +KPX ohungarumlaut v -20 +KPX ohungarumlaut w -15 +KPX ohungarumlaut x -30 +KPX ohungarumlaut y -20 +KPX ohungarumlaut yacute -20 +KPX ohungarumlaut ydieresis -20 +KPX omacron v -20 +KPX omacron w -15 +KPX omacron x -30 +KPX omacron y -20 +KPX omacron yacute -20 +KPX omacron ydieresis -20 +KPX oslash v -20 +KPX oslash w -15 +KPX oslash x -30 +KPX oslash y -20 +KPX oslash yacute -20 +KPX oslash ydieresis -20 +KPX otilde v -20 +KPX otilde w -15 +KPX otilde x -30 +KPX otilde y -20 +KPX otilde yacute -20 +KPX otilde ydieresis -20 +KPX p y -15 +KPX p yacute -15 +KPX p ydieresis -15 +KPX period quotedblright -120 +KPX period quoteright -120 +KPX period space -40 +KPX quotedblright space -80 +KPX quoteleft quoteleft -46 +KPX quoteright d -80 +KPX quoteright dcroat -80 +KPX quoteright l -20 +KPX quoteright lacute -20 +KPX quoteright lcommaaccent -20 +KPX quoteright lslash -20 +KPX quoteright quoteright -46 +KPX quoteright r -40 +KPX quoteright racute -40 +KPX quoteright rcaron -40 +KPX quoteright rcommaaccent -40 +KPX quoteright s -60 +KPX quoteright sacute -60 +KPX quoteright scaron -60 +KPX quoteright scedilla -60 +KPX quoteright scommaaccent -60 +KPX quoteright space -80 +KPX quoteright v -20 +KPX r c -20 +KPX r cacute -20 +KPX r ccaron -20 +KPX r ccedilla -20 +KPX r comma -60 +KPX r d -20 +KPX r dcroat -20 +KPX r g -15 +KPX r gbreve -15 +KPX r gcommaaccent -15 +KPX r hyphen -20 +KPX r o -20 +KPX r oacute -20 +KPX r ocircumflex -20 +KPX r odieresis -20 +KPX r ograve -20 +KPX r ohungarumlaut -20 +KPX r omacron -20 +KPX r oslash -20 +KPX r otilde -20 +KPX r period -60 +KPX r q -20 +KPX r s -15 +KPX r sacute -15 +KPX r scaron -15 +KPX r scedilla -15 +KPX r scommaaccent -15 +KPX r t 20 +KPX r tcommaaccent 20 +KPX r v 10 +KPX r y 10 +KPX r yacute 10 +KPX r ydieresis 10 +KPX racute c -20 +KPX racute cacute -20 +KPX racute ccaron -20 +KPX racute ccedilla -20 +KPX racute comma -60 +KPX racute d -20 +KPX racute dcroat -20 +KPX racute g -15 +KPX racute gbreve -15 +KPX racute gcommaaccent -15 +KPX racute hyphen -20 +KPX racute o -20 +KPX racute oacute -20 +KPX racute ocircumflex -20 +KPX racute odieresis -20 +KPX racute ograve -20 +KPX racute ohungarumlaut -20 +KPX racute omacron -20 +KPX racute oslash -20 +KPX racute otilde -20 +KPX racute period -60 +KPX racute q -20 +KPX racute s -15 +KPX racute sacute -15 +KPX racute scaron -15 +KPX racute scedilla -15 +KPX racute scommaaccent -15 +KPX racute t 20 +KPX racute tcommaaccent 20 +KPX racute v 10 +KPX racute y 10 +KPX racute yacute 10 +KPX racute ydieresis 10 +KPX rcaron c -20 +KPX rcaron cacute -20 +KPX rcaron ccaron -20 +KPX rcaron ccedilla -20 +KPX rcaron comma -60 +KPX rcaron d -20 +KPX rcaron dcroat -20 +KPX rcaron g -15 +KPX rcaron gbreve -15 +KPX rcaron gcommaaccent -15 +KPX rcaron hyphen -20 +KPX rcaron o -20 +KPX rcaron oacute -20 +KPX rcaron ocircumflex -20 +KPX rcaron odieresis -20 +KPX rcaron ograve -20 +KPX rcaron ohungarumlaut -20 +KPX rcaron omacron -20 +KPX rcaron oslash -20 +KPX rcaron otilde -20 +KPX rcaron period -60 +KPX rcaron q -20 +KPX rcaron s -15 +KPX rcaron sacute -15 +KPX rcaron scaron -15 +KPX rcaron scedilla -15 +KPX rcaron scommaaccent -15 +KPX rcaron t 20 +KPX rcaron tcommaaccent 20 +KPX rcaron v 10 +KPX rcaron y 10 +KPX rcaron yacute 10 +KPX rcaron ydieresis 10 +KPX rcommaaccent c -20 +KPX rcommaaccent cacute -20 +KPX rcommaaccent ccaron -20 +KPX rcommaaccent ccedilla -20 +KPX rcommaaccent comma -60 +KPX rcommaaccent d -20 +KPX rcommaaccent dcroat -20 +KPX rcommaaccent g -15 +KPX rcommaaccent gbreve -15 +KPX rcommaaccent gcommaaccent -15 +KPX rcommaaccent hyphen -20 +KPX rcommaaccent o -20 +KPX rcommaaccent oacute -20 +KPX rcommaaccent ocircumflex -20 +KPX rcommaaccent odieresis -20 +KPX rcommaaccent ograve -20 +KPX rcommaaccent ohungarumlaut -20 +KPX rcommaaccent omacron -20 +KPX rcommaaccent oslash -20 +KPX rcommaaccent otilde -20 +KPX rcommaaccent period -60 +KPX rcommaaccent q -20 +KPX rcommaaccent s -15 +KPX rcommaaccent sacute -15 +KPX rcommaaccent scaron -15 +KPX rcommaaccent scedilla -15 +KPX rcommaaccent scommaaccent -15 +KPX rcommaaccent t 20 +KPX rcommaaccent tcommaaccent 20 +KPX rcommaaccent v 10 +KPX rcommaaccent y 10 +KPX rcommaaccent yacute 10 +KPX rcommaaccent ydieresis 10 +KPX s w -15 +KPX sacute w -15 +KPX scaron w -15 +KPX scedilla w -15 +KPX scommaaccent w -15 +KPX semicolon space -40 +KPX space T -100 +KPX space Tcaron -100 +KPX space Tcommaaccent -100 +KPX space V -80 +KPX space W -80 +KPX space Y -120 +KPX space Yacute -120 +KPX space Ydieresis -120 +KPX space quotedblleft -80 +KPX space quoteleft -60 +KPX v a -20 +KPX v aacute -20 +KPX v abreve -20 +KPX v acircumflex -20 +KPX v adieresis -20 +KPX v agrave -20 +KPX v amacron -20 +KPX v aogonek -20 +KPX v aring -20 +KPX v atilde -20 +KPX v comma -80 +KPX v o -30 +KPX v oacute -30 +KPX v ocircumflex -30 +KPX v odieresis -30 +KPX v ograve -30 +KPX v ohungarumlaut -30 +KPX v omacron -30 +KPX v oslash -30 +KPX v otilde -30 +KPX v period -80 +KPX w comma -40 +KPX w o -20 +KPX w oacute -20 +KPX w ocircumflex -20 +KPX w odieresis -20 +KPX w ograve -20 +KPX w ohungarumlaut -20 +KPX w omacron -20 +KPX w oslash -20 +KPX w otilde -20 +KPX w period -40 +KPX x e -10 +KPX x eacute -10 +KPX x ecaron -10 +KPX x ecircumflex -10 +KPX x edieresis -10 +KPX x edotaccent -10 +KPX x egrave -10 +KPX x emacron -10 +KPX x eogonek -10 +KPX y a -30 +KPX y aacute -30 +KPX y abreve -30 +KPX y acircumflex -30 +KPX y adieresis -30 +KPX y agrave -30 +KPX y amacron -30 +KPX y aogonek -30 +KPX y aring -30 +KPX y atilde -30 +KPX y comma -80 +KPX y e -10 +KPX y eacute -10 +KPX y ecaron -10 +KPX y ecircumflex -10 +KPX y edieresis -10 +KPX y edotaccent -10 +KPX y egrave -10 +KPX y emacron -10 +KPX y eogonek -10 +KPX y o -25 +KPX y oacute -25 +KPX y ocircumflex -25 +KPX y odieresis -25 +KPX y ograve -25 +KPX y ohungarumlaut -25 +KPX y omacron -25 +KPX y oslash -25 +KPX y otilde -25 +KPX y period -80 +KPX yacute a -30 +KPX yacute aacute -30 +KPX yacute abreve -30 +KPX yacute acircumflex -30 +KPX yacute adieresis -30 +KPX yacute agrave -30 +KPX yacute amacron -30 +KPX yacute aogonek -30 +KPX yacute aring -30 +KPX yacute atilde -30 +KPX yacute comma -80 +KPX yacute e -10 +KPX yacute eacute -10 +KPX yacute ecaron -10 +KPX yacute ecircumflex -10 +KPX yacute edieresis -10 +KPX yacute edotaccent -10 +KPX yacute egrave -10 +KPX yacute emacron -10 +KPX yacute eogonek -10 +KPX yacute o -25 +KPX yacute oacute -25 +KPX yacute ocircumflex -25 +KPX yacute odieresis -25 +KPX yacute ograve -25 +KPX yacute ohungarumlaut -25 +KPX yacute omacron -25 +KPX yacute oslash -25 +KPX yacute otilde -25 +KPX yacute period -80 +KPX ydieresis a -30 +KPX ydieresis aacute -30 +KPX ydieresis abreve -30 +KPX ydieresis acircumflex -30 +KPX ydieresis adieresis -30 +KPX ydieresis agrave -30 +KPX ydieresis amacron -30 +KPX ydieresis aogonek -30 +KPX ydieresis aring -30 +KPX ydieresis atilde -30 +KPX ydieresis comma -80 +KPX ydieresis e -10 +KPX ydieresis eacute -10 +KPX ydieresis ecaron -10 +KPX ydieresis ecircumflex -10 +KPX ydieresis edieresis -10 +KPX ydieresis edotaccent -10 +KPX ydieresis egrave -10 +KPX ydieresis emacron -10 +KPX ydieresis eogonek -10 +KPX ydieresis o -25 +KPX ydieresis oacute -25 +KPX ydieresis ocircumflex -25 +KPX ydieresis odieresis -25 +KPX ydieresis ograve -25 +KPX ydieresis ohungarumlaut -25 +KPX ydieresis omacron -25 +KPX ydieresis oslash -25 +KPX ydieresis otilde -25 +KPX ydieresis period -80 +KPX z e 10 +KPX z eacute 10 +KPX z ecaron 10 +KPX z ecircumflex 10 +KPX z edieresis 10 +KPX z edotaccent 10 +KPX z egrave 10 +KPX z emacron 10 +KPX z eogonek 10 +KPX zacute e 10 +KPX zacute eacute 10 +KPX zacute ecaron 10 +KPX zacute ecircumflex 10 +KPX zacute edieresis 10 +KPX zacute edotaccent 10 +KPX zacute egrave 10 +KPX zacute emacron 10 +KPX zacute eogonek 10 +KPX zcaron e 10 +KPX zcaron eacute 10 +KPX zcaron ecaron 10 +KPX zcaron ecircumflex 10 +KPX zcaron edieresis 10 +KPX zcaron edotaccent 10 +KPX zcaron egrave 10 +KPX zcaron emacron 10 +KPX zcaron eogonek 10 +KPX zdotaccent e 10 +KPX zdotaccent eacute 10 +KPX zdotaccent ecaron 10 +KPX zdotaccent ecircumflex 10 +KPX zdotaccent edieresis 10 +KPX zdotaccent edotaccent 10 +KPX zdotaccent egrave 10 +KPX zdotaccent emacron 10 +KPX zdotaccent eogonek 10 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/Helvetica-BoldOblique.afm b/pyx/data/afm/Helvetica-BoldOblique.afm new file mode 100644 index 00000000..16845aec --- /dev/null +++ b/pyx/data/afm/Helvetica-BoldOblique.afm @@ -0,0 +1,2827 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:45:12 1997 +Comment UniqueID 43053 +Comment VMusage 14482 68586 +FontName Helvetica-BoldOblique +FullName Helvetica Bold Oblique +FamilyName Helvetica +Weight Bold +ItalicAngle -12 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -174 -228 1114 962 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 718 +XHeight 532 +Ascender 718 +Descender -207 +StdHW 118 +StdVW 140 +StartCharMetrics 315 +C 32 ; WX 278 ; N space ; B 0 0 0 0 ; +C 33 ; WX 333 ; N exclam ; B 94 0 397 718 ; +C 34 ; WX 474 ; N quotedbl ; B 193 447 529 718 ; +C 35 ; WX 556 ; N numbersign ; B 60 0 644 698 ; +C 36 ; WX 556 ; N dollar ; B 67 -115 622 775 ; +C 37 ; WX 889 ; N percent ; B 136 -19 901 710 ; +C 38 ; WX 722 ; N ampersand ; B 89 -19 732 718 ; +C 39 ; WX 278 ; N quoteright ; B 167 445 362 718 ; +C 40 ; WX 333 ; N parenleft ; B 76 -208 470 734 ; +C 41 ; WX 333 ; N parenright ; B -25 -208 369 734 ; +C 42 ; WX 389 ; N asterisk ; B 146 387 481 718 ; +C 43 ; WX 584 ; N plus ; B 82 0 610 506 ; +C 44 ; WX 278 ; N comma ; B 28 -168 245 146 ; +C 45 ; WX 333 ; N hyphen ; B 73 215 379 345 ; +C 46 ; WX 278 ; N period ; B 64 0 245 146 ; +C 47 ; WX 278 ; N slash ; B -37 -19 468 737 ; +C 48 ; WX 556 ; N zero ; B 86 -19 617 710 ; +C 49 ; WX 556 ; N one ; B 173 0 529 710 ; +C 50 ; WX 556 ; N two ; B 26 0 619 710 ; +C 51 ; WX 556 ; N three ; B 65 -19 608 710 ; +C 52 ; WX 556 ; N four ; B 60 0 598 710 ; +C 53 ; WX 556 ; N five ; B 64 -19 636 698 ; +C 54 ; WX 556 ; N six ; B 85 -19 619 710 ; +C 55 ; WX 556 ; N seven ; B 125 0 676 698 ; +C 56 ; WX 556 ; N eight ; B 69 -19 616 710 ; +C 57 ; WX 556 ; N nine ; B 78 -19 615 710 ; +C 58 ; WX 333 ; N colon ; B 92 0 351 512 ; +C 59 ; WX 333 ; N semicolon ; B 56 -168 351 512 ; +C 60 ; WX 584 ; N less ; B 82 -8 655 514 ; +C 61 ; WX 584 ; N equal ; B 58 87 633 419 ; +C 62 ; WX 584 ; N greater ; B 36 -8 609 514 ; +C 63 ; WX 611 ; N question ; B 165 0 671 727 ; +C 64 ; WX 975 ; N at ; B 186 -19 954 737 ; +C 65 ; WX 722 ; N A ; B 20 0 702 718 ; +C 66 ; WX 722 ; N B ; B 76 0 764 718 ; +C 67 ; WX 722 ; N C ; B 107 -19 789 737 ; +C 68 ; WX 722 ; N D ; B 76 0 777 718 ; +C 69 ; WX 667 ; N E ; B 76 0 757 718 ; +C 70 ; WX 611 ; N F ; B 76 0 740 718 ; +C 71 ; WX 778 ; N G ; B 108 -19 817 737 ; +C 72 ; WX 722 ; N H ; B 71 0 804 718 ; +C 73 ; WX 278 ; N I ; B 64 0 367 718 ; +C 74 ; WX 556 ; N J ; B 60 -18 637 718 ; +C 75 ; WX 722 ; N K ; B 87 0 858 718 ; +C 76 ; WX 611 ; N L ; B 76 0 611 718 ; +C 77 ; WX 833 ; N M ; B 69 0 918 718 ; +C 78 ; WX 722 ; N N ; B 69 0 807 718 ; +C 79 ; WX 778 ; N O ; B 107 -19 823 737 ; +C 80 ; WX 667 ; N P ; B 76 0 738 718 ; +C 81 ; WX 778 ; N Q ; B 107 -52 823 737 ; +C 82 ; WX 722 ; N R ; B 76 0 778 718 ; +C 83 ; WX 667 ; N S ; B 81 -19 718 737 ; +C 84 ; WX 611 ; N T ; B 140 0 751 718 ; +C 85 ; WX 722 ; N U ; B 116 -19 804 718 ; +C 86 ; WX 667 ; N V ; B 172 0 801 718 ; +C 87 ; WX 944 ; N W ; B 169 0 1082 718 ; +C 88 ; WX 667 ; N X ; B 14 0 791 718 ; +C 89 ; WX 667 ; N Y ; B 168 0 806 718 ; +C 90 ; WX 611 ; N Z ; B 25 0 737 718 ; +C 91 ; WX 333 ; N bracketleft ; B 21 -196 462 722 ; +C 92 ; WX 278 ; N backslash ; B 124 -19 307 737 ; +C 93 ; WX 333 ; N bracketright ; B -18 -196 423 722 ; +C 94 ; WX 584 ; N asciicircum ; B 131 323 591 698 ; +C 95 ; WX 556 ; N underscore ; B -27 -125 540 -75 ; +C 96 ; WX 278 ; N quoteleft ; B 165 454 361 727 ; +C 97 ; WX 556 ; N a ; B 55 -14 583 546 ; +C 98 ; WX 611 ; N b ; B 61 -14 645 718 ; +C 99 ; WX 556 ; N c ; B 79 -14 599 546 ; +C 100 ; WX 611 ; N d ; B 82 -14 704 718 ; +C 101 ; WX 556 ; N e ; B 70 -14 593 546 ; +C 102 ; WX 333 ; N f ; B 87 0 469 727 ; L i fi ; L l fl ; +C 103 ; WX 611 ; N g ; B 38 -217 666 546 ; +C 104 ; WX 611 ; N h ; B 65 0 629 718 ; +C 105 ; WX 278 ; N i ; B 69 0 363 725 ; +C 106 ; WX 278 ; N j ; B -42 -214 363 725 ; +C 107 ; WX 556 ; N k ; B 69 0 670 718 ; +C 108 ; WX 278 ; N l ; B 69 0 362 718 ; +C 109 ; WX 889 ; N m ; B 64 0 909 546 ; +C 110 ; WX 611 ; N n ; B 65 0 629 546 ; +C 111 ; WX 611 ; N o ; B 82 -14 643 546 ; +C 112 ; WX 611 ; N p ; B 18 -207 645 546 ; +C 113 ; WX 611 ; N q ; B 80 -207 665 546 ; +C 114 ; WX 389 ; N r ; B 64 0 489 546 ; +C 115 ; WX 556 ; N s ; B 63 -14 584 546 ; +C 116 ; WX 333 ; N t ; B 100 -6 422 676 ; +C 117 ; WX 611 ; N u ; B 98 -14 658 532 ; +C 118 ; WX 556 ; N v ; B 126 0 656 532 ; +C 119 ; WX 778 ; N w ; B 123 0 882 532 ; +C 120 ; WX 556 ; N x ; B 15 0 648 532 ; +C 121 ; WX 556 ; N y ; B 42 -214 652 532 ; +C 122 ; WX 500 ; N z ; B 20 0 583 532 ; +C 123 ; WX 389 ; N braceleft ; B 94 -196 518 722 ; +C 124 ; WX 280 ; N bar ; B 36 -225 361 775 ; +C 125 ; WX 389 ; N braceright ; B -18 -196 407 722 ; +C 126 ; WX 584 ; N asciitilde ; B 115 163 577 343 ; +C 161 ; WX 333 ; N exclamdown ; B 50 -186 353 532 ; +C 162 ; WX 556 ; N cent ; B 79 -118 599 628 ; +C 163 ; WX 556 ; N sterling ; B 50 -16 635 718 ; +C 164 ; WX 167 ; N fraction ; B -174 -19 487 710 ; +C 165 ; WX 556 ; N yen ; B 60 0 713 698 ; +C 166 ; WX 556 ; N florin ; B -50 -210 669 737 ; +C 167 ; WX 556 ; N section ; B 61 -184 598 727 ; +C 168 ; WX 556 ; N currency ; B 27 76 680 636 ; +C 169 ; WX 238 ; N quotesingle ; B 165 447 321 718 ; +C 170 ; WX 500 ; N quotedblleft ; B 160 454 588 727 ; +C 171 ; WX 556 ; N guillemotleft ; B 135 76 571 484 ; +C 172 ; WX 333 ; N guilsinglleft ; B 130 76 353 484 ; +C 173 ; WX 333 ; N guilsinglright ; B 99 76 322 484 ; +C 174 ; WX 611 ; N fi ; B 87 0 696 727 ; +C 175 ; WX 611 ; N fl ; B 87 0 695 727 ; +C 177 ; WX 556 ; N endash ; B 48 227 627 333 ; +C 178 ; WX 556 ; N dagger ; B 118 -171 626 718 ; +C 179 ; WX 556 ; N daggerdbl ; B 46 -171 628 718 ; +C 180 ; WX 278 ; N periodcentered ; B 110 172 276 334 ; +C 182 ; WX 556 ; N paragraph ; B 98 -191 688 700 ; +C 183 ; WX 350 ; N bullet ; B 83 194 420 524 ; +C 184 ; WX 278 ; N quotesinglbase ; B 41 -146 236 127 ; +C 185 ; WX 500 ; N quotedblbase ; B 36 -146 463 127 ; +C 186 ; WX 500 ; N quotedblright ; B 162 445 589 718 ; +C 187 ; WX 556 ; N guillemotright ; B 104 76 540 484 ; +C 188 ; WX 1000 ; N ellipsis ; B 92 0 939 146 ; +C 189 ; WX 1000 ; N perthousand ; B 76 -19 1038 710 ; +C 191 ; WX 611 ; N questiondown ; B 53 -195 559 532 ; +C 193 ; WX 333 ; N grave ; B 136 604 353 750 ; +C 194 ; WX 333 ; N acute ; B 236 604 515 750 ; +C 195 ; WX 333 ; N circumflex ; B 118 604 471 750 ; +C 196 ; WX 333 ; N tilde ; B 113 610 507 737 ; +C 197 ; WX 333 ; N macron ; B 122 604 483 678 ; +C 198 ; WX 333 ; N breve ; B 156 604 494 750 ; +C 199 ; WX 333 ; N dotaccent ; B 235 614 385 729 ; +C 200 ; WX 333 ; N dieresis ; B 137 614 482 729 ; +C 202 ; WX 333 ; N ring ; B 200 568 420 776 ; +C 203 ; WX 333 ; N cedilla ; B -37 -228 220 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B 137 604 645 750 ; +C 206 ; WX 333 ; N ogonek ; B 41 -228 264 0 ; +C 207 ; WX 333 ; N caron ; B 149 604 502 750 ; +C 208 ; WX 1000 ; N emdash ; B 48 227 1071 333 ; +C 225 ; WX 1000 ; N AE ; B 5 0 1100 718 ; +C 227 ; WX 370 ; N ordfeminine ; B 125 401 465 737 ; +C 232 ; WX 611 ; N Lslash ; B 34 0 611 718 ; +C 233 ; WX 778 ; N Oslash ; B 35 -27 894 745 ; +C 234 ; WX 1000 ; N OE ; B 99 -19 1114 737 ; +C 235 ; WX 365 ; N ordmasculine ; B 123 401 485 737 ; +C 241 ; WX 889 ; N ae ; B 56 -14 923 546 ; +C 245 ; WX 278 ; N dotlessi ; B 69 0 322 532 ; +C 248 ; WX 278 ; N lslash ; B 40 0 407 718 ; +C 249 ; WX 611 ; N oslash ; B 22 -29 701 560 ; +C 250 ; WX 944 ; N oe ; B 82 -14 977 546 ; +C 251 ; WX 611 ; N germandbls ; B 69 -14 657 731 ; +C -1 ; WX 278 ; N Idieresis ; B 64 0 494 915 ; +C -1 ; WX 556 ; N eacute ; B 70 -14 627 750 ; +C -1 ; WX 556 ; N abreve ; B 55 -14 606 750 ; +C -1 ; WX 611 ; N uhungarumlaut ; B 98 -14 784 750 ; +C -1 ; WX 556 ; N ecaron ; B 70 -14 614 750 ; +C -1 ; WX 667 ; N Ydieresis ; B 168 0 806 915 ; +C -1 ; WX 584 ; N divide ; B 82 -42 610 548 ; +C -1 ; WX 667 ; N Yacute ; B 168 0 806 936 ; +C -1 ; WX 722 ; N Acircumflex ; B 20 0 706 936 ; +C -1 ; WX 556 ; N aacute ; B 55 -14 627 750 ; +C -1 ; WX 722 ; N Ucircumflex ; B 116 -19 804 936 ; +C -1 ; WX 556 ; N yacute ; B 42 -214 652 750 ; +C -1 ; WX 556 ; N scommaaccent ; B 63 -228 584 546 ; +C -1 ; WX 556 ; N ecircumflex ; B 70 -14 593 750 ; +C -1 ; WX 722 ; N Uring ; B 116 -19 804 962 ; +C -1 ; WX 722 ; N Udieresis ; B 116 -19 804 915 ; +C -1 ; WX 556 ; N aogonek ; B 55 -224 583 546 ; +C -1 ; WX 722 ; N Uacute ; B 116 -19 804 936 ; +C -1 ; WX 611 ; N uogonek ; B 98 -228 658 532 ; +C -1 ; WX 667 ; N Edieresis ; B 76 0 757 915 ; +C -1 ; WX 722 ; N Dcroat ; B 62 0 777 718 ; +C -1 ; WX 250 ; N commaaccent ; B 16 -228 188 -50 ; +C -1 ; WX 737 ; N copyright ; B 56 -19 835 737 ; +C -1 ; WX 667 ; N Emacron ; B 76 0 757 864 ; +C -1 ; WX 556 ; N ccaron ; B 79 -14 614 750 ; +C -1 ; WX 556 ; N aring ; B 55 -14 583 776 ; +C -1 ; WX 722 ; N Ncommaaccent ; B 69 -228 807 718 ; +C -1 ; WX 278 ; N lacute ; B 69 0 528 936 ; +C -1 ; WX 556 ; N agrave ; B 55 -14 583 750 ; +C -1 ; WX 611 ; N Tcommaaccent ; B 140 -228 751 718 ; +C -1 ; WX 722 ; N Cacute ; B 107 -19 789 936 ; +C -1 ; WX 556 ; N atilde ; B 55 -14 619 737 ; +C -1 ; WX 667 ; N Edotaccent ; B 76 0 757 915 ; +C -1 ; WX 556 ; N scaron ; B 63 -14 614 750 ; +C -1 ; WX 556 ; N scedilla ; B 63 -228 584 546 ; +C -1 ; WX 278 ; N iacute ; B 69 0 488 750 ; +C -1 ; WX 494 ; N lozenge ; B 90 0 564 745 ; +C -1 ; WX 722 ; N Rcaron ; B 76 0 778 936 ; +C -1 ; WX 778 ; N Gcommaaccent ; B 108 -228 817 737 ; +C -1 ; WX 611 ; N ucircumflex ; B 98 -14 658 750 ; +C -1 ; WX 556 ; N acircumflex ; B 55 -14 583 750 ; +C -1 ; WX 722 ; N Amacron ; B 20 0 718 864 ; +C -1 ; WX 389 ; N rcaron ; B 64 0 530 750 ; +C -1 ; WX 556 ; N ccedilla ; B 79 -228 599 546 ; +C -1 ; WX 611 ; N Zdotaccent ; B 25 0 737 915 ; +C -1 ; WX 667 ; N Thorn ; B 76 0 716 718 ; +C -1 ; WX 778 ; N Omacron ; B 107 -19 823 864 ; +C -1 ; WX 722 ; N Racute ; B 76 0 778 936 ; +C -1 ; WX 667 ; N Sacute ; B 81 -19 722 936 ; +C -1 ; WX 743 ; N dcaron ; B 82 -14 903 718 ; +C -1 ; WX 722 ; N Umacron ; B 116 -19 804 864 ; +C -1 ; WX 611 ; N uring ; B 98 -14 658 776 ; +C -1 ; WX 333 ; N threesuperior ; B 91 271 441 710 ; +C -1 ; WX 778 ; N Ograve ; B 107 -19 823 936 ; +C -1 ; WX 722 ; N Agrave ; B 20 0 702 936 ; +C -1 ; WX 722 ; N Abreve ; B 20 0 729 936 ; +C -1 ; WX 584 ; N multiply ; B 57 1 635 505 ; +C -1 ; WX 611 ; N uacute ; B 98 -14 658 750 ; +C -1 ; WX 611 ; N Tcaron ; B 140 0 751 936 ; +C -1 ; WX 494 ; N partialdiff ; B 43 -21 585 750 ; +C -1 ; WX 556 ; N ydieresis ; B 42 -214 652 729 ; +C -1 ; WX 722 ; N Nacute ; B 69 0 807 936 ; +C -1 ; WX 278 ; N icircumflex ; B 69 0 444 750 ; +C -1 ; WX 667 ; N Ecircumflex ; B 76 0 757 936 ; +C -1 ; WX 556 ; N adieresis ; B 55 -14 594 729 ; +C -1 ; WX 556 ; N edieresis ; B 70 -14 594 729 ; +C -1 ; WX 556 ; N cacute ; B 79 -14 627 750 ; +C -1 ; WX 611 ; N nacute ; B 65 0 654 750 ; +C -1 ; WX 611 ; N umacron ; B 98 -14 658 678 ; +C -1 ; WX 722 ; N Ncaron ; B 69 0 807 936 ; +C -1 ; WX 278 ; N Iacute ; B 64 0 528 936 ; +C -1 ; WX 584 ; N plusminus ; B 40 0 625 506 ; +C -1 ; WX 280 ; N brokenbar ; B 52 -150 345 700 ; +C -1 ; WX 737 ; N registered ; B 55 -19 834 737 ; +C -1 ; WX 778 ; N Gbreve ; B 108 -19 817 936 ; +C -1 ; WX 278 ; N Idotaccent ; B 64 0 397 915 ; +C -1 ; WX 600 ; N summation ; B 14 -10 670 706 ; +C -1 ; WX 667 ; N Egrave ; B 76 0 757 936 ; +C -1 ; WX 389 ; N racute ; B 64 0 543 750 ; +C -1 ; WX 611 ; N omacron ; B 82 -14 643 678 ; +C -1 ; WX 611 ; N Zacute ; B 25 0 737 936 ; +C -1 ; WX 611 ; N Zcaron ; B 25 0 737 936 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 629 704 ; +C -1 ; WX 722 ; N Eth ; B 62 0 777 718 ; +C -1 ; WX 722 ; N Ccedilla ; B 107 -228 789 737 ; +C -1 ; WX 278 ; N lcommaaccent ; B 30 -228 362 718 ; +C -1 ; WX 389 ; N tcaron ; B 100 -6 608 878 ; +C -1 ; WX 556 ; N eogonek ; B 70 -228 593 546 ; +C -1 ; WX 722 ; N Uogonek ; B 116 -228 804 718 ; +C -1 ; WX 722 ; N Aacute ; B 20 0 750 936 ; +C -1 ; WX 722 ; N Adieresis ; B 20 0 716 915 ; +C -1 ; WX 556 ; N egrave ; B 70 -14 593 750 ; +C -1 ; WX 500 ; N zacute ; B 20 0 599 750 ; +C -1 ; WX 278 ; N iogonek ; B -14 -224 363 725 ; +C -1 ; WX 778 ; N Oacute ; B 107 -19 823 936 ; +C -1 ; WX 611 ; N oacute ; B 82 -14 654 750 ; +C -1 ; WX 556 ; N amacron ; B 55 -14 595 678 ; +C -1 ; WX 556 ; N sacute ; B 63 -14 627 750 ; +C -1 ; WX 278 ; N idieresis ; B 69 0 455 729 ; +C -1 ; WX 778 ; N Ocircumflex ; B 107 -19 823 936 ; +C -1 ; WX 722 ; N Ugrave ; B 116 -19 804 936 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 611 ; N thorn ; B 18 -208 645 718 ; +C -1 ; WX 333 ; N twosuperior ; B 69 283 449 710 ; +C -1 ; WX 778 ; N Odieresis ; B 107 -19 823 915 ; +C -1 ; WX 611 ; N mu ; B 22 -207 658 532 ; +C -1 ; WX 278 ; N igrave ; B 69 0 326 750 ; +C -1 ; WX 611 ; N ohungarumlaut ; B 82 -14 784 750 ; +C -1 ; WX 667 ; N Eogonek ; B 76 -224 757 718 ; +C -1 ; WX 611 ; N dcroat ; B 82 -14 789 718 ; +C -1 ; WX 834 ; N threequarters ; B 99 -19 839 710 ; +C -1 ; WX 667 ; N Scedilla ; B 81 -228 718 737 ; +C -1 ; WX 400 ; N lcaron ; B 69 0 561 718 ; +C -1 ; WX 722 ; N Kcommaaccent ; B 87 -228 858 718 ; +C -1 ; WX 611 ; N Lacute ; B 76 0 611 936 ; +C -1 ; WX 1000 ; N trademark ; B 179 306 1109 718 ; +C -1 ; WX 556 ; N edotaccent ; B 70 -14 593 729 ; +C -1 ; WX 278 ; N Igrave ; B 64 0 367 936 ; +C -1 ; WX 278 ; N Imacron ; B 64 0 496 864 ; +C -1 ; WX 611 ; N Lcaron ; B 76 0 643 718 ; +C -1 ; WX 834 ; N onehalf ; B 132 -19 858 710 ; +C -1 ; WX 549 ; N lessequal ; B 29 0 676 704 ; +C -1 ; WX 611 ; N ocircumflex ; B 82 -14 643 750 ; +C -1 ; WX 611 ; N ntilde ; B 65 0 646 737 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 116 -19 880 936 ; +C -1 ; WX 667 ; N Eacute ; B 76 0 757 936 ; +C -1 ; WX 556 ; N emacron ; B 70 -14 595 678 ; +C -1 ; WX 611 ; N gbreve ; B 38 -217 666 750 ; +C -1 ; WX 834 ; N onequarter ; B 132 -19 806 710 ; +C -1 ; WX 667 ; N Scaron ; B 81 -19 718 936 ; +C -1 ; WX 667 ; N Scommaaccent ; B 81 -228 718 737 ; +C -1 ; WX 778 ; N Ohungarumlaut ; B 107 -19 908 936 ; +C -1 ; WX 400 ; N degree ; B 175 426 467 712 ; +C -1 ; WX 611 ; N ograve ; B 82 -14 643 750 ; +C -1 ; WX 722 ; N Ccaron ; B 107 -19 789 936 ; +C -1 ; WX 611 ; N ugrave ; B 98 -14 658 750 ; +C -1 ; WX 549 ; N radical ; B 112 -46 689 850 ; +C -1 ; WX 722 ; N Dcaron ; B 76 0 777 936 ; +C -1 ; WX 389 ; N rcommaaccent ; B 26 -228 489 546 ; +C -1 ; WX 722 ; N Ntilde ; B 69 0 807 923 ; +C -1 ; WX 611 ; N otilde ; B 82 -14 646 737 ; +C -1 ; WX 722 ; N Rcommaaccent ; B 76 -228 778 718 ; +C -1 ; WX 611 ; N Lcommaaccent ; B 76 -228 611 718 ; +C -1 ; WX 722 ; N Atilde ; B 20 0 741 923 ; +C -1 ; WX 722 ; N Aogonek ; B 20 -224 702 718 ; +C -1 ; WX 722 ; N Aring ; B 20 0 702 962 ; +C -1 ; WX 778 ; N Otilde ; B 107 -19 823 923 ; +C -1 ; WX 500 ; N zdotaccent ; B 20 0 583 729 ; +C -1 ; WX 667 ; N Ecaron ; B 76 0 757 936 ; +C -1 ; WX 278 ; N Iogonek ; B -41 -228 367 718 ; +C -1 ; WX 556 ; N kcommaaccent ; B 69 -228 670 718 ; +C -1 ; WX 584 ; N minus ; B 82 197 610 309 ; +C -1 ; WX 278 ; N Icircumflex ; B 64 0 484 936 ; +C -1 ; WX 611 ; N ncaron ; B 65 0 641 750 ; +C -1 ; WX 333 ; N tcommaaccent ; B 58 -228 422 676 ; +C -1 ; WX 584 ; N logicalnot ; B 105 108 633 419 ; +C -1 ; WX 611 ; N odieresis ; B 82 -14 643 729 ; +C -1 ; WX 611 ; N udieresis ; B 98 -14 658 729 ; +C -1 ; WX 549 ; N notequal ; B 32 -49 630 570 ; +C -1 ; WX 611 ; N gcommaaccent ; B 38 -217 666 850 ; +C -1 ; WX 611 ; N eth ; B 82 -14 670 737 ; +C -1 ; WX 500 ; N zcaron ; B 20 0 586 750 ; +C -1 ; WX 611 ; N ncommaaccent ; B 65 -228 629 546 ; +C -1 ; WX 333 ; N onesuperior ; B 148 283 388 710 ; +C -1 ; WX 278 ; N imacron ; B 69 0 429 678 ; +C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2481 +KPX A C -40 +KPX A Cacute -40 +KPX A Ccaron -40 +KPX A Ccedilla -40 +KPX A G -50 +KPX A Gbreve -50 +KPX A Gcommaaccent -50 +KPX A O -40 +KPX A Oacute -40 +KPX A Ocircumflex -40 +KPX A Odieresis -40 +KPX A Ograve -40 +KPX A Ohungarumlaut -40 +KPX A Omacron -40 +KPX A Oslash -40 +KPX A Otilde -40 +KPX A Q -40 +KPX A T -90 +KPX A Tcaron -90 +KPX A Tcommaaccent -90 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -80 +KPX A W -60 +KPX A Y -110 +KPX A Yacute -110 +KPX A Ydieresis -110 +KPX A u -30 +KPX A uacute -30 +KPX A ucircumflex -30 +KPX A udieresis -30 +KPX A ugrave -30 +KPX A uhungarumlaut -30 +KPX A umacron -30 +KPX A uogonek -30 +KPX A uring -30 +KPX A v -40 +KPX A w -30 +KPX A y -30 +KPX A yacute -30 +KPX A ydieresis -30 +KPX Aacute C -40 +KPX Aacute Cacute -40 +KPX Aacute Ccaron -40 +KPX Aacute Ccedilla -40 +KPX Aacute G -50 +KPX Aacute Gbreve -50 +KPX Aacute Gcommaaccent -50 +KPX Aacute O -40 +KPX Aacute Oacute -40 +KPX Aacute Ocircumflex -40 +KPX Aacute Odieresis -40 +KPX Aacute Ograve -40 +KPX Aacute Ohungarumlaut -40 +KPX Aacute Omacron -40 +KPX Aacute Oslash -40 +KPX Aacute Otilde -40 +KPX Aacute Q -40 +KPX Aacute T -90 +KPX Aacute Tcaron -90 +KPX Aacute Tcommaaccent -90 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -80 +KPX Aacute W -60 +KPX Aacute Y -110 +KPX Aacute Yacute -110 +KPX Aacute Ydieresis -110 +KPX Aacute u -30 +KPX Aacute uacute -30 +KPX Aacute ucircumflex -30 +KPX Aacute udieresis -30 +KPX Aacute ugrave -30 +KPX Aacute uhungarumlaut -30 +KPX Aacute umacron -30 +KPX Aacute uogonek -30 +KPX Aacute uring -30 +KPX Aacute v -40 +KPX Aacute w -30 +KPX Aacute y -30 +KPX Aacute yacute -30 +KPX Aacute ydieresis -30 +KPX Abreve C -40 +KPX Abreve Cacute -40 +KPX Abreve Ccaron -40 +KPX Abreve Ccedilla -40 +KPX Abreve G -50 +KPX Abreve Gbreve -50 +KPX Abreve Gcommaaccent -50 +KPX Abreve O -40 +KPX Abreve Oacute -40 +KPX Abreve Ocircumflex -40 +KPX Abreve Odieresis -40 +KPX Abreve Ograve -40 +KPX Abreve Ohungarumlaut -40 +KPX Abreve Omacron -40 +KPX Abreve Oslash -40 +KPX Abreve Otilde -40 +KPX Abreve Q -40 +KPX Abreve T -90 +KPX Abreve Tcaron -90 +KPX Abreve Tcommaaccent -90 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -80 +KPX Abreve W -60 +KPX Abreve Y -110 +KPX Abreve Yacute -110 +KPX Abreve Ydieresis -110 +KPX Abreve u -30 +KPX Abreve uacute -30 +KPX Abreve ucircumflex -30 +KPX Abreve udieresis -30 +KPX Abreve ugrave -30 +KPX Abreve uhungarumlaut -30 +KPX Abreve umacron -30 +KPX Abreve uogonek -30 +KPX Abreve uring -30 +KPX Abreve v -40 +KPX Abreve w -30 +KPX Abreve y -30 +KPX Abreve yacute -30 +KPX Abreve ydieresis -30 +KPX Acircumflex C -40 +KPX Acircumflex Cacute -40 +KPX Acircumflex Ccaron -40 +KPX Acircumflex Ccedilla -40 +KPX Acircumflex G -50 +KPX Acircumflex Gbreve -50 +KPX Acircumflex Gcommaaccent -50 +KPX Acircumflex O -40 +KPX Acircumflex Oacute -40 +KPX Acircumflex Ocircumflex -40 +KPX Acircumflex Odieresis -40 +KPX Acircumflex Ograve -40 +KPX Acircumflex Ohungarumlaut -40 +KPX Acircumflex Omacron -40 +KPX Acircumflex Oslash -40 +KPX Acircumflex Otilde -40 +KPX Acircumflex Q -40 +KPX Acircumflex T -90 +KPX Acircumflex Tcaron -90 +KPX Acircumflex Tcommaaccent -90 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -80 +KPX Acircumflex W -60 +KPX Acircumflex Y -110 +KPX Acircumflex Yacute -110 +KPX Acircumflex Ydieresis -110 +KPX Acircumflex u -30 +KPX Acircumflex uacute -30 +KPX Acircumflex ucircumflex -30 +KPX Acircumflex udieresis -30 +KPX Acircumflex ugrave -30 +KPX Acircumflex uhungarumlaut -30 +KPX Acircumflex umacron -30 +KPX Acircumflex uogonek -30 +KPX Acircumflex uring -30 +KPX Acircumflex v -40 +KPX Acircumflex w -30 +KPX Acircumflex y -30 +KPX Acircumflex yacute -30 +KPX Acircumflex ydieresis -30 +KPX Adieresis C -40 +KPX Adieresis Cacute -40 +KPX Adieresis Ccaron -40 +KPX Adieresis Ccedilla -40 +KPX Adieresis G -50 +KPX Adieresis Gbreve -50 +KPX Adieresis Gcommaaccent -50 +KPX Adieresis O -40 +KPX Adieresis Oacute -40 +KPX Adieresis Ocircumflex -40 +KPX Adieresis Odieresis -40 +KPX Adieresis Ograve -40 +KPX Adieresis Ohungarumlaut -40 +KPX Adieresis Omacron -40 +KPX Adieresis Oslash -40 +KPX Adieresis Otilde -40 +KPX Adieresis Q -40 +KPX Adieresis T -90 +KPX Adieresis Tcaron -90 +KPX Adieresis Tcommaaccent -90 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -80 +KPX Adieresis W -60 +KPX Adieresis Y -110 +KPX Adieresis Yacute -110 +KPX Adieresis Ydieresis -110 +KPX Adieresis u -30 +KPX Adieresis uacute -30 +KPX Adieresis ucircumflex -30 +KPX Adieresis udieresis -30 +KPX Adieresis ugrave -30 +KPX Adieresis uhungarumlaut -30 +KPX Adieresis umacron -30 +KPX Adieresis uogonek -30 +KPX Adieresis uring -30 +KPX Adieresis v -40 +KPX Adieresis w -30 +KPX Adieresis y -30 +KPX Adieresis yacute -30 +KPX Adieresis ydieresis -30 +KPX Agrave C -40 +KPX Agrave Cacute -40 +KPX Agrave Ccaron -40 +KPX Agrave Ccedilla -40 +KPX Agrave G -50 +KPX Agrave Gbreve -50 +KPX Agrave Gcommaaccent -50 +KPX Agrave O -40 +KPX Agrave Oacute -40 +KPX Agrave Ocircumflex -40 +KPX Agrave Odieresis -40 +KPX Agrave Ograve -40 +KPX Agrave Ohungarumlaut -40 +KPX Agrave Omacron -40 +KPX Agrave Oslash -40 +KPX Agrave Otilde -40 +KPX Agrave Q -40 +KPX Agrave T -90 +KPX Agrave Tcaron -90 +KPX Agrave Tcommaaccent -90 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -80 +KPX Agrave W -60 +KPX Agrave Y -110 +KPX Agrave Yacute -110 +KPX Agrave Ydieresis -110 +KPX Agrave u -30 +KPX Agrave uacute -30 +KPX Agrave ucircumflex -30 +KPX Agrave udieresis -30 +KPX Agrave ugrave -30 +KPX Agrave uhungarumlaut -30 +KPX Agrave umacron -30 +KPX Agrave uogonek -30 +KPX Agrave uring -30 +KPX Agrave v -40 +KPX Agrave w -30 +KPX Agrave y -30 +KPX Agrave yacute -30 +KPX Agrave ydieresis -30 +KPX Amacron C -40 +KPX Amacron Cacute -40 +KPX Amacron Ccaron -40 +KPX Amacron Ccedilla -40 +KPX Amacron G -50 +KPX Amacron Gbreve -50 +KPX Amacron Gcommaaccent -50 +KPX Amacron O -40 +KPX Amacron Oacute -40 +KPX Amacron Ocircumflex -40 +KPX Amacron Odieresis -40 +KPX Amacron Ograve -40 +KPX Amacron Ohungarumlaut -40 +KPX Amacron Omacron -40 +KPX Amacron Oslash -40 +KPX Amacron Otilde -40 +KPX Amacron Q -40 +KPX Amacron T -90 +KPX Amacron Tcaron -90 +KPX Amacron Tcommaaccent -90 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -80 +KPX Amacron W -60 +KPX Amacron Y -110 +KPX Amacron Yacute -110 +KPX Amacron Ydieresis -110 +KPX Amacron u -30 +KPX Amacron uacute -30 +KPX Amacron ucircumflex -30 +KPX Amacron udieresis -30 +KPX Amacron ugrave -30 +KPX Amacron uhungarumlaut -30 +KPX Amacron umacron -30 +KPX Amacron uogonek -30 +KPX Amacron uring -30 +KPX Amacron v -40 +KPX Amacron w -30 +KPX Amacron y -30 +KPX Amacron yacute -30 +KPX Amacron ydieresis -30 +KPX Aogonek C -40 +KPX Aogonek Cacute -40 +KPX Aogonek Ccaron -40 +KPX Aogonek Ccedilla -40 +KPX Aogonek G -50 +KPX Aogonek Gbreve -50 +KPX Aogonek Gcommaaccent -50 +KPX Aogonek O -40 +KPX Aogonek Oacute -40 +KPX Aogonek Ocircumflex -40 +KPX Aogonek Odieresis -40 +KPX Aogonek Ograve -40 +KPX Aogonek Ohungarumlaut -40 +KPX Aogonek Omacron -40 +KPX Aogonek Oslash -40 +KPX Aogonek Otilde -40 +KPX Aogonek Q -40 +KPX Aogonek T -90 +KPX Aogonek Tcaron -90 +KPX Aogonek Tcommaaccent -90 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -80 +KPX Aogonek W -60 +KPX Aogonek Y -110 +KPX Aogonek Yacute -110 +KPX Aogonek Ydieresis -110 +KPX Aogonek u -30 +KPX Aogonek uacute -30 +KPX Aogonek ucircumflex -30 +KPX Aogonek udieresis -30 +KPX Aogonek ugrave -30 +KPX Aogonek uhungarumlaut -30 +KPX Aogonek umacron -30 +KPX Aogonek uogonek -30 +KPX Aogonek uring -30 +KPX Aogonek v -40 +KPX Aogonek w -30 +KPX Aogonek y -30 +KPX Aogonek yacute -30 +KPX Aogonek ydieresis -30 +KPX Aring C -40 +KPX Aring Cacute -40 +KPX Aring Ccaron -40 +KPX Aring Ccedilla -40 +KPX Aring G -50 +KPX Aring Gbreve -50 +KPX Aring Gcommaaccent -50 +KPX Aring O -40 +KPX Aring Oacute -40 +KPX Aring Ocircumflex -40 +KPX Aring Odieresis -40 +KPX Aring Ograve -40 +KPX Aring Ohungarumlaut -40 +KPX Aring Omacron -40 +KPX Aring Oslash -40 +KPX Aring Otilde -40 +KPX Aring Q -40 +KPX Aring T -90 +KPX Aring Tcaron -90 +KPX Aring Tcommaaccent -90 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -80 +KPX Aring W -60 +KPX Aring Y -110 +KPX Aring Yacute -110 +KPX Aring Ydieresis -110 +KPX Aring u -30 +KPX Aring uacute -30 +KPX Aring ucircumflex -30 +KPX Aring udieresis -30 +KPX Aring ugrave -30 +KPX Aring uhungarumlaut -30 +KPX Aring umacron -30 +KPX Aring uogonek -30 +KPX Aring uring -30 +KPX Aring v -40 +KPX Aring w -30 +KPX Aring y -30 +KPX Aring yacute -30 +KPX Aring ydieresis -30 +KPX Atilde C -40 +KPX Atilde Cacute -40 +KPX Atilde Ccaron -40 +KPX Atilde Ccedilla -40 +KPX Atilde G -50 +KPX Atilde Gbreve -50 +KPX Atilde Gcommaaccent -50 +KPX Atilde O -40 +KPX Atilde Oacute -40 +KPX Atilde Ocircumflex -40 +KPX Atilde Odieresis -40 +KPX Atilde Ograve -40 +KPX Atilde Ohungarumlaut -40 +KPX Atilde Omacron -40 +KPX Atilde Oslash -40 +KPX Atilde Otilde -40 +KPX Atilde Q -40 +KPX Atilde T -90 +KPX Atilde Tcaron -90 +KPX Atilde Tcommaaccent -90 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -80 +KPX Atilde W -60 +KPX Atilde Y -110 +KPX Atilde Yacute -110 +KPX Atilde Ydieresis -110 +KPX Atilde u -30 +KPX Atilde uacute -30 +KPX Atilde ucircumflex -30 +KPX Atilde udieresis -30 +KPX Atilde ugrave -30 +KPX Atilde uhungarumlaut -30 +KPX Atilde umacron -30 +KPX Atilde uogonek -30 +KPX Atilde uring -30 +KPX Atilde v -40 +KPX Atilde w -30 +KPX Atilde y -30 +KPX Atilde yacute -30 +KPX Atilde ydieresis -30 +KPX B A -30 +KPX B Aacute -30 +KPX B Abreve -30 +KPX B Acircumflex -30 +KPX B Adieresis -30 +KPX B Agrave -30 +KPX B Amacron -30 +KPX B Aogonek -30 +KPX B Aring -30 +KPX B Atilde -30 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX D A -40 +KPX D Aacute -40 +KPX D Abreve -40 +KPX D Acircumflex -40 +KPX D Adieresis -40 +KPX D Agrave -40 +KPX D Amacron -40 +KPX D Aogonek -40 +KPX D Aring -40 +KPX D Atilde -40 +KPX D V -40 +KPX D W -40 +KPX D Y -70 +KPX D Yacute -70 +KPX D Ydieresis -70 +KPX D comma -30 +KPX D period -30 +KPX Dcaron A -40 +KPX Dcaron Aacute -40 +KPX Dcaron Abreve -40 +KPX Dcaron Acircumflex -40 +KPX Dcaron Adieresis -40 +KPX Dcaron Agrave -40 +KPX Dcaron Amacron -40 +KPX Dcaron Aogonek -40 +KPX Dcaron Aring -40 +KPX Dcaron Atilde -40 +KPX Dcaron V -40 +KPX Dcaron W -40 +KPX Dcaron Y -70 +KPX Dcaron Yacute -70 +KPX Dcaron Ydieresis -70 +KPX Dcaron comma -30 +KPX Dcaron period -30 +KPX Dcroat A -40 +KPX Dcroat Aacute -40 +KPX Dcroat Abreve -40 +KPX Dcroat Acircumflex -40 +KPX Dcroat Adieresis -40 +KPX Dcroat Agrave -40 +KPX Dcroat Amacron -40 +KPX Dcroat Aogonek -40 +KPX Dcroat Aring -40 +KPX Dcroat Atilde -40 +KPX Dcroat V -40 +KPX Dcroat W -40 +KPX Dcroat Y -70 +KPX Dcroat Yacute -70 +KPX Dcroat Ydieresis -70 +KPX Dcroat comma -30 +KPX Dcroat period -30 +KPX F A -80 +KPX F Aacute -80 +KPX F Abreve -80 +KPX F Acircumflex -80 +KPX F Adieresis -80 +KPX F Agrave -80 +KPX F Amacron -80 +KPX F Aogonek -80 +KPX F Aring -80 +KPX F Atilde -80 +KPX F a -20 +KPX F aacute -20 +KPX F abreve -20 +KPX F acircumflex -20 +KPX F adieresis -20 +KPX F agrave -20 +KPX F amacron -20 +KPX F aogonek -20 +KPX F aring -20 +KPX F atilde -20 +KPX F comma -100 +KPX F period -100 +KPX J A -20 +KPX J Aacute -20 +KPX J Abreve -20 +KPX J Acircumflex -20 +KPX J Adieresis -20 +KPX J Agrave -20 +KPX J Amacron -20 +KPX J Aogonek -20 +KPX J Aring -20 +KPX J Atilde -20 +KPX J comma -20 +KPX J period -20 +KPX J u -20 +KPX J uacute -20 +KPX J ucircumflex -20 +KPX J udieresis -20 +KPX J ugrave -20 +KPX J uhungarumlaut -20 +KPX J umacron -20 +KPX J uogonek -20 +KPX J uring -20 +KPX K O -30 +KPX K Oacute -30 +KPX K Ocircumflex -30 +KPX K Odieresis -30 +KPX K Ograve -30 +KPX K Ohungarumlaut -30 +KPX K Omacron -30 +KPX K Oslash -30 +KPX K Otilde -30 +KPX K e -15 +KPX K eacute -15 +KPX K ecaron -15 +KPX K ecircumflex -15 +KPX K edieresis -15 +KPX K edotaccent -15 +KPX K egrave -15 +KPX K emacron -15 +KPX K eogonek -15 +KPX K o -35 +KPX K oacute -35 +KPX K ocircumflex -35 +KPX K odieresis -35 +KPX K ograve -35 +KPX K ohungarumlaut -35 +KPX K omacron -35 +KPX K oslash -35 +KPX K otilde -35 +KPX K u -30 +KPX K uacute -30 +KPX K ucircumflex -30 +KPX K udieresis -30 +KPX K ugrave -30 +KPX K uhungarumlaut -30 +KPX K umacron -30 +KPX K uogonek -30 +KPX K uring -30 +KPX K y -40 +KPX K yacute -40 +KPX K ydieresis -40 +KPX Kcommaaccent O -30 +KPX Kcommaaccent Oacute -30 +KPX Kcommaaccent Ocircumflex -30 +KPX Kcommaaccent Odieresis -30 +KPX Kcommaaccent Ograve -30 +KPX Kcommaaccent Ohungarumlaut -30 +KPX Kcommaaccent Omacron -30 +KPX Kcommaaccent Oslash -30 +KPX Kcommaaccent Otilde -30 +KPX Kcommaaccent e -15 +KPX Kcommaaccent eacute -15 +KPX Kcommaaccent ecaron -15 +KPX Kcommaaccent ecircumflex -15 +KPX Kcommaaccent edieresis -15 +KPX Kcommaaccent edotaccent -15 +KPX Kcommaaccent egrave -15 +KPX Kcommaaccent emacron -15 +KPX Kcommaaccent eogonek -15 +KPX Kcommaaccent o -35 +KPX Kcommaaccent oacute -35 +KPX Kcommaaccent ocircumflex -35 +KPX Kcommaaccent odieresis -35 +KPX Kcommaaccent ograve -35 +KPX Kcommaaccent ohungarumlaut -35 +KPX Kcommaaccent omacron -35 +KPX Kcommaaccent oslash -35 +KPX Kcommaaccent otilde -35 +KPX Kcommaaccent u -30 +KPX Kcommaaccent uacute -30 +KPX Kcommaaccent ucircumflex -30 +KPX Kcommaaccent udieresis -30 +KPX Kcommaaccent ugrave -30 +KPX Kcommaaccent uhungarumlaut -30 +KPX Kcommaaccent umacron -30 +KPX Kcommaaccent uogonek -30 +KPX Kcommaaccent uring -30 +KPX Kcommaaccent y -40 +KPX Kcommaaccent yacute -40 +KPX Kcommaaccent ydieresis -40 +KPX L T -90 +KPX L Tcaron -90 +KPX L Tcommaaccent -90 +KPX L V -110 +KPX L W -80 +KPX L Y -120 +KPX L Yacute -120 +KPX L Ydieresis -120 +KPX L quotedblright -140 +KPX L quoteright -140 +KPX L y -30 +KPX L yacute -30 +KPX L ydieresis -30 +KPX Lacute T -90 +KPX Lacute Tcaron -90 +KPX Lacute Tcommaaccent -90 +KPX Lacute V -110 +KPX Lacute W -80 +KPX Lacute Y -120 +KPX Lacute Yacute -120 +KPX Lacute Ydieresis -120 +KPX Lacute quotedblright -140 +KPX Lacute quoteright -140 +KPX Lacute y -30 +KPX Lacute yacute -30 +KPX Lacute ydieresis -30 +KPX Lcommaaccent T -90 +KPX Lcommaaccent Tcaron -90 +KPX Lcommaaccent Tcommaaccent -90 +KPX Lcommaaccent V -110 +KPX Lcommaaccent W -80 +KPX Lcommaaccent Y -120 +KPX Lcommaaccent Yacute -120 +KPX Lcommaaccent Ydieresis -120 +KPX Lcommaaccent quotedblright -140 +KPX Lcommaaccent quoteright -140 +KPX Lcommaaccent y -30 +KPX Lcommaaccent yacute -30 +KPX Lcommaaccent ydieresis -30 +KPX Lslash T -90 +KPX Lslash Tcaron -90 +KPX Lslash Tcommaaccent -90 +KPX Lslash V -110 +KPX Lslash W -80 +KPX Lslash Y -120 +KPX Lslash Yacute -120 +KPX Lslash Ydieresis -120 +KPX Lslash quotedblright -140 +KPX Lslash quoteright -140 +KPX Lslash y -30 +KPX Lslash yacute -30 +KPX Lslash ydieresis -30 +KPX O A -50 +KPX O Aacute -50 +KPX O Abreve -50 +KPX O Acircumflex -50 +KPX O Adieresis -50 +KPX O Agrave -50 +KPX O Amacron -50 +KPX O Aogonek -50 +KPX O Aring -50 +KPX O Atilde -50 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -50 +KPX O X -50 +KPX O Y -70 +KPX O Yacute -70 +KPX O Ydieresis -70 +KPX O comma -40 +KPX O period -40 +KPX Oacute A -50 +KPX Oacute Aacute -50 +KPX Oacute Abreve -50 +KPX Oacute Acircumflex -50 +KPX Oacute Adieresis -50 +KPX Oacute Agrave -50 +KPX Oacute Amacron -50 +KPX Oacute Aogonek -50 +KPX Oacute Aring -50 +KPX Oacute Atilde -50 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -50 +KPX Oacute X -50 +KPX Oacute Y -70 +KPX Oacute Yacute -70 +KPX Oacute Ydieresis -70 +KPX Oacute comma -40 +KPX Oacute period -40 +KPX Ocircumflex A -50 +KPX Ocircumflex Aacute -50 +KPX Ocircumflex Abreve -50 +KPX Ocircumflex Acircumflex -50 +KPX Ocircumflex Adieresis -50 +KPX Ocircumflex Agrave -50 +KPX Ocircumflex Amacron -50 +KPX Ocircumflex Aogonek -50 +KPX Ocircumflex Aring -50 +KPX Ocircumflex Atilde -50 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -50 +KPX Ocircumflex X -50 +KPX Ocircumflex Y -70 +KPX Ocircumflex Yacute -70 +KPX Ocircumflex Ydieresis -70 +KPX Ocircumflex comma -40 +KPX Ocircumflex period -40 +KPX Odieresis A -50 +KPX Odieresis Aacute -50 +KPX Odieresis Abreve -50 +KPX Odieresis Acircumflex -50 +KPX Odieresis Adieresis -50 +KPX Odieresis Agrave -50 +KPX Odieresis Amacron -50 +KPX Odieresis Aogonek -50 +KPX Odieresis Aring -50 +KPX Odieresis Atilde -50 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -50 +KPX Odieresis X -50 +KPX Odieresis Y -70 +KPX Odieresis Yacute -70 +KPX Odieresis Ydieresis -70 +KPX Odieresis comma -40 +KPX Odieresis period -40 +KPX Ograve A -50 +KPX Ograve Aacute -50 +KPX Ograve Abreve -50 +KPX Ograve Acircumflex -50 +KPX Ograve Adieresis -50 +KPX Ograve Agrave -50 +KPX Ograve Amacron -50 +KPX Ograve Aogonek -50 +KPX Ograve Aring -50 +KPX Ograve Atilde -50 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -50 +KPX Ograve X -50 +KPX Ograve Y -70 +KPX Ograve Yacute -70 +KPX Ograve Ydieresis -70 +KPX Ograve comma -40 +KPX Ograve period -40 +KPX Ohungarumlaut A -50 +KPX Ohungarumlaut Aacute -50 +KPX Ohungarumlaut Abreve -50 +KPX Ohungarumlaut Acircumflex -50 +KPX Ohungarumlaut Adieresis -50 +KPX Ohungarumlaut Agrave -50 +KPX Ohungarumlaut Amacron -50 +KPX Ohungarumlaut Aogonek -50 +KPX Ohungarumlaut Aring -50 +KPX Ohungarumlaut Atilde -50 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -50 +KPX Ohungarumlaut X -50 +KPX Ohungarumlaut Y -70 +KPX Ohungarumlaut Yacute -70 +KPX Ohungarumlaut Ydieresis -70 +KPX Ohungarumlaut comma -40 +KPX Ohungarumlaut period -40 +KPX Omacron A -50 +KPX Omacron Aacute -50 +KPX Omacron Abreve -50 +KPX Omacron Acircumflex -50 +KPX Omacron Adieresis -50 +KPX Omacron Agrave -50 +KPX Omacron Amacron -50 +KPX Omacron Aogonek -50 +KPX Omacron Aring -50 +KPX Omacron Atilde -50 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -50 +KPX Omacron X -50 +KPX Omacron Y -70 +KPX Omacron Yacute -70 +KPX Omacron Ydieresis -70 +KPX Omacron comma -40 +KPX Omacron period -40 +KPX Oslash A -50 +KPX Oslash Aacute -50 +KPX Oslash Abreve -50 +KPX Oslash Acircumflex -50 +KPX Oslash Adieresis -50 +KPX Oslash Agrave -50 +KPX Oslash Amacron -50 +KPX Oslash Aogonek -50 +KPX Oslash Aring -50 +KPX Oslash Atilde -50 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -50 +KPX Oslash X -50 +KPX Oslash Y -70 +KPX Oslash Yacute -70 +KPX Oslash Ydieresis -70 +KPX Oslash comma -40 +KPX Oslash period -40 +KPX Otilde A -50 +KPX Otilde Aacute -50 +KPX Otilde Abreve -50 +KPX Otilde Acircumflex -50 +KPX Otilde Adieresis -50 +KPX Otilde Agrave -50 +KPX Otilde Amacron -50 +KPX Otilde Aogonek -50 +KPX Otilde Aring -50 +KPX Otilde Atilde -50 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -50 +KPX Otilde X -50 +KPX Otilde Y -70 +KPX Otilde Yacute -70 +KPX Otilde Ydieresis -70 +KPX Otilde comma -40 +KPX Otilde period -40 +KPX P A -100 +KPX P Aacute -100 +KPX P Abreve -100 +KPX P Acircumflex -100 +KPX P Adieresis -100 +KPX P Agrave -100 +KPX P Amacron -100 +KPX P Aogonek -100 +KPX P Aring -100 +KPX P Atilde -100 +KPX P a -30 +KPX P aacute -30 +KPX P abreve -30 +KPX P acircumflex -30 +KPX P adieresis -30 +KPX P agrave -30 +KPX P amacron -30 +KPX P aogonek -30 +KPX P aring -30 +KPX P atilde -30 +KPX P comma -120 +KPX P e -30 +KPX P eacute -30 +KPX P ecaron -30 +KPX P ecircumflex -30 +KPX P edieresis -30 +KPX P edotaccent -30 +KPX P egrave -30 +KPX P emacron -30 +KPX P eogonek -30 +KPX P o -40 +KPX P oacute -40 +KPX P ocircumflex -40 +KPX P odieresis -40 +KPX P ograve -40 +KPX P ohungarumlaut -40 +KPX P omacron -40 +KPX P oslash -40 +KPX P otilde -40 +KPX P period -120 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX Q comma 20 +KPX Q period 20 +KPX R O -20 +KPX R Oacute -20 +KPX R Ocircumflex -20 +KPX R Odieresis -20 +KPX R Ograve -20 +KPX R Ohungarumlaut -20 +KPX R Omacron -20 +KPX R Oslash -20 +KPX R Otilde -20 +KPX R T -20 +KPX R Tcaron -20 +KPX R Tcommaaccent -20 +KPX R U -20 +KPX R Uacute -20 +KPX R Ucircumflex -20 +KPX R Udieresis -20 +KPX R Ugrave -20 +KPX R Uhungarumlaut -20 +KPX R Umacron -20 +KPX R Uogonek -20 +KPX R Uring -20 +KPX R V -50 +KPX R W -40 +KPX R Y -50 +KPX R Yacute -50 +KPX R Ydieresis -50 +KPX Racute O -20 +KPX Racute Oacute -20 +KPX Racute Ocircumflex -20 +KPX Racute Odieresis -20 +KPX Racute Ograve -20 +KPX Racute Ohungarumlaut -20 +KPX Racute Omacron -20 +KPX Racute Oslash -20 +KPX Racute Otilde -20 +KPX Racute T -20 +KPX Racute Tcaron -20 +KPX Racute Tcommaaccent -20 +KPX Racute U -20 +KPX Racute Uacute -20 +KPX Racute Ucircumflex -20 +KPX Racute Udieresis -20 +KPX Racute Ugrave -20 +KPX Racute Uhungarumlaut -20 +KPX Racute Umacron -20 +KPX Racute Uogonek -20 +KPX Racute Uring -20 +KPX Racute V -50 +KPX Racute W -40 +KPX Racute Y -50 +KPX Racute Yacute -50 +KPX Racute Ydieresis -50 +KPX Rcaron O -20 +KPX Rcaron Oacute -20 +KPX Rcaron Ocircumflex -20 +KPX Rcaron Odieresis -20 +KPX Rcaron Ograve -20 +KPX Rcaron Ohungarumlaut -20 +KPX Rcaron Omacron -20 +KPX Rcaron Oslash -20 +KPX Rcaron Otilde -20 +KPX Rcaron T -20 +KPX Rcaron Tcaron -20 +KPX Rcaron Tcommaaccent -20 +KPX Rcaron U -20 +KPX Rcaron Uacute -20 +KPX Rcaron Ucircumflex -20 +KPX Rcaron Udieresis -20 +KPX Rcaron Ugrave -20 +KPX Rcaron Uhungarumlaut -20 +KPX Rcaron Umacron -20 +KPX Rcaron Uogonek -20 +KPX Rcaron Uring -20 +KPX Rcaron V -50 +KPX Rcaron W -40 +KPX Rcaron Y -50 +KPX Rcaron Yacute -50 +KPX Rcaron Ydieresis -50 +KPX Rcommaaccent O -20 +KPX Rcommaaccent Oacute -20 +KPX Rcommaaccent Ocircumflex -20 +KPX Rcommaaccent Odieresis -20 +KPX Rcommaaccent Ograve -20 +KPX Rcommaaccent Ohungarumlaut -20 +KPX Rcommaaccent Omacron -20 +KPX Rcommaaccent Oslash -20 +KPX Rcommaaccent Otilde -20 +KPX Rcommaaccent T -20 +KPX Rcommaaccent Tcaron -20 +KPX Rcommaaccent Tcommaaccent -20 +KPX Rcommaaccent U -20 +KPX Rcommaaccent Uacute -20 +KPX Rcommaaccent Ucircumflex -20 +KPX Rcommaaccent Udieresis -20 +KPX Rcommaaccent Ugrave -20 +KPX Rcommaaccent Uhungarumlaut -20 +KPX Rcommaaccent Umacron -20 +KPX Rcommaaccent Uogonek -20 +KPX Rcommaaccent Uring -20 +KPX Rcommaaccent V -50 +KPX Rcommaaccent W -40 +KPX Rcommaaccent Y -50 +KPX Rcommaaccent Yacute -50 +KPX Rcommaaccent Ydieresis -50 +KPX T A -90 +KPX T Aacute -90 +KPX T Abreve -90 +KPX T Acircumflex -90 +KPX T Adieresis -90 +KPX T Agrave -90 +KPX T Amacron -90 +KPX T Aogonek -90 +KPX T Aring -90 +KPX T Atilde -90 +KPX T O -40 +KPX T Oacute -40 +KPX T Ocircumflex -40 +KPX T Odieresis -40 +KPX T Ograve -40 +KPX T Ohungarumlaut -40 +KPX T Omacron -40 +KPX T Oslash -40 +KPX T Otilde -40 +KPX T a -80 +KPX T aacute -80 +KPX T abreve -80 +KPX T acircumflex -80 +KPX T adieresis -80 +KPX T agrave -80 +KPX T amacron -80 +KPX T aogonek -80 +KPX T aring -80 +KPX T atilde -80 +KPX T colon -40 +KPX T comma -80 +KPX T e -60 +KPX T eacute -60 +KPX T ecaron -60 +KPX T ecircumflex -60 +KPX T edieresis -60 +KPX T edotaccent -60 +KPX T egrave -60 +KPX T emacron -60 +KPX T eogonek -60 +KPX T hyphen -120 +KPX T o -80 +KPX T oacute -80 +KPX T ocircumflex -80 +KPX T odieresis -80 +KPX T ograve -80 +KPX T ohungarumlaut -80 +KPX T omacron -80 +KPX T oslash -80 +KPX T otilde -80 +KPX T period -80 +KPX T r -80 +KPX T racute -80 +KPX T rcommaaccent -80 +KPX T semicolon -40 +KPX T u -90 +KPX T uacute -90 +KPX T ucircumflex -90 +KPX T udieresis -90 +KPX T ugrave -90 +KPX T uhungarumlaut -90 +KPX T umacron -90 +KPX T uogonek -90 +KPX T uring -90 +KPX T w -60 +KPX T y -60 +KPX T yacute -60 +KPX T ydieresis -60 +KPX Tcaron A -90 +KPX Tcaron Aacute -90 +KPX Tcaron Abreve -90 +KPX Tcaron Acircumflex -90 +KPX Tcaron Adieresis -90 +KPX Tcaron Agrave -90 +KPX Tcaron Amacron -90 +KPX Tcaron Aogonek -90 +KPX Tcaron Aring -90 +KPX Tcaron Atilde -90 +KPX Tcaron O -40 +KPX Tcaron Oacute -40 +KPX Tcaron Ocircumflex -40 +KPX Tcaron Odieresis -40 +KPX Tcaron Ograve -40 +KPX Tcaron Ohungarumlaut -40 +KPX Tcaron Omacron -40 +KPX Tcaron Oslash -40 +KPX Tcaron Otilde -40 +KPX Tcaron a -80 +KPX Tcaron aacute -80 +KPX Tcaron abreve -80 +KPX Tcaron acircumflex -80 +KPX Tcaron adieresis -80 +KPX Tcaron agrave -80 +KPX Tcaron amacron -80 +KPX Tcaron aogonek -80 +KPX Tcaron aring -80 +KPX Tcaron atilde -80 +KPX Tcaron colon -40 +KPX Tcaron comma -80 +KPX Tcaron e -60 +KPX Tcaron eacute -60 +KPX Tcaron ecaron -60 +KPX Tcaron ecircumflex -60 +KPX Tcaron edieresis -60 +KPX Tcaron edotaccent -60 +KPX Tcaron egrave -60 +KPX Tcaron emacron -60 +KPX Tcaron eogonek -60 +KPX Tcaron hyphen -120 +KPX Tcaron o -80 +KPX Tcaron oacute -80 +KPX Tcaron ocircumflex -80 +KPX Tcaron odieresis -80 +KPX Tcaron ograve -80 +KPX Tcaron ohungarumlaut -80 +KPX Tcaron omacron -80 +KPX Tcaron oslash -80 +KPX Tcaron otilde -80 +KPX Tcaron period -80 +KPX Tcaron r -80 +KPX Tcaron racute -80 +KPX Tcaron rcommaaccent -80 +KPX Tcaron semicolon -40 +KPX Tcaron u -90 +KPX Tcaron uacute -90 +KPX Tcaron ucircumflex -90 +KPX Tcaron udieresis -90 +KPX Tcaron ugrave -90 +KPX Tcaron uhungarumlaut -90 +KPX Tcaron umacron -90 +KPX Tcaron uogonek -90 +KPX Tcaron uring -90 +KPX Tcaron w -60 +KPX Tcaron y -60 +KPX Tcaron yacute -60 +KPX Tcaron ydieresis -60 +KPX Tcommaaccent A -90 +KPX Tcommaaccent Aacute -90 +KPX Tcommaaccent Abreve -90 +KPX Tcommaaccent Acircumflex -90 +KPX Tcommaaccent Adieresis -90 +KPX Tcommaaccent Agrave -90 +KPX Tcommaaccent Amacron -90 +KPX Tcommaaccent Aogonek -90 +KPX Tcommaaccent Aring -90 +KPX Tcommaaccent Atilde -90 +KPX Tcommaaccent O -40 +KPX Tcommaaccent Oacute -40 +KPX Tcommaaccent Ocircumflex -40 +KPX Tcommaaccent Odieresis -40 +KPX Tcommaaccent Ograve -40 +KPX Tcommaaccent Ohungarumlaut -40 +KPX Tcommaaccent Omacron -40 +KPX Tcommaaccent Oslash -40 +KPX Tcommaaccent Otilde -40 +KPX Tcommaaccent a -80 +KPX Tcommaaccent aacute -80 +KPX Tcommaaccent abreve -80 +KPX Tcommaaccent acircumflex -80 +KPX Tcommaaccent adieresis -80 +KPX Tcommaaccent agrave -80 +KPX Tcommaaccent amacron -80 +KPX Tcommaaccent aogonek -80 +KPX Tcommaaccent aring -80 +KPX Tcommaaccent atilde -80 +KPX Tcommaaccent colon -40 +KPX Tcommaaccent comma -80 +KPX Tcommaaccent e -60 +KPX Tcommaaccent eacute -60 +KPX Tcommaaccent ecaron -60 +KPX Tcommaaccent ecircumflex -60 +KPX Tcommaaccent edieresis -60 +KPX Tcommaaccent edotaccent -60 +KPX Tcommaaccent egrave -60 +KPX Tcommaaccent emacron -60 +KPX Tcommaaccent eogonek -60 +KPX Tcommaaccent hyphen -120 +KPX Tcommaaccent o -80 +KPX Tcommaaccent oacute -80 +KPX Tcommaaccent ocircumflex -80 +KPX Tcommaaccent odieresis -80 +KPX Tcommaaccent ograve -80 +KPX Tcommaaccent ohungarumlaut -80 +KPX Tcommaaccent omacron -80 +KPX Tcommaaccent oslash -80 +KPX Tcommaaccent otilde -80 +KPX Tcommaaccent period -80 +KPX Tcommaaccent r -80 +KPX Tcommaaccent racute -80 +KPX Tcommaaccent rcommaaccent -80 +KPX Tcommaaccent semicolon -40 +KPX Tcommaaccent u -90 +KPX Tcommaaccent uacute -90 +KPX Tcommaaccent ucircumflex -90 +KPX Tcommaaccent udieresis -90 +KPX Tcommaaccent ugrave -90 +KPX Tcommaaccent uhungarumlaut -90 +KPX Tcommaaccent umacron -90 +KPX Tcommaaccent uogonek -90 +KPX Tcommaaccent uring -90 +KPX Tcommaaccent w -60 +KPX Tcommaaccent y -60 +KPX Tcommaaccent yacute -60 +KPX Tcommaaccent ydieresis -60 +KPX U A -50 +KPX U Aacute -50 +KPX U Abreve -50 +KPX U Acircumflex -50 +KPX U Adieresis -50 +KPX U Agrave -50 +KPX U Amacron -50 +KPX U Aogonek -50 +KPX U Aring -50 +KPX U Atilde -50 +KPX U comma -30 +KPX U period -30 +KPX Uacute A -50 +KPX Uacute Aacute -50 +KPX Uacute Abreve -50 +KPX Uacute Acircumflex -50 +KPX Uacute Adieresis -50 +KPX Uacute Agrave -50 +KPX Uacute Amacron -50 +KPX Uacute Aogonek -50 +KPX Uacute Aring -50 +KPX Uacute Atilde -50 +KPX Uacute comma -30 +KPX Uacute period -30 +KPX Ucircumflex A -50 +KPX Ucircumflex Aacute -50 +KPX Ucircumflex Abreve -50 +KPX Ucircumflex Acircumflex -50 +KPX Ucircumflex Adieresis -50 +KPX Ucircumflex Agrave -50 +KPX Ucircumflex Amacron -50 +KPX Ucircumflex Aogonek -50 +KPX Ucircumflex Aring -50 +KPX Ucircumflex Atilde -50 +KPX Ucircumflex comma -30 +KPX Ucircumflex period -30 +KPX Udieresis A -50 +KPX Udieresis Aacute -50 +KPX Udieresis Abreve -50 +KPX Udieresis Acircumflex -50 +KPX Udieresis Adieresis -50 +KPX Udieresis Agrave -50 +KPX Udieresis Amacron -50 +KPX Udieresis Aogonek -50 +KPX Udieresis Aring -50 +KPX Udieresis Atilde -50 +KPX Udieresis comma -30 +KPX Udieresis period -30 +KPX Ugrave A -50 +KPX Ugrave Aacute -50 +KPX Ugrave Abreve -50 +KPX Ugrave Acircumflex -50 +KPX Ugrave Adieresis -50 +KPX Ugrave Agrave -50 +KPX Ugrave Amacron -50 +KPX Ugrave Aogonek -50 +KPX Ugrave Aring -50 +KPX Ugrave Atilde -50 +KPX Ugrave comma -30 +KPX Ugrave period -30 +KPX Uhungarumlaut A -50 +KPX Uhungarumlaut Aacute -50 +KPX Uhungarumlaut Abreve -50 +KPX Uhungarumlaut Acircumflex -50 +KPX Uhungarumlaut Adieresis -50 +KPX Uhungarumlaut Agrave -50 +KPX Uhungarumlaut Amacron -50 +KPX Uhungarumlaut Aogonek -50 +KPX Uhungarumlaut Aring -50 +KPX Uhungarumlaut Atilde -50 +KPX Uhungarumlaut comma -30 +KPX Uhungarumlaut period -30 +KPX Umacron A -50 +KPX Umacron Aacute -50 +KPX Umacron Abreve -50 +KPX Umacron Acircumflex -50 +KPX Umacron Adieresis -50 +KPX Umacron Agrave -50 +KPX Umacron Amacron -50 +KPX Umacron Aogonek -50 +KPX Umacron Aring -50 +KPX Umacron Atilde -50 +KPX Umacron comma -30 +KPX Umacron period -30 +KPX Uogonek A -50 +KPX Uogonek Aacute -50 +KPX Uogonek Abreve -50 +KPX Uogonek Acircumflex -50 +KPX Uogonek Adieresis -50 +KPX Uogonek Agrave -50 +KPX Uogonek Amacron -50 +KPX Uogonek Aogonek -50 +KPX Uogonek Aring -50 +KPX Uogonek Atilde -50 +KPX Uogonek comma -30 +KPX Uogonek period -30 +KPX Uring A -50 +KPX Uring Aacute -50 +KPX Uring Abreve -50 +KPX Uring Acircumflex -50 +KPX Uring Adieresis -50 +KPX Uring Agrave -50 +KPX Uring Amacron -50 +KPX Uring Aogonek -50 +KPX Uring Aring -50 +KPX Uring Atilde -50 +KPX Uring comma -30 +KPX Uring period -30 +KPX V A -80 +KPX V Aacute -80 +KPX V Abreve -80 +KPX V Acircumflex -80 +KPX V Adieresis -80 +KPX V Agrave -80 +KPX V Amacron -80 +KPX V Aogonek -80 +KPX V Aring -80 +KPX V Atilde -80 +KPX V G -50 +KPX V Gbreve -50 +KPX V Gcommaaccent -50 +KPX V O -50 +KPX V Oacute -50 +KPX V Ocircumflex -50 +KPX V Odieresis -50 +KPX V Ograve -50 +KPX V Ohungarumlaut -50 +KPX V Omacron -50 +KPX V Oslash -50 +KPX V Otilde -50 +KPX V a -60 +KPX V aacute -60 +KPX V abreve -60 +KPX V acircumflex -60 +KPX V adieresis -60 +KPX V agrave -60 +KPX V amacron -60 +KPX V aogonek -60 +KPX V aring -60 +KPX V atilde -60 +KPX V colon -40 +KPX V comma -120 +KPX V e -50 +KPX V eacute -50 +KPX V ecaron -50 +KPX V ecircumflex -50 +KPX V edieresis -50 +KPX V edotaccent -50 +KPX V egrave -50 +KPX V emacron -50 +KPX V eogonek -50 +KPX V hyphen -80 +KPX V o -90 +KPX V oacute -90 +KPX V ocircumflex -90 +KPX V odieresis -90 +KPX V ograve -90 +KPX V ohungarumlaut -90 +KPX V omacron -90 +KPX V oslash -90 +KPX V otilde -90 +KPX V period -120 +KPX V semicolon -40 +KPX V u -60 +KPX V uacute -60 +KPX V ucircumflex -60 +KPX V udieresis -60 +KPX V ugrave -60 +KPX V uhungarumlaut -60 +KPX V umacron -60 +KPX V uogonek -60 +KPX V uring -60 +KPX W A -60 +KPX W Aacute -60 +KPX W Abreve -60 +KPX W Acircumflex -60 +KPX W Adieresis -60 +KPX W Agrave -60 +KPX W Amacron -60 +KPX W Aogonek -60 +KPX W Aring -60 +KPX W Atilde -60 +KPX W O -20 +KPX W Oacute -20 +KPX W Ocircumflex -20 +KPX W Odieresis -20 +KPX W Ograve -20 +KPX W Ohungarumlaut -20 +KPX W Omacron -20 +KPX W Oslash -20 +KPX W Otilde -20 +KPX W a -40 +KPX W aacute -40 +KPX W abreve -40 +KPX W acircumflex -40 +KPX W adieresis -40 +KPX W agrave -40 +KPX W amacron -40 +KPX W aogonek -40 +KPX W aring -40 +KPX W atilde -40 +KPX W colon -10 +KPX W comma -80 +KPX W e -35 +KPX W eacute -35 +KPX W ecaron -35 +KPX W ecircumflex -35 +KPX W edieresis -35 +KPX W edotaccent -35 +KPX W egrave -35 +KPX W emacron -35 +KPX W eogonek -35 +KPX W hyphen -40 +KPX W o -60 +KPX W oacute -60 +KPX W ocircumflex -60 +KPX W odieresis -60 +KPX W ograve -60 +KPX W ohungarumlaut -60 +KPX W omacron -60 +KPX W oslash -60 +KPX W otilde -60 +KPX W period -80 +KPX W semicolon -10 +KPX W u -45 +KPX W uacute -45 +KPX W ucircumflex -45 +KPX W udieresis -45 +KPX W ugrave -45 +KPX W uhungarumlaut -45 +KPX W umacron -45 +KPX W uogonek -45 +KPX W uring -45 +KPX W y -20 +KPX W yacute -20 +KPX W ydieresis -20 +KPX Y A -110 +KPX Y Aacute -110 +KPX Y Abreve -110 +KPX Y Acircumflex -110 +KPX Y Adieresis -110 +KPX Y Agrave -110 +KPX Y Amacron -110 +KPX Y Aogonek -110 +KPX Y Aring -110 +KPX Y Atilde -110 +KPX Y O -70 +KPX Y Oacute -70 +KPX Y Ocircumflex -70 +KPX Y Odieresis -70 +KPX Y Ograve -70 +KPX Y Ohungarumlaut -70 +KPX Y Omacron -70 +KPX Y Oslash -70 +KPX Y Otilde -70 +KPX Y a -90 +KPX Y aacute -90 +KPX Y abreve -90 +KPX Y acircumflex -90 +KPX Y adieresis -90 +KPX Y agrave -90 +KPX Y amacron -90 +KPX Y aogonek -90 +KPX Y aring -90 +KPX Y atilde -90 +KPX Y colon -50 +KPX Y comma -100 +KPX Y e -80 +KPX Y eacute -80 +KPX Y ecaron -80 +KPX Y ecircumflex -80 +KPX Y edieresis -80 +KPX Y edotaccent -80 +KPX Y egrave -80 +KPX Y emacron -80 +KPX Y eogonek -80 +KPX Y o -100 +KPX Y oacute -100 +KPX Y ocircumflex -100 +KPX Y odieresis -100 +KPX Y ograve -100 +KPX Y ohungarumlaut -100 +KPX Y omacron -100 +KPX Y oslash -100 +KPX Y otilde -100 +KPX Y period -100 +KPX Y semicolon -50 +KPX Y u -100 +KPX Y uacute -100 +KPX Y ucircumflex -100 +KPX Y udieresis -100 +KPX Y ugrave -100 +KPX Y uhungarumlaut -100 +KPX Y umacron -100 +KPX Y uogonek -100 +KPX Y uring -100 +KPX Yacute A -110 +KPX Yacute Aacute -110 +KPX Yacute Abreve -110 +KPX Yacute Acircumflex -110 +KPX Yacute Adieresis -110 +KPX Yacute Agrave -110 +KPX Yacute Amacron -110 +KPX Yacute Aogonek -110 +KPX Yacute Aring -110 +KPX Yacute Atilde -110 +KPX Yacute O -70 +KPX Yacute Oacute -70 +KPX Yacute Ocircumflex -70 +KPX Yacute Odieresis -70 +KPX Yacute Ograve -70 +KPX Yacute Ohungarumlaut -70 +KPX Yacute Omacron -70 +KPX Yacute Oslash -70 +KPX Yacute Otilde -70 +KPX Yacute a -90 +KPX Yacute aacute -90 +KPX Yacute abreve -90 +KPX Yacute acircumflex -90 +KPX Yacute adieresis -90 +KPX Yacute agrave -90 +KPX Yacute amacron -90 +KPX Yacute aogonek -90 +KPX Yacute aring -90 +KPX Yacute atilde -90 +KPX Yacute colon -50 +KPX Yacute comma -100 +KPX Yacute e -80 +KPX Yacute eacute -80 +KPX Yacute ecaron -80 +KPX Yacute ecircumflex -80 +KPX Yacute edieresis -80 +KPX Yacute edotaccent -80 +KPX Yacute egrave -80 +KPX Yacute emacron -80 +KPX Yacute eogonek -80 +KPX Yacute o -100 +KPX Yacute oacute -100 +KPX Yacute ocircumflex -100 +KPX Yacute odieresis -100 +KPX Yacute ograve -100 +KPX Yacute ohungarumlaut -100 +KPX Yacute omacron -100 +KPX Yacute oslash -100 +KPX Yacute otilde -100 +KPX Yacute period -100 +KPX Yacute semicolon -50 +KPX Yacute u -100 +KPX Yacute uacute -100 +KPX Yacute ucircumflex -100 +KPX Yacute udieresis -100 +KPX Yacute ugrave -100 +KPX Yacute uhungarumlaut -100 +KPX Yacute umacron -100 +KPX Yacute uogonek -100 +KPX Yacute uring -100 +KPX Ydieresis A -110 +KPX Ydieresis Aacute -110 +KPX Ydieresis Abreve -110 +KPX Ydieresis Acircumflex -110 +KPX Ydieresis Adieresis -110 +KPX Ydieresis Agrave -110 +KPX Ydieresis Amacron -110 +KPX Ydieresis Aogonek -110 +KPX Ydieresis Aring -110 +KPX Ydieresis Atilde -110 +KPX Ydieresis O -70 +KPX Ydieresis Oacute -70 +KPX Ydieresis Ocircumflex -70 +KPX Ydieresis Odieresis -70 +KPX Ydieresis Ograve -70 +KPX Ydieresis Ohungarumlaut -70 +KPX Ydieresis Omacron -70 +KPX Ydieresis Oslash -70 +KPX Ydieresis Otilde -70 +KPX Ydieresis a -90 +KPX Ydieresis aacute -90 +KPX Ydieresis abreve -90 +KPX Ydieresis acircumflex -90 +KPX Ydieresis adieresis -90 +KPX Ydieresis agrave -90 +KPX Ydieresis amacron -90 +KPX Ydieresis aogonek -90 +KPX Ydieresis aring -90 +KPX Ydieresis atilde -90 +KPX Ydieresis colon -50 +KPX Ydieresis comma -100 +KPX Ydieresis e -80 +KPX Ydieresis eacute -80 +KPX Ydieresis ecaron -80 +KPX Ydieresis ecircumflex -80 +KPX Ydieresis edieresis -80 +KPX Ydieresis edotaccent -80 +KPX Ydieresis egrave -80 +KPX Ydieresis emacron -80 +KPX Ydieresis eogonek -80 +KPX Ydieresis o -100 +KPX Ydieresis oacute -100 +KPX Ydieresis ocircumflex -100 +KPX Ydieresis odieresis -100 +KPX Ydieresis ograve -100 +KPX Ydieresis ohungarumlaut -100 +KPX Ydieresis omacron -100 +KPX Ydieresis oslash -100 +KPX Ydieresis otilde -100 +KPX Ydieresis period -100 +KPX Ydieresis semicolon -50 +KPX Ydieresis u -100 +KPX Ydieresis uacute -100 +KPX Ydieresis ucircumflex -100 +KPX Ydieresis udieresis -100 +KPX Ydieresis ugrave -100 +KPX Ydieresis uhungarumlaut -100 +KPX Ydieresis umacron -100 +KPX Ydieresis uogonek -100 +KPX Ydieresis uring -100 +KPX a g -10 +KPX a gbreve -10 +KPX a gcommaaccent -10 +KPX a v -15 +KPX a w -15 +KPX a y -20 +KPX a yacute -20 +KPX a ydieresis -20 +KPX aacute g -10 +KPX aacute gbreve -10 +KPX aacute gcommaaccent -10 +KPX aacute v -15 +KPX aacute w -15 +KPX aacute y -20 +KPX aacute yacute -20 +KPX aacute ydieresis -20 +KPX abreve g -10 +KPX abreve gbreve -10 +KPX abreve gcommaaccent -10 +KPX abreve v -15 +KPX abreve w -15 +KPX abreve y -20 +KPX abreve yacute -20 +KPX abreve ydieresis -20 +KPX acircumflex g -10 +KPX acircumflex gbreve -10 +KPX acircumflex gcommaaccent -10 +KPX acircumflex v -15 +KPX acircumflex w -15 +KPX acircumflex y -20 +KPX acircumflex yacute -20 +KPX acircumflex ydieresis -20 +KPX adieresis g -10 +KPX adieresis gbreve -10 +KPX adieresis gcommaaccent -10 +KPX adieresis v -15 +KPX adieresis w -15 +KPX adieresis y -20 +KPX adieresis yacute -20 +KPX adieresis ydieresis -20 +KPX agrave g -10 +KPX agrave gbreve -10 +KPX agrave gcommaaccent -10 +KPX agrave v -15 +KPX agrave w -15 +KPX agrave y -20 +KPX agrave yacute -20 +KPX agrave ydieresis -20 +KPX amacron g -10 +KPX amacron gbreve -10 +KPX amacron gcommaaccent -10 +KPX amacron v -15 +KPX amacron w -15 +KPX amacron y -20 +KPX amacron yacute -20 +KPX amacron ydieresis -20 +KPX aogonek g -10 +KPX aogonek gbreve -10 +KPX aogonek gcommaaccent -10 +KPX aogonek v -15 +KPX aogonek w -15 +KPX aogonek y -20 +KPX aogonek yacute -20 +KPX aogonek ydieresis -20 +KPX aring g -10 +KPX aring gbreve -10 +KPX aring gcommaaccent -10 +KPX aring v -15 +KPX aring w -15 +KPX aring y -20 +KPX aring yacute -20 +KPX aring ydieresis -20 +KPX atilde g -10 +KPX atilde gbreve -10 +KPX atilde gcommaaccent -10 +KPX atilde v -15 +KPX atilde w -15 +KPX atilde y -20 +KPX atilde yacute -20 +KPX atilde ydieresis -20 +KPX b l -10 +KPX b lacute -10 +KPX b lcommaaccent -10 +KPX b lslash -10 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX b v -20 +KPX b y -20 +KPX b yacute -20 +KPX b ydieresis -20 +KPX c h -10 +KPX c k -20 +KPX c kcommaaccent -20 +KPX c l -20 +KPX c lacute -20 +KPX c lcommaaccent -20 +KPX c lslash -20 +KPX c y -10 +KPX c yacute -10 +KPX c ydieresis -10 +KPX cacute h -10 +KPX cacute k -20 +KPX cacute kcommaaccent -20 +KPX cacute l -20 +KPX cacute lacute -20 +KPX cacute lcommaaccent -20 +KPX cacute lslash -20 +KPX cacute y -10 +KPX cacute yacute -10 +KPX cacute ydieresis -10 +KPX ccaron h -10 +KPX ccaron k -20 +KPX ccaron kcommaaccent -20 +KPX ccaron l -20 +KPX ccaron lacute -20 +KPX ccaron lcommaaccent -20 +KPX ccaron lslash -20 +KPX ccaron y -10 +KPX ccaron yacute -10 +KPX ccaron ydieresis -10 +KPX ccedilla h -10 +KPX ccedilla k -20 +KPX ccedilla kcommaaccent -20 +KPX ccedilla l -20 +KPX ccedilla lacute -20 +KPX ccedilla lcommaaccent -20 +KPX ccedilla lslash -20 +KPX ccedilla y -10 +KPX ccedilla yacute -10 +KPX ccedilla ydieresis -10 +KPX colon space -40 +KPX comma quotedblright -120 +KPX comma quoteright -120 +KPX comma space -40 +KPX d d -10 +KPX d dcroat -10 +KPX d v -15 +KPX d w -15 +KPX d y -15 +KPX d yacute -15 +KPX d ydieresis -15 +KPX dcroat d -10 +KPX dcroat dcroat -10 +KPX dcroat v -15 +KPX dcroat w -15 +KPX dcroat y -15 +KPX dcroat yacute -15 +KPX dcroat ydieresis -15 +KPX e comma 10 +KPX e period 20 +KPX e v -15 +KPX e w -15 +KPX e x -15 +KPX e y -15 +KPX e yacute -15 +KPX e ydieresis -15 +KPX eacute comma 10 +KPX eacute period 20 +KPX eacute v -15 +KPX eacute w -15 +KPX eacute x -15 +KPX eacute y -15 +KPX eacute yacute -15 +KPX eacute ydieresis -15 +KPX ecaron comma 10 +KPX ecaron period 20 +KPX ecaron v -15 +KPX ecaron w -15 +KPX ecaron x -15 +KPX ecaron y -15 +KPX ecaron yacute -15 +KPX ecaron ydieresis -15 +KPX ecircumflex comma 10 +KPX ecircumflex period 20 +KPX ecircumflex v -15 +KPX ecircumflex w -15 +KPX ecircumflex x -15 +KPX ecircumflex y -15 +KPX ecircumflex yacute -15 +KPX ecircumflex ydieresis -15 +KPX edieresis comma 10 +KPX edieresis period 20 +KPX edieresis v -15 +KPX edieresis w -15 +KPX edieresis x -15 +KPX edieresis y -15 +KPX edieresis yacute -15 +KPX edieresis ydieresis -15 +KPX edotaccent comma 10 +KPX edotaccent period 20 +KPX edotaccent v -15 +KPX edotaccent w -15 +KPX edotaccent x -15 +KPX edotaccent y -15 +KPX edotaccent yacute -15 +KPX edotaccent ydieresis -15 +KPX egrave comma 10 +KPX egrave period 20 +KPX egrave v -15 +KPX egrave w -15 +KPX egrave x -15 +KPX egrave y -15 +KPX egrave yacute -15 +KPX egrave ydieresis -15 +KPX emacron comma 10 +KPX emacron period 20 +KPX emacron v -15 +KPX emacron w -15 +KPX emacron x -15 +KPX emacron y -15 +KPX emacron yacute -15 +KPX emacron ydieresis -15 +KPX eogonek comma 10 +KPX eogonek period 20 +KPX eogonek v -15 +KPX eogonek w -15 +KPX eogonek x -15 +KPX eogonek y -15 +KPX eogonek yacute -15 +KPX eogonek ydieresis -15 +KPX f comma -10 +KPX f e -10 +KPX f eacute -10 +KPX f ecaron -10 +KPX f ecircumflex -10 +KPX f edieresis -10 +KPX f edotaccent -10 +KPX f egrave -10 +KPX f emacron -10 +KPX f eogonek -10 +KPX f o -20 +KPX f oacute -20 +KPX f ocircumflex -20 +KPX f odieresis -20 +KPX f ograve -20 +KPX f ohungarumlaut -20 +KPX f omacron -20 +KPX f oslash -20 +KPX f otilde -20 +KPX f period -10 +KPX f quotedblright 30 +KPX f quoteright 30 +KPX g e 10 +KPX g eacute 10 +KPX g ecaron 10 +KPX g ecircumflex 10 +KPX g edieresis 10 +KPX g edotaccent 10 +KPX g egrave 10 +KPX g emacron 10 +KPX g eogonek 10 +KPX g g -10 +KPX g gbreve -10 +KPX g gcommaaccent -10 +KPX gbreve e 10 +KPX gbreve eacute 10 +KPX gbreve ecaron 10 +KPX gbreve ecircumflex 10 +KPX gbreve edieresis 10 +KPX gbreve edotaccent 10 +KPX gbreve egrave 10 +KPX gbreve emacron 10 +KPX gbreve eogonek 10 +KPX gbreve g -10 +KPX gbreve gbreve -10 +KPX gbreve gcommaaccent -10 +KPX gcommaaccent e 10 +KPX gcommaaccent eacute 10 +KPX gcommaaccent ecaron 10 +KPX gcommaaccent ecircumflex 10 +KPX gcommaaccent edieresis 10 +KPX gcommaaccent edotaccent 10 +KPX gcommaaccent egrave 10 +KPX gcommaaccent emacron 10 +KPX gcommaaccent eogonek 10 +KPX gcommaaccent g -10 +KPX gcommaaccent gbreve -10 +KPX gcommaaccent gcommaaccent -10 +KPX h y -20 +KPX h yacute -20 +KPX h ydieresis -20 +KPX k o -15 +KPX k oacute -15 +KPX k ocircumflex -15 +KPX k odieresis -15 +KPX k ograve -15 +KPX k ohungarumlaut -15 +KPX k omacron -15 +KPX k oslash -15 +KPX k otilde -15 +KPX kcommaaccent o -15 +KPX kcommaaccent oacute -15 +KPX kcommaaccent ocircumflex -15 +KPX kcommaaccent odieresis -15 +KPX kcommaaccent ograve -15 +KPX kcommaaccent ohungarumlaut -15 +KPX kcommaaccent omacron -15 +KPX kcommaaccent oslash -15 +KPX kcommaaccent otilde -15 +KPX l w -15 +KPX l y -15 +KPX l yacute -15 +KPX l ydieresis -15 +KPX lacute w -15 +KPX lacute y -15 +KPX lacute yacute -15 +KPX lacute ydieresis -15 +KPX lcommaaccent w -15 +KPX lcommaaccent y -15 +KPX lcommaaccent yacute -15 +KPX lcommaaccent ydieresis -15 +KPX lslash w -15 +KPX lslash y -15 +KPX lslash yacute -15 +KPX lslash ydieresis -15 +KPX m u -20 +KPX m uacute -20 +KPX m ucircumflex -20 +KPX m udieresis -20 +KPX m ugrave -20 +KPX m uhungarumlaut -20 +KPX m umacron -20 +KPX m uogonek -20 +KPX m uring -20 +KPX m y -30 +KPX m yacute -30 +KPX m ydieresis -30 +KPX n u -10 +KPX n uacute -10 +KPX n ucircumflex -10 +KPX n udieresis -10 +KPX n ugrave -10 +KPX n uhungarumlaut -10 +KPX n umacron -10 +KPX n uogonek -10 +KPX n uring -10 +KPX n v -40 +KPX n y -20 +KPX n yacute -20 +KPX n ydieresis -20 +KPX nacute u -10 +KPX nacute uacute -10 +KPX nacute ucircumflex -10 +KPX nacute udieresis -10 +KPX nacute ugrave -10 +KPX nacute uhungarumlaut -10 +KPX nacute umacron -10 +KPX nacute uogonek -10 +KPX nacute uring -10 +KPX nacute v -40 +KPX nacute y -20 +KPX nacute yacute -20 +KPX nacute ydieresis -20 +KPX ncaron u -10 +KPX ncaron uacute -10 +KPX ncaron ucircumflex -10 +KPX ncaron udieresis -10 +KPX ncaron ugrave -10 +KPX ncaron uhungarumlaut -10 +KPX ncaron umacron -10 +KPX ncaron uogonek -10 +KPX ncaron uring -10 +KPX ncaron v -40 +KPX ncaron y -20 +KPX ncaron yacute -20 +KPX ncaron ydieresis -20 +KPX ncommaaccent u -10 +KPX ncommaaccent uacute -10 +KPX ncommaaccent ucircumflex -10 +KPX ncommaaccent udieresis -10 +KPX ncommaaccent ugrave -10 +KPX ncommaaccent uhungarumlaut -10 +KPX ncommaaccent umacron -10 +KPX ncommaaccent uogonek -10 +KPX ncommaaccent uring -10 +KPX ncommaaccent v -40 +KPX ncommaaccent y -20 +KPX ncommaaccent yacute -20 +KPX ncommaaccent ydieresis -20 +KPX ntilde u -10 +KPX ntilde uacute -10 +KPX ntilde ucircumflex -10 +KPX ntilde udieresis -10 +KPX ntilde ugrave -10 +KPX ntilde uhungarumlaut -10 +KPX ntilde umacron -10 +KPX ntilde uogonek -10 +KPX ntilde uring -10 +KPX ntilde v -40 +KPX ntilde y -20 +KPX ntilde yacute -20 +KPX ntilde ydieresis -20 +KPX o v -20 +KPX o w -15 +KPX o x -30 +KPX o y -20 +KPX o yacute -20 +KPX o ydieresis -20 +KPX oacute v -20 +KPX oacute w -15 +KPX oacute x -30 +KPX oacute y -20 +KPX oacute yacute -20 +KPX oacute ydieresis -20 +KPX ocircumflex v -20 +KPX ocircumflex w -15 +KPX ocircumflex x -30 +KPX ocircumflex y -20 +KPX ocircumflex yacute -20 +KPX ocircumflex ydieresis -20 +KPX odieresis v -20 +KPX odieresis w -15 +KPX odieresis x -30 +KPX odieresis y -20 +KPX odieresis yacute -20 +KPX odieresis ydieresis -20 +KPX ograve v -20 +KPX ograve w -15 +KPX ograve x -30 +KPX ograve y -20 +KPX ograve yacute -20 +KPX ograve ydieresis -20 +KPX ohungarumlaut v -20 +KPX ohungarumlaut w -15 +KPX ohungarumlaut x -30 +KPX ohungarumlaut y -20 +KPX ohungarumlaut yacute -20 +KPX ohungarumlaut ydieresis -20 +KPX omacron v -20 +KPX omacron w -15 +KPX omacron x -30 +KPX omacron y -20 +KPX omacron yacute -20 +KPX omacron ydieresis -20 +KPX oslash v -20 +KPX oslash w -15 +KPX oslash x -30 +KPX oslash y -20 +KPX oslash yacute -20 +KPX oslash ydieresis -20 +KPX otilde v -20 +KPX otilde w -15 +KPX otilde x -30 +KPX otilde y -20 +KPX otilde yacute -20 +KPX otilde ydieresis -20 +KPX p y -15 +KPX p yacute -15 +KPX p ydieresis -15 +KPX period quotedblright -120 +KPX period quoteright -120 +KPX period space -40 +KPX quotedblright space -80 +KPX quoteleft quoteleft -46 +KPX quoteright d -80 +KPX quoteright dcroat -80 +KPX quoteright l -20 +KPX quoteright lacute -20 +KPX quoteright lcommaaccent -20 +KPX quoteright lslash -20 +KPX quoteright quoteright -46 +KPX quoteright r -40 +KPX quoteright racute -40 +KPX quoteright rcaron -40 +KPX quoteright rcommaaccent -40 +KPX quoteright s -60 +KPX quoteright sacute -60 +KPX quoteright scaron -60 +KPX quoteright scedilla -60 +KPX quoteright scommaaccent -60 +KPX quoteright space -80 +KPX quoteright v -20 +KPX r c -20 +KPX r cacute -20 +KPX r ccaron -20 +KPX r ccedilla -20 +KPX r comma -60 +KPX r d -20 +KPX r dcroat -20 +KPX r g -15 +KPX r gbreve -15 +KPX r gcommaaccent -15 +KPX r hyphen -20 +KPX r o -20 +KPX r oacute -20 +KPX r ocircumflex -20 +KPX r odieresis -20 +KPX r ograve -20 +KPX r ohungarumlaut -20 +KPX r omacron -20 +KPX r oslash -20 +KPX r otilde -20 +KPX r period -60 +KPX r q -20 +KPX r s -15 +KPX r sacute -15 +KPX r scaron -15 +KPX r scedilla -15 +KPX r scommaaccent -15 +KPX r t 20 +KPX r tcommaaccent 20 +KPX r v 10 +KPX r y 10 +KPX r yacute 10 +KPX r ydieresis 10 +KPX racute c -20 +KPX racute cacute -20 +KPX racute ccaron -20 +KPX racute ccedilla -20 +KPX racute comma -60 +KPX racute d -20 +KPX racute dcroat -20 +KPX racute g -15 +KPX racute gbreve -15 +KPX racute gcommaaccent -15 +KPX racute hyphen -20 +KPX racute o -20 +KPX racute oacute -20 +KPX racute ocircumflex -20 +KPX racute odieresis -20 +KPX racute ograve -20 +KPX racute ohungarumlaut -20 +KPX racute omacron -20 +KPX racute oslash -20 +KPX racute otilde -20 +KPX racute period -60 +KPX racute q -20 +KPX racute s -15 +KPX racute sacute -15 +KPX racute scaron -15 +KPX racute scedilla -15 +KPX racute scommaaccent -15 +KPX racute t 20 +KPX racute tcommaaccent 20 +KPX racute v 10 +KPX racute y 10 +KPX racute yacute 10 +KPX racute ydieresis 10 +KPX rcaron c -20 +KPX rcaron cacute -20 +KPX rcaron ccaron -20 +KPX rcaron ccedilla -20 +KPX rcaron comma -60 +KPX rcaron d -20 +KPX rcaron dcroat -20 +KPX rcaron g -15 +KPX rcaron gbreve -15 +KPX rcaron gcommaaccent -15 +KPX rcaron hyphen -20 +KPX rcaron o -20 +KPX rcaron oacute -20 +KPX rcaron ocircumflex -20 +KPX rcaron odieresis -20 +KPX rcaron ograve -20 +KPX rcaron ohungarumlaut -20 +KPX rcaron omacron -20 +KPX rcaron oslash -20 +KPX rcaron otilde -20 +KPX rcaron period -60 +KPX rcaron q -20 +KPX rcaron s -15 +KPX rcaron sacute -15 +KPX rcaron scaron -15 +KPX rcaron scedilla -15 +KPX rcaron scommaaccent -15 +KPX rcaron t 20 +KPX rcaron tcommaaccent 20 +KPX rcaron v 10 +KPX rcaron y 10 +KPX rcaron yacute 10 +KPX rcaron ydieresis 10 +KPX rcommaaccent c -20 +KPX rcommaaccent cacute -20 +KPX rcommaaccent ccaron -20 +KPX rcommaaccent ccedilla -20 +KPX rcommaaccent comma -60 +KPX rcommaaccent d -20 +KPX rcommaaccent dcroat -20 +KPX rcommaaccent g -15 +KPX rcommaaccent gbreve -15 +KPX rcommaaccent gcommaaccent -15 +KPX rcommaaccent hyphen -20 +KPX rcommaaccent o -20 +KPX rcommaaccent oacute -20 +KPX rcommaaccent ocircumflex -20 +KPX rcommaaccent odieresis -20 +KPX rcommaaccent ograve -20 +KPX rcommaaccent ohungarumlaut -20 +KPX rcommaaccent omacron -20 +KPX rcommaaccent oslash -20 +KPX rcommaaccent otilde -20 +KPX rcommaaccent period -60 +KPX rcommaaccent q -20 +KPX rcommaaccent s -15 +KPX rcommaaccent sacute -15 +KPX rcommaaccent scaron -15 +KPX rcommaaccent scedilla -15 +KPX rcommaaccent scommaaccent -15 +KPX rcommaaccent t 20 +KPX rcommaaccent tcommaaccent 20 +KPX rcommaaccent v 10 +KPX rcommaaccent y 10 +KPX rcommaaccent yacute 10 +KPX rcommaaccent ydieresis 10 +KPX s w -15 +KPX sacute w -15 +KPX scaron w -15 +KPX scedilla w -15 +KPX scommaaccent w -15 +KPX semicolon space -40 +KPX space T -100 +KPX space Tcaron -100 +KPX space Tcommaaccent -100 +KPX space V -80 +KPX space W -80 +KPX space Y -120 +KPX space Yacute -120 +KPX space Ydieresis -120 +KPX space quotedblleft -80 +KPX space quoteleft -60 +KPX v a -20 +KPX v aacute -20 +KPX v abreve -20 +KPX v acircumflex -20 +KPX v adieresis -20 +KPX v agrave -20 +KPX v amacron -20 +KPX v aogonek -20 +KPX v aring -20 +KPX v atilde -20 +KPX v comma -80 +KPX v o -30 +KPX v oacute -30 +KPX v ocircumflex -30 +KPX v odieresis -30 +KPX v ograve -30 +KPX v ohungarumlaut -30 +KPX v omacron -30 +KPX v oslash -30 +KPX v otilde -30 +KPX v period -80 +KPX w comma -40 +KPX w o -20 +KPX w oacute -20 +KPX w ocircumflex -20 +KPX w odieresis -20 +KPX w ograve -20 +KPX w ohungarumlaut -20 +KPX w omacron -20 +KPX w oslash -20 +KPX w otilde -20 +KPX w period -40 +KPX x e -10 +KPX x eacute -10 +KPX x ecaron -10 +KPX x ecircumflex -10 +KPX x edieresis -10 +KPX x edotaccent -10 +KPX x egrave -10 +KPX x emacron -10 +KPX x eogonek -10 +KPX y a -30 +KPX y aacute -30 +KPX y abreve -30 +KPX y acircumflex -30 +KPX y adieresis -30 +KPX y agrave -30 +KPX y amacron -30 +KPX y aogonek -30 +KPX y aring -30 +KPX y atilde -30 +KPX y comma -80 +KPX y e -10 +KPX y eacute -10 +KPX y ecaron -10 +KPX y ecircumflex -10 +KPX y edieresis -10 +KPX y edotaccent -10 +KPX y egrave -10 +KPX y emacron -10 +KPX y eogonek -10 +KPX y o -25 +KPX y oacute -25 +KPX y ocircumflex -25 +KPX y odieresis -25 +KPX y ograve -25 +KPX y ohungarumlaut -25 +KPX y omacron -25 +KPX y oslash -25 +KPX y otilde -25 +KPX y period -80 +KPX yacute a -30 +KPX yacute aacute -30 +KPX yacute abreve -30 +KPX yacute acircumflex -30 +KPX yacute adieresis -30 +KPX yacute agrave -30 +KPX yacute amacron -30 +KPX yacute aogonek -30 +KPX yacute aring -30 +KPX yacute atilde -30 +KPX yacute comma -80 +KPX yacute e -10 +KPX yacute eacute -10 +KPX yacute ecaron -10 +KPX yacute ecircumflex -10 +KPX yacute edieresis -10 +KPX yacute edotaccent -10 +KPX yacute egrave -10 +KPX yacute emacron -10 +KPX yacute eogonek -10 +KPX yacute o -25 +KPX yacute oacute -25 +KPX yacute ocircumflex -25 +KPX yacute odieresis -25 +KPX yacute ograve -25 +KPX yacute ohungarumlaut -25 +KPX yacute omacron -25 +KPX yacute oslash -25 +KPX yacute otilde -25 +KPX yacute period -80 +KPX ydieresis a -30 +KPX ydieresis aacute -30 +KPX ydieresis abreve -30 +KPX ydieresis acircumflex -30 +KPX ydieresis adieresis -30 +KPX ydieresis agrave -30 +KPX ydieresis amacron -30 +KPX ydieresis aogonek -30 +KPX ydieresis aring -30 +KPX ydieresis atilde -30 +KPX ydieresis comma -80 +KPX ydieresis e -10 +KPX ydieresis eacute -10 +KPX ydieresis ecaron -10 +KPX ydieresis ecircumflex -10 +KPX ydieresis edieresis -10 +KPX ydieresis edotaccent -10 +KPX ydieresis egrave -10 +KPX ydieresis emacron -10 +KPX ydieresis eogonek -10 +KPX ydieresis o -25 +KPX ydieresis oacute -25 +KPX ydieresis ocircumflex -25 +KPX ydieresis odieresis -25 +KPX ydieresis ograve -25 +KPX ydieresis ohungarumlaut -25 +KPX ydieresis omacron -25 +KPX ydieresis oslash -25 +KPX ydieresis otilde -25 +KPX ydieresis period -80 +KPX z e 10 +KPX z eacute 10 +KPX z ecaron 10 +KPX z ecircumflex 10 +KPX z edieresis 10 +KPX z edotaccent 10 +KPX z egrave 10 +KPX z emacron 10 +KPX z eogonek 10 +KPX zacute e 10 +KPX zacute eacute 10 +KPX zacute ecaron 10 +KPX zacute ecircumflex 10 +KPX zacute edieresis 10 +KPX zacute edotaccent 10 +KPX zacute egrave 10 +KPX zacute emacron 10 +KPX zacute eogonek 10 +KPX zcaron e 10 +KPX zcaron eacute 10 +KPX zcaron ecaron 10 +KPX zcaron ecircumflex 10 +KPX zcaron edieresis 10 +KPX zcaron edotaccent 10 +KPX zcaron egrave 10 +KPX zcaron emacron 10 +KPX zcaron eogonek 10 +KPX zdotaccent e 10 +KPX zdotaccent eacute 10 +KPX zdotaccent ecaron 10 +KPX zdotaccent ecircumflex 10 +KPX zdotaccent edieresis 10 +KPX zdotaccent edotaccent 10 +KPX zdotaccent egrave 10 +KPX zdotaccent emacron 10 +KPX zdotaccent eogonek 10 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/Helvetica-Oblique.afm b/pyx/data/afm/Helvetica-Oblique.afm new file mode 100644 index 00000000..57bf4721 --- /dev/null +++ b/pyx/data/afm/Helvetica-Oblique.afm @@ -0,0 +1,3051 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:44:31 1997 +Comment UniqueID 43055 +Comment VMusage 14960 69346 +FontName Helvetica-Oblique +FullName Helvetica Oblique +FamilyName Helvetica +Weight Medium +ItalicAngle -12 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -170 -225 1116 931 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 718 +XHeight 523 +Ascender 718 +Descender -207 +StdHW 76 +StdVW 88 +StartCharMetrics 315 +C 32 ; WX 278 ; N space ; B 0 0 0 0 ; +C 33 ; WX 278 ; N exclam ; B 90 0 340 718 ; +C 34 ; WX 355 ; N quotedbl ; B 168 463 438 718 ; +C 35 ; WX 556 ; N numbersign ; B 73 0 631 688 ; +C 36 ; WX 556 ; N dollar ; B 69 -115 617 775 ; +C 37 ; WX 889 ; N percent ; B 147 -19 889 703 ; +C 38 ; WX 667 ; N ampersand ; B 77 -15 647 718 ; +C 39 ; WX 222 ; N quoteright ; B 151 463 310 718 ; +C 40 ; WX 333 ; N parenleft ; B 108 -207 454 733 ; +C 41 ; WX 333 ; N parenright ; B -9 -207 337 733 ; +C 42 ; WX 389 ; N asterisk ; B 165 431 475 718 ; +C 43 ; WX 584 ; N plus ; B 85 0 606 505 ; +C 44 ; WX 278 ; N comma ; B 56 -147 214 106 ; +C 45 ; WX 333 ; N hyphen ; B 93 232 357 322 ; +C 46 ; WX 278 ; N period ; B 87 0 214 106 ; +C 47 ; WX 278 ; N slash ; B -21 -19 452 737 ; +C 48 ; WX 556 ; N zero ; B 93 -19 608 703 ; +C 49 ; WX 556 ; N one ; B 207 0 508 703 ; +C 50 ; WX 556 ; N two ; B 26 0 617 703 ; +C 51 ; WX 556 ; N three ; B 75 -19 610 703 ; +C 52 ; WX 556 ; N four ; B 61 0 576 703 ; +C 53 ; WX 556 ; N five ; B 68 -19 621 688 ; +C 54 ; WX 556 ; N six ; B 91 -19 615 703 ; +C 55 ; WX 556 ; N seven ; B 137 0 669 688 ; +C 56 ; WX 556 ; N eight ; B 74 -19 607 703 ; +C 57 ; WX 556 ; N nine ; B 82 -19 609 703 ; +C 58 ; WX 278 ; N colon ; B 87 0 301 516 ; +C 59 ; WX 278 ; N semicolon ; B 56 -147 301 516 ; +C 60 ; WX 584 ; N less ; B 94 11 641 495 ; +C 61 ; WX 584 ; N equal ; B 63 115 628 390 ; +C 62 ; WX 584 ; N greater ; B 50 11 597 495 ; +C 63 ; WX 556 ; N question ; B 161 0 610 727 ; +C 64 ; WX 1015 ; N at ; B 215 -19 965 737 ; +C 65 ; WX 667 ; N A ; B 14 0 654 718 ; +C 66 ; WX 667 ; N B ; B 74 0 712 718 ; +C 67 ; WX 722 ; N C ; B 108 -19 782 737 ; +C 68 ; WX 722 ; N D ; B 81 0 764 718 ; +C 69 ; WX 667 ; N E ; B 86 0 762 718 ; +C 70 ; WX 611 ; N F ; B 86 0 736 718 ; +C 71 ; WX 778 ; N G ; B 111 -19 799 737 ; +C 72 ; WX 722 ; N H ; B 77 0 799 718 ; +C 73 ; WX 278 ; N I ; B 91 0 341 718 ; +C 74 ; WX 500 ; N J ; B 47 -19 581 718 ; +C 75 ; WX 667 ; N K ; B 76 0 808 718 ; +C 76 ; WX 556 ; N L ; B 76 0 555 718 ; +C 77 ; WX 833 ; N M ; B 73 0 914 718 ; +C 78 ; WX 722 ; N N ; B 76 0 799 718 ; +C 79 ; WX 778 ; N O ; B 105 -19 826 737 ; +C 80 ; WX 667 ; N P ; B 86 0 737 718 ; +C 81 ; WX 778 ; N Q ; B 105 -56 826 737 ; +C 82 ; WX 722 ; N R ; B 88 0 773 718 ; +C 83 ; WX 667 ; N S ; B 90 -19 713 737 ; +C 84 ; WX 611 ; N T ; B 148 0 750 718 ; +C 85 ; WX 722 ; N U ; B 123 -19 797 718 ; +C 86 ; WX 667 ; N V ; B 173 0 800 718 ; +C 87 ; WX 944 ; N W ; B 169 0 1081 718 ; +C 88 ; WX 667 ; N X ; B 19 0 790 718 ; +C 89 ; WX 667 ; N Y ; B 167 0 806 718 ; +C 90 ; WX 611 ; N Z ; B 23 0 741 718 ; +C 91 ; WX 278 ; N bracketleft ; B 21 -196 403 722 ; +C 92 ; WX 278 ; N backslash ; B 140 -19 291 737 ; +C 93 ; WX 278 ; N bracketright ; B -14 -196 368 722 ; +C 94 ; WX 469 ; N asciicircum ; B 42 264 539 688 ; +C 95 ; WX 556 ; N underscore ; B -27 -125 540 -75 ; +C 96 ; WX 222 ; N quoteleft ; B 165 470 323 725 ; +C 97 ; WX 556 ; N a ; B 61 -15 559 538 ; +C 98 ; WX 556 ; N b ; B 58 -15 584 718 ; +C 99 ; WX 500 ; N c ; B 74 -15 553 538 ; +C 100 ; WX 556 ; N d ; B 84 -15 652 718 ; +C 101 ; WX 556 ; N e ; B 84 -15 578 538 ; +C 102 ; WX 278 ; N f ; B 86 0 416 728 ; L i fi ; L l fl ; +C 103 ; WX 556 ; N g ; B 42 -220 610 538 ; +C 104 ; WX 556 ; N h ; B 65 0 573 718 ; +C 105 ; WX 222 ; N i ; B 67 0 308 718 ; +C 106 ; WX 222 ; N j ; B -60 -210 308 718 ; +C 107 ; WX 500 ; N k ; B 67 0 600 718 ; +C 108 ; WX 222 ; N l ; B 67 0 308 718 ; +C 109 ; WX 833 ; N m ; B 65 0 852 538 ; +C 110 ; WX 556 ; N n ; B 65 0 573 538 ; +C 111 ; WX 556 ; N o ; B 83 -14 585 538 ; +C 112 ; WX 556 ; N p ; B 14 -207 584 538 ; +C 113 ; WX 556 ; N q ; B 84 -207 605 538 ; +C 114 ; WX 333 ; N r ; B 77 0 446 538 ; +C 115 ; WX 500 ; N s ; B 63 -15 529 538 ; +C 116 ; WX 278 ; N t ; B 102 -7 368 669 ; +C 117 ; WX 556 ; N u ; B 94 -15 600 523 ; +C 118 ; WX 500 ; N v ; B 119 0 603 523 ; +C 119 ; WX 722 ; N w ; B 125 0 820 523 ; +C 120 ; WX 500 ; N x ; B 11 0 594 523 ; +C 121 ; WX 500 ; N y ; B 15 -214 600 523 ; +C 122 ; WX 500 ; N z ; B 31 0 571 523 ; +C 123 ; WX 334 ; N braceleft ; B 92 -196 445 722 ; +C 124 ; WX 260 ; N bar ; B 46 -225 332 775 ; +C 125 ; WX 334 ; N braceright ; B 0 -196 354 722 ; +C 126 ; WX 584 ; N asciitilde ; B 111 180 580 326 ; +C 161 ; WX 333 ; N exclamdown ; B 77 -195 326 523 ; +C 162 ; WX 556 ; N cent ; B 95 -115 584 623 ; +C 163 ; WX 556 ; N sterling ; B 49 -16 634 718 ; +C 164 ; WX 167 ; N fraction ; B -170 -19 482 703 ; +C 165 ; WX 556 ; N yen ; B 81 0 699 688 ; +C 166 ; WX 556 ; N florin ; B -52 -207 654 737 ; +C 167 ; WX 556 ; N section ; B 76 -191 584 737 ; +C 168 ; WX 556 ; N currency ; B 60 99 646 603 ; +C 169 ; WX 191 ; N quotesingle ; B 157 463 285 718 ; +C 170 ; WX 333 ; N quotedblleft ; B 138 470 461 725 ; +C 171 ; WX 556 ; N guillemotleft ; B 146 108 554 446 ; +C 172 ; WX 333 ; N guilsinglleft ; B 137 108 340 446 ; +C 173 ; WX 333 ; N guilsinglright ; B 111 108 314 446 ; +C 174 ; WX 500 ; N fi ; B 86 0 587 728 ; +C 175 ; WX 500 ; N fl ; B 86 0 585 728 ; +C 177 ; WX 556 ; N endash ; B 51 240 623 313 ; +C 178 ; WX 556 ; N dagger ; B 135 -159 622 718 ; +C 179 ; WX 556 ; N daggerdbl ; B 52 -159 623 718 ; +C 180 ; WX 278 ; N periodcentered ; B 129 190 257 315 ; +C 182 ; WX 537 ; N paragraph ; B 126 -173 650 718 ; +C 183 ; WX 350 ; N bullet ; B 91 202 413 517 ; +C 184 ; WX 222 ; N quotesinglbase ; B 21 -149 180 106 ; +C 185 ; WX 333 ; N quotedblbase ; B -6 -149 318 106 ; +C 186 ; WX 333 ; N quotedblright ; B 124 463 448 718 ; +C 187 ; WX 556 ; N guillemotright ; B 120 108 528 446 ; +C 188 ; WX 1000 ; N ellipsis ; B 115 0 908 106 ; +C 189 ; WX 1000 ; N perthousand ; B 88 -19 1029 703 ; +C 191 ; WX 611 ; N questiondown ; B 85 -201 534 525 ; +C 193 ; WX 333 ; N grave ; B 170 593 337 734 ; +C 194 ; WX 333 ; N acute ; B 248 593 475 734 ; +C 195 ; WX 333 ; N circumflex ; B 147 593 438 734 ; +C 196 ; WX 333 ; N tilde ; B 125 606 490 722 ; +C 197 ; WX 333 ; N macron ; B 143 627 468 684 ; +C 198 ; WX 333 ; N breve ; B 167 595 476 731 ; +C 199 ; WX 333 ; N dotaccent ; B 249 604 362 706 ; +C 200 ; WX 333 ; N dieresis ; B 168 604 443 706 ; +C 202 ; WX 333 ; N ring ; B 214 572 402 756 ; +C 203 ; WX 333 ; N cedilla ; B 2 -225 232 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B 157 593 565 734 ; +C 206 ; WX 333 ; N ogonek ; B 43 -225 249 0 ; +C 207 ; WX 333 ; N caron ; B 177 593 468 734 ; +C 208 ; WX 1000 ; N emdash ; B 51 240 1067 313 ; +C 225 ; WX 1000 ; N AE ; B 8 0 1097 718 ; +C 227 ; WX 370 ; N ordfeminine ; B 127 405 449 737 ; +C 232 ; WX 556 ; N Lslash ; B 41 0 555 718 ; +C 233 ; WX 778 ; N Oslash ; B 43 -19 890 737 ; +C 234 ; WX 1000 ; N OE ; B 98 -19 1116 737 ; +C 235 ; WX 365 ; N ordmasculine ; B 141 405 468 737 ; +C 241 ; WX 889 ; N ae ; B 61 -15 909 538 ; +C 245 ; WX 278 ; N dotlessi ; B 95 0 294 523 ; +C 248 ; WX 222 ; N lslash ; B 41 0 347 718 ; +C 249 ; WX 611 ; N oslash ; B 29 -22 647 545 ; +C 250 ; WX 944 ; N oe ; B 83 -15 964 538 ; +C 251 ; WX 611 ; N germandbls ; B 67 -15 658 728 ; +C -1 ; WX 278 ; N Idieresis ; B 91 0 458 901 ; +C -1 ; WX 556 ; N eacute ; B 84 -15 587 734 ; +C -1 ; WX 556 ; N abreve ; B 61 -15 578 731 ; +C -1 ; WX 556 ; N uhungarumlaut ; B 94 -15 677 734 ; +C -1 ; WX 556 ; N ecaron ; B 84 -15 580 734 ; +C -1 ; WX 667 ; N Ydieresis ; B 167 0 806 901 ; +C -1 ; WX 584 ; N divide ; B 85 -19 606 524 ; +C -1 ; WX 667 ; N Yacute ; B 167 0 806 929 ; +C -1 ; WX 667 ; N Acircumflex ; B 14 0 654 929 ; +C -1 ; WX 556 ; N aacute ; B 61 -15 587 734 ; +C -1 ; WX 722 ; N Ucircumflex ; B 123 -19 797 929 ; +C -1 ; WX 500 ; N yacute ; B 15 -214 600 734 ; +C -1 ; WX 500 ; N scommaaccent ; B 63 -225 529 538 ; +C -1 ; WX 556 ; N ecircumflex ; B 84 -15 578 734 ; +C -1 ; WX 722 ; N Uring ; B 123 -19 797 931 ; +C -1 ; WX 722 ; N Udieresis ; B 123 -19 797 901 ; +C -1 ; WX 556 ; N aogonek ; B 61 -220 559 538 ; +C -1 ; WX 722 ; N Uacute ; B 123 -19 797 929 ; +C -1 ; WX 556 ; N uogonek ; B 94 -225 600 523 ; +C -1 ; WX 667 ; N Edieresis ; B 86 0 762 901 ; +C -1 ; WX 722 ; N Dcroat ; B 69 0 764 718 ; +C -1 ; WX 250 ; N commaaccent ; B 39 -225 172 -40 ; +C -1 ; WX 737 ; N copyright ; B 54 -19 837 737 ; +C -1 ; WX 667 ; N Emacron ; B 86 0 762 879 ; +C -1 ; WX 500 ; N ccaron ; B 74 -15 553 734 ; +C -1 ; WX 556 ; N aring ; B 61 -15 559 756 ; +C -1 ; WX 722 ; N Ncommaaccent ; B 76 -225 799 718 ; +C -1 ; WX 222 ; N lacute ; B 67 0 461 929 ; +C -1 ; WX 556 ; N agrave ; B 61 -15 559 734 ; +C -1 ; WX 611 ; N Tcommaaccent ; B 148 -225 750 718 ; +C -1 ; WX 722 ; N Cacute ; B 108 -19 782 929 ; +C -1 ; WX 556 ; N atilde ; B 61 -15 592 722 ; +C -1 ; WX 667 ; N Edotaccent ; B 86 0 762 901 ; +C -1 ; WX 500 ; N scaron ; B 63 -15 552 734 ; +C -1 ; WX 500 ; N scedilla ; B 63 -225 529 538 ; +C -1 ; WX 278 ; N iacute ; B 95 0 448 734 ; +C -1 ; WX 471 ; N lozenge ; B 88 0 540 728 ; +C -1 ; WX 722 ; N Rcaron ; B 88 0 773 929 ; +C -1 ; WX 778 ; N Gcommaaccent ; B 111 -225 799 737 ; +C -1 ; WX 556 ; N ucircumflex ; B 94 -15 600 734 ; +C -1 ; WX 556 ; N acircumflex ; B 61 -15 559 734 ; +C -1 ; WX 667 ; N Amacron ; B 14 0 677 879 ; +C -1 ; WX 333 ; N rcaron ; B 77 0 508 734 ; +C -1 ; WX 500 ; N ccedilla ; B 74 -225 553 538 ; +C -1 ; WX 611 ; N Zdotaccent ; B 23 0 741 901 ; +C -1 ; WX 667 ; N Thorn ; B 86 0 712 718 ; +C -1 ; WX 778 ; N Omacron ; B 105 -19 826 879 ; +C -1 ; WX 722 ; N Racute ; B 88 0 773 929 ; +C -1 ; WX 667 ; N Sacute ; B 90 -19 713 929 ; +C -1 ; WX 643 ; N dcaron ; B 84 -15 808 718 ; +C -1 ; WX 722 ; N Umacron ; B 123 -19 797 879 ; +C -1 ; WX 556 ; N uring ; B 94 -15 600 756 ; +C -1 ; WX 333 ; N threesuperior ; B 90 270 436 703 ; +C -1 ; WX 778 ; N Ograve ; B 105 -19 826 929 ; +C -1 ; WX 667 ; N Agrave ; B 14 0 654 929 ; +C -1 ; WX 667 ; N Abreve ; B 14 0 685 926 ; +C -1 ; WX 584 ; N multiply ; B 50 0 642 506 ; +C -1 ; WX 556 ; N uacute ; B 94 -15 600 734 ; +C -1 ; WX 611 ; N Tcaron ; B 148 0 750 929 ; +C -1 ; WX 476 ; N partialdiff ; B 41 -38 550 714 ; +C -1 ; WX 500 ; N ydieresis ; B 15 -214 600 706 ; +C -1 ; WX 722 ; N Nacute ; B 76 0 799 929 ; +C -1 ; WX 278 ; N icircumflex ; B 95 0 411 734 ; +C -1 ; WX 667 ; N Ecircumflex ; B 86 0 762 929 ; +C -1 ; WX 556 ; N adieresis ; B 61 -15 559 706 ; +C -1 ; WX 556 ; N edieresis ; B 84 -15 578 706 ; +C -1 ; WX 500 ; N cacute ; B 74 -15 559 734 ; +C -1 ; WX 556 ; N nacute ; B 65 0 587 734 ; +C -1 ; WX 556 ; N umacron ; B 94 -15 600 684 ; +C -1 ; WX 722 ; N Ncaron ; B 76 0 799 929 ; +C -1 ; WX 278 ; N Iacute ; B 91 0 489 929 ; +C -1 ; WX 584 ; N plusminus ; B 39 0 618 506 ; +C -1 ; WX 260 ; N brokenbar ; B 62 -150 316 700 ; +C -1 ; WX 737 ; N registered ; B 54 -19 837 737 ; +C -1 ; WX 778 ; N Gbreve ; B 111 -19 799 926 ; +C -1 ; WX 278 ; N Idotaccent ; B 91 0 377 901 ; +C -1 ; WX 600 ; N summation ; B 15 -10 671 706 ; +C -1 ; WX 667 ; N Egrave ; B 86 0 762 929 ; +C -1 ; WX 333 ; N racute ; B 77 0 475 734 ; +C -1 ; WX 556 ; N omacron ; B 83 -14 585 684 ; +C -1 ; WX 611 ; N Zacute ; B 23 0 741 929 ; +C -1 ; WX 611 ; N Zcaron ; B 23 0 741 929 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 620 674 ; +C -1 ; WX 722 ; N Eth ; B 69 0 764 718 ; +C -1 ; WX 722 ; N Ccedilla ; B 108 -225 782 737 ; +C -1 ; WX 222 ; N lcommaaccent ; B 25 -225 308 718 ; +C -1 ; WX 317 ; N tcaron ; B 102 -7 501 808 ; +C -1 ; WX 556 ; N eogonek ; B 84 -225 578 538 ; +C -1 ; WX 722 ; N Uogonek ; B 123 -225 797 718 ; +C -1 ; WX 667 ; N Aacute ; B 14 0 683 929 ; +C -1 ; WX 667 ; N Adieresis ; B 14 0 654 901 ; +C -1 ; WX 556 ; N egrave ; B 84 -15 578 734 ; +C -1 ; WX 500 ; N zacute ; B 31 0 571 734 ; +C -1 ; WX 222 ; N iogonek ; B -61 -225 308 718 ; +C -1 ; WX 778 ; N Oacute ; B 105 -19 826 929 ; +C -1 ; WX 556 ; N oacute ; B 83 -14 587 734 ; +C -1 ; WX 556 ; N amacron ; B 61 -15 580 684 ; +C -1 ; WX 500 ; N sacute ; B 63 -15 559 734 ; +C -1 ; WX 278 ; N idieresis ; B 95 0 416 706 ; +C -1 ; WX 778 ; N Ocircumflex ; B 105 -19 826 929 ; +C -1 ; WX 722 ; N Ugrave ; B 123 -19 797 929 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 556 ; N thorn ; B 14 -207 584 718 ; +C -1 ; WX 333 ; N twosuperior ; B 64 281 449 703 ; +C -1 ; WX 778 ; N Odieresis ; B 105 -19 826 901 ; +C -1 ; WX 556 ; N mu ; B 24 -207 600 523 ; +C -1 ; WX 278 ; N igrave ; B 95 0 310 734 ; +C -1 ; WX 556 ; N ohungarumlaut ; B 83 -14 677 734 ; +C -1 ; WX 667 ; N Eogonek ; B 86 -220 762 718 ; +C -1 ; WX 556 ; N dcroat ; B 84 -15 689 718 ; +C -1 ; WX 834 ; N threequarters ; B 130 -19 861 703 ; +C -1 ; WX 667 ; N Scedilla ; B 90 -225 713 737 ; +C -1 ; WX 299 ; N lcaron ; B 67 0 464 718 ; +C -1 ; WX 667 ; N Kcommaaccent ; B 76 -225 808 718 ; +C -1 ; WX 556 ; N Lacute ; B 76 0 555 929 ; +C -1 ; WX 1000 ; N trademark ; B 186 306 1056 718 ; +C -1 ; WX 556 ; N edotaccent ; B 84 -15 578 706 ; +C -1 ; WX 278 ; N Igrave ; B 91 0 351 929 ; +C -1 ; WX 278 ; N Imacron ; B 91 0 483 879 ; +C -1 ; WX 556 ; N Lcaron ; B 76 0 570 718 ; +C -1 ; WX 834 ; N onehalf ; B 114 -19 839 703 ; +C -1 ; WX 549 ; N lessequal ; B 26 0 666 674 ; +C -1 ; WX 556 ; N ocircumflex ; B 83 -14 585 734 ; +C -1 ; WX 556 ; N ntilde ; B 65 0 592 722 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 123 -19 801 929 ; +C -1 ; WX 667 ; N Eacute ; B 86 0 762 929 ; +C -1 ; WX 556 ; N emacron ; B 84 -15 580 684 ; +C -1 ; WX 556 ; N gbreve ; B 42 -220 610 731 ; +C -1 ; WX 834 ; N onequarter ; B 150 -19 802 703 ; +C -1 ; WX 667 ; N Scaron ; B 90 -19 713 929 ; +C -1 ; WX 667 ; N Scommaaccent ; B 90 -225 713 737 ; +C -1 ; WX 778 ; N Ohungarumlaut ; B 105 -19 829 929 ; +C -1 ; WX 400 ; N degree ; B 169 411 468 703 ; +C -1 ; WX 556 ; N ograve ; B 83 -14 585 734 ; +C -1 ; WX 722 ; N Ccaron ; B 108 -19 782 929 ; +C -1 ; WX 556 ; N ugrave ; B 94 -15 600 734 ; +C -1 ; WX 453 ; N radical ; B 79 -80 617 762 ; +C -1 ; WX 722 ; N Dcaron ; B 81 0 764 929 ; +C -1 ; WX 333 ; N rcommaaccent ; B 30 -225 446 538 ; +C -1 ; WX 722 ; N Ntilde ; B 76 0 799 917 ; +C -1 ; WX 556 ; N otilde ; B 83 -14 602 722 ; +C -1 ; WX 722 ; N Rcommaaccent ; B 88 -225 773 718 ; +C -1 ; WX 556 ; N Lcommaaccent ; B 76 -225 555 718 ; +C -1 ; WX 667 ; N Atilde ; B 14 0 699 917 ; +C -1 ; WX 667 ; N Aogonek ; B 14 -225 654 718 ; +C -1 ; WX 667 ; N Aring ; B 14 0 654 931 ; +C -1 ; WX 778 ; N Otilde ; B 105 -19 826 917 ; +C -1 ; WX 500 ; N zdotaccent ; B 31 0 571 706 ; +C -1 ; WX 667 ; N Ecaron ; B 86 0 762 929 ; +C -1 ; WX 278 ; N Iogonek ; B -33 -225 341 718 ; +C -1 ; WX 500 ; N kcommaaccent ; B 67 -225 600 718 ; +C -1 ; WX 584 ; N minus ; B 85 216 606 289 ; +C -1 ; WX 278 ; N Icircumflex ; B 91 0 452 929 ; +C -1 ; WX 556 ; N ncaron ; B 65 0 580 734 ; +C -1 ; WX 278 ; N tcommaaccent ; B 63 -225 368 669 ; +C -1 ; WX 584 ; N logicalnot ; B 106 108 628 390 ; +C -1 ; WX 556 ; N odieresis ; B 83 -14 585 706 ; +C -1 ; WX 556 ; N udieresis ; B 94 -15 600 706 ; +C -1 ; WX 549 ; N notequal ; B 34 -35 623 551 ; +C -1 ; WX 556 ; N gcommaaccent ; B 42 -220 610 822 ; +C -1 ; WX 556 ; N eth ; B 81 -15 617 737 ; +C -1 ; WX 500 ; N zcaron ; B 31 0 571 734 ; +C -1 ; WX 556 ; N ncommaaccent ; B 65 -225 573 538 ; +C -1 ; WX 333 ; N onesuperior ; B 166 281 371 703 ; +C -1 ; WX 278 ; N imacron ; B 95 0 417 684 ; +C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2705 +KPX A C -30 +KPX A Cacute -30 +KPX A Ccaron -30 +KPX A Ccedilla -30 +KPX A G -30 +KPX A Gbreve -30 +KPX A Gcommaaccent -30 +KPX A O -30 +KPX A Oacute -30 +KPX A Ocircumflex -30 +KPX A Odieresis -30 +KPX A Ograve -30 +KPX A Ohungarumlaut -30 +KPX A Omacron -30 +KPX A Oslash -30 +KPX A Otilde -30 +KPX A Q -30 +KPX A T -120 +KPX A Tcaron -120 +KPX A Tcommaaccent -120 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -70 +KPX A W -50 +KPX A Y -100 +KPX A Yacute -100 +KPX A Ydieresis -100 +KPX A u -30 +KPX A uacute -30 +KPX A ucircumflex -30 +KPX A udieresis -30 +KPX A ugrave -30 +KPX A uhungarumlaut -30 +KPX A umacron -30 +KPX A uogonek -30 +KPX A uring -30 +KPX A v -40 +KPX A w -40 +KPX A y -40 +KPX A yacute -40 +KPX A ydieresis -40 +KPX Aacute C -30 +KPX Aacute Cacute -30 +KPX Aacute Ccaron -30 +KPX Aacute Ccedilla -30 +KPX Aacute G -30 +KPX Aacute Gbreve -30 +KPX Aacute Gcommaaccent -30 +KPX Aacute O -30 +KPX Aacute Oacute -30 +KPX Aacute Ocircumflex -30 +KPX Aacute Odieresis -30 +KPX Aacute Ograve -30 +KPX Aacute Ohungarumlaut -30 +KPX Aacute Omacron -30 +KPX Aacute Oslash -30 +KPX Aacute Otilde -30 +KPX Aacute Q -30 +KPX Aacute T -120 +KPX Aacute Tcaron -120 +KPX Aacute Tcommaaccent -120 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -70 +KPX Aacute W -50 +KPX Aacute Y -100 +KPX Aacute Yacute -100 +KPX Aacute Ydieresis -100 +KPX Aacute u -30 +KPX Aacute uacute -30 +KPX Aacute ucircumflex -30 +KPX Aacute udieresis -30 +KPX Aacute ugrave -30 +KPX Aacute uhungarumlaut -30 +KPX Aacute umacron -30 +KPX Aacute uogonek -30 +KPX Aacute uring -30 +KPX Aacute v -40 +KPX Aacute w -40 +KPX Aacute y -40 +KPX Aacute yacute -40 +KPX Aacute ydieresis -40 +KPX Abreve C -30 +KPX Abreve Cacute -30 +KPX Abreve Ccaron -30 +KPX Abreve Ccedilla -30 +KPX Abreve G -30 +KPX Abreve Gbreve -30 +KPX Abreve Gcommaaccent -30 +KPX Abreve O -30 +KPX Abreve Oacute -30 +KPX Abreve Ocircumflex -30 +KPX Abreve Odieresis -30 +KPX Abreve Ograve -30 +KPX Abreve Ohungarumlaut -30 +KPX Abreve Omacron -30 +KPX Abreve Oslash -30 +KPX Abreve Otilde -30 +KPX Abreve Q -30 +KPX Abreve T -120 +KPX Abreve Tcaron -120 +KPX Abreve Tcommaaccent -120 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -70 +KPX Abreve W -50 +KPX Abreve Y -100 +KPX Abreve Yacute -100 +KPX Abreve Ydieresis -100 +KPX Abreve u -30 +KPX Abreve uacute -30 +KPX Abreve ucircumflex -30 +KPX Abreve udieresis -30 +KPX Abreve ugrave -30 +KPX Abreve uhungarumlaut -30 +KPX Abreve umacron -30 +KPX Abreve uogonek -30 +KPX Abreve uring -30 +KPX Abreve v -40 +KPX Abreve w -40 +KPX Abreve y -40 +KPX Abreve yacute -40 +KPX Abreve ydieresis -40 +KPX Acircumflex C -30 +KPX Acircumflex Cacute -30 +KPX Acircumflex Ccaron -30 +KPX Acircumflex Ccedilla -30 +KPX Acircumflex G -30 +KPX Acircumflex Gbreve -30 +KPX Acircumflex Gcommaaccent -30 +KPX Acircumflex O -30 +KPX Acircumflex Oacute -30 +KPX Acircumflex Ocircumflex -30 +KPX Acircumflex Odieresis -30 +KPX Acircumflex Ograve -30 +KPX Acircumflex Ohungarumlaut -30 +KPX Acircumflex Omacron -30 +KPX Acircumflex Oslash -30 +KPX Acircumflex Otilde -30 +KPX Acircumflex Q -30 +KPX Acircumflex T -120 +KPX Acircumflex Tcaron -120 +KPX Acircumflex Tcommaaccent -120 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -70 +KPX Acircumflex W -50 +KPX Acircumflex Y -100 +KPX Acircumflex Yacute -100 +KPX Acircumflex Ydieresis -100 +KPX Acircumflex u -30 +KPX Acircumflex uacute -30 +KPX Acircumflex ucircumflex -30 +KPX Acircumflex udieresis -30 +KPX Acircumflex ugrave -30 +KPX Acircumflex uhungarumlaut -30 +KPX Acircumflex umacron -30 +KPX Acircumflex uogonek -30 +KPX Acircumflex uring -30 +KPX Acircumflex v -40 +KPX Acircumflex w -40 +KPX Acircumflex y -40 +KPX Acircumflex yacute -40 +KPX Acircumflex ydieresis -40 +KPX Adieresis C -30 +KPX Adieresis Cacute -30 +KPX Adieresis Ccaron -30 +KPX Adieresis Ccedilla -30 +KPX Adieresis G -30 +KPX Adieresis Gbreve -30 +KPX Adieresis Gcommaaccent -30 +KPX Adieresis O -30 +KPX Adieresis Oacute -30 +KPX Adieresis Ocircumflex -30 +KPX Adieresis Odieresis -30 +KPX Adieresis Ograve -30 +KPX Adieresis Ohungarumlaut -30 +KPX Adieresis Omacron -30 +KPX Adieresis Oslash -30 +KPX Adieresis Otilde -30 +KPX Adieresis Q -30 +KPX Adieresis T -120 +KPX Adieresis Tcaron -120 +KPX Adieresis Tcommaaccent -120 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -70 +KPX Adieresis W -50 +KPX Adieresis Y -100 +KPX Adieresis Yacute -100 +KPX Adieresis Ydieresis -100 +KPX Adieresis u -30 +KPX Adieresis uacute -30 +KPX Adieresis ucircumflex -30 +KPX Adieresis udieresis -30 +KPX Adieresis ugrave -30 +KPX Adieresis uhungarumlaut -30 +KPX Adieresis umacron -30 +KPX Adieresis uogonek -30 +KPX Adieresis uring -30 +KPX Adieresis v -40 +KPX Adieresis w -40 +KPX Adieresis y -40 +KPX Adieresis yacute -40 +KPX Adieresis ydieresis -40 +KPX Agrave C -30 +KPX Agrave Cacute -30 +KPX Agrave Ccaron -30 +KPX Agrave Ccedilla -30 +KPX Agrave G -30 +KPX Agrave Gbreve -30 +KPX Agrave Gcommaaccent -30 +KPX Agrave O -30 +KPX Agrave Oacute -30 +KPX Agrave Ocircumflex -30 +KPX Agrave Odieresis -30 +KPX Agrave Ograve -30 +KPX Agrave Ohungarumlaut -30 +KPX Agrave Omacron -30 +KPX Agrave Oslash -30 +KPX Agrave Otilde -30 +KPX Agrave Q -30 +KPX Agrave T -120 +KPX Agrave Tcaron -120 +KPX Agrave Tcommaaccent -120 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -70 +KPX Agrave W -50 +KPX Agrave Y -100 +KPX Agrave Yacute -100 +KPX Agrave Ydieresis -100 +KPX Agrave u -30 +KPX Agrave uacute -30 +KPX Agrave ucircumflex -30 +KPX Agrave udieresis -30 +KPX Agrave ugrave -30 +KPX Agrave uhungarumlaut -30 +KPX Agrave umacron -30 +KPX Agrave uogonek -30 +KPX Agrave uring -30 +KPX Agrave v -40 +KPX Agrave w -40 +KPX Agrave y -40 +KPX Agrave yacute -40 +KPX Agrave ydieresis -40 +KPX Amacron C -30 +KPX Amacron Cacute -30 +KPX Amacron Ccaron -30 +KPX Amacron Ccedilla -30 +KPX Amacron G -30 +KPX Amacron Gbreve -30 +KPX Amacron Gcommaaccent -30 +KPX Amacron O -30 +KPX Amacron Oacute -30 +KPX Amacron Ocircumflex -30 +KPX Amacron Odieresis -30 +KPX Amacron Ograve -30 +KPX Amacron Ohungarumlaut -30 +KPX Amacron Omacron -30 +KPX Amacron Oslash -30 +KPX Amacron Otilde -30 +KPX Amacron Q -30 +KPX Amacron T -120 +KPX Amacron Tcaron -120 +KPX Amacron Tcommaaccent -120 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -70 +KPX Amacron W -50 +KPX Amacron Y -100 +KPX Amacron Yacute -100 +KPX Amacron Ydieresis -100 +KPX Amacron u -30 +KPX Amacron uacute -30 +KPX Amacron ucircumflex -30 +KPX Amacron udieresis -30 +KPX Amacron ugrave -30 +KPX Amacron uhungarumlaut -30 +KPX Amacron umacron -30 +KPX Amacron uogonek -30 +KPX Amacron uring -30 +KPX Amacron v -40 +KPX Amacron w -40 +KPX Amacron y -40 +KPX Amacron yacute -40 +KPX Amacron ydieresis -40 +KPX Aogonek C -30 +KPX Aogonek Cacute -30 +KPX Aogonek Ccaron -30 +KPX Aogonek Ccedilla -30 +KPX Aogonek G -30 +KPX Aogonek Gbreve -30 +KPX Aogonek Gcommaaccent -30 +KPX Aogonek O -30 +KPX Aogonek Oacute -30 +KPX Aogonek Ocircumflex -30 +KPX Aogonek Odieresis -30 +KPX Aogonek Ograve -30 +KPX Aogonek Ohungarumlaut -30 +KPX Aogonek Omacron -30 +KPX Aogonek Oslash -30 +KPX Aogonek Otilde -30 +KPX Aogonek Q -30 +KPX Aogonek T -120 +KPX Aogonek Tcaron -120 +KPX Aogonek Tcommaaccent -120 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -70 +KPX Aogonek W -50 +KPX Aogonek Y -100 +KPX Aogonek Yacute -100 +KPX Aogonek Ydieresis -100 +KPX Aogonek u -30 +KPX Aogonek uacute -30 +KPX Aogonek ucircumflex -30 +KPX Aogonek udieresis -30 +KPX Aogonek ugrave -30 +KPX Aogonek uhungarumlaut -30 +KPX Aogonek umacron -30 +KPX Aogonek uogonek -30 +KPX Aogonek uring -30 +KPX Aogonek v -40 +KPX Aogonek w -40 +KPX Aogonek y -40 +KPX Aogonek yacute -40 +KPX Aogonek ydieresis -40 +KPX Aring C -30 +KPX Aring Cacute -30 +KPX Aring Ccaron -30 +KPX Aring Ccedilla -30 +KPX Aring G -30 +KPX Aring Gbreve -30 +KPX Aring Gcommaaccent -30 +KPX Aring O -30 +KPX Aring Oacute -30 +KPX Aring Ocircumflex -30 +KPX Aring Odieresis -30 +KPX Aring Ograve -30 +KPX Aring Ohungarumlaut -30 +KPX Aring Omacron -30 +KPX Aring Oslash -30 +KPX Aring Otilde -30 +KPX Aring Q -30 +KPX Aring T -120 +KPX Aring Tcaron -120 +KPX Aring Tcommaaccent -120 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -70 +KPX Aring W -50 +KPX Aring Y -100 +KPX Aring Yacute -100 +KPX Aring Ydieresis -100 +KPX Aring u -30 +KPX Aring uacute -30 +KPX Aring ucircumflex -30 +KPX Aring udieresis -30 +KPX Aring ugrave -30 +KPX Aring uhungarumlaut -30 +KPX Aring umacron -30 +KPX Aring uogonek -30 +KPX Aring uring -30 +KPX Aring v -40 +KPX Aring w -40 +KPX Aring y -40 +KPX Aring yacute -40 +KPX Aring ydieresis -40 +KPX Atilde C -30 +KPX Atilde Cacute -30 +KPX Atilde Ccaron -30 +KPX Atilde Ccedilla -30 +KPX Atilde G -30 +KPX Atilde Gbreve -30 +KPX Atilde Gcommaaccent -30 +KPX Atilde O -30 +KPX Atilde Oacute -30 +KPX Atilde Ocircumflex -30 +KPX Atilde Odieresis -30 +KPX Atilde Ograve -30 +KPX Atilde Ohungarumlaut -30 +KPX Atilde Omacron -30 +KPX Atilde Oslash -30 +KPX Atilde Otilde -30 +KPX Atilde Q -30 +KPX Atilde T -120 +KPX Atilde Tcaron -120 +KPX Atilde Tcommaaccent -120 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -70 +KPX Atilde W -50 +KPX Atilde Y -100 +KPX Atilde Yacute -100 +KPX Atilde Ydieresis -100 +KPX Atilde u -30 +KPX Atilde uacute -30 +KPX Atilde ucircumflex -30 +KPX Atilde udieresis -30 +KPX Atilde ugrave -30 +KPX Atilde uhungarumlaut -30 +KPX Atilde umacron -30 +KPX Atilde uogonek -30 +KPX Atilde uring -30 +KPX Atilde v -40 +KPX Atilde w -40 +KPX Atilde y -40 +KPX Atilde yacute -40 +KPX Atilde ydieresis -40 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX B comma -20 +KPX B period -20 +KPX C comma -30 +KPX C period -30 +KPX Cacute comma -30 +KPX Cacute period -30 +KPX Ccaron comma -30 +KPX Ccaron period -30 +KPX Ccedilla comma -30 +KPX Ccedilla period -30 +KPX D A -40 +KPX D Aacute -40 +KPX D Abreve -40 +KPX D Acircumflex -40 +KPX D Adieresis -40 +KPX D Agrave -40 +KPX D Amacron -40 +KPX D Aogonek -40 +KPX D Aring -40 +KPX D Atilde -40 +KPX D V -70 +KPX D W -40 +KPX D Y -90 +KPX D Yacute -90 +KPX D Ydieresis -90 +KPX D comma -70 +KPX D period -70 +KPX Dcaron A -40 +KPX Dcaron Aacute -40 +KPX Dcaron Abreve -40 +KPX Dcaron Acircumflex -40 +KPX Dcaron Adieresis -40 +KPX Dcaron Agrave -40 +KPX Dcaron Amacron -40 +KPX Dcaron Aogonek -40 +KPX Dcaron Aring -40 +KPX Dcaron Atilde -40 +KPX Dcaron V -70 +KPX Dcaron W -40 +KPX Dcaron Y -90 +KPX Dcaron Yacute -90 +KPX Dcaron Ydieresis -90 +KPX Dcaron comma -70 +KPX Dcaron period -70 +KPX Dcroat A -40 +KPX Dcroat Aacute -40 +KPX Dcroat Abreve -40 +KPX Dcroat Acircumflex -40 +KPX Dcroat Adieresis -40 +KPX Dcroat Agrave -40 +KPX Dcroat Amacron -40 +KPX Dcroat Aogonek -40 +KPX Dcroat Aring -40 +KPX Dcroat Atilde -40 +KPX Dcroat V -70 +KPX Dcroat W -40 +KPX Dcroat Y -90 +KPX Dcroat Yacute -90 +KPX Dcroat Ydieresis -90 +KPX Dcroat comma -70 +KPX Dcroat period -70 +KPX F A -80 +KPX F Aacute -80 +KPX F Abreve -80 +KPX F Acircumflex -80 +KPX F Adieresis -80 +KPX F Agrave -80 +KPX F Amacron -80 +KPX F Aogonek -80 +KPX F Aring -80 +KPX F Atilde -80 +KPX F a -50 +KPX F aacute -50 +KPX F abreve -50 +KPX F acircumflex -50 +KPX F adieresis -50 +KPX F agrave -50 +KPX F amacron -50 +KPX F aogonek -50 +KPX F aring -50 +KPX F atilde -50 +KPX F comma -150 +KPX F e -30 +KPX F eacute -30 +KPX F ecaron -30 +KPX F ecircumflex -30 +KPX F edieresis -30 +KPX F edotaccent -30 +KPX F egrave -30 +KPX F emacron -30 +KPX F eogonek -30 +KPX F o -30 +KPX F oacute -30 +KPX F ocircumflex -30 +KPX F odieresis -30 +KPX F ograve -30 +KPX F ohungarumlaut -30 +KPX F omacron -30 +KPX F oslash -30 +KPX F otilde -30 +KPX F period -150 +KPX F r -45 +KPX F racute -45 +KPX F rcaron -45 +KPX F rcommaaccent -45 +KPX J A -20 +KPX J Aacute -20 +KPX J Abreve -20 +KPX J Acircumflex -20 +KPX J Adieresis -20 +KPX J Agrave -20 +KPX J Amacron -20 +KPX J Aogonek -20 +KPX J Aring -20 +KPX J Atilde -20 +KPX J a -20 +KPX J aacute -20 +KPX J abreve -20 +KPX J acircumflex -20 +KPX J adieresis -20 +KPX J agrave -20 +KPX J amacron -20 +KPX J aogonek -20 +KPX J aring -20 +KPX J atilde -20 +KPX J comma -30 +KPX J period -30 +KPX J u -20 +KPX J uacute -20 +KPX J ucircumflex -20 +KPX J udieresis -20 +KPX J ugrave -20 +KPX J uhungarumlaut -20 +KPX J umacron -20 +KPX J uogonek -20 +KPX J uring -20 +KPX K O -50 +KPX K Oacute -50 +KPX K Ocircumflex -50 +KPX K Odieresis -50 +KPX K Ograve -50 +KPX K Ohungarumlaut -50 +KPX K Omacron -50 +KPX K Oslash -50 +KPX K Otilde -50 +KPX K e -40 +KPX K eacute -40 +KPX K ecaron -40 +KPX K ecircumflex -40 +KPX K edieresis -40 +KPX K edotaccent -40 +KPX K egrave -40 +KPX K emacron -40 +KPX K eogonek -40 +KPX K o -40 +KPX K oacute -40 +KPX K ocircumflex -40 +KPX K odieresis -40 +KPX K ograve -40 +KPX K ohungarumlaut -40 +KPX K omacron -40 +KPX K oslash -40 +KPX K otilde -40 +KPX K u -30 +KPX K uacute -30 +KPX K ucircumflex -30 +KPX K udieresis -30 +KPX K ugrave -30 +KPX K uhungarumlaut -30 +KPX K umacron -30 +KPX K uogonek -30 +KPX K uring -30 +KPX K y -50 +KPX K yacute -50 +KPX K ydieresis -50 +KPX Kcommaaccent O -50 +KPX Kcommaaccent Oacute -50 +KPX Kcommaaccent Ocircumflex -50 +KPX Kcommaaccent Odieresis -50 +KPX Kcommaaccent Ograve -50 +KPX Kcommaaccent Ohungarumlaut -50 +KPX Kcommaaccent Omacron -50 +KPX Kcommaaccent Oslash -50 +KPX Kcommaaccent Otilde -50 +KPX Kcommaaccent e -40 +KPX Kcommaaccent eacute -40 +KPX Kcommaaccent ecaron -40 +KPX Kcommaaccent ecircumflex -40 +KPX Kcommaaccent edieresis -40 +KPX Kcommaaccent edotaccent -40 +KPX Kcommaaccent egrave -40 +KPX Kcommaaccent emacron -40 +KPX Kcommaaccent eogonek -40 +KPX Kcommaaccent o -40 +KPX Kcommaaccent oacute -40 +KPX Kcommaaccent ocircumflex -40 +KPX Kcommaaccent odieresis -40 +KPX Kcommaaccent ograve -40 +KPX Kcommaaccent ohungarumlaut -40 +KPX Kcommaaccent omacron -40 +KPX Kcommaaccent oslash -40 +KPX Kcommaaccent otilde -40 +KPX Kcommaaccent u -30 +KPX Kcommaaccent uacute -30 +KPX Kcommaaccent ucircumflex -30 +KPX Kcommaaccent udieresis -30 +KPX Kcommaaccent ugrave -30 +KPX Kcommaaccent uhungarumlaut -30 +KPX Kcommaaccent umacron -30 +KPX Kcommaaccent uogonek -30 +KPX Kcommaaccent uring -30 +KPX Kcommaaccent y -50 +KPX Kcommaaccent yacute -50 +KPX Kcommaaccent ydieresis -50 +KPX L T -110 +KPX L Tcaron -110 +KPX L Tcommaaccent -110 +KPX L V -110 +KPX L W -70 +KPX L Y -140 +KPX L Yacute -140 +KPX L Ydieresis -140 +KPX L quotedblright -140 +KPX L quoteright -160 +KPX L y -30 +KPX L yacute -30 +KPX L ydieresis -30 +KPX Lacute T -110 +KPX Lacute Tcaron -110 +KPX Lacute Tcommaaccent -110 +KPX Lacute V -110 +KPX Lacute W -70 +KPX Lacute Y -140 +KPX Lacute Yacute -140 +KPX Lacute Ydieresis -140 +KPX Lacute quotedblright -140 +KPX Lacute quoteright -160 +KPX Lacute y -30 +KPX Lacute yacute -30 +KPX Lacute ydieresis -30 +KPX Lcaron T -110 +KPX Lcaron Tcaron -110 +KPX Lcaron Tcommaaccent -110 +KPX Lcaron V -110 +KPX Lcaron W -70 +KPX Lcaron Y -140 +KPX Lcaron Yacute -140 +KPX Lcaron Ydieresis -140 +KPX Lcaron quotedblright -140 +KPX Lcaron quoteright -160 +KPX Lcaron y -30 +KPX Lcaron yacute -30 +KPX Lcaron ydieresis -30 +KPX Lcommaaccent T -110 +KPX Lcommaaccent Tcaron -110 +KPX Lcommaaccent Tcommaaccent -110 +KPX Lcommaaccent V -110 +KPX Lcommaaccent W -70 +KPX Lcommaaccent Y -140 +KPX Lcommaaccent Yacute -140 +KPX Lcommaaccent Ydieresis -140 +KPX Lcommaaccent quotedblright -140 +KPX Lcommaaccent quoteright -160 +KPX Lcommaaccent y -30 +KPX Lcommaaccent yacute -30 +KPX Lcommaaccent ydieresis -30 +KPX Lslash T -110 +KPX Lslash Tcaron -110 +KPX Lslash Tcommaaccent -110 +KPX Lslash V -110 +KPX Lslash W -70 +KPX Lslash Y -140 +KPX Lslash Yacute -140 +KPX Lslash Ydieresis -140 +KPX Lslash quotedblright -140 +KPX Lslash quoteright -160 +KPX Lslash y -30 +KPX Lslash yacute -30 +KPX Lslash ydieresis -30 +KPX O A -20 +KPX O Aacute -20 +KPX O Abreve -20 +KPX O Acircumflex -20 +KPX O Adieresis -20 +KPX O Agrave -20 +KPX O Amacron -20 +KPX O Aogonek -20 +KPX O Aring -20 +KPX O Atilde -20 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -30 +KPX O X -60 +KPX O Y -70 +KPX O Yacute -70 +KPX O Ydieresis -70 +KPX O comma -40 +KPX O period -40 +KPX Oacute A -20 +KPX Oacute Aacute -20 +KPX Oacute Abreve -20 +KPX Oacute Acircumflex -20 +KPX Oacute Adieresis -20 +KPX Oacute Agrave -20 +KPX Oacute Amacron -20 +KPX Oacute Aogonek -20 +KPX Oacute Aring -20 +KPX Oacute Atilde -20 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -30 +KPX Oacute X -60 +KPX Oacute Y -70 +KPX Oacute Yacute -70 +KPX Oacute Ydieresis -70 +KPX Oacute comma -40 +KPX Oacute period -40 +KPX Ocircumflex A -20 +KPX Ocircumflex Aacute -20 +KPX Ocircumflex Abreve -20 +KPX Ocircumflex Acircumflex -20 +KPX Ocircumflex Adieresis -20 +KPX Ocircumflex Agrave -20 +KPX Ocircumflex Amacron -20 +KPX Ocircumflex Aogonek -20 +KPX Ocircumflex Aring -20 +KPX Ocircumflex Atilde -20 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -30 +KPX Ocircumflex X -60 +KPX Ocircumflex Y -70 +KPX Ocircumflex Yacute -70 +KPX Ocircumflex Ydieresis -70 +KPX Ocircumflex comma -40 +KPX Ocircumflex period -40 +KPX Odieresis A -20 +KPX Odieresis Aacute -20 +KPX Odieresis Abreve -20 +KPX Odieresis Acircumflex -20 +KPX Odieresis Adieresis -20 +KPX Odieresis Agrave -20 +KPX Odieresis Amacron -20 +KPX Odieresis Aogonek -20 +KPX Odieresis Aring -20 +KPX Odieresis Atilde -20 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -30 +KPX Odieresis X -60 +KPX Odieresis Y -70 +KPX Odieresis Yacute -70 +KPX Odieresis Ydieresis -70 +KPX Odieresis comma -40 +KPX Odieresis period -40 +KPX Ograve A -20 +KPX Ograve Aacute -20 +KPX Ograve Abreve -20 +KPX Ograve Acircumflex -20 +KPX Ograve Adieresis -20 +KPX Ograve Agrave -20 +KPX Ograve Amacron -20 +KPX Ograve Aogonek -20 +KPX Ograve Aring -20 +KPX Ograve Atilde -20 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -30 +KPX Ograve X -60 +KPX Ograve Y -70 +KPX Ograve Yacute -70 +KPX Ograve Ydieresis -70 +KPX Ograve comma -40 +KPX Ograve period -40 +KPX Ohungarumlaut A -20 +KPX Ohungarumlaut Aacute -20 +KPX Ohungarumlaut Abreve -20 +KPX Ohungarumlaut Acircumflex -20 +KPX Ohungarumlaut Adieresis -20 +KPX Ohungarumlaut Agrave -20 +KPX Ohungarumlaut Amacron -20 +KPX Ohungarumlaut Aogonek -20 +KPX Ohungarumlaut Aring -20 +KPX Ohungarumlaut Atilde -20 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -30 +KPX Ohungarumlaut X -60 +KPX Ohungarumlaut Y -70 +KPX Ohungarumlaut Yacute -70 +KPX Ohungarumlaut Ydieresis -70 +KPX Ohungarumlaut comma -40 +KPX Ohungarumlaut period -40 +KPX Omacron A -20 +KPX Omacron Aacute -20 +KPX Omacron Abreve -20 +KPX Omacron Acircumflex -20 +KPX Omacron Adieresis -20 +KPX Omacron Agrave -20 +KPX Omacron Amacron -20 +KPX Omacron Aogonek -20 +KPX Omacron Aring -20 +KPX Omacron Atilde -20 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -30 +KPX Omacron X -60 +KPX Omacron Y -70 +KPX Omacron Yacute -70 +KPX Omacron Ydieresis -70 +KPX Omacron comma -40 +KPX Omacron period -40 +KPX Oslash A -20 +KPX Oslash Aacute -20 +KPX Oslash Abreve -20 +KPX Oslash Acircumflex -20 +KPX Oslash Adieresis -20 +KPX Oslash Agrave -20 +KPX Oslash Amacron -20 +KPX Oslash Aogonek -20 +KPX Oslash Aring -20 +KPX Oslash Atilde -20 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -30 +KPX Oslash X -60 +KPX Oslash Y -70 +KPX Oslash Yacute -70 +KPX Oslash Ydieresis -70 +KPX Oslash comma -40 +KPX Oslash period -40 +KPX Otilde A -20 +KPX Otilde Aacute -20 +KPX Otilde Abreve -20 +KPX Otilde Acircumflex -20 +KPX Otilde Adieresis -20 +KPX Otilde Agrave -20 +KPX Otilde Amacron -20 +KPX Otilde Aogonek -20 +KPX Otilde Aring -20 +KPX Otilde Atilde -20 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -30 +KPX Otilde X -60 +KPX Otilde Y -70 +KPX Otilde Yacute -70 +KPX Otilde Ydieresis -70 +KPX Otilde comma -40 +KPX Otilde period -40 +KPX P A -120 +KPX P Aacute -120 +KPX P Abreve -120 +KPX P Acircumflex -120 +KPX P Adieresis -120 +KPX P Agrave -120 +KPX P Amacron -120 +KPX P Aogonek -120 +KPX P Aring -120 +KPX P Atilde -120 +KPX P a -40 +KPX P aacute -40 +KPX P abreve -40 +KPX P acircumflex -40 +KPX P adieresis -40 +KPX P agrave -40 +KPX P amacron -40 +KPX P aogonek -40 +KPX P aring -40 +KPX P atilde -40 +KPX P comma -180 +KPX P e -50 +KPX P eacute -50 +KPX P ecaron -50 +KPX P ecircumflex -50 +KPX P edieresis -50 +KPX P edotaccent -50 +KPX P egrave -50 +KPX P emacron -50 +KPX P eogonek -50 +KPX P o -50 +KPX P oacute -50 +KPX P ocircumflex -50 +KPX P odieresis -50 +KPX P ograve -50 +KPX P ohungarumlaut -50 +KPX P omacron -50 +KPX P oslash -50 +KPX P otilde -50 +KPX P period -180 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX R O -20 +KPX R Oacute -20 +KPX R Ocircumflex -20 +KPX R Odieresis -20 +KPX R Ograve -20 +KPX R Ohungarumlaut -20 +KPX R Omacron -20 +KPX R Oslash -20 +KPX R Otilde -20 +KPX R T -30 +KPX R Tcaron -30 +KPX R Tcommaaccent -30 +KPX R U -40 +KPX R Uacute -40 +KPX R Ucircumflex -40 +KPX R Udieresis -40 +KPX R Ugrave -40 +KPX R Uhungarumlaut -40 +KPX R Umacron -40 +KPX R Uogonek -40 +KPX R Uring -40 +KPX R V -50 +KPX R W -30 +KPX R Y -50 +KPX R Yacute -50 +KPX R Ydieresis -50 +KPX Racute O -20 +KPX Racute Oacute -20 +KPX Racute Ocircumflex -20 +KPX Racute Odieresis -20 +KPX Racute Ograve -20 +KPX Racute Ohungarumlaut -20 +KPX Racute Omacron -20 +KPX Racute Oslash -20 +KPX Racute Otilde -20 +KPX Racute T -30 +KPX Racute Tcaron -30 +KPX Racute Tcommaaccent -30 +KPX Racute U -40 +KPX Racute Uacute -40 +KPX Racute Ucircumflex -40 +KPX Racute Udieresis -40 +KPX Racute Ugrave -40 +KPX Racute Uhungarumlaut -40 +KPX Racute Umacron -40 +KPX Racute Uogonek -40 +KPX Racute Uring -40 +KPX Racute V -50 +KPX Racute W -30 +KPX Racute Y -50 +KPX Racute Yacute -50 +KPX Racute Ydieresis -50 +KPX Rcaron O -20 +KPX Rcaron Oacute -20 +KPX Rcaron Ocircumflex -20 +KPX Rcaron Odieresis -20 +KPX Rcaron Ograve -20 +KPX Rcaron Ohungarumlaut -20 +KPX Rcaron Omacron -20 +KPX Rcaron Oslash -20 +KPX Rcaron Otilde -20 +KPX Rcaron T -30 +KPX Rcaron Tcaron -30 +KPX Rcaron Tcommaaccent -30 +KPX Rcaron U -40 +KPX Rcaron Uacute -40 +KPX Rcaron Ucircumflex -40 +KPX Rcaron Udieresis -40 +KPX Rcaron Ugrave -40 +KPX Rcaron Uhungarumlaut -40 +KPX Rcaron Umacron -40 +KPX Rcaron Uogonek -40 +KPX Rcaron Uring -40 +KPX Rcaron V -50 +KPX Rcaron W -30 +KPX Rcaron Y -50 +KPX Rcaron Yacute -50 +KPX Rcaron Ydieresis -50 +KPX Rcommaaccent O -20 +KPX Rcommaaccent Oacute -20 +KPX Rcommaaccent Ocircumflex -20 +KPX Rcommaaccent Odieresis -20 +KPX Rcommaaccent Ograve -20 +KPX Rcommaaccent Ohungarumlaut -20 +KPX Rcommaaccent Omacron -20 +KPX Rcommaaccent Oslash -20 +KPX Rcommaaccent Otilde -20 +KPX Rcommaaccent T -30 +KPX Rcommaaccent Tcaron -30 +KPX Rcommaaccent Tcommaaccent -30 +KPX Rcommaaccent U -40 +KPX Rcommaaccent Uacute -40 +KPX Rcommaaccent Ucircumflex -40 +KPX Rcommaaccent Udieresis -40 +KPX Rcommaaccent Ugrave -40 +KPX Rcommaaccent Uhungarumlaut -40 +KPX Rcommaaccent Umacron -40 +KPX Rcommaaccent Uogonek -40 +KPX Rcommaaccent Uring -40 +KPX Rcommaaccent V -50 +KPX Rcommaaccent W -30 +KPX Rcommaaccent Y -50 +KPX Rcommaaccent Yacute -50 +KPX Rcommaaccent Ydieresis -50 +KPX S comma -20 +KPX S period -20 +KPX Sacute comma -20 +KPX Sacute period -20 +KPX Scaron comma -20 +KPX Scaron period -20 +KPX Scedilla comma -20 +KPX Scedilla period -20 +KPX Scommaaccent comma -20 +KPX Scommaaccent period -20 +KPX T A -120 +KPX T Aacute -120 +KPX T Abreve -120 +KPX T Acircumflex -120 +KPX T Adieresis -120 +KPX T Agrave -120 +KPX T Amacron -120 +KPX T Aogonek -120 +KPX T Aring -120 +KPX T Atilde -120 +KPX T O -40 +KPX T Oacute -40 +KPX T Ocircumflex -40 +KPX T Odieresis -40 +KPX T Ograve -40 +KPX T Ohungarumlaut -40 +KPX T Omacron -40 +KPX T Oslash -40 +KPX T Otilde -40 +KPX T a -120 +KPX T aacute -120 +KPX T abreve -60 +KPX T acircumflex -120 +KPX T adieresis -120 +KPX T agrave -120 +KPX T amacron -60 +KPX T aogonek -120 +KPX T aring -120 +KPX T atilde -60 +KPX T colon -20 +KPX T comma -120 +KPX T e -120 +KPX T eacute -120 +KPX T ecaron -120 +KPX T ecircumflex -120 +KPX T edieresis -120 +KPX T edotaccent -120 +KPX T egrave -60 +KPX T emacron -60 +KPX T eogonek -120 +KPX T hyphen -140 +KPX T o -120 +KPX T oacute -120 +KPX T ocircumflex -120 +KPX T odieresis -120 +KPX T ograve -120 +KPX T ohungarumlaut -120 +KPX T omacron -60 +KPX T oslash -120 +KPX T otilde -60 +KPX T period -120 +KPX T r -120 +KPX T racute -120 +KPX T rcaron -120 +KPX T rcommaaccent -120 +KPX T semicolon -20 +KPX T u -120 +KPX T uacute -120 +KPX T ucircumflex -120 +KPX T udieresis -120 +KPX T ugrave -120 +KPX T uhungarumlaut -120 +KPX T umacron -60 +KPX T uogonek -120 +KPX T uring -120 +KPX T w -120 +KPX T y -120 +KPX T yacute -120 +KPX T ydieresis -60 +KPX Tcaron A -120 +KPX Tcaron Aacute -120 +KPX Tcaron Abreve -120 +KPX Tcaron Acircumflex -120 +KPX Tcaron Adieresis -120 +KPX Tcaron Agrave -120 +KPX Tcaron Amacron -120 +KPX Tcaron Aogonek -120 +KPX Tcaron Aring -120 +KPX Tcaron Atilde -120 +KPX Tcaron O -40 +KPX Tcaron Oacute -40 +KPX Tcaron Ocircumflex -40 +KPX Tcaron Odieresis -40 +KPX Tcaron Ograve -40 +KPX Tcaron Ohungarumlaut -40 +KPX Tcaron Omacron -40 +KPX Tcaron Oslash -40 +KPX Tcaron Otilde -40 +KPX Tcaron a -120 +KPX Tcaron aacute -120 +KPX Tcaron abreve -60 +KPX Tcaron acircumflex -120 +KPX Tcaron adieresis -120 +KPX Tcaron agrave -120 +KPX Tcaron amacron -60 +KPX Tcaron aogonek -120 +KPX Tcaron aring -120 +KPX Tcaron atilde -60 +KPX Tcaron colon -20 +KPX Tcaron comma -120 +KPX Tcaron e -120 +KPX Tcaron eacute -120 +KPX Tcaron ecaron -120 +KPX Tcaron ecircumflex -120 +KPX Tcaron edieresis -120 +KPX Tcaron edotaccent -120 +KPX Tcaron egrave -60 +KPX Tcaron emacron -60 +KPX Tcaron eogonek -120 +KPX Tcaron hyphen -140 +KPX Tcaron o -120 +KPX Tcaron oacute -120 +KPX Tcaron ocircumflex -120 +KPX Tcaron odieresis -120 +KPX Tcaron ograve -120 +KPX Tcaron ohungarumlaut -120 +KPX Tcaron omacron -60 +KPX Tcaron oslash -120 +KPX Tcaron otilde -60 +KPX Tcaron period -120 +KPX Tcaron r -120 +KPX Tcaron racute -120 +KPX Tcaron rcaron -120 +KPX Tcaron rcommaaccent -120 +KPX Tcaron semicolon -20 +KPX Tcaron u -120 +KPX Tcaron uacute -120 +KPX Tcaron ucircumflex -120 +KPX Tcaron udieresis -120 +KPX Tcaron ugrave -120 +KPX Tcaron uhungarumlaut -120 +KPX Tcaron umacron -60 +KPX Tcaron uogonek -120 +KPX Tcaron uring -120 +KPX Tcaron w -120 +KPX Tcaron y -120 +KPX Tcaron yacute -120 +KPX Tcaron ydieresis -60 +KPX Tcommaaccent A -120 +KPX Tcommaaccent Aacute -120 +KPX Tcommaaccent Abreve -120 +KPX Tcommaaccent Acircumflex -120 +KPX Tcommaaccent Adieresis -120 +KPX Tcommaaccent Agrave -120 +KPX Tcommaaccent Amacron -120 +KPX Tcommaaccent Aogonek -120 +KPX Tcommaaccent Aring -120 +KPX Tcommaaccent Atilde -120 +KPX Tcommaaccent O -40 +KPX Tcommaaccent Oacute -40 +KPX Tcommaaccent Ocircumflex -40 +KPX Tcommaaccent Odieresis -40 +KPX Tcommaaccent Ograve -40 +KPX Tcommaaccent Ohungarumlaut -40 +KPX Tcommaaccent Omacron -40 +KPX Tcommaaccent Oslash -40 +KPX Tcommaaccent Otilde -40 +KPX Tcommaaccent a -120 +KPX Tcommaaccent aacute -120 +KPX Tcommaaccent abreve -60 +KPX Tcommaaccent acircumflex -120 +KPX Tcommaaccent adieresis -120 +KPX Tcommaaccent agrave -120 +KPX Tcommaaccent amacron -60 +KPX Tcommaaccent aogonek -120 +KPX Tcommaaccent aring -120 +KPX Tcommaaccent atilde -60 +KPX Tcommaaccent colon -20 +KPX Tcommaaccent comma -120 +KPX Tcommaaccent e -120 +KPX Tcommaaccent eacute -120 +KPX Tcommaaccent ecaron -120 +KPX Tcommaaccent ecircumflex -120 +KPX Tcommaaccent edieresis -120 +KPX Tcommaaccent edotaccent -120 +KPX Tcommaaccent egrave -60 +KPX Tcommaaccent emacron -60 +KPX Tcommaaccent eogonek -120 +KPX Tcommaaccent hyphen -140 +KPX Tcommaaccent o -120 +KPX Tcommaaccent oacute -120 +KPX Tcommaaccent ocircumflex -120 +KPX Tcommaaccent odieresis -120 +KPX Tcommaaccent ograve -120 +KPX Tcommaaccent ohungarumlaut -120 +KPX Tcommaaccent omacron -60 +KPX Tcommaaccent oslash -120 +KPX Tcommaaccent otilde -60 +KPX Tcommaaccent period -120 +KPX Tcommaaccent r -120 +KPX Tcommaaccent racute -120 +KPX Tcommaaccent rcaron -120 +KPX Tcommaaccent rcommaaccent -120 +KPX Tcommaaccent semicolon -20 +KPX Tcommaaccent u -120 +KPX Tcommaaccent uacute -120 +KPX Tcommaaccent ucircumflex -120 +KPX Tcommaaccent udieresis -120 +KPX Tcommaaccent ugrave -120 +KPX Tcommaaccent uhungarumlaut -120 +KPX Tcommaaccent umacron -60 +KPX Tcommaaccent uogonek -120 +KPX Tcommaaccent uring -120 +KPX Tcommaaccent w -120 +KPX Tcommaaccent y -120 +KPX Tcommaaccent yacute -120 +KPX Tcommaaccent ydieresis -60 +KPX U A -40 +KPX U Aacute -40 +KPX U Abreve -40 +KPX U Acircumflex -40 +KPX U Adieresis -40 +KPX U Agrave -40 +KPX U Amacron -40 +KPX U Aogonek -40 +KPX U Aring -40 +KPX U Atilde -40 +KPX U comma -40 +KPX U period -40 +KPX Uacute A -40 +KPX Uacute Aacute -40 +KPX Uacute Abreve -40 +KPX Uacute Acircumflex -40 +KPX Uacute Adieresis -40 +KPX Uacute Agrave -40 +KPX Uacute Amacron -40 +KPX Uacute Aogonek -40 +KPX Uacute Aring -40 +KPX Uacute Atilde -40 +KPX Uacute comma -40 +KPX Uacute period -40 +KPX Ucircumflex A -40 +KPX Ucircumflex Aacute -40 +KPX Ucircumflex Abreve -40 +KPX Ucircumflex Acircumflex -40 +KPX Ucircumflex Adieresis -40 +KPX Ucircumflex Agrave -40 +KPX Ucircumflex Amacron -40 +KPX Ucircumflex Aogonek -40 +KPX Ucircumflex Aring -40 +KPX Ucircumflex Atilde -40 +KPX Ucircumflex comma -40 +KPX Ucircumflex period -40 +KPX Udieresis A -40 +KPX Udieresis Aacute -40 +KPX Udieresis Abreve -40 +KPX Udieresis Acircumflex -40 +KPX Udieresis Adieresis -40 +KPX Udieresis Agrave -40 +KPX Udieresis Amacron -40 +KPX Udieresis Aogonek -40 +KPX Udieresis Aring -40 +KPX Udieresis Atilde -40 +KPX Udieresis comma -40 +KPX Udieresis period -40 +KPX Ugrave A -40 +KPX Ugrave Aacute -40 +KPX Ugrave Abreve -40 +KPX Ugrave Acircumflex -40 +KPX Ugrave Adieresis -40 +KPX Ugrave Agrave -40 +KPX Ugrave Amacron -40 +KPX Ugrave Aogonek -40 +KPX Ugrave Aring -40 +KPX Ugrave Atilde -40 +KPX Ugrave comma -40 +KPX Ugrave period -40 +KPX Uhungarumlaut A -40 +KPX Uhungarumlaut Aacute -40 +KPX Uhungarumlaut Abreve -40 +KPX Uhungarumlaut Acircumflex -40 +KPX Uhungarumlaut Adieresis -40 +KPX Uhungarumlaut Agrave -40 +KPX Uhungarumlaut Amacron -40 +KPX Uhungarumlaut Aogonek -40 +KPX Uhungarumlaut Aring -40 +KPX Uhungarumlaut Atilde -40 +KPX Uhungarumlaut comma -40 +KPX Uhungarumlaut period -40 +KPX Umacron A -40 +KPX Umacron Aacute -40 +KPX Umacron Abreve -40 +KPX Umacron Acircumflex -40 +KPX Umacron Adieresis -40 +KPX Umacron Agrave -40 +KPX Umacron Amacron -40 +KPX Umacron Aogonek -40 +KPX Umacron Aring -40 +KPX Umacron Atilde -40 +KPX Umacron comma -40 +KPX Umacron period -40 +KPX Uogonek A -40 +KPX Uogonek Aacute -40 +KPX Uogonek Abreve -40 +KPX Uogonek Acircumflex -40 +KPX Uogonek Adieresis -40 +KPX Uogonek Agrave -40 +KPX Uogonek Amacron -40 +KPX Uogonek Aogonek -40 +KPX Uogonek Aring -40 +KPX Uogonek Atilde -40 +KPX Uogonek comma -40 +KPX Uogonek period -40 +KPX Uring A -40 +KPX Uring Aacute -40 +KPX Uring Abreve -40 +KPX Uring Acircumflex -40 +KPX Uring Adieresis -40 +KPX Uring Agrave -40 +KPX Uring Amacron -40 +KPX Uring Aogonek -40 +KPX Uring Aring -40 +KPX Uring Atilde -40 +KPX Uring comma -40 +KPX Uring period -40 +KPX V A -80 +KPX V Aacute -80 +KPX V Abreve -80 +KPX V Acircumflex -80 +KPX V Adieresis -80 +KPX V Agrave -80 +KPX V Amacron -80 +KPX V Aogonek -80 +KPX V Aring -80 +KPX V Atilde -80 +KPX V G -40 +KPX V Gbreve -40 +KPX V Gcommaaccent -40 +KPX V O -40 +KPX V Oacute -40 +KPX V Ocircumflex -40 +KPX V Odieresis -40 +KPX V Ograve -40 +KPX V Ohungarumlaut -40 +KPX V Omacron -40 +KPX V Oslash -40 +KPX V Otilde -40 +KPX V a -70 +KPX V aacute -70 +KPX V abreve -70 +KPX V acircumflex -70 +KPX V adieresis -70 +KPX V agrave -70 +KPX V amacron -70 +KPX V aogonek -70 +KPX V aring -70 +KPX V atilde -70 +KPX V colon -40 +KPX V comma -125 +KPX V e -80 +KPX V eacute -80 +KPX V ecaron -80 +KPX V ecircumflex -80 +KPX V edieresis -80 +KPX V edotaccent -80 +KPX V egrave -80 +KPX V emacron -80 +KPX V eogonek -80 +KPX V hyphen -80 +KPX V o -80 +KPX V oacute -80 +KPX V ocircumflex -80 +KPX V odieresis -80 +KPX V ograve -80 +KPX V ohungarumlaut -80 +KPX V omacron -80 +KPX V oslash -80 +KPX V otilde -80 +KPX V period -125 +KPX V semicolon -40 +KPX V u -70 +KPX V uacute -70 +KPX V ucircumflex -70 +KPX V udieresis -70 +KPX V ugrave -70 +KPX V uhungarumlaut -70 +KPX V umacron -70 +KPX V uogonek -70 +KPX V uring -70 +KPX W A -50 +KPX W Aacute -50 +KPX W Abreve -50 +KPX W Acircumflex -50 +KPX W Adieresis -50 +KPX W Agrave -50 +KPX W Amacron -50 +KPX W Aogonek -50 +KPX W Aring -50 +KPX W Atilde -50 +KPX W O -20 +KPX W Oacute -20 +KPX W Ocircumflex -20 +KPX W Odieresis -20 +KPX W Ograve -20 +KPX W Ohungarumlaut -20 +KPX W Omacron -20 +KPX W Oslash -20 +KPX W Otilde -20 +KPX W a -40 +KPX W aacute -40 +KPX W abreve -40 +KPX W acircumflex -40 +KPX W adieresis -40 +KPX W agrave -40 +KPX W amacron -40 +KPX W aogonek -40 +KPX W aring -40 +KPX W atilde -40 +KPX W comma -80 +KPX W e -30 +KPX W eacute -30 +KPX W ecaron -30 +KPX W ecircumflex -30 +KPX W edieresis -30 +KPX W edotaccent -30 +KPX W egrave -30 +KPX W emacron -30 +KPX W eogonek -30 +KPX W hyphen -40 +KPX W o -30 +KPX W oacute -30 +KPX W ocircumflex -30 +KPX W odieresis -30 +KPX W ograve -30 +KPX W ohungarumlaut -30 +KPX W omacron -30 +KPX W oslash -30 +KPX W otilde -30 +KPX W period -80 +KPX W u -30 +KPX W uacute -30 +KPX W ucircumflex -30 +KPX W udieresis -30 +KPX W ugrave -30 +KPX W uhungarumlaut -30 +KPX W umacron -30 +KPX W uogonek -30 +KPX W uring -30 +KPX W y -20 +KPX W yacute -20 +KPX W ydieresis -20 +KPX Y A -110 +KPX Y Aacute -110 +KPX Y Abreve -110 +KPX Y Acircumflex -110 +KPX Y Adieresis -110 +KPX Y Agrave -110 +KPX Y Amacron -110 +KPX Y Aogonek -110 +KPX Y Aring -110 +KPX Y Atilde -110 +KPX Y O -85 +KPX Y Oacute -85 +KPX Y Ocircumflex -85 +KPX Y Odieresis -85 +KPX Y Ograve -85 +KPX Y Ohungarumlaut -85 +KPX Y Omacron -85 +KPX Y Oslash -85 +KPX Y Otilde -85 +KPX Y a -140 +KPX Y aacute -140 +KPX Y abreve -70 +KPX Y acircumflex -140 +KPX Y adieresis -140 +KPX Y agrave -140 +KPX Y amacron -70 +KPX Y aogonek -140 +KPX Y aring -140 +KPX Y atilde -140 +KPX Y colon -60 +KPX Y comma -140 +KPX Y e -140 +KPX Y eacute -140 +KPX Y ecaron -140 +KPX Y ecircumflex -140 +KPX Y edieresis -140 +KPX Y edotaccent -140 +KPX Y egrave -140 +KPX Y emacron -70 +KPX Y eogonek -140 +KPX Y hyphen -140 +KPX Y i -20 +KPX Y iacute -20 +KPX Y iogonek -20 +KPX Y o -140 +KPX Y oacute -140 +KPX Y ocircumflex -140 +KPX Y odieresis -140 +KPX Y ograve -140 +KPX Y ohungarumlaut -140 +KPX Y omacron -140 +KPX Y oslash -140 +KPX Y otilde -140 +KPX Y period -140 +KPX Y semicolon -60 +KPX Y u -110 +KPX Y uacute -110 +KPX Y ucircumflex -110 +KPX Y udieresis -110 +KPX Y ugrave -110 +KPX Y uhungarumlaut -110 +KPX Y umacron -110 +KPX Y uogonek -110 +KPX Y uring -110 +KPX Yacute A -110 +KPX Yacute Aacute -110 +KPX Yacute Abreve -110 +KPX Yacute Acircumflex -110 +KPX Yacute Adieresis -110 +KPX Yacute Agrave -110 +KPX Yacute Amacron -110 +KPX Yacute Aogonek -110 +KPX Yacute Aring -110 +KPX Yacute Atilde -110 +KPX Yacute O -85 +KPX Yacute Oacute -85 +KPX Yacute Ocircumflex -85 +KPX Yacute Odieresis -85 +KPX Yacute Ograve -85 +KPX Yacute Ohungarumlaut -85 +KPX Yacute Omacron -85 +KPX Yacute Oslash -85 +KPX Yacute Otilde -85 +KPX Yacute a -140 +KPX Yacute aacute -140 +KPX Yacute abreve -70 +KPX Yacute acircumflex -140 +KPX Yacute adieresis -140 +KPX Yacute agrave -140 +KPX Yacute amacron -70 +KPX Yacute aogonek -140 +KPX Yacute aring -140 +KPX Yacute atilde -70 +KPX Yacute colon -60 +KPX Yacute comma -140 +KPX Yacute e -140 +KPX Yacute eacute -140 +KPX Yacute ecaron -140 +KPX Yacute ecircumflex -140 +KPX Yacute edieresis -140 +KPX Yacute edotaccent -140 +KPX Yacute egrave -140 +KPX Yacute emacron -70 +KPX Yacute eogonek -140 +KPX Yacute hyphen -140 +KPX Yacute i -20 +KPX Yacute iacute -20 +KPX Yacute iogonek -20 +KPX Yacute o -140 +KPX Yacute oacute -140 +KPX Yacute ocircumflex -140 +KPX Yacute odieresis -140 +KPX Yacute ograve -140 +KPX Yacute ohungarumlaut -140 +KPX Yacute omacron -70 +KPX Yacute oslash -140 +KPX Yacute otilde -140 +KPX Yacute period -140 +KPX Yacute semicolon -60 +KPX Yacute u -110 +KPX Yacute uacute -110 +KPX Yacute ucircumflex -110 +KPX Yacute udieresis -110 +KPX Yacute ugrave -110 +KPX Yacute uhungarumlaut -110 +KPX Yacute umacron -110 +KPX Yacute uogonek -110 +KPX Yacute uring -110 +KPX Ydieresis A -110 +KPX Ydieresis Aacute -110 +KPX Ydieresis Abreve -110 +KPX Ydieresis Acircumflex -110 +KPX Ydieresis Adieresis -110 +KPX Ydieresis Agrave -110 +KPX Ydieresis Amacron -110 +KPX Ydieresis Aogonek -110 +KPX Ydieresis Aring -110 +KPX Ydieresis Atilde -110 +KPX Ydieresis O -85 +KPX Ydieresis Oacute -85 +KPX Ydieresis Ocircumflex -85 +KPX Ydieresis Odieresis -85 +KPX Ydieresis Ograve -85 +KPX Ydieresis Ohungarumlaut -85 +KPX Ydieresis Omacron -85 +KPX Ydieresis Oslash -85 +KPX Ydieresis Otilde -85 +KPX Ydieresis a -140 +KPX Ydieresis aacute -140 +KPX Ydieresis abreve -70 +KPX Ydieresis acircumflex -140 +KPX Ydieresis adieresis -140 +KPX Ydieresis agrave -140 +KPX Ydieresis amacron -70 +KPX Ydieresis aogonek -140 +KPX Ydieresis aring -140 +KPX Ydieresis atilde -70 +KPX Ydieresis colon -60 +KPX Ydieresis comma -140 +KPX Ydieresis e -140 +KPX Ydieresis eacute -140 +KPX Ydieresis ecaron -140 +KPX Ydieresis ecircumflex -140 +KPX Ydieresis edieresis -140 +KPX Ydieresis edotaccent -140 +KPX Ydieresis egrave -140 +KPX Ydieresis emacron -70 +KPX Ydieresis eogonek -140 +KPX Ydieresis hyphen -140 +KPX Ydieresis i -20 +KPX Ydieresis iacute -20 +KPX Ydieresis iogonek -20 +KPX Ydieresis o -140 +KPX Ydieresis oacute -140 +KPX Ydieresis ocircumflex -140 +KPX Ydieresis odieresis -140 +KPX Ydieresis ograve -140 +KPX Ydieresis ohungarumlaut -140 +KPX Ydieresis omacron -140 +KPX Ydieresis oslash -140 +KPX Ydieresis otilde -140 +KPX Ydieresis period -140 +KPX Ydieresis semicolon -60 +KPX Ydieresis u -110 +KPX Ydieresis uacute -110 +KPX Ydieresis ucircumflex -110 +KPX Ydieresis udieresis -110 +KPX Ydieresis ugrave -110 +KPX Ydieresis uhungarumlaut -110 +KPX Ydieresis umacron -110 +KPX Ydieresis uogonek -110 +KPX Ydieresis uring -110 +KPX a v -20 +KPX a w -20 +KPX a y -30 +KPX a yacute -30 +KPX a ydieresis -30 +KPX aacute v -20 +KPX aacute w -20 +KPX aacute y -30 +KPX aacute yacute -30 +KPX aacute ydieresis -30 +KPX abreve v -20 +KPX abreve w -20 +KPX abreve y -30 +KPX abreve yacute -30 +KPX abreve ydieresis -30 +KPX acircumflex v -20 +KPX acircumflex w -20 +KPX acircumflex y -30 +KPX acircumflex yacute -30 +KPX acircumflex ydieresis -30 +KPX adieresis v -20 +KPX adieresis w -20 +KPX adieresis y -30 +KPX adieresis yacute -30 +KPX adieresis ydieresis -30 +KPX agrave v -20 +KPX agrave w -20 +KPX agrave y -30 +KPX agrave yacute -30 +KPX agrave ydieresis -30 +KPX amacron v -20 +KPX amacron w -20 +KPX amacron y -30 +KPX amacron yacute -30 +KPX amacron ydieresis -30 +KPX aogonek v -20 +KPX aogonek w -20 +KPX aogonek y -30 +KPX aogonek yacute -30 +KPX aogonek ydieresis -30 +KPX aring v -20 +KPX aring w -20 +KPX aring y -30 +KPX aring yacute -30 +KPX aring ydieresis -30 +KPX atilde v -20 +KPX atilde w -20 +KPX atilde y -30 +KPX atilde yacute -30 +KPX atilde ydieresis -30 +KPX b b -10 +KPX b comma -40 +KPX b l -20 +KPX b lacute -20 +KPX b lcommaaccent -20 +KPX b lslash -20 +KPX b period -40 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX b v -20 +KPX b y -20 +KPX b yacute -20 +KPX b ydieresis -20 +KPX c comma -15 +KPX c k -20 +KPX c kcommaaccent -20 +KPX cacute comma -15 +KPX cacute k -20 +KPX cacute kcommaaccent -20 +KPX ccaron comma -15 +KPX ccaron k -20 +KPX ccaron kcommaaccent -20 +KPX ccedilla comma -15 +KPX ccedilla k -20 +KPX ccedilla kcommaaccent -20 +KPX colon space -50 +KPX comma quotedblright -100 +KPX comma quoteright -100 +KPX e comma -15 +KPX e period -15 +KPX e v -30 +KPX e w -20 +KPX e x -30 +KPX e y -20 +KPX e yacute -20 +KPX e ydieresis -20 +KPX eacute comma -15 +KPX eacute period -15 +KPX eacute v -30 +KPX eacute w -20 +KPX eacute x -30 +KPX eacute y -20 +KPX eacute yacute -20 +KPX eacute ydieresis -20 +KPX ecaron comma -15 +KPX ecaron period -15 +KPX ecaron v -30 +KPX ecaron w -20 +KPX ecaron x -30 +KPX ecaron y -20 +KPX ecaron yacute -20 +KPX ecaron ydieresis -20 +KPX ecircumflex comma -15 +KPX ecircumflex period -15 +KPX ecircumflex v -30 +KPX ecircumflex w -20 +KPX ecircumflex x -30 +KPX ecircumflex y -20 +KPX ecircumflex yacute -20 +KPX ecircumflex ydieresis -20 +KPX edieresis comma -15 +KPX edieresis period -15 +KPX edieresis v -30 +KPX edieresis w -20 +KPX edieresis x -30 +KPX edieresis y -20 +KPX edieresis yacute -20 +KPX edieresis ydieresis -20 +KPX edotaccent comma -15 +KPX edotaccent period -15 +KPX edotaccent v -30 +KPX edotaccent w -20 +KPX edotaccent x -30 +KPX edotaccent y -20 +KPX edotaccent yacute -20 +KPX edotaccent ydieresis -20 +KPX egrave comma -15 +KPX egrave period -15 +KPX egrave v -30 +KPX egrave w -20 +KPX egrave x -30 +KPX egrave y -20 +KPX egrave yacute -20 +KPX egrave ydieresis -20 +KPX emacron comma -15 +KPX emacron period -15 +KPX emacron v -30 +KPX emacron w -20 +KPX emacron x -30 +KPX emacron y -20 +KPX emacron yacute -20 +KPX emacron ydieresis -20 +KPX eogonek comma -15 +KPX eogonek period -15 +KPX eogonek v -30 +KPX eogonek w -20 +KPX eogonek x -30 +KPX eogonek y -20 +KPX eogonek yacute -20 +KPX eogonek ydieresis -20 +KPX f a -30 +KPX f aacute -30 +KPX f abreve -30 +KPX f acircumflex -30 +KPX f adieresis -30 +KPX f agrave -30 +KPX f amacron -30 +KPX f aogonek -30 +KPX f aring -30 +KPX f atilde -30 +KPX f comma -30 +KPX f dotlessi -28 +KPX f e -30 +KPX f eacute -30 +KPX f ecaron -30 +KPX f ecircumflex -30 +KPX f edieresis -30 +KPX f edotaccent -30 +KPX f egrave -30 +KPX f emacron -30 +KPX f eogonek -30 +KPX f o -30 +KPX f oacute -30 +KPX f ocircumflex -30 +KPX f odieresis -30 +KPX f ograve -30 +KPX f ohungarumlaut -30 +KPX f omacron -30 +KPX f oslash -30 +KPX f otilde -30 +KPX f period -30 +KPX f quotedblright 60 +KPX f quoteright 50 +KPX g r -10 +KPX g racute -10 +KPX g rcaron -10 +KPX g rcommaaccent -10 +KPX gbreve r -10 +KPX gbreve racute -10 +KPX gbreve rcaron -10 +KPX gbreve rcommaaccent -10 +KPX gcommaaccent r -10 +KPX gcommaaccent racute -10 +KPX gcommaaccent rcaron -10 +KPX gcommaaccent rcommaaccent -10 +KPX h y -30 +KPX h yacute -30 +KPX h ydieresis -30 +KPX k e -20 +KPX k eacute -20 +KPX k ecaron -20 +KPX k ecircumflex -20 +KPX k edieresis -20 +KPX k edotaccent -20 +KPX k egrave -20 +KPX k emacron -20 +KPX k eogonek -20 +KPX k o -20 +KPX k oacute -20 +KPX k ocircumflex -20 +KPX k odieresis -20 +KPX k ograve -20 +KPX k ohungarumlaut -20 +KPX k omacron -20 +KPX k oslash -20 +KPX k otilde -20 +KPX kcommaaccent e -20 +KPX kcommaaccent eacute -20 +KPX kcommaaccent ecaron -20 +KPX kcommaaccent ecircumflex -20 +KPX kcommaaccent edieresis -20 +KPX kcommaaccent edotaccent -20 +KPX kcommaaccent egrave -20 +KPX kcommaaccent emacron -20 +KPX kcommaaccent eogonek -20 +KPX kcommaaccent o -20 +KPX kcommaaccent oacute -20 +KPX kcommaaccent ocircumflex -20 +KPX kcommaaccent odieresis -20 +KPX kcommaaccent ograve -20 +KPX kcommaaccent ohungarumlaut -20 +KPX kcommaaccent omacron -20 +KPX kcommaaccent oslash -20 +KPX kcommaaccent otilde -20 +KPX m u -10 +KPX m uacute -10 +KPX m ucircumflex -10 +KPX m udieresis -10 +KPX m ugrave -10 +KPX m uhungarumlaut -10 +KPX m umacron -10 +KPX m uogonek -10 +KPX m uring -10 +KPX m y -15 +KPX m yacute -15 +KPX m ydieresis -15 +KPX n u -10 +KPX n uacute -10 +KPX n ucircumflex -10 +KPX n udieresis -10 +KPX n ugrave -10 +KPX n uhungarumlaut -10 +KPX n umacron -10 +KPX n uogonek -10 +KPX n uring -10 +KPX n v -20 +KPX n y -15 +KPX n yacute -15 +KPX n ydieresis -15 +KPX nacute u -10 +KPX nacute uacute -10 +KPX nacute ucircumflex -10 +KPX nacute udieresis -10 +KPX nacute ugrave -10 +KPX nacute uhungarumlaut -10 +KPX nacute umacron -10 +KPX nacute uogonek -10 +KPX nacute uring -10 +KPX nacute v -20 +KPX nacute y -15 +KPX nacute yacute -15 +KPX nacute ydieresis -15 +KPX ncaron u -10 +KPX ncaron uacute -10 +KPX ncaron ucircumflex -10 +KPX ncaron udieresis -10 +KPX ncaron ugrave -10 +KPX ncaron uhungarumlaut -10 +KPX ncaron umacron -10 +KPX ncaron uogonek -10 +KPX ncaron uring -10 +KPX ncaron v -20 +KPX ncaron y -15 +KPX ncaron yacute -15 +KPX ncaron ydieresis -15 +KPX ncommaaccent u -10 +KPX ncommaaccent uacute -10 +KPX ncommaaccent ucircumflex -10 +KPX ncommaaccent udieresis -10 +KPX ncommaaccent ugrave -10 +KPX ncommaaccent uhungarumlaut -10 +KPX ncommaaccent umacron -10 +KPX ncommaaccent uogonek -10 +KPX ncommaaccent uring -10 +KPX ncommaaccent v -20 +KPX ncommaaccent y -15 +KPX ncommaaccent yacute -15 +KPX ncommaaccent ydieresis -15 +KPX ntilde u -10 +KPX ntilde uacute -10 +KPX ntilde ucircumflex -10 +KPX ntilde udieresis -10 +KPX ntilde ugrave -10 +KPX ntilde uhungarumlaut -10 +KPX ntilde umacron -10 +KPX ntilde uogonek -10 +KPX ntilde uring -10 +KPX ntilde v -20 +KPX ntilde y -15 +KPX ntilde yacute -15 +KPX ntilde ydieresis -15 +KPX o comma -40 +KPX o period -40 +KPX o v -15 +KPX o w -15 +KPX o x -30 +KPX o y -30 +KPX o yacute -30 +KPX o ydieresis -30 +KPX oacute comma -40 +KPX oacute period -40 +KPX oacute v -15 +KPX oacute w -15 +KPX oacute x -30 +KPX oacute y -30 +KPX oacute yacute -30 +KPX oacute ydieresis -30 +KPX ocircumflex comma -40 +KPX ocircumflex period -40 +KPX ocircumflex v -15 +KPX ocircumflex w -15 +KPX ocircumflex x -30 +KPX ocircumflex y -30 +KPX ocircumflex yacute -30 +KPX ocircumflex ydieresis -30 +KPX odieresis comma -40 +KPX odieresis period -40 +KPX odieresis v -15 +KPX odieresis w -15 +KPX odieresis x -30 +KPX odieresis y -30 +KPX odieresis yacute -30 +KPX odieresis ydieresis -30 +KPX ograve comma -40 +KPX ograve period -40 +KPX ograve v -15 +KPX ograve w -15 +KPX ograve x -30 +KPX ograve y -30 +KPX ograve yacute -30 +KPX ograve ydieresis -30 +KPX ohungarumlaut comma -40 +KPX ohungarumlaut period -40 +KPX ohungarumlaut v -15 +KPX ohungarumlaut w -15 +KPX ohungarumlaut x -30 +KPX ohungarumlaut y -30 +KPX ohungarumlaut yacute -30 +KPX ohungarumlaut ydieresis -30 +KPX omacron comma -40 +KPX omacron period -40 +KPX omacron v -15 +KPX omacron w -15 +KPX omacron x -30 +KPX omacron y -30 +KPX omacron yacute -30 +KPX omacron ydieresis -30 +KPX oslash a -55 +KPX oslash aacute -55 +KPX oslash abreve -55 +KPX oslash acircumflex -55 +KPX oslash adieresis -55 +KPX oslash agrave -55 +KPX oslash amacron -55 +KPX oslash aogonek -55 +KPX oslash aring -55 +KPX oslash atilde -55 +KPX oslash b -55 +KPX oslash c -55 +KPX oslash cacute -55 +KPX oslash ccaron -55 +KPX oslash ccedilla -55 +KPX oslash comma -95 +KPX oslash d -55 +KPX oslash dcroat -55 +KPX oslash e -55 +KPX oslash eacute -55 +KPX oslash ecaron -55 +KPX oslash ecircumflex -55 +KPX oslash edieresis -55 +KPX oslash edotaccent -55 +KPX oslash egrave -55 +KPX oslash emacron -55 +KPX oslash eogonek -55 +KPX oslash f -55 +KPX oslash g -55 +KPX oslash gbreve -55 +KPX oslash gcommaaccent -55 +KPX oslash h -55 +KPX oslash i -55 +KPX oslash iacute -55 +KPX oslash icircumflex -55 +KPX oslash idieresis -55 +KPX oslash igrave -55 +KPX oslash imacron -55 +KPX oslash iogonek -55 +KPX oslash j -55 +KPX oslash k -55 +KPX oslash kcommaaccent -55 +KPX oslash l -55 +KPX oslash lacute -55 +KPX oslash lcommaaccent -55 +KPX oslash lslash -55 +KPX oslash m -55 +KPX oslash n -55 +KPX oslash nacute -55 +KPX oslash ncaron -55 +KPX oslash ncommaaccent -55 +KPX oslash ntilde -55 +KPX oslash o -55 +KPX oslash oacute -55 +KPX oslash ocircumflex -55 +KPX oslash odieresis -55 +KPX oslash ograve -55 +KPX oslash ohungarumlaut -55 +KPX oslash omacron -55 +KPX oslash oslash -55 +KPX oslash otilde -55 +KPX oslash p -55 +KPX oslash period -95 +KPX oslash q -55 +KPX oslash r -55 +KPX oslash racute -55 +KPX oslash rcaron -55 +KPX oslash rcommaaccent -55 +KPX oslash s -55 +KPX oslash sacute -55 +KPX oslash scaron -55 +KPX oslash scedilla -55 +KPX oslash scommaaccent -55 +KPX oslash t -55 +KPX oslash tcommaaccent -55 +KPX oslash u -55 +KPX oslash uacute -55 +KPX oslash ucircumflex -55 +KPX oslash udieresis -55 +KPX oslash ugrave -55 +KPX oslash uhungarumlaut -55 +KPX oslash umacron -55 +KPX oslash uogonek -55 +KPX oslash uring -55 +KPX oslash v -70 +KPX oslash w -70 +KPX oslash x -85 +KPX oslash y -70 +KPX oslash yacute -70 +KPX oslash ydieresis -70 +KPX oslash z -55 +KPX oslash zacute -55 +KPX oslash zcaron -55 +KPX oslash zdotaccent -55 +KPX otilde comma -40 +KPX otilde period -40 +KPX otilde v -15 +KPX otilde w -15 +KPX otilde x -30 +KPX otilde y -30 +KPX otilde yacute -30 +KPX otilde ydieresis -30 +KPX p comma -35 +KPX p period -35 +KPX p y -30 +KPX p yacute -30 +KPX p ydieresis -30 +KPX period quotedblright -100 +KPX period quoteright -100 +KPX period space -60 +KPX quotedblright space -40 +KPX quoteleft quoteleft -57 +KPX quoteright d -50 +KPX quoteright dcroat -50 +KPX quoteright quoteright -57 +KPX quoteright r -50 +KPX quoteright racute -50 +KPX quoteright rcaron -50 +KPX quoteright rcommaaccent -50 +KPX quoteright s -50 +KPX quoteright sacute -50 +KPX quoteright scaron -50 +KPX quoteright scedilla -50 +KPX quoteright scommaaccent -50 +KPX quoteright space -70 +KPX r a -10 +KPX r aacute -10 +KPX r abreve -10 +KPX r acircumflex -10 +KPX r adieresis -10 +KPX r agrave -10 +KPX r amacron -10 +KPX r aogonek -10 +KPX r aring -10 +KPX r atilde -10 +KPX r colon 30 +KPX r comma -50 +KPX r i 15 +KPX r iacute 15 +KPX r icircumflex 15 +KPX r idieresis 15 +KPX r igrave 15 +KPX r imacron 15 +KPX r iogonek 15 +KPX r k 15 +KPX r kcommaaccent 15 +KPX r l 15 +KPX r lacute 15 +KPX r lcommaaccent 15 +KPX r lslash 15 +KPX r m 25 +KPX r n 25 +KPX r nacute 25 +KPX r ncaron 25 +KPX r ncommaaccent 25 +KPX r ntilde 25 +KPX r p 30 +KPX r period -50 +KPX r semicolon 30 +KPX r t 40 +KPX r tcommaaccent 40 +KPX r u 15 +KPX r uacute 15 +KPX r ucircumflex 15 +KPX r udieresis 15 +KPX r ugrave 15 +KPX r uhungarumlaut 15 +KPX r umacron 15 +KPX r uogonek 15 +KPX r uring 15 +KPX r v 30 +KPX r y 30 +KPX r yacute 30 +KPX r ydieresis 30 +KPX racute a -10 +KPX racute aacute -10 +KPX racute abreve -10 +KPX racute acircumflex -10 +KPX racute adieresis -10 +KPX racute agrave -10 +KPX racute amacron -10 +KPX racute aogonek -10 +KPX racute aring -10 +KPX racute atilde -10 +KPX racute colon 30 +KPX racute comma -50 +KPX racute i 15 +KPX racute iacute 15 +KPX racute icircumflex 15 +KPX racute idieresis 15 +KPX racute igrave 15 +KPX racute imacron 15 +KPX racute iogonek 15 +KPX racute k 15 +KPX racute kcommaaccent 15 +KPX racute l 15 +KPX racute lacute 15 +KPX racute lcommaaccent 15 +KPX racute lslash 15 +KPX racute m 25 +KPX racute n 25 +KPX racute nacute 25 +KPX racute ncaron 25 +KPX racute ncommaaccent 25 +KPX racute ntilde 25 +KPX racute p 30 +KPX racute period -50 +KPX racute semicolon 30 +KPX racute t 40 +KPX racute tcommaaccent 40 +KPX racute u 15 +KPX racute uacute 15 +KPX racute ucircumflex 15 +KPX racute udieresis 15 +KPX racute ugrave 15 +KPX racute uhungarumlaut 15 +KPX racute umacron 15 +KPX racute uogonek 15 +KPX racute uring 15 +KPX racute v 30 +KPX racute y 30 +KPX racute yacute 30 +KPX racute ydieresis 30 +KPX rcaron a -10 +KPX rcaron aacute -10 +KPX rcaron abreve -10 +KPX rcaron acircumflex -10 +KPX rcaron adieresis -10 +KPX rcaron agrave -10 +KPX rcaron amacron -10 +KPX rcaron aogonek -10 +KPX rcaron aring -10 +KPX rcaron atilde -10 +KPX rcaron colon 30 +KPX rcaron comma -50 +KPX rcaron i 15 +KPX rcaron iacute 15 +KPX rcaron icircumflex 15 +KPX rcaron idieresis 15 +KPX rcaron igrave 15 +KPX rcaron imacron 15 +KPX rcaron iogonek 15 +KPX rcaron k 15 +KPX rcaron kcommaaccent 15 +KPX rcaron l 15 +KPX rcaron lacute 15 +KPX rcaron lcommaaccent 15 +KPX rcaron lslash 15 +KPX rcaron m 25 +KPX rcaron n 25 +KPX rcaron nacute 25 +KPX rcaron ncaron 25 +KPX rcaron ncommaaccent 25 +KPX rcaron ntilde 25 +KPX rcaron p 30 +KPX rcaron period -50 +KPX rcaron semicolon 30 +KPX rcaron t 40 +KPX rcaron tcommaaccent 40 +KPX rcaron u 15 +KPX rcaron uacute 15 +KPX rcaron ucircumflex 15 +KPX rcaron udieresis 15 +KPX rcaron ugrave 15 +KPX rcaron uhungarumlaut 15 +KPX rcaron umacron 15 +KPX rcaron uogonek 15 +KPX rcaron uring 15 +KPX rcaron v 30 +KPX rcaron y 30 +KPX rcaron yacute 30 +KPX rcaron ydieresis 30 +KPX rcommaaccent a -10 +KPX rcommaaccent aacute -10 +KPX rcommaaccent abreve -10 +KPX rcommaaccent acircumflex -10 +KPX rcommaaccent adieresis -10 +KPX rcommaaccent agrave -10 +KPX rcommaaccent amacron -10 +KPX rcommaaccent aogonek -10 +KPX rcommaaccent aring -10 +KPX rcommaaccent atilde -10 +KPX rcommaaccent colon 30 +KPX rcommaaccent comma -50 +KPX rcommaaccent i 15 +KPX rcommaaccent iacute 15 +KPX rcommaaccent icircumflex 15 +KPX rcommaaccent idieresis 15 +KPX rcommaaccent igrave 15 +KPX rcommaaccent imacron 15 +KPX rcommaaccent iogonek 15 +KPX rcommaaccent k 15 +KPX rcommaaccent kcommaaccent 15 +KPX rcommaaccent l 15 +KPX rcommaaccent lacute 15 +KPX rcommaaccent lcommaaccent 15 +KPX rcommaaccent lslash 15 +KPX rcommaaccent m 25 +KPX rcommaaccent n 25 +KPX rcommaaccent nacute 25 +KPX rcommaaccent ncaron 25 +KPX rcommaaccent ncommaaccent 25 +KPX rcommaaccent ntilde 25 +KPX rcommaaccent p 30 +KPX rcommaaccent period -50 +KPX rcommaaccent semicolon 30 +KPX rcommaaccent t 40 +KPX rcommaaccent tcommaaccent 40 +KPX rcommaaccent u 15 +KPX rcommaaccent uacute 15 +KPX rcommaaccent ucircumflex 15 +KPX rcommaaccent udieresis 15 +KPX rcommaaccent ugrave 15 +KPX rcommaaccent uhungarumlaut 15 +KPX rcommaaccent umacron 15 +KPX rcommaaccent uogonek 15 +KPX rcommaaccent uring 15 +KPX rcommaaccent v 30 +KPX rcommaaccent y 30 +KPX rcommaaccent yacute 30 +KPX rcommaaccent ydieresis 30 +KPX s comma -15 +KPX s period -15 +KPX s w -30 +KPX sacute comma -15 +KPX sacute period -15 +KPX sacute w -30 +KPX scaron comma -15 +KPX scaron period -15 +KPX scaron w -30 +KPX scedilla comma -15 +KPX scedilla period -15 +KPX scedilla w -30 +KPX scommaaccent comma -15 +KPX scommaaccent period -15 +KPX scommaaccent w -30 +KPX semicolon space -50 +KPX space T -50 +KPX space Tcaron -50 +KPX space Tcommaaccent -50 +KPX space V -50 +KPX space W -40 +KPX space Y -90 +KPX space Yacute -90 +KPX space Ydieresis -90 +KPX space quotedblleft -30 +KPX space quoteleft -60 +KPX v a -25 +KPX v aacute -25 +KPX v abreve -25 +KPX v acircumflex -25 +KPX v adieresis -25 +KPX v agrave -25 +KPX v amacron -25 +KPX v aogonek -25 +KPX v aring -25 +KPX v atilde -25 +KPX v comma -80 +KPX v e -25 +KPX v eacute -25 +KPX v ecaron -25 +KPX v ecircumflex -25 +KPX v edieresis -25 +KPX v edotaccent -25 +KPX v egrave -25 +KPX v emacron -25 +KPX v eogonek -25 +KPX v o -25 +KPX v oacute -25 +KPX v ocircumflex -25 +KPX v odieresis -25 +KPX v ograve -25 +KPX v ohungarumlaut -25 +KPX v omacron -25 +KPX v oslash -25 +KPX v otilde -25 +KPX v period -80 +KPX w a -15 +KPX w aacute -15 +KPX w abreve -15 +KPX w acircumflex -15 +KPX w adieresis -15 +KPX w agrave -15 +KPX w amacron -15 +KPX w aogonek -15 +KPX w aring -15 +KPX w atilde -15 +KPX w comma -60 +KPX w e -10 +KPX w eacute -10 +KPX w ecaron -10 +KPX w ecircumflex -10 +KPX w edieresis -10 +KPX w edotaccent -10 +KPX w egrave -10 +KPX w emacron -10 +KPX w eogonek -10 +KPX w o -10 +KPX w oacute -10 +KPX w ocircumflex -10 +KPX w odieresis -10 +KPX w ograve -10 +KPX w ohungarumlaut -10 +KPX w omacron -10 +KPX w oslash -10 +KPX w otilde -10 +KPX w period -60 +KPX x e -30 +KPX x eacute -30 +KPX x ecaron -30 +KPX x ecircumflex -30 +KPX x edieresis -30 +KPX x edotaccent -30 +KPX x egrave -30 +KPX x emacron -30 +KPX x eogonek -30 +KPX y a -20 +KPX y aacute -20 +KPX y abreve -20 +KPX y acircumflex -20 +KPX y adieresis -20 +KPX y agrave -20 +KPX y amacron -20 +KPX y aogonek -20 +KPX y aring -20 +KPX y atilde -20 +KPX y comma -100 +KPX y e -20 +KPX y eacute -20 +KPX y ecaron -20 +KPX y ecircumflex -20 +KPX y edieresis -20 +KPX y edotaccent -20 +KPX y egrave -20 +KPX y emacron -20 +KPX y eogonek -20 +KPX y o -20 +KPX y oacute -20 +KPX y ocircumflex -20 +KPX y odieresis -20 +KPX y ograve -20 +KPX y ohungarumlaut -20 +KPX y omacron -20 +KPX y oslash -20 +KPX y otilde -20 +KPX y period -100 +KPX yacute a -20 +KPX yacute aacute -20 +KPX yacute abreve -20 +KPX yacute acircumflex -20 +KPX yacute adieresis -20 +KPX yacute agrave -20 +KPX yacute amacron -20 +KPX yacute aogonek -20 +KPX yacute aring -20 +KPX yacute atilde -20 +KPX yacute comma -100 +KPX yacute e -20 +KPX yacute eacute -20 +KPX yacute ecaron -20 +KPX yacute ecircumflex -20 +KPX yacute edieresis -20 +KPX yacute edotaccent -20 +KPX yacute egrave -20 +KPX yacute emacron -20 +KPX yacute eogonek -20 +KPX yacute o -20 +KPX yacute oacute -20 +KPX yacute ocircumflex -20 +KPX yacute odieresis -20 +KPX yacute ograve -20 +KPX yacute ohungarumlaut -20 +KPX yacute omacron -20 +KPX yacute oslash -20 +KPX yacute otilde -20 +KPX yacute period -100 +KPX ydieresis a -20 +KPX ydieresis aacute -20 +KPX ydieresis abreve -20 +KPX ydieresis acircumflex -20 +KPX ydieresis adieresis -20 +KPX ydieresis agrave -20 +KPX ydieresis amacron -20 +KPX ydieresis aogonek -20 +KPX ydieresis aring -20 +KPX ydieresis atilde -20 +KPX ydieresis comma -100 +KPX ydieresis e -20 +KPX ydieresis eacute -20 +KPX ydieresis ecaron -20 +KPX ydieresis ecircumflex -20 +KPX ydieresis edieresis -20 +KPX ydieresis edotaccent -20 +KPX ydieresis egrave -20 +KPX ydieresis emacron -20 +KPX ydieresis eogonek -20 +KPX ydieresis o -20 +KPX ydieresis oacute -20 +KPX ydieresis ocircumflex -20 +KPX ydieresis odieresis -20 +KPX ydieresis ograve -20 +KPX ydieresis ohungarumlaut -20 +KPX ydieresis omacron -20 +KPX ydieresis oslash -20 +KPX ydieresis otilde -20 +KPX ydieresis period -100 +KPX z e -15 +KPX z eacute -15 +KPX z ecaron -15 +KPX z ecircumflex -15 +KPX z edieresis -15 +KPX z edotaccent -15 +KPX z egrave -15 +KPX z emacron -15 +KPX z eogonek -15 +KPX z o -15 +KPX z oacute -15 +KPX z ocircumflex -15 +KPX z odieresis -15 +KPX z ograve -15 +KPX z ohungarumlaut -15 +KPX z omacron -15 +KPX z oslash -15 +KPX z otilde -15 +KPX zacute e -15 +KPX zacute eacute -15 +KPX zacute ecaron -15 +KPX zacute ecircumflex -15 +KPX zacute edieresis -15 +KPX zacute edotaccent -15 +KPX zacute egrave -15 +KPX zacute emacron -15 +KPX zacute eogonek -15 +KPX zacute o -15 +KPX zacute oacute -15 +KPX zacute ocircumflex -15 +KPX zacute odieresis -15 +KPX zacute ograve -15 +KPX zacute ohungarumlaut -15 +KPX zacute omacron -15 +KPX zacute oslash -15 +KPX zacute otilde -15 +KPX zcaron e -15 +KPX zcaron eacute -15 +KPX zcaron ecaron -15 +KPX zcaron ecircumflex -15 +KPX zcaron edieresis -15 +KPX zcaron edotaccent -15 +KPX zcaron egrave -15 +KPX zcaron emacron -15 +KPX zcaron eogonek -15 +KPX zcaron o -15 +KPX zcaron oacute -15 +KPX zcaron ocircumflex -15 +KPX zcaron odieresis -15 +KPX zcaron ograve -15 +KPX zcaron ohungarumlaut -15 +KPX zcaron omacron -15 +KPX zcaron oslash -15 +KPX zcaron otilde -15 +KPX zdotaccent e -15 +KPX zdotaccent eacute -15 +KPX zdotaccent ecaron -15 +KPX zdotaccent ecircumflex -15 +KPX zdotaccent edieresis -15 +KPX zdotaccent edotaccent -15 +KPX zdotaccent egrave -15 +KPX zdotaccent emacron -15 +KPX zdotaccent eogonek -15 +KPX zdotaccent o -15 +KPX zdotaccent oacute -15 +KPX zdotaccent ocircumflex -15 +KPX zdotaccent odieresis -15 +KPX zdotaccent ograve -15 +KPX zdotaccent ohungarumlaut -15 +KPX zdotaccent omacron -15 +KPX zdotaccent oslash -15 +KPX zdotaccent otilde -15 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/Helvetica.afm b/pyx/data/afm/Helvetica.afm new file mode 100644 index 00000000..9492d8fc --- /dev/null +++ b/pyx/data/afm/Helvetica.afm @@ -0,0 +1,3051 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:38:23 1997 +Comment UniqueID 43054 +Comment VMusage 37069 48094 +FontName Helvetica +FullName Helvetica +FamilyName Helvetica +Weight Medium +ItalicAngle 0 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -166 -225 1000 931 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 718 +XHeight 523 +Ascender 718 +Descender -207 +StdHW 76 +StdVW 88 +StartCharMetrics 315 +C 32 ; WX 278 ; N space ; B 0 0 0 0 ; +C 33 ; WX 278 ; N exclam ; B 90 0 187 718 ; +C 34 ; WX 355 ; N quotedbl ; B 70 463 285 718 ; +C 35 ; WX 556 ; N numbersign ; B 28 0 529 688 ; +C 36 ; WX 556 ; N dollar ; B 32 -115 520 775 ; +C 37 ; WX 889 ; N percent ; B 39 -19 850 703 ; +C 38 ; WX 667 ; N ampersand ; B 44 -15 645 718 ; +C 39 ; WX 222 ; N quoteright ; B 53 463 157 718 ; +C 40 ; WX 333 ; N parenleft ; B 68 -207 299 733 ; +C 41 ; WX 333 ; N parenright ; B 34 -207 265 733 ; +C 42 ; WX 389 ; N asterisk ; B 39 431 349 718 ; +C 43 ; WX 584 ; N plus ; B 39 0 545 505 ; +C 44 ; WX 278 ; N comma ; B 87 -147 191 106 ; +C 45 ; WX 333 ; N hyphen ; B 44 232 289 322 ; +C 46 ; WX 278 ; N period ; B 87 0 191 106 ; +C 47 ; WX 278 ; N slash ; B -17 -19 295 737 ; +C 48 ; WX 556 ; N zero ; B 37 -19 519 703 ; +C 49 ; WX 556 ; N one ; B 101 0 359 703 ; +C 50 ; WX 556 ; N two ; B 26 0 507 703 ; +C 51 ; WX 556 ; N three ; B 34 -19 522 703 ; +C 52 ; WX 556 ; N four ; B 25 0 523 703 ; +C 53 ; WX 556 ; N five ; B 32 -19 514 688 ; +C 54 ; WX 556 ; N six ; B 38 -19 518 703 ; +C 55 ; WX 556 ; N seven ; B 37 0 523 688 ; +C 56 ; WX 556 ; N eight ; B 38 -19 517 703 ; +C 57 ; WX 556 ; N nine ; B 42 -19 514 703 ; +C 58 ; WX 278 ; N colon ; B 87 0 191 516 ; +C 59 ; WX 278 ; N semicolon ; B 87 -147 191 516 ; +C 60 ; WX 584 ; N less ; B 48 11 536 495 ; +C 61 ; WX 584 ; N equal ; B 39 115 545 390 ; +C 62 ; WX 584 ; N greater ; B 48 11 536 495 ; +C 63 ; WX 556 ; N question ; B 56 0 492 727 ; +C 64 ; WX 1015 ; N at ; B 147 -19 868 737 ; +C 65 ; WX 667 ; N A ; B 14 0 654 718 ; +C 66 ; WX 667 ; N B ; B 74 0 627 718 ; +C 67 ; WX 722 ; N C ; B 44 -19 681 737 ; +C 68 ; WX 722 ; N D ; B 81 0 674 718 ; +C 69 ; WX 667 ; N E ; B 86 0 616 718 ; +C 70 ; WX 611 ; N F ; B 86 0 583 718 ; +C 71 ; WX 778 ; N G ; B 48 -19 704 737 ; +C 72 ; WX 722 ; N H ; B 77 0 646 718 ; +C 73 ; WX 278 ; N I ; B 91 0 188 718 ; +C 74 ; WX 500 ; N J ; B 17 -19 428 718 ; +C 75 ; WX 667 ; N K ; B 76 0 663 718 ; +C 76 ; WX 556 ; N L ; B 76 0 537 718 ; +C 77 ; WX 833 ; N M ; B 73 0 761 718 ; +C 78 ; WX 722 ; N N ; B 76 0 646 718 ; +C 79 ; WX 778 ; N O ; B 39 -19 739 737 ; +C 80 ; WX 667 ; N P ; B 86 0 622 718 ; +C 81 ; WX 778 ; N Q ; B 39 -56 739 737 ; +C 82 ; WX 722 ; N R ; B 88 0 684 718 ; +C 83 ; WX 667 ; N S ; B 49 -19 620 737 ; +C 84 ; WX 611 ; N T ; B 14 0 597 718 ; +C 85 ; WX 722 ; N U ; B 79 -19 644 718 ; +C 86 ; WX 667 ; N V ; B 20 0 647 718 ; +C 87 ; WX 944 ; N W ; B 16 0 928 718 ; +C 88 ; WX 667 ; N X ; B 19 0 648 718 ; +C 89 ; WX 667 ; N Y ; B 14 0 653 718 ; +C 90 ; WX 611 ; N Z ; B 23 0 588 718 ; +C 91 ; WX 278 ; N bracketleft ; B 63 -196 250 722 ; +C 92 ; WX 278 ; N backslash ; B -17 -19 295 737 ; +C 93 ; WX 278 ; N bracketright ; B 28 -196 215 722 ; +C 94 ; WX 469 ; N asciicircum ; B -14 264 483 688 ; +C 95 ; WX 556 ; N underscore ; B 0 -125 556 -75 ; +C 96 ; WX 222 ; N quoteleft ; B 65 470 169 725 ; +C 97 ; WX 556 ; N a ; B 36 -15 530 538 ; +C 98 ; WX 556 ; N b ; B 58 -15 517 718 ; +C 99 ; WX 500 ; N c ; B 30 -15 477 538 ; +C 100 ; WX 556 ; N d ; B 35 -15 499 718 ; +C 101 ; WX 556 ; N e ; B 40 -15 516 538 ; +C 102 ; WX 278 ; N f ; B 14 0 262 728 ; L i fi ; L l fl ; +C 103 ; WX 556 ; N g ; B 40 -220 499 538 ; +C 104 ; WX 556 ; N h ; B 65 0 491 718 ; +C 105 ; WX 222 ; N i ; B 67 0 155 718 ; +C 106 ; WX 222 ; N j ; B -16 -210 155 718 ; +C 107 ; WX 500 ; N k ; B 67 0 501 718 ; +C 108 ; WX 222 ; N l ; B 67 0 155 718 ; +C 109 ; WX 833 ; N m ; B 65 0 769 538 ; +C 110 ; WX 556 ; N n ; B 65 0 491 538 ; +C 111 ; WX 556 ; N o ; B 35 -14 521 538 ; +C 112 ; WX 556 ; N p ; B 58 -207 517 538 ; +C 113 ; WX 556 ; N q ; B 35 -207 494 538 ; +C 114 ; WX 333 ; N r ; B 77 0 332 538 ; +C 115 ; WX 500 ; N s ; B 32 -15 464 538 ; +C 116 ; WX 278 ; N t ; B 14 -7 257 669 ; +C 117 ; WX 556 ; N u ; B 68 -15 489 523 ; +C 118 ; WX 500 ; N v ; B 8 0 492 523 ; +C 119 ; WX 722 ; N w ; B 14 0 709 523 ; +C 120 ; WX 500 ; N x ; B 11 0 490 523 ; +C 121 ; WX 500 ; N y ; B 11 -214 489 523 ; +C 122 ; WX 500 ; N z ; B 31 0 469 523 ; +C 123 ; WX 334 ; N braceleft ; B 42 -196 292 722 ; +C 124 ; WX 260 ; N bar ; B 94 -225 167 775 ; +C 125 ; WX 334 ; N braceright ; B 42 -196 292 722 ; +C 126 ; WX 584 ; N asciitilde ; B 61 180 523 326 ; +C 161 ; WX 333 ; N exclamdown ; B 118 -195 215 523 ; +C 162 ; WX 556 ; N cent ; B 51 -115 513 623 ; +C 163 ; WX 556 ; N sterling ; B 33 -16 539 718 ; +C 164 ; WX 167 ; N fraction ; B -166 -19 333 703 ; +C 165 ; WX 556 ; N yen ; B 3 0 553 688 ; +C 166 ; WX 556 ; N florin ; B -11 -207 501 737 ; +C 167 ; WX 556 ; N section ; B 43 -191 512 737 ; +C 168 ; WX 556 ; N currency ; B 28 99 528 603 ; +C 169 ; WX 191 ; N quotesingle ; B 59 463 132 718 ; +C 170 ; WX 333 ; N quotedblleft ; B 38 470 307 725 ; +C 171 ; WX 556 ; N guillemotleft ; B 97 108 459 446 ; +C 172 ; WX 333 ; N guilsinglleft ; B 88 108 245 446 ; +C 173 ; WX 333 ; N guilsinglright ; B 88 108 245 446 ; +C 174 ; WX 500 ; N fi ; B 14 0 434 728 ; +C 175 ; WX 500 ; N fl ; B 14 0 432 728 ; +C 177 ; WX 556 ; N endash ; B 0 240 556 313 ; +C 178 ; WX 556 ; N dagger ; B 43 -159 514 718 ; +C 179 ; WX 556 ; N daggerdbl ; B 43 -159 514 718 ; +C 180 ; WX 278 ; N periodcentered ; B 77 190 202 315 ; +C 182 ; WX 537 ; N paragraph ; B 18 -173 497 718 ; +C 183 ; WX 350 ; N bullet ; B 18 202 333 517 ; +C 184 ; WX 222 ; N quotesinglbase ; B 53 -149 157 106 ; +C 185 ; WX 333 ; N quotedblbase ; B 26 -149 295 106 ; +C 186 ; WX 333 ; N quotedblright ; B 26 463 295 718 ; +C 187 ; WX 556 ; N guillemotright ; B 97 108 459 446 ; +C 188 ; WX 1000 ; N ellipsis ; B 115 0 885 106 ; +C 189 ; WX 1000 ; N perthousand ; B 7 -19 994 703 ; +C 191 ; WX 611 ; N questiondown ; B 91 -201 527 525 ; +C 193 ; WX 333 ; N grave ; B 14 593 211 734 ; +C 194 ; WX 333 ; N acute ; B 122 593 319 734 ; +C 195 ; WX 333 ; N circumflex ; B 21 593 312 734 ; +C 196 ; WX 333 ; N tilde ; B -4 606 337 722 ; +C 197 ; WX 333 ; N macron ; B 10 627 323 684 ; +C 198 ; WX 333 ; N breve ; B 13 595 321 731 ; +C 199 ; WX 333 ; N dotaccent ; B 121 604 212 706 ; +C 200 ; WX 333 ; N dieresis ; B 40 604 293 706 ; +C 202 ; WX 333 ; N ring ; B 75 572 259 756 ; +C 203 ; WX 333 ; N cedilla ; B 45 -225 259 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B 31 593 409 734 ; +C 206 ; WX 333 ; N ogonek ; B 73 -225 287 0 ; +C 207 ; WX 333 ; N caron ; B 21 593 312 734 ; +C 208 ; WX 1000 ; N emdash ; B 0 240 1000 313 ; +C 225 ; WX 1000 ; N AE ; B 8 0 951 718 ; +C 227 ; WX 370 ; N ordfeminine ; B 24 405 346 737 ; +C 232 ; WX 556 ; N Lslash ; B -20 0 537 718 ; +C 233 ; WX 778 ; N Oslash ; B 39 -19 740 737 ; +C 234 ; WX 1000 ; N OE ; B 36 -19 965 737 ; +C 235 ; WX 365 ; N ordmasculine ; B 25 405 341 737 ; +C 241 ; WX 889 ; N ae ; B 36 -15 847 538 ; +C 245 ; WX 278 ; N dotlessi ; B 95 0 183 523 ; +C 248 ; WX 222 ; N lslash ; B -20 0 242 718 ; +C 249 ; WX 611 ; N oslash ; B 28 -22 537 545 ; +C 250 ; WX 944 ; N oe ; B 35 -15 902 538 ; +C 251 ; WX 611 ; N germandbls ; B 67 -15 571 728 ; +C -1 ; WX 278 ; N Idieresis ; B 13 0 266 901 ; +C -1 ; WX 556 ; N eacute ; B 40 -15 516 734 ; +C -1 ; WX 556 ; N abreve ; B 36 -15 530 731 ; +C -1 ; WX 556 ; N uhungarumlaut ; B 68 -15 521 734 ; +C -1 ; WX 556 ; N ecaron ; B 40 -15 516 734 ; +C -1 ; WX 667 ; N Ydieresis ; B 14 0 653 901 ; +C -1 ; WX 584 ; N divide ; B 39 -19 545 524 ; +C -1 ; WX 667 ; N Yacute ; B 14 0 653 929 ; +C -1 ; WX 667 ; N Acircumflex ; B 14 0 654 929 ; +C -1 ; WX 556 ; N aacute ; B 36 -15 530 734 ; +C -1 ; WX 722 ; N Ucircumflex ; B 79 -19 644 929 ; +C -1 ; WX 500 ; N yacute ; B 11 -214 489 734 ; +C -1 ; WX 500 ; N scommaaccent ; B 32 -225 464 538 ; +C -1 ; WX 556 ; N ecircumflex ; B 40 -15 516 734 ; +C -1 ; WX 722 ; N Uring ; B 79 -19 644 931 ; +C -1 ; WX 722 ; N Udieresis ; B 79 -19 644 901 ; +C -1 ; WX 556 ; N aogonek ; B 36 -220 547 538 ; +C -1 ; WX 722 ; N Uacute ; B 79 -19 644 929 ; +C -1 ; WX 556 ; N uogonek ; B 68 -225 519 523 ; +C -1 ; WX 667 ; N Edieresis ; B 86 0 616 901 ; +C -1 ; WX 722 ; N Dcroat ; B 0 0 674 718 ; +C -1 ; WX 250 ; N commaaccent ; B 87 -225 181 -40 ; +C -1 ; WX 737 ; N copyright ; B -14 -19 752 737 ; +C -1 ; WX 667 ; N Emacron ; B 86 0 616 879 ; +C -1 ; WX 500 ; N ccaron ; B 30 -15 477 734 ; +C -1 ; WX 556 ; N aring ; B 36 -15 530 756 ; +C -1 ; WX 722 ; N Ncommaaccent ; B 76 -225 646 718 ; +C -1 ; WX 222 ; N lacute ; B 67 0 264 929 ; +C -1 ; WX 556 ; N agrave ; B 36 -15 530 734 ; +C -1 ; WX 611 ; N Tcommaaccent ; B 14 -225 597 718 ; +C -1 ; WX 722 ; N Cacute ; B 44 -19 681 929 ; +C -1 ; WX 556 ; N atilde ; B 36 -15 530 722 ; +C -1 ; WX 667 ; N Edotaccent ; B 86 0 616 901 ; +C -1 ; WX 500 ; N scaron ; B 32 -15 464 734 ; +C -1 ; WX 500 ; N scedilla ; B 32 -225 464 538 ; +C -1 ; WX 278 ; N iacute ; B 95 0 292 734 ; +C -1 ; WX 471 ; N lozenge ; B 10 0 462 728 ; +C -1 ; WX 722 ; N Rcaron ; B 88 0 684 929 ; +C -1 ; WX 778 ; N Gcommaaccent ; B 48 -225 704 737 ; +C -1 ; WX 556 ; N ucircumflex ; B 68 -15 489 734 ; +C -1 ; WX 556 ; N acircumflex ; B 36 -15 530 734 ; +C -1 ; WX 667 ; N Amacron ; B 14 0 654 879 ; +C -1 ; WX 333 ; N rcaron ; B 61 0 352 734 ; +C -1 ; WX 500 ; N ccedilla ; B 30 -225 477 538 ; +C -1 ; WX 611 ; N Zdotaccent ; B 23 0 588 901 ; +C -1 ; WX 667 ; N Thorn ; B 86 0 622 718 ; +C -1 ; WX 778 ; N Omacron ; B 39 -19 739 879 ; +C -1 ; WX 722 ; N Racute ; B 88 0 684 929 ; +C -1 ; WX 667 ; N Sacute ; B 49 -19 620 929 ; +C -1 ; WX 643 ; N dcaron ; B 35 -15 655 718 ; +C -1 ; WX 722 ; N Umacron ; B 79 -19 644 879 ; +C -1 ; WX 556 ; N uring ; B 68 -15 489 756 ; +C -1 ; WX 333 ; N threesuperior ; B 5 270 325 703 ; +C -1 ; WX 778 ; N Ograve ; B 39 -19 739 929 ; +C -1 ; WX 667 ; N Agrave ; B 14 0 654 929 ; +C -1 ; WX 667 ; N Abreve ; B 14 0 654 926 ; +C -1 ; WX 584 ; N multiply ; B 39 0 545 506 ; +C -1 ; WX 556 ; N uacute ; B 68 -15 489 734 ; +C -1 ; WX 611 ; N Tcaron ; B 14 0 597 929 ; +C -1 ; WX 476 ; N partialdiff ; B 13 -38 463 714 ; +C -1 ; WX 500 ; N ydieresis ; B 11 -214 489 706 ; +C -1 ; WX 722 ; N Nacute ; B 76 0 646 929 ; +C -1 ; WX 278 ; N icircumflex ; B -6 0 285 734 ; +C -1 ; WX 667 ; N Ecircumflex ; B 86 0 616 929 ; +C -1 ; WX 556 ; N adieresis ; B 36 -15 530 706 ; +C -1 ; WX 556 ; N edieresis ; B 40 -15 516 706 ; +C -1 ; WX 500 ; N cacute ; B 30 -15 477 734 ; +C -1 ; WX 556 ; N nacute ; B 65 0 491 734 ; +C -1 ; WX 556 ; N umacron ; B 68 -15 489 684 ; +C -1 ; WX 722 ; N Ncaron ; B 76 0 646 929 ; +C -1 ; WX 278 ; N Iacute ; B 91 0 292 929 ; +C -1 ; WX 584 ; N plusminus ; B 39 0 545 506 ; +C -1 ; WX 260 ; N brokenbar ; B 94 -150 167 700 ; +C -1 ; WX 737 ; N registered ; B -14 -19 752 737 ; +C -1 ; WX 778 ; N Gbreve ; B 48 -19 704 926 ; +C -1 ; WX 278 ; N Idotaccent ; B 91 0 188 901 ; +C -1 ; WX 600 ; N summation ; B 15 -10 586 706 ; +C -1 ; WX 667 ; N Egrave ; B 86 0 616 929 ; +C -1 ; WX 333 ; N racute ; B 77 0 332 734 ; +C -1 ; WX 556 ; N omacron ; B 35 -14 521 684 ; +C -1 ; WX 611 ; N Zacute ; B 23 0 588 929 ; +C -1 ; WX 611 ; N Zcaron ; B 23 0 588 929 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 523 674 ; +C -1 ; WX 722 ; N Eth ; B 0 0 674 718 ; +C -1 ; WX 722 ; N Ccedilla ; B 44 -225 681 737 ; +C -1 ; WX 222 ; N lcommaaccent ; B 67 -225 167 718 ; +C -1 ; WX 317 ; N tcaron ; B 14 -7 329 808 ; +C -1 ; WX 556 ; N eogonek ; B 40 -225 516 538 ; +C -1 ; WX 722 ; N Uogonek ; B 79 -225 644 718 ; +C -1 ; WX 667 ; N Aacute ; B 14 0 654 929 ; +C -1 ; WX 667 ; N Adieresis ; B 14 0 654 901 ; +C -1 ; WX 556 ; N egrave ; B 40 -15 516 734 ; +C -1 ; WX 500 ; N zacute ; B 31 0 469 734 ; +C -1 ; WX 222 ; N iogonek ; B -31 -225 183 718 ; +C -1 ; WX 778 ; N Oacute ; B 39 -19 739 929 ; +C -1 ; WX 556 ; N oacute ; B 35 -14 521 734 ; +C -1 ; WX 556 ; N amacron ; B 36 -15 530 684 ; +C -1 ; WX 500 ; N sacute ; B 32 -15 464 734 ; +C -1 ; WX 278 ; N idieresis ; B 13 0 266 706 ; +C -1 ; WX 778 ; N Ocircumflex ; B 39 -19 739 929 ; +C -1 ; WX 722 ; N Ugrave ; B 79 -19 644 929 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 556 ; N thorn ; B 58 -207 517 718 ; +C -1 ; WX 333 ; N twosuperior ; B 4 281 323 703 ; +C -1 ; WX 778 ; N Odieresis ; B 39 -19 739 901 ; +C -1 ; WX 556 ; N mu ; B 68 -207 489 523 ; +C -1 ; WX 278 ; N igrave ; B -13 0 184 734 ; +C -1 ; WX 556 ; N ohungarumlaut ; B 35 -14 521 734 ; +C -1 ; WX 667 ; N Eogonek ; B 86 -220 633 718 ; +C -1 ; WX 556 ; N dcroat ; B 35 -15 550 718 ; +C -1 ; WX 834 ; N threequarters ; B 45 -19 810 703 ; +C -1 ; WX 667 ; N Scedilla ; B 49 -225 620 737 ; +C -1 ; WX 299 ; N lcaron ; B 67 0 311 718 ; +C -1 ; WX 667 ; N Kcommaaccent ; B 76 -225 663 718 ; +C -1 ; WX 556 ; N Lacute ; B 76 0 537 929 ; +C -1 ; WX 1000 ; N trademark ; B 46 306 903 718 ; +C -1 ; WX 556 ; N edotaccent ; B 40 -15 516 706 ; +C -1 ; WX 278 ; N Igrave ; B -13 0 188 929 ; +C -1 ; WX 278 ; N Imacron ; B -17 0 296 879 ; +C -1 ; WX 556 ; N Lcaron ; B 76 0 537 718 ; +C -1 ; WX 834 ; N onehalf ; B 43 -19 773 703 ; +C -1 ; WX 549 ; N lessequal ; B 26 0 523 674 ; +C -1 ; WX 556 ; N ocircumflex ; B 35 -14 521 734 ; +C -1 ; WX 556 ; N ntilde ; B 65 0 491 722 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 79 -19 644 929 ; +C -1 ; WX 667 ; N Eacute ; B 86 0 616 929 ; +C -1 ; WX 556 ; N emacron ; B 40 -15 516 684 ; +C -1 ; WX 556 ; N gbreve ; B 40 -220 499 731 ; +C -1 ; WX 834 ; N onequarter ; B 73 -19 756 703 ; +C -1 ; WX 667 ; N Scaron ; B 49 -19 620 929 ; +C -1 ; WX 667 ; N Scommaaccent ; B 49 -225 620 737 ; +C -1 ; WX 778 ; N Ohungarumlaut ; B 39 -19 739 929 ; +C -1 ; WX 400 ; N degree ; B 54 411 346 703 ; +C -1 ; WX 556 ; N ograve ; B 35 -14 521 734 ; +C -1 ; WX 722 ; N Ccaron ; B 44 -19 681 929 ; +C -1 ; WX 556 ; N ugrave ; B 68 -15 489 734 ; +C -1 ; WX 453 ; N radical ; B -4 -80 458 762 ; +C -1 ; WX 722 ; N Dcaron ; B 81 0 674 929 ; +C -1 ; WX 333 ; N rcommaaccent ; B 77 -225 332 538 ; +C -1 ; WX 722 ; N Ntilde ; B 76 0 646 917 ; +C -1 ; WX 556 ; N otilde ; B 35 -14 521 722 ; +C -1 ; WX 722 ; N Rcommaaccent ; B 88 -225 684 718 ; +C -1 ; WX 556 ; N Lcommaaccent ; B 76 -225 537 718 ; +C -1 ; WX 667 ; N Atilde ; B 14 0 654 917 ; +C -1 ; WX 667 ; N Aogonek ; B 14 -225 654 718 ; +C -1 ; WX 667 ; N Aring ; B 14 0 654 931 ; +C -1 ; WX 778 ; N Otilde ; B 39 -19 739 917 ; +C -1 ; WX 500 ; N zdotaccent ; B 31 0 469 706 ; +C -1 ; WX 667 ; N Ecaron ; B 86 0 616 929 ; +C -1 ; WX 278 ; N Iogonek ; B -3 -225 211 718 ; +C -1 ; WX 500 ; N kcommaaccent ; B 67 -225 501 718 ; +C -1 ; WX 584 ; N minus ; B 39 216 545 289 ; +C -1 ; WX 278 ; N Icircumflex ; B -6 0 285 929 ; +C -1 ; WX 556 ; N ncaron ; B 65 0 491 734 ; +C -1 ; WX 278 ; N tcommaaccent ; B 14 -225 257 669 ; +C -1 ; WX 584 ; N logicalnot ; B 39 108 545 390 ; +C -1 ; WX 556 ; N odieresis ; B 35 -14 521 706 ; +C -1 ; WX 556 ; N udieresis ; B 68 -15 489 706 ; +C -1 ; WX 549 ; N notequal ; B 12 -35 537 551 ; +C -1 ; WX 556 ; N gcommaaccent ; B 40 -220 499 822 ; +C -1 ; WX 556 ; N eth ; B 35 -15 522 737 ; +C -1 ; WX 500 ; N zcaron ; B 31 0 469 734 ; +C -1 ; WX 556 ; N ncommaaccent ; B 65 -225 491 538 ; +C -1 ; WX 333 ; N onesuperior ; B 43 281 222 703 ; +C -1 ; WX 278 ; N imacron ; B 5 0 272 684 ; +C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2705 +KPX A C -30 +KPX A Cacute -30 +KPX A Ccaron -30 +KPX A Ccedilla -30 +KPX A G -30 +KPX A Gbreve -30 +KPX A Gcommaaccent -30 +KPX A O -30 +KPX A Oacute -30 +KPX A Ocircumflex -30 +KPX A Odieresis -30 +KPX A Ograve -30 +KPX A Ohungarumlaut -30 +KPX A Omacron -30 +KPX A Oslash -30 +KPX A Otilde -30 +KPX A Q -30 +KPX A T -120 +KPX A Tcaron -120 +KPX A Tcommaaccent -120 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -70 +KPX A W -50 +KPX A Y -100 +KPX A Yacute -100 +KPX A Ydieresis -100 +KPX A u -30 +KPX A uacute -30 +KPX A ucircumflex -30 +KPX A udieresis -30 +KPX A ugrave -30 +KPX A uhungarumlaut -30 +KPX A umacron -30 +KPX A uogonek -30 +KPX A uring -30 +KPX A v -40 +KPX A w -40 +KPX A y -40 +KPX A yacute -40 +KPX A ydieresis -40 +KPX Aacute C -30 +KPX Aacute Cacute -30 +KPX Aacute Ccaron -30 +KPX Aacute Ccedilla -30 +KPX Aacute G -30 +KPX Aacute Gbreve -30 +KPX Aacute Gcommaaccent -30 +KPX Aacute O -30 +KPX Aacute Oacute -30 +KPX Aacute Ocircumflex -30 +KPX Aacute Odieresis -30 +KPX Aacute Ograve -30 +KPX Aacute Ohungarumlaut -30 +KPX Aacute Omacron -30 +KPX Aacute Oslash -30 +KPX Aacute Otilde -30 +KPX Aacute Q -30 +KPX Aacute T -120 +KPX Aacute Tcaron -120 +KPX Aacute Tcommaaccent -120 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -70 +KPX Aacute W -50 +KPX Aacute Y -100 +KPX Aacute Yacute -100 +KPX Aacute Ydieresis -100 +KPX Aacute u -30 +KPX Aacute uacute -30 +KPX Aacute ucircumflex -30 +KPX Aacute udieresis -30 +KPX Aacute ugrave -30 +KPX Aacute uhungarumlaut -30 +KPX Aacute umacron -30 +KPX Aacute uogonek -30 +KPX Aacute uring -30 +KPX Aacute v -40 +KPX Aacute w -40 +KPX Aacute y -40 +KPX Aacute yacute -40 +KPX Aacute ydieresis -40 +KPX Abreve C -30 +KPX Abreve Cacute -30 +KPX Abreve Ccaron -30 +KPX Abreve Ccedilla -30 +KPX Abreve G -30 +KPX Abreve Gbreve -30 +KPX Abreve Gcommaaccent -30 +KPX Abreve O -30 +KPX Abreve Oacute -30 +KPX Abreve Ocircumflex -30 +KPX Abreve Odieresis -30 +KPX Abreve Ograve -30 +KPX Abreve Ohungarumlaut -30 +KPX Abreve Omacron -30 +KPX Abreve Oslash -30 +KPX Abreve Otilde -30 +KPX Abreve Q -30 +KPX Abreve T -120 +KPX Abreve Tcaron -120 +KPX Abreve Tcommaaccent -120 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -70 +KPX Abreve W -50 +KPX Abreve Y -100 +KPX Abreve Yacute -100 +KPX Abreve Ydieresis -100 +KPX Abreve u -30 +KPX Abreve uacute -30 +KPX Abreve ucircumflex -30 +KPX Abreve udieresis -30 +KPX Abreve ugrave -30 +KPX Abreve uhungarumlaut -30 +KPX Abreve umacron -30 +KPX Abreve uogonek -30 +KPX Abreve uring -30 +KPX Abreve v -40 +KPX Abreve w -40 +KPX Abreve y -40 +KPX Abreve yacute -40 +KPX Abreve ydieresis -40 +KPX Acircumflex C -30 +KPX Acircumflex Cacute -30 +KPX Acircumflex Ccaron -30 +KPX Acircumflex Ccedilla -30 +KPX Acircumflex G -30 +KPX Acircumflex Gbreve -30 +KPX Acircumflex Gcommaaccent -30 +KPX Acircumflex O -30 +KPX Acircumflex Oacute -30 +KPX Acircumflex Ocircumflex -30 +KPX Acircumflex Odieresis -30 +KPX Acircumflex Ograve -30 +KPX Acircumflex Ohungarumlaut -30 +KPX Acircumflex Omacron -30 +KPX Acircumflex Oslash -30 +KPX Acircumflex Otilde -30 +KPX Acircumflex Q -30 +KPX Acircumflex T -120 +KPX Acircumflex Tcaron -120 +KPX Acircumflex Tcommaaccent -120 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -70 +KPX Acircumflex W -50 +KPX Acircumflex Y -100 +KPX Acircumflex Yacute -100 +KPX Acircumflex Ydieresis -100 +KPX Acircumflex u -30 +KPX Acircumflex uacute -30 +KPX Acircumflex ucircumflex -30 +KPX Acircumflex udieresis -30 +KPX Acircumflex ugrave -30 +KPX Acircumflex uhungarumlaut -30 +KPX Acircumflex umacron -30 +KPX Acircumflex uogonek -30 +KPX Acircumflex uring -30 +KPX Acircumflex v -40 +KPX Acircumflex w -40 +KPX Acircumflex y -40 +KPX Acircumflex yacute -40 +KPX Acircumflex ydieresis -40 +KPX Adieresis C -30 +KPX Adieresis Cacute -30 +KPX Adieresis Ccaron -30 +KPX Adieresis Ccedilla -30 +KPX Adieresis G -30 +KPX Adieresis Gbreve -30 +KPX Adieresis Gcommaaccent -30 +KPX Adieresis O -30 +KPX Adieresis Oacute -30 +KPX Adieresis Ocircumflex -30 +KPX Adieresis Odieresis -30 +KPX Adieresis Ograve -30 +KPX Adieresis Ohungarumlaut -30 +KPX Adieresis Omacron -30 +KPX Adieresis Oslash -30 +KPX Adieresis Otilde -30 +KPX Adieresis Q -30 +KPX Adieresis T -120 +KPX Adieresis Tcaron -120 +KPX Adieresis Tcommaaccent -120 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -70 +KPX Adieresis W -50 +KPX Adieresis Y -100 +KPX Adieresis Yacute -100 +KPX Adieresis Ydieresis -100 +KPX Adieresis u -30 +KPX Adieresis uacute -30 +KPX Adieresis ucircumflex -30 +KPX Adieresis udieresis -30 +KPX Adieresis ugrave -30 +KPX Adieresis uhungarumlaut -30 +KPX Adieresis umacron -30 +KPX Adieresis uogonek -30 +KPX Adieresis uring -30 +KPX Adieresis v -40 +KPX Adieresis w -40 +KPX Adieresis y -40 +KPX Adieresis yacute -40 +KPX Adieresis ydieresis -40 +KPX Agrave C -30 +KPX Agrave Cacute -30 +KPX Agrave Ccaron -30 +KPX Agrave Ccedilla -30 +KPX Agrave G -30 +KPX Agrave Gbreve -30 +KPX Agrave Gcommaaccent -30 +KPX Agrave O -30 +KPX Agrave Oacute -30 +KPX Agrave Ocircumflex -30 +KPX Agrave Odieresis -30 +KPX Agrave Ograve -30 +KPX Agrave Ohungarumlaut -30 +KPX Agrave Omacron -30 +KPX Agrave Oslash -30 +KPX Agrave Otilde -30 +KPX Agrave Q -30 +KPX Agrave T -120 +KPX Agrave Tcaron -120 +KPX Agrave Tcommaaccent -120 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -70 +KPX Agrave W -50 +KPX Agrave Y -100 +KPX Agrave Yacute -100 +KPX Agrave Ydieresis -100 +KPX Agrave u -30 +KPX Agrave uacute -30 +KPX Agrave ucircumflex -30 +KPX Agrave udieresis -30 +KPX Agrave ugrave -30 +KPX Agrave uhungarumlaut -30 +KPX Agrave umacron -30 +KPX Agrave uogonek -30 +KPX Agrave uring -30 +KPX Agrave v -40 +KPX Agrave w -40 +KPX Agrave y -40 +KPX Agrave yacute -40 +KPX Agrave ydieresis -40 +KPX Amacron C -30 +KPX Amacron Cacute -30 +KPX Amacron Ccaron -30 +KPX Amacron Ccedilla -30 +KPX Amacron G -30 +KPX Amacron Gbreve -30 +KPX Amacron Gcommaaccent -30 +KPX Amacron O -30 +KPX Amacron Oacute -30 +KPX Amacron Ocircumflex -30 +KPX Amacron Odieresis -30 +KPX Amacron Ograve -30 +KPX Amacron Ohungarumlaut -30 +KPX Amacron Omacron -30 +KPX Amacron Oslash -30 +KPX Amacron Otilde -30 +KPX Amacron Q -30 +KPX Amacron T -120 +KPX Amacron Tcaron -120 +KPX Amacron Tcommaaccent -120 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -70 +KPX Amacron W -50 +KPX Amacron Y -100 +KPX Amacron Yacute -100 +KPX Amacron Ydieresis -100 +KPX Amacron u -30 +KPX Amacron uacute -30 +KPX Amacron ucircumflex -30 +KPX Amacron udieresis -30 +KPX Amacron ugrave -30 +KPX Amacron uhungarumlaut -30 +KPX Amacron umacron -30 +KPX Amacron uogonek -30 +KPX Amacron uring -30 +KPX Amacron v -40 +KPX Amacron w -40 +KPX Amacron y -40 +KPX Amacron yacute -40 +KPX Amacron ydieresis -40 +KPX Aogonek C -30 +KPX Aogonek Cacute -30 +KPX Aogonek Ccaron -30 +KPX Aogonek Ccedilla -30 +KPX Aogonek G -30 +KPX Aogonek Gbreve -30 +KPX Aogonek Gcommaaccent -30 +KPX Aogonek O -30 +KPX Aogonek Oacute -30 +KPX Aogonek Ocircumflex -30 +KPX Aogonek Odieresis -30 +KPX Aogonek Ograve -30 +KPX Aogonek Ohungarumlaut -30 +KPX Aogonek Omacron -30 +KPX Aogonek Oslash -30 +KPX Aogonek Otilde -30 +KPX Aogonek Q -30 +KPX Aogonek T -120 +KPX Aogonek Tcaron -120 +KPX Aogonek Tcommaaccent -120 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -70 +KPX Aogonek W -50 +KPX Aogonek Y -100 +KPX Aogonek Yacute -100 +KPX Aogonek Ydieresis -100 +KPX Aogonek u -30 +KPX Aogonek uacute -30 +KPX Aogonek ucircumflex -30 +KPX Aogonek udieresis -30 +KPX Aogonek ugrave -30 +KPX Aogonek uhungarumlaut -30 +KPX Aogonek umacron -30 +KPX Aogonek uogonek -30 +KPX Aogonek uring -30 +KPX Aogonek v -40 +KPX Aogonek w -40 +KPX Aogonek y -40 +KPX Aogonek yacute -40 +KPX Aogonek ydieresis -40 +KPX Aring C -30 +KPX Aring Cacute -30 +KPX Aring Ccaron -30 +KPX Aring Ccedilla -30 +KPX Aring G -30 +KPX Aring Gbreve -30 +KPX Aring Gcommaaccent -30 +KPX Aring O -30 +KPX Aring Oacute -30 +KPX Aring Ocircumflex -30 +KPX Aring Odieresis -30 +KPX Aring Ograve -30 +KPX Aring Ohungarumlaut -30 +KPX Aring Omacron -30 +KPX Aring Oslash -30 +KPX Aring Otilde -30 +KPX Aring Q -30 +KPX Aring T -120 +KPX Aring Tcaron -120 +KPX Aring Tcommaaccent -120 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -70 +KPX Aring W -50 +KPX Aring Y -100 +KPX Aring Yacute -100 +KPX Aring Ydieresis -100 +KPX Aring u -30 +KPX Aring uacute -30 +KPX Aring ucircumflex -30 +KPX Aring udieresis -30 +KPX Aring ugrave -30 +KPX Aring uhungarumlaut -30 +KPX Aring umacron -30 +KPX Aring uogonek -30 +KPX Aring uring -30 +KPX Aring v -40 +KPX Aring w -40 +KPX Aring y -40 +KPX Aring yacute -40 +KPX Aring ydieresis -40 +KPX Atilde C -30 +KPX Atilde Cacute -30 +KPX Atilde Ccaron -30 +KPX Atilde Ccedilla -30 +KPX Atilde G -30 +KPX Atilde Gbreve -30 +KPX Atilde Gcommaaccent -30 +KPX Atilde O -30 +KPX Atilde Oacute -30 +KPX Atilde Ocircumflex -30 +KPX Atilde Odieresis -30 +KPX Atilde Ograve -30 +KPX Atilde Ohungarumlaut -30 +KPX Atilde Omacron -30 +KPX Atilde Oslash -30 +KPX Atilde Otilde -30 +KPX Atilde Q -30 +KPX Atilde T -120 +KPX Atilde Tcaron -120 +KPX Atilde Tcommaaccent -120 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -70 +KPX Atilde W -50 +KPX Atilde Y -100 +KPX Atilde Yacute -100 +KPX Atilde Ydieresis -100 +KPX Atilde u -30 +KPX Atilde uacute -30 +KPX Atilde ucircumflex -30 +KPX Atilde udieresis -30 +KPX Atilde ugrave -30 +KPX Atilde uhungarumlaut -30 +KPX Atilde umacron -30 +KPX Atilde uogonek -30 +KPX Atilde uring -30 +KPX Atilde v -40 +KPX Atilde w -40 +KPX Atilde y -40 +KPX Atilde yacute -40 +KPX Atilde ydieresis -40 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX B comma -20 +KPX B period -20 +KPX C comma -30 +KPX C period -30 +KPX Cacute comma -30 +KPX Cacute period -30 +KPX Ccaron comma -30 +KPX Ccaron period -30 +KPX Ccedilla comma -30 +KPX Ccedilla period -30 +KPX D A -40 +KPX D Aacute -40 +KPX D Abreve -40 +KPX D Acircumflex -40 +KPX D Adieresis -40 +KPX D Agrave -40 +KPX D Amacron -40 +KPX D Aogonek -40 +KPX D Aring -40 +KPX D Atilde -40 +KPX D V -70 +KPX D W -40 +KPX D Y -90 +KPX D Yacute -90 +KPX D Ydieresis -90 +KPX D comma -70 +KPX D period -70 +KPX Dcaron A -40 +KPX Dcaron Aacute -40 +KPX Dcaron Abreve -40 +KPX Dcaron Acircumflex -40 +KPX Dcaron Adieresis -40 +KPX Dcaron Agrave -40 +KPX Dcaron Amacron -40 +KPX Dcaron Aogonek -40 +KPX Dcaron Aring -40 +KPX Dcaron Atilde -40 +KPX Dcaron V -70 +KPX Dcaron W -40 +KPX Dcaron Y -90 +KPX Dcaron Yacute -90 +KPX Dcaron Ydieresis -90 +KPX Dcaron comma -70 +KPX Dcaron period -70 +KPX Dcroat A -40 +KPX Dcroat Aacute -40 +KPX Dcroat Abreve -40 +KPX Dcroat Acircumflex -40 +KPX Dcroat Adieresis -40 +KPX Dcroat Agrave -40 +KPX Dcroat Amacron -40 +KPX Dcroat Aogonek -40 +KPX Dcroat Aring -40 +KPX Dcroat Atilde -40 +KPX Dcroat V -70 +KPX Dcroat W -40 +KPX Dcroat Y -90 +KPX Dcroat Yacute -90 +KPX Dcroat Ydieresis -90 +KPX Dcroat comma -70 +KPX Dcroat period -70 +KPX F A -80 +KPX F Aacute -80 +KPX F Abreve -80 +KPX F Acircumflex -80 +KPX F Adieresis -80 +KPX F Agrave -80 +KPX F Amacron -80 +KPX F Aogonek -80 +KPX F Aring -80 +KPX F Atilde -80 +KPX F a -50 +KPX F aacute -50 +KPX F abreve -50 +KPX F acircumflex -50 +KPX F adieresis -50 +KPX F agrave -50 +KPX F amacron -50 +KPX F aogonek -50 +KPX F aring -50 +KPX F atilde -50 +KPX F comma -150 +KPX F e -30 +KPX F eacute -30 +KPX F ecaron -30 +KPX F ecircumflex -30 +KPX F edieresis -30 +KPX F edotaccent -30 +KPX F egrave -30 +KPX F emacron -30 +KPX F eogonek -30 +KPX F o -30 +KPX F oacute -30 +KPX F ocircumflex -30 +KPX F odieresis -30 +KPX F ograve -30 +KPX F ohungarumlaut -30 +KPX F omacron -30 +KPX F oslash -30 +KPX F otilde -30 +KPX F period -150 +KPX F r -45 +KPX F racute -45 +KPX F rcaron -45 +KPX F rcommaaccent -45 +KPX J A -20 +KPX J Aacute -20 +KPX J Abreve -20 +KPX J Acircumflex -20 +KPX J Adieresis -20 +KPX J Agrave -20 +KPX J Amacron -20 +KPX J Aogonek -20 +KPX J Aring -20 +KPX J Atilde -20 +KPX J a -20 +KPX J aacute -20 +KPX J abreve -20 +KPX J acircumflex -20 +KPX J adieresis -20 +KPX J agrave -20 +KPX J amacron -20 +KPX J aogonek -20 +KPX J aring -20 +KPX J atilde -20 +KPX J comma -30 +KPX J period -30 +KPX J u -20 +KPX J uacute -20 +KPX J ucircumflex -20 +KPX J udieresis -20 +KPX J ugrave -20 +KPX J uhungarumlaut -20 +KPX J umacron -20 +KPX J uogonek -20 +KPX J uring -20 +KPX K O -50 +KPX K Oacute -50 +KPX K Ocircumflex -50 +KPX K Odieresis -50 +KPX K Ograve -50 +KPX K Ohungarumlaut -50 +KPX K Omacron -50 +KPX K Oslash -50 +KPX K Otilde -50 +KPX K e -40 +KPX K eacute -40 +KPX K ecaron -40 +KPX K ecircumflex -40 +KPX K edieresis -40 +KPX K edotaccent -40 +KPX K egrave -40 +KPX K emacron -40 +KPX K eogonek -40 +KPX K o -40 +KPX K oacute -40 +KPX K ocircumflex -40 +KPX K odieresis -40 +KPX K ograve -40 +KPX K ohungarumlaut -40 +KPX K omacron -40 +KPX K oslash -40 +KPX K otilde -40 +KPX K u -30 +KPX K uacute -30 +KPX K ucircumflex -30 +KPX K udieresis -30 +KPX K ugrave -30 +KPX K uhungarumlaut -30 +KPX K umacron -30 +KPX K uogonek -30 +KPX K uring -30 +KPX K y -50 +KPX K yacute -50 +KPX K ydieresis -50 +KPX Kcommaaccent O -50 +KPX Kcommaaccent Oacute -50 +KPX Kcommaaccent Ocircumflex -50 +KPX Kcommaaccent Odieresis -50 +KPX Kcommaaccent Ograve -50 +KPX Kcommaaccent Ohungarumlaut -50 +KPX Kcommaaccent Omacron -50 +KPX Kcommaaccent Oslash -50 +KPX Kcommaaccent Otilde -50 +KPX Kcommaaccent e -40 +KPX Kcommaaccent eacute -40 +KPX Kcommaaccent ecaron -40 +KPX Kcommaaccent ecircumflex -40 +KPX Kcommaaccent edieresis -40 +KPX Kcommaaccent edotaccent -40 +KPX Kcommaaccent egrave -40 +KPX Kcommaaccent emacron -40 +KPX Kcommaaccent eogonek -40 +KPX Kcommaaccent o -40 +KPX Kcommaaccent oacute -40 +KPX Kcommaaccent ocircumflex -40 +KPX Kcommaaccent odieresis -40 +KPX Kcommaaccent ograve -40 +KPX Kcommaaccent ohungarumlaut -40 +KPX Kcommaaccent omacron -40 +KPX Kcommaaccent oslash -40 +KPX Kcommaaccent otilde -40 +KPX Kcommaaccent u -30 +KPX Kcommaaccent uacute -30 +KPX Kcommaaccent ucircumflex -30 +KPX Kcommaaccent udieresis -30 +KPX Kcommaaccent ugrave -30 +KPX Kcommaaccent uhungarumlaut -30 +KPX Kcommaaccent umacron -30 +KPX Kcommaaccent uogonek -30 +KPX Kcommaaccent uring -30 +KPX Kcommaaccent y -50 +KPX Kcommaaccent yacute -50 +KPX Kcommaaccent ydieresis -50 +KPX L T -110 +KPX L Tcaron -110 +KPX L Tcommaaccent -110 +KPX L V -110 +KPX L W -70 +KPX L Y -140 +KPX L Yacute -140 +KPX L Ydieresis -140 +KPX L quotedblright -140 +KPX L quoteright -160 +KPX L y -30 +KPX L yacute -30 +KPX L ydieresis -30 +KPX Lacute T -110 +KPX Lacute Tcaron -110 +KPX Lacute Tcommaaccent -110 +KPX Lacute V -110 +KPX Lacute W -70 +KPX Lacute Y -140 +KPX Lacute Yacute -140 +KPX Lacute Ydieresis -140 +KPX Lacute quotedblright -140 +KPX Lacute quoteright -160 +KPX Lacute y -30 +KPX Lacute yacute -30 +KPX Lacute ydieresis -30 +KPX Lcaron T -110 +KPX Lcaron Tcaron -110 +KPX Lcaron Tcommaaccent -110 +KPX Lcaron V -110 +KPX Lcaron W -70 +KPX Lcaron Y -140 +KPX Lcaron Yacute -140 +KPX Lcaron Ydieresis -140 +KPX Lcaron quotedblright -140 +KPX Lcaron quoteright -160 +KPX Lcaron y -30 +KPX Lcaron yacute -30 +KPX Lcaron ydieresis -30 +KPX Lcommaaccent T -110 +KPX Lcommaaccent Tcaron -110 +KPX Lcommaaccent Tcommaaccent -110 +KPX Lcommaaccent V -110 +KPX Lcommaaccent W -70 +KPX Lcommaaccent Y -140 +KPX Lcommaaccent Yacute -140 +KPX Lcommaaccent Ydieresis -140 +KPX Lcommaaccent quotedblright -140 +KPX Lcommaaccent quoteright -160 +KPX Lcommaaccent y -30 +KPX Lcommaaccent yacute -30 +KPX Lcommaaccent ydieresis -30 +KPX Lslash T -110 +KPX Lslash Tcaron -110 +KPX Lslash Tcommaaccent -110 +KPX Lslash V -110 +KPX Lslash W -70 +KPX Lslash Y -140 +KPX Lslash Yacute -140 +KPX Lslash Ydieresis -140 +KPX Lslash quotedblright -140 +KPX Lslash quoteright -160 +KPX Lslash y -30 +KPX Lslash yacute -30 +KPX Lslash ydieresis -30 +KPX O A -20 +KPX O Aacute -20 +KPX O Abreve -20 +KPX O Acircumflex -20 +KPX O Adieresis -20 +KPX O Agrave -20 +KPX O Amacron -20 +KPX O Aogonek -20 +KPX O Aring -20 +KPX O Atilde -20 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -30 +KPX O X -60 +KPX O Y -70 +KPX O Yacute -70 +KPX O Ydieresis -70 +KPX O comma -40 +KPX O period -40 +KPX Oacute A -20 +KPX Oacute Aacute -20 +KPX Oacute Abreve -20 +KPX Oacute Acircumflex -20 +KPX Oacute Adieresis -20 +KPX Oacute Agrave -20 +KPX Oacute Amacron -20 +KPX Oacute Aogonek -20 +KPX Oacute Aring -20 +KPX Oacute Atilde -20 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -30 +KPX Oacute X -60 +KPX Oacute Y -70 +KPX Oacute Yacute -70 +KPX Oacute Ydieresis -70 +KPX Oacute comma -40 +KPX Oacute period -40 +KPX Ocircumflex A -20 +KPX Ocircumflex Aacute -20 +KPX Ocircumflex Abreve -20 +KPX Ocircumflex Acircumflex -20 +KPX Ocircumflex Adieresis -20 +KPX Ocircumflex Agrave -20 +KPX Ocircumflex Amacron -20 +KPX Ocircumflex Aogonek -20 +KPX Ocircumflex Aring -20 +KPX Ocircumflex Atilde -20 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -30 +KPX Ocircumflex X -60 +KPX Ocircumflex Y -70 +KPX Ocircumflex Yacute -70 +KPX Ocircumflex Ydieresis -70 +KPX Ocircumflex comma -40 +KPX Ocircumflex period -40 +KPX Odieresis A -20 +KPX Odieresis Aacute -20 +KPX Odieresis Abreve -20 +KPX Odieresis Acircumflex -20 +KPX Odieresis Adieresis -20 +KPX Odieresis Agrave -20 +KPX Odieresis Amacron -20 +KPX Odieresis Aogonek -20 +KPX Odieresis Aring -20 +KPX Odieresis Atilde -20 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -30 +KPX Odieresis X -60 +KPX Odieresis Y -70 +KPX Odieresis Yacute -70 +KPX Odieresis Ydieresis -70 +KPX Odieresis comma -40 +KPX Odieresis period -40 +KPX Ograve A -20 +KPX Ograve Aacute -20 +KPX Ograve Abreve -20 +KPX Ograve Acircumflex -20 +KPX Ograve Adieresis -20 +KPX Ograve Agrave -20 +KPX Ograve Amacron -20 +KPX Ograve Aogonek -20 +KPX Ograve Aring -20 +KPX Ograve Atilde -20 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -30 +KPX Ograve X -60 +KPX Ograve Y -70 +KPX Ograve Yacute -70 +KPX Ograve Ydieresis -70 +KPX Ograve comma -40 +KPX Ograve period -40 +KPX Ohungarumlaut A -20 +KPX Ohungarumlaut Aacute -20 +KPX Ohungarumlaut Abreve -20 +KPX Ohungarumlaut Acircumflex -20 +KPX Ohungarumlaut Adieresis -20 +KPX Ohungarumlaut Agrave -20 +KPX Ohungarumlaut Amacron -20 +KPX Ohungarumlaut Aogonek -20 +KPX Ohungarumlaut Aring -20 +KPX Ohungarumlaut Atilde -20 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -30 +KPX Ohungarumlaut X -60 +KPX Ohungarumlaut Y -70 +KPX Ohungarumlaut Yacute -70 +KPX Ohungarumlaut Ydieresis -70 +KPX Ohungarumlaut comma -40 +KPX Ohungarumlaut period -40 +KPX Omacron A -20 +KPX Omacron Aacute -20 +KPX Omacron Abreve -20 +KPX Omacron Acircumflex -20 +KPX Omacron Adieresis -20 +KPX Omacron Agrave -20 +KPX Omacron Amacron -20 +KPX Omacron Aogonek -20 +KPX Omacron Aring -20 +KPX Omacron Atilde -20 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -30 +KPX Omacron X -60 +KPX Omacron Y -70 +KPX Omacron Yacute -70 +KPX Omacron Ydieresis -70 +KPX Omacron comma -40 +KPX Omacron period -40 +KPX Oslash A -20 +KPX Oslash Aacute -20 +KPX Oslash Abreve -20 +KPX Oslash Acircumflex -20 +KPX Oslash Adieresis -20 +KPX Oslash Agrave -20 +KPX Oslash Amacron -20 +KPX Oslash Aogonek -20 +KPX Oslash Aring -20 +KPX Oslash Atilde -20 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -30 +KPX Oslash X -60 +KPX Oslash Y -70 +KPX Oslash Yacute -70 +KPX Oslash Ydieresis -70 +KPX Oslash comma -40 +KPX Oslash period -40 +KPX Otilde A -20 +KPX Otilde Aacute -20 +KPX Otilde Abreve -20 +KPX Otilde Acircumflex -20 +KPX Otilde Adieresis -20 +KPX Otilde Agrave -20 +KPX Otilde Amacron -20 +KPX Otilde Aogonek -20 +KPX Otilde Aring -20 +KPX Otilde Atilde -20 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -30 +KPX Otilde X -60 +KPX Otilde Y -70 +KPX Otilde Yacute -70 +KPX Otilde Ydieresis -70 +KPX Otilde comma -40 +KPX Otilde period -40 +KPX P A -120 +KPX P Aacute -120 +KPX P Abreve -120 +KPX P Acircumflex -120 +KPX P Adieresis -120 +KPX P Agrave -120 +KPX P Amacron -120 +KPX P Aogonek -120 +KPX P Aring -120 +KPX P Atilde -120 +KPX P a -40 +KPX P aacute -40 +KPX P abreve -40 +KPX P acircumflex -40 +KPX P adieresis -40 +KPX P agrave -40 +KPX P amacron -40 +KPX P aogonek -40 +KPX P aring -40 +KPX P atilde -40 +KPX P comma -180 +KPX P e -50 +KPX P eacute -50 +KPX P ecaron -50 +KPX P ecircumflex -50 +KPX P edieresis -50 +KPX P edotaccent -50 +KPX P egrave -50 +KPX P emacron -50 +KPX P eogonek -50 +KPX P o -50 +KPX P oacute -50 +KPX P ocircumflex -50 +KPX P odieresis -50 +KPX P ograve -50 +KPX P ohungarumlaut -50 +KPX P omacron -50 +KPX P oslash -50 +KPX P otilde -50 +KPX P period -180 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX R O -20 +KPX R Oacute -20 +KPX R Ocircumflex -20 +KPX R Odieresis -20 +KPX R Ograve -20 +KPX R Ohungarumlaut -20 +KPX R Omacron -20 +KPX R Oslash -20 +KPX R Otilde -20 +KPX R T -30 +KPX R Tcaron -30 +KPX R Tcommaaccent -30 +KPX R U -40 +KPX R Uacute -40 +KPX R Ucircumflex -40 +KPX R Udieresis -40 +KPX R Ugrave -40 +KPX R Uhungarumlaut -40 +KPX R Umacron -40 +KPX R Uogonek -40 +KPX R Uring -40 +KPX R V -50 +KPX R W -30 +KPX R Y -50 +KPX R Yacute -50 +KPX R Ydieresis -50 +KPX Racute O -20 +KPX Racute Oacute -20 +KPX Racute Ocircumflex -20 +KPX Racute Odieresis -20 +KPX Racute Ograve -20 +KPX Racute Ohungarumlaut -20 +KPX Racute Omacron -20 +KPX Racute Oslash -20 +KPX Racute Otilde -20 +KPX Racute T -30 +KPX Racute Tcaron -30 +KPX Racute Tcommaaccent -30 +KPX Racute U -40 +KPX Racute Uacute -40 +KPX Racute Ucircumflex -40 +KPX Racute Udieresis -40 +KPX Racute Ugrave -40 +KPX Racute Uhungarumlaut -40 +KPX Racute Umacron -40 +KPX Racute Uogonek -40 +KPX Racute Uring -40 +KPX Racute V -50 +KPX Racute W -30 +KPX Racute Y -50 +KPX Racute Yacute -50 +KPX Racute Ydieresis -50 +KPX Rcaron O -20 +KPX Rcaron Oacute -20 +KPX Rcaron Ocircumflex -20 +KPX Rcaron Odieresis -20 +KPX Rcaron Ograve -20 +KPX Rcaron Ohungarumlaut -20 +KPX Rcaron Omacron -20 +KPX Rcaron Oslash -20 +KPX Rcaron Otilde -20 +KPX Rcaron T -30 +KPX Rcaron Tcaron -30 +KPX Rcaron Tcommaaccent -30 +KPX Rcaron U -40 +KPX Rcaron Uacute -40 +KPX Rcaron Ucircumflex -40 +KPX Rcaron Udieresis -40 +KPX Rcaron Ugrave -40 +KPX Rcaron Uhungarumlaut -40 +KPX Rcaron Umacron -40 +KPX Rcaron Uogonek -40 +KPX Rcaron Uring -40 +KPX Rcaron V -50 +KPX Rcaron W -30 +KPX Rcaron Y -50 +KPX Rcaron Yacute -50 +KPX Rcaron Ydieresis -50 +KPX Rcommaaccent O -20 +KPX Rcommaaccent Oacute -20 +KPX Rcommaaccent Ocircumflex -20 +KPX Rcommaaccent Odieresis -20 +KPX Rcommaaccent Ograve -20 +KPX Rcommaaccent Ohungarumlaut -20 +KPX Rcommaaccent Omacron -20 +KPX Rcommaaccent Oslash -20 +KPX Rcommaaccent Otilde -20 +KPX Rcommaaccent T -30 +KPX Rcommaaccent Tcaron -30 +KPX Rcommaaccent Tcommaaccent -30 +KPX Rcommaaccent U -40 +KPX Rcommaaccent Uacute -40 +KPX Rcommaaccent Ucircumflex -40 +KPX Rcommaaccent Udieresis -40 +KPX Rcommaaccent Ugrave -40 +KPX Rcommaaccent Uhungarumlaut -40 +KPX Rcommaaccent Umacron -40 +KPX Rcommaaccent Uogonek -40 +KPX Rcommaaccent Uring -40 +KPX Rcommaaccent V -50 +KPX Rcommaaccent W -30 +KPX Rcommaaccent Y -50 +KPX Rcommaaccent Yacute -50 +KPX Rcommaaccent Ydieresis -50 +KPX S comma -20 +KPX S period -20 +KPX Sacute comma -20 +KPX Sacute period -20 +KPX Scaron comma -20 +KPX Scaron period -20 +KPX Scedilla comma -20 +KPX Scedilla period -20 +KPX Scommaaccent comma -20 +KPX Scommaaccent period -20 +KPX T A -120 +KPX T Aacute -120 +KPX T Abreve -120 +KPX T Acircumflex -120 +KPX T Adieresis -120 +KPX T Agrave -120 +KPX T Amacron -120 +KPX T Aogonek -120 +KPX T Aring -120 +KPX T Atilde -120 +KPX T O -40 +KPX T Oacute -40 +KPX T Ocircumflex -40 +KPX T Odieresis -40 +KPX T Ograve -40 +KPX T Ohungarumlaut -40 +KPX T Omacron -40 +KPX T Oslash -40 +KPX T Otilde -40 +KPX T a -120 +KPX T aacute -120 +KPX T abreve -60 +KPX T acircumflex -120 +KPX T adieresis -120 +KPX T agrave -120 +KPX T amacron -60 +KPX T aogonek -120 +KPX T aring -120 +KPX T atilde -60 +KPX T colon -20 +KPX T comma -120 +KPX T e -120 +KPX T eacute -120 +KPX T ecaron -120 +KPX T ecircumflex -120 +KPX T edieresis -120 +KPX T edotaccent -120 +KPX T egrave -60 +KPX T emacron -60 +KPX T eogonek -120 +KPX T hyphen -140 +KPX T o -120 +KPX T oacute -120 +KPX T ocircumflex -120 +KPX T odieresis -120 +KPX T ograve -120 +KPX T ohungarumlaut -120 +KPX T omacron -60 +KPX T oslash -120 +KPX T otilde -60 +KPX T period -120 +KPX T r -120 +KPX T racute -120 +KPX T rcaron -120 +KPX T rcommaaccent -120 +KPX T semicolon -20 +KPX T u -120 +KPX T uacute -120 +KPX T ucircumflex -120 +KPX T udieresis -120 +KPX T ugrave -120 +KPX T uhungarumlaut -120 +KPX T umacron -60 +KPX T uogonek -120 +KPX T uring -120 +KPX T w -120 +KPX T y -120 +KPX T yacute -120 +KPX T ydieresis -60 +KPX Tcaron A -120 +KPX Tcaron Aacute -120 +KPX Tcaron Abreve -120 +KPX Tcaron Acircumflex -120 +KPX Tcaron Adieresis -120 +KPX Tcaron Agrave -120 +KPX Tcaron Amacron -120 +KPX Tcaron Aogonek -120 +KPX Tcaron Aring -120 +KPX Tcaron Atilde -120 +KPX Tcaron O -40 +KPX Tcaron Oacute -40 +KPX Tcaron Ocircumflex -40 +KPX Tcaron Odieresis -40 +KPX Tcaron Ograve -40 +KPX Tcaron Ohungarumlaut -40 +KPX Tcaron Omacron -40 +KPX Tcaron Oslash -40 +KPX Tcaron Otilde -40 +KPX Tcaron a -120 +KPX Tcaron aacute -120 +KPX Tcaron abreve -60 +KPX Tcaron acircumflex -120 +KPX Tcaron adieresis -120 +KPX Tcaron agrave -120 +KPX Tcaron amacron -60 +KPX Tcaron aogonek -120 +KPX Tcaron aring -120 +KPX Tcaron atilde -60 +KPX Tcaron colon -20 +KPX Tcaron comma -120 +KPX Tcaron e -120 +KPX Tcaron eacute -120 +KPX Tcaron ecaron -120 +KPX Tcaron ecircumflex -120 +KPX Tcaron edieresis -120 +KPX Tcaron edotaccent -120 +KPX Tcaron egrave -60 +KPX Tcaron emacron -60 +KPX Tcaron eogonek -120 +KPX Tcaron hyphen -140 +KPX Tcaron o -120 +KPX Tcaron oacute -120 +KPX Tcaron ocircumflex -120 +KPX Tcaron odieresis -120 +KPX Tcaron ograve -120 +KPX Tcaron ohungarumlaut -120 +KPX Tcaron omacron -60 +KPX Tcaron oslash -120 +KPX Tcaron otilde -60 +KPX Tcaron period -120 +KPX Tcaron r -120 +KPX Tcaron racute -120 +KPX Tcaron rcaron -120 +KPX Tcaron rcommaaccent -120 +KPX Tcaron semicolon -20 +KPX Tcaron u -120 +KPX Tcaron uacute -120 +KPX Tcaron ucircumflex -120 +KPX Tcaron udieresis -120 +KPX Tcaron ugrave -120 +KPX Tcaron uhungarumlaut -120 +KPX Tcaron umacron -60 +KPX Tcaron uogonek -120 +KPX Tcaron uring -120 +KPX Tcaron w -120 +KPX Tcaron y -120 +KPX Tcaron yacute -120 +KPX Tcaron ydieresis -60 +KPX Tcommaaccent A -120 +KPX Tcommaaccent Aacute -120 +KPX Tcommaaccent Abreve -120 +KPX Tcommaaccent Acircumflex -120 +KPX Tcommaaccent Adieresis -120 +KPX Tcommaaccent Agrave -120 +KPX Tcommaaccent Amacron -120 +KPX Tcommaaccent Aogonek -120 +KPX Tcommaaccent Aring -120 +KPX Tcommaaccent Atilde -120 +KPX Tcommaaccent O -40 +KPX Tcommaaccent Oacute -40 +KPX Tcommaaccent Ocircumflex -40 +KPX Tcommaaccent Odieresis -40 +KPX Tcommaaccent Ograve -40 +KPX Tcommaaccent Ohungarumlaut -40 +KPX Tcommaaccent Omacron -40 +KPX Tcommaaccent Oslash -40 +KPX Tcommaaccent Otilde -40 +KPX Tcommaaccent a -120 +KPX Tcommaaccent aacute -120 +KPX Tcommaaccent abreve -60 +KPX Tcommaaccent acircumflex -120 +KPX Tcommaaccent adieresis -120 +KPX Tcommaaccent agrave -120 +KPX Tcommaaccent amacron -60 +KPX Tcommaaccent aogonek -120 +KPX Tcommaaccent aring -120 +KPX Tcommaaccent atilde -60 +KPX Tcommaaccent colon -20 +KPX Tcommaaccent comma -120 +KPX Tcommaaccent e -120 +KPX Tcommaaccent eacute -120 +KPX Tcommaaccent ecaron -120 +KPX Tcommaaccent ecircumflex -120 +KPX Tcommaaccent edieresis -120 +KPX Tcommaaccent edotaccent -120 +KPX Tcommaaccent egrave -60 +KPX Tcommaaccent emacron -60 +KPX Tcommaaccent eogonek -120 +KPX Tcommaaccent hyphen -140 +KPX Tcommaaccent o -120 +KPX Tcommaaccent oacute -120 +KPX Tcommaaccent ocircumflex -120 +KPX Tcommaaccent odieresis -120 +KPX Tcommaaccent ograve -120 +KPX Tcommaaccent ohungarumlaut -120 +KPX Tcommaaccent omacron -60 +KPX Tcommaaccent oslash -120 +KPX Tcommaaccent otilde -60 +KPX Tcommaaccent period -120 +KPX Tcommaaccent r -120 +KPX Tcommaaccent racute -120 +KPX Tcommaaccent rcaron -120 +KPX Tcommaaccent rcommaaccent -120 +KPX Tcommaaccent semicolon -20 +KPX Tcommaaccent u -120 +KPX Tcommaaccent uacute -120 +KPX Tcommaaccent ucircumflex -120 +KPX Tcommaaccent udieresis -120 +KPX Tcommaaccent ugrave -120 +KPX Tcommaaccent uhungarumlaut -120 +KPX Tcommaaccent umacron -60 +KPX Tcommaaccent uogonek -120 +KPX Tcommaaccent uring -120 +KPX Tcommaaccent w -120 +KPX Tcommaaccent y -120 +KPX Tcommaaccent yacute -120 +KPX Tcommaaccent ydieresis -60 +KPX U A -40 +KPX U Aacute -40 +KPX U Abreve -40 +KPX U Acircumflex -40 +KPX U Adieresis -40 +KPX U Agrave -40 +KPX U Amacron -40 +KPX U Aogonek -40 +KPX U Aring -40 +KPX U Atilde -40 +KPX U comma -40 +KPX U period -40 +KPX Uacute A -40 +KPX Uacute Aacute -40 +KPX Uacute Abreve -40 +KPX Uacute Acircumflex -40 +KPX Uacute Adieresis -40 +KPX Uacute Agrave -40 +KPX Uacute Amacron -40 +KPX Uacute Aogonek -40 +KPX Uacute Aring -40 +KPX Uacute Atilde -40 +KPX Uacute comma -40 +KPX Uacute period -40 +KPX Ucircumflex A -40 +KPX Ucircumflex Aacute -40 +KPX Ucircumflex Abreve -40 +KPX Ucircumflex Acircumflex -40 +KPX Ucircumflex Adieresis -40 +KPX Ucircumflex Agrave -40 +KPX Ucircumflex Amacron -40 +KPX Ucircumflex Aogonek -40 +KPX Ucircumflex Aring -40 +KPX Ucircumflex Atilde -40 +KPX Ucircumflex comma -40 +KPX Ucircumflex period -40 +KPX Udieresis A -40 +KPX Udieresis Aacute -40 +KPX Udieresis Abreve -40 +KPX Udieresis Acircumflex -40 +KPX Udieresis Adieresis -40 +KPX Udieresis Agrave -40 +KPX Udieresis Amacron -40 +KPX Udieresis Aogonek -40 +KPX Udieresis Aring -40 +KPX Udieresis Atilde -40 +KPX Udieresis comma -40 +KPX Udieresis period -40 +KPX Ugrave A -40 +KPX Ugrave Aacute -40 +KPX Ugrave Abreve -40 +KPX Ugrave Acircumflex -40 +KPX Ugrave Adieresis -40 +KPX Ugrave Agrave -40 +KPX Ugrave Amacron -40 +KPX Ugrave Aogonek -40 +KPX Ugrave Aring -40 +KPX Ugrave Atilde -40 +KPX Ugrave comma -40 +KPX Ugrave period -40 +KPX Uhungarumlaut A -40 +KPX Uhungarumlaut Aacute -40 +KPX Uhungarumlaut Abreve -40 +KPX Uhungarumlaut Acircumflex -40 +KPX Uhungarumlaut Adieresis -40 +KPX Uhungarumlaut Agrave -40 +KPX Uhungarumlaut Amacron -40 +KPX Uhungarumlaut Aogonek -40 +KPX Uhungarumlaut Aring -40 +KPX Uhungarumlaut Atilde -40 +KPX Uhungarumlaut comma -40 +KPX Uhungarumlaut period -40 +KPX Umacron A -40 +KPX Umacron Aacute -40 +KPX Umacron Abreve -40 +KPX Umacron Acircumflex -40 +KPX Umacron Adieresis -40 +KPX Umacron Agrave -40 +KPX Umacron Amacron -40 +KPX Umacron Aogonek -40 +KPX Umacron Aring -40 +KPX Umacron Atilde -40 +KPX Umacron comma -40 +KPX Umacron period -40 +KPX Uogonek A -40 +KPX Uogonek Aacute -40 +KPX Uogonek Abreve -40 +KPX Uogonek Acircumflex -40 +KPX Uogonek Adieresis -40 +KPX Uogonek Agrave -40 +KPX Uogonek Amacron -40 +KPX Uogonek Aogonek -40 +KPX Uogonek Aring -40 +KPX Uogonek Atilde -40 +KPX Uogonek comma -40 +KPX Uogonek period -40 +KPX Uring A -40 +KPX Uring Aacute -40 +KPX Uring Abreve -40 +KPX Uring Acircumflex -40 +KPX Uring Adieresis -40 +KPX Uring Agrave -40 +KPX Uring Amacron -40 +KPX Uring Aogonek -40 +KPX Uring Aring -40 +KPX Uring Atilde -40 +KPX Uring comma -40 +KPX Uring period -40 +KPX V A -80 +KPX V Aacute -80 +KPX V Abreve -80 +KPX V Acircumflex -80 +KPX V Adieresis -80 +KPX V Agrave -80 +KPX V Amacron -80 +KPX V Aogonek -80 +KPX V Aring -80 +KPX V Atilde -80 +KPX V G -40 +KPX V Gbreve -40 +KPX V Gcommaaccent -40 +KPX V O -40 +KPX V Oacute -40 +KPX V Ocircumflex -40 +KPX V Odieresis -40 +KPX V Ograve -40 +KPX V Ohungarumlaut -40 +KPX V Omacron -40 +KPX V Oslash -40 +KPX V Otilde -40 +KPX V a -70 +KPX V aacute -70 +KPX V abreve -70 +KPX V acircumflex -70 +KPX V adieresis -70 +KPX V agrave -70 +KPX V amacron -70 +KPX V aogonek -70 +KPX V aring -70 +KPX V atilde -70 +KPX V colon -40 +KPX V comma -125 +KPX V e -80 +KPX V eacute -80 +KPX V ecaron -80 +KPX V ecircumflex -80 +KPX V edieresis -80 +KPX V edotaccent -80 +KPX V egrave -80 +KPX V emacron -80 +KPX V eogonek -80 +KPX V hyphen -80 +KPX V o -80 +KPX V oacute -80 +KPX V ocircumflex -80 +KPX V odieresis -80 +KPX V ograve -80 +KPX V ohungarumlaut -80 +KPX V omacron -80 +KPX V oslash -80 +KPX V otilde -80 +KPX V period -125 +KPX V semicolon -40 +KPX V u -70 +KPX V uacute -70 +KPX V ucircumflex -70 +KPX V udieresis -70 +KPX V ugrave -70 +KPX V uhungarumlaut -70 +KPX V umacron -70 +KPX V uogonek -70 +KPX V uring -70 +KPX W A -50 +KPX W Aacute -50 +KPX W Abreve -50 +KPX W Acircumflex -50 +KPX W Adieresis -50 +KPX W Agrave -50 +KPX W Amacron -50 +KPX W Aogonek -50 +KPX W Aring -50 +KPX W Atilde -50 +KPX W O -20 +KPX W Oacute -20 +KPX W Ocircumflex -20 +KPX W Odieresis -20 +KPX W Ograve -20 +KPX W Ohungarumlaut -20 +KPX W Omacron -20 +KPX W Oslash -20 +KPX W Otilde -20 +KPX W a -40 +KPX W aacute -40 +KPX W abreve -40 +KPX W acircumflex -40 +KPX W adieresis -40 +KPX W agrave -40 +KPX W amacron -40 +KPX W aogonek -40 +KPX W aring -40 +KPX W atilde -40 +KPX W comma -80 +KPX W e -30 +KPX W eacute -30 +KPX W ecaron -30 +KPX W ecircumflex -30 +KPX W edieresis -30 +KPX W edotaccent -30 +KPX W egrave -30 +KPX W emacron -30 +KPX W eogonek -30 +KPX W hyphen -40 +KPX W o -30 +KPX W oacute -30 +KPX W ocircumflex -30 +KPX W odieresis -30 +KPX W ograve -30 +KPX W ohungarumlaut -30 +KPX W omacron -30 +KPX W oslash -30 +KPX W otilde -30 +KPX W period -80 +KPX W u -30 +KPX W uacute -30 +KPX W ucircumflex -30 +KPX W udieresis -30 +KPX W ugrave -30 +KPX W uhungarumlaut -30 +KPX W umacron -30 +KPX W uogonek -30 +KPX W uring -30 +KPX W y -20 +KPX W yacute -20 +KPX W ydieresis -20 +KPX Y A -110 +KPX Y Aacute -110 +KPX Y Abreve -110 +KPX Y Acircumflex -110 +KPX Y Adieresis -110 +KPX Y Agrave -110 +KPX Y Amacron -110 +KPX Y Aogonek -110 +KPX Y Aring -110 +KPX Y Atilde -110 +KPX Y O -85 +KPX Y Oacute -85 +KPX Y Ocircumflex -85 +KPX Y Odieresis -85 +KPX Y Ograve -85 +KPX Y Ohungarumlaut -85 +KPX Y Omacron -85 +KPX Y Oslash -85 +KPX Y Otilde -85 +KPX Y a -140 +KPX Y aacute -140 +KPX Y abreve -70 +KPX Y acircumflex -140 +KPX Y adieresis -140 +KPX Y agrave -140 +KPX Y amacron -70 +KPX Y aogonek -140 +KPX Y aring -140 +KPX Y atilde -140 +KPX Y colon -60 +KPX Y comma -140 +KPX Y e -140 +KPX Y eacute -140 +KPX Y ecaron -140 +KPX Y ecircumflex -140 +KPX Y edieresis -140 +KPX Y edotaccent -140 +KPX Y egrave -140 +KPX Y emacron -70 +KPX Y eogonek -140 +KPX Y hyphen -140 +KPX Y i -20 +KPX Y iacute -20 +KPX Y iogonek -20 +KPX Y o -140 +KPX Y oacute -140 +KPX Y ocircumflex -140 +KPX Y odieresis -140 +KPX Y ograve -140 +KPX Y ohungarumlaut -140 +KPX Y omacron -140 +KPX Y oslash -140 +KPX Y otilde -140 +KPX Y period -140 +KPX Y semicolon -60 +KPX Y u -110 +KPX Y uacute -110 +KPX Y ucircumflex -110 +KPX Y udieresis -110 +KPX Y ugrave -110 +KPX Y uhungarumlaut -110 +KPX Y umacron -110 +KPX Y uogonek -110 +KPX Y uring -110 +KPX Yacute A -110 +KPX Yacute Aacute -110 +KPX Yacute Abreve -110 +KPX Yacute Acircumflex -110 +KPX Yacute Adieresis -110 +KPX Yacute Agrave -110 +KPX Yacute Amacron -110 +KPX Yacute Aogonek -110 +KPX Yacute Aring -110 +KPX Yacute Atilde -110 +KPX Yacute O -85 +KPX Yacute Oacute -85 +KPX Yacute Ocircumflex -85 +KPX Yacute Odieresis -85 +KPX Yacute Ograve -85 +KPX Yacute Ohungarumlaut -85 +KPX Yacute Omacron -85 +KPX Yacute Oslash -85 +KPX Yacute Otilde -85 +KPX Yacute a -140 +KPX Yacute aacute -140 +KPX Yacute abreve -70 +KPX Yacute acircumflex -140 +KPX Yacute adieresis -140 +KPX Yacute agrave -140 +KPX Yacute amacron -70 +KPX Yacute aogonek -140 +KPX Yacute aring -140 +KPX Yacute atilde -70 +KPX Yacute colon -60 +KPX Yacute comma -140 +KPX Yacute e -140 +KPX Yacute eacute -140 +KPX Yacute ecaron -140 +KPX Yacute ecircumflex -140 +KPX Yacute edieresis -140 +KPX Yacute edotaccent -140 +KPX Yacute egrave -140 +KPX Yacute emacron -70 +KPX Yacute eogonek -140 +KPX Yacute hyphen -140 +KPX Yacute i -20 +KPX Yacute iacute -20 +KPX Yacute iogonek -20 +KPX Yacute o -140 +KPX Yacute oacute -140 +KPX Yacute ocircumflex -140 +KPX Yacute odieresis -140 +KPX Yacute ograve -140 +KPX Yacute ohungarumlaut -140 +KPX Yacute omacron -70 +KPX Yacute oslash -140 +KPX Yacute otilde -140 +KPX Yacute period -140 +KPX Yacute semicolon -60 +KPX Yacute u -110 +KPX Yacute uacute -110 +KPX Yacute ucircumflex -110 +KPX Yacute udieresis -110 +KPX Yacute ugrave -110 +KPX Yacute uhungarumlaut -110 +KPX Yacute umacron -110 +KPX Yacute uogonek -110 +KPX Yacute uring -110 +KPX Ydieresis A -110 +KPX Ydieresis Aacute -110 +KPX Ydieresis Abreve -110 +KPX Ydieresis Acircumflex -110 +KPX Ydieresis Adieresis -110 +KPX Ydieresis Agrave -110 +KPX Ydieresis Amacron -110 +KPX Ydieresis Aogonek -110 +KPX Ydieresis Aring -110 +KPX Ydieresis Atilde -110 +KPX Ydieresis O -85 +KPX Ydieresis Oacute -85 +KPX Ydieresis Ocircumflex -85 +KPX Ydieresis Odieresis -85 +KPX Ydieresis Ograve -85 +KPX Ydieresis Ohungarumlaut -85 +KPX Ydieresis Omacron -85 +KPX Ydieresis Oslash -85 +KPX Ydieresis Otilde -85 +KPX Ydieresis a -140 +KPX Ydieresis aacute -140 +KPX Ydieresis abreve -70 +KPX Ydieresis acircumflex -140 +KPX Ydieresis adieresis -140 +KPX Ydieresis agrave -140 +KPX Ydieresis amacron -70 +KPX Ydieresis aogonek -140 +KPX Ydieresis aring -140 +KPX Ydieresis atilde -70 +KPX Ydieresis colon -60 +KPX Ydieresis comma -140 +KPX Ydieresis e -140 +KPX Ydieresis eacute -140 +KPX Ydieresis ecaron -140 +KPX Ydieresis ecircumflex -140 +KPX Ydieresis edieresis -140 +KPX Ydieresis edotaccent -140 +KPX Ydieresis egrave -140 +KPX Ydieresis emacron -70 +KPX Ydieresis eogonek -140 +KPX Ydieresis hyphen -140 +KPX Ydieresis i -20 +KPX Ydieresis iacute -20 +KPX Ydieresis iogonek -20 +KPX Ydieresis o -140 +KPX Ydieresis oacute -140 +KPX Ydieresis ocircumflex -140 +KPX Ydieresis odieresis -140 +KPX Ydieresis ograve -140 +KPX Ydieresis ohungarumlaut -140 +KPX Ydieresis omacron -140 +KPX Ydieresis oslash -140 +KPX Ydieresis otilde -140 +KPX Ydieresis period -140 +KPX Ydieresis semicolon -60 +KPX Ydieresis u -110 +KPX Ydieresis uacute -110 +KPX Ydieresis ucircumflex -110 +KPX Ydieresis udieresis -110 +KPX Ydieresis ugrave -110 +KPX Ydieresis uhungarumlaut -110 +KPX Ydieresis umacron -110 +KPX Ydieresis uogonek -110 +KPX Ydieresis uring -110 +KPX a v -20 +KPX a w -20 +KPX a y -30 +KPX a yacute -30 +KPX a ydieresis -30 +KPX aacute v -20 +KPX aacute w -20 +KPX aacute y -30 +KPX aacute yacute -30 +KPX aacute ydieresis -30 +KPX abreve v -20 +KPX abreve w -20 +KPX abreve y -30 +KPX abreve yacute -30 +KPX abreve ydieresis -30 +KPX acircumflex v -20 +KPX acircumflex w -20 +KPX acircumflex y -30 +KPX acircumflex yacute -30 +KPX acircumflex ydieresis -30 +KPX adieresis v -20 +KPX adieresis w -20 +KPX adieresis y -30 +KPX adieresis yacute -30 +KPX adieresis ydieresis -30 +KPX agrave v -20 +KPX agrave w -20 +KPX agrave y -30 +KPX agrave yacute -30 +KPX agrave ydieresis -30 +KPX amacron v -20 +KPX amacron w -20 +KPX amacron y -30 +KPX amacron yacute -30 +KPX amacron ydieresis -30 +KPX aogonek v -20 +KPX aogonek w -20 +KPX aogonek y -30 +KPX aogonek yacute -30 +KPX aogonek ydieresis -30 +KPX aring v -20 +KPX aring w -20 +KPX aring y -30 +KPX aring yacute -30 +KPX aring ydieresis -30 +KPX atilde v -20 +KPX atilde w -20 +KPX atilde y -30 +KPX atilde yacute -30 +KPX atilde ydieresis -30 +KPX b b -10 +KPX b comma -40 +KPX b l -20 +KPX b lacute -20 +KPX b lcommaaccent -20 +KPX b lslash -20 +KPX b period -40 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX b v -20 +KPX b y -20 +KPX b yacute -20 +KPX b ydieresis -20 +KPX c comma -15 +KPX c k -20 +KPX c kcommaaccent -20 +KPX cacute comma -15 +KPX cacute k -20 +KPX cacute kcommaaccent -20 +KPX ccaron comma -15 +KPX ccaron k -20 +KPX ccaron kcommaaccent -20 +KPX ccedilla comma -15 +KPX ccedilla k -20 +KPX ccedilla kcommaaccent -20 +KPX colon space -50 +KPX comma quotedblright -100 +KPX comma quoteright -100 +KPX e comma -15 +KPX e period -15 +KPX e v -30 +KPX e w -20 +KPX e x -30 +KPX e y -20 +KPX e yacute -20 +KPX e ydieresis -20 +KPX eacute comma -15 +KPX eacute period -15 +KPX eacute v -30 +KPX eacute w -20 +KPX eacute x -30 +KPX eacute y -20 +KPX eacute yacute -20 +KPX eacute ydieresis -20 +KPX ecaron comma -15 +KPX ecaron period -15 +KPX ecaron v -30 +KPX ecaron w -20 +KPX ecaron x -30 +KPX ecaron y -20 +KPX ecaron yacute -20 +KPX ecaron ydieresis -20 +KPX ecircumflex comma -15 +KPX ecircumflex period -15 +KPX ecircumflex v -30 +KPX ecircumflex w -20 +KPX ecircumflex x -30 +KPX ecircumflex y -20 +KPX ecircumflex yacute -20 +KPX ecircumflex ydieresis -20 +KPX edieresis comma -15 +KPX edieresis period -15 +KPX edieresis v -30 +KPX edieresis w -20 +KPX edieresis x -30 +KPX edieresis y -20 +KPX edieresis yacute -20 +KPX edieresis ydieresis -20 +KPX edotaccent comma -15 +KPX edotaccent period -15 +KPX edotaccent v -30 +KPX edotaccent w -20 +KPX edotaccent x -30 +KPX edotaccent y -20 +KPX edotaccent yacute -20 +KPX edotaccent ydieresis -20 +KPX egrave comma -15 +KPX egrave period -15 +KPX egrave v -30 +KPX egrave w -20 +KPX egrave x -30 +KPX egrave y -20 +KPX egrave yacute -20 +KPX egrave ydieresis -20 +KPX emacron comma -15 +KPX emacron period -15 +KPX emacron v -30 +KPX emacron w -20 +KPX emacron x -30 +KPX emacron y -20 +KPX emacron yacute -20 +KPX emacron ydieresis -20 +KPX eogonek comma -15 +KPX eogonek period -15 +KPX eogonek v -30 +KPX eogonek w -20 +KPX eogonek x -30 +KPX eogonek y -20 +KPX eogonek yacute -20 +KPX eogonek ydieresis -20 +KPX f a -30 +KPX f aacute -30 +KPX f abreve -30 +KPX f acircumflex -30 +KPX f adieresis -30 +KPX f agrave -30 +KPX f amacron -30 +KPX f aogonek -30 +KPX f aring -30 +KPX f atilde -30 +KPX f comma -30 +KPX f dotlessi -28 +KPX f e -30 +KPX f eacute -30 +KPX f ecaron -30 +KPX f ecircumflex -30 +KPX f edieresis -30 +KPX f edotaccent -30 +KPX f egrave -30 +KPX f emacron -30 +KPX f eogonek -30 +KPX f o -30 +KPX f oacute -30 +KPX f ocircumflex -30 +KPX f odieresis -30 +KPX f ograve -30 +KPX f ohungarumlaut -30 +KPX f omacron -30 +KPX f oslash -30 +KPX f otilde -30 +KPX f period -30 +KPX f quotedblright 60 +KPX f quoteright 50 +KPX g r -10 +KPX g racute -10 +KPX g rcaron -10 +KPX g rcommaaccent -10 +KPX gbreve r -10 +KPX gbreve racute -10 +KPX gbreve rcaron -10 +KPX gbreve rcommaaccent -10 +KPX gcommaaccent r -10 +KPX gcommaaccent racute -10 +KPX gcommaaccent rcaron -10 +KPX gcommaaccent rcommaaccent -10 +KPX h y -30 +KPX h yacute -30 +KPX h ydieresis -30 +KPX k e -20 +KPX k eacute -20 +KPX k ecaron -20 +KPX k ecircumflex -20 +KPX k edieresis -20 +KPX k edotaccent -20 +KPX k egrave -20 +KPX k emacron -20 +KPX k eogonek -20 +KPX k o -20 +KPX k oacute -20 +KPX k ocircumflex -20 +KPX k odieresis -20 +KPX k ograve -20 +KPX k ohungarumlaut -20 +KPX k omacron -20 +KPX k oslash -20 +KPX k otilde -20 +KPX kcommaaccent e -20 +KPX kcommaaccent eacute -20 +KPX kcommaaccent ecaron -20 +KPX kcommaaccent ecircumflex -20 +KPX kcommaaccent edieresis -20 +KPX kcommaaccent edotaccent -20 +KPX kcommaaccent egrave -20 +KPX kcommaaccent emacron -20 +KPX kcommaaccent eogonek -20 +KPX kcommaaccent o -20 +KPX kcommaaccent oacute -20 +KPX kcommaaccent ocircumflex -20 +KPX kcommaaccent odieresis -20 +KPX kcommaaccent ograve -20 +KPX kcommaaccent ohungarumlaut -20 +KPX kcommaaccent omacron -20 +KPX kcommaaccent oslash -20 +KPX kcommaaccent otilde -20 +KPX m u -10 +KPX m uacute -10 +KPX m ucircumflex -10 +KPX m udieresis -10 +KPX m ugrave -10 +KPX m uhungarumlaut -10 +KPX m umacron -10 +KPX m uogonek -10 +KPX m uring -10 +KPX m y -15 +KPX m yacute -15 +KPX m ydieresis -15 +KPX n u -10 +KPX n uacute -10 +KPX n ucircumflex -10 +KPX n udieresis -10 +KPX n ugrave -10 +KPX n uhungarumlaut -10 +KPX n umacron -10 +KPX n uogonek -10 +KPX n uring -10 +KPX n v -20 +KPX n y -15 +KPX n yacute -15 +KPX n ydieresis -15 +KPX nacute u -10 +KPX nacute uacute -10 +KPX nacute ucircumflex -10 +KPX nacute udieresis -10 +KPX nacute ugrave -10 +KPX nacute uhungarumlaut -10 +KPX nacute umacron -10 +KPX nacute uogonek -10 +KPX nacute uring -10 +KPX nacute v -20 +KPX nacute y -15 +KPX nacute yacute -15 +KPX nacute ydieresis -15 +KPX ncaron u -10 +KPX ncaron uacute -10 +KPX ncaron ucircumflex -10 +KPX ncaron udieresis -10 +KPX ncaron ugrave -10 +KPX ncaron uhungarumlaut -10 +KPX ncaron umacron -10 +KPX ncaron uogonek -10 +KPX ncaron uring -10 +KPX ncaron v -20 +KPX ncaron y -15 +KPX ncaron yacute -15 +KPX ncaron ydieresis -15 +KPX ncommaaccent u -10 +KPX ncommaaccent uacute -10 +KPX ncommaaccent ucircumflex -10 +KPX ncommaaccent udieresis -10 +KPX ncommaaccent ugrave -10 +KPX ncommaaccent uhungarumlaut -10 +KPX ncommaaccent umacron -10 +KPX ncommaaccent uogonek -10 +KPX ncommaaccent uring -10 +KPX ncommaaccent v -20 +KPX ncommaaccent y -15 +KPX ncommaaccent yacute -15 +KPX ncommaaccent ydieresis -15 +KPX ntilde u -10 +KPX ntilde uacute -10 +KPX ntilde ucircumflex -10 +KPX ntilde udieresis -10 +KPX ntilde ugrave -10 +KPX ntilde uhungarumlaut -10 +KPX ntilde umacron -10 +KPX ntilde uogonek -10 +KPX ntilde uring -10 +KPX ntilde v -20 +KPX ntilde y -15 +KPX ntilde yacute -15 +KPX ntilde ydieresis -15 +KPX o comma -40 +KPX o period -40 +KPX o v -15 +KPX o w -15 +KPX o x -30 +KPX o y -30 +KPX o yacute -30 +KPX o ydieresis -30 +KPX oacute comma -40 +KPX oacute period -40 +KPX oacute v -15 +KPX oacute w -15 +KPX oacute x -30 +KPX oacute y -30 +KPX oacute yacute -30 +KPX oacute ydieresis -30 +KPX ocircumflex comma -40 +KPX ocircumflex period -40 +KPX ocircumflex v -15 +KPX ocircumflex w -15 +KPX ocircumflex x -30 +KPX ocircumflex y -30 +KPX ocircumflex yacute -30 +KPX ocircumflex ydieresis -30 +KPX odieresis comma -40 +KPX odieresis period -40 +KPX odieresis v -15 +KPX odieresis w -15 +KPX odieresis x -30 +KPX odieresis y -30 +KPX odieresis yacute -30 +KPX odieresis ydieresis -30 +KPX ograve comma -40 +KPX ograve period -40 +KPX ograve v -15 +KPX ograve w -15 +KPX ograve x -30 +KPX ograve y -30 +KPX ograve yacute -30 +KPX ograve ydieresis -30 +KPX ohungarumlaut comma -40 +KPX ohungarumlaut period -40 +KPX ohungarumlaut v -15 +KPX ohungarumlaut w -15 +KPX ohungarumlaut x -30 +KPX ohungarumlaut y -30 +KPX ohungarumlaut yacute -30 +KPX ohungarumlaut ydieresis -30 +KPX omacron comma -40 +KPX omacron period -40 +KPX omacron v -15 +KPX omacron w -15 +KPX omacron x -30 +KPX omacron y -30 +KPX omacron yacute -30 +KPX omacron ydieresis -30 +KPX oslash a -55 +KPX oslash aacute -55 +KPX oslash abreve -55 +KPX oslash acircumflex -55 +KPX oslash adieresis -55 +KPX oslash agrave -55 +KPX oslash amacron -55 +KPX oslash aogonek -55 +KPX oslash aring -55 +KPX oslash atilde -55 +KPX oslash b -55 +KPX oslash c -55 +KPX oslash cacute -55 +KPX oslash ccaron -55 +KPX oslash ccedilla -55 +KPX oslash comma -95 +KPX oslash d -55 +KPX oslash dcroat -55 +KPX oslash e -55 +KPX oslash eacute -55 +KPX oslash ecaron -55 +KPX oslash ecircumflex -55 +KPX oslash edieresis -55 +KPX oslash edotaccent -55 +KPX oslash egrave -55 +KPX oslash emacron -55 +KPX oslash eogonek -55 +KPX oslash f -55 +KPX oslash g -55 +KPX oslash gbreve -55 +KPX oslash gcommaaccent -55 +KPX oslash h -55 +KPX oslash i -55 +KPX oslash iacute -55 +KPX oslash icircumflex -55 +KPX oslash idieresis -55 +KPX oslash igrave -55 +KPX oslash imacron -55 +KPX oslash iogonek -55 +KPX oslash j -55 +KPX oslash k -55 +KPX oslash kcommaaccent -55 +KPX oslash l -55 +KPX oslash lacute -55 +KPX oslash lcommaaccent -55 +KPX oslash lslash -55 +KPX oslash m -55 +KPX oslash n -55 +KPX oslash nacute -55 +KPX oslash ncaron -55 +KPX oslash ncommaaccent -55 +KPX oslash ntilde -55 +KPX oslash o -55 +KPX oslash oacute -55 +KPX oslash ocircumflex -55 +KPX oslash odieresis -55 +KPX oslash ograve -55 +KPX oslash ohungarumlaut -55 +KPX oslash omacron -55 +KPX oslash oslash -55 +KPX oslash otilde -55 +KPX oslash p -55 +KPX oslash period -95 +KPX oslash q -55 +KPX oslash r -55 +KPX oslash racute -55 +KPX oslash rcaron -55 +KPX oslash rcommaaccent -55 +KPX oslash s -55 +KPX oslash sacute -55 +KPX oslash scaron -55 +KPX oslash scedilla -55 +KPX oslash scommaaccent -55 +KPX oslash t -55 +KPX oslash tcommaaccent -55 +KPX oslash u -55 +KPX oslash uacute -55 +KPX oslash ucircumflex -55 +KPX oslash udieresis -55 +KPX oslash ugrave -55 +KPX oslash uhungarumlaut -55 +KPX oslash umacron -55 +KPX oslash uogonek -55 +KPX oslash uring -55 +KPX oslash v -70 +KPX oslash w -70 +KPX oslash x -85 +KPX oslash y -70 +KPX oslash yacute -70 +KPX oslash ydieresis -70 +KPX oslash z -55 +KPX oslash zacute -55 +KPX oslash zcaron -55 +KPX oslash zdotaccent -55 +KPX otilde comma -40 +KPX otilde period -40 +KPX otilde v -15 +KPX otilde w -15 +KPX otilde x -30 +KPX otilde y -30 +KPX otilde yacute -30 +KPX otilde ydieresis -30 +KPX p comma -35 +KPX p period -35 +KPX p y -30 +KPX p yacute -30 +KPX p ydieresis -30 +KPX period quotedblright -100 +KPX period quoteright -100 +KPX period space -60 +KPX quotedblright space -40 +KPX quoteleft quoteleft -57 +KPX quoteright d -50 +KPX quoteright dcroat -50 +KPX quoteright quoteright -57 +KPX quoteright r -50 +KPX quoteright racute -50 +KPX quoteright rcaron -50 +KPX quoteright rcommaaccent -50 +KPX quoteright s -50 +KPX quoteright sacute -50 +KPX quoteright scaron -50 +KPX quoteright scedilla -50 +KPX quoteright scommaaccent -50 +KPX quoteright space -70 +KPX r a -10 +KPX r aacute -10 +KPX r abreve -10 +KPX r acircumflex -10 +KPX r adieresis -10 +KPX r agrave -10 +KPX r amacron -10 +KPX r aogonek -10 +KPX r aring -10 +KPX r atilde -10 +KPX r colon 30 +KPX r comma -50 +KPX r i 15 +KPX r iacute 15 +KPX r icircumflex 15 +KPX r idieresis 15 +KPX r igrave 15 +KPX r imacron 15 +KPX r iogonek 15 +KPX r k 15 +KPX r kcommaaccent 15 +KPX r l 15 +KPX r lacute 15 +KPX r lcommaaccent 15 +KPX r lslash 15 +KPX r m 25 +KPX r n 25 +KPX r nacute 25 +KPX r ncaron 25 +KPX r ncommaaccent 25 +KPX r ntilde 25 +KPX r p 30 +KPX r period -50 +KPX r semicolon 30 +KPX r t 40 +KPX r tcommaaccent 40 +KPX r u 15 +KPX r uacute 15 +KPX r ucircumflex 15 +KPX r udieresis 15 +KPX r ugrave 15 +KPX r uhungarumlaut 15 +KPX r umacron 15 +KPX r uogonek 15 +KPX r uring 15 +KPX r v 30 +KPX r y 30 +KPX r yacute 30 +KPX r ydieresis 30 +KPX racute a -10 +KPX racute aacute -10 +KPX racute abreve -10 +KPX racute acircumflex -10 +KPX racute adieresis -10 +KPX racute agrave -10 +KPX racute amacron -10 +KPX racute aogonek -10 +KPX racute aring -10 +KPX racute atilde -10 +KPX racute colon 30 +KPX racute comma -50 +KPX racute i 15 +KPX racute iacute 15 +KPX racute icircumflex 15 +KPX racute idieresis 15 +KPX racute igrave 15 +KPX racute imacron 15 +KPX racute iogonek 15 +KPX racute k 15 +KPX racute kcommaaccent 15 +KPX racute l 15 +KPX racute lacute 15 +KPX racute lcommaaccent 15 +KPX racute lslash 15 +KPX racute m 25 +KPX racute n 25 +KPX racute nacute 25 +KPX racute ncaron 25 +KPX racute ncommaaccent 25 +KPX racute ntilde 25 +KPX racute p 30 +KPX racute period -50 +KPX racute semicolon 30 +KPX racute t 40 +KPX racute tcommaaccent 40 +KPX racute u 15 +KPX racute uacute 15 +KPX racute ucircumflex 15 +KPX racute udieresis 15 +KPX racute ugrave 15 +KPX racute uhungarumlaut 15 +KPX racute umacron 15 +KPX racute uogonek 15 +KPX racute uring 15 +KPX racute v 30 +KPX racute y 30 +KPX racute yacute 30 +KPX racute ydieresis 30 +KPX rcaron a -10 +KPX rcaron aacute -10 +KPX rcaron abreve -10 +KPX rcaron acircumflex -10 +KPX rcaron adieresis -10 +KPX rcaron agrave -10 +KPX rcaron amacron -10 +KPX rcaron aogonek -10 +KPX rcaron aring -10 +KPX rcaron atilde -10 +KPX rcaron colon 30 +KPX rcaron comma -50 +KPX rcaron i 15 +KPX rcaron iacute 15 +KPX rcaron icircumflex 15 +KPX rcaron idieresis 15 +KPX rcaron igrave 15 +KPX rcaron imacron 15 +KPX rcaron iogonek 15 +KPX rcaron k 15 +KPX rcaron kcommaaccent 15 +KPX rcaron l 15 +KPX rcaron lacute 15 +KPX rcaron lcommaaccent 15 +KPX rcaron lslash 15 +KPX rcaron m 25 +KPX rcaron n 25 +KPX rcaron nacute 25 +KPX rcaron ncaron 25 +KPX rcaron ncommaaccent 25 +KPX rcaron ntilde 25 +KPX rcaron p 30 +KPX rcaron period -50 +KPX rcaron semicolon 30 +KPX rcaron t 40 +KPX rcaron tcommaaccent 40 +KPX rcaron u 15 +KPX rcaron uacute 15 +KPX rcaron ucircumflex 15 +KPX rcaron udieresis 15 +KPX rcaron ugrave 15 +KPX rcaron uhungarumlaut 15 +KPX rcaron umacron 15 +KPX rcaron uogonek 15 +KPX rcaron uring 15 +KPX rcaron v 30 +KPX rcaron y 30 +KPX rcaron yacute 30 +KPX rcaron ydieresis 30 +KPX rcommaaccent a -10 +KPX rcommaaccent aacute -10 +KPX rcommaaccent abreve -10 +KPX rcommaaccent acircumflex -10 +KPX rcommaaccent adieresis -10 +KPX rcommaaccent agrave -10 +KPX rcommaaccent amacron -10 +KPX rcommaaccent aogonek -10 +KPX rcommaaccent aring -10 +KPX rcommaaccent atilde -10 +KPX rcommaaccent colon 30 +KPX rcommaaccent comma -50 +KPX rcommaaccent i 15 +KPX rcommaaccent iacute 15 +KPX rcommaaccent icircumflex 15 +KPX rcommaaccent idieresis 15 +KPX rcommaaccent igrave 15 +KPX rcommaaccent imacron 15 +KPX rcommaaccent iogonek 15 +KPX rcommaaccent k 15 +KPX rcommaaccent kcommaaccent 15 +KPX rcommaaccent l 15 +KPX rcommaaccent lacute 15 +KPX rcommaaccent lcommaaccent 15 +KPX rcommaaccent lslash 15 +KPX rcommaaccent m 25 +KPX rcommaaccent n 25 +KPX rcommaaccent nacute 25 +KPX rcommaaccent ncaron 25 +KPX rcommaaccent ncommaaccent 25 +KPX rcommaaccent ntilde 25 +KPX rcommaaccent p 30 +KPX rcommaaccent period -50 +KPX rcommaaccent semicolon 30 +KPX rcommaaccent t 40 +KPX rcommaaccent tcommaaccent 40 +KPX rcommaaccent u 15 +KPX rcommaaccent uacute 15 +KPX rcommaaccent ucircumflex 15 +KPX rcommaaccent udieresis 15 +KPX rcommaaccent ugrave 15 +KPX rcommaaccent uhungarumlaut 15 +KPX rcommaaccent umacron 15 +KPX rcommaaccent uogonek 15 +KPX rcommaaccent uring 15 +KPX rcommaaccent v 30 +KPX rcommaaccent y 30 +KPX rcommaaccent yacute 30 +KPX rcommaaccent ydieresis 30 +KPX s comma -15 +KPX s period -15 +KPX s w -30 +KPX sacute comma -15 +KPX sacute period -15 +KPX sacute w -30 +KPX scaron comma -15 +KPX scaron period -15 +KPX scaron w -30 +KPX scedilla comma -15 +KPX scedilla period -15 +KPX scedilla w -30 +KPX scommaaccent comma -15 +KPX scommaaccent period -15 +KPX scommaaccent w -30 +KPX semicolon space -50 +KPX space T -50 +KPX space Tcaron -50 +KPX space Tcommaaccent -50 +KPX space V -50 +KPX space W -40 +KPX space Y -90 +KPX space Yacute -90 +KPX space Ydieresis -90 +KPX space quotedblleft -30 +KPX space quoteleft -60 +KPX v a -25 +KPX v aacute -25 +KPX v abreve -25 +KPX v acircumflex -25 +KPX v adieresis -25 +KPX v agrave -25 +KPX v amacron -25 +KPX v aogonek -25 +KPX v aring -25 +KPX v atilde -25 +KPX v comma -80 +KPX v e -25 +KPX v eacute -25 +KPX v ecaron -25 +KPX v ecircumflex -25 +KPX v edieresis -25 +KPX v edotaccent -25 +KPX v egrave -25 +KPX v emacron -25 +KPX v eogonek -25 +KPX v o -25 +KPX v oacute -25 +KPX v ocircumflex -25 +KPX v odieresis -25 +KPX v ograve -25 +KPX v ohungarumlaut -25 +KPX v omacron -25 +KPX v oslash -25 +KPX v otilde -25 +KPX v period -80 +KPX w a -15 +KPX w aacute -15 +KPX w abreve -15 +KPX w acircumflex -15 +KPX w adieresis -15 +KPX w agrave -15 +KPX w amacron -15 +KPX w aogonek -15 +KPX w aring -15 +KPX w atilde -15 +KPX w comma -60 +KPX w e -10 +KPX w eacute -10 +KPX w ecaron -10 +KPX w ecircumflex -10 +KPX w edieresis -10 +KPX w edotaccent -10 +KPX w egrave -10 +KPX w emacron -10 +KPX w eogonek -10 +KPX w o -10 +KPX w oacute -10 +KPX w ocircumflex -10 +KPX w odieresis -10 +KPX w ograve -10 +KPX w ohungarumlaut -10 +KPX w omacron -10 +KPX w oslash -10 +KPX w otilde -10 +KPX w period -60 +KPX x e -30 +KPX x eacute -30 +KPX x ecaron -30 +KPX x ecircumflex -30 +KPX x edieresis -30 +KPX x edotaccent -30 +KPX x egrave -30 +KPX x emacron -30 +KPX x eogonek -30 +KPX y a -20 +KPX y aacute -20 +KPX y abreve -20 +KPX y acircumflex -20 +KPX y adieresis -20 +KPX y agrave -20 +KPX y amacron -20 +KPX y aogonek -20 +KPX y aring -20 +KPX y atilde -20 +KPX y comma -100 +KPX y e -20 +KPX y eacute -20 +KPX y ecaron -20 +KPX y ecircumflex -20 +KPX y edieresis -20 +KPX y edotaccent -20 +KPX y egrave -20 +KPX y emacron -20 +KPX y eogonek -20 +KPX y o -20 +KPX y oacute -20 +KPX y ocircumflex -20 +KPX y odieresis -20 +KPX y ograve -20 +KPX y ohungarumlaut -20 +KPX y omacron -20 +KPX y oslash -20 +KPX y otilde -20 +KPX y period -100 +KPX yacute a -20 +KPX yacute aacute -20 +KPX yacute abreve -20 +KPX yacute acircumflex -20 +KPX yacute adieresis -20 +KPX yacute agrave -20 +KPX yacute amacron -20 +KPX yacute aogonek -20 +KPX yacute aring -20 +KPX yacute atilde -20 +KPX yacute comma -100 +KPX yacute e -20 +KPX yacute eacute -20 +KPX yacute ecaron -20 +KPX yacute ecircumflex -20 +KPX yacute edieresis -20 +KPX yacute edotaccent -20 +KPX yacute egrave -20 +KPX yacute emacron -20 +KPX yacute eogonek -20 +KPX yacute o -20 +KPX yacute oacute -20 +KPX yacute ocircumflex -20 +KPX yacute odieresis -20 +KPX yacute ograve -20 +KPX yacute ohungarumlaut -20 +KPX yacute omacron -20 +KPX yacute oslash -20 +KPX yacute otilde -20 +KPX yacute period -100 +KPX ydieresis a -20 +KPX ydieresis aacute -20 +KPX ydieresis abreve -20 +KPX ydieresis acircumflex -20 +KPX ydieresis adieresis -20 +KPX ydieresis agrave -20 +KPX ydieresis amacron -20 +KPX ydieresis aogonek -20 +KPX ydieresis aring -20 +KPX ydieresis atilde -20 +KPX ydieresis comma -100 +KPX ydieresis e -20 +KPX ydieresis eacute -20 +KPX ydieresis ecaron -20 +KPX ydieresis ecircumflex -20 +KPX ydieresis edieresis -20 +KPX ydieresis edotaccent -20 +KPX ydieresis egrave -20 +KPX ydieresis emacron -20 +KPX ydieresis eogonek -20 +KPX ydieresis o -20 +KPX ydieresis oacute -20 +KPX ydieresis ocircumflex -20 +KPX ydieresis odieresis -20 +KPX ydieresis ograve -20 +KPX ydieresis ohungarumlaut -20 +KPX ydieresis omacron -20 +KPX ydieresis oslash -20 +KPX ydieresis otilde -20 +KPX ydieresis period -100 +KPX z e -15 +KPX z eacute -15 +KPX z ecaron -15 +KPX z ecircumflex -15 +KPX z edieresis -15 +KPX z edotaccent -15 +KPX z egrave -15 +KPX z emacron -15 +KPX z eogonek -15 +KPX z o -15 +KPX z oacute -15 +KPX z ocircumflex -15 +KPX z odieresis -15 +KPX z ograve -15 +KPX z ohungarumlaut -15 +KPX z omacron -15 +KPX z oslash -15 +KPX z otilde -15 +KPX zacute e -15 +KPX zacute eacute -15 +KPX zacute ecaron -15 +KPX zacute ecircumflex -15 +KPX zacute edieresis -15 +KPX zacute edotaccent -15 +KPX zacute egrave -15 +KPX zacute emacron -15 +KPX zacute eogonek -15 +KPX zacute o -15 +KPX zacute oacute -15 +KPX zacute ocircumflex -15 +KPX zacute odieresis -15 +KPX zacute ograve -15 +KPX zacute ohungarumlaut -15 +KPX zacute omacron -15 +KPX zacute oslash -15 +KPX zacute otilde -15 +KPX zcaron e -15 +KPX zcaron eacute -15 +KPX zcaron ecaron -15 +KPX zcaron ecircumflex -15 +KPX zcaron edieresis -15 +KPX zcaron edotaccent -15 +KPX zcaron egrave -15 +KPX zcaron emacron -15 +KPX zcaron eogonek -15 +KPX zcaron o -15 +KPX zcaron oacute -15 +KPX zcaron ocircumflex -15 +KPX zcaron odieresis -15 +KPX zcaron ograve -15 +KPX zcaron ohungarumlaut -15 +KPX zcaron omacron -15 +KPX zcaron oslash -15 +KPX zcaron otilde -15 +KPX zdotaccent e -15 +KPX zdotaccent eacute -15 +KPX zdotaccent ecaron -15 +KPX zdotaccent ecircumflex -15 +KPX zdotaccent edieresis -15 +KPX zdotaccent edotaccent -15 +KPX zdotaccent egrave -15 +KPX zdotaccent emacron -15 +KPX zdotaccent eogonek -15 +KPX zdotaccent o -15 +KPX zdotaccent oacute -15 +KPX zdotaccent ocircumflex -15 +KPX zdotaccent odieresis -15 +KPX zdotaccent ograve -15 +KPX zdotaccent ohungarumlaut -15 +KPX zdotaccent omacron -15 +KPX zdotaccent oslash -15 +KPX zdotaccent otilde -15 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/MustRead.html b/pyx/data/afm/MustRead.html new file mode 100644 index 00000000..6dada97b --- /dev/null +++ b/pyx/data/afm/MustRead.html @@ -0,0 +1,19 @@ + + + + + + Core 14 AFM Files - ReadMe + + + + or + + + + + +
This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any purpose and without charge, with or without modification, provided that all copyright notices are retained; that the AFM files are not distributed without this file; that all modifications to this file or any of the AFM files are prominently noted in the modified file(s); and that this paragraph is not modified. Adobe Systems has no responsibility or obligation to support the use of the AFM files. Col
+ + + diff --git a/pyx/data/afm/Symbol.afm b/pyx/data/afm/Symbol.afm new file mode 100644 index 00000000..524cfb6f --- /dev/null +++ b/pyx/data/afm/Symbol.afm @@ -0,0 +1,213 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All rights reserved. +Comment Creation Date: Thu May 1 15:12:25 1997 +Comment UniqueID 43064 +Comment VMusage 30820 39997 +FontName Symbol +FullName Symbol +FamilyName Symbol +Weight Medium +ItalicAngle 0 +IsFixedPitch false +CharacterSet Special +FontBBox -180 -293 1090 1010 +UnderlinePosition -100 +UnderlineThickness 50 +Version 001.008 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All rights reserved. +EncodingScheme FontSpecific +StdHW 92 +StdVW 85 +StartCharMetrics 190 +C 32 ; WX 250 ; N space ; B 0 0 0 0 ; +C 33 ; WX 333 ; N exclam ; B 128 -17 240 672 ; +C 34 ; WX 713 ; N universal ; B 31 0 681 705 ; +C 35 ; WX 500 ; N numbersign ; B 20 -16 481 673 ; +C 36 ; WX 549 ; N existential ; B 25 0 478 707 ; +C 37 ; WX 833 ; N percent ; B 63 -36 771 655 ; +C 38 ; WX 778 ; N ampersand ; B 41 -18 750 661 ; +C 39 ; WX 439 ; N suchthat ; B 48 -17 414 500 ; +C 40 ; WX 333 ; N parenleft ; B 53 -191 300 673 ; +C 41 ; WX 333 ; N parenright ; B 30 -191 277 673 ; +C 42 ; WX 500 ; N asteriskmath ; B 65 134 427 551 ; +C 43 ; WX 549 ; N plus ; B 10 0 539 533 ; +C 44 ; WX 250 ; N comma ; B 56 -152 194 104 ; +C 45 ; WX 549 ; N minus ; B 11 233 535 288 ; +C 46 ; WX 250 ; N period ; B 69 -17 181 95 ; +C 47 ; WX 278 ; N slash ; B 0 -18 254 646 ; +C 48 ; WX 500 ; N zero ; B 24 -14 476 685 ; +C 49 ; WX 500 ; N one ; B 117 0 390 673 ; +C 50 ; WX 500 ; N two ; B 25 0 475 685 ; +C 51 ; WX 500 ; N three ; B 43 -14 435 685 ; +C 52 ; WX 500 ; N four ; B 15 0 469 685 ; +C 53 ; WX 500 ; N five ; B 32 -14 445 690 ; +C 54 ; WX 500 ; N six ; B 34 -14 468 685 ; +C 55 ; WX 500 ; N seven ; B 24 -16 448 673 ; +C 56 ; WX 500 ; N eight ; B 56 -14 445 685 ; +C 57 ; WX 500 ; N nine ; B 30 -18 459 685 ; +C 58 ; WX 278 ; N colon ; B 81 -17 193 460 ; +C 59 ; WX 278 ; N semicolon ; B 83 -152 221 460 ; +C 60 ; WX 549 ; N less ; B 26 0 523 522 ; +C 61 ; WX 549 ; N equal ; B 11 141 537 390 ; +C 62 ; WX 549 ; N greater ; B 26 0 523 522 ; +C 63 ; WX 444 ; N question ; B 70 -17 412 686 ; +C 64 ; WX 549 ; N congruent ; B 11 0 537 475 ; +C 65 ; WX 722 ; N Alpha ; B 4 0 684 673 ; +C 66 ; WX 667 ; N Beta ; B 29 0 592 673 ; +C 67 ; WX 722 ; N Chi ; B -9 0 704 673 ; +C 68 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C 69 ; WX 611 ; N Epsilon ; B 32 0 617 673 ; +C 70 ; WX 763 ; N Phi ; B 26 0 741 673 ; +C 71 ; WX 603 ; N Gamma ; B 24 0 609 673 ; +C 72 ; WX 722 ; N Eta ; B 39 0 729 673 ; +C 73 ; WX 333 ; N Iota ; B 32 0 316 673 ; +C 74 ; WX 631 ; N theta1 ; B 18 -18 623 689 ; +C 75 ; WX 722 ; N Kappa ; B 35 0 722 673 ; +C 76 ; WX 686 ; N Lambda ; B 6 0 680 688 ; +C 77 ; WX 889 ; N Mu ; B 28 0 887 673 ; +C 78 ; WX 722 ; N Nu ; B 29 -8 720 673 ; +C 79 ; WX 722 ; N Omicron ; B 41 -17 715 685 ; +C 80 ; WX 768 ; N Pi ; B 25 0 745 673 ; +C 81 ; WX 741 ; N Theta ; B 41 -17 715 685 ; +C 82 ; WX 556 ; N Rho ; B 28 0 563 673 ; +C 83 ; WX 592 ; N Sigma ; B 5 0 589 673 ; +C 84 ; WX 611 ; N Tau ; B 33 0 607 673 ; +C 85 ; WX 690 ; N Upsilon ; B -8 0 694 673 ; +C 86 ; WX 439 ; N sigma1 ; B 40 -233 436 500 ; +C 87 ; WX 768 ; N Omega ; B 34 0 736 688 ; +C 88 ; WX 645 ; N Xi ; B 40 0 599 673 ; +C 89 ; WX 795 ; N Psi ; B 15 0 781 684 ; +C 90 ; WX 611 ; N Zeta ; B 44 0 636 673 ; +C 91 ; WX 333 ; N bracketleft ; B 86 -155 299 674 ; +C 92 ; WX 863 ; N therefore ; B 163 0 701 487 ; +C 93 ; WX 333 ; N bracketright ; B 33 -155 246 674 ; +C 94 ; WX 658 ; N perpendicular ; B 15 0 652 674 ; +C 95 ; WX 500 ; N underscore ; B -2 -125 502 -75 ; +C 96 ; WX 500 ; N radicalex ; B 480 881 1090 917 ; +C 97 ; WX 631 ; N alpha ; B 41 -18 622 500 ; +C 98 ; WX 549 ; N beta ; B 61 -223 515 741 ; +C 99 ; WX 549 ; N chi ; B 12 -231 522 499 ; +C 100 ; WX 494 ; N delta ; B 40 -19 481 740 ; +C 101 ; WX 439 ; N epsilon ; B 22 -19 427 502 ; +C 102 ; WX 521 ; N phi ; B 28 -224 492 673 ; +C 103 ; WX 411 ; N gamma ; B 5 -225 484 499 ; +C 104 ; WX 603 ; N eta ; B 0 -202 527 514 ; +C 105 ; WX 329 ; N iota ; B 0 -17 301 503 ; +C 106 ; WX 603 ; N phi1 ; B 36 -224 587 499 ; +C 107 ; WX 549 ; N kappa ; B 33 0 558 501 ; +C 108 ; WX 549 ; N lambda ; B 24 -17 548 739 ; +C 109 ; WX 576 ; N mu ; B 33 -223 567 500 ; +C 110 ; WX 521 ; N nu ; B -9 -16 475 507 ; +C 111 ; WX 549 ; N omicron ; B 35 -19 501 499 ; +C 112 ; WX 549 ; N pi ; B 10 -19 530 487 ; +C 113 ; WX 521 ; N theta ; B 43 -17 485 690 ; +C 114 ; WX 549 ; N rho ; B 50 -230 490 499 ; +C 115 ; WX 603 ; N sigma ; B 30 -21 588 500 ; +C 116 ; WX 439 ; N tau ; B 10 -19 418 500 ; +C 117 ; WX 576 ; N upsilon ; B 7 -18 535 507 ; +C 118 ; WX 713 ; N omega1 ; B 12 -18 671 583 ; +C 119 ; WX 686 ; N omega ; B 42 -17 684 500 ; +C 120 ; WX 493 ; N xi ; B 27 -224 469 766 ; +C 121 ; WX 686 ; N psi ; B 12 -228 701 500 ; +C 122 ; WX 494 ; N zeta ; B 60 -225 467 756 ; +C 123 ; WX 480 ; N braceleft ; B 58 -183 397 673 ; +C 124 ; WX 200 ; N bar ; B 65 -293 135 707 ; +C 125 ; WX 480 ; N braceright ; B 79 -183 418 673 ; +C 126 ; WX 549 ; N similar ; B 17 203 529 307 ; +C 160 ; WX 750 ; N Euro ; B 20 -12 714 685 ; +C 161 ; WX 620 ; N Upsilon1 ; B -2 0 610 685 ; +C 162 ; WX 247 ; N minute ; B 27 459 228 735 ; +C 163 ; WX 549 ; N lessequal ; B 29 0 526 639 ; +C 164 ; WX 167 ; N fraction ; B -180 -12 340 677 ; +C 165 ; WX 713 ; N infinity ; B 26 124 688 404 ; +C 166 ; WX 500 ; N florin ; B 2 -193 494 686 ; +C 167 ; WX 753 ; N club ; B 86 -26 660 533 ; +C 168 ; WX 753 ; N diamond ; B 142 -36 600 550 ; +C 169 ; WX 753 ; N heart ; B 117 -33 631 532 ; +C 170 ; WX 753 ; N spade ; B 113 -36 629 548 ; +C 171 ; WX 1042 ; N arrowboth ; B 24 -15 1024 511 ; +C 172 ; WX 987 ; N arrowleft ; B 32 -15 942 511 ; +C 173 ; WX 603 ; N arrowup ; B 45 0 571 910 ; +C 174 ; WX 987 ; N arrowright ; B 49 -15 959 511 ; +C 175 ; WX 603 ; N arrowdown ; B 45 -22 571 888 ; +C 176 ; WX 400 ; N degree ; B 50 385 350 685 ; +C 177 ; WX 549 ; N plusminus ; B 10 0 539 645 ; +C 178 ; WX 411 ; N second ; B 20 459 413 737 ; +C 179 ; WX 549 ; N greaterequal ; B 29 0 526 639 ; +C 180 ; WX 549 ; N multiply ; B 17 8 533 524 ; +C 181 ; WX 713 ; N proportional ; B 27 123 639 404 ; +C 182 ; WX 494 ; N partialdiff ; B 26 -20 462 746 ; +C 183 ; WX 460 ; N bullet ; B 50 113 410 473 ; +C 184 ; WX 549 ; N divide ; B 10 71 536 456 ; +C 185 ; WX 549 ; N notequal ; B 15 -25 540 549 ; +C 186 ; WX 549 ; N equivalence ; B 14 82 538 443 ; +C 187 ; WX 549 ; N approxequal ; B 14 135 527 394 ; +C 188 ; WX 1000 ; N ellipsis ; B 111 -17 889 95 ; +C 189 ; WX 603 ; N arrowvertex ; B 280 -120 336 1010 ; +C 190 ; WX 1000 ; N arrowhorizex ; B -60 220 1050 276 ; +C 191 ; WX 658 ; N carriagereturn ; B 15 -16 602 629 ; +C 192 ; WX 823 ; N aleph ; B 175 -18 661 658 ; +C 193 ; WX 686 ; N Ifraktur ; B 10 -53 578 740 ; +C 194 ; WX 795 ; N Rfraktur ; B 26 -15 759 734 ; +C 195 ; WX 987 ; N weierstrass ; B 159 -211 870 573 ; +C 196 ; WX 768 ; N circlemultiply ; B 43 -17 733 673 ; +C 197 ; WX 768 ; N circleplus ; B 43 -15 733 675 ; +C 198 ; WX 823 ; N emptyset ; B 39 -24 781 719 ; +C 199 ; WX 768 ; N intersection ; B 40 0 732 509 ; +C 200 ; WX 768 ; N union ; B 40 -17 732 492 ; +C 201 ; WX 713 ; N propersuperset ; B 20 0 673 470 ; +C 202 ; WX 713 ; N reflexsuperset ; B 20 -125 673 470 ; +C 203 ; WX 713 ; N notsubset ; B 36 -70 690 540 ; +C 204 ; WX 713 ; N propersubset ; B 37 0 690 470 ; +C 205 ; WX 713 ; N reflexsubset ; B 37 -125 690 470 ; +C 206 ; WX 713 ; N element ; B 45 0 505 468 ; +C 207 ; WX 713 ; N notelement ; B 45 -58 505 555 ; +C 208 ; WX 768 ; N angle ; B 26 0 738 673 ; +C 209 ; WX 713 ; N gradient ; B 36 -19 681 718 ; +C 210 ; WX 790 ; N registerserif ; B 50 -17 740 673 ; +C 211 ; WX 790 ; N copyrightserif ; B 51 -15 741 675 ; +C 212 ; WX 890 ; N trademarkserif ; B 18 293 855 673 ; +C 213 ; WX 823 ; N product ; B 25 -101 803 751 ; +C 214 ; WX 549 ; N radical ; B 10 -38 515 917 ; +C 215 ; WX 250 ; N dotmath ; B 69 210 169 310 ; +C 216 ; WX 713 ; N logicalnot ; B 15 0 680 288 ; +C 217 ; WX 603 ; N logicaland ; B 23 0 583 454 ; +C 218 ; WX 603 ; N logicalor ; B 30 0 578 477 ; +C 219 ; WX 1042 ; N arrowdblboth ; B 27 -20 1023 510 ; +C 220 ; WX 987 ; N arrowdblleft ; B 30 -15 939 513 ; +C 221 ; WX 603 ; N arrowdblup ; B 39 2 567 911 ; +C 222 ; WX 987 ; N arrowdblright ; B 45 -20 954 508 ; +C 223 ; WX 603 ; N arrowdbldown ; B 44 -19 572 890 ; +C 224 ; WX 494 ; N lozenge ; B 18 0 466 745 ; +C 225 ; WX 329 ; N angleleft ; B 25 -198 306 746 ; +C 226 ; WX 790 ; N registersans ; B 50 -20 740 670 ; +C 227 ; WX 790 ; N copyrightsans ; B 49 -15 739 675 ; +C 228 ; WX 786 ; N trademarksans ; B 5 293 725 673 ; +C 229 ; WX 713 ; N summation ; B 14 -108 695 752 ; +C 230 ; WX 384 ; N parenlefttp ; B 24 -293 436 926 ; +C 231 ; WX 384 ; N parenleftex ; B 24 -85 108 925 ; +C 232 ; WX 384 ; N parenleftbt ; B 24 -293 436 926 ; +C 233 ; WX 384 ; N bracketlefttp ; B 0 -80 349 926 ; +C 234 ; WX 384 ; N bracketleftex ; B 0 -79 77 925 ; +C 235 ; WX 384 ; N bracketleftbt ; B 0 -80 349 926 ; +C 236 ; WX 494 ; N bracelefttp ; B 209 -85 445 925 ; +C 237 ; WX 494 ; N braceleftmid ; B 20 -85 284 935 ; +C 238 ; WX 494 ; N braceleftbt ; B 209 -75 445 935 ; +C 239 ; WX 494 ; N braceex ; B 209 -85 284 935 ; +C 241 ; WX 329 ; N angleright ; B 21 -198 302 746 ; +C 242 ; WX 274 ; N integral ; B 2 -107 291 916 ; +C 243 ; WX 686 ; N integraltp ; B 308 -88 675 920 ; +C 244 ; WX 686 ; N integralex ; B 308 -88 378 975 ; +C 245 ; WX 686 ; N integralbt ; B 11 -87 378 921 ; +C 246 ; WX 384 ; N parenrighttp ; B 54 -293 466 926 ; +C 247 ; WX 384 ; N parenrightex ; B 382 -85 466 925 ; +C 248 ; WX 384 ; N parenrightbt ; B 54 -293 466 926 ; +C 249 ; WX 384 ; N bracketrighttp ; B 22 -80 371 926 ; +C 250 ; WX 384 ; N bracketrightex ; B 294 -79 371 925 ; +C 251 ; WX 384 ; N bracketrightbt ; B 22 -80 371 926 ; +C 252 ; WX 494 ; N bracerighttp ; B 48 -85 284 925 ; +C 253 ; WX 494 ; N bracerightmid ; B 209 -85 473 935 ; +C 254 ; WX 494 ; N bracerightbt ; B 48 -75 284 935 ; +C -1 ; WX 790 ; N apple ; B 56 -3 733 808 ; +EndCharMetrics +EndFontMetrics diff --git a/pyx/data/afm/Times-Bold.afm b/pyx/data/afm/Times-Bold.afm new file mode 100644 index 00000000..ee718a22 --- /dev/null +++ b/pyx/data/afm/Times-Bold.afm @@ -0,0 +1,2588 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:52:56 1997 +Comment UniqueID 43065 +Comment VMusage 41636 52661 +FontName Times-Bold +FullName Times Bold +FamilyName Times +Weight Bold +ItalicAngle 0 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -168 -218 1000 935 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 676 +XHeight 461 +Ascender 683 +Descender -217 +StdHW 44 +StdVW 139 +StartCharMetrics 315 +C 32 ; WX 250 ; N space ; B 0 0 0 0 ; +C 33 ; WX 333 ; N exclam ; B 81 -13 251 691 ; +C 34 ; WX 555 ; N quotedbl ; B 83 404 472 691 ; +C 35 ; WX 500 ; N numbersign ; B 4 0 496 700 ; +C 36 ; WX 500 ; N dollar ; B 29 -99 472 750 ; +C 37 ; WX 1000 ; N percent ; B 124 -14 877 692 ; +C 38 ; WX 833 ; N ampersand ; B 62 -16 787 691 ; +C 39 ; WX 333 ; N quoteright ; B 79 356 263 691 ; +C 40 ; WX 333 ; N parenleft ; B 46 -168 306 694 ; +C 41 ; WX 333 ; N parenright ; B 27 -168 287 694 ; +C 42 ; WX 500 ; N asterisk ; B 56 255 447 691 ; +C 43 ; WX 570 ; N plus ; B 33 0 537 506 ; +C 44 ; WX 250 ; N comma ; B 39 -180 223 155 ; +C 45 ; WX 333 ; N hyphen ; B 44 171 287 287 ; +C 46 ; WX 250 ; N period ; B 41 -13 210 156 ; +C 47 ; WX 278 ; N slash ; B -24 -19 302 691 ; +C 48 ; WX 500 ; N zero ; B 24 -13 476 688 ; +C 49 ; WX 500 ; N one ; B 65 0 442 688 ; +C 50 ; WX 500 ; N two ; B 17 0 478 688 ; +C 51 ; WX 500 ; N three ; B 16 -14 468 688 ; +C 52 ; WX 500 ; N four ; B 19 0 475 688 ; +C 53 ; WX 500 ; N five ; B 22 -8 470 676 ; +C 54 ; WX 500 ; N six ; B 28 -13 475 688 ; +C 55 ; WX 500 ; N seven ; B 17 0 477 676 ; +C 56 ; WX 500 ; N eight ; B 28 -13 472 688 ; +C 57 ; WX 500 ; N nine ; B 26 -13 473 688 ; +C 58 ; WX 333 ; N colon ; B 82 -13 251 472 ; +C 59 ; WX 333 ; N semicolon ; B 82 -180 266 472 ; +C 60 ; WX 570 ; N less ; B 31 -8 539 514 ; +C 61 ; WX 570 ; N equal ; B 33 107 537 399 ; +C 62 ; WX 570 ; N greater ; B 31 -8 539 514 ; +C 63 ; WX 500 ; N question ; B 57 -13 445 689 ; +C 64 ; WX 930 ; N at ; B 108 -19 822 691 ; +C 65 ; WX 722 ; N A ; B 9 0 689 690 ; +C 66 ; WX 667 ; N B ; B 16 0 619 676 ; +C 67 ; WX 722 ; N C ; B 49 -19 687 691 ; +C 68 ; WX 722 ; N D ; B 14 0 690 676 ; +C 69 ; WX 667 ; N E ; B 16 0 641 676 ; +C 70 ; WX 611 ; N F ; B 16 0 583 676 ; +C 71 ; WX 778 ; N G ; B 37 -19 755 691 ; +C 72 ; WX 778 ; N H ; B 21 0 759 676 ; +C 73 ; WX 389 ; N I ; B 20 0 370 676 ; +C 74 ; WX 500 ; N J ; B 3 -96 479 676 ; +C 75 ; WX 778 ; N K ; B 30 0 769 676 ; +C 76 ; WX 667 ; N L ; B 19 0 638 676 ; +C 77 ; WX 944 ; N M ; B 14 0 921 676 ; +C 78 ; WX 722 ; N N ; B 16 -18 701 676 ; +C 79 ; WX 778 ; N O ; B 35 -19 743 691 ; +C 80 ; WX 611 ; N P ; B 16 0 600 676 ; +C 81 ; WX 778 ; N Q ; B 35 -176 743 691 ; +C 82 ; WX 722 ; N R ; B 26 0 715 676 ; +C 83 ; WX 556 ; N S ; B 35 -19 513 692 ; +C 84 ; WX 667 ; N T ; B 31 0 636 676 ; +C 85 ; WX 722 ; N U ; B 16 -19 701 676 ; +C 86 ; WX 722 ; N V ; B 16 -18 701 676 ; +C 87 ; WX 1000 ; N W ; B 19 -15 981 676 ; +C 88 ; WX 722 ; N X ; B 16 0 699 676 ; +C 89 ; WX 722 ; N Y ; B 15 0 699 676 ; +C 90 ; WX 667 ; N Z ; B 28 0 634 676 ; +C 91 ; WX 333 ; N bracketleft ; B 67 -149 301 678 ; +C 92 ; WX 278 ; N backslash ; B -25 -19 303 691 ; +C 93 ; WX 333 ; N bracketright ; B 32 -149 266 678 ; +C 94 ; WX 581 ; N asciicircum ; B 73 311 509 676 ; +C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; +C 96 ; WX 333 ; N quoteleft ; B 70 356 254 691 ; +C 97 ; WX 500 ; N a ; B 25 -14 488 473 ; +C 98 ; WX 556 ; N b ; B 17 -14 521 676 ; +C 99 ; WX 444 ; N c ; B 25 -14 430 473 ; +C 100 ; WX 556 ; N d ; B 25 -14 534 676 ; +C 101 ; WX 444 ; N e ; B 25 -14 426 473 ; +C 102 ; WX 333 ; N f ; B 14 0 389 691 ; L i fi ; L l fl ; +C 103 ; WX 500 ; N g ; B 28 -206 483 473 ; +C 104 ; WX 556 ; N h ; B 16 0 534 676 ; +C 105 ; WX 278 ; N i ; B 16 0 255 691 ; +C 106 ; WX 333 ; N j ; B -57 -203 263 691 ; +C 107 ; WX 556 ; N k ; B 22 0 543 676 ; +C 108 ; WX 278 ; N l ; B 16 0 255 676 ; +C 109 ; WX 833 ; N m ; B 16 0 814 473 ; +C 110 ; WX 556 ; N n ; B 21 0 539 473 ; +C 111 ; WX 500 ; N o ; B 25 -14 476 473 ; +C 112 ; WX 556 ; N p ; B 19 -205 524 473 ; +C 113 ; WX 556 ; N q ; B 34 -205 536 473 ; +C 114 ; WX 444 ; N r ; B 29 0 434 473 ; +C 115 ; WX 389 ; N s ; B 25 -14 361 473 ; +C 116 ; WX 333 ; N t ; B 20 -12 332 630 ; +C 117 ; WX 556 ; N u ; B 16 -14 537 461 ; +C 118 ; WX 500 ; N v ; B 21 -14 485 461 ; +C 119 ; WX 722 ; N w ; B 23 -14 707 461 ; +C 120 ; WX 500 ; N x ; B 12 0 484 461 ; +C 121 ; WX 500 ; N y ; B 16 -205 480 461 ; +C 122 ; WX 444 ; N z ; B 21 0 420 461 ; +C 123 ; WX 394 ; N braceleft ; B 22 -175 340 698 ; +C 124 ; WX 220 ; N bar ; B 66 -218 154 782 ; +C 125 ; WX 394 ; N braceright ; B 54 -175 372 698 ; +C 126 ; WX 520 ; N asciitilde ; B 29 173 491 333 ; +C 161 ; WX 333 ; N exclamdown ; B 82 -203 252 501 ; +C 162 ; WX 500 ; N cent ; B 53 -140 458 588 ; +C 163 ; WX 500 ; N sterling ; B 21 -14 477 684 ; +C 164 ; WX 167 ; N fraction ; B -168 -12 329 688 ; +C 165 ; WX 500 ; N yen ; B -64 0 547 676 ; +C 166 ; WX 500 ; N florin ; B 0 -155 498 706 ; +C 167 ; WX 500 ; N section ; B 57 -132 443 691 ; +C 168 ; WX 500 ; N currency ; B -26 61 526 613 ; +C 169 ; WX 278 ; N quotesingle ; B 75 404 204 691 ; +C 170 ; WX 500 ; N quotedblleft ; B 32 356 486 691 ; +C 171 ; WX 500 ; N guillemotleft ; B 23 36 473 415 ; +C 172 ; WX 333 ; N guilsinglleft ; B 51 36 305 415 ; +C 173 ; WX 333 ; N guilsinglright ; B 28 36 282 415 ; +C 174 ; WX 556 ; N fi ; B 14 0 536 691 ; +C 175 ; WX 556 ; N fl ; B 14 0 536 691 ; +C 177 ; WX 500 ; N endash ; B 0 181 500 271 ; +C 178 ; WX 500 ; N dagger ; B 47 -134 453 691 ; +C 179 ; WX 500 ; N daggerdbl ; B 45 -132 456 691 ; +C 180 ; WX 250 ; N periodcentered ; B 41 248 210 417 ; +C 182 ; WX 540 ; N paragraph ; B 0 -186 519 676 ; +C 183 ; WX 350 ; N bullet ; B 35 198 315 478 ; +C 184 ; WX 333 ; N quotesinglbase ; B 79 -180 263 155 ; +C 185 ; WX 500 ; N quotedblbase ; B 14 -180 468 155 ; +C 186 ; WX 500 ; N quotedblright ; B 14 356 468 691 ; +C 187 ; WX 500 ; N guillemotright ; B 27 36 477 415 ; +C 188 ; WX 1000 ; N ellipsis ; B 82 -13 917 156 ; +C 189 ; WX 1000 ; N perthousand ; B 7 -29 995 706 ; +C 191 ; WX 500 ; N questiondown ; B 55 -201 443 501 ; +C 193 ; WX 333 ; N grave ; B 8 528 246 713 ; +C 194 ; WX 333 ; N acute ; B 86 528 324 713 ; +C 195 ; WX 333 ; N circumflex ; B -2 528 335 704 ; +C 196 ; WX 333 ; N tilde ; B -16 547 349 674 ; +C 197 ; WX 333 ; N macron ; B 1 565 331 637 ; +C 198 ; WX 333 ; N breve ; B 15 528 318 691 ; +C 199 ; WX 333 ; N dotaccent ; B 103 536 258 691 ; +C 200 ; WX 333 ; N dieresis ; B -2 537 335 667 ; +C 202 ; WX 333 ; N ring ; B 60 527 273 740 ; +C 203 ; WX 333 ; N cedilla ; B 68 -218 294 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B -13 528 425 713 ; +C 206 ; WX 333 ; N ogonek ; B 90 -193 319 24 ; +C 207 ; WX 333 ; N caron ; B -2 528 335 704 ; +C 208 ; WX 1000 ; N emdash ; B 0 181 1000 271 ; +C 225 ; WX 1000 ; N AE ; B 4 0 951 676 ; +C 227 ; WX 300 ; N ordfeminine ; B -1 397 301 688 ; +C 232 ; WX 667 ; N Lslash ; B 19 0 638 676 ; +C 233 ; WX 778 ; N Oslash ; B 35 -74 743 737 ; +C 234 ; WX 1000 ; N OE ; B 22 -5 981 684 ; +C 235 ; WX 330 ; N ordmasculine ; B 18 397 312 688 ; +C 241 ; WX 722 ; N ae ; B 33 -14 693 473 ; +C 245 ; WX 278 ; N dotlessi ; B 16 0 255 461 ; +C 248 ; WX 278 ; N lslash ; B -22 0 303 676 ; +C 249 ; WX 500 ; N oslash ; B 25 -92 476 549 ; +C 250 ; WX 722 ; N oe ; B 22 -14 696 473 ; +C 251 ; WX 556 ; N germandbls ; B 19 -12 517 691 ; +C -1 ; WX 389 ; N Idieresis ; B 20 0 370 877 ; +C -1 ; WX 444 ; N eacute ; B 25 -14 426 713 ; +C -1 ; WX 500 ; N abreve ; B 25 -14 488 691 ; +C -1 ; WX 556 ; N uhungarumlaut ; B 16 -14 557 713 ; +C -1 ; WX 444 ; N ecaron ; B 25 -14 426 704 ; +C -1 ; WX 722 ; N Ydieresis ; B 15 0 699 877 ; +C -1 ; WX 570 ; N divide ; B 33 -31 537 537 ; +C -1 ; WX 722 ; N Yacute ; B 15 0 699 923 ; +C -1 ; WX 722 ; N Acircumflex ; B 9 0 689 914 ; +C -1 ; WX 500 ; N aacute ; B 25 -14 488 713 ; +C -1 ; WX 722 ; N Ucircumflex ; B 16 -19 701 914 ; +C -1 ; WX 500 ; N yacute ; B 16 -205 480 713 ; +C -1 ; WX 389 ; N scommaaccent ; B 25 -218 361 473 ; +C -1 ; WX 444 ; N ecircumflex ; B 25 -14 426 704 ; +C -1 ; WX 722 ; N Uring ; B 16 -19 701 935 ; +C -1 ; WX 722 ; N Udieresis ; B 16 -19 701 877 ; +C -1 ; WX 500 ; N aogonek ; B 25 -193 504 473 ; +C -1 ; WX 722 ; N Uacute ; B 16 -19 701 923 ; +C -1 ; WX 556 ; N uogonek ; B 16 -193 539 461 ; +C -1 ; WX 667 ; N Edieresis ; B 16 0 641 877 ; +C -1 ; WX 722 ; N Dcroat ; B 6 0 690 676 ; +C -1 ; WX 250 ; N commaaccent ; B 47 -218 203 -50 ; +C -1 ; WX 747 ; N copyright ; B 26 -19 721 691 ; +C -1 ; WX 667 ; N Emacron ; B 16 0 641 847 ; +C -1 ; WX 444 ; N ccaron ; B 25 -14 430 704 ; +C -1 ; WX 500 ; N aring ; B 25 -14 488 740 ; +C -1 ; WX 722 ; N Ncommaaccent ; B 16 -188 701 676 ; +C -1 ; WX 278 ; N lacute ; B 16 0 297 923 ; +C -1 ; WX 500 ; N agrave ; B 25 -14 488 713 ; +C -1 ; WX 667 ; N Tcommaaccent ; B 31 -218 636 676 ; +C -1 ; WX 722 ; N Cacute ; B 49 -19 687 923 ; +C -1 ; WX 500 ; N atilde ; B 25 -14 488 674 ; +C -1 ; WX 667 ; N Edotaccent ; B 16 0 641 901 ; +C -1 ; WX 389 ; N scaron ; B 25 -14 363 704 ; +C -1 ; WX 389 ; N scedilla ; B 25 -218 361 473 ; +C -1 ; WX 278 ; N iacute ; B 16 0 289 713 ; +C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ; +C -1 ; WX 722 ; N Rcaron ; B 26 0 715 914 ; +C -1 ; WX 778 ; N Gcommaaccent ; B 37 -218 755 691 ; +C -1 ; WX 556 ; N ucircumflex ; B 16 -14 537 704 ; +C -1 ; WX 500 ; N acircumflex ; B 25 -14 488 704 ; +C -1 ; WX 722 ; N Amacron ; B 9 0 689 847 ; +C -1 ; WX 444 ; N rcaron ; B 29 0 434 704 ; +C -1 ; WX 444 ; N ccedilla ; B 25 -218 430 473 ; +C -1 ; WX 667 ; N Zdotaccent ; B 28 0 634 901 ; +C -1 ; WX 611 ; N Thorn ; B 16 0 600 676 ; +C -1 ; WX 778 ; N Omacron ; B 35 -19 743 847 ; +C -1 ; WX 722 ; N Racute ; B 26 0 715 923 ; +C -1 ; WX 556 ; N Sacute ; B 35 -19 513 923 ; +C -1 ; WX 672 ; N dcaron ; B 25 -14 681 682 ; +C -1 ; WX 722 ; N Umacron ; B 16 -19 701 847 ; +C -1 ; WX 556 ; N uring ; B 16 -14 537 740 ; +C -1 ; WX 300 ; N threesuperior ; B 3 268 297 688 ; +C -1 ; WX 778 ; N Ograve ; B 35 -19 743 923 ; +C -1 ; WX 722 ; N Agrave ; B 9 0 689 923 ; +C -1 ; WX 722 ; N Abreve ; B 9 0 689 901 ; +C -1 ; WX 570 ; N multiply ; B 48 16 522 490 ; +C -1 ; WX 556 ; N uacute ; B 16 -14 537 713 ; +C -1 ; WX 667 ; N Tcaron ; B 31 0 636 914 ; +C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ; +C -1 ; WX 500 ; N ydieresis ; B 16 -205 480 667 ; +C -1 ; WX 722 ; N Nacute ; B 16 -18 701 923 ; +C -1 ; WX 278 ; N icircumflex ; B -37 0 300 704 ; +C -1 ; WX 667 ; N Ecircumflex ; B 16 0 641 914 ; +C -1 ; WX 500 ; N adieresis ; B 25 -14 488 667 ; +C -1 ; WX 444 ; N edieresis ; B 25 -14 426 667 ; +C -1 ; WX 444 ; N cacute ; B 25 -14 430 713 ; +C -1 ; WX 556 ; N nacute ; B 21 0 539 713 ; +C -1 ; WX 556 ; N umacron ; B 16 -14 537 637 ; +C -1 ; WX 722 ; N Ncaron ; B 16 -18 701 914 ; +C -1 ; WX 389 ; N Iacute ; B 20 0 370 923 ; +C -1 ; WX 570 ; N plusminus ; B 33 0 537 506 ; +C -1 ; WX 220 ; N brokenbar ; B 66 -143 154 707 ; +C -1 ; WX 747 ; N registered ; B 26 -19 721 691 ; +C -1 ; WX 778 ; N Gbreve ; B 37 -19 755 901 ; +C -1 ; WX 389 ; N Idotaccent ; B 20 0 370 901 ; +C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ; +C -1 ; WX 667 ; N Egrave ; B 16 0 641 923 ; +C -1 ; WX 444 ; N racute ; B 29 0 434 713 ; +C -1 ; WX 500 ; N omacron ; B 25 -14 476 637 ; +C -1 ; WX 667 ; N Zacute ; B 28 0 634 923 ; +C -1 ; WX 667 ; N Zcaron ; B 28 0 634 914 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ; +C -1 ; WX 722 ; N Eth ; B 6 0 690 676 ; +C -1 ; WX 722 ; N Ccedilla ; B 49 -218 687 691 ; +C -1 ; WX 278 ; N lcommaaccent ; B 16 -218 255 676 ; +C -1 ; WX 416 ; N tcaron ; B 20 -12 425 815 ; +C -1 ; WX 444 ; N eogonek ; B 25 -193 426 473 ; +C -1 ; WX 722 ; N Uogonek ; B 16 -193 701 676 ; +C -1 ; WX 722 ; N Aacute ; B 9 0 689 923 ; +C -1 ; WX 722 ; N Adieresis ; B 9 0 689 877 ; +C -1 ; WX 444 ; N egrave ; B 25 -14 426 713 ; +C -1 ; WX 444 ; N zacute ; B 21 0 420 713 ; +C -1 ; WX 278 ; N iogonek ; B 16 -193 274 691 ; +C -1 ; WX 778 ; N Oacute ; B 35 -19 743 923 ; +C -1 ; WX 500 ; N oacute ; B 25 -14 476 713 ; +C -1 ; WX 500 ; N amacron ; B 25 -14 488 637 ; +C -1 ; WX 389 ; N sacute ; B 25 -14 361 713 ; +C -1 ; WX 278 ; N idieresis ; B -37 0 300 667 ; +C -1 ; WX 778 ; N Ocircumflex ; B 35 -19 743 914 ; +C -1 ; WX 722 ; N Ugrave ; B 16 -19 701 923 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 556 ; N thorn ; B 19 -205 524 676 ; +C -1 ; WX 300 ; N twosuperior ; B 0 275 300 688 ; +C -1 ; WX 778 ; N Odieresis ; B 35 -19 743 877 ; +C -1 ; WX 556 ; N mu ; B 33 -206 536 461 ; +C -1 ; WX 278 ; N igrave ; B -27 0 255 713 ; +C -1 ; WX 500 ; N ohungarumlaut ; B 25 -14 529 713 ; +C -1 ; WX 667 ; N Eogonek ; B 16 -193 644 676 ; +C -1 ; WX 556 ; N dcroat ; B 25 -14 534 676 ; +C -1 ; WX 750 ; N threequarters ; B 23 -12 733 688 ; +C -1 ; WX 556 ; N Scedilla ; B 35 -218 513 692 ; +C -1 ; WX 394 ; N lcaron ; B 16 0 412 682 ; +C -1 ; WX 778 ; N Kcommaaccent ; B 30 -218 769 676 ; +C -1 ; WX 667 ; N Lacute ; B 19 0 638 923 ; +C -1 ; WX 1000 ; N trademark ; B 24 271 977 676 ; +C -1 ; WX 444 ; N edotaccent ; B 25 -14 426 691 ; +C -1 ; WX 389 ; N Igrave ; B 20 0 370 923 ; +C -1 ; WX 389 ; N Imacron ; B 20 0 370 847 ; +C -1 ; WX 667 ; N Lcaron ; B 19 0 652 682 ; +C -1 ; WX 750 ; N onehalf ; B -7 -12 775 688 ; +C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ; +C -1 ; WX 500 ; N ocircumflex ; B 25 -14 476 704 ; +C -1 ; WX 556 ; N ntilde ; B 21 0 539 674 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 16 -19 701 923 ; +C -1 ; WX 667 ; N Eacute ; B 16 0 641 923 ; +C -1 ; WX 444 ; N emacron ; B 25 -14 426 637 ; +C -1 ; WX 500 ; N gbreve ; B 28 -206 483 691 ; +C -1 ; WX 750 ; N onequarter ; B 28 -12 743 688 ; +C -1 ; WX 556 ; N Scaron ; B 35 -19 513 914 ; +C -1 ; WX 556 ; N Scommaaccent ; B 35 -218 513 692 ; +C -1 ; WX 778 ; N Ohungarumlaut ; B 35 -19 743 923 ; +C -1 ; WX 400 ; N degree ; B 57 402 343 688 ; +C -1 ; WX 500 ; N ograve ; B 25 -14 476 713 ; +C -1 ; WX 722 ; N Ccaron ; B 49 -19 687 914 ; +C -1 ; WX 556 ; N ugrave ; B 16 -14 537 713 ; +C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ; +C -1 ; WX 722 ; N Dcaron ; B 14 0 690 914 ; +C -1 ; WX 444 ; N rcommaaccent ; B 29 -218 434 473 ; +C -1 ; WX 722 ; N Ntilde ; B 16 -18 701 884 ; +C -1 ; WX 500 ; N otilde ; B 25 -14 476 674 ; +C -1 ; WX 722 ; N Rcommaaccent ; B 26 -218 715 676 ; +C -1 ; WX 667 ; N Lcommaaccent ; B 19 -218 638 676 ; +C -1 ; WX 722 ; N Atilde ; B 9 0 689 884 ; +C -1 ; WX 722 ; N Aogonek ; B 9 -193 699 690 ; +C -1 ; WX 722 ; N Aring ; B 9 0 689 935 ; +C -1 ; WX 778 ; N Otilde ; B 35 -19 743 884 ; +C -1 ; WX 444 ; N zdotaccent ; B 21 0 420 691 ; +C -1 ; WX 667 ; N Ecaron ; B 16 0 641 914 ; +C -1 ; WX 389 ; N Iogonek ; B 20 -193 370 676 ; +C -1 ; WX 556 ; N kcommaaccent ; B 22 -218 543 676 ; +C -1 ; WX 570 ; N minus ; B 33 209 537 297 ; +C -1 ; WX 389 ; N Icircumflex ; B 20 0 370 914 ; +C -1 ; WX 556 ; N ncaron ; B 21 0 539 704 ; +C -1 ; WX 333 ; N tcommaaccent ; B 20 -218 332 630 ; +C -1 ; WX 570 ; N logicalnot ; B 33 108 537 399 ; +C -1 ; WX 500 ; N odieresis ; B 25 -14 476 667 ; +C -1 ; WX 556 ; N udieresis ; B 16 -14 537 667 ; +C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ; +C -1 ; WX 500 ; N gcommaaccent ; B 28 -206 483 829 ; +C -1 ; WX 500 ; N eth ; B 25 -14 476 691 ; +C -1 ; WX 444 ; N zcaron ; B 21 0 420 704 ; +C -1 ; WX 556 ; N ncommaaccent ; B 21 -218 539 473 ; +C -1 ; WX 300 ; N onesuperior ; B 28 275 273 688 ; +C -1 ; WX 278 ; N imacron ; B -8 0 272 637 ; +C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2242 +KPX A C -55 +KPX A Cacute -55 +KPX A Ccaron -55 +KPX A Ccedilla -55 +KPX A G -55 +KPX A Gbreve -55 +KPX A Gcommaaccent -55 +KPX A O -45 +KPX A Oacute -45 +KPX A Ocircumflex -45 +KPX A Odieresis -45 +KPX A Ograve -45 +KPX A Ohungarumlaut -45 +KPX A Omacron -45 +KPX A Oslash -45 +KPX A Otilde -45 +KPX A Q -45 +KPX A T -95 +KPX A Tcaron -95 +KPX A Tcommaaccent -95 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -145 +KPX A W -130 +KPX A Y -100 +KPX A Yacute -100 +KPX A Ydieresis -100 +KPX A p -25 +KPX A quoteright -74 +KPX A u -50 +KPX A uacute -50 +KPX A ucircumflex -50 +KPX A udieresis -50 +KPX A ugrave -50 +KPX A uhungarumlaut -50 +KPX A umacron -50 +KPX A uogonek -50 +KPX A uring -50 +KPX A v -100 +KPX A w -90 +KPX A y -74 +KPX A yacute -74 +KPX A ydieresis -74 +KPX Aacute C -55 +KPX Aacute Cacute -55 +KPX Aacute Ccaron -55 +KPX Aacute Ccedilla -55 +KPX Aacute G -55 +KPX Aacute Gbreve -55 +KPX Aacute Gcommaaccent -55 +KPX Aacute O -45 +KPX Aacute Oacute -45 +KPX Aacute Ocircumflex -45 +KPX Aacute Odieresis -45 +KPX Aacute Ograve -45 +KPX Aacute Ohungarumlaut -45 +KPX Aacute Omacron -45 +KPX Aacute Oslash -45 +KPX Aacute Otilde -45 +KPX Aacute Q -45 +KPX Aacute T -95 +KPX Aacute Tcaron -95 +KPX Aacute Tcommaaccent -95 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -145 +KPX Aacute W -130 +KPX Aacute Y -100 +KPX Aacute Yacute -100 +KPX Aacute Ydieresis -100 +KPX Aacute p -25 +KPX Aacute quoteright -74 +KPX Aacute u -50 +KPX Aacute uacute -50 +KPX Aacute ucircumflex -50 +KPX Aacute udieresis -50 +KPX Aacute ugrave -50 +KPX Aacute uhungarumlaut -50 +KPX Aacute umacron -50 +KPX Aacute uogonek -50 +KPX Aacute uring -50 +KPX Aacute v -100 +KPX Aacute w -90 +KPX Aacute y -74 +KPX Aacute yacute -74 +KPX Aacute ydieresis -74 +KPX Abreve C -55 +KPX Abreve Cacute -55 +KPX Abreve Ccaron -55 +KPX Abreve Ccedilla -55 +KPX Abreve G -55 +KPX Abreve Gbreve -55 +KPX Abreve Gcommaaccent -55 +KPX Abreve O -45 +KPX Abreve Oacute -45 +KPX Abreve Ocircumflex -45 +KPX Abreve Odieresis -45 +KPX Abreve Ograve -45 +KPX Abreve Ohungarumlaut -45 +KPX Abreve Omacron -45 +KPX Abreve Oslash -45 +KPX Abreve Otilde -45 +KPX Abreve Q -45 +KPX Abreve T -95 +KPX Abreve Tcaron -95 +KPX Abreve Tcommaaccent -95 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -145 +KPX Abreve W -130 +KPX Abreve Y -100 +KPX Abreve Yacute -100 +KPX Abreve Ydieresis -100 +KPX Abreve p -25 +KPX Abreve quoteright -74 +KPX Abreve u -50 +KPX Abreve uacute -50 +KPX Abreve ucircumflex -50 +KPX Abreve udieresis -50 +KPX Abreve ugrave -50 +KPX Abreve uhungarumlaut -50 +KPX Abreve umacron -50 +KPX Abreve uogonek -50 +KPX Abreve uring -50 +KPX Abreve v -100 +KPX Abreve w -90 +KPX Abreve y -74 +KPX Abreve yacute -74 +KPX Abreve ydieresis -74 +KPX Acircumflex C -55 +KPX Acircumflex Cacute -55 +KPX Acircumflex Ccaron -55 +KPX Acircumflex Ccedilla -55 +KPX Acircumflex G -55 +KPX Acircumflex Gbreve -55 +KPX Acircumflex Gcommaaccent -55 +KPX Acircumflex O -45 +KPX Acircumflex Oacute -45 +KPX Acircumflex Ocircumflex -45 +KPX Acircumflex Odieresis -45 +KPX Acircumflex Ograve -45 +KPX Acircumflex Ohungarumlaut -45 +KPX Acircumflex Omacron -45 +KPX Acircumflex Oslash -45 +KPX Acircumflex Otilde -45 +KPX Acircumflex Q -45 +KPX Acircumflex T -95 +KPX Acircumflex Tcaron -95 +KPX Acircumflex Tcommaaccent -95 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -145 +KPX Acircumflex W -130 +KPX Acircumflex Y -100 +KPX Acircumflex Yacute -100 +KPX Acircumflex Ydieresis -100 +KPX Acircumflex p -25 +KPX Acircumflex quoteright -74 +KPX Acircumflex u -50 +KPX Acircumflex uacute -50 +KPX Acircumflex ucircumflex -50 +KPX Acircumflex udieresis -50 +KPX Acircumflex ugrave -50 +KPX Acircumflex uhungarumlaut -50 +KPX Acircumflex umacron -50 +KPX Acircumflex uogonek -50 +KPX Acircumflex uring -50 +KPX Acircumflex v -100 +KPX Acircumflex w -90 +KPX Acircumflex y -74 +KPX Acircumflex yacute -74 +KPX Acircumflex ydieresis -74 +KPX Adieresis C -55 +KPX Adieresis Cacute -55 +KPX Adieresis Ccaron -55 +KPX Adieresis Ccedilla -55 +KPX Adieresis G -55 +KPX Adieresis Gbreve -55 +KPX Adieresis Gcommaaccent -55 +KPX Adieresis O -45 +KPX Adieresis Oacute -45 +KPX Adieresis Ocircumflex -45 +KPX Adieresis Odieresis -45 +KPX Adieresis Ograve -45 +KPX Adieresis Ohungarumlaut -45 +KPX Adieresis Omacron -45 +KPX Adieresis Oslash -45 +KPX Adieresis Otilde -45 +KPX Adieresis Q -45 +KPX Adieresis T -95 +KPX Adieresis Tcaron -95 +KPX Adieresis Tcommaaccent -95 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -145 +KPX Adieresis W -130 +KPX Adieresis Y -100 +KPX Adieresis Yacute -100 +KPX Adieresis Ydieresis -100 +KPX Adieresis p -25 +KPX Adieresis quoteright -74 +KPX Adieresis u -50 +KPX Adieresis uacute -50 +KPX Adieresis ucircumflex -50 +KPX Adieresis udieresis -50 +KPX Adieresis ugrave -50 +KPX Adieresis uhungarumlaut -50 +KPX Adieresis umacron -50 +KPX Adieresis uogonek -50 +KPX Adieresis uring -50 +KPX Adieresis v -100 +KPX Adieresis w -90 +KPX Adieresis y -74 +KPX Adieresis yacute -74 +KPX Adieresis ydieresis -74 +KPX Agrave C -55 +KPX Agrave Cacute -55 +KPX Agrave Ccaron -55 +KPX Agrave Ccedilla -55 +KPX Agrave G -55 +KPX Agrave Gbreve -55 +KPX Agrave Gcommaaccent -55 +KPX Agrave O -45 +KPX Agrave Oacute -45 +KPX Agrave Ocircumflex -45 +KPX Agrave Odieresis -45 +KPX Agrave Ograve -45 +KPX Agrave Ohungarumlaut -45 +KPX Agrave Omacron -45 +KPX Agrave Oslash -45 +KPX Agrave Otilde -45 +KPX Agrave Q -45 +KPX Agrave T -95 +KPX Agrave Tcaron -95 +KPX Agrave Tcommaaccent -95 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -145 +KPX Agrave W -130 +KPX Agrave Y -100 +KPX Agrave Yacute -100 +KPX Agrave Ydieresis -100 +KPX Agrave p -25 +KPX Agrave quoteright -74 +KPX Agrave u -50 +KPX Agrave uacute -50 +KPX Agrave ucircumflex -50 +KPX Agrave udieresis -50 +KPX Agrave ugrave -50 +KPX Agrave uhungarumlaut -50 +KPX Agrave umacron -50 +KPX Agrave uogonek -50 +KPX Agrave uring -50 +KPX Agrave v -100 +KPX Agrave w -90 +KPX Agrave y -74 +KPX Agrave yacute -74 +KPX Agrave ydieresis -74 +KPX Amacron C -55 +KPX Amacron Cacute -55 +KPX Amacron Ccaron -55 +KPX Amacron Ccedilla -55 +KPX Amacron G -55 +KPX Amacron Gbreve -55 +KPX Amacron Gcommaaccent -55 +KPX Amacron O -45 +KPX Amacron Oacute -45 +KPX Amacron Ocircumflex -45 +KPX Amacron Odieresis -45 +KPX Amacron Ograve -45 +KPX Amacron Ohungarumlaut -45 +KPX Amacron Omacron -45 +KPX Amacron Oslash -45 +KPX Amacron Otilde -45 +KPX Amacron Q -45 +KPX Amacron T -95 +KPX Amacron Tcaron -95 +KPX Amacron Tcommaaccent -95 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -145 +KPX Amacron W -130 +KPX Amacron Y -100 +KPX Amacron Yacute -100 +KPX Amacron Ydieresis -100 +KPX Amacron p -25 +KPX Amacron quoteright -74 +KPX Amacron u -50 +KPX Amacron uacute -50 +KPX Amacron ucircumflex -50 +KPX Amacron udieresis -50 +KPX Amacron ugrave -50 +KPX Amacron uhungarumlaut -50 +KPX Amacron umacron -50 +KPX Amacron uogonek -50 +KPX Amacron uring -50 +KPX Amacron v -100 +KPX Amacron w -90 +KPX Amacron y -74 +KPX Amacron yacute -74 +KPX Amacron ydieresis -74 +KPX Aogonek C -55 +KPX Aogonek Cacute -55 +KPX Aogonek Ccaron -55 +KPX Aogonek Ccedilla -55 +KPX Aogonek G -55 +KPX Aogonek Gbreve -55 +KPX Aogonek Gcommaaccent -55 +KPX Aogonek O -45 +KPX Aogonek Oacute -45 +KPX Aogonek Ocircumflex -45 +KPX Aogonek Odieresis -45 +KPX Aogonek Ograve -45 +KPX Aogonek Ohungarumlaut -45 +KPX Aogonek Omacron -45 +KPX Aogonek Oslash -45 +KPX Aogonek Otilde -45 +KPX Aogonek Q -45 +KPX Aogonek T -95 +KPX Aogonek Tcaron -95 +KPX Aogonek Tcommaaccent -95 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -145 +KPX Aogonek W -130 +KPX Aogonek Y -100 +KPX Aogonek Yacute -100 +KPX Aogonek Ydieresis -100 +KPX Aogonek p -25 +KPX Aogonek quoteright -74 +KPX Aogonek u -50 +KPX Aogonek uacute -50 +KPX Aogonek ucircumflex -50 +KPX Aogonek udieresis -50 +KPX Aogonek ugrave -50 +KPX Aogonek uhungarumlaut -50 +KPX Aogonek umacron -50 +KPX Aogonek uogonek -50 +KPX Aogonek uring -50 +KPX Aogonek v -100 +KPX Aogonek w -90 +KPX Aogonek y -34 +KPX Aogonek yacute -34 +KPX Aogonek ydieresis -34 +KPX Aring C -55 +KPX Aring Cacute -55 +KPX Aring Ccaron -55 +KPX Aring Ccedilla -55 +KPX Aring G -55 +KPX Aring Gbreve -55 +KPX Aring Gcommaaccent -55 +KPX Aring O -45 +KPX Aring Oacute -45 +KPX Aring Ocircumflex -45 +KPX Aring Odieresis -45 +KPX Aring Ograve -45 +KPX Aring Ohungarumlaut -45 +KPX Aring Omacron -45 +KPX Aring Oslash -45 +KPX Aring Otilde -45 +KPX Aring Q -45 +KPX Aring T -95 +KPX Aring Tcaron -95 +KPX Aring Tcommaaccent -95 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -145 +KPX Aring W -130 +KPX Aring Y -100 +KPX Aring Yacute -100 +KPX Aring Ydieresis -100 +KPX Aring p -25 +KPX Aring quoteright -74 +KPX Aring u -50 +KPX Aring uacute -50 +KPX Aring ucircumflex -50 +KPX Aring udieresis -50 +KPX Aring ugrave -50 +KPX Aring uhungarumlaut -50 +KPX Aring umacron -50 +KPX Aring uogonek -50 +KPX Aring uring -50 +KPX Aring v -100 +KPX Aring w -90 +KPX Aring y -74 +KPX Aring yacute -74 +KPX Aring ydieresis -74 +KPX Atilde C -55 +KPX Atilde Cacute -55 +KPX Atilde Ccaron -55 +KPX Atilde Ccedilla -55 +KPX Atilde G -55 +KPX Atilde Gbreve -55 +KPX Atilde Gcommaaccent -55 +KPX Atilde O -45 +KPX Atilde Oacute -45 +KPX Atilde Ocircumflex -45 +KPX Atilde Odieresis -45 +KPX Atilde Ograve -45 +KPX Atilde Ohungarumlaut -45 +KPX Atilde Omacron -45 +KPX Atilde Oslash -45 +KPX Atilde Otilde -45 +KPX Atilde Q -45 +KPX Atilde T -95 +KPX Atilde Tcaron -95 +KPX Atilde Tcommaaccent -95 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -145 +KPX Atilde W -130 +KPX Atilde Y -100 +KPX Atilde Yacute -100 +KPX Atilde Ydieresis -100 +KPX Atilde p -25 +KPX Atilde quoteright -74 +KPX Atilde u -50 +KPX Atilde uacute -50 +KPX Atilde ucircumflex -50 +KPX Atilde udieresis -50 +KPX Atilde ugrave -50 +KPX Atilde uhungarumlaut -50 +KPX Atilde umacron -50 +KPX Atilde uogonek -50 +KPX Atilde uring -50 +KPX Atilde v -100 +KPX Atilde w -90 +KPX Atilde y -74 +KPX Atilde yacute -74 +KPX Atilde ydieresis -74 +KPX B A -30 +KPX B Aacute -30 +KPX B Abreve -30 +KPX B Acircumflex -30 +KPX B Adieresis -30 +KPX B Agrave -30 +KPX B Amacron -30 +KPX B Aogonek -30 +KPX B Aring -30 +KPX B Atilde -30 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX D A -35 +KPX D Aacute -35 +KPX D Abreve -35 +KPX D Acircumflex -35 +KPX D Adieresis -35 +KPX D Agrave -35 +KPX D Amacron -35 +KPX D Aogonek -35 +KPX D Aring -35 +KPX D Atilde -35 +KPX D V -40 +KPX D W -40 +KPX D Y -40 +KPX D Yacute -40 +KPX D Ydieresis -40 +KPX D period -20 +KPX Dcaron A -35 +KPX Dcaron Aacute -35 +KPX Dcaron Abreve -35 +KPX Dcaron Acircumflex -35 +KPX Dcaron Adieresis -35 +KPX Dcaron Agrave -35 +KPX Dcaron Amacron -35 +KPX Dcaron Aogonek -35 +KPX Dcaron Aring -35 +KPX Dcaron Atilde -35 +KPX Dcaron V -40 +KPX Dcaron W -40 +KPX Dcaron Y -40 +KPX Dcaron Yacute -40 +KPX Dcaron Ydieresis -40 +KPX Dcaron period -20 +KPX Dcroat A -35 +KPX Dcroat Aacute -35 +KPX Dcroat Abreve -35 +KPX Dcroat Acircumflex -35 +KPX Dcroat Adieresis -35 +KPX Dcroat Agrave -35 +KPX Dcroat Amacron -35 +KPX Dcroat Aogonek -35 +KPX Dcroat Aring -35 +KPX Dcroat Atilde -35 +KPX Dcroat V -40 +KPX Dcroat W -40 +KPX Dcroat Y -40 +KPX Dcroat Yacute -40 +KPX Dcroat Ydieresis -40 +KPX Dcroat period -20 +KPX F A -90 +KPX F Aacute -90 +KPX F Abreve -90 +KPX F Acircumflex -90 +KPX F Adieresis -90 +KPX F Agrave -90 +KPX F Amacron -90 +KPX F Aogonek -90 +KPX F Aring -90 +KPX F Atilde -90 +KPX F a -25 +KPX F aacute -25 +KPX F abreve -25 +KPX F acircumflex -25 +KPX F adieresis -25 +KPX F agrave -25 +KPX F amacron -25 +KPX F aogonek -25 +KPX F aring -25 +KPX F atilde -25 +KPX F comma -92 +KPX F e -25 +KPX F eacute -25 +KPX F ecaron -25 +KPX F ecircumflex -25 +KPX F edieresis -25 +KPX F edotaccent -25 +KPX F egrave -25 +KPX F emacron -25 +KPX F eogonek -25 +KPX F o -25 +KPX F oacute -25 +KPX F ocircumflex -25 +KPX F odieresis -25 +KPX F ograve -25 +KPX F ohungarumlaut -25 +KPX F omacron -25 +KPX F oslash -25 +KPX F otilde -25 +KPX F period -110 +KPX J A -30 +KPX J Aacute -30 +KPX J Abreve -30 +KPX J Acircumflex -30 +KPX J Adieresis -30 +KPX J Agrave -30 +KPX J Amacron -30 +KPX J Aogonek -30 +KPX J Aring -30 +KPX J Atilde -30 +KPX J a -15 +KPX J aacute -15 +KPX J abreve -15 +KPX J acircumflex -15 +KPX J adieresis -15 +KPX J agrave -15 +KPX J amacron -15 +KPX J aogonek -15 +KPX J aring -15 +KPX J atilde -15 +KPX J e -15 +KPX J eacute -15 +KPX J ecaron -15 +KPX J ecircumflex -15 +KPX J edieresis -15 +KPX J edotaccent -15 +KPX J egrave -15 +KPX J emacron -15 +KPX J eogonek -15 +KPX J o -15 +KPX J oacute -15 +KPX J ocircumflex -15 +KPX J odieresis -15 +KPX J ograve -15 +KPX J ohungarumlaut -15 +KPX J omacron -15 +KPX J oslash -15 +KPX J otilde -15 +KPX J period -20 +KPX J u -15 +KPX J uacute -15 +KPX J ucircumflex -15 +KPX J udieresis -15 +KPX J ugrave -15 +KPX J uhungarumlaut -15 +KPX J umacron -15 +KPX J uogonek -15 +KPX J uring -15 +KPX K O -30 +KPX K Oacute -30 +KPX K Ocircumflex -30 +KPX K Odieresis -30 +KPX K Ograve -30 +KPX K Ohungarumlaut -30 +KPX K Omacron -30 +KPX K Oslash -30 +KPX K Otilde -30 +KPX K e -25 +KPX K eacute -25 +KPX K ecaron -25 +KPX K ecircumflex -25 +KPX K edieresis -25 +KPX K edotaccent -25 +KPX K egrave -25 +KPX K emacron -25 +KPX K eogonek -25 +KPX K o -25 +KPX K oacute -25 +KPX K ocircumflex -25 +KPX K odieresis -25 +KPX K ograve -25 +KPX K ohungarumlaut -25 +KPX K omacron -25 +KPX K oslash -25 +KPX K otilde -25 +KPX K u -15 +KPX K uacute -15 +KPX K ucircumflex -15 +KPX K udieresis -15 +KPX K ugrave -15 +KPX K uhungarumlaut -15 +KPX K umacron -15 +KPX K uogonek -15 +KPX K uring -15 +KPX K y -45 +KPX K yacute -45 +KPX K ydieresis -45 +KPX Kcommaaccent O -30 +KPX Kcommaaccent Oacute -30 +KPX Kcommaaccent Ocircumflex -30 +KPX Kcommaaccent Odieresis -30 +KPX Kcommaaccent Ograve -30 +KPX Kcommaaccent Ohungarumlaut -30 +KPX Kcommaaccent Omacron -30 +KPX Kcommaaccent Oslash -30 +KPX Kcommaaccent Otilde -30 +KPX Kcommaaccent e -25 +KPX Kcommaaccent eacute -25 +KPX Kcommaaccent ecaron -25 +KPX Kcommaaccent ecircumflex -25 +KPX Kcommaaccent edieresis -25 +KPX Kcommaaccent edotaccent -25 +KPX Kcommaaccent egrave -25 +KPX Kcommaaccent emacron -25 +KPX Kcommaaccent eogonek -25 +KPX Kcommaaccent o -25 +KPX Kcommaaccent oacute -25 +KPX Kcommaaccent ocircumflex -25 +KPX Kcommaaccent odieresis -25 +KPX Kcommaaccent ograve -25 +KPX Kcommaaccent ohungarumlaut -25 +KPX Kcommaaccent omacron -25 +KPX Kcommaaccent oslash -25 +KPX Kcommaaccent otilde -25 +KPX Kcommaaccent u -15 +KPX Kcommaaccent uacute -15 +KPX Kcommaaccent ucircumflex -15 +KPX Kcommaaccent udieresis -15 +KPX Kcommaaccent ugrave -15 +KPX Kcommaaccent uhungarumlaut -15 +KPX Kcommaaccent umacron -15 +KPX Kcommaaccent uogonek -15 +KPX Kcommaaccent uring -15 +KPX Kcommaaccent y -45 +KPX Kcommaaccent yacute -45 +KPX Kcommaaccent ydieresis -45 +KPX L T -92 +KPX L Tcaron -92 +KPX L Tcommaaccent -92 +KPX L V -92 +KPX L W -92 +KPX L Y -92 +KPX L Yacute -92 +KPX L Ydieresis -92 +KPX L quotedblright -20 +KPX L quoteright -110 +KPX L y -55 +KPX L yacute -55 +KPX L ydieresis -55 +KPX Lacute T -92 +KPX Lacute Tcaron -92 +KPX Lacute Tcommaaccent -92 +KPX Lacute V -92 +KPX Lacute W -92 +KPX Lacute Y -92 +KPX Lacute Yacute -92 +KPX Lacute Ydieresis -92 +KPX Lacute quotedblright -20 +KPX Lacute quoteright -110 +KPX Lacute y -55 +KPX Lacute yacute -55 +KPX Lacute ydieresis -55 +KPX Lcommaaccent T -92 +KPX Lcommaaccent Tcaron -92 +KPX Lcommaaccent Tcommaaccent -92 +KPX Lcommaaccent V -92 +KPX Lcommaaccent W -92 +KPX Lcommaaccent Y -92 +KPX Lcommaaccent Yacute -92 +KPX Lcommaaccent Ydieresis -92 +KPX Lcommaaccent quotedblright -20 +KPX Lcommaaccent quoteright -110 +KPX Lcommaaccent y -55 +KPX Lcommaaccent yacute -55 +KPX Lcommaaccent ydieresis -55 +KPX Lslash T -92 +KPX Lslash Tcaron -92 +KPX Lslash Tcommaaccent -92 +KPX Lslash V -92 +KPX Lslash W -92 +KPX Lslash Y -92 +KPX Lslash Yacute -92 +KPX Lslash Ydieresis -92 +KPX Lslash quotedblright -20 +KPX Lslash quoteright -110 +KPX Lslash y -55 +KPX Lslash yacute -55 +KPX Lslash ydieresis -55 +KPX N A -20 +KPX N Aacute -20 +KPX N Abreve -20 +KPX N Acircumflex -20 +KPX N Adieresis -20 +KPX N Agrave -20 +KPX N Amacron -20 +KPX N Aogonek -20 +KPX N Aring -20 +KPX N Atilde -20 +KPX Nacute A -20 +KPX Nacute Aacute -20 +KPX Nacute Abreve -20 +KPX Nacute Acircumflex -20 +KPX Nacute Adieresis -20 +KPX Nacute Agrave -20 +KPX Nacute Amacron -20 +KPX Nacute Aogonek -20 +KPX Nacute Aring -20 +KPX Nacute Atilde -20 +KPX Ncaron A -20 +KPX Ncaron Aacute -20 +KPX Ncaron Abreve -20 +KPX Ncaron Acircumflex -20 +KPX Ncaron Adieresis -20 +KPX Ncaron Agrave -20 +KPX Ncaron Amacron -20 +KPX Ncaron Aogonek -20 +KPX Ncaron Aring -20 +KPX Ncaron Atilde -20 +KPX Ncommaaccent A -20 +KPX Ncommaaccent Aacute -20 +KPX Ncommaaccent Abreve -20 +KPX Ncommaaccent Acircumflex -20 +KPX Ncommaaccent Adieresis -20 +KPX Ncommaaccent Agrave -20 +KPX Ncommaaccent Amacron -20 +KPX Ncommaaccent Aogonek -20 +KPX Ncommaaccent Aring -20 +KPX Ncommaaccent Atilde -20 +KPX Ntilde A -20 +KPX Ntilde Aacute -20 +KPX Ntilde Abreve -20 +KPX Ntilde Acircumflex -20 +KPX Ntilde Adieresis -20 +KPX Ntilde Agrave -20 +KPX Ntilde Amacron -20 +KPX Ntilde Aogonek -20 +KPX Ntilde Aring -20 +KPX Ntilde Atilde -20 +KPX O A -40 +KPX O Aacute -40 +KPX O Abreve -40 +KPX O Acircumflex -40 +KPX O Adieresis -40 +KPX O Agrave -40 +KPX O Amacron -40 +KPX O Aogonek -40 +KPX O Aring -40 +KPX O Atilde -40 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -50 +KPX O X -40 +KPX O Y -50 +KPX O Yacute -50 +KPX O Ydieresis -50 +KPX Oacute A -40 +KPX Oacute Aacute -40 +KPX Oacute Abreve -40 +KPX Oacute Acircumflex -40 +KPX Oacute Adieresis -40 +KPX Oacute Agrave -40 +KPX Oacute Amacron -40 +KPX Oacute Aogonek -40 +KPX Oacute Aring -40 +KPX Oacute Atilde -40 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -50 +KPX Oacute X -40 +KPX Oacute Y -50 +KPX Oacute Yacute -50 +KPX Oacute Ydieresis -50 +KPX Ocircumflex A -40 +KPX Ocircumflex Aacute -40 +KPX Ocircumflex Abreve -40 +KPX Ocircumflex Acircumflex -40 +KPX Ocircumflex Adieresis -40 +KPX Ocircumflex Agrave -40 +KPX Ocircumflex Amacron -40 +KPX Ocircumflex Aogonek -40 +KPX Ocircumflex Aring -40 +KPX Ocircumflex Atilde -40 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -50 +KPX Ocircumflex X -40 +KPX Ocircumflex Y -50 +KPX Ocircumflex Yacute -50 +KPX Ocircumflex Ydieresis -50 +KPX Odieresis A -40 +KPX Odieresis Aacute -40 +KPX Odieresis Abreve -40 +KPX Odieresis Acircumflex -40 +KPX Odieresis Adieresis -40 +KPX Odieresis Agrave -40 +KPX Odieresis Amacron -40 +KPX Odieresis Aogonek -40 +KPX Odieresis Aring -40 +KPX Odieresis Atilde -40 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -50 +KPX Odieresis X -40 +KPX Odieresis Y -50 +KPX Odieresis Yacute -50 +KPX Odieresis Ydieresis -50 +KPX Ograve A -40 +KPX Ograve Aacute -40 +KPX Ograve Abreve -40 +KPX Ograve Acircumflex -40 +KPX Ograve Adieresis -40 +KPX Ograve Agrave -40 +KPX Ograve Amacron -40 +KPX Ograve Aogonek -40 +KPX Ograve Aring -40 +KPX Ograve Atilde -40 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -50 +KPX Ograve X -40 +KPX Ograve Y -50 +KPX Ograve Yacute -50 +KPX Ograve Ydieresis -50 +KPX Ohungarumlaut A -40 +KPX Ohungarumlaut Aacute -40 +KPX Ohungarumlaut Abreve -40 +KPX Ohungarumlaut Acircumflex -40 +KPX Ohungarumlaut Adieresis -40 +KPX Ohungarumlaut Agrave -40 +KPX Ohungarumlaut Amacron -40 +KPX Ohungarumlaut Aogonek -40 +KPX Ohungarumlaut Aring -40 +KPX Ohungarumlaut Atilde -40 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -50 +KPX Ohungarumlaut X -40 +KPX Ohungarumlaut Y -50 +KPX Ohungarumlaut Yacute -50 +KPX Ohungarumlaut Ydieresis -50 +KPX Omacron A -40 +KPX Omacron Aacute -40 +KPX Omacron Abreve -40 +KPX Omacron Acircumflex -40 +KPX Omacron Adieresis -40 +KPX Omacron Agrave -40 +KPX Omacron Amacron -40 +KPX Omacron Aogonek -40 +KPX Omacron Aring -40 +KPX Omacron Atilde -40 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -50 +KPX Omacron X -40 +KPX Omacron Y -50 +KPX Omacron Yacute -50 +KPX Omacron Ydieresis -50 +KPX Oslash A -40 +KPX Oslash Aacute -40 +KPX Oslash Abreve -40 +KPX Oslash Acircumflex -40 +KPX Oslash Adieresis -40 +KPX Oslash Agrave -40 +KPX Oslash Amacron -40 +KPX Oslash Aogonek -40 +KPX Oslash Aring -40 +KPX Oslash Atilde -40 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -50 +KPX Oslash X -40 +KPX Oslash Y -50 +KPX Oslash Yacute -50 +KPX Oslash Ydieresis -50 +KPX Otilde A -40 +KPX Otilde Aacute -40 +KPX Otilde Abreve -40 +KPX Otilde Acircumflex -40 +KPX Otilde Adieresis -40 +KPX Otilde Agrave -40 +KPX Otilde Amacron -40 +KPX Otilde Aogonek -40 +KPX Otilde Aring -40 +KPX Otilde Atilde -40 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -50 +KPX Otilde X -40 +KPX Otilde Y -50 +KPX Otilde Yacute -50 +KPX Otilde Ydieresis -50 +KPX P A -74 +KPX P Aacute -74 +KPX P Abreve -74 +KPX P Acircumflex -74 +KPX P Adieresis -74 +KPX P Agrave -74 +KPX P Amacron -74 +KPX P Aogonek -74 +KPX P Aring -74 +KPX P Atilde -74 +KPX P a -10 +KPX P aacute -10 +KPX P abreve -10 +KPX P acircumflex -10 +KPX P adieresis -10 +KPX P agrave -10 +KPX P amacron -10 +KPX P aogonek -10 +KPX P aring -10 +KPX P atilde -10 +KPX P comma -92 +KPX P e -20 +KPX P eacute -20 +KPX P ecaron -20 +KPX P ecircumflex -20 +KPX P edieresis -20 +KPX P edotaccent -20 +KPX P egrave -20 +KPX P emacron -20 +KPX P eogonek -20 +KPX P o -20 +KPX P oacute -20 +KPX P ocircumflex -20 +KPX P odieresis -20 +KPX P ograve -20 +KPX P ohungarumlaut -20 +KPX P omacron -20 +KPX P oslash -20 +KPX P otilde -20 +KPX P period -110 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX Q period -20 +KPX R O -30 +KPX R Oacute -30 +KPX R Ocircumflex -30 +KPX R Odieresis -30 +KPX R Ograve -30 +KPX R Ohungarumlaut -30 +KPX R Omacron -30 +KPX R Oslash -30 +KPX R Otilde -30 +KPX R T -40 +KPX R Tcaron -40 +KPX R Tcommaaccent -40 +KPX R U -30 +KPX R Uacute -30 +KPX R Ucircumflex -30 +KPX R Udieresis -30 +KPX R Ugrave -30 +KPX R Uhungarumlaut -30 +KPX R Umacron -30 +KPX R Uogonek -30 +KPX R Uring -30 +KPX R V -55 +KPX R W -35 +KPX R Y -35 +KPX R Yacute -35 +KPX R Ydieresis -35 +KPX Racute O -30 +KPX Racute Oacute -30 +KPX Racute Ocircumflex -30 +KPX Racute Odieresis -30 +KPX Racute Ograve -30 +KPX Racute Ohungarumlaut -30 +KPX Racute Omacron -30 +KPX Racute Oslash -30 +KPX Racute Otilde -30 +KPX Racute T -40 +KPX Racute Tcaron -40 +KPX Racute Tcommaaccent -40 +KPX Racute U -30 +KPX Racute Uacute -30 +KPX Racute Ucircumflex -30 +KPX Racute Udieresis -30 +KPX Racute Ugrave -30 +KPX Racute Uhungarumlaut -30 +KPX Racute Umacron -30 +KPX Racute Uogonek -30 +KPX Racute Uring -30 +KPX Racute V -55 +KPX Racute W -35 +KPX Racute Y -35 +KPX Racute Yacute -35 +KPX Racute Ydieresis -35 +KPX Rcaron O -30 +KPX Rcaron Oacute -30 +KPX Rcaron Ocircumflex -30 +KPX Rcaron Odieresis -30 +KPX Rcaron Ograve -30 +KPX Rcaron Ohungarumlaut -30 +KPX Rcaron Omacron -30 +KPX Rcaron Oslash -30 +KPX Rcaron Otilde -30 +KPX Rcaron T -40 +KPX Rcaron Tcaron -40 +KPX Rcaron Tcommaaccent -40 +KPX Rcaron U -30 +KPX Rcaron Uacute -30 +KPX Rcaron Ucircumflex -30 +KPX Rcaron Udieresis -30 +KPX Rcaron Ugrave -30 +KPX Rcaron Uhungarumlaut -30 +KPX Rcaron Umacron -30 +KPX Rcaron Uogonek -30 +KPX Rcaron Uring -30 +KPX Rcaron V -55 +KPX Rcaron W -35 +KPX Rcaron Y -35 +KPX Rcaron Yacute -35 +KPX Rcaron Ydieresis -35 +KPX Rcommaaccent O -30 +KPX Rcommaaccent Oacute -30 +KPX Rcommaaccent Ocircumflex -30 +KPX Rcommaaccent Odieresis -30 +KPX Rcommaaccent Ograve -30 +KPX Rcommaaccent Ohungarumlaut -30 +KPX Rcommaaccent Omacron -30 +KPX Rcommaaccent Oslash -30 +KPX Rcommaaccent Otilde -30 +KPX Rcommaaccent T -40 +KPX Rcommaaccent Tcaron -40 +KPX Rcommaaccent Tcommaaccent -40 +KPX Rcommaaccent U -30 +KPX Rcommaaccent Uacute -30 +KPX Rcommaaccent Ucircumflex -30 +KPX Rcommaaccent Udieresis -30 +KPX Rcommaaccent Ugrave -30 +KPX Rcommaaccent Uhungarumlaut -30 +KPX Rcommaaccent Umacron -30 +KPX Rcommaaccent Uogonek -30 +KPX Rcommaaccent Uring -30 +KPX Rcommaaccent V -55 +KPX Rcommaaccent W -35 +KPX Rcommaaccent Y -35 +KPX Rcommaaccent Yacute -35 +KPX Rcommaaccent Ydieresis -35 +KPX T A -90 +KPX T Aacute -90 +KPX T Abreve -90 +KPX T Acircumflex -90 +KPX T Adieresis -90 +KPX T Agrave -90 +KPX T Amacron -90 +KPX T Aogonek -90 +KPX T Aring -90 +KPX T Atilde -90 +KPX T O -18 +KPX T Oacute -18 +KPX T Ocircumflex -18 +KPX T Odieresis -18 +KPX T Ograve -18 +KPX T Ohungarumlaut -18 +KPX T Omacron -18 +KPX T Oslash -18 +KPX T Otilde -18 +KPX T a -92 +KPX T aacute -92 +KPX T abreve -52 +KPX T acircumflex -52 +KPX T adieresis -52 +KPX T agrave -52 +KPX T amacron -52 +KPX T aogonek -92 +KPX T aring -92 +KPX T atilde -52 +KPX T colon -74 +KPX T comma -74 +KPX T e -92 +KPX T eacute -92 +KPX T ecaron -92 +KPX T ecircumflex -92 +KPX T edieresis -52 +KPX T edotaccent -92 +KPX T egrave -52 +KPX T emacron -52 +KPX T eogonek -92 +KPX T hyphen -92 +KPX T i -18 +KPX T iacute -18 +KPX T iogonek -18 +KPX T o -92 +KPX T oacute -92 +KPX T ocircumflex -92 +KPX T odieresis -92 +KPX T ograve -92 +KPX T ohungarumlaut -92 +KPX T omacron -92 +KPX T oslash -92 +KPX T otilde -92 +KPX T period -90 +KPX T r -74 +KPX T racute -74 +KPX T rcaron -74 +KPX T rcommaaccent -74 +KPX T semicolon -74 +KPX T u -92 +KPX T uacute -92 +KPX T ucircumflex -92 +KPX T udieresis -92 +KPX T ugrave -92 +KPX T uhungarumlaut -92 +KPX T umacron -92 +KPX T uogonek -92 +KPX T uring -92 +KPX T w -74 +KPX T y -34 +KPX T yacute -34 +KPX T ydieresis -34 +KPX Tcaron A -90 +KPX Tcaron Aacute -90 +KPX Tcaron Abreve -90 +KPX Tcaron Acircumflex -90 +KPX Tcaron Adieresis -90 +KPX Tcaron Agrave -90 +KPX Tcaron Amacron -90 +KPX Tcaron Aogonek -90 +KPX Tcaron Aring -90 +KPX Tcaron Atilde -90 +KPX Tcaron O -18 +KPX Tcaron Oacute -18 +KPX Tcaron Ocircumflex -18 +KPX Tcaron Odieresis -18 +KPX Tcaron Ograve -18 +KPX Tcaron Ohungarumlaut -18 +KPX Tcaron Omacron -18 +KPX Tcaron Oslash -18 +KPX Tcaron Otilde -18 +KPX Tcaron a -92 +KPX Tcaron aacute -92 +KPX Tcaron abreve -52 +KPX Tcaron acircumflex -52 +KPX Tcaron adieresis -52 +KPX Tcaron agrave -52 +KPX Tcaron amacron -52 +KPX Tcaron aogonek -92 +KPX Tcaron aring -92 +KPX Tcaron atilde -52 +KPX Tcaron colon -74 +KPX Tcaron comma -74 +KPX Tcaron e -92 +KPX Tcaron eacute -92 +KPX Tcaron ecaron -92 +KPX Tcaron ecircumflex -92 +KPX Tcaron edieresis -52 +KPX Tcaron edotaccent -92 +KPX Tcaron egrave -52 +KPX Tcaron emacron -52 +KPX Tcaron eogonek -92 +KPX Tcaron hyphen -92 +KPX Tcaron i -18 +KPX Tcaron iacute -18 +KPX Tcaron iogonek -18 +KPX Tcaron o -92 +KPX Tcaron oacute -92 +KPX Tcaron ocircumflex -92 +KPX Tcaron odieresis -92 +KPX Tcaron ograve -92 +KPX Tcaron ohungarumlaut -92 +KPX Tcaron omacron -92 +KPX Tcaron oslash -92 +KPX Tcaron otilde -92 +KPX Tcaron period -90 +KPX Tcaron r -74 +KPX Tcaron racute -74 +KPX Tcaron rcaron -74 +KPX Tcaron rcommaaccent -74 +KPX Tcaron semicolon -74 +KPX Tcaron u -92 +KPX Tcaron uacute -92 +KPX Tcaron ucircumflex -92 +KPX Tcaron udieresis -92 +KPX Tcaron ugrave -92 +KPX Tcaron uhungarumlaut -92 +KPX Tcaron umacron -92 +KPX Tcaron uogonek -92 +KPX Tcaron uring -92 +KPX Tcaron w -74 +KPX Tcaron y -34 +KPX Tcaron yacute -34 +KPX Tcaron ydieresis -34 +KPX Tcommaaccent A -90 +KPX Tcommaaccent Aacute -90 +KPX Tcommaaccent Abreve -90 +KPX Tcommaaccent Acircumflex -90 +KPX Tcommaaccent Adieresis -90 +KPX Tcommaaccent Agrave -90 +KPX Tcommaaccent Amacron -90 +KPX Tcommaaccent Aogonek -90 +KPX Tcommaaccent Aring -90 +KPX Tcommaaccent Atilde -90 +KPX Tcommaaccent O -18 +KPX Tcommaaccent Oacute -18 +KPX Tcommaaccent Ocircumflex -18 +KPX Tcommaaccent Odieresis -18 +KPX Tcommaaccent Ograve -18 +KPX Tcommaaccent Ohungarumlaut -18 +KPX Tcommaaccent Omacron -18 +KPX Tcommaaccent Oslash -18 +KPX Tcommaaccent Otilde -18 +KPX Tcommaaccent a -92 +KPX Tcommaaccent aacute -92 +KPX Tcommaaccent abreve -52 +KPX Tcommaaccent acircumflex -52 +KPX Tcommaaccent adieresis -52 +KPX Tcommaaccent agrave -52 +KPX Tcommaaccent amacron -52 +KPX Tcommaaccent aogonek -92 +KPX Tcommaaccent aring -92 +KPX Tcommaaccent atilde -52 +KPX Tcommaaccent colon -74 +KPX Tcommaaccent comma -74 +KPX Tcommaaccent e -92 +KPX Tcommaaccent eacute -92 +KPX Tcommaaccent ecaron -92 +KPX Tcommaaccent ecircumflex -92 +KPX Tcommaaccent edieresis -52 +KPX Tcommaaccent edotaccent -92 +KPX Tcommaaccent egrave -52 +KPX Tcommaaccent emacron -52 +KPX Tcommaaccent eogonek -92 +KPX Tcommaaccent hyphen -92 +KPX Tcommaaccent i -18 +KPX Tcommaaccent iacute -18 +KPX Tcommaaccent iogonek -18 +KPX Tcommaaccent o -92 +KPX Tcommaaccent oacute -92 +KPX Tcommaaccent ocircumflex -92 +KPX Tcommaaccent odieresis -92 +KPX Tcommaaccent ograve -92 +KPX Tcommaaccent ohungarumlaut -92 +KPX Tcommaaccent omacron -92 +KPX Tcommaaccent oslash -92 +KPX Tcommaaccent otilde -92 +KPX Tcommaaccent period -90 +KPX Tcommaaccent r -74 +KPX Tcommaaccent racute -74 +KPX Tcommaaccent rcaron -74 +KPX Tcommaaccent rcommaaccent -74 +KPX Tcommaaccent semicolon -74 +KPX Tcommaaccent u -92 +KPX Tcommaaccent uacute -92 +KPX Tcommaaccent ucircumflex -92 +KPX Tcommaaccent udieresis -92 +KPX Tcommaaccent ugrave -92 +KPX Tcommaaccent uhungarumlaut -92 +KPX Tcommaaccent umacron -92 +KPX Tcommaaccent uogonek -92 +KPX Tcommaaccent uring -92 +KPX Tcommaaccent w -74 +KPX Tcommaaccent y -34 +KPX Tcommaaccent yacute -34 +KPX Tcommaaccent ydieresis -34 +KPX U A -60 +KPX U Aacute -60 +KPX U Abreve -60 +KPX U Acircumflex -60 +KPX U Adieresis -60 +KPX U Agrave -60 +KPX U Amacron -60 +KPX U Aogonek -60 +KPX U Aring -60 +KPX U Atilde -60 +KPX U comma -50 +KPX U period -50 +KPX Uacute A -60 +KPX Uacute Aacute -60 +KPX Uacute Abreve -60 +KPX Uacute Acircumflex -60 +KPX Uacute Adieresis -60 +KPX Uacute Agrave -60 +KPX Uacute Amacron -60 +KPX Uacute Aogonek -60 +KPX Uacute Aring -60 +KPX Uacute Atilde -60 +KPX Uacute comma -50 +KPX Uacute period -50 +KPX Ucircumflex A -60 +KPX Ucircumflex Aacute -60 +KPX Ucircumflex Abreve -60 +KPX Ucircumflex Acircumflex -60 +KPX Ucircumflex Adieresis -60 +KPX Ucircumflex Agrave -60 +KPX Ucircumflex Amacron -60 +KPX Ucircumflex Aogonek -60 +KPX Ucircumflex Aring -60 +KPX Ucircumflex Atilde -60 +KPX Ucircumflex comma -50 +KPX Ucircumflex period -50 +KPX Udieresis A -60 +KPX Udieresis Aacute -60 +KPX Udieresis Abreve -60 +KPX Udieresis Acircumflex -60 +KPX Udieresis Adieresis -60 +KPX Udieresis Agrave -60 +KPX Udieresis Amacron -60 +KPX Udieresis Aogonek -60 +KPX Udieresis Aring -60 +KPX Udieresis Atilde -60 +KPX Udieresis comma -50 +KPX Udieresis period -50 +KPX Ugrave A -60 +KPX Ugrave Aacute -60 +KPX Ugrave Abreve -60 +KPX Ugrave Acircumflex -60 +KPX Ugrave Adieresis -60 +KPX Ugrave Agrave -60 +KPX Ugrave Amacron -60 +KPX Ugrave Aogonek -60 +KPX Ugrave Aring -60 +KPX Ugrave Atilde -60 +KPX Ugrave comma -50 +KPX Ugrave period -50 +KPX Uhungarumlaut A -60 +KPX Uhungarumlaut Aacute -60 +KPX Uhungarumlaut Abreve -60 +KPX Uhungarumlaut Acircumflex -60 +KPX Uhungarumlaut Adieresis -60 +KPX Uhungarumlaut Agrave -60 +KPX Uhungarumlaut Amacron -60 +KPX Uhungarumlaut Aogonek -60 +KPX Uhungarumlaut Aring -60 +KPX Uhungarumlaut Atilde -60 +KPX Uhungarumlaut comma -50 +KPX Uhungarumlaut period -50 +KPX Umacron A -60 +KPX Umacron Aacute -60 +KPX Umacron Abreve -60 +KPX Umacron Acircumflex -60 +KPX Umacron Adieresis -60 +KPX Umacron Agrave -60 +KPX Umacron Amacron -60 +KPX Umacron Aogonek -60 +KPX Umacron Aring -60 +KPX Umacron Atilde -60 +KPX Umacron comma -50 +KPX Umacron period -50 +KPX Uogonek A -60 +KPX Uogonek Aacute -60 +KPX Uogonek Abreve -60 +KPX Uogonek Acircumflex -60 +KPX Uogonek Adieresis -60 +KPX Uogonek Agrave -60 +KPX Uogonek Amacron -60 +KPX Uogonek Aogonek -60 +KPX Uogonek Aring -60 +KPX Uogonek Atilde -60 +KPX Uogonek comma -50 +KPX Uogonek period -50 +KPX Uring A -60 +KPX Uring Aacute -60 +KPX Uring Abreve -60 +KPX Uring Acircumflex -60 +KPX Uring Adieresis -60 +KPX Uring Agrave -60 +KPX Uring Amacron -60 +KPX Uring Aogonek -60 +KPX Uring Aring -60 +KPX Uring Atilde -60 +KPX Uring comma -50 +KPX Uring period -50 +KPX V A -135 +KPX V Aacute -135 +KPX V Abreve -135 +KPX V Acircumflex -135 +KPX V Adieresis -135 +KPX V Agrave -135 +KPX V Amacron -135 +KPX V Aogonek -135 +KPX V Aring -135 +KPX V Atilde -135 +KPX V G -30 +KPX V Gbreve -30 +KPX V Gcommaaccent -30 +KPX V O -45 +KPX V Oacute -45 +KPX V Ocircumflex -45 +KPX V Odieresis -45 +KPX V Ograve -45 +KPX V Ohungarumlaut -45 +KPX V Omacron -45 +KPX V Oslash -45 +KPX V Otilde -45 +KPX V a -92 +KPX V aacute -92 +KPX V abreve -92 +KPX V acircumflex -92 +KPX V adieresis -92 +KPX V agrave -92 +KPX V amacron -92 +KPX V aogonek -92 +KPX V aring -92 +KPX V atilde -92 +KPX V colon -92 +KPX V comma -129 +KPX V e -100 +KPX V eacute -100 +KPX V ecaron -100 +KPX V ecircumflex -100 +KPX V edieresis -100 +KPX V edotaccent -100 +KPX V egrave -100 +KPX V emacron -100 +KPX V eogonek -100 +KPX V hyphen -74 +KPX V i -37 +KPX V iacute -37 +KPX V icircumflex -37 +KPX V idieresis -37 +KPX V igrave -37 +KPX V imacron -37 +KPX V iogonek -37 +KPX V o -100 +KPX V oacute -100 +KPX V ocircumflex -100 +KPX V odieresis -100 +KPX V ograve -100 +KPX V ohungarumlaut -100 +KPX V omacron -100 +KPX V oslash -100 +KPX V otilde -100 +KPX V period -145 +KPX V semicolon -92 +KPX V u -92 +KPX V uacute -92 +KPX V ucircumflex -92 +KPX V udieresis -92 +KPX V ugrave -92 +KPX V uhungarumlaut -92 +KPX V umacron -92 +KPX V uogonek -92 +KPX V uring -92 +KPX W A -120 +KPX W Aacute -120 +KPX W Abreve -120 +KPX W Acircumflex -120 +KPX W Adieresis -120 +KPX W Agrave -120 +KPX W Amacron -120 +KPX W Aogonek -120 +KPX W Aring -120 +KPX W Atilde -120 +KPX W O -10 +KPX W Oacute -10 +KPX W Ocircumflex -10 +KPX W Odieresis -10 +KPX W Ograve -10 +KPX W Ohungarumlaut -10 +KPX W Omacron -10 +KPX W Oslash -10 +KPX W Otilde -10 +KPX W a -65 +KPX W aacute -65 +KPX W abreve -65 +KPX W acircumflex -65 +KPX W adieresis -65 +KPX W agrave -65 +KPX W amacron -65 +KPX W aogonek -65 +KPX W aring -65 +KPX W atilde -65 +KPX W colon -55 +KPX W comma -92 +KPX W e -65 +KPX W eacute -65 +KPX W ecaron -65 +KPX W ecircumflex -65 +KPX W edieresis -65 +KPX W edotaccent -65 +KPX W egrave -65 +KPX W emacron -65 +KPX W eogonek -65 +KPX W hyphen -37 +KPX W i -18 +KPX W iacute -18 +KPX W iogonek -18 +KPX W o -75 +KPX W oacute -75 +KPX W ocircumflex -75 +KPX W odieresis -75 +KPX W ograve -75 +KPX W ohungarumlaut -75 +KPX W omacron -75 +KPX W oslash -75 +KPX W otilde -75 +KPX W period -92 +KPX W semicolon -55 +KPX W u -50 +KPX W uacute -50 +KPX W ucircumflex -50 +KPX W udieresis -50 +KPX W ugrave -50 +KPX W uhungarumlaut -50 +KPX W umacron -50 +KPX W uogonek -50 +KPX W uring -50 +KPX W y -60 +KPX W yacute -60 +KPX W ydieresis -60 +KPX Y A -110 +KPX Y Aacute -110 +KPX Y Abreve -110 +KPX Y Acircumflex -110 +KPX Y Adieresis -110 +KPX Y Agrave -110 +KPX Y Amacron -110 +KPX Y Aogonek -110 +KPX Y Aring -110 +KPX Y Atilde -110 +KPX Y O -35 +KPX Y Oacute -35 +KPX Y Ocircumflex -35 +KPX Y Odieresis -35 +KPX Y Ograve -35 +KPX Y Ohungarumlaut -35 +KPX Y Omacron -35 +KPX Y Oslash -35 +KPX Y Otilde -35 +KPX Y a -85 +KPX Y aacute -85 +KPX Y abreve -85 +KPX Y acircumflex -85 +KPX Y adieresis -85 +KPX Y agrave -85 +KPX Y amacron -85 +KPX Y aogonek -85 +KPX Y aring -85 +KPX Y atilde -85 +KPX Y colon -92 +KPX Y comma -92 +KPX Y e -111 +KPX Y eacute -111 +KPX Y ecaron -111 +KPX Y ecircumflex -111 +KPX Y edieresis -71 +KPX Y edotaccent -111 +KPX Y egrave -71 +KPX Y emacron -71 +KPX Y eogonek -111 +KPX Y hyphen -92 +KPX Y i -37 +KPX Y iacute -37 +KPX Y iogonek -37 +KPX Y o -111 +KPX Y oacute -111 +KPX Y ocircumflex -111 +KPX Y odieresis -111 +KPX Y ograve -111 +KPX Y ohungarumlaut -111 +KPX Y omacron -111 +KPX Y oslash -111 +KPX Y otilde -111 +KPX Y period -92 +KPX Y semicolon -92 +KPX Y u -92 +KPX Y uacute -92 +KPX Y ucircumflex -92 +KPX Y udieresis -92 +KPX Y ugrave -92 +KPX Y uhungarumlaut -92 +KPX Y umacron -92 +KPX Y uogonek -92 +KPX Y uring -92 +KPX Yacute A -110 +KPX Yacute Aacute -110 +KPX Yacute Abreve -110 +KPX Yacute Acircumflex -110 +KPX Yacute Adieresis -110 +KPX Yacute Agrave -110 +KPX Yacute Amacron -110 +KPX Yacute Aogonek -110 +KPX Yacute Aring -110 +KPX Yacute Atilde -110 +KPX Yacute O -35 +KPX Yacute Oacute -35 +KPX Yacute Ocircumflex -35 +KPX Yacute Odieresis -35 +KPX Yacute Ograve -35 +KPX Yacute Ohungarumlaut -35 +KPX Yacute Omacron -35 +KPX Yacute Oslash -35 +KPX Yacute Otilde -35 +KPX Yacute a -85 +KPX Yacute aacute -85 +KPX Yacute abreve -85 +KPX Yacute acircumflex -85 +KPX Yacute adieresis -85 +KPX Yacute agrave -85 +KPX Yacute amacron -85 +KPX Yacute aogonek -85 +KPX Yacute aring -85 +KPX Yacute atilde -85 +KPX Yacute colon -92 +KPX Yacute comma -92 +KPX Yacute e -111 +KPX Yacute eacute -111 +KPX Yacute ecaron -111 +KPX Yacute ecircumflex -111 +KPX Yacute edieresis -71 +KPX Yacute edotaccent -111 +KPX Yacute egrave -71 +KPX Yacute emacron -71 +KPX Yacute eogonek -111 +KPX Yacute hyphen -92 +KPX Yacute i -37 +KPX Yacute iacute -37 +KPX Yacute iogonek -37 +KPX Yacute o -111 +KPX Yacute oacute -111 +KPX Yacute ocircumflex -111 +KPX Yacute odieresis -111 +KPX Yacute ograve -111 +KPX Yacute ohungarumlaut -111 +KPX Yacute omacron -111 +KPX Yacute oslash -111 +KPX Yacute otilde -111 +KPX Yacute period -92 +KPX Yacute semicolon -92 +KPX Yacute u -92 +KPX Yacute uacute -92 +KPX Yacute ucircumflex -92 +KPX Yacute udieresis -92 +KPX Yacute ugrave -92 +KPX Yacute uhungarumlaut -92 +KPX Yacute umacron -92 +KPX Yacute uogonek -92 +KPX Yacute uring -92 +KPX Ydieresis A -110 +KPX Ydieresis Aacute -110 +KPX Ydieresis Abreve -110 +KPX Ydieresis Acircumflex -110 +KPX Ydieresis Adieresis -110 +KPX Ydieresis Agrave -110 +KPX Ydieresis Amacron -110 +KPX Ydieresis Aogonek -110 +KPX Ydieresis Aring -110 +KPX Ydieresis Atilde -110 +KPX Ydieresis O -35 +KPX Ydieresis Oacute -35 +KPX Ydieresis Ocircumflex -35 +KPX Ydieresis Odieresis -35 +KPX Ydieresis Ograve -35 +KPX Ydieresis Ohungarumlaut -35 +KPX Ydieresis Omacron -35 +KPX Ydieresis Oslash -35 +KPX Ydieresis Otilde -35 +KPX Ydieresis a -85 +KPX Ydieresis aacute -85 +KPX Ydieresis abreve -85 +KPX Ydieresis acircumflex -85 +KPX Ydieresis adieresis -85 +KPX Ydieresis agrave -85 +KPX Ydieresis amacron -85 +KPX Ydieresis aogonek -85 +KPX Ydieresis aring -85 +KPX Ydieresis atilde -85 +KPX Ydieresis colon -92 +KPX Ydieresis comma -92 +KPX Ydieresis e -111 +KPX Ydieresis eacute -111 +KPX Ydieresis ecaron -111 +KPX Ydieresis ecircumflex -111 +KPX Ydieresis edieresis -71 +KPX Ydieresis edotaccent -111 +KPX Ydieresis egrave -71 +KPX Ydieresis emacron -71 +KPX Ydieresis eogonek -111 +KPX Ydieresis hyphen -92 +KPX Ydieresis i -37 +KPX Ydieresis iacute -37 +KPX Ydieresis iogonek -37 +KPX Ydieresis o -111 +KPX Ydieresis oacute -111 +KPX Ydieresis ocircumflex -111 +KPX Ydieresis odieresis -111 +KPX Ydieresis ograve -111 +KPX Ydieresis ohungarumlaut -111 +KPX Ydieresis omacron -111 +KPX Ydieresis oslash -111 +KPX Ydieresis otilde -111 +KPX Ydieresis period -92 +KPX Ydieresis semicolon -92 +KPX Ydieresis u -92 +KPX Ydieresis uacute -92 +KPX Ydieresis ucircumflex -92 +KPX Ydieresis udieresis -92 +KPX Ydieresis ugrave -92 +KPX Ydieresis uhungarumlaut -92 +KPX Ydieresis umacron -92 +KPX Ydieresis uogonek -92 +KPX Ydieresis uring -92 +KPX a v -25 +KPX aacute v -25 +KPX abreve v -25 +KPX acircumflex v -25 +KPX adieresis v -25 +KPX agrave v -25 +KPX amacron v -25 +KPX aogonek v -25 +KPX aring v -25 +KPX atilde v -25 +KPX b b -10 +KPX b period -40 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX b v -15 +KPX comma quotedblright -45 +KPX comma quoteright -55 +KPX d w -15 +KPX dcroat w -15 +KPX e v -15 +KPX eacute v -15 +KPX ecaron v -15 +KPX ecircumflex v -15 +KPX edieresis v -15 +KPX edotaccent v -15 +KPX egrave v -15 +KPX emacron v -15 +KPX eogonek v -15 +KPX f comma -15 +KPX f dotlessi -35 +KPX f i -25 +KPX f o -25 +KPX f oacute -25 +KPX f ocircumflex -25 +KPX f odieresis -25 +KPX f ograve -25 +KPX f ohungarumlaut -25 +KPX f omacron -25 +KPX f oslash -25 +KPX f otilde -25 +KPX f period -15 +KPX f quotedblright 50 +KPX f quoteright 55 +KPX g period -15 +KPX gbreve period -15 +KPX gcommaaccent period -15 +KPX h y -15 +KPX h yacute -15 +KPX h ydieresis -15 +KPX i v -10 +KPX iacute v -10 +KPX icircumflex v -10 +KPX idieresis v -10 +KPX igrave v -10 +KPX imacron v -10 +KPX iogonek v -10 +KPX k e -10 +KPX k eacute -10 +KPX k ecaron -10 +KPX k ecircumflex -10 +KPX k edieresis -10 +KPX k edotaccent -10 +KPX k egrave -10 +KPX k emacron -10 +KPX k eogonek -10 +KPX k o -15 +KPX k oacute -15 +KPX k ocircumflex -15 +KPX k odieresis -15 +KPX k ograve -15 +KPX k ohungarumlaut -15 +KPX k omacron -15 +KPX k oslash -15 +KPX k otilde -15 +KPX k y -15 +KPX k yacute -15 +KPX k ydieresis -15 +KPX kcommaaccent e -10 +KPX kcommaaccent eacute -10 +KPX kcommaaccent ecaron -10 +KPX kcommaaccent ecircumflex -10 +KPX kcommaaccent edieresis -10 +KPX kcommaaccent edotaccent -10 +KPX kcommaaccent egrave -10 +KPX kcommaaccent emacron -10 +KPX kcommaaccent eogonek -10 +KPX kcommaaccent o -15 +KPX kcommaaccent oacute -15 +KPX kcommaaccent ocircumflex -15 +KPX kcommaaccent odieresis -15 +KPX kcommaaccent ograve -15 +KPX kcommaaccent ohungarumlaut -15 +KPX kcommaaccent omacron -15 +KPX kcommaaccent oslash -15 +KPX kcommaaccent otilde -15 +KPX kcommaaccent y -15 +KPX kcommaaccent yacute -15 +KPX kcommaaccent ydieresis -15 +KPX n v -40 +KPX nacute v -40 +KPX ncaron v -40 +KPX ncommaaccent v -40 +KPX ntilde v -40 +KPX o v -10 +KPX o w -10 +KPX oacute v -10 +KPX oacute w -10 +KPX ocircumflex v -10 +KPX ocircumflex w -10 +KPX odieresis v -10 +KPX odieresis w -10 +KPX ograve v -10 +KPX ograve w -10 +KPX ohungarumlaut v -10 +KPX ohungarumlaut w -10 +KPX omacron v -10 +KPX omacron w -10 +KPX oslash v -10 +KPX oslash w -10 +KPX otilde v -10 +KPX otilde w -10 +KPX period quotedblright -55 +KPX period quoteright -55 +KPX quotedblleft A -10 +KPX quotedblleft Aacute -10 +KPX quotedblleft Abreve -10 +KPX quotedblleft Acircumflex -10 +KPX quotedblleft Adieresis -10 +KPX quotedblleft Agrave -10 +KPX quotedblleft Amacron -10 +KPX quotedblleft Aogonek -10 +KPX quotedblleft Aring -10 +KPX quotedblleft Atilde -10 +KPX quoteleft A -10 +KPX quoteleft Aacute -10 +KPX quoteleft Abreve -10 +KPX quoteleft Acircumflex -10 +KPX quoteleft Adieresis -10 +KPX quoteleft Agrave -10 +KPX quoteleft Amacron -10 +KPX quoteleft Aogonek -10 +KPX quoteleft Aring -10 +KPX quoteleft Atilde -10 +KPX quoteleft quoteleft -63 +KPX quoteright d -20 +KPX quoteright dcroat -20 +KPX quoteright quoteright -63 +KPX quoteright r -20 +KPX quoteright racute -20 +KPX quoteright rcaron -20 +KPX quoteright rcommaaccent -20 +KPX quoteright s -37 +KPX quoteright sacute -37 +KPX quoteright scaron -37 +KPX quoteright scedilla -37 +KPX quoteright scommaaccent -37 +KPX quoteright space -74 +KPX quoteright v -20 +KPX r c -18 +KPX r cacute -18 +KPX r ccaron -18 +KPX r ccedilla -18 +KPX r comma -92 +KPX r e -18 +KPX r eacute -18 +KPX r ecaron -18 +KPX r ecircumflex -18 +KPX r edieresis -18 +KPX r edotaccent -18 +KPX r egrave -18 +KPX r emacron -18 +KPX r eogonek -18 +KPX r g -10 +KPX r gbreve -10 +KPX r gcommaaccent -10 +KPX r hyphen -37 +KPX r n -15 +KPX r nacute -15 +KPX r ncaron -15 +KPX r ncommaaccent -15 +KPX r ntilde -15 +KPX r o -18 +KPX r oacute -18 +KPX r ocircumflex -18 +KPX r odieresis -18 +KPX r ograve -18 +KPX r ohungarumlaut -18 +KPX r omacron -18 +KPX r oslash -18 +KPX r otilde -18 +KPX r p -10 +KPX r period -100 +KPX r q -18 +KPX r v -10 +KPX racute c -18 +KPX racute cacute -18 +KPX racute ccaron -18 +KPX racute ccedilla -18 +KPX racute comma -92 +KPX racute e -18 +KPX racute eacute -18 +KPX racute ecaron -18 +KPX racute ecircumflex -18 +KPX racute edieresis -18 +KPX racute edotaccent -18 +KPX racute egrave -18 +KPX racute emacron -18 +KPX racute eogonek -18 +KPX racute g -10 +KPX racute gbreve -10 +KPX racute gcommaaccent -10 +KPX racute hyphen -37 +KPX racute n -15 +KPX racute nacute -15 +KPX racute ncaron -15 +KPX racute ncommaaccent -15 +KPX racute ntilde -15 +KPX racute o -18 +KPX racute oacute -18 +KPX racute ocircumflex -18 +KPX racute odieresis -18 +KPX racute ograve -18 +KPX racute ohungarumlaut -18 +KPX racute omacron -18 +KPX racute oslash -18 +KPX racute otilde -18 +KPX racute p -10 +KPX racute period -100 +KPX racute q -18 +KPX racute v -10 +KPX rcaron c -18 +KPX rcaron cacute -18 +KPX rcaron ccaron -18 +KPX rcaron ccedilla -18 +KPX rcaron comma -92 +KPX rcaron e -18 +KPX rcaron eacute -18 +KPX rcaron ecaron -18 +KPX rcaron ecircumflex -18 +KPX rcaron edieresis -18 +KPX rcaron edotaccent -18 +KPX rcaron egrave -18 +KPX rcaron emacron -18 +KPX rcaron eogonek -18 +KPX rcaron g -10 +KPX rcaron gbreve -10 +KPX rcaron gcommaaccent -10 +KPX rcaron hyphen -37 +KPX rcaron n -15 +KPX rcaron nacute -15 +KPX rcaron ncaron -15 +KPX rcaron ncommaaccent -15 +KPX rcaron ntilde -15 +KPX rcaron o -18 +KPX rcaron oacute -18 +KPX rcaron ocircumflex -18 +KPX rcaron odieresis -18 +KPX rcaron ograve -18 +KPX rcaron ohungarumlaut -18 +KPX rcaron omacron -18 +KPX rcaron oslash -18 +KPX rcaron otilde -18 +KPX rcaron p -10 +KPX rcaron period -100 +KPX rcaron q -18 +KPX rcaron v -10 +KPX rcommaaccent c -18 +KPX rcommaaccent cacute -18 +KPX rcommaaccent ccaron -18 +KPX rcommaaccent ccedilla -18 +KPX rcommaaccent comma -92 +KPX rcommaaccent e -18 +KPX rcommaaccent eacute -18 +KPX rcommaaccent ecaron -18 +KPX rcommaaccent ecircumflex -18 +KPX rcommaaccent edieresis -18 +KPX rcommaaccent edotaccent -18 +KPX rcommaaccent egrave -18 +KPX rcommaaccent emacron -18 +KPX rcommaaccent eogonek -18 +KPX rcommaaccent g -10 +KPX rcommaaccent gbreve -10 +KPX rcommaaccent gcommaaccent -10 +KPX rcommaaccent hyphen -37 +KPX rcommaaccent n -15 +KPX rcommaaccent nacute -15 +KPX rcommaaccent ncaron -15 +KPX rcommaaccent ncommaaccent -15 +KPX rcommaaccent ntilde -15 +KPX rcommaaccent o -18 +KPX rcommaaccent oacute -18 +KPX rcommaaccent ocircumflex -18 +KPX rcommaaccent odieresis -18 +KPX rcommaaccent ograve -18 +KPX rcommaaccent ohungarumlaut -18 +KPX rcommaaccent omacron -18 +KPX rcommaaccent oslash -18 +KPX rcommaaccent otilde -18 +KPX rcommaaccent p -10 +KPX rcommaaccent period -100 +KPX rcommaaccent q -18 +KPX rcommaaccent v -10 +KPX space A -55 +KPX space Aacute -55 +KPX space Abreve -55 +KPX space Acircumflex -55 +KPX space Adieresis -55 +KPX space Agrave -55 +KPX space Amacron -55 +KPX space Aogonek -55 +KPX space Aring -55 +KPX space Atilde -55 +KPX space T -30 +KPX space Tcaron -30 +KPX space Tcommaaccent -30 +KPX space V -45 +KPX space W -30 +KPX space Y -55 +KPX space Yacute -55 +KPX space Ydieresis -55 +KPX v a -10 +KPX v aacute -10 +KPX v abreve -10 +KPX v acircumflex -10 +KPX v adieresis -10 +KPX v agrave -10 +KPX v amacron -10 +KPX v aogonek -10 +KPX v aring -10 +KPX v atilde -10 +KPX v comma -55 +KPX v e -10 +KPX v eacute -10 +KPX v ecaron -10 +KPX v ecircumflex -10 +KPX v edieresis -10 +KPX v edotaccent -10 +KPX v egrave -10 +KPX v emacron -10 +KPX v eogonek -10 +KPX v o -10 +KPX v oacute -10 +KPX v ocircumflex -10 +KPX v odieresis -10 +KPX v ograve -10 +KPX v ohungarumlaut -10 +KPX v omacron -10 +KPX v oslash -10 +KPX v otilde -10 +KPX v period -70 +KPX w comma -55 +KPX w o -10 +KPX w oacute -10 +KPX w ocircumflex -10 +KPX w odieresis -10 +KPX w ograve -10 +KPX w ohungarumlaut -10 +KPX w omacron -10 +KPX w oslash -10 +KPX w otilde -10 +KPX w period -70 +KPX y comma -55 +KPX y e -10 +KPX y eacute -10 +KPX y ecaron -10 +KPX y ecircumflex -10 +KPX y edieresis -10 +KPX y edotaccent -10 +KPX y egrave -10 +KPX y emacron -10 +KPX y eogonek -10 +KPX y o -25 +KPX y oacute -25 +KPX y ocircumflex -25 +KPX y odieresis -25 +KPX y ograve -25 +KPX y ohungarumlaut -25 +KPX y omacron -25 +KPX y oslash -25 +KPX y otilde -25 +KPX y period -70 +KPX yacute comma -55 +KPX yacute e -10 +KPX yacute eacute -10 +KPX yacute ecaron -10 +KPX yacute ecircumflex -10 +KPX yacute edieresis -10 +KPX yacute edotaccent -10 +KPX yacute egrave -10 +KPX yacute emacron -10 +KPX yacute eogonek -10 +KPX yacute o -25 +KPX yacute oacute -25 +KPX yacute ocircumflex -25 +KPX yacute odieresis -25 +KPX yacute ograve -25 +KPX yacute ohungarumlaut -25 +KPX yacute omacron -25 +KPX yacute oslash -25 +KPX yacute otilde -25 +KPX yacute period -70 +KPX ydieresis comma -55 +KPX ydieresis e -10 +KPX ydieresis eacute -10 +KPX ydieresis ecaron -10 +KPX ydieresis ecircumflex -10 +KPX ydieresis edieresis -10 +KPX ydieresis edotaccent -10 +KPX ydieresis egrave -10 +KPX ydieresis emacron -10 +KPX ydieresis eogonek -10 +KPX ydieresis o -25 +KPX ydieresis oacute -25 +KPX ydieresis ocircumflex -25 +KPX ydieresis odieresis -25 +KPX ydieresis ograve -25 +KPX ydieresis ohungarumlaut -25 +KPX ydieresis omacron -25 +KPX ydieresis oslash -25 +KPX ydieresis otilde -25 +KPX ydieresis period -70 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/Times-BoldItalic.afm b/pyx/data/afm/Times-BoldItalic.afm new file mode 100644 index 00000000..6da5178f --- /dev/null +++ b/pyx/data/afm/Times-BoldItalic.afm @@ -0,0 +1,2384 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 13:04:06 1997 +Comment UniqueID 43066 +Comment VMusage 45874 56899 +FontName Times-BoldItalic +FullName Times Bold Italic +FamilyName Times +Weight Bold +ItalicAngle -15 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -200 -218 996 921 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 669 +XHeight 462 +Ascender 683 +Descender -217 +StdHW 42 +StdVW 121 +StartCharMetrics 315 +C 32 ; WX 250 ; N space ; B 0 0 0 0 ; +C 33 ; WX 389 ; N exclam ; B 67 -13 370 684 ; +C 34 ; WX 555 ; N quotedbl ; B 136 398 536 685 ; +C 35 ; WX 500 ; N numbersign ; B -33 0 533 700 ; +C 36 ; WX 500 ; N dollar ; B -20 -100 497 733 ; +C 37 ; WX 833 ; N percent ; B 39 -10 793 692 ; +C 38 ; WX 778 ; N ampersand ; B 5 -19 699 682 ; +C 39 ; WX 333 ; N quoteright ; B 98 369 302 685 ; +C 40 ; WX 333 ; N parenleft ; B 28 -179 344 685 ; +C 41 ; WX 333 ; N parenright ; B -44 -179 271 685 ; +C 42 ; WX 500 ; N asterisk ; B 65 249 456 685 ; +C 43 ; WX 570 ; N plus ; B 33 0 537 506 ; +C 44 ; WX 250 ; N comma ; B -60 -182 144 134 ; +C 45 ; WX 333 ; N hyphen ; B 2 166 271 282 ; +C 46 ; WX 250 ; N period ; B -9 -13 139 135 ; +C 47 ; WX 278 ; N slash ; B -64 -18 342 685 ; +C 48 ; WX 500 ; N zero ; B 17 -14 477 683 ; +C 49 ; WX 500 ; N one ; B 5 0 419 683 ; +C 50 ; WX 500 ; N two ; B -27 0 446 683 ; +C 51 ; WX 500 ; N three ; B -15 -13 450 683 ; +C 52 ; WX 500 ; N four ; B -15 0 503 683 ; +C 53 ; WX 500 ; N five ; B -11 -13 487 669 ; +C 54 ; WX 500 ; N six ; B 23 -15 509 679 ; +C 55 ; WX 500 ; N seven ; B 52 0 525 669 ; +C 56 ; WX 500 ; N eight ; B 3 -13 476 683 ; +C 57 ; WX 500 ; N nine ; B -12 -10 475 683 ; +C 58 ; WX 333 ; N colon ; B 23 -13 264 459 ; +C 59 ; WX 333 ; N semicolon ; B -25 -183 264 459 ; +C 60 ; WX 570 ; N less ; B 31 -8 539 514 ; +C 61 ; WX 570 ; N equal ; B 33 107 537 399 ; +C 62 ; WX 570 ; N greater ; B 31 -8 539 514 ; +C 63 ; WX 500 ; N question ; B 79 -13 470 684 ; +C 64 ; WX 832 ; N at ; B 63 -18 770 685 ; +C 65 ; WX 667 ; N A ; B -67 0 593 683 ; +C 66 ; WX 667 ; N B ; B -24 0 624 669 ; +C 67 ; WX 667 ; N C ; B 32 -18 677 685 ; +C 68 ; WX 722 ; N D ; B -46 0 685 669 ; +C 69 ; WX 667 ; N E ; B -27 0 653 669 ; +C 70 ; WX 667 ; N F ; B -13 0 660 669 ; +C 71 ; WX 722 ; N G ; B 21 -18 706 685 ; +C 72 ; WX 778 ; N H ; B -24 0 799 669 ; +C 73 ; WX 389 ; N I ; B -32 0 406 669 ; +C 74 ; WX 500 ; N J ; B -46 -99 524 669 ; +C 75 ; WX 667 ; N K ; B -21 0 702 669 ; +C 76 ; WX 611 ; N L ; B -22 0 590 669 ; +C 77 ; WX 889 ; N M ; B -29 -12 917 669 ; +C 78 ; WX 722 ; N N ; B -27 -15 748 669 ; +C 79 ; WX 722 ; N O ; B 27 -18 691 685 ; +C 80 ; WX 611 ; N P ; B -27 0 613 669 ; +C 81 ; WX 722 ; N Q ; B 27 -208 691 685 ; +C 82 ; WX 667 ; N R ; B -29 0 623 669 ; +C 83 ; WX 556 ; N S ; B 2 -18 526 685 ; +C 84 ; WX 611 ; N T ; B 50 0 650 669 ; +C 85 ; WX 722 ; N U ; B 67 -18 744 669 ; +C 86 ; WX 667 ; N V ; B 65 -18 715 669 ; +C 87 ; WX 889 ; N W ; B 65 -18 940 669 ; +C 88 ; WX 667 ; N X ; B -24 0 694 669 ; +C 89 ; WX 611 ; N Y ; B 73 0 659 669 ; +C 90 ; WX 611 ; N Z ; B -11 0 590 669 ; +C 91 ; WX 333 ; N bracketleft ; B -37 -159 362 674 ; +C 92 ; WX 278 ; N backslash ; B -1 -18 279 685 ; +C 93 ; WX 333 ; N bracketright ; B -56 -157 343 674 ; +C 94 ; WX 570 ; N asciicircum ; B 67 304 503 669 ; +C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; +C 96 ; WX 333 ; N quoteleft ; B 128 369 332 685 ; +C 97 ; WX 500 ; N a ; B -21 -14 455 462 ; +C 98 ; WX 500 ; N b ; B -14 -13 444 699 ; +C 99 ; WX 444 ; N c ; B -5 -13 392 462 ; +C 100 ; WX 500 ; N d ; B -21 -13 517 699 ; +C 101 ; WX 444 ; N e ; B 5 -13 398 462 ; +C 102 ; WX 333 ; N f ; B -169 -205 446 698 ; L i fi ; L l fl ; +C 103 ; WX 500 ; N g ; B -52 -203 478 462 ; +C 104 ; WX 556 ; N h ; B -13 -9 498 699 ; +C 105 ; WX 278 ; N i ; B 2 -9 263 684 ; +C 106 ; WX 278 ; N j ; B -189 -207 279 684 ; +C 107 ; WX 500 ; N k ; B -23 -8 483 699 ; +C 108 ; WX 278 ; N l ; B 2 -9 290 699 ; +C 109 ; WX 778 ; N m ; B -14 -9 722 462 ; +C 110 ; WX 556 ; N n ; B -6 -9 493 462 ; +C 111 ; WX 500 ; N o ; B -3 -13 441 462 ; +C 112 ; WX 500 ; N p ; B -120 -205 446 462 ; +C 113 ; WX 500 ; N q ; B 1 -205 471 462 ; +C 114 ; WX 389 ; N r ; B -21 0 389 462 ; +C 115 ; WX 389 ; N s ; B -19 -13 333 462 ; +C 116 ; WX 278 ; N t ; B -11 -9 281 594 ; +C 117 ; WX 556 ; N u ; B 15 -9 492 462 ; +C 118 ; WX 444 ; N v ; B 16 -13 401 462 ; +C 119 ; WX 667 ; N w ; B 16 -13 614 462 ; +C 120 ; WX 500 ; N x ; B -46 -13 469 462 ; +C 121 ; WX 444 ; N y ; B -94 -205 392 462 ; +C 122 ; WX 389 ; N z ; B -43 -78 368 449 ; +C 123 ; WX 348 ; N braceleft ; B 5 -187 436 686 ; +C 124 ; WX 220 ; N bar ; B 66 -218 154 782 ; +C 125 ; WX 348 ; N braceright ; B -129 -187 302 686 ; +C 126 ; WX 570 ; N asciitilde ; B 54 173 516 333 ; +C 161 ; WX 389 ; N exclamdown ; B 19 -205 322 492 ; +C 162 ; WX 500 ; N cent ; B 42 -143 439 576 ; +C 163 ; WX 500 ; N sterling ; B -32 -12 510 683 ; +C 164 ; WX 167 ; N fraction ; B -169 -14 324 683 ; +C 165 ; WX 500 ; N yen ; B 33 0 628 669 ; +C 166 ; WX 500 ; N florin ; B -87 -156 537 707 ; +C 167 ; WX 500 ; N section ; B 36 -143 459 685 ; +C 168 ; WX 500 ; N currency ; B -26 34 526 586 ; +C 169 ; WX 278 ; N quotesingle ; B 128 398 268 685 ; +C 170 ; WX 500 ; N quotedblleft ; B 53 369 513 685 ; +C 171 ; WX 500 ; N guillemotleft ; B 12 32 468 415 ; +C 172 ; WX 333 ; N guilsinglleft ; B 32 32 303 415 ; +C 173 ; WX 333 ; N guilsinglright ; B 10 32 281 415 ; +C 174 ; WX 556 ; N fi ; B -188 -205 514 703 ; +C 175 ; WX 556 ; N fl ; B -186 -205 553 704 ; +C 177 ; WX 500 ; N endash ; B -40 178 477 269 ; +C 178 ; WX 500 ; N dagger ; B 91 -145 494 685 ; +C 179 ; WX 500 ; N daggerdbl ; B 10 -139 493 685 ; +C 180 ; WX 250 ; N periodcentered ; B 51 257 199 405 ; +C 182 ; WX 500 ; N paragraph ; B -57 -193 562 669 ; +C 183 ; WX 350 ; N bullet ; B 0 175 350 525 ; +C 184 ; WX 333 ; N quotesinglbase ; B -5 -182 199 134 ; +C 185 ; WX 500 ; N quotedblbase ; B -57 -182 403 134 ; +C 186 ; WX 500 ; N quotedblright ; B 53 369 513 685 ; +C 187 ; WX 500 ; N guillemotright ; B 12 32 468 415 ; +C 188 ; WX 1000 ; N ellipsis ; B 40 -13 852 135 ; +C 189 ; WX 1000 ; N perthousand ; B 7 -29 996 706 ; +C 191 ; WX 500 ; N questiondown ; B 30 -205 421 492 ; +C 193 ; WX 333 ; N grave ; B 85 516 297 697 ; +C 194 ; WX 333 ; N acute ; B 139 516 379 697 ; +C 195 ; WX 333 ; N circumflex ; B 40 516 367 690 ; +C 196 ; WX 333 ; N tilde ; B 48 536 407 655 ; +C 197 ; WX 333 ; N macron ; B 51 553 393 623 ; +C 198 ; WX 333 ; N breve ; B 71 516 387 678 ; +C 199 ; WX 333 ; N dotaccent ; B 163 550 298 684 ; +C 200 ; WX 333 ; N dieresis ; B 55 550 402 684 ; +C 202 ; WX 333 ; N ring ; B 127 516 340 729 ; +C 203 ; WX 333 ; N cedilla ; B -80 -218 156 5 ; +C 205 ; WX 333 ; N hungarumlaut ; B 69 516 498 697 ; +C 206 ; WX 333 ; N ogonek ; B 15 -183 244 34 ; +C 207 ; WX 333 ; N caron ; B 79 516 411 690 ; +C 208 ; WX 1000 ; N emdash ; B -40 178 977 269 ; +C 225 ; WX 944 ; N AE ; B -64 0 918 669 ; +C 227 ; WX 266 ; N ordfeminine ; B 16 399 330 685 ; +C 232 ; WX 611 ; N Lslash ; B -22 0 590 669 ; +C 233 ; WX 722 ; N Oslash ; B 27 -125 691 764 ; +C 234 ; WX 944 ; N OE ; B 23 -8 946 677 ; +C 235 ; WX 300 ; N ordmasculine ; B 56 400 347 685 ; +C 241 ; WX 722 ; N ae ; B -5 -13 673 462 ; +C 245 ; WX 278 ; N dotlessi ; B 2 -9 238 462 ; +C 248 ; WX 278 ; N lslash ; B -7 -9 307 699 ; +C 249 ; WX 500 ; N oslash ; B -3 -119 441 560 ; +C 250 ; WX 722 ; N oe ; B 6 -13 674 462 ; +C 251 ; WX 500 ; N germandbls ; B -200 -200 473 705 ; +C -1 ; WX 389 ; N Idieresis ; B -32 0 450 862 ; +C -1 ; WX 444 ; N eacute ; B 5 -13 435 697 ; +C -1 ; WX 500 ; N abreve ; B -21 -14 471 678 ; +C -1 ; WX 556 ; N uhungarumlaut ; B 15 -9 610 697 ; +C -1 ; WX 444 ; N ecaron ; B 5 -13 467 690 ; +C -1 ; WX 611 ; N Ydieresis ; B 73 0 659 862 ; +C -1 ; WX 570 ; N divide ; B 33 -29 537 535 ; +C -1 ; WX 611 ; N Yacute ; B 73 0 659 904 ; +C -1 ; WX 667 ; N Acircumflex ; B -67 0 593 897 ; +C -1 ; WX 500 ; N aacute ; B -21 -14 463 697 ; +C -1 ; WX 722 ; N Ucircumflex ; B 67 -18 744 897 ; +C -1 ; WX 444 ; N yacute ; B -94 -205 435 697 ; +C -1 ; WX 389 ; N scommaaccent ; B -19 -218 333 462 ; +C -1 ; WX 444 ; N ecircumflex ; B 5 -13 423 690 ; +C -1 ; WX 722 ; N Uring ; B 67 -18 744 921 ; +C -1 ; WX 722 ; N Udieresis ; B 67 -18 744 862 ; +C -1 ; WX 500 ; N aogonek ; B -21 -183 455 462 ; +C -1 ; WX 722 ; N Uacute ; B 67 -18 744 904 ; +C -1 ; WX 556 ; N uogonek ; B 15 -183 492 462 ; +C -1 ; WX 667 ; N Edieresis ; B -27 0 653 862 ; +C -1 ; WX 722 ; N Dcroat ; B -31 0 700 669 ; +C -1 ; WX 250 ; N commaaccent ; B -36 -218 131 -50 ; +C -1 ; WX 747 ; N copyright ; B 30 -18 718 685 ; +C -1 ; WX 667 ; N Emacron ; B -27 0 653 830 ; +C -1 ; WX 444 ; N ccaron ; B -5 -13 467 690 ; +C -1 ; WX 500 ; N aring ; B -21 -14 455 729 ; +C -1 ; WX 722 ; N Ncommaaccent ; B -27 -218 748 669 ; +C -1 ; WX 278 ; N lacute ; B 2 -9 392 904 ; +C -1 ; WX 500 ; N agrave ; B -21 -14 455 697 ; +C -1 ; WX 611 ; N Tcommaaccent ; B 50 -218 650 669 ; +C -1 ; WX 667 ; N Cacute ; B 32 -18 677 904 ; +C -1 ; WX 500 ; N atilde ; B -21 -14 491 655 ; +C -1 ; WX 667 ; N Edotaccent ; B -27 0 653 862 ; +C -1 ; WX 389 ; N scaron ; B -19 -13 424 690 ; +C -1 ; WX 389 ; N scedilla ; B -19 -218 333 462 ; +C -1 ; WX 278 ; N iacute ; B 2 -9 352 697 ; +C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ; +C -1 ; WX 667 ; N Rcaron ; B -29 0 623 897 ; +C -1 ; WX 722 ; N Gcommaaccent ; B 21 -218 706 685 ; +C -1 ; WX 556 ; N ucircumflex ; B 15 -9 492 690 ; +C -1 ; WX 500 ; N acircumflex ; B -21 -14 455 690 ; +C -1 ; WX 667 ; N Amacron ; B -67 0 593 830 ; +C -1 ; WX 389 ; N rcaron ; B -21 0 424 690 ; +C -1 ; WX 444 ; N ccedilla ; B -5 -218 392 462 ; +C -1 ; WX 611 ; N Zdotaccent ; B -11 0 590 862 ; +C -1 ; WX 611 ; N Thorn ; B -27 0 573 669 ; +C -1 ; WX 722 ; N Omacron ; B 27 -18 691 830 ; +C -1 ; WX 667 ; N Racute ; B -29 0 623 904 ; +C -1 ; WX 556 ; N Sacute ; B 2 -18 531 904 ; +C -1 ; WX 608 ; N dcaron ; B -21 -13 675 708 ; +C -1 ; WX 722 ; N Umacron ; B 67 -18 744 830 ; +C -1 ; WX 556 ; N uring ; B 15 -9 492 729 ; +C -1 ; WX 300 ; N threesuperior ; B 17 265 321 683 ; +C -1 ; WX 722 ; N Ograve ; B 27 -18 691 904 ; +C -1 ; WX 667 ; N Agrave ; B -67 0 593 904 ; +C -1 ; WX 667 ; N Abreve ; B -67 0 593 885 ; +C -1 ; WX 570 ; N multiply ; B 48 16 522 490 ; +C -1 ; WX 556 ; N uacute ; B 15 -9 492 697 ; +C -1 ; WX 611 ; N Tcaron ; B 50 0 650 897 ; +C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ; +C -1 ; WX 444 ; N ydieresis ; B -94 -205 443 655 ; +C -1 ; WX 722 ; N Nacute ; B -27 -15 748 904 ; +C -1 ; WX 278 ; N icircumflex ; B -3 -9 324 690 ; +C -1 ; WX 667 ; N Ecircumflex ; B -27 0 653 897 ; +C -1 ; WX 500 ; N adieresis ; B -21 -14 476 655 ; +C -1 ; WX 444 ; N edieresis ; B 5 -13 448 655 ; +C -1 ; WX 444 ; N cacute ; B -5 -13 435 697 ; +C -1 ; WX 556 ; N nacute ; B -6 -9 493 697 ; +C -1 ; WX 556 ; N umacron ; B 15 -9 492 623 ; +C -1 ; WX 722 ; N Ncaron ; B -27 -15 748 897 ; +C -1 ; WX 389 ; N Iacute ; B -32 0 432 904 ; +C -1 ; WX 570 ; N plusminus ; B 33 0 537 506 ; +C -1 ; WX 220 ; N brokenbar ; B 66 -143 154 707 ; +C -1 ; WX 747 ; N registered ; B 30 -18 718 685 ; +C -1 ; WX 722 ; N Gbreve ; B 21 -18 706 885 ; +C -1 ; WX 389 ; N Idotaccent ; B -32 0 406 862 ; +C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ; +C -1 ; WX 667 ; N Egrave ; B -27 0 653 904 ; +C -1 ; WX 389 ; N racute ; B -21 0 407 697 ; +C -1 ; WX 500 ; N omacron ; B -3 -13 462 623 ; +C -1 ; WX 611 ; N Zacute ; B -11 0 590 904 ; +C -1 ; WX 611 ; N Zcaron ; B -11 0 590 897 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ; +C -1 ; WX 722 ; N Eth ; B -31 0 700 669 ; +C -1 ; WX 667 ; N Ccedilla ; B 32 -218 677 685 ; +C -1 ; WX 278 ; N lcommaaccent ; B -42 -218 290 699 ; +C -1 ; WX 366 ; N tcaron ; B -11 -9 434 754 ; +C -1 ; WX 444 ; N eogonek ; B 5 -183 398 462 ; +C -1 ; WX 722 ; N Uogonek ; B 67 -183 744 669 ; +C -1 ; WX 667 ; N Aacute ; B -67 0 593 904 ; +C -1 ; WX 667 ; N Adieresis ; B -67 0 593 862 ; +C -1 ; WX 444 ; N egrave ; B 5 -13 398 697 ; +C -1 ; WX 389 ; N zacute ; B -43 -78 407 697 ; +C -1 ; WX 278 ; N iogonek ; B -20 -183 263 684 ; +C -1 ; WX 722 ; N Oacute ; B 27 -18 691 904 ; +C -1 ; WX 500 ; N oacute ; B -3 -13 463 697 ; +C -1 ; WX 500 ; N amacron ; B -21 -14 467 623 ; +C -1 ; WX 389 ; N sacute ; B -19 -13 407 697 ; +C -1 ; WX 278 ; N idieresis ; B 2 -9 364 655 ; +C -1 ; WX 722 ; N Ocircumflex ; B 27 -18 691 897 ; +C -1 ; WX 722 ; N Ugrave ; B 67 -18 744 904 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 500 ; N thorn ; B -120 -205 446 699 ; +C -1 ; WX 300 ; N twosuperior ; B 2 274 313 683 ; +C -1 ; WX 722 ; N Odieresis ; B 27 -18 691 862 ; +C -1 ; WX 576 ; N mu ; B -60 -207 516 449 ; +C -1 ; WX 278 ; N igrave ; B 2 -9 259 697 ; +C -1 ; WX 500 ; N ohungarumlaut ; B -3 -13 582 697 ; +C -1 ; WX 667 ; N Eogonek ; B -27 -183 653 669 ; +C -1 ; WX 500 ; N dcroat ; B -21 -13 552 699 ; +C -1 ; WX 750 ; N threequarters ; B 7 -14 726 683 ; +C -1 ; WX 556 ; N Scedilla ; B 2 -218 526 685 ; +C -1 ; WX 382 ; N lcaron ; B 2 -9 448 708 ; +C -1 ; WX 667 ; N Kcommaaccent ; B -21 -218 702 669 ; +C -1 ; WX 611 ; N Lacute ; B -22 0 590 904 ; +C -1 ; WX 1000 ; N trademark ; B 32 263 968 669 ; +C -1 ; WX 444 ; N edotaccent ; B 5 -13 398 655 ; +C -1 ; WX 389 ; N Igrave ; B -32 0 406 904 ; +C -1 ; WX 389 ; N Imacron ; B -32 0 461 830 ; +C -1 ; WX 611 ; N Lcaron ; B -22 0 671 718 ; +C -1 ; WX 750 ; N onehalf ; B -9 -14 723 683 ; +C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ; +C -1 ; WX 500 ; N ocircumflex ; B -3 -13 451 690 ; +C -1 ; WX 556 ; N ntilde ; B -6 -9 504 655 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 67 -18 744 904 ; +C -1 ; WX 667 ; N Eacute ; B -27 0 653 904 ; +C -1 ; WX 444 ; N emacron ; B 5 -13 439 623 ; +C -1 ; WX 500 ; N gbreve ; B -52 -203 478 678 ; +C -1 ; WX 750 ; N onequarter ; B 7 -14 721 683 ; +C -1 ; WX 556 ; N Scaron ; B 2 -18 553 897 ; +C -1 ; WX 556 ; N Scommaaccent ; B 2 -218 526 685 ; +C -1 ; WX 722 ; N Ohungarumlaut ; B 27 -18 723 904 ; +C -1 ; WX 400 ; N degree ; B 83 397 369 683 ; +C -1 ; WX 500 ; N ograve ; B -3 -13 441 697 ; +C -1 ; WX 667 ; N Ccaron ; B 32 -18 677 897 ; +C -1 ; WX 556 ; N ugrave ; B 15 -9 492 697 ; +C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ; +C -1 ; WX 722 ; N Dcaron ; B -46 0 685 897 ; +C -1 ; WX 389 ; N rcommaaccent ; B -67 -218 389 462 ; +C -1 ; WX 722 ; N Ntilde ; B -27 -15 748 862 ; +C -1 ; WX 500 ; N otilde ; B -3 -13 491 655 ; +C -1 ; WX 667 ; N Rcommaaccent ; B -29 -218 623 669 ; +C -1 ; WX 611 ; N Lcommaaccent ; B -22 -218 590 669 ; +C -1 ; WX 667 ; N Atilde ; B -67 0 593 862 ; +C -1 ; WX 667 ; N Aogonek ; B -67 -183 604 683 ; +C -1 ; WX 667 ; N Aring ; B -67 0 593 921 ; +C -1 ; WX 722 ; N Otilde ; B 27 -18 691 862 ; +C -1 ; WX 389 ; N zdotaccent ; B -43 -78 368 655 ; +C -1 ; WX 667 ; N Ecaron ; B -27 0 653 897 ; +C -1 ; WX 389 ; N Iogonek ; B -32 -183 406 669 ; +C -1 ; WX 500 ; N kcommaaccent ; B -23 -218 483 699 ; +C -1 ; WX 606 ; N minus ; B 51 209 555 297 ; +C -1 ; WX 389 ; N Icircumflex ; B -32 0 450 897 ; +C -1 ; WX 556 ; N ncaron ; B -6 -9 523 690 ; +C -1 ; WX 278 ; N tcommaaccent ; B -62 -218 281 594 ; +C -1 ; WX 606 ; N logicalnot ; B 51 108 555 399 ; +C -1 ; WX 500 ; N odieresis ; B -3 -13 471 655 ; +C -1 ; WX 556 ; N udieresis ; B 15 -9 499 655 ; +C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ; +C -1 ; WX 500 ; N gcommaaccent ; B -52 -203 478 767 ; +C -1 ; WX 500 ; N eth ; B -3 -13 454 699 ; +C -1 ; WX 389 ; N zcaron ; B -43 -78 424 690 ; +C -1 ; WX 556 ; N ncommaaccent ; B -6 -218 493 462 ; +C -1 ; WX 300 ; N onesuperior ; B 30 274 301 683 ; +C -1 ; WX 278 ; N imacron ; B 2 -9 294 623 ; +C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2038 +KPX A C -65 +KPX A Cacute -65 +KPX A Ccaron -65 +KPX A Ccedilla -65 +KPX A G -60 +KPX A Gbreve -60 +KPX A Gcommaaccent -60 +KPX A O -50 +KPX A Oacute -50 +KPX A Ocircumflex -50 +KPX A Odieresis -50 +KPX A Ograve -50 +KPX A Ohungarumlaut -50 +KPX A Omacron -50 +KPX A Oslash -50 +KPX A Otilde -50 +KPX A Q -55 +KPX A T -55 +KPX A Tcaron -55 +KPX A Tcommaaccent -55 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -95 +KPX A W -100 +KPX A Y -70 +KPX A Yacute -70 +KPX A Ydieresis -70 +KPX A quoteright -74 +KPX A u -30 +KPX A uacute -30 +KPX A ucircumflex -30 +KPX A udieresis -30 +KPX A ugrave -30 +KPX A uhungarumlaut -30 +KPX A umacron -30 +KPX A uogonek -30 +KPX A uring -30 +KPX A v -74 +KPX A w -74 +KPX A y -74 +KPX A yacute -74 +KPX A ydieresis -74 +KPX Aacute C -65 +KPX Aacute Cacute -65 +KPX Aacute Ccaron -65 +KPX Aacute Ccedilla -65 +KPX Aacute G -60 +KPX Aacute Gbreve -60 +KPX Aacute Gcommaaccent -60 +KPX Aacute O -50 +KPX Aacute Oacute -50 +KPX Aacute Ocircumflex -50 +KPX Aacute Odieresis -50 +KPX Aacute Ograve -50 +KPX Aacute Ohungarumlaut -50 +KPX Aacute Omacron -50 +KPX Aacute Oslash -50 +KPX Aacute Otilde -50 +KPX Aacute Q -55 +KPX Aacute T -55 +KPX Aacute Tcaron -55 +KPX Aacute Tcommaaccent -55 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -95 +KPX Aacute W -100 +KPX Aacute Y -70 +KPX Aacute Yacute -70 +KPX Aacute Ydieresis -70 +KPX Aacute quoteright -74 +KPX Aacute u -30 +KPX Aacute uacute -30 +KPX Aacute ucircumflex -30 +KPX Aacute udieresis -30 +KPX Aacute ugrave -30 +KPX Aacute uhungarumlaut -30 +KPX Aacute umacron -30 +KPX Aacute uogonek -30 +KPX Aacute uring -30 +KPX Aacute v -74 +KPX Aacute w -74 +KPX Aacute y -74 +KPX Aacute yacute -74 +KPX Aacute ydieresis -74 +KPX Abreve C -65 +KPX Abreve Cacute -65 +KPX Abreve Ccaron -65 +KPX Abreve Ccedilla -65 +KPX Abreve G -60 +KPX Abreve Gbreve -60 +KPX Abreve Gcommaaccent -60 +KPX Abreve O -50 +KPX Abreve Oacute -50 +KPX Abreve Ocircumflex -50 +KPX Abreve Odieresis -50 +KPX Abreve Ograve -50 +KPX Abreve Ohungarumlaut -50 +KPX Abreve Omacron -50 +KPX Abreve Oslash -50 +KPX Abreve Otilde -50 +KPX Abreve Q -55 +KPX Abreve T -55 +KPX Abreve Tcaron -55 +KPX Abreve Tcommaaccent -55 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -95 +KPX Abreve W -100 +KPX Abreve Y -70 +KPX Abreve Yacute -70 +KPX Abreve Ydieresis -70 +KPX Abreve quoteright -74 +KPX Abreve u -30 +KPX Abreve uacute -30 +KPX Abreve ucircumflex -30 +KPX Abreve udieresis -30 +KPX Abreve ugrave -30 +KPX Abreve uhungarumlaut -30 +KPX Abreve umacron -30 +KPX Abreve uogonek -30 +KPX Abreve uring -30 +KPX Abreve v -74 +KPX Abreve w -74 +KPX Abreve y -74 +KPX Abreve yacute -74 +KPX Abreve ydieresis -74 +KPX Acircumflex C -65 +KPX Acircumflex Cacute -65 +KPX Acircumflex Ccaron -65 +KPX Acircumflex Ccedilla -65 +KPX Acircumflex G -60 +KPX Acircumflex Gbreve -60 +KPX Acircumflex Gcommaaccent -60 +KPX Acircumflex O -50 +KPX Acircumflex Oacute -50 +KPX Acircumflex Ocircumflex -50 +KPX Acircumflex Odieresis -50 +KPX Acircumflex Ograve -50 +KPX Acircumflex Ohungarumlaut -50 +KPX Acircumflex Omacron -50 +KPX Acircumflex Oslash -50 +KPX Acircumflex Otilde -50 +KPX Acircumflex Q -55 +KPX Acircumflex T -55 +KPX Acircumflex Tcaron -55 +KPX Acircumflex Tcommaaccent -55 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -95 +KPX Acircumflex W -100 +KPX Acircumflex Y -70 +KPX Acircumflex Yacute -70 +KPX Acircumflex Ydieresis -70 +KPX Acircumflex quoteright -74 +KPX Acircumflex u -30 +KPX Acircumflex uacute -30 +KPX Acircumflex ucircumflex -30 +KPX Acircumflex udieresis -30 +KPX Acircumflex ugrave -30 +KPX Acircumflex uhungarumlaut -30 +KPX Acircumflex umacron -30 +KPX Acircumflex uogonek -30 +KPX Acircumflex uring -30 +KPX Acircumflex v -74 +KPX Acircumflex w -74 +KPX Acircumflex y -74 +KPX Acircumflex yacute -74 +KPX Acircumflex ydieresis -74 +KPX Adieresis C -65 +KPX Adieresis Cacute -65 +KPX Adieresis Ccaron -65 +KPX Adieresis Ccedilla -65 +KPX Adieresis G -60 +KPX Adieresis Gbreve -60 +KPX Adieresis Gcommaaccent -60 +KPX Adieresis O -50 +KPX Adieresis Oacute -50 +KPX Adieresis Ocircumflex -50 +KPX Adieresis Odieresis -50 +KPX Adieresis Ograve -50 +KPX Adieresis Ohungarumlaut -50 +KPX Adieresis Omacron -50 +KPX Adieresis Oslash -50 +KPX Adieresis Otilde -50 +KPX Adieresis Q -55 +KPX Adieresis T -55 +KPX Adieresis Tcaron -55 +KPX Adieresis Tcommaaccent -55 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -95 +KPX Adieresis W -100 +KPX Adieresis Y -70 +KPX Adieresis Yacute -70 +KPX Adieresis Ydieresis -70 +KPX Adieresis quoteright -74 +KPX Adieresis u -30 +KPX Adieresis uacute -30 +KPX Adieresis ucircumflex -30 +KPX Adieresis udieresis -30 +KPX Adieresis ugrave -30 +KPX Adieresis uhungarumlaut -30 +KPX Adieresis umacron -30 +KPX Adieresis uogonek -30 +KPX Adieresis uring -30 +KPX Adieresis v -74 +KPX Adieresis w -74 +KPX Adieresis y -74 +KPX Adieresis yacute -74 +KPX Adieresis ydieresis -74 +KPX Agrave C -65 +KPX Agrave Cacute -65 +KPX Agrave Ccaron -65 +KPX Agrave Ccedilla -65 +KPX Agrave G -60 +KPX Agrave Gbreve -60 +KPX Agrave Gcommaaccent -60 +KPX Agrave O -50 +KPX Agrave Oacute -50 +KPX Agrave Ocircumflex -50 +KPX Agrave Odieresis -50 +KPX Agrave Ograve -50 +KPX Agrave Ohungarumlaut -50 +KPX Agrave Omacron -50 +KPX Agrave Oslash -50 +KPX Agrave Otilde -50 +KPX Agrave Q -55 +KPX Agrave T -55 +KPX Agrave Tcaron -55 +KPX Agrave Tcommaaccent -55 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -95 +KPX Agrave W -100 +KPX Agrave Y -70 +KPX Agrave Yacute -70 +KPX Agrave Ydieresis -70 +KPX Agrave quoteright -74 +KPX Agrave u -30 +KPX Agrave uacute -30 +KPX Agrave ucircumflex -30 +KPX Agrave udieresis -30 +KPX Agrave ugrave -30 +KPX Agrave uhungarumlaut -30 +KPX Agrave umacron -30 +KPX Agrave uogonek -30 +KPX Agrave uring -30 +KPX Agrave v -74 +KPX Agrave w -74 +KPX Agrave y -74 +KPX Agrave yacute -74 +KPX Agrave ydieresis -74 +KPX Amacron C -65 +KPX Amacron Cacute -65 +KPX Amacron Ccaron -65 +KPX Amacron Ccedilla -65 +KPX Amacron G -60 +KPX Amacron Gbreve -60 +KPX Amacron Gcommaaccent -60 +KPX Amacron O -50 +KPX Amacron Oacute -50 +KPX Amacron Ocircumflex -50 +KPX Amacron Odieresis -50 +KPX Amacron Ograve -50 +KPX Amacron Ohungarumlaut -50 +KPX Amacron Omacron -50 +KPX Amacron Oslash -50 +KPX Amacron Otilde -50 +KPX Amacron Q -55 +KPX Amacron T -55 +KPX Amacron Tcaron -55 +KPX Amacron Tcommaaccent -55 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -95 +KPX Amacron W -100 +KPX Amacron Y -70 +KPX Amacron Yacute -70 +KPX Amacron Ydieresis -70 +KPX Amacron quoteright -74 +KPX Amacron u -30 +KPX Amacron uacute -30 +KPX Amacron ucircumflex -30 +KPX Amacron udieresis -30 +KPX Amacron ugrave -30 +KPX Amacron uhungarumlaut -30 +KPX Amacron umacron -30 +KPX Amacron uogonek -30 +KPX Amacron uring -30 +KPX Amacron v -74 +KPX Amacron w -74 +KPX Amacron y -74 +KPX Amacron yacute -74 +KPX Amacron ydieresis -74 +KPX Aogonek C -65 +KPX Aogonek Cacute -65 +KPX Aogonek Ccaron -65 +KPX Aogonek Ccedilla -65 +KPX Aogonek G -60 +KPX Aogonek Gbreve -60 +KPX Aogonek Gcommaaccent -60 +KPX Aogonek O -50 +KPX Aogonek Oacute -50 +KPX Aogonek Ocircumflex -50 +KPX Aogonek Odieresis -50 +KPX Aogonek Ograve -50 +KPX Aogonek Ohungarumlaut -50 +KPX Aogonek Omacron -50 +KPX Aogonek Oslash -50 +KPX Aogonek Otilde -50 +KPX Aogonek Q -55 +KPX Aogonek T -55 +KPX Aogonek Tcaron -55 +KPX Aogonek Tcommaaccent -55 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -95 +KPX Aogonek W -100 +KPX Aogonek Y -70 +KPX Aogonek Yacute -70 +KPX Aogonek Ydieresis -70 +KPX Aogonek quoteright -74 +KPX Aogonek u -30 +KPX Aogonek uacute -30 +KPX Aogonek ucircumflex -30 +KPX Aogonek udieresis -30 +KPX Aogonek ugrave -30 +KPX Aogonek uhungarumlaut -30 +KPX Aogonek umacron -30 +KPX Aogonek uogonek -30 +KPX Aogonek uring -30 +KPX Aogonek v -74 +KPX Aogonek w -74 +KPX Aogonek y -34 +KPX Aogonek yacute -34 +KPX Aogonek ydieresis -34 +KPX Aring C -65 +KPX Aring Cacute -65 +KPX Aring Ccaron -65 +KPX Aring Ccedilla -65 +KPX Aring G -60 +KPX Aring Gbreve -60 +KPX Aring Gcommaaccent -60 +KPX Aring O -50 +KPX Aring Oacute -50 +KPX Aring Ocircumflex -50 +KPX Aring Odieresis -50 +KPX Aring Ograve -50 +KPX Aring Ohungarumlaut -50 +KPX Aring Omacron -50 +KPX Aring Oslash -50 +KPX Aring Otilde -50 +KPX Aring Q -55 +KPX Aring T -55 +KPX Aring Tcaron -55 +KPX Aring Tcommaaccent -55 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -95 +KPX Aring W -100 +KPX Aring Y -70 +KPX Aring Yacute -70 +KPX Aring Ydieresis -70 +KPX Aring quoteright -74 +KPX Aring u -30 +KPX Aring uacute -30 +KPX Aring ucircumflex -30 +KPX Aring udieresis -30 +KPX Aring ugrave -30 +KPX Aring uhungarumlaut -30 +KPX Aring umacron -30 +KPX Aring uogonek -30 +KPX Aring uring -30 +KPX Aring v -74 +KPX Aring w -74 +KPX Aring y -74 +KPX Aring yacute -74 +KPX Aring ydieresis -74 +KPX Atilde C -65 +KPX Atilde Cacute -65 +KPX Atilde Ccaron -65 +KPX Atilde Ccedilla -65 +KPX Atilde G -60 +KPX Atilde Gbreve -60 +KPX Atilde Gcommaaccent -60 +KPX Atilde O -50 +KPX Atilde Oacute -50 +KPX Atilde Ocircumflex -50 +KPX Atilde Odieresis -50 +KPX Atilde Ograve -50 +KPX Atilde Ohungarumlaut -50 +KPX Atilde Omacron -50 +KPX Atilde Oslash -50 +KPX Atilde Otilde -50 +KPX Atilde Q -55 +KPX Atilde T -55 +KPX Atilde Tcaron -55 +KPX Atilde Tcommaaccent -55 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -95 +KPX Atilde W -100 +KPX Atilde Y -70 +KPX Atilde Yacute -70 +KPX Atilde Ydieresis -70 +KPX Atilde quoteright -74 +KPX Atilde u -30 +KPX Atilde uacute -30 +KPX Atilde ucircumflex -30 +KPX Atilde udieresis -30 +KPX Atilde ugrave -30 +KPX Atilde uhungarumlaut -30 +KPX Atilde umacron -30 +KPX Atilde uogonek -30 +KPX Atilde uring -30 +KPX Atilde v -74 +KPX Atilde w -74 +KPX Atilde y -74 +KPX Atilde yacute -74 +KPX Atilde ydieresis -74 +KPX B A -25 +KPX B Aacute -25 +KPX B Abreve -25 +KPX B Acircumflex -25 +KPX B Adieresis -25 +KPX B Agrave -25 +KPX B Amacron -25 +KPX B Aogonek -25 +KPX B Aring -25 +KPX B Atilde -25 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX D A -25 +KPX D Aacute -25 +KPX D Abreve -25 +KPX D Acircumflex -25 +KPX D Adieresis -25 +KPX D Agrave -25 +KPX D Amacron -25 +KPX D Aogonek -25 +KPX D Aring -25 +KPX D Atilde -25 +KPX D V -50 +KPX D W -40 +KPX D Y -50 +KPX D Yacute -50 +KPX D Ydieresis -50 +KPX Dcaron A -25 +KPX Dcaron Aacute -25 +KPX Dcaron Abreve -25 +KPX Dcaron Acircumflex -25 +KPX Dcaron Adieresis -25 +KPX Dcaron Agrave -25 +KPX Dcaron Amacron -25 +KPX Dcaron Aogonek -25 +KPX Dcaron Aring -25 +KPX Dcaron Atilde -25 +KPX Dcaron V -50 +KPX Dcaron W -40 +KPX Dcaron Y -50 +KPX Dcaron Yacute -50 +KPX Dcaron Ydieresis -50 +KPX Dcroat A -25 +KPX Dcroat Aacute -25 +KPX Dcroat Abreve -25 +KPX Dcroat Acircumflex -25 +KPX Dcroat Adieresis -25 +KPX Dcroat Agrave -25 +KPX Dcroat Amacron -25 +KPX Dcroat Aogonek -25 +KPX Dcroat Aring -25 +KPX Dcroat Atilde -25 +KPX Dcroat V -50 +KPX Dcroat W -40 +KPX Dcroat Y -50 +KPX Dcroat Yacute -50 +KPX Dcroat Ydieresis -50 +KPX F A -100 +KPX F Aacute -100 +KPX F Abreve -100 +KPX F Acircumflex -100 +KPX F Adieresis -100 +KPX F Agrave -100 +KPX F Amacron -100 +KPX F Aogonek -100 +KPX F Aring -100 +KPX F Atilde -100 +KPX F a -95 +KPX F aacute -95 +KPX F abreve -95 +KPX F acircumflex -95 +KPX F adieresis -95 +KPX F agrave -95 +KPX F amacron -95 +KPX F aogonek -95 +KPX F aring -95 +KPX F atilde -95 +KPX F comma -129 +KPX F e -100 +KPX F eacute -100 +KPX F ecaron -100 +KPX F ecircumflex -100 +KPX F edieresis -100 +KPX F edotaccent -100 +KPX F egrave -100 +KPX F emacron -100 +KPX F eogonek -100 +KPX F i -40 +KPX F iacute -40 +KPX F icircumflex -40 +KPX F idieresis -40 +KPX F igrave -40 +KPX F imacron -40 +KPX F iogonek -40 +KPX F o -70 +KPX F oacute -70 +KPX F ocircumflex -70 +KPX F odieresis -70 +KPX F ograve -70 +KPX F ohungarumlaut -70 +KPX F omacron -70 +KPX F oslash -70 +KPX F otilde -70 +KPX F period -129 +KPX F r -50 +KPX F racute -50 +KPX F rcaron -50 +KPX F rcommaaccent -50 +KPX J A -25 +KPX J Aacute -25 +KPX J Abreve -25 +KPX J Acircumflex -25 +KPX J Adieresis -25 +KPX J Agrave -25 +KPX J Amacron -25 +KPX J Aogonek -25 +KPX J Aring -25 +KPX J Atilde -25 +KPX J a -40 +KPX J aacute -40 +KPX J abreve -40 +KPX J acircumflex -40 +KPX J adieresis -40 +KPX J agrave -40 +KPX J amacron -40 +KPX J aogonek -40 +KPX J aring -40 +KPX J atilde -40 +KPX J comma -10 +KPX J e -40 +KPX J eacute -40 +KPX J ecaron -40 +KPX J ecircumflex -40 +KPX J edieresis -40 +KPX J edotaccent -40 +KPX J egrave -40 +KPX J emacron -40 +KPX J eogonek -40 +KPX J o -40 +KPX J oacute -40 +KPX J ocircumflex -40 +KPX J odieresis -40 +KPX J ograve -40 +KPX J ohungarumlaut -40 +KPX J omacron -40 +KPX J oslash -40 +KPX J otilde -40 +KPX J period -10 +KPX J u -40 +KPX J uacute -40 +KPX J ucircumflex -40 +KPX J udieresis -40 +KPX J ugrave -40 +KPX J uhungarumlaut -40 +KPX J umacron -40 +KPX J uogonek -40 +KPX J uring -40 +KPX K O -30 +KPX K Oacute -30 +KPX K Ocircumflex -30 +KPX K Odieresis -30 +KPX K Ograve -30 +KPX K Ohungarumlaut -30 +KPX K Omacron -30 +KPX K Oslash -30 +KPX K Otilde -30 +KPX K e -25 +KPX K eacute -25 +KPX K ecaron -25 +KPX K ecircumflex -25 +KPX K edieresis -25 +KPX K edotaccent -25 +KPX K egrave -25 +KPX K emacron -25 +KPX K eogonek -25 +KPX K o -25 +KPX K oacute -25 +KPX K ocircumflex -25 +KPX K odieresis -25 +KPX K ograve -25 +KPX K ohungarumlaut -25 +KPX K omacron -25 +KPX K oslash -25 +KPX K otilde -25 +KPX K u -20 +KPX K uacute -20 +KPX K ucircumflex -20 +KPX K udieresis -20 +KPX K ugrave -20 +KPX K uhungarumlaut -20 +KPX K umacron -20 +KPX K uogonek -20 +KPX K uring -20 +KPX K y -20 +KPX K yacute -20 +KPX K ydieresis -20 +KPX Kcommaaccent O -30 +KPX Kcommaaccent Oacute -30 +KPX Kcommaaccent Ocircumflex -30 +KPX Kcommaaccent Odieresis -30 +KPX Kcommaaccent Ograve -30 +KPX Kcommaaccent Ohungarumlaut -30 +KPX Kcommaaccent Omacron -30 +KPX Kcommaaccent Oslash -30 +KPX Kcommaaccent Otilde -30 +KPX Kcommaaccent e -25 +KPX Kcommaaccent eacute -25 +KPX Kcommaaccent ecaron -25 +KPX Kcommaaccent ecircumflex -25 +KPX Kcommaaccent edieresis -25 +KPX Kcommaaccent edotaccent -25 +KPX Kcommaaccent egrave -25 +KPX Kcommaaccent emacron -25 +KPX Kcommaaccent eogonek -25 +KPX Kcommaaccent o -25 +KPX Kcommaaccent oacute -25 +KPX Kcommaaccent ocircumflex -25 +KPX Kcommaaccent odieresis -25 +KPX Kcommaaccent ograve -25 +KPX Kcommaaccent ohungarumlaut -25 +KPX Kcommaaccent omacron -25 +KPX Kcommaaccent oslash -25 +KPX Kcommaaccent otilde -25 +KPX Kcommaaccent u -20 +KPX Kcommaaccent uacute -20 +KPX Kcommaaccent ucircumflex -20 +KPX Kcommaaccent udieresis -20 +KPX Kcommaaccent ugrave -20 +KPX Kcommaaccent uhungarumlaut -20 +KPX Kcommaaccent umacron -20 +KPX Kcommaaccent uogonek -20 +KPX Kcommaaccent uring -20 +KPX Kcommaaccent y -20 +KPX Kcommaaccent yacute -20 +KPX Kcommaaccent ydieresis -20 +KPX L T -18 +KPX L Tcaron -18 +KPX L Tcommaaccent -18 +KPX L V -37 +KPX L W -37 +KPX L Y -37 +KPX L Yacute -37 +KPX L Ydieresis -37 +KPX L quoteright -55 +KPX L y -37 +KPX L yacute -37 +KPX L ydieresis -37 +KPX Lacute T -18 +KPX Lacute Tcaron -18 +KPX Lacute Tcommaaccent -18 +KPX Lacute V -37 +KPX Lacute W -37 +KPX Lacute Y -37 +KPX Lacute Yacute -37 +KPX Lacute Ydieresis -37 +KPX Lacute quoteright -55 +KPX Lacute y -37 +KPX Lacute yacute -37 +KPX Lacute ydieresis -37 +KPX Lcommaaccent T -18 +KPX Lcommaaccent Tcaron -18 +KPX Lcommaaccent Tcommaaccent -18 +KPX Lcommaaccent V -37 +KPX Lcommaaccent W -37 +KPX Lcommaaccent Y -37 +KPX Lcommaaccent Yacute -37 +KPX Lcommaaccent Ydieresis -37 +KPX Lcommaaccent quoteright -55 +KPX Lcommaaccent y -37 +KPX Lcommaaccent yacute -37 +KPX Lcommaaccent ydieresis -37 +KPX Lslash T -18 +KPX Lslash Tcaron -18 +KPX Lslash Tcommaaccent -18 +KPX Lslash V -37 +KPX Lslash W -37 +KPX Lslash Y -37 +KPX Lslash Yacute -37 +KPX Lslash Ydieresis -37 +KPX Lslash quoteright -55 +KPX Lslash y -37 +KPX Lslash yacute -37 +KPX Lslash ydieresis -37 +KPX N A -30 +KPX N Aacute -30 +KPX N Abreve -30 +KPX N Acircumflex -30 +KPX N Adieresis -30 +KPX N Agrave -30 +KPX N Amacron -30 +KPX N Aogonek -30 +KPX N Aring -30 +KPX N Atilde -30 +KPX Nacute A -30 +KPX Nacute Aacute -30 +KPX Nacute Abreve -30 +KPX Nacute Acircumflex -30 +KPX Nacute Adieresis -30 +KPX Nacute Agrave -30 +KPX Nacute Amacron -30 +KPX Nacute Aogonek -30 +KPX Nacute Aring -30 +KPX Nacute Atilde -30 +KPX Ncaron A -30 +KPX Ncaron Aacute -30 +KPX Ncaron Abreve -30 +KPX Ncaron Acircumflex -30 +KPX Ncaron Adieresis -30 +KPX Ncaron Agrave -30 +KPX Ncaron Amacron -30 +KPX Ncaron Aogonek -30 +KPX Ncaron Aring -30 +KPX Ncaron Atilde -30 +KPX Ncommaaccent A -30 +KPX Ncommaaccent Aacute -30 +KPX Ncommaaccent Abreve -30 +KPX Ncommaaccent Acircumflex -30 +KPX Ncommaaccent Adieresis -30 +KPX Ncommaaccent Agrave -30 +KPX Ncommaaccent Amacron -30 +KPX Ncommaaccent Aogonek -30 +KPX Ncommaaccent Aring -30 +KPX Ncommaaccent Atilde -30 +KPX Ntilde A -30 +KPX Ntilde Aacute -30 +KPX Ntilde Abreve -30 +KPX Ntilde Acircumflex -30 +KPX Ntilde Adieresis -30 +KPX Ntilde Agrave -30 +KPX Ntilde Amacron -30 +KPX Ntilde Aogonek -30 +KPX Ntilde Aring -30 +KPX Ntilde Atilde -30 +KPX O A -40 +KPX O Aacute -40 +KPX O Abreve -40 +KPX O Acircumflex -40 +KPX O Adieresis -40 +KPX O Agrave -40 +KPX O Amacron -40 +KPX O Aogonek -40 +KPX O Aring -40 +KPX O Atilde -40 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -50 +KPX O X -40 +KPX O Y -50 +KPX O Yacute -50 +KPX O Ydieresis -50 +KPX Oacute A -40 +KPX Oacute Aacute -40 +KPX Oacute Abreve -40 +KPX Oacute Acircumflex -40 +KPX Oacute Adieresis -40 +KPX Oacute Agrave -40 +KPX Oacute Amacron -40 +KPX Oacute Aogonek -40 +KPX Oacute Aring -40 +KPX Oacute Atilde -40 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -50 +KPX Oacute X -40 +KPX Oacute Y -50 +KPX Oacute Yacute -50 +KPX Oacute Ydieresis -50 +KPX Ocircumflex A -40 +KPX Ocircumflex Aacute -40 +KPX Ocircumflex Abreve -40 +KPX Ocircumflex Acircumflex -40 +KPX Ocircumflex Adieresis -40 +KPX Ocircumflex Agrave -40 +KPX Ocircumflex Amacron -40 +KPX Ocircumflex Aogonek -40 +KPX Ocircumflex Aring -40 +KPX Ocircumflex Atilde -40 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -50 +KPX Ocircumflex X -40 +KPX Ocircumflex Y -50 +KPX Ocircumflex Yacute -50 +KPX Ocircumflex Ydieresis -50 +KPX Odieresis A -40 +KPX Odieresis Aacute -40 +KPX Odieresis Abreve -40 +KPX Odieresis Acircumflex -40 +KPX Odieresis Adieresis -40 +KPX Odieresis Agrave -40 +KPX Odieresis Amacron -40 +KPX Odieresis Aogonek -40 +KPX Odieresis Aring -40 +KPX Odieresis Atilde -40 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -50 +KPX Odieresis X -40 +KPX Odieresis Y -50 +KPX Odieresis Yacute -50 +KPX Odieresis Ydieresis -50 +KPX Ograve A -40 +KPX Ograve Aacute -40 +KPX Ograve Abreve -40 +KPX Ograve Acircumflex -40 +KPX Ograve Adieresis -40 +KPX Ograve Agrave -40 +KPX Ograve Amacron -40 +KPX Ograve Aogonek -40 +KPX Ograve Aring -40 +KPX Ograve Atilde -40 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -50 +KPX Ograve X -40 +KPX Ograve Y -50 +KPX Ograve Yacute -50 +KPX Ograve Ydieresis -50 +KPX Ohungarumlaut A -40 +KPX Ohungarumlaut Aacute -40 +KPX Ohungarumlaut Abreve -40 +KPX Ohungarumlaut Acircumflex -40 +KPX Ohungarumlaut Adieresis -40 +KPX Ohungarumlaut Agrave -40 +KPX Ohungarumlaut Amacron -40 +KPX Ohungarumlaut Aogonek -40 +KPX Ohungarumlaut Aring -40 +KPX Ohungarumlaut Atilde -40 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -50 +KPX Ohungarumlaut X -40 +KPX Ohungarumlaut Y -50 +KPX Ohungarumlaut Yacute -50 +KPX Ohungarumlaut Ydieresis -50 +KPX Omacron A -40 +KPX Omacron Aacute -40 +KPX Omacron Abreve -40 +KPX Omacron Acircumflex -40 +KPX Omacron Adieresis -40 +KPX Omacron Agrave -40 +KPX Omacron Amacron -40 +KPX Omacron Aogonek -40 +KPX Omacron Aring -40 +KPX Omacron Atilde -40 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -50 +KPX Omacron X -40 +KPX Omacron Y -50 +KPX Omacron Yacute -50 +KPX Omacron Ydieresis -50 +KPX Oslash A -40 +KPX Oslash Aacute -40 +KPX Oslash Abreve -40 +KPX Oslash Acircumflex -40 +KPX Oslash Adieresis -40 +KPX Oslash Agrave -40 +KPX Oslash Amacron -40 +KPX Oslash Aogonek -40 +KPX Oslash Aring -40 +KPX Oslash Atilde -40 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -50 +KPX Oslash X -40 +KPX Oslash Y -50 +KPX Oslash Yacute -50 +KPX Oslash Ydieresis -50 +KPX Otilde A -40 +KPX Otilde Aacute -40 +KPX Otilde Abreve -40 +KPX Otilde Acircumflex -40 +KPX Otilde Adieresis -40 +KPX Otilde Agrave -40 +KPX Otilde Amacron -40 +KPX Otilde Aogonek -40 +KPX Otilde Aring -40 +KPX Otilde Atilde -40 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -50 +KPX Otilde X -40 +KPX Otilde Y -50 +KPX Otilde Yacute -50 +KPX Otilde Ydieresis -50 +KPX P A -85 +KPX P Aacute -85 +KPX P Abreve -85 +KPX P Acircumflex -85 +KPX P Adieresis -85 +KPX P Agrave -85 +KPX P Amacron -85 +KPX P Aogonek -85 +KPX P Aring -85 +KPX P Atilde -85 +KPX P a -40 +KPX P aacute -40 +KPX P abreve -40 +KPX P acircumflex -40 +KPX P adieresis -40 +KPX P agrave -40 +KPX P amacron -40 +KPX P aogonek -40 +KPX P aring -40 +KPX P atilde -40 +KPX P comma -129 +KPX P e -50 +KPX P eacute -50 +KPX P ecaron -50 +KPX P ecircumflex -50 +KPX P edieresis -50 +KPX P edotaccent -50 +KPX P egrave -50 +KPX P emacron -50 +KPX P eogonek -50 +KPX P o -55 +KPX P oacute -55 +KPX P ocircumflex -55 +KPX P odieresis -55 +KPX P ograve -55 +KPX P ohungarumlaut -55 +KPX P omacron -55 +KPX P oslash -55 +KPX P otilde -55 +KPX P period -129 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX R O -40 +KPX R Oacute -40 +KPX R Ocircumflex -40 +KPX R Odieresis -40 +KPX R Ograve -40 +KPX R Ohungarumlaut -40 +KPX R Omacron -40 +KPX R Oslash -40 +KPX R Otilde -40 +KPX R T -30 +KPX R Tcaron -30 +KPX R Tcommaaccent -30 +KPX R U -40 +KPX R Uacute -40 +KPX R Ucircumflex -40 +KPX R Udieresis -40 +KPX R Ugrave -40 +KPX R Uhungarumlaut -40 +KPX R Umacron -40 +KPX R Uogonek -40 +KPX R Uring -40 +KPX R V -18 +KPX R W -18 +KPX R Y -18 +KPX R Yacute -18 +KPX R Ydieresis -18 +KPX Racute O -40 +KPX Racute Oacute -40 +KPX Racute Ocircumflex -40 +KPX Racute Odieresis -40 +KPX Racute Ograve -40 +KPX Racute Ohungarumlaut -40 +KPX Racute Omacron -40 +KPX Racute Oslash -40 +KPX Racute Otilde -40 +KPX Racute T -30 +KPX Racute Tcaron -30 +KPX Racute Tcommaaccent -30 +KPX Racute U -40 +KPX Racute Uacute -40 +KPX Racute Ucircumflex -40 +KPX Racute Udieresis -40 +KPX Racute Ugrave -40 +KPX Racute Uhungarumlaut -40 +KPX Racute Umacron -40 +KPX Racute Uogonek -40 +KPX Racute Uring -40 +KPX Racute V -18 +KPX Racute W -18 +KPX Racute Y -18 +KPX Racute Yacute -18 +KPX Racute Ydieresis -18 +KPX Rcaron O -40 +KPX Rcaron Oacute -40 +KPX Rcaron Ocircumflex -40 +KPX Rcaron Odieresis -40 +KPX Rcaron Ograve -40 +KPX Rcaron Ohungarumlaut -40 +KPX Rcaron Omacron -40 +KPX Rcaron Oslash -40 +KPX Rcaron Otilde -40 +KPX Rcaron T -30 +KPX Rcaron Tcaron -30 +KPX Rcaron Tcommaaccent -30 +KPX Rcaron U -40 +KPX Rcaron Uacute -40 +KPX Rcaron Ucircumflex -40 +KPX Rcaron Udieresis -40 +KPX Rcaron Ugrave -40 +KPX Rcaron Uhungarumlaut -40 +KPX Rcaron Umacron -40 +KPX Rcaron Uogonek -40 +KPX Rcaron Uring -40 +KPX Rcaron V -18 +KPX Rcaron W -18 +KPX Rcaron Y -18 +KPX Rcaron Yacute -18 +KPX Rcaron Ydieresis -18 +KPX Rcommaaccent O -40 +KPX Rcommaaccent Oacute -40 +KPX Rcommaaccent Ocircumflex -40 +KPX Rcommaaccent Odieresis -40 +KPX Rcommaaccent Ograve -40 +KPX Rcommaaccent Ohungarumlaut -40 +KPX Rcommaaccent Omacron -40 +KPX Rcommaaccent Oslash -40 +KPX Rcommaaccent Otilde -40 +KPX Rcommaaccent T -30 +KPX Rcommaaccent Tcaron -30 +KPX Rcommaaccent Tcommaaccent -30 +KPX Rcommaaccent U -40 +KPX Rcommaaccent Uacute -40 +KPX Rcommaaccent Ucircumflex -40 +KPX Rcommaaccent Udieresis -40 +KPX Rcommaaccent Ugrave -40 +KPX Rcommaaccent Uhungarumlaut -40 +KPX Rcommaaccent Umacron -40 +KPX Rcommaaccent Uogonek -40 +KPX Rcommaaccent Uring -40 +KPX Rcommaaccent V -18 +KPX Rcommaaccent W -18 +KPX Rcommaaccent Y -18 +KPX Rcommaaccent Yacute -18 +KPX Rcommaaccent Ydieresis -18 +KPX T A -55 +KPX T Aacute -55 +KPX T Abreve -55 +KPX T Acircumflex -55 +KPX T Adieresis -55 +KPX T Agrave -55 +KPX T Amacron -55 +KPX T Aogonek -55 +KPX T Aring -55 +KPX T Atilde -55 +KPX T O -18 +KPX T Oacute -18 +KPX T Ocircumflex -18 +KPX T Odieresis -18 +KPX T Ograve -18 +KPX T Ohungarumlaut -18 +KPX T Omacron -18 +KPX T Oslash -18 +KPX T Otilde -18 +KPX T a -92 +KPX T aacute -92 +KPX T abreve -92 +KPX T acircumflex -92 +KPX T adieresis -92 +KPX T agrave -92 +KPX T amacron -92 +KPX T aogonek -92 +KPX T aring -92 +KPX T atilde -92 +KPX T colon -74 +KPX T comma -92 +KPX T e -92 +KPX T eacute -92 +KPX T ecaron -92 +KPX T ecircumflex -92 +KPX T edieresis -52 +KPX T edotaccent -92 +KPX T egrave -52 +KPX T emacron -52 +KPX T eogonek -92 +KPX T hyphen -92 +KPX T i -37 +KPX T iacute -37 +KPX T iogonek -37 +KPX T o -95 +KPX T oacute -95 +KPX T ocircumflex -95 +KPX T odieresis -95 +KPX T ograve -95 +KPX T ohungarumlaut -95 +KPX T omacron -95 +KPX T oslash -95 +KPX T otilde -95 +KPX T period -92 +KPX T r -37 +KPX T racute -37 +KPX T rcaron -37 +KPX T rcommaaccent -37 +KPX T semicolon -74 +KPX T u -37 +KPX T uacute -37 +KPX T ucircumflex -37 +KPX T udieresis -37 +KPX T ugrave -37 +KPX T uhungarumlaut -37 +KPX T umacron -37 +KPX T uogonek -37 +KPX T uring -37 +KPX T w -37 +KPX T y -37 +KPX T yacute -37 +KPX T ydieresis -37 +KPX Tcaron A -55 +KPX Tcaron Aacute -55 +KPX Tcaron Abreve -55 +KPX Tcaron Acircumflex -55 +KPX Tcaron Adieresis -55 +KPX Tcaron Agrave -55 +KPX Tcaron Amacron -55 +KPX Tcaron Aogonek -55 +KPX Tcaron Aring -55 +KPX Tcaron Atilde -55 +KPX Tcaron O -18 +KPX Tcaron Oacute -18 +KPX Tcaron Ocircumflex -18 +KPX Tcaron Odieresis -18 +KPX Tcaron Ograve -18 +KPX Tcaron Ohungarumlaut -18 +KPX Tcaron Omacron -18 +KPX Tcaron Oslash -18 +KPX Tcaron Otilde -18 +KPX Tcaron a -92 +KPX Tcaron aacute -92 +KPX Tcaron abreve -92 +KPX Tcaron acircumflex -92 +KPX Tcaron adieresis -92 +KPX Tcaron agrave -92 +KPX Tcaron amacron -92 +KPX Tcaron aogonek -92 +KPX Tcaron aring -92 +KPX Tcaron atilde -92 +KPX Tcaron colon -74 +KPX Tcaron comma -92 +KPX Tcaron e -92 +KPX Tcaron eacute -92 +KPX Tcaron ecaron -92 +KPX Tcaron ecircumflex -92 +KPX Tcaron edieresis -52 +KPX Tcaron edotaccent -92 +KPX Tcaron egrave -52 +KPX Tcaron emacron -52 +KPX Tcaron eogonek -92 +KPX Tcaron hyphen -92 +KPX Tcaron i -37 +KPX Tcaron iacute -37 +KPX Tcaron iogonek -37 +KPX Tcaron o -95 +KPX Tcaron oacute -95 +KPX Tcaron ocircumflex -95 +KPX Tcaron odieresis -95 +KPX Tcaron ograve -95 +KPX Tcaron ohungarumlaut -95 +KPX Tcaron omacron -95 +KPX Tcaron oslash -95 +KPX Tcaron otilde -95 +KPX Tcaron period -92 +KPX Tcaron r -37 +KPX Tcaron racute -37 +KPX Tcaron rcaron -37 +KPX Tcaron rcommaaccent -37 +KPX Tcaron semicolon -74 +KPX Tcaron u -37 +KPX Tcaron uacute -37 +KPX Tcaron ucircumflex -37 +KPX Tcaron udieresis -37 +KPX Tcaron ugrave -37 +KPX Tcaron uhungarumlaut -37 +KPX Tcaron umacron -37 +KPX Tcaron uogonek -37 +KPX Tcaron uring -37 +KPX Tcaron w -37 +KPX Tcaron y -37 +KPX Tcaron yacute -37 +KPX Tcaron ydieresis -37 +KPX Tcommaaccent A -55 +KPX Tcommaaccent Aacute -55 +KPX Tcommaaccent Abreve -55 +KPX Tcommaaccent Acircumflex -55 +KPX Tcommaaccent Adieresis -55 +KPX Tcommaaccent Agrave -55 +KPX Tcommaaccent Amacron -55 +KPX Tcommaaccent Aogonek -55 +KPX Tcommaaccent Aring -55 +KPX Tcommaaccent Atilde -55 +KPX Tcommaaccent O -18 +KPX Tcommaaccent Oacute -18 +KPX Tcommaaccent Ocircumflex -18 +KPX Tcommaaccent Odieresis -18 +KPX Tcommaaccent Ograve -18 +KPX Tcommaaccent Ohungarumlaut -18 +KPX Tcommaaccent Omacron -18 +KPX Tcommaaccent Oslash -18 +KPX Tcommaaccent Otilde -18 +KPX Tcommaaccent a -92 +KPX Tcommaaccent aacute -92 +KPX Tcommaaccent abreve -92 +KPX Tcommaaccent acircumflex -92 +KPX Tcommaaccent adieresis -92 +KPX Tcommaaccent agrave -92 +KPX Tcommaaccent amacron -92 +KPX Tcommaaccent aogonek -92 +KPX Tcommaaccent aring -92 +KPX Tcommaaccent atilde -92 +KPX Tcommaaccent colon -74 +KPX Tcommaaccent comma -92 +KPX Tcommaaccent e -92 +KPX Tcommaaccent eacute -92 +KPX Tcommaaccent ecaron -92 +KPX Tcommaaccent ecircumflex -92 +KPX Tcommaaccent edieresis -52 +KPX Tcommaaccent edotaccent -92 +KPX Tcommaaccent egrave -52 +KPX Tcommaaccent emacron -52 +KPX Tcommaaccent eogonek -92 +KPX Tcommaaccent hyphen -92 +KPX Tcommaaccent i -37 +KPX Tcommaaccent iacute -37 +KPX Tcommaaccent iogonek -37 +KPX Tcommaaccent o -95 +KPX Tcommaaccent oacute -95 +KPX Tcommaaccent ocircumflex -95 +KPX Tcommaaccent odieresis -95 +KPX Tcommaaccent ograve -95 +KPX Tcommaaccent ohungarumlaut -95 +KPX Tcommaaccent omacron -95 +KPX Tcommaaccent oslash -95 +KPX Tcommaaccent otilde -95 +KPX Tcommaaccent period -92 +KPX Tcommaaccent r -37 +KPX Tcommaaccent racute -37 +KPX Tcommaaccent rcaron -37 +KPX Tcommaaccent rcommaaccent -37 +KPX Tcommaaccent semicolon -74 +KPX Tcommaaccent u -37 +KPX Tcommaaccent uacute -37 +KPX Tcommaaccent ucircumflex -37 +KPX Tcommaaccent udieresis -37 +KPX Tcommaaccent ugrave -37 +KPX Tcommaaccent uhungarumlaut -37 +KPX Tcommaaccent umacron -37 +KPX Tcommaaccent uogonek -37 +KPX Tcommaaccent uring -37 +KPX Tcommaaccent w -37 +KPX Tcommaaccent y -37 +KPX Tcommaaccent yacute -37 +KPX Tcommaaccent ydieresis -37 +KPX U A -45 +KPX U Aacute -45 +KPX U Abreve -45 +KPX U Acircumflex -45 +KPX U Adieresis -45 +KPX U Agrave -45 +KPX U Amacron -45 +KPX U Aogonek -45 +KPX U Aring -45 +KPX U Atilde -45 +KPX Uacute A -45 +KPX Uacute Aacute -45 +KPX Uacute Abreve -45 +KPX Uacute Acircumflex -45 +KPX Uacute Adieresis -45 +KPX Uacute Agrave -45 +KPX Uacute Amacron -45 +KPX Uacute Aogonek -45 +KPX Uacute Aring -45 +KPX Uacute Atilde -45 +KPX Ucircumflex A -45 +KPX Ucircumflex Aacute -45 +KPX Ucircumflex Abreve -45 +KPX Ucircumflex Acircumflex -45 +KPX Ucircumflex Adieresis -45 +KPX Ucircumflex Agrave -45 +KPX Ucircumflex Amacron -45 +KPX Ucircumflex Aogonek -45 +KPX Ucircumflex Aring -45 +KPX Ucircumflex Atilde -45 +KPX Udieresis A -45 +KPX Udieresis Aacute -45 +KPX Udieresis Abreve -45 +KPX Udieresis Acircumflex -45 +KPX Udieresis Adieresis -45 +KPX Udieresis Agrave -45 +KPX Udieresis Amacron -45 +KPX Udieresis Aogonek -45 +KPX Udieresis Aring -45 +KPX Udieresis Atilde -45 +KPX Ugrave A -45 +KPX Ugrave Aacute -45 +KPX Ugrave Abreve -45 +KPX Ugrave Acircumflex -45 +KPX Ugrave Adieresis -45 +KPX Ugrave Agrave -45 +KPX Ugrave Amacron -45 +KPX Ugrave Aogonek -45 +KPX Ugrave Aring -45 +KPX Ugrave Atilde -45 +KPX Uhungarumlaut A -45 +KPX Uhungarumlaut Aacute -45 +KPX Uhungarumlaut Abreve -45 +KPX Uhungarumlaut Acircumflex -45 +KPX Uhungarumlaut Adieresis -45 +KPX Uhungarumlaut Agrave -45 +KPX Uhungarumlaut Amacron -45 +KPX Uhungarumlaut Aogonek -45 +KPX Uhungarumlaut Aring -45 +KPX Uhungarumlaut Atilde -45 +KPX Umacron A -45 +KPX Umacron Aacute -45 +KPX Umacron Abreve -45 +KPX Umacron Acircumflex -45 +KPX Umacron Adieresis -45 +KPX Umacron Agrave -45 +KPX Umacron Amacron -45 +KPX Umacron Aogonek -45 +KPX Umacron Aring -45 +KPX Umacron Atilde -45 +KPX Uogonek A -45 +KPX Uogonek Aacute -45 +KPX Uogonek Abreve -45 +KPX Uogonek Acircumflex -45 +KPX Uogonek Adieresis -45 +KPX Uogonek Agrave -45 +KPX Uogonek Amacron -45 +KPX Uogonek Aogonek -45 +KPX Uogonek Aring -45 +KPX Uogonek Atilde -45 +KPX Uring A -45 +KPX Uring Aacute -45 +KPX Uring Abreve -45 +KPX Uring Acircumflex -45 +KPX Uring Adieresis -45 +KPX Uring Agrave -45 +KPX Uring Amacron -45 +KPX Uring Aogonek -45 +KPX Uring Aring -45 +KPX Uring Atilde -45 +KPX V A -85 +KPX V Aacute -85 +KPX V Abreve -85 +KPX V Acircumflex -85 +KPX V Adieresis -85 +KPX V Agrave -85 +KPX V Amacron -85 +KPX V Aogonek -85 +KPX V Aring -85 +KPX V Atilde -85 +KPX V G -10 +KPX V Gbreve -10 +KPX V Gcommaaccent -10 +KPX V O -30 +KPX V Oacute -30 +KPX V Ocircumflex -30 +KPX V Odieresis -30 +KPX V Ograve -30 +KPX V Ohungarumlaut -30 +KPX V Omacron -30 +KPX V Oslash -30 +KPX V Otilde -30 +KPX V a -111 +KPX V aacute -111 +KPX V abreve -111 +KPX V acircumflex -111 +KPX V adieresis -111 +KPX V agrave -111 +KPX V amacron -111 +KPX V aogonek -111 +KPX V aring -111 +KPX V atilde -111 +KPX V colon -74 +KPX V comma -129 +KPX V e -111 +KPX V eacute -111 +KPX V ecaron -111 +KPX V ecircumflex -111 +KPX V edieresis -71 +KPX V edotaccent -111 +KPX V egrave -71 +KPX V emacron -71 +KPX V eogonek -111 +KPX V hyphen -70 +KPX V i -55 +KPX V iacute -55 +KPX V iogonek -55 +KPX V o -111 +KPX V oacute -111 +KPX V ocircumflex -111 +KPX V odieresis -111 +KPX V ograve -111 +KPX V ohungarumlaut -111 +KPX V omacron -111 +KPX V oslash -111 +KPX V otilde -111 +KPX V period -129 +KPX V semicolon -74 +KPX V u -55 +KPX V uacute -55 +KPX V ucircumflex -55 +KPX V udieresis -55 +KPX V ugrave -55 +KPX V uhungarumlaut -55 +KPX V umacron -55 +KPX V uogonek -55 +KPX V uring -55 +KPX W A -74 +KPX W Aacute -74 +KPX W Abreve -74 +KPX W Acircumflex -74 +KPX W Adieresis -74 +KPX W Agrave -74 +KPX W Amacron -74 +KPX W Aogonek -74 +KPX W Aring -74 +KPX W Atilde -74 +KPX W O -15 +KPX W Oacute -15 +KPX W Ocircumflex -15 +KPX W Odieresis -15 +KPX W Ograve -15 +KPX W Ohungarumlaut -15 +KPX W Omacron -15 +KPX W Oslash -15 +KPX W Otilde -15 +KPX W a -85 +KPX W aacute -85 +KPX W abreve -85 +KPX W acircumflex -85 +KPX W adieresis -85 +KPX W agrave -85 +KPX W amacron -85 +KPX W aogonek -85 +KPX W aring -85 +KPX W atilde -85 +KPX W colon -55 +KPX W comma -74 +KPX W e -90 +KPX W eacute -90 +KPX W ecaron -90 +KPX W ecircumflex -90 +KPX W edieresis -50 +KPX W edotaccent -90 +KPX W egrave -50 +KPX W emacron -50 +KPX W eogonek -90 +KPX W hyphen -50 +KPX W i -37 +KPX W iacute -37 +KPX W iogonek -37 +KPX W o -80 +KPX W oacute -80 +KPX W ocircumflex -80 +KPX W odieresis -80 +KPX W ograve -80 +KPX W ohungarumlaut -80 +KPX W omacron -80 +KPX W oslash -80 +KPX W otilde -80 +KPX W period -74 +KPX W semicolon -55 +KPX W u -55 +KPX W uacute -55 +KPX W ucircumflex -55 +KPX W udieresis -55 +KPX W ugrave -55 +KPX W uhungarumlaut -55 +KPX W umacron -55 +KPX W uogonek -55 +KPX W uring -55 +KPX W y -55 +KPX W yacute -55 +KPX W ydieresis -55 +KPX Y A -74 +KPX Y Aacute -74 +KPX Y Abreve -74 +KPX Y Acircumflex -74 +KPX Y Adieresis -74 +KPX Y Agrave -74 +KPX Y Amacron -74 +KPX Y Aogonek -74 +KPX Y Aring -74 +KPX Y Atilde -74 +KPX Y O -25 +KPX Y Oacute -25 +KPX Y Ocircumflex -25 +KPX Y Odieresis -25 +KPX Y Ograve -25 +KPX Y Ohungarumlaut -25 +KPX Y Omacron -25 +KPX Y Oslash -25 +KPX Y Otilde -25 +KPX Y a -92 +KPX Y aacute -92 +KPX Y abreve -92 +KPX Y acircumflex -92 +KPX Y adieresis -92 +KPX Y agrave -92 +KPX Y amacron -92 +KPX Y aogonek -92 +KPX Y aring -92 +KPX Y atilde -92 +KPX Y colon -92 +KPX Y comma -92 +KPX Y e -111 +KPX Y eacute -111 +KPX Y ecaron -111 +KPX Y ecircumflex -71 +KPX Y edieresis -71 +KPX Y edotaccent -111 +KPX Y egrave -71 +KPX Y emacron -71 +KPX Y eogonek -111 +KPX Y hyphen -92 +KPX Y i -55 +KPX Y iacute -55 +KPX Y iogonek -55 +KPX Y o -111 +KPX Y oacute -111 +KPX Y ocircumflex -111 +KPX Y odieresis -111 +KPX Y ograve -111 +KPX Y ohungarumlaut -111 +KPX Y omacron -111 +KPX Y oslash -111 +KPX Y otilde -111 +KPX Y period -74 +KPX Y semicolon -92 +KPX Y u -92 +KPX Y uacute -92 +KPX Y ucircumflex -92 +KPX Y udieresis -92 +KPX Y ugrave -92 +KPX Y uhungarumlaut -92 +KPX Y umacron -92 +KPX Y uogonek -92 +KPX Y uring -92 +KPX Yacute A -74 +KPX Yacute Aacute -74 +KPX Yacute Abreve -74 +KPX Yacute Acircumflex -74 +KPX Yacute Adieresis -74 +KPX Yacute Agrave -74 +KPX Yacute Amacron -74 +KPX Yacute Aogonek -74 +KPX Yacute Aring -74 +KPX Yacute Atilde -74 +KPX Yacute O -25 +KPX Yacute Oacute -25 +KPX Yacute Ocircumflex -25 +KPX Yacute Odieresis -25 +KPX Yacute Ograve -25 +KPX Yacute Ohungarumlaut -25 +KPX Yacute Omacron -25 +KPX Yacute Oslash -25 +KPX Yacute Otilde -25 +KPX Yacute a -92 +KPX Yacute aacute -92 +KPX Yacute abreve -92 +KPX Yacute acircumflex -92 +KPX Yacute adieresis -92 +KPX Yacute agrave -92 +KPX Yacute amacron -92 +KPX Yacute aogonek -92 +KPX Yacute aring -92 +KPX Yacute atilde -92 +KPX Yacute colon -92 +KPX Yacute comma -92 +KPX Yacute e -111 +KPX Yacute eacute -111 +KPX Yacute ecaron -111 +KPX Yacute ecircumflex -71 +KPX Yacute edieresis -71 +KPX Yacute edotaccent -111 +KPX Yacute egrave -71 +KPX Yacute emacron -71 +KPX Yacute eogonek -111 +KPX Yacute hyphen -92 +KPX Yacute i -55 +KPX Yacute iacute -55 +KPX Yacute iogonek -55 +KPX Yacute o -111 +KPX Yacute oacute -111 +KPX Yacute ocircumflex -111 +KPX Yacute odieresis -111 +KPX Yacute ograve -111 +KPX Yacute ohungarumlaut -111 +KPX Yacute omacron -111 +KPX Yacute oslash -111 +KPX Yacute otilde -111 +KPX Yacute period -74 +KPX Yacute semicolon -92 +KPX Yacute u -92 +KPX Yacute uacute -92 +KPX Yacute ucircumflex -92 +KPX Yacute udieresis -92 +KPX Yacute ugrave -92 +KPX Yacute uhungarumlaut -92 +KPX Yacute umacron -92 +KPX Yacute uogonek -92 +KPX Yacute uring -92 +KPX Ydieresis A -74 +KPX Ydieresis Aacute -74 +KPX Ydieresis Abreve -74 +KPX Ydieresis Acircumflex -74 +KPX Ydieresis Adieresis -74 +KPX Ydieresis Agrave -74 +KPX Ydieresis Amacron -74 +KPX Ydieresis Aogonek -74 +KPX Ydieresis Aring -74 +KPX Ydieresis Atilde -74 +KPX Ydieresis O -25 +KPX Ydieresis Oacute -25 +KPX Ydieresis Ocircumflex -25 +KPX Ydieresis Odieresis -25 +KPX Ydieresis Ograve -25 +KPX Ydieresis Ohungarumlaut -25 +KPX Ydieresis Omacron -25 +KPX Ydieresis Oslash -25 +KPX Ydieresis Otilde -25 +KPX Ydieresis a -92 +KPX Ydieresis aacute -92 +KPX Ydieresis abreve -92 +KPX Ydieresis acircumflex -92 +KPX Ydieresis adieresis -92 +KPX Ydieresis agrave -92 +KPX Ydieresis amacron -92 +KPX Ydieresis aogonek -92 +KPX Ydieresis aring -92 +KPX Ydieresis atilde -92 +KPX Ydieresis colon -92 +KPX Ydieresis comma -92 +KPX Ydieresis e -111 +KPX Ydieresis eacute -111 +KPX Ydieresis ecaron -111 +KPX Ydieresis ecircumflex -71 +KPX Ydieresis edieresis -71 +KPX Ydieresis edotaccent -111 +KPX Ydieresis egrave -71 +KPX Ydieresis emacron -71 +KPX Ydieresis eogonek -111 +KPX Ydieresis hyphen -92 +KPX Ydieresis i -55 +KPX Ydieresis iacute -55 +KPX Ydieresis iogonek -55 +KPX Ydieresis o -111 +KPX Ydieresis oacute -111 +KPX Ydieresis ocircumflex -111 +KPX Ydieresis odieresis -111 +KPX Ydieresis ograve -111 +KPX Ydieresis ohungarumlaut -111 +KPX Ydieresis omacron -111 +KPX Ydieresis oslash -111 +KPX Ydieresis otilde -111 +KPX Ydieresis period -74 +KPX Ydieresis semicolon -92 +KPX Ydieresis u -92 +KPX Ydieresis uacute -92 +KPX Ydieresis ucircumflex -92 +KPX Ydieresis udieresis -92 +KPX Ydieresis ugrave -92 +KPX Ydieresis uhungarumlaut -92 +KPX Ydieresis umacron -92 +KPX Ydieresis uogonek -92 +KPX Ydieresis uring -92 +KPX b b -10 +KPX b period -40 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX c h -10 +KPX c k -10 +KPX c kcommaaccent -10 +KPX cacute h -10 +KPX cacute k -10 +KPX cacute kcommaaccent -10 +KPX ccaron h -10 +KPX ccaron k -10 +KPX ccaron kcommaaccent -10 +KPX ccedilla h -10 +KPX ccedilla k -10 +KPX ccedilla kcommaaccent -10 +KPX comma quotedblright -95 +KPX comma quoteright -95 +KPX e b -10 +KPX eacute b -10 +KPX ecaron b -10 +KPX ecircumflex b -10 +KPX edieresis b -10 +KPX edotaccent b -10 +KPX egrave b -10 +KPX emacron b -10 +KPX eogonek b -10 +KPX f comma -10 +KPX f dotlessi -30 +KPX f e -10 +KPX f eacute -10 +KPX f edotaccent -10 +KPX f eogonek -10 +KPX f f -18 +KPX f o -10 +KPX f oacute -10 +KPX f ocircumflex -10 +KPX f ograve -10 +KPX f ohungarumlaut -10 +KPX f oslash -10 +KPX f otilde -10 +KPX f period -10 +KPX f quoteright 55 +KPX k e -30 +KPX k eacute -30 +KPX k ecaron -30 +KPX k ecircumflex -30 +KPX k edieresis -30 +KPX k edotaccent -30 +KPX k egrave -30 +KPX k emacron -30 +KPX k eogonek -30 +KPX k o -10 +KPX k oacute -10 +KPX k ocircumflex -10 +KPX k odieresis -10 +KPX k ograve -10 +KPX k ohungarumlaut -10 +KPX k omacron -10 +KPX k oslash -10 +KPX k otilde -10 +KPX kcommaaccent e -30 +KPX kcommaaccent eacute -30 +KPX kcommaaccent ecaron -30 +KPX kcommaaccent ecircumflex -30 +KPX kcommaaccent edieresis -30 +KPX kcommaaccent edotaccent -30 +KPX kcommaaccent egrave -30 +KPX kcommaaccent emacron -30 +KPX kcommaaccent eogonek -30 +KPX kcommaaccent o -10 +KPX kcommaaccent oacute -10 +KPX kcommaaccent ocircumflex -10 +KPX kcommaaccent odieresis -10 +KPX kcommaaccent ograve -10 +KPX kcommaaccent ohungarumlaut -10 +KPX kcommaaccent omacron -10 +KPX kcommaaccent oslash -10 +KPX kcommaaccent otilde -10 +KPX n v -40 +KPX nacute v -40 +KPX ncaron v -40 +KPX ncommaaccent v -40 +KPX ntilde v -40 +KPX o v -15 +KPX o w -25 +KPX o x -10 +KPX o y -10 +KPX o yacute -10 +KPX o ydieresis -10 +KPX oacute v -15 +KPX oacute w -25 +KPX oacute x -10 +KPX oacute y -10 +KPX oacute yacute -10 +KPX oacute ydieresis -10 +KPX ocircumflex v -15 +KPX ocircumflex w -25 +KPX ocircumflex x -10 +KPX ocircumflex y -10 +KPX ocircumflex yacute -10 +KPX ocircumflex ydieresis -10 +KPX odieresis v -15 +KPX odieresis w -25 +KPX odieresis x -10 +KPX odieresis y -10 +KPX odieresis yacute -10 +KPX odieresis ydieresis -10 +KPX ograve v -15 +KPX ograve w -25 +KPX ograve x -10 +KPX ograve y -10 +KPX ograve yacute -10 +KPX ograve ydieresis -10 +KPX ohungarumlaut v -15 +KPX ohungarumlaut w -25 +KPX ohungarumlaut x -10 +KPX ohungarumlaut y -10 +KPX ohungarumlaut yacute -10 +KPX ohungarumlaut ydieresis -10 +KPX omacron v -15 +KPX omacron w -25 +KPX omacron x -10 +KPX omacron y -10 +KPX omacron yacute -10 +KPX omacron ydieresis -10 +KPX oslash v -15 +KPX oslash w -25 +KPX oslash x -10 +KPX oslash y -10 +KPX oslash yacute -10 +KPX oslash ydieresis -10 +KPX otilde v -15 +KPX otilde w -25 +KPX otilde x -10 +KPX otilde y -10 +KPX otilde yacute -10 +KPX otilde ydieresis -10 +KPX period quotedblright -95 +KPX period quoteright -95 +KPX quoteleft quoteleft -74 +KPX quoteright d -15 +KPX quoteright dcroat -15 +KPX quoteright quoteright -74 +KPX quoteright r -15 +KPX quoteright racute -15 +KPX quoteright rcaron -15 +KPX quoteright rcommaaccent -15 +KPX quoteright s -74 +KPX quoteright sacute -74 +KPX quoteright scaron -74 +KPX quoteright scedilla -74 +KPX quoteright scommaaccent -74 +KPX quoteright space -74 +KPX quoteright t -37 +KPX quoteright tcommaaccent -37 +KPX quoteright v -15 +KPX r comma -65 +KPX r period -65 +KPX racute comma -65 +KPX racute period -65 +KPX rcaron comma -65 +KPX rcaron period -65 +KPX rcommaaccent comma -65 +KPX rcommaaccent period -65 +KPX space A -37 +KPX space Aacute -37 +KPX space Abreve -37 +KPX space Acircumflex -37 +KPX space Adieresis -37 +KPX space Agrave -37 +KPX space Amacron -37 +KPX space Aogonek -37 +KPX space Aring -37 +KPX space Atilde -37 +KPX space V -70 +KPX space W -70 +KPX space Y -70 +KPX space Yacute -70 +KPX space Ydieresis -70 +KPX v comma -37 +KPX v e -15 +KPX v eacute -15 +KPX v ecaron -15 +KPX v ecircumflex -15 +KPX v edieresis -15 +KPX v edotaccent -15 +KPX v egrave -15 +KPX v emacron -15 +KPX v eogonek -15 +KPX v o -15 +KPX v oacute -15 +KPX v ocircumflex -15 +KPX v odieresis -15 +KPX v ograve -15 +KPX v ohungarumlaut -15 +KPX v omacron -15 +KPX v oslash -15 +KPX v otilde -15 +KPX v period -37 +KPX w a -10 +KPX w aacute -10 +KPX w abreve -10 +KPX w acircumflex -10 +KPX w adieresis -10 +KPX w agrave -10 +KPX w amacron -10 +KPX w aogonek -10 +KPX w aring -10 +KPX w atilde -10 +KPX w comma -37 +KPX w e -10 +KPX w eacute -10 +KPX w ecaron -10 +KPX w ecircumflex -10 +KPX w edieresis -10 +KPX w edotaccent -10 +KPX w egrave -10 +KPX w emacron -10 +KPX w eogonek -10 +KPX w o -15 +KPX w oacute -15 +KPX w ocircumflex -15 +KPX w odieresis -15 +KPX w ograve -15 +KPX w ohungarumlaut -15 +KPX w omacron -15 +KPX w oslash -15 +KPX w otilde -15 +KPX w period -37 +KPX x e -10 +KPX x eacute -10 +KPX x ecaron -10 +KPX x ecircumflex -10 +KPX x edieresis -10 +KPX x edotaccent -10 +KPX x egrave -10 +KPX x emacron -10 +KPX x eogonek -10 +KPX y comma -37 +KPX y period -37 +KPX yacute comma -37 +KPX yacute period -37 +KPX ydieresis comma -37 +KPX ydieresis period -37 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/Times-Italic.afm b/pyx/data/afm/Times-Italic.afm new file mode 100644 index 00000000..8de6e42d --- /dev/null +++ b/pyx/data/afm/Times-Italic.afm @@ -0,0 +1,2667 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:56:55 1997 +Comment UniqueID 43067 +Comment VMusage 47727 58752 +FontName Times-Italic +FullName Times Italic +FamilyName Times +Weight Medium +ItalicAngle -15.5 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -169 -217 1010 883 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 653 +XHeight 441 +Ascender 683 +Descender -217 +StdHW 32 +StdVW 76 +StartCharMetrics 315 +C 32 ; WX 250 ; N space ; B 0 0 0 0 ; +C 33 ; WX 333 ; N exclam ; B 39 -11 302 667 ; +C 34 ; WX 420 ; N quotedbl ; B 144 421 432 666 ; +C 35 ; WX 500 ; N numbersign ; B 2 0 540 676 ; +C 36 ; WX 500 ; N dollar ; B 31 -89 497 731 ; +C 37 ; WX 833 ; N percent ; B 79 -13 790 676 ; +C 38 ; WX 778 ; N ampersand ; B 76 -18 723 666 ; +C 39 ; WX 333 ; N quoteright ; B 151 436 290 666 ; +C 40 ; WX 333 ; N parenleft ; B 42 -181 315 669 ; +C 41 ; WX 333 ; N parenright ; B 16 -180 289 669 ; +C 42 ; WX 500 ; N asterisk ; B 128 255 492 666 ; +C 43 ; WX 675 ; N plus ; B 86 0 590 506 ; +C 44 ; WX 250 ; N comma ; B -4 -129 135 101 ; +C 45 ; WX 333 ; N hyphen ; B 49 192 282 255 ; +C 46 ; WX 250 ; N period ; B 27 -11 138 100 ; +C 47 ; WX 278 ; N slash ; B -65 -18 386 666 ; +C 48 ; WX 500 ; N zero ; B 32 -7 497 676 ; +C 49 ; WX 500 ; N one ; B 49 0 409 676 ; +C 50 ; WX 500 ; N two ; B 12 0 452 676 ; +C 51 ; WX 500 ; N three ; B 15 -7 465 676 ; +C 52 ; WX 500 ; N four ; B 1 0 479 676 ; +C 53 ; WX 500 ; N five ; B 15 -7 491 666 ; +C 54 ; WX 500 ; N six ; B 30 -7 521 686 ; +C 55 ; WX 500 ; N seven ; B 75 -8 537 666 ; +C 56 ; WX 500 ; N eight ; B 30 -7 493 676 ; +C 57 ; WX 500 ; N nine ; B 23 -17 492 676 ; +C 58 ; WX 333 ; N colon ; B 50 -11 261 441 ; +C 59 ; WX 333 ; N semicolon ; B 27 -129 261 441 ; +C 60 ; WX 675 ; N less ; B 84 -8 592 514 ; +C 61 ; WX 675 ; N equal ; B 86 120 590 386 ; +C 62 ; WX 675 ; N greater ; B 84 -8 592 514 ; +C 63 ; WX 500 ; N question ; B 132 -12 472 664 ; +C 64 ; WX 920 ; N at ; B 118 -18 806 666 ; +C 65 ; WX 611 ; N A ; B -51 0 564 668 ; +C 66 ; WX 611 ; N B ; B -8 0 588 653 ; +C 67 ; WX 667 ; N C ; B 66 -18 689 666 ; +C 68 ; WX 722 ; N D ; B -8 0 700 653 ; +C 69 ; WX 611 ; N E ; B -1 0 634 653 ; +C 70 ; WX 611 ; N F ; B 8 0 645 653 ; +C 71 ; WX 722 ; N G ; B 52 -18 722 666 ; +C 72 ; WX 722 ; N H ; B -8 0 767 653 ; +C 73 ; WX 333 ; N I ; B -8 0 384 653 ; +C 74 ; WX 444 ; N J ; B -6 -18 491 653 ; +C 75 ; WX 667 ; N K ; B 7 0 722 653 ; +C 76 ; WX 556 ; N L ; B -8 0 559 653 ; +C 77 ; WX 833 ; N M ; B -18 0 873 653 ; +C 78 ; WX 667 ; N N ; B -20 -15 727 653 ; +C 79 ; WX 722 ; N O ; B 60 -18 699 666 ; +C 80 ; WX 611 ; N P ; B 0 0 605 653 ; +C 81 ; WX 722 ; N Q ; B 59 -182 699 666 ; +C 82 ; WX 611 ; N R ; B -13 0 588 653 ; +C 83 ; WX 500 ; N S ; B 17 -18 508 667 ; +C 84 ; WX 556 ; N T ; B 59 0 633 653 ; +C 85 ; WX 722 ; N U ; B 102 -18 765 653 ; +C 86 ; WX 611 ; N V ; B 76 -18 688 653 ; +C 87 ; WX 833 ; N W ; B 71 -18 906 653 ; +C 88 ; WX 611 ; N X ; B -29 0 655 653 ; +C 89 ; WX 556 ; N Y ; B 78 0 633 653 ; +C 90 ; WX 556 ; N Z ; B -6 0 606 653 ; +C 91 ; WX 389 ; N bracketleft ; B 21 -153 391 663 ; +C 92 ; WX 278 ; N backslash ; B -41 -18 319 666 ; +C 93 ; WX 389 ; N bracketright ; B 12 -153 382 663 ; +C 94 ; WX 422 ; N asciicircum ; B 0 301 422 666 ; +C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; +C 96 ; WX 333 ; N quoteleft ; B 171 436 310 666 ; +C 97 ; WX 500 ; N a ; B 17 -11 476 441 ; +C 98 ; WX 500 ; N b ; B 23 -11 473 683 ; +C 99 ; WX 444 ; N c ; B 30 -11 425 441 ; +C 100 ; WX 500 ; N d ; B 15 -13 527 683 ; +C 101 ; WX 444 ; N e ; B 31 -11 412 441 ; +C 102 ; WX 278 ; N f ; B -147 -207 424 678 ; L i fi ; L l fl ; +C 103 ; WX 500 ; N g ; B 8 -206 472 441 ; +C 104 ; WX 500 ; N h ; B 19 -9 478 683 ; +C 105 ; WX 278 ; N i ; B 49 -11 264 654 ; +C 106 ; WX 278 ; N j ; B -124 -207 276 654 ; +C 107 ; WX 444 ; N k ; B 14 -11 461 683 ; +C 108 ; WX 278 ; N l ; B 41 -11 279 683 ; +C 109 ; WX 722 ; N m ; B 12 -9 704 441 ; +C 110 ; WX 500 ; N n ; B 14 -9 474 441 ; +C 111 ; WX 500 ; N o ; B 27 -11 468 441 ; +C 112 ; WX 500 ; N p ; B -75 -205 469 441 ; +C 113 ; WX 500 ; N q ; B 25 -209 483 441 ; +C 114 ; WX 389 ; N r ; B 45 0 412 441 ; +C 115 ; WX 389 ; N s ; B 16 -13 366 442 ; +C 116 ; WX 278 ; N t ; B 37 -11 296 546 ; +C 117 ; WX 500 ; N u ; B 42 -11 475 441 ; +C 118 ; WX 444 ; N v ; B 21 -18 426 441 ; +C 119 ; WX 667 ; N w ; B 16 -18 648 441 ; +C 120 ; WX 444 ; N x ; B -27 -11 447 441 ; +C 121 ; WX 444 ; N y ; B -24 -206 426 441 ; +C 122 ; WX 389 ; N z ; B -2 -81 380 428 ; +C 123 ; WX 400 ; N braceleft ; B 51 -177 407 687 ; +C 124 ; WX 275 ; N bar ; B 105 -217 171 783 ; +C 125 ; WX 400 ; N braceright ; B -7 -177 349 687 ; +C 126 ; WX 541 ; N asciitilde ; B 40 183 502 323 ; +C 161 ; WX 389 ; N exclamdown ; B 59 -205 322 473 ; +C 162 ; WX 500 ; N cent ; B 77 -143 472 560 ; +C 163 ; WX 500 ; N sterling ; B 10 -6 517 670 ; +C 164 ; WX 167 ; N fraction ; B -169 -10 337 676 ; +C 165 ; WX 500 ; N yen ; B 27 0 603 653 ; +C 166 ; WX 500 ; N florin ; B 25 -182 507 682 ; +C 167 ; WX 500 ; N section ; B 53 -162 461 666 ; +C 168 ; WX 500 ; N currency ; B -22 53 522 597 ; +C 169 ; WX 214 ; N quotesingle ; B 132 421 241 666 ; +C 170 ; WX 556 ; N quotedblleft ; B 166 436 514 666 ; +C 171 ; WX 500 ; N guillemotleft ; B 53 37 445 403 ; +C 172 ; WX 333 ; N guilsinglleft ; B 51 37 281 403 ; +C 173 ; WX 333 ; N guilsinglright ; B 52 37 282 403 ; +C 174 ; WX 500 ; N fi ; B -141 -207 481 681 ; +C 175 ; WX 500 ; N fl ; B -141 -204 518 682 ; +C 177 ; WX 500 ; N endash ; B -6 197 505 243 ; +C 178 ; WX 500 ; N dagger ; B 101 -159 488 666 ; +C 179 ; WX 500 ; N daggerdbl ; B 22 -143 491 666 ; +C 180 ; WX 250 ; N periodcentered ; B 70 199 181 310 ; +C 182 ; WX 523 ; N paragraph ; B 55 -123 616 653 ; +C 183 ; WX 350 ; N bullet ; B 40 191 310 461 ; +C 184 ; WX 333 ; N quotesinglbase ; B 44 -129 183 101 ; +C 185 ; WX 556 ; N quotedblbase ; B 57 -129 405 101 ; +C 186 ; WX 556 ; N quotedblright ; B 151 436 499 666 ; +C 187 ; WX 500 ; N guillemotright ; B 55 37 447 403 ; +C 188 ; WX 889 ; N ellipsis ; B 57 -11 762 100 ; +C 189 ; WX 1000 ; N perthousand ; B 25 -19 1010 706 ; +C 191 ; WX 500 ; N questiondown ; B 28 -205 368 471 ; +C 193 ; WX 333 ; N grave ; B 121 492 311 664 ; +C 194 ; WX 333 ; N acute ; B 180 494 403 664 ; +C 195 ; WX 333 ; N circumflex ; B 91 492 385 661 ; +C 196 ; WX 333 ; N tilde ; B 100 517 427 624 ; +C 197 ; WX 333 ; N macron ; B 99 532 411 583 ; +C 198 ; WX 333 ; N breve ; B 117 492 418 650 ; +C 199 ; WX 333 ; N dotaccent ; B 207 548 305 646 ; +C 200 ; WX 333 ; N dieresis ; B 107 548 405 646 ; +C 202 ; WX 333 ; N ring ; B 155 492 355 691 ; +C 203 ; WX 333 ; N cedilla ; B -30 -217 182 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B 93 494 486 664 ; +C 206 ; WX 333 ; N ogonek ; B 20 -169 203 40 ; +C 207 ; WX 333 ; N caron ; B 121 492 426 661 ; +C 208 ; WX 889 ; N emdash ; B -6 197 894 243 ; +C 225 ; WX 889 ; N AE ; B -27 0 911 653 ; +C 227 ; WX 276 ; N ordfeminine ; B 42 406 352 676 ; +C 232 ; WX 556 ; N Lslash ; B -8 0 559 653 ; +C 233 ; WX 722 ; N Oslash ; B 60 -105 699 722 ; +C 234 ; WX 944 ; N OE ; B 49 -8 964 666 ; +C 235 ; WX 310 ; N ordmasculine ; B 67 406 362 676 ; +C 241 ; WX 667 ; N ae ; B 23 -11 640 441 ; +C 245 ; WX 278 ; N dotlessi ; B 49 -11 235 441 ; +C 248 ; WX 278 ; N lslash ; B 41 -11 312 683 ; +C 249 ; WX 500 ; N oslash ; B 28 -135 469 554 ; +C 250 ; WX 667 ; N oe ; B 20 -12 646 441 ; +C 251 ; WX 500 ; N germandbls ; B -168 -207 493 679 ; +C -1 ; WX 333 ; N Idieresis ; B -8 0 435 818 ; +C -1 ; WX 444 ; N eacute ; B 31 -11 459 664 ; +C -1 ; WX 500 ; N abreve ; B 17 -11 502 650 ; +C -1 ; WX 500 ; N uhungarumlaut ; B 42 -11 580 664 ; +C -1 ; WX 444 ; N ecaron ; B 31 -11 482 661 ; +C -1 ; WX 556 ; N Ydieresis ; B 78 0 633 818 ; +C -1 ; WX 675 ; N divide ; B 86 -11 590 517 ; +C -1 ; WX 556 ; N Yacute ; B 78 0 633 876 ; +C -1 ; WX 611 ; N Acircumflex ; B -51 0 564 873 ; +C -1 ; WX 500 ; N aacute ; B 17 -11 487 664 ; +C -1 ; WX 722 ; N Ucircumflex ; B 102 -18 765 873 ; +C -1 ; WX 444 ; N yacute ; B -24 -206 459 664 ; +C -1 ; WX 389 ; N scommaaccent ; B 16 -217 366 442 ; +C -1 ; WX 444 ; N ecircumflex ; B 31 -11 441 661 ; +C -1 ; WX 722 ; N Uring ; B 102 -18 765 883 ; +C -1 ; WX 722 ; N Udieresis ; B 102 -18 765 818 ; +C -1 ; WX 500 ; N aogonek ; B 17 -169 476 441 ; +C -1 ; WX 722 ; N Uacute ; B 102 -18 765 876 ; +C -1 ; WX 500 ; N uogonek ; B 42 -169 477 441 ; +C -1 ; WX 611 ; N Edieresis ; B -1 0 634 818 ; +C -1 ; WX 722 ; N Dcroat ; B -8 0 700 653 ; +C -1 ; WX 250 ; N commaaccent ; B 8 -217 133 -50 ; +C -1 ; WX 760 ; N copyright ; B 41 -18 719 666 ; +C -1 ; WX 611 ; N Emacron ; B -1 0 634 795 ; +C -1 ; WX 444 ; N ccaron ; B 30 -11 482 661 ; +C -1 ; WX 500 ; N aring ; B 17 -11 476 691 ; +C -1 ; WX 667 ; N Ncommaaccent ; B -20 -187 727 653 ; +C -1 ; WX 278 ; N lacute ; B 41 -11 395 876 ; +C -1 ; WX 500 ; N agrave ; B 17 -11 476 664 ; +C -1 ; WX 556 ; N Tcommaaccent ; B 59 -217 633 653 ; +C -1 ; WX 667 ; N Cacute ; B 66 -18 690 876 ; +C -1 ; WX 500 ; N atilde ; B 17 -11 511 624 ; +C -1 ; WX 611 ; N Edotaccent ; B -1 0 634 818 ; +C -1 ; WX 389 ; N scaron ; B 16 -13 454 661 ; +C -1 ; WX 389 ; N scedilla ; B 16 -217 366 442 ; +C -1 ; WX 278 ; N iacute ; B 49 -11 355 664 ; +C -1 ; WX 471 ; N lozenge ; B 13 0 459 724 ; +C -1 ; WX 611 ; N Rcaron ; B -13 0 588 873 ; +C -1 ; WX 722 ; N Gcommaaccent ; B 52 -217 722 666 ; +C -1 ; WX 500 ; N ucircumflex ; B 42 -11 475 661 ; +C -1 ; WX 500 ; N acircumflex ; B 17 -11 476 661 ; +C -1 ; WX 611 ; N Amacron ; B -51 0 564 795 ; +C -1 ; WX 389 ; N rcaron ; B 45 0 434 661 ; +C -1 ; WX 444 ; N ccedilla ; B 30 -217 425 441 ; +C -1 ; WX 556 ; N Zdotaccent ; B -6 0 606 818 ; +C -1 ; WX 611 ; N Thorn ; B 0 0 569 653 ; +C -1 ; WX 722 ; N Omacron ; B 60 -18 699 795 ; +C -1 ; WX 611 ; N Racute ; B -13 0 588 876 ; +C -1 ; WX 500 ; N Sacute ; B 17 -18 508 876 ; +C -1 ; WX 544 ; N dcaron ; B 15 -13 658 683 ; +C -1 ; WX 722 ; N Umacron ; B 102 -18 765 795 ; +C -1 ; WX 500 ; N uring ; B 42 -11 475 691 ; +C -1 ; WX 300 ; N threesuperior ; B 43 268 339 676 ; +C -1 ; WX 722 ; N Ograve ; B 60 -18 699 876 ; +C -1 ; WX 611 ; N Agrave ; B -51 0 564 876 ; +C -1 ; WX 611 ; N Abreve ; B -51 0 564 862 ; +C -1 ; WX 675 ; N multiply ; B 93 8 582 497 ; +C -1 ; WX 500 ; N uacute ; B 42 -11 477 664 ; +C -1 ; WX 556 ; N Tcaron ; B 59 0 633 873 ; +C -1 ; WX 476 ; N partialdiff ; B 17 -38 459 710 ; +C -1 ; WX 444 ; N ydieresis ; B -24 -206 441 606 ; +C -1 ; WX 667 ; N Nacute ; B -20 -15 727 876 ; +C -1 ; WX 278 ; N icircumflex ; B 33 -11 327 661 ; +C -1 ; WX 611 ; N Ecircumflex ; B -1 0 634 873 ; +C -1 ; WX 500 ; N adieresis ; B 17 -11 489 606 ; +C -1 ; WX 444 ; N edieresis ; B 31 -11 451 606 ; +C -1 ; WX 444 ; N cacute ; B 30 -11 459 664 ; +C -1 ; WX 500 ; N nacute ; B 14 -9 477 664 ; +C -1 ; WX 500 ; N umacron ; B 42 -11 485 583 ; +C -1 ; WX 667 ; N Ncaron ; B -20 -15 727 873 ; +C -1 ; WX 333 ; N Iacute ; B -8 0 433 876 ; +C -1 ; WX 675 ; N plusminus ; B 86 0 590 506 ; +C -1 ; WX 275 ; N brokenbar ; B 105 -142 171 708 ; +C -1 ; WX 760 ; N registered ; B 41 -18 719 666 ; +C -1 ; WX 722 ; N Gbreve ; B 52 -18 722 862 ; +C -1 ; WX 333 ; N Idotaccent ; B -8 0 384 818 ; +C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ; +C -1 ; WX 611 ; N Egrave ; B -1 0 634 876 ; +C -1 ; WX 389 ; N racute ; B 45 0 431 664 ; +C -1 ; WX 500 ; N omacron ; B 27 -11 495 583 ; +C -1 ; WX 556 ; N Zacute ; B -6 0 606 876 ; +C -1 ; WX 556 ; N Zcaron ; B -6 0 606 873 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 523 658 ; +C -1 ; WX 722 ; N Eth ; B -8 0 700 653 ; +C -1 ; WX 667 ; N Ccedilla ; B 66 -217 689 666 ; +C -1 ; WX 278 ; N lcommaaccent ; B 22 -217 279 683 ; +C -1 ; WX 300 ; N tcaron ; B 37 -11 407 681 ; +C -1 ; WX 444 ; N eogonek ; B 31 -169 412 441 ; +C -1 ; WX 722 ; N Uogonek ; B 102 -184 765 653 ; +C -1 ; WX 611 ; N Aacute ; B -51 0 564 876 ; +C -1 ; WX 611 ; N Adieresis ; B -51 0 564 818 ; +C -1 ; WX 444 ; N egrave ; B 31 -11 412 664 ; +C -1 ; WX 389 ; N zacute ; B -2 -81 431 664 ; +C -1 ; WX 278 ; N iogonek ; B 49 -169 264 654 ; +C -1 ; WX 722 ; N Oacute ; B 60 -18 699 876 ; +C -1 ; WX 500 ; N oacute ; B 27 -11 487 664 ; +C -1 ; WX 500 ; N amacron ; B 17 -11 495 583 ; +C -1 ; WX 389 ; N sacute ; B 16 -13 431 664 ; +C -1 ; WX 278 ; N idieresis ; B 49 -11 352 606 ; +C -1 ; WX 722 ; N Ocircumflex ; B 60 -18 699 873 ; +C -1 ; WX 722 ; N Ugrave ; B 102 -18 765 876 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 500 ; N thorn ; B -75 -205 469 683 ; +C -1 ; WX 300 ; N twosuperior ; B 33 271 324 676 ; +C -1 ; WX 722 ; N Odieresis ; B 60 -18 699 818 ; +C -1 ; WX 500 ; N mu ; B -30 -209 497 428 ; +C -1 ; WX 278 ; N igrave ; B 49 -11 284 664 ; +C -1 ; WX 500 ; N ohungarumlaut ; B 27 -11 590 664 ; +C -1 ; WX 611 ; N Eogonek ; B -1 -169 634 653 ; +C -1 ; WX 500 ; N dcroat ; B 15 -13 572 683 ; +C -1 ; WX 750 ; N threequarters ; B 23 -10 736 676 ; +C -1 ; WX 500 ; N Scedilla ; B 17 -217 508 667 ; +C -1 ; WX 300 ; N lcaron ; B 41 -11 407 683 ; +C -1 ; WX 667 ; N Kcommaaccent ; B 7 -217 722 653 ; +C -1 ; WX 556 ; N Lacute ; B -8 0 559 876 ; +C -1 ; WX 980 ; N trademark ; B 30 247 957 653 ; +C -1 ; WX 444 ; N edotaccent ; B 31 -11 412 606 ; +C -1 ; WX 333 ; N Igrave ; B -8 0 384 876 ; +C -1 ; WX 333 ; N Imacron ; B -8 0 441 795 ; +C -1 ; WX 611 ; N Lcaron ; B -8 0 586 653 ; +C -1 ; WX 750 ; N onehalf ; B 34 -10 749 676 ; +C -1 ; WX 549 ; N lessequal ; B 26 0 523 658 ; +C -1 ; WX 500 ; N ocircumflex ; B 27 -11 468 661 ; +C -1 ; WX 500 ; N ntilde ; B 14 -9 476 624 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 102 -18 765 876 ; +C -1 ; WX 611 ; N Eacute ; B -1 0 634 876 ; +C -1 ; WX 444 ; N emacron ; B 31 -11 457 583 ; +C -1 ; WX 500 ; N gbreve ; B 8 -206 487 650 ; +C -1 ; WX 750 ; N onequarter ; B 33 -10 736 676 ; +C -1 ; WX 500 ; N Scaron ; B 17 -18 520 873 ; +C -1 ; WX 500 ; N Scommaaccent ; B 17 -217 508 667 ; +C -1 ; WX 722 ; N Ohungarumlaut ; B 60 -18 699 876 ; +C -1 ; WX 400 ; N degree ; B 101 390 387 676 ; +C -1 ; WX 500 ; N ograve ; B 27 -11 468 664 ; +C -1 ; WX 667 ; N Ccaron ; B 66 -18 689 873 ; +C -1 ; WX 500 ; N ugrave ; B 42 -11 475 664 ; +C -1 ; WX 453 ; N radical ; B 2 -60 452 768 ; +C -1 ; WX 722 ; N Dcaron ; B -8 0 700 873 ; +C -1 ; WX 389 ; N rcommaaccent ; B -3 -217 412 441 ; +C -1 ; WX 667 ; N Ntilde ; B -20 -15 727 836 ; +C -1 ; WX 500 ; N otilde ; B 27 -11 496 624 ; +C -1 ; WX 611 ; N Rcommaaccent ; B -13 -187 588 653 ; +C -1 ; WX 556 ; N Lcommaaccent ; B -8 -217 559 653 ; +C -1 ; WX 611 ; N Atilde ; B -51 0 566 836 ; +C -1 ; WX 611 ; N Aogonek ; B -51 -169 566 668 ; +C -1 ; WX 611 ; N Aring ; B -51 0 564 883 ; +C -1 ; WX 722 ; N Otilde ; B 60 -18 699 836 ; +C -1 ; WX 389 ; N zdotaccent ; B -2 -81 380 606 ; +C -1 ; WX 611 ; N Ecaron ; B -1 0 634 873 ; +C -1 ; WX 333 ; N Iogonek ; B -8 -169 384 653 ; +C -1 ; WX 444 ; N kcommaaccent ; B 14 -187 461 683 ; +C -1 ; WX 675 ; N minus ; B 86 220 590 286 ; +C -1 ; WX 333 ; N Icircumflex ; B -8 0 425 873 ; +C -1 ; WX 500 ; N ncaron ; B 14 -9 510 661 ; +C -1 ; WX 278 ; N tcommaaccent ; B 2 -217 296 546 ; +C -1 ; WX 675 ; N logicalnot ; B 86 108 590 386 ; +C -1 ; WX 500 ; N odieresis ; B 27 -11 489 606 ; +C -1 ; WX 500 ; N udieresis ; B 42 -11 479 606 ; +C -1 ; WX 549 ; N notequal ; B 12 -29 537 541 ; +C -1 ; WX 500 ; N gcommaaccent ; B 8 -206 472 706 ; +C -1 ; WX 500 ; N eth ; B 27 -11 482 683 ; +C -1 ; WX 389 ; N zcaron ; B -2 -81 434 661 ; +C -1 ; WX 500 ; N ncommaaccent ; B 14 -187 474 441 ; +C -1 ; WX 300 ; N onesuperior ; B 43 271 284 676 ; +C -1 ; WX 278 ; N imacron ; B 46 -11 311 583 ; +C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2321 +KPX A C -30 +KPX A Cacute -30 +KPX A Ccaron -30 +KPX A Ccedilla -30 +KPX A G -35 +KPX A Gbreve -35 +KPX A Gcommaaccent -35 +KPX A O -40 +KPX A Oacute -40 +KPX A Ocircumflex -40 +KPX A Odieresis -40 +KPX A Ograve -40 +KPX A Ohungarumlaut -40 +KPX A Omacron -40 +KPX A Oslash -40 +KPX A Otilde -40 +KPX A Q -40 +KPX A T -37 +KPX A Tcaron -37 +KPX A Tcommaaccent -37 +KPX A U -50 +KPX A Uacute -50 +KPX A Ucircumflex -50 +KPX A Udieresis -50 +KPX A Ugrave -50 +KPX A Uhungarumlaut -50 +KPX A Umacron -50 +KPX A Uogonek -50 +KPX A Uring -50 +KPX A V -105 +KPX A W -95 +KPX A Y -55 +KPX A Yacute -55 +KPX A Ydieresis -55 +KPX A quoteright -37 +KPX A u -20 +KPX A uacute -20 +KPX A ucircumflex -20 +KPX A udieresis -20 +KPX A ugrave -20 +KPX A uhungarumlaut -20 +KPX A umacron -20 +KPX A uogonek -20 +KPX A uring -20 +KPX A v -55 +KPX A w -55 +KPX A y -55 +KPX A yacute -55 +KPX A ydieresis -55 +KPX Aacute C -30 +KPX Aacute Cacute -30 +KPX Aacute Ccaron -30 +KPX Aacute Ccedilla -30 +KPX Aacute G -35 +KPX Aacute Gbreve -35 +KPX Aacute Gcommaaccent -35 +KPX Aacute O -40 +KPX Aacute Oacute -40 +KPX Aacute Ocircumflex -40 +KPX Aacute Odieresis -40 +KPX Aacute Ograve -40 +KPX Aacute Ohungarumlaut -40 +KPX Aacute Omacron -40 +KPX Aacute Oslash -40 +KPX Aacute Otilde -40 +KPX Aacute Q -40 +KPX Aacute T -37 +KPX Aacute Tcaron -37 +KPX Aacute Tcommaaccent -37 +KPX Aacute U -50 +KPX Aacute Uacute -50 +KPX Aacute Ucircumflex -50 +KPX Aacute Udieresis -50 +KPX Aacute Ugrave -50 +KPX Aacute Uhungarumlaut -50 +KPX Aacute Umacron -50 +KPX Aacute Uogonek -50 +KPX Aacute Uring -50 +KPX Aacute V -105 +KPX Aacute W -95 +KPX Aacute Y -55 +KPX Aacute Yacute -55 +KPX Aacute Ydieresis -55 +KPX Aacute quoteright -37 +KPX Aacute u -20 +KPX Aacute uacute -20 +KPX Aacute ucircumflex -20 +KPX Aacute udieresis -20 +KPX Aacute ugrave -20 +KPX Aacute uhungarumlaut -20 +KPX Aacute umacron -20 +KPX Aacute uogonek -20 +KPX Aacute uring -20 +KPX Aacute v -55 +KPX Aacute w -55 +KPX Aacute y -55 +KPX Aacute yacute -55 +KPX Aacute ydieresis -55 +KPX Abreve C -30 +KPX Abreve Cacute -30 +KPX Abreve Ccaron -30 +KPX Abreve Ccedilla -30 +KPX Abreve G -35 +KPX Abreve Gbreve -35 +KPX Abreve Gcommaaccent -35 +KPX Abreve O -40 +KPX Abreve Oacute -40 +KPX Abreve Ocircumflex -40 +KPX Abreve Odieresis -40 +KPX Abreve Ograve -40 +KPX Abreve Ohungarumlaut -40 +KPX Abreve Omacron -40 +KPX Abreve Oslash -40 +KPX Abreve Otilde -40 +KPX Abreve Q -40 +KPX Abreve T -37 +KPX Abreve Tcaron -37 +KPX Abreve Tcommaaccent -37 +KPX Abreve U -50 +KPX Abreve Uacute -50 +KPX Abreve Ucircumflex -50 +KPX Abreve Udieresis -50 +KPX Abreve Ugrave -50 +KPX Abreve Uhungarumlaut -50 +KPX Abreve Umacron -50 +KPX Abreve Uogonek -50 +KPX Abreve Uring -50 +KPX Abreve V -105 +KPX Abreve W -95 +KPX Abreve Y -55 +KPX Abreve Yacute -55 +KPX Abreve Ydieresis -55 +KPX Abreve quoteright -37 +KPX Abreve u -20 +KPX Abreve uacute -20 +KPX Abreve ucircumflex -20 +KPX Abreve udieresis -20 +KPX Abreve ugrave -20 +KPX Abreve uhungarumlaut -20 +KPX Abreve umacron -20 +KPX Abreve uogonek -20 +KPX Abreve uring -20 +KPX Abreve v -55 +KPX Abreve w -55 +KPX Abreve y -55 +KPX Abreve yacute -55 +KPX Abreve ydieresis -55 +KPX Acircumflex C -30 +KPX Acircumflex Cacute -30 +KPX Acircumflex Ccaron -30 +KPX Acircumflex Ccedilla -30 +KPX Acircumflex G -35 +KPX Acircumflex Gbreve -35 +KPX Acircumflex Gcommaaccent -35 +KPX Acircumflex O -40 +KPX Acircumflex Oacute -40 +KPX Acircumflex Ocircumflex -40 +KPX Acircumflex Odieresis -40 +KPX Acircumflex Ograve -40 +KPX Acircumflex Ohungarumlaut -40 +KPX Acircumflex Omacron -40 +KPX Acircumflex Oslash -40 +KPX Acircumflex Otilde -40 +KPX Acircumflex Q -40 +KPX Acircumflex T -37 +KPX Acircumflex Tcaron -37 +KPX Acircumflex Tcommaaccent -37 +KPX Acircumflex U -50 +KPX Acircumflex Uacute -50 +KPX Acircumflex Ucircumflex -50 +KPX Acircumflex Udieresis -50 +KPX Acircumflex Ugrave -50 +KPX Acircumflex Uhungarumlaut -50 +KPX Acircumflex Umacron -50 +KPX Acircumflex Uogonek -50 +KPX Acircumflex Uring -50 +KPX Acircumflex V -105 +KPX Acircumflex W -95 +KPX Acircumflex Y -55 +KPX Acircumflex Yacute -55 +KPX Acircumflex Ydieresis -55 +KPX Acircumflex quoteright -37 +KPX Acircumflex u -20 +KPX Acircumflex uacute -20 +KPX Acircumflex ucircumflex -20 +KPX Acircumflex udieresis -20 +KPX Acircumflex ugrave -20 +KPX Acircumflex uhungarumlaut -20 +KPX Acircumflex umacron -20 +KPX Acircumflex uogonek -20 +KPX Acircumflex uring -20 +KPX Acircumflex v -55 +KPX Acircumflex w -55 +KPX Acircumflex y -55 +KPX Acircumflex yacute -55 +KPX Acircumflex ydieresis -55 +KPX Adieresis C -30 +KPX Adieresis Cacute -30 +KPX Adieresis Ccaron -30 +KPX Adieresis Ccedilla -30 +KPX Adieresis G -35 +KPX Adieresis Gbreve -35 +KPX Adieresis Gcommaaccent -35 +KPX Adieresis O -40 +KPX Adieresis Oacute -40 +KPX Adieresis Ocircumflex -40 +KPX Adieresis Odieresis -40 +KPX Adieresis Ograve -40 +KPX Adieresis Ohungarumlaut -40 +KPX Adieresis Omacron -40 +KPX Adieresis Oslash -40 +KPX Adieresis Otilde -40 +KPX Adieresis Q -40 +KPX Adieresis T -37 +KPX Adieresis Tcaron -37 +KPX Adieresis Tcommaaccent -37 +KPX Adieresis U -50 +KPX Adieresis Uacute -50 +KPX Adieresis Ucircumflex -50 +KPX Adieresis Udieresis -50 +KPX Adieresis Ugrave -50 +KPX Adieresis Uhungarumlaut -50 +KPX Adieresis Umacron -50 +KPX Adieresis Uogonek -50 +KPX Adieresis Uring -50 +KPX Adieresis V -105 +KPX Adieresis W -95 +KPX Adieresis Y -55 +KPX Adieresis Yacute -55 +KPX Adieresis Ydieresis -55 +KPX Adieresis quoteright -37 +KPX Adieresis u -20 +KPX Adieresis uacute -20 +KPX Adieresis ucircumflex -20 +KPX Adieresis udieresis -20 +KPX Adieresis ugrave -20 +KPX Adieresis uhungarumlaut -20 +KPX Adieresis umacron -20 +KPX Adieresis uogonek -20 +KPX Adieresis uring -20 +KPX Adieresis v -55 +KPX Adieresis w -55 +KPX Adieresis y -55 +KPX Adieresis yacute -55 +KPX Adieresis ydieresis -55 +KPX Agrave C -30 +KPX Agrave Cacute -30 +KPX Agrave Ccaron -30 +KPX Agrave Ccedilla -30 +KPX Agrave G -35 +KPX Agrave Gbreve -35 +KPX Agrave Gcommaaccent -35 +KPX Agrave O -40 +KPX Agrave Oacute -40 +KPX Agrave Ocircumflex -40 +KPX Agrave Odieresis -40 +KPX Agrave Ograve -40 +KPX Agrave Ohungarumlaut -40 +KPX Agrave Omacron -40 +KPX Agrave Oslash -40 +KPX Agrave Otilde -40 +KPX Agrave Q -40 +KPX Agrave T -37 +KPX Agrave Tcaron -37 +KPX Agrave Tcommaaccent -37 +KPX Agrave U -50 +KPX Agrave Uacute -50 +KPX Agrave Ucircumflex -50 +KPX Agrave Udieresis -50 +KPX Agrave Ugrave -50 +KPX Agrave Uhungarumlaut -50 +KPX Agrave Umacron -50 +KPX Agrave Uogonek -50 +KPX Agrave Uring -50 +KPX Agrave V -105 +KPX Agrave W -95 +KPX Agrave Y -55 +KPX Agrave Yacute -55 +KPX Agrave Ydieresis -55 +KPX Agrave quoteright -37 +KPX Agrave u -20 +KPX Agrave uacute -20 +KPX Agrave ucircumflex -20 +KPX Agrave udieresis -20 +KPX Agrave ugrave -20 +KPX Agrave uhungarumlaut -20 +KPX Agrave umacron -20 +KPX Agrave uogonek -20 +KPX Agrave uring -20 +KPX Agrave v -55 +KPX Agrave w -55 +KPX Agrave y -55 +KPX Agrave yacute -55 +KPX Agrave ydieresis -55 +KPX Amacron C -30 +KPX Amacron Cacute -30 +KPX Amacron Ccaron -30 +KPX Amacron Ccedilla -30 +KPX Amacron G -35 +KPX Amacron Gbreve -35 +KPX Amacron Gcommaaccent -35 +KPX Amacron O -40 +KPX Amacron Oacute -40 +KPX Amacron Ocircumflex -40 +KPX Amacron Odieresis -40 +KPX Amacron Ograve -40 +KPX Amacron Ohungarumlaut -40 +KPX Amacron Omacron -40 +KPX Amacron Oslash -40 +KPX Amacron Otilde -40 +KPX Amacron Q -40 +KPX Amacron T -37 +KPX Amacron Tcaron -37 +KPX Amacron Tcommaaccent -37 +KPX Amacron U -50 +KPX Amacron Uacute -50 +KPX Amacron Ucircumflex -50 +KPX Amacron Udieresis -50 +KPX Amacron Ugrave -50 +KPX Amacron Uhungarumlaut -50 +KPX Amacron Umacron -50 +KPX Amacron Uogonek -50 +KPX Amacron Uring -50 +KPX Amacron V -105 +KPX Amacron W -95 +KPX Amacron Y -55 +KPX Amacron Yacute -55 +KPX Amacron Ydieresis -55 +KPX Amacron quoteright -37 +KPX Amacron u -20 +KPX Amacron uacute -20 +KPX Amacron ucircumflex -20 +KPX Amacron udieresis -20 +KPX Amacron ugrave -20 +KPX Amacron uhungarumlaut -20 +KPX Amacron umacron -20 +KPX Amacron uogonek -20 +KPX Amacron uring -20 +KPX Amacron v -55 +KPX Amacron w -55 +KPX Amacron y -55 +KPX Amacron yacute -55 +KPX Amacron ydieresis -55 +KPX Aogonek C -30 +KPX Aogonek Cacute -30 +KPX Aogonek Ccaron -30 +KPX Aogonek Ccedilla -30 +KPX Aogonek G -35 +KPX Aogonek Gbreve -35 +KPX Aogonek Gcommaaccent -35 +KPX Aogonek O -40 +KPX Aogonek Oacute -40 +KPX Aogonek Ocircumflex -40 +KPX Aogonek Odieresis -40 +KPX Aogonek Ograve -40 +KPX Aogonek Ohungarumlaut -40 +KPX Aogonek Omacron -40 +KPX Aogonek Oslash -40 +KPX Aogonek Otilde -40 +KPX Aogonek Q -40 +KPX Aogonek T -37 +KPX Aogonek Tcaron -37 +KPX Aogonek Tcommaaccent -37 +KPX Aogonek U -50 +KPX Aogonek Uacute -50 +KPX Aogonek Ucircumflex -50 +KPX Aogonek Udieresis -50 +KPX Aogonek Ugrave -50 +KPX Aogonek Uhungarumlaut -50 +KPX Aogonek Umacron -50 +KPX Aogonek Uogonek -50 +KPX Aogonek Uring -50 +KPX Aogonek V -105 +KPX Aogonek W -95 +KPX Aogonek Y -55 +KPX Aogonek Yacute -55 +KPX Aogonek Ydieresis -55 +KPX Aogonek quoteright -37 +KPX Aogonek u -20 +KPX Aogonek uacute -20 +KPX Aogonek ucircumflex -20 +KPX Aogonek udieresis -20 +KPX Aogonek ugrave -20 +KPX Aogonek uhungarumlaut -20 +KPX Aogonek umacron -20 +KPX Aogonek uogonek -20 +KPX Aogonek uring -20 +KPX Aogonek v -55 +KPX Aogonek w -55 +KPX Aogonek y -55 +KPX Aogonek yacute -55 +KPX Aogonek ydieresis -55 +KPX Aring C -30 +KPX Aring Cacute -30 +KPX Aring Ccaron -30 +KPX Aring Ccedilla -30 +KPX Aring G -35 +KPX Aring Gbreve -35 +KPX Aring Gcommaaccent -35 +KPX Aring O -40 +KPX Aring Oacute -40 +KPX Aring Ocircumflex -40 +KPX Aring Odieresis -40 +KPX Aring Ograve -40 +KPX Aring Ohungarumlaut -40 +KPX Aring Omacron -40 +KPX Aring Oslash -40 +KPX Aring Otilde -40 +KPX Aring Q -40 +KPX Aring T -37 +KPX Aring Tcaron -37 +KPX Aring Tcommaaccent -37 +KPX Aring U -50 +KPX Aring Uacute -50 +KPX Aring Ucircumflex -50 +KPX Aring Udieresis -50 +KPX Aring Ugrave -50 +KPX Aring Uhungarumlaut -50 +KPX Aring Umacron -50 +KPX Aring Uogonek -50 +KPX Aring Uring -50 +KPX Aring V -105 +KPX Aring W -95 +KPX Aring Y -55 +KPX Aring Yacute -55 +KPX Aring Ydieresis -55 +KPX Aring quoteright -37 +KPX Aring u -20 +KPX Aring uacute -20 +KPX Aring ucircumflex -20 +KPX Aring udieresis -20 +KPX Aring ugrave -20 +KPX Aring uhungarumlaut -20 +KPX Aring umacron -20 +KPX Aring uogonek -20 +KPX Aring uring -20 +KPX Aring v -55 +KPX Aring w -55 +KPX Aring y -55 +KPX Aring yacute -55 +KPX Aring ydieresis -55 +KPX Atilde C -30 +KPX Atilde Cacute -30 +KPX Atilde Ccaron -30 +KPX Atilde Ccedilla -30 +KPX Atilde G -35 +KPX Atilde Gbreve -35 +KPX Atilde Gcommaaccent -35 +KPX Atilde O -40 +KPX Atilde Oacute -40 +KPX Atilde Ocircumflex -40 +KPX Atilde Odieresis -40 +KPX Atilde Ograve -40 +KPX Atilde Ohungarumlaut -40 +KPX Atilde Omacron -40 +KPX Atilde Oslash -40 +KPX Atilde Otilde -40 +KPX Atilde Q -40 +KPX Atilde T -37 +KPX Atilde Tcaron -37 +KPX Atilde Tcommaaccent -37 +KPX Atilde U -50 +KPX Atilde Uacute -50 +KPX Atilde Ucircumflex -50 +KPX Atilde Udieresis -50 +KPX Atilde Ugrave -50 +KPX Atilde Uhungarumlaut -50 +KPX Atilde Umacron -50 +KPX Atilde Uogonek -50 +KPX Atilde Uring -50 +KPX Atilde V -105 +KPX Atilde W -95 +KPX Atilde Y -55 +KPX Atilde Yacute -55 +KPX Atilde Ydieresis -55 +KPX Atilde quoteright -37 +KPX Atilde u -20 +KPX Atilde uacute -20 +KPX Atilde ucircumflex -20 +KPX Atilde udieresis -20 +KPX Atilde ugrave -20 +KPX Atilde uhungarumlaut -20 +KPX Atilde umacron -20 +KPX Atilde uogonek -20 +KPX Atilde uring -20 +KPX Atilde v -55 +KPX Atilde w -55 +KPX Atilde y -55 +KPX Atilde yacute -55 +KPX Atilde ydieresis -55 +KPX B A -25 +KPX B Aacute -25 +KPX B Abreve -25 +KPX B Acircumflex -25 +KPX B Adieresis -25 +KPX B Agrave -25 +KPX B Amacron -25 +KPX B Aogonek -25 +KPX B Aring -25 +KPX B Atilde -25 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX D A -35 +KPX D Aacute -35 +KPX D Abreve -35 +KPX D Acircumflex -35 +KPX D Adieresis -35 +KPX D Agrave -35 +KPX D Amacron -35 +KPX D Aogonek -35 +KPX D Aring -35 +KPX D Atilde -35 +KPX D V -40 +KPX D W -40 +KPX D Y -40 +KPX D Yacute -40 +KPX D Ydieresis -40 +KPX Dcaron A -35 +KPX Dcaron Aacute -35 +KPX Dcaron Abreve -35 +KPX Dcaron Acircumflex -35 +KPX Dcaron Adieresis -35 +KPX Dcaron Agrave -35 +KPX Dcaron Amacron -35 +KPX Dcaron Aogonek -35 +KPX Dcaron Aring -35 +KPX Dcaron Atilde -35 +KPX Dcaron V -40 +KPX Dcaron W -40 +KPX Dcaron Y -40 +KPX Dcaron Yacute -40 +KPX Dcaron Ydieresis -40 +KPX Dcroat A -35 +KPX Dcroat Aacute -35 +KPX Dcroat Abreve -35 +KPX Dcroat Acircumflex -35 +KPX Dcroat Adieresis -35 +KPX Dcroat Agrave -35 +KPX Dcroat Amacron -35 +KPX Dcroat Aogonek -35 +KPX Dcroat Aring -35 +KPX Dcroat Atilde -35 +KPX Dcroat V -40 +KPX Dcroat W -40 +KPX Dcroat Y -40 +KPX Dcroat Yacute -40 +KPX Dcroat Ydieresis -40 +KPX F A -115 +KPX F Aacute -115 +KPX F Abreve -115 +KPX F Acircumflex -115 +KPX F Adieresis -115 +KPX F Agrave -115 +KPX F Amacron -115 +KPX F Aogonek -115 +KPX F Aring -115 +KPX F Atilde -115 +KPX F a -75 +KPX F aacute -75 +KPX F abreve -75 +KPX F acircumflex -75 +KPX F adieresis -75 +KPX F agrave -75 +KPX F amacron -75 +KPX F aogonek -75 +KPX F aring -75 +KPX F atilde -75 +KPX F comma -135 +KPX F e -75 +KPX F eacute -75 +KPX F ecaron -75 +KPX F ecircumflex -75 +KPX F edieresis -75 +KPX F edotaccent -75 +KPX F egrave -75 +KPX F emacron -75 +KPX F eogonek -75 +KPX F i -45 +KPX F iacute -45 +KPX F icircumflex -45 +KPX F idieresis -45 +KPX F igrave -45 +KPX F imacron -45 +KPX F iogonek -45 +KPX F o -105 +KPX F oacute -105 +KPX F ocircumflex -105 +KPX F odieresis -105 +KPX F ograve -105 +KPX F ohungarumlaut -105 +KPX F omacron -105 +KPX F oslash -105 +KPX F otilde -105 +KPX F period -135 +KPX F r -55 +KPX F racute -55 +KPX F rcaron -55 +KPX F rcommaaccent -55 +KPX J A -40 +KPX J Aacute -40 +KPX J Abreve -40 +KPX J Acircumflex -40 +KPX J Adieresis -40 +KPX J Agrave -40 +KPX J Amacron -40 +KPX J Aogonek -40 +KPX J Aring -40 +KPX J Atilde -40 +KPX J a -35 +KPX J aacute -35 +KPX J abreve -35 +KPX J acircumflex -35 +KPX J adieresis -35 +KPX J agrave -35 +KPX J amacron -35 +KPX J aogonek -35 +KPX J aring -35 +KPX J atilde -35 +KPX J comma -25 +KPX J e -25 +KPX J eacute -25 +KPX J ecaron -25 +KPX J ecircumflex -25 +KPX J edieresis -25 +KPX J edotaccent -25 +KPX J egrave -25 +KPX J emacron -25 +KPX J eogonek -25 +KPX J o -25 +KPX J oacute -25 +KPX J ocircumflex -25 +KPX J odieresis -25 +KPX J ograve -25 +KPX J ohungarumlaut -25 +KPX J omacron -25 +KPX J oslash -25 +KPX J otilde -25 +KPX J period -25 +KPX J u -35 +KPX J uacute -35 +KPX J ucircumflex -35 +KPX J udieresis -35 +KPX J ugrave -35 +KPX J uhungarumlaut -35 +KPX J umacron -35 +KPX J uogonek -35 +KPX J uring -35 +KPX K O -50 +KPX K Oacute -50 +KPX K Ocircumflex -50 +KPX K Odieresis -50 +KPX K Ograve -50 +KPX K Ohungarumlaut -50 +KPX K Omacron -50 +KPX K Oslash -50 +KPX K Otilde -50 +KPX K e -35 +KPX K eacute -35 +KPX K ecaron -35 +KPX K ecircumflex -35 +KPX K edieresis -35 +KPX K edotaccent -35 +KPX K egrave -35 +KPX K emacron -35 +KPX K eogonek -35 +KPX K o -40 +KPX K oacute -40 +KPX K ocircumflex -40 +KPX K odieresis -40 +KPX K ograve -40 +KPX K ohungarumlaut -40 +KPX K omacron -40 +KPX K oslash -40 +KPX K otilde -40 +KPX K u -40 +KPX K uacute -40 +KPX K ucircumflex -40 +KPX K udieresis -40 +KPX K ugrave -40 +KPX K uhungarumlaut -40 +KPX K umacron -40 +KPX K uogonek -40 +KPX K uring -40 +KPX K y -40 +KPX K yacute -40 +KPX K ydieresis -40 +KPX Kcommaaccent O -50 +KPX Kcommaaccent Oacute -50 +KPX Kcommaaccent Ocircumflex -50 +KPX Kcommaaccent Odieresis -50 +KPX Kcommaaccent Ograve -50 +KPX Kcommaaccent Ohungarumlaut -50 +KPX Kcommaaccent Omacron -50 +KPX Kcommaaccent Oslash -50 +KPX Kcommaaccent Otilde -50 +KPX Kcommaaccent e -35 +KPX Kcommaaccent eacute -35 +KPX Kcommaaccent ecaron -35 +KPX Kcommaaccent ecircumflex -35 +KPX Kcommaaccent edieresis -35 +KPX Kcommaaccent edotaccent -35 +KPX Kcommaaccent egrave -35 +KPX Kcommaaccent emacron -35 +KPX Kcommaaccent eogonek -35 +KPX Kcommaaccent o -40 +KPX Kcommaaccent oacute -40 +KPX Kcommaaccent ocircumflex -40 +KPX Kcommaaccent odieresis -40 +KPX Kcommaaccent ograve -40 +KPX Kcommaaccent ohungarumlaut -40 +KPX Kcommaaccent omacron -40 +KPX Kcommaaccent oslash -40 +KPX Kcommaaccent otilde -40 +KPX Kcommaaccent u -40 +KPX Kcommaaccent uacute -40 +KPX Kcommaaccent ucircumflex -40 +KPX Kcommaaccent udieresis -40 +KPX Kcommaaccent ugrave -40 +KPX Kcommaaccent uhungarumlaut -40 +KPX Kcommaaccent umacron -40 +KPX Kcommaaccent uogonek -40 +KPX Kcommaaccent uring -40 +KPX Kcommaaccent y -40 +KPX Kcommaaccent yacute -40 +KPX Kcommaaccent ydieresis -40 +KPX L T -20 +KPX L Tcaron -20 +KPX L Tcommaaccent -20 +KPX L V -55 +KPX L W -55 +KPX L Y -20 +KPX L Yacute -20 +KPX L Ydieresis -20 +KPX L quoteright -37 +KPX L y -30 +KPX L yacute -30 +KPX L ydieresis -30 +KPX Lacute T -20 +KPX Lacute Tcaron -20 +KPX Lacute Tcommaaccent -20 +KPX Lacute V -55 +KPX Lacute W -55 +KPX Lacute Y -20 +KPX Lacute Yacute -20 +KPX Lacute Ydieresis -20 +KPX Lacute quoteright -37 +KPX Lacute y -30 +KPX Lacute yacute -30 +KPX Lacute ydieresis -30 +KPX Lcommaaccent T -20 +KPX Lcommaaccent Tcaron -20 +KPX Lcommaaccent Tcommaaccent -20 +KPX Lcommaaccent V -55 +KPX Lcommaaccent W -55 +KPX Lcommaaccent Y -20 +KPX Lcommaaccent Yacute -20 +KPX Lcommaaccent Ydieresis -20 +KPX Lcommaaccent quoteright -37 +KPX Lcommaaccent y -30 +KPX Lcommaaccent yacute -30 +KPX Lcommaaccent ydieresis -30 +KPX Lslash T -20 +KPX Lslash Tcaron -20 +KPX Lslash Tcommaaccent -20 +KPX Lslash V -55 +KPX Lslash W -55 +KPX Lslash Y -20 +KPX Lslash Yacute -20 +KPX Lslash Ydieresis -20 +KPX Lslash quoteright -37 +KPX Lslash y -30 +KPX Lslash yacute -30 +KPX Lslash ydieresis -30 +KPX N A -27 +KPX N Aacute -27 +KPX N Abreve -27 +KPX N Acircumflex -27 +KPX N Adieresis -27 +KPX N Agrave -27 +KPX N Amacron -27 +KPX N Aogonek -27 +KPX N Aring -27 +KPX N Atilde -27 +KPX Nacute A -27 +KPX Nacute Aacute -27 +KPX Nacute Abreve -27 +KPX Nacute Acircumflex -27 +KPX Nacute Adieresis -27 +KPX Nacute Agrave -27 +KPX Nacute Amacron -27 +KPX Nacute Aogonek -27 +KPX Nacute Aring -27 +KPX Nacute Atilde -27 +KPX Ncaron A -27 +KPX Ncaron Aacute -27 +KPX Ncaron Abreve -27 +KPX Ncaron Acircumflex -27 +KPX Ncaron Adieresis -27 +KPX Ncaron Agrave -27 +KPX Ncaron Amacron -27 +KPX Ncaron Aogonek -27 +KPX Ncaron Aring -27 +KPX Ncaron Atilde -27 +KPX Ncommaaccent A -27 +KPX Ncommaaccent Aacute -27 +KPX Ncommaaccent Abreve -27 +KPX Ncommaaccent Acircumflex -27 +KPX Ncommaaccent Adieresis -27 +KPX Ncommaaccent Agrave -27 +KPX Ncommaaccent Amacron -27 +KPX Ncommaaccent Aogonek -27 +KPX Ncommaaccent Aring -27 +KPX Ncommaaccent Atilde -27 +KPX Ntilde A -27 +KPX Ntilde Aacute -27 +KPX Ntilde Abreve -27 +KPX Ntilde Acircumflex -27 +KPX Ntilde Adieresis -27 +KPX Ntilde Agrave -27 +KPX Ntilde Amacron -27 +KPX Ntilde Aogonek -27 +KPX Ntilde Aring -27 +KPX Ntilde Atilde -27 +KPX O A -55 +KPX O Aacute -55 +KPX O Abreve -55 +KPX O Acircumflex -55 +KPX O Adieresis -55 +KPX O Agrave -55 +KPX O Amacron -55 +KPX O Aogonek -55 +KPX O Aring -55 +KPX O Atilde -55 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -50 +KPX O X -40 +KPX O Y -50 +KPX O Yacute -50 +KPX O Ydieresis -50 +KPX Oacute A -55 +KPX Oacute Aacute -55 +KPX Oacute Abreve -55 +KPX Oacute Acircumflex -55 +KPX Oacute Adieresis -55 +KPX Oacute Agrave -55 +KPX Oacute Amacron -55 +KPX Oacute Aogonek -55 +KPX Oacute Aring -55 +KPX Oacute Atilde -55 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -50 +KPX Oacute X -40 +KPX Oacute Y -50 +KPX Oacute Yacute -50 +KPX Oacute Ydieresis -50 +KPX Ocircumflex A -55 +KPX Ocircumflex Aacute -55 +KPX Ocircumflex Abreve -55 +KPX Ocircumflex Acircumflex -55 +KPX Ocircumflex Adieresis -55 +KPX Ocircumflex Agrave -55 +KPX Ocircumflex Amacron -55 +KPX Ocircumflex Aogonek -55 +KPX Ocircumflex Aring -55 +KPX Ocircumflex Atilde -55 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -50 +KPX Ocircumflex X -40 +KPX Ocircumflex Y -50 +KPX Ocircumflex Yacute -50 +KPX Ocircumflex Ydieresis -50 +KPX Odieresis A -55 +KPX Odieresis Aacute -55 +KPX Odieresis Abreve -55 +KPX Odieresis Acircumflex -55 +KPX Odieresis Adieresis -55 +KPX Odieresis Agrave -55 +KPX Odieresis Amacron -55 +KPX Odieresis Aogonek -55 +KPX Odieresis Aring -55 +KPX Odieresis Atilde -55 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -50 +KPX Odieresis X -40 +KPX Odieresis Y -50 +KPX Odieresis Yacute -50 +KPX Odieresis Ydieresis -50 +KPX Ograve A -55 +KPX Ograve Aacute -55 +KPX Ograve Abreve -55 +KPX Ograve Acircumflex -55 +KPX Ograve Adieresis -55 +KPX Ograve Agrave -55 +KPX Ograve Amacron -55 +KPX Ograve Aogonek -55 +KPX Ograve Aring -55 +KPX Ograve Atilde -55 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -50 +KPX Ograve X -40 +KPX Ograve Y -50 +KPX Ograve Yacute -50 +KPX Ograve Ydieresis -50 +KPX Ohungarumlaut A -55 +KPX Ohungarumlaut Aacute -55 +KPX Ohungarumlaut Abreve -55 +KPX Ohungarumlaut Acircumflex -55 +KPX Ohungarumlaut Adieresis -55 +KPX Ohungarumlaut Agrave -55 +KPX Ohungarumlaut Amacron -55 +KPX Ohungarumlaut Aogonek -55 +KPX Ohungarumlaut Aring -55 +KPX Ohungarumlaut Atilde -55 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -50 +KPX Ohungarumlaut X -40 +KPX Ohungarumlaut Y -50 +KPX Ohungarumlaut Yacute -50 +KPX Ohungarumlaut Ydieresis -50 +KPX Omacron A -55 +KPX Omacron Aacute -55 +KPX Omacron Abreve -55 +KPX Omacron Acircumflex -55 +KPX Omacron Adieresis -55 +KPX Omacron Agrave -55 +KPX Omacron Amacron -55 +KPX Omacron Aogonek -55 +KPX Omacron Aring -55 +KPX Omacron Atilde -55 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -50 +KPX Omacron X -40 +KPX Omacron Y -50 +KPX Omacron Yacute -50 +KPX Omacron Ydieresis -50 +KPX Oslash A -55 +KPX Oslash Aacute -55 +KPX Oslash Abreve -55 +KPX Oslash Acircumflex -55 +KPX Oslash Adieresis -55 +KPX Oslash Agrave -55 +KPX Oslash Amacron -55 +KPX Oslash Aogonek -55 +KPX Oslash Aring -55 +KPX Oslash Atilde -55 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -50 +KPX Oslash X -40 +KPX Oslash Y -50 +KPX Oslash Yacute -50 +KPX Oslash Ydieresis -50 +KPX Otilde A -55 +KPX Otilde Aacute -55 +KPX Otilde Abreve -55 +KPX Otilde Acircumflex -55 +KPX Otilde Adieresis -55 +KPX Otilde Agrave -55 +KPX Otilde Amacron -55 +KPX Otilde Aogonek -55 +KPX Otilde Aring -55 +KPX Otilde Atilde -55 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -50 +KPX Otilde X -40 +KPX Otilde Y -50 +KPX Otilde Yacute -50 +KPX Otilde Ydieresis -50 +KPX P A -90 +KPX P Aacute -90 +KPX P Abreve -90 +KPX P Acircumflex -90 +KPX P Adieresis -90 +KPX P Agrave -90 +KPX P Amacron -90 +KPX P Aogonek -90 +KPX P Aring -90 +KPX P Atilde -90 +KPX P a -80 +KPX P aacute -80 +KPX P abreve -80 +KPX P acircumflex -80 +KPX P adieresis -80 +KPX P agrave -80 +KPX P amacron -80 +KPX P aogonek -80 +KPX P aring -80 +KPX P atilde -80 +KPX P comma -135 +KPX P e -80 +KPX P eacute -80 +KPX P ecaron -80 +KPX P ecircumflex -80 +KPX P edieresis -80 +KPX P edotaccent -80 +KPX P egrave -80 +KPX P emacron -80 +KPX P eogonek -80 +KPX P o -80 +KPX P oacute -80 +KPX P ocircumflex -80 +KPX P odieresis -80 +KPX P ograve -80 +KPX P ohungarumlaut -80 +KPX P omacron -80 +KPX P oslash -80 +KPX P otilde -80 +KPX P period -135 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX R O -40 +KPX R Oacute -40 +KPX R Ocircumflex -40 +KPX R Odieresis -40 +KPX R Ograve -40 +KPX R Ohungarumlaut -40 +KPX R Omacron -40 +KPX R Oslash -40 +KPX R Otilde -40 +KPX R U -40 +KPX R Uacute -40 +KPX R Ucircumflex -40 +KPX R Udieresis -40 +KPX R Ugrave -40 +KPX R Uhungarumlaut -40 +KPX R Umacron -40 +KPX R Uogonek -40 +KPX R Uring -40 +KPX R V -18 +KPX R W -18 +KPX R Y -18 +KPX R Yacute -18 +KPX R Ydieresis -18 +KPX Racute O -40 +KPX Racute Oacute -40 +KPX Racute Ocircumflex -40 +KPX Racute Odieresis -40 +KPX Racute Ograve -40 +KPX Racute Ohungarumlaut -40 +KPX Racute Omacron -40 +KPX Racute Oslash -40 +KPX Racute Otilde -40 +KPX Racute U -40 +KPX Racute Uacute -40 +KPX Racute Ucircumflex -40 +KPX Racute Udieresis -40 +KPX Racute Ugrave -40 +KPX Racute Uhungarumlaut -40 +KPX Racute Umacron -40 +KPX Racute Uogonek -40 +KPX Racute Uring -40 +KPX Racute V -18 +KPX Racute W -18 +KPX Racute Y -18 +KPX Racute Yacute -18 +KPX Racute Ydieresis -18 +KPX Rcaron O -40 +KPX Rcaron Oacute -40 +KPX Rcaron Ocircumflex -40 +KPX Rcaron Odieresis -40 +KPX Rcaron Ograve -40 +KPX Rcaron Ohungarumlaut -40 +KPX Rcaron Omacron -40 +KPX Rcaron Oslash -40 +KPX Rcaron Otilde -40 +KPX Rcaron U -40 +KPX Rcaron Uacute -40 +KPX Rcaron Ucircumflex -40 +KPX Rcaron Udieresis -40 +KPX Rcaron Ugrave -40 +KPX Rcaron Uhungarumlaut -40 +KPX Rcaron Umacron -40 +KPX Rcaron Uogonek -40 +KPX Rcaron Uring -40 +KPX Rcaron V -18 +KPX Rcaron W -18 +KPX Rcaron Y -18 +KPX Rcaron Yacute -18 +KPX Rcaron Ydieresis -18 +KPX Rcommaaccent O -40 +KPX Rcommaaccent Oacute -40 +KPX Rcommaaccent Ocircumflex -40 +KPX Rcommaaccent Odieresis -40 +KPX Rcommaaccent Ograve -40 +KPX Rcommaaccent Ohungarumlaut -40 +KPX Rcommaaccent Omacron -40 +KPX Rcommaaccent Oslash -40 +KPX Rcommaaccent Otilde -40 +KPX Rcommaaccent U -40 +KPX Rcommaaccent Uacute -40 +KPX Rcommaaccent Ucircumflex -40 +KPX Rcommaaccent Udieresis -40 +KPX Rcommaaccent Ugrave -40 +KPX Rcommaaccent Uhungarumlaut -40 +KPX Rcommaaccent Umacron -40 +KPX Rcommaaccent Uogonek -40 +KPX Rcommaaccent Uring -40 +KPX Rcommaaccent V -18 +KPX Rcommaaccent W -18 +KPX Rcommaaccent Y -18 +KPX Rcommaaccent Yacute -18 +KPX Rcommaaccent Ydieresis -18 +KPX T A -50 +KPX T Aacute -50 +KPX T Abreve -50 +KPX T Acircumflex -50 +KPX T Adieresis -50 +KPX T Agrave -50 +KPX T Amacron -50 +KPX T Aogonek -50 +KPX T Aring -50 +KPX T Atilde -50 +KPX T O -18 +KPX T Oacute -18 +KPX T Ocircumflex -18 +KPX T Odieresis -18 +KPX T Ograve -18 +KPX T Ohungarumlaut -18 +KPX T Omacron -18 +KPX T Oslash -18 +KPX T Otilde -18 +KPX T a -92 +KPX T aacute -92 +KPX T abreve -92 +KPX T acircumflex -92 +KPX T adieresis -92 +KPX T agrave -92 +KPX T amacron -92 +KPX T aogonek -92 +KPX T aring -92 +KPX T atilde -92 +KPX T colon -55 +KPX T comma -74 +KPX T e -92 +KPX T eacute -92 +KPX T ecaron -92 +KPX T ecircumflex -52 +KPX T edieresis -52 +KPX T edotaccent -92 +KPX T egrave -52 +KPX T emacron -52 +KPX T eogonek -92 +KPX T hyphen -74 +KPX T i -55 +KPX T iacute -55 +KPX T iogonek -55 +KPX T o -92 +KPX T oacute -92 +KPX T ocircumflex -92 +KPX T odieresis -92 +KPX T ograve -92 +KPX T ohungarumlaut -92 +KPX T omacron -92 +KPX T oslash -92 +KPX T otilde -92 +KPX T period -74 +KPX T r -55 +KPX T racute -55 +KPX T rcaron -55 +KPX T rcommaaccent -55 +KPX T semicolon -65 +KPX T u -55 +KPX T uacute -55 +KPX T ucircumflex -55 +KPX T udieresis -55 +KPX T ugrave -55 +KPX T uhungarumlaut -55 +KPX T umacron -55 +KPX T uogonek -55 +KPX T uring -55 +KPX T w -74 +KPX T y -74 +KPX T yacute -74 +KPX T ydieresis -34 +KPX Tcaron A -50 +KPX Tcaron Aacute -50 +KPX Tcaron Abreve -50 +KPX Tcaron Acircumflex -50 +KPX Tcaron Adieresis -50 +KPX Tcaron Agrave -50 +KPX Tcaron Amacron -50 +KPX Tcaron Aogonek -50 +KPX Tcaron Aring -50 +KPX Tcaron Atilde -50 +KPX Tcaron O -18 +KPX Tcaron Oacute -18 +KPX Tcaron Ocircumflex -18 +KPX Tcaron Odieresis -18 +KPX Tcaron Ograve -18 +KPX Tcaron Ohungarumlaut -18 +KPX Tcaron Omacron -18 +KPX Tcaron Oslash -18 +KPX Tcaron Otilde -18 +KPX Tcaron a -92 +KPX Tcaron aacute -92 +KPX Tcaron abreve -92 +KPX Tcaron acircumflex -92 +KPX Tcaron adieresis -92 +KPX Tcaron agrave -92 +KPX Tcaron amacron -92 +KPX Tcaron aogonek -92 +KPX Tcaron aring -92 +KPX Tcaron atilde -92 +KPX Tcaron colon -55 +KPX Tcaron comma -74 +KPX Tcaron e -92 +KPX Tcaron eacute -92 +KPX Tcaron ecaron -92 +KPX Tcaron ecircumflex -52 +KPX Tcaron edieresis -52 +KPX Tcaron edotaccent -92 +KPX Tcaron egrave -52 +KPX Tcaron emacron -52 +KPX Tcaron eogonek -92 +KPX Tcaron hyphen -74 +KPX Tcaron i -55 +KPX Tcaron iacute -55 +KPX Tcaron iogonek -55 +KPX Tcaron o -92 +KPX Tcaron oacute -92 +KPX Tcaron ocircumflex -92 +KPX Tcaron odieresis -92 +KPX Tcaron ograve -92 +KPX Tcaron ohungarumlaut -92 +KPX Tcaron omacron -92 +KPX Tcaron oslash -92 +KPX Tcaron otilde -92 +KPX Tcaron period -74 +KPX Tcaron r -55 +KPX Tcaron racute -55 +KPX Tcaron rcaron -55 +KPX Tcaron rcommaaccent -55 +KPX Tcaron semicolon -65 +KPX Tcaron u -55 +KPX Tcaron uacute -55 +KPX Tcaron ucircumflex -55 +KPX Tcaron udieresis -55 +KPX Tcaron ugrave -55 +KPX Tcaron uhungarumlaut -55 +KPX Tcaron umacron -55 +KPX Tcaron uogonek -55 +KPX Tcaron uring -55 +KPX Tcaron w -74 +KPX Tcaron y -74 +KPX Tcaron yacute -74 +KPX Tcaron ydieresis -34 +KPX Tcommaaccent A -50 +KPX Tcommaaccent Aacute -50 +KPX Tcommaaccent Abreve -50 +KPX Tcommaaccent Acircumflex -50 +KPX Tcommaaccent Adieresis -50 +KPX Tcommaaccent Agrave -50 +KPX Tcommaaccent Amacron -50 +KPX Tcommaaccent Aogonek -50 +KPX Tcommaaccent Aring -50 +KPX Tcommaaccent Atilde -50 +KPX Tcommaaccent O -18 +KPX Tcommaaccent Oacute -18 +KPX Tcommaaccent Ocircumflex -18 +KPX Tcommaaccent Odieresis -18 +KPX Tcommaaccent Ograve -18 +KPX Tcommaaccent Ohungarumlaut -18 +KPX Tcommaaccent Omacron -18 +KPX Tcommaaccent Oslash -18 +KPX Tcommaaccent Otilde -18 +KPX Tcommaaccent a -92 +KPX Tcommaaccent aacute -92 +KPX Tcommaaccent abreve -92 +KPX Tcommaaccent acircumflex -92 +KPX Tcommaaccent adieresis -92 +KPX Tcommaaccent agrave -92 +KPX Tcommaaccent amacron -92 +KPX Tcommaaccent aogonek -92 +KPX Tcommaaccent aring -92 +KPX Tcommaaccent atilde -92 +KPX Tcommaaccent colon -55 +KPX Tcommaaccent comma -74 +KPX Tcommaaccent e -92 +KPX Tcommaaccent eacute -92 +KPX Tcommaaccent ecaron -92 +KPX Tcommaaccent ecircumflex -52 +KPX Tcommaaccent edieresis -52 +KPX Tcommaaccent edotaccent -92 +KPX Tcommaaccent egrave -52 +KPX Tcommaaccent emacron -52 +KPX Tcommaaccent eogonek -92 +KPX Tcommaaccent hyphen -74 +KPX Tcommaaccent i -55 +KPX Tcommaaccent iacute -55 +KPX Tcommaaccent iogonek -55 +KPX Tcommaaccent o -92 +KPX Tcommaaccent oacute -92 +KPX Tcommaaccent ocircumflex -92 +KPX Tcommaaccent odieresis -92 +KPX Tcommaaccent ograve -92 +KPX Tcommaaccent ohungarumlaut -92 +KPX Tcommaaccent omacron -92 +KPX Tcommaaccent oslash -92 +KPX Tcommaaccent otilde -92 +KPX Tcommaaccent period -74 +KPX Tcommaaccent r -55 +KPX Tcommaaccent racute -55 +KPX Tcommaaccent rcaron -55 +KPX Tcommaaccent rcommaaccent -55 +KPX Tcommaaccent semicolon -65 +KPX Tcommaaccent u -55 +KPX Tcommaaccent uacute -55 +KPX Tcommaaccent ucircumflex -55 +KPX Tcommaaccent udieresis -55 +KPX Tcommaaccent ugrave -55 +KPX Tcommaaccent uhungarumlaut -55 +KPX Tcommaaccent umacron -55 +KPX Tcommaaccent uogonek -55 +KPX Tcommaaccent uring -55 +KPX Tcommaaccent w -74 +KPX Tcommaaccent y -74 +KPX Tcommaaccent yacute -74 +KPX Tcommaaccent ydieresis -34 +KPX U A -40 +KPX U Aacute -40 +KPX U Abreve -40 +KPX U Acircumflex -40 +KPX U Adieresis -40 +KPX U Agrave -40 +KPX U Amacron -40 +KPX U Aogonek -40 +KPX U Aring -40 +KPX U Atilde -40 +KPX U comma -25 +KPX U period -25 +KPX Uacute A -40 +KPX Uacute Aacute -40 +KPX Uacute Abreve -40 +KPX Uacute Acircumflex -40 +KPX Uacute Adieresis -40 +KPX Uacute Agrave -40 +KPX Uacute Amacron -40 +KPX Uacute Aogonek -40 +KPX Uacute Aring -40 +KPX Uacute Atilde -40 +KPX Uacute comma -25 +KPX Uacute period -25 +KPX Ucircumflex A -40 +KPX Ucircumflex Aacute -40 +KPX Ucircumflex Abreve -40 +KPX Ucircumflex Acircumflex -40 +KPX Ucircumflex Adieresis -40 +KPX Ucircumflex Agrave -40 +KPX Ucircumflex Amacron -40 +KPX Ucircumflex Aogonek -40 +KPX Ucircumflex Aring -40 +KPX Ucircumflex Atilde -40 +KPX Ucircumflex comma -25 +KPX Ucircumflex period -25 +KPX Udieresis A -40 +KPX Udieresis Aacute -40 +KPX Udieresis Abreve -40 +KPX Udieresis Acircumflex -40 +KPX Udieresis Adieresis -40 +KPX Udieresis Agrave -40 +KPX Udieresis Amacron -40 +KPX Udieresis Aogonek -40 +KPX Udieresis Aring -40 +KPX Udieresis Atilde -40 +KPX Udieresis comma -25 +KPX Udieresis period -25 +KPX Ugrave A -40 +KPX Ugrave Aacute -40 +KPX Ugrave Abreve -40 +KPX Ugrave Acircumflex -40 +KPX Ugrave Adieresis -40 +KPX Ugrave Agrave -40 +KPX Ugrave Amacron -40 +KPX Ugrave Aogonek -40 +KPX Ugrave Aring -40 +KPX Ugrave Atilde -40 +KPX Ugrave comma -25 +KPX Ugrave period -25 +KPX Uhungarumlaut A -40 +KPX Uhungarumlaut Aacute -40 +KPX Uhungarumlaut Abreve -40 +KPX Uhungarumlaut Acircumflex -40 +KPX Uhungarumlaut Adieresis -40 +KPX Uhungarumlaut Agrave -40 +KPX Uhungarumlaut Amacron -40 +KPX Uhungarumlaut Aogonek -40 +KPX Uhungarumlaut Aring -40 +KPX Uhungarumlaut Atilde -40 +KPX Uhungarumlaut comma -25 +KPX Uhungarumlaut period -25 +KPX Umacron A -40 +KPX Umacron Aacute -40 +KPX Umacron Abreve -40 +KPX Umacron Acircumflex -40 +KPX Umacron Adieresis -40 +KPX Umacron Agrave -40 +KPX Umacron Amacron -40 +KPX Umacron Aogonek -40 +KPX Umacron Aring -40 +KPX Umacron Atilde -40 +KPX Umacron comma -25 +KPX Umacron period -25 +KPX Uogonek A -40 +KPX Uogonek Aacute -40 +KPX Uogonek Abreve -40 +KPX Uogonek Acircumflex -40 +KPX Uogonek Adieresis -40 +KPX Uogonek Agrave -40 +KPX Uogonek Amacron -40 +KPX Uogonek Aogonek -40 +KPX Uogonek Aring -40 +KPX Uogonek Atilde -40 +KPX Uogonek comma -25 +KPX Uogonek period -25 +KPX Uring A -40 +KPX Uring Aacute -40 +KPX Uring Abreve -40 +KPX Uring Acircumflex -40 +KPX Uring Adieresis -40 +KPX Uring Agrave -40 +KPX Uring Amacron -40 +KPX Uring Aogonek -40 +KPX Uring Aring -40 +KPX Uring Atilde -40 +KPX Uring comma -25 +KPX Uring period -25 +KPX V A -60 +KPX V Aacute -60 +KPX V Abreve -60 +KPX V Acircumflex -60 +KPX V Adieresis -60 +KPX V Agrave -60 +KPX V Amacron -60 +KPX V Aogonek -60 +KPX V Aring -60 +KPX V Atilde -60 +KPX V O -30 +KPX V Oacute -30 +KPX V Ocircumflex -30 +KPX V Odieresis -30 +KPX V Ograve -30 +KPX V Ohungarumlaut -30 +KPX V Omacron -30 +KPX V Oslash -30 +KPX V Otilde -30 +KPX V a -111 +KPX V aacute -111 +KPX V abreve -111 +KPX V acircumflex -111 +KPX V adieresis -111 +KPX V agrave -111 +KPX V amacron -111 +KPX V aogonek -111 +KPX V aring -111 +KPX V atilde -111 +KPX V colon -65 +KPX V comma -129 +KPX V e -111 +KPX V eacute -111 +KPX V ecaron -111 +KPX V ecircumflex -111 +KPX V edieresis -71 +KPX V edotaccent -111 +KPX V egrave -71 +KPX V emacron -71 +KPX V eogonek -111 +KPX V hyphen -55 +KPX V i -74 +KPX V iacute -74 +KPX V icircumflex -34 +KPX V idieresis -34 +KPX V igrave -34 +KPX V imacron -34 +KPX V iogonek -74 +KPX V o -111 +KPX V oacute -111 +KPX V ocircumflex -111 +KPX V odieresis -111 +KPX V ograve -111 +KPX V ohungarumlaut -111 +KPX V omacron -111 +KPX V oslash -111 +KPX V otilde -111 +KPX V period -129 +KPX V semicolon -74 +KPX V u -74 +KPX V uacute -74 +KPX V ucircumflex -74 +KPX V udieresis -74 +KPX V ugrave -74 +KPX V uhungarumlaut -74 +KPX V umacron -74 +KPX V uogonek -74 +KPX V uring -74 +KPX W A -60 +KPX W Aacute -60 +KPX W Abreve -60 +KPX W Acircumflex -60 +KPX W Adieresis -60 +KPX W Agrave -60 +KPX W Amacron -60 +KPX W Aogonek -60 +KPX W Aring -60 +KPX W Atilde -60 +KPX W O -25 +KPX W Oacute -25 +KPX W Ocircumflex -25 +KPX W Odieresis -25 +KPX W Ograve -25 +KPX W Ohungarumlaut -25 +KPX W Omacron -25 +KPX W Oslash -25 +KPX W Otilde -25 +KPX W a -92 +KPX W aacute -92 +KPX W abreve -92 +KPX W acircumflex -92 +KPX W adieresis -92 +KPX W agrave -92 +KPX W amacron -92 +KPX W aogonek -92 +KPX W aring -92 +KPX W atilde -92 +KPX W colon -65 +KPX W comma -92 +KPX W e -92 +KPX W eacute -92 +KPX W ecaron -92 +KPX W ecircumflex -92 +KPX W edieresis -52 +KPX W edotaccent -92 +KPX W egrave -52 +KPX W emacron -52 +KPX W eogonek -92 +KPX W hyphen -37 +KPX W i -55 +KPX W iacute -55 +KPX W iogonek -55 +KPX W o -92 +KPX W oacute -92 +KPX W ocircumflex -92 +KPX W odieresis -92 +KPX W ograve -92 +KPX W ohungarumlaut -92 +KPX W omacron -92 +KPX W oslash -92 +KPX W otilde -92 +KPX W period -92 +KPX W semicolon -65 +KPX W u -55 +KPX W uacute -55 +KPX W ucircumflex -55 +KPX W udieresis -55 +KPX W ugrave -55 +KPX W uhungarumlaut -55 +KPX W umacron -55 +KPX W uogonek -55 +KPX W uring -55 +KPX W y -70 +KPX W yacute -70 +KPX W ydieresis -70 +KPX Y A -50 +KPX Y Aacute -50 +KPX Y Abreve -50 +KPX Y Acircumflex -50 +KPX Y Adieresis -50 +KPX Y Agrave -50 +KPX Y Amacron -50 +KPX Y Aogonek -50 +KPX Y Aring -50 +KPX Y Atilde -50 +KPX Y O -15 +KPX Y Oacute -15 +KPX Y Ocircumflex -15 +KPX Y Odieresis -15 +KPX Y Ograve -15 +KPX Y Ohungarumlaut -15 +KPX Y Omacron -15 +KPX Y Oslash -15 +KPX Y Otilde -15 +KPX Y a -92 +KPX Y aacute -92 +KPX Y abreve -92 +KPX Y acircumflex -92 +KPX Y adieresis -92 +KPX Y agrave -92 +KPX Y amacron -92 +KPX Y aogonek -92 +KPX Y aring -92 +KPX Y atilde -92 +KPX Y colon -65 +KPX Y comma -92 +KPX Y e -92 +KPX Y eacute -92 +KPX Y ecaron -92 +KPX Y ecircumflex -92 +KPX Y edieresis -52 +KPX Y edotaccent -92 +KPX Y egrave -52 +KPX Y emacron -52 +KPX Y eogonek -92 +KPX Y hyphen -74 +KPX Y i -74 +KPX Y iacute -74 +KPX Y icircumflex -34 +KPX Y idieresis -34 +KPX Y igrave -34 +KPX Y imacron -34 +KPX Y iogonek -74 +KPX Y o -92 +KPX Y oacute -92 +KPX Y ocircumflex -92 +KPX Y odieresis -92 +KPX Y ograve -92 +KPX Y ohungarumlaut -92 +KPX Y omacron -92 +KPX Y oslash -92 +KPX Y otilde -92 +KPX Y period -92 +KPX Y semicolon -65 +KPX Y u -92 +KPX Y uacute -92 +KPX Y ucircumflex -92 +KPX Y udieresis -92 +KPX Y ugrave -92 +KPX Y uhungarumlaut -92 +KPX Y umacron -92 +KPX Y uogonek -92 +KPX Y uring -92 +KPX Yacute A -50 +KPX Yacute Aacute -50 +KPX Yacute Abreve -50 +KPX Yacute Acircumflex -50 +KPX Yacute Adieresis -50 +KPX Yacute Agrave -50 +KPX Yacute Amacron -50 +KPX Yacute Aogonek -50 +KPX Yacute Aring -50 +KPX Yacute Atilde -50 +KPX Yacute O -15 +KPX Yacute Oacute -15 +KPX Yacute Ocircumflex -15 +KPX Yacute Odieresis -15 +KPX Yacute Ograve -15 +KPX Yacute Ohungarumlaut -15 +KPX Yacute Omacron -15 +KPX Yacute Oslash -15 +KPX Yacute Otilde -15 +KPX Yacute a -92 +KPX Yacute aacute -92 +KPX Yacute abreve -92 +KPX Yacute acircumflex -92 +KPX Yacute adieresis -92 +KPX Yacute agrave -92 +KPX Yacute amacron -92 +KPX Yacute aogonek -92 +KPX Yacute aring -92 +KPX Yacute atilde -92 +KPX Yacute colon -65 +KPX Yacute comma -92 +KPX Yacute e -92 +KPX Yacute eacute -92 +KPX Yacute ecaron -92 +KPX Yacute ecircumflex -92 +KPX Yacute edieresis -52 +KPX Yacute edotaccent -92 +KPX Yacute egrave -52 +KPX Yacute emacron -52 +KPX Yacute eogonek -92 +KPX Yacute hyphen -74 +KPX Yacute i -74 +KPX Yacute iacute -74 +KPX Yacute icircumflex -34 +KPX Yacute idieresis -34 +KPX Yacute igrave -34 +KPX Yacute imacron -34 +KPX Yacute iogonek -74 +KPX Yacute o -92 +KPX Yacute oacute -92 +KPX Yacute ocircumflex -92 +KPX Yacute odieresis -92 +KPX Yacute ograve -92 +KPX Yacute ohungarumlaut -92 +KPX Yacute omacron -92 +KPX Yacute oslash -92 +KPX Yacute otilde -92 +KPX Yacute period -92 +KPX Yacute semicolon -65 +KPX Yacute u -92 +KPX Yacute uacute -92 +KPX Yacute ucircumflex -92 +KPX Yacute udieresis -92 +KPX Yacute ugrave -92 +KPX Yacute uhungarumlaut -92 +KPX Yacute umacron -92 +KPX Yacute uogonek -92 +KPX Yacute uring -92 +KPX Ydieresis A -50 +KPX Ydieresis Aacute -50 +KPX Ydieresis Abreve -50 +KPX Ydieresis Acircumflex -50 +KPX Ydieresis Adieresis -50 +KPX Ydieresis Agrave -50 +KPX Ydieresis Amacron -50 +KPX Ydieresis Aogonek -50 +KPX Ydieresis Aring -50 +KPX Ydieresis Atilde -50 +KPX Ydieresis O -15 +KPX Ydieresis Oacute -15 +KPX Ydieresis Ocircumflex -15 +KPX Ydieresis Odieresis -15 +KPX Ydieresis Ograve -15 +KPX Ydieresis Ohungarumlaut -15 +KPX Ydieresis Omacron -15 +KPX Ydieresis Oslash -15 +KPX Ydieresis Otilde -15 +KPX Ydieresis a -92 +KPX Ydieresis aacute -92 +KPX Ydieresis abreve -92 +KPX Ydieresis acircumflex -92 +KPX Ydieresis adieresis -92 +KPX Ydieresis agrave -92 +KPX Ydieresis amacron -92 +KPX Ydieresis aogonek -92 +KPX Ydieresis aring -92 +KPX Ydieresis atilde -92 +KPX Ydieresis colon -65 +KPX Ydieresis comma -92 +KPX Ydieresis e -92 +KPX Ydieresis eacute -92 +KPX Ydieresis ecaron -92 +KPX Ydieresis ecircumflex -92 +KPX Ydieresis edieresis -52 +KPX Ydieresis edotaccent -92 +KPX Ydieresis egrave -52 +KPX Ydieresis emacron -52 +KPX Ydieresis eogonek -92 +KPX Ydieresis hyphen -74 +KPX Ydieresis i -74 +KPX Ydieresis iacute -74 +KPX Ydieresis icircumflex -34 +KPX Ydieresis idieresis -34 +KPX Ydieresis igrave -34 +KPX Ydieresis imacron -34 +KPX Ydieresis iogonek -74 +KPX Ydieresis o -92 +KPX Ydieresis oacute -92 +KPX Ydieresis ocircumflex -92 +KPX Ydieresis odieresis -92 +KPX Ydieresis ograve -92 +KPX Ydieresis ohungarumlaut -92 +KPX Ydieresis omacron -92 +KPX Ydieresis oslash -92 +KPX Ydieresis otilde -92 +KPX Ydieresis period -92 +KPX Ydieresis semicolon -65 +KPX Ydieresis u -92 +KPX Ydieresis uacute -92 +KPX Ydieresis ucircumflex -92 +KPX Ydieresis udieresis -92 +KPX Ydieresis ugrave -92 +KPX Ydieresis uhungarumlaut -92 +KPX Ydieresis umacron -92 +KPX Ydieresis uogonek -92 +KPX Ydieresis uring -92 +KPX a g -10 +KPX a gbreve -10 +KPX a gcommaaccent -10 +KPX aacute g -10 +KPX aacute gbreve -10 +KPX aacute gcommaaccent -10 +KPX abreve g -10 +KPX abreve gbreve -10 +KPX abreve gcommaaccent -10 +KPX acircumflex g -10 +KPX acircumflex gbreve -10 +KPX acircumflex gcommaaccent -10 +KPX adieresis g -10 +KPX adieresis gbreve -10 +KPX adieresis gcommaaccent -10 +KPX agrave g -10 +KPX agrave gbreve -10 +KPX agrave gcommaaccent -10 +KPX amacron g -10 +KPX amacron gbreve -10 +KPX amacron gcommaaccent -10 +KPX aogonek g -10 +KPX aogonek gbreve -10 +KPX aogonek gcommaaccent -10 +KPX aring g -10 +KPX aring gbreve -10 +KPX aring gcommaaccent -10 +KPX atilde g -10 +KPX atilde gbreve -10 +KPX atilde gcommaaccent -10 +KPX b period -40 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX c h -15 +KPX c k -20 +KPX c kcommaaccent -20 +KPX cacute h -15 +KPX cacute k -20 +KPX cacute kcommaaccent -20 +KPX ccaron h -15 +KPX ccaron k -20 +KPX ccaron kcommaaccent -20 +KPX ccedilla h -15 +KPX ccedilla k -20 +KPX ccedilla kcommaaccent -20 +KPX comma quotedblright -140 +KPX comma quoteright -140 +KPX e comma -10 +KPX e g -40 +KPX e gbreve -40 +KPX e gcommaaccent -40 +KPX e period -15 +KPX e v -15 +KPX e w -15 +KPX e x -20 +KPX e y -30 +KPX e yacute -30 +KPX e ydieresis -30 +KPX eacute comma -10 +KPX eacute g -40 +KPX eacute gbreve -40 +KPX eacute gcommaaccent -40 +KPX eacute period -15 +KPX eacute v -15 +KPX eacute w -15 +KPX eacute x -20 +KPX eacute y -30 +KPX eacute yacute -30 +KPX eacute ydieresis -30 +KPX ecaron comma -10 +KPX ecaron g -40 +KPX ecaron gbreve -40 +KPX ecaron gcommaaccent -40 +KPX ecaron period -15 +KPX ecaron v -15 +KPX ecaron w -15 +KPX ecaron x -20 +KPX ecaron y -30 +KPX ecaron yacute -30 +KPX ecaron ydieresis -30 +KPX ecircumflex comma -10 +KPX ecircumflex g -40 +KPX ecircumflex gbreve -40 +KPX ecircumflex gcommaaccent -40 +KPX ecircumflex period -15 +KPX ecircumflex v -15 +KPX ecircumflex w -15 +KPX ecircumflex x -20 +KPX ecircumflex y -30 +KPX ecircumflex yacute -30 +KPX ecircumflex ydieresis -30 +KPX edieresis comma -10 +KPX edieresis g -40 +KPX edieresis gbreve -40 +KPX edieresis gcommaaccent -40 +KPX edieresis period -15 +KPX edieresis v -15 +KPX edieresis w -15 +KPX edieresis x -20 +KPX edieresis y -30 +KPX edieresis yacute -30 +KPX edieresis ydieresis -30 +KPX edotaccent comma -10 +KPX edotaccent g -40 +KPX edotaccent gbreve -40 +KPX edotaccent gcommaaccent -40 +KPX edotaccent period -15 +KPX edotaccent v -15 +KPX edotaccent w -15 +KPX edotaccent x -20 +KPX edotaccent y -30 +KPX edotaccent yacute -30 +KPX edotaccent ydieresis -30 +KPX egrave comma -10 +KPX egrave g -40 +KPX egrave gbreve -40 +KPX egrave gcommaaccent -40 +KPX egrave period -15 +KPX egrave v -15 +KPX egrave w -15 +KPX egrave x -20 +KPX egrave y -30 +KPX egrave yacute -30 +KPX egrave ydieresis -30 +KPX emacron comma -10 +KPX emacron g -40 +KPX emacron gbreve -40 +KPX emacron gcommaaccent -40 +KPX emacron period -15 +KPX emacron v -15 +KPX emacron w -15 +KPX emacron x -20 +KPX emacron y -30 +KPX emacron yacute -30 +KPX emacron ydieresis -30 +KPX eogonek comma -10 +KPX eogonek g -40 +KPX eogonek gbreve -40 +KPX eogonek gcommaaccent -40 +KPX eogonek period -15 +KPX eogonek v -15 +KPX eogonek w -15 +KPX eogonek x -20 +KPX eogonek y -30 +KPX eogonek yacute -30 +KPX eogonek ydieresis -30 +KPX f comma -10 +KPX f dotlessi -60 +KPX f f -18 +KPX f i -20 +KPX f iogonek -20 +KPX f period -15 +KPX f quoteright 92 +KPX g comma -10 +KPX g e -10 +KPX g eacute -10 +KPX g ecaron -10 +KPX g ecircumflex -10 +KPX g edieresis -10 +KPX g edotaccent -10 +KPX g egrave -10 +KPX g emacron -10 +KPX g eogonek -10 +KPX g g -10 +KPX g gbreve -10 +KPX g gcommaaccent -10 +KPX g period -15 +KPX gbreve comma -10 +KPX gbreve e -10 +KPX gbreve eacute -10 +KPX gbreve ecaron -10 +KPX gbreve ecircumflex -10 +KPX gbreve edieresis -10 +KPX gbreve edotaccent -10 +KPX gbreve egrave -10 +KPX gbreve emacron -10 +KPX gbreve eogonek -10 +KPX gbreve g -10 +KPX gbreve gbreve -10 +KPX gbreve gcommaaccent -10 +KPX gbreve period -15 +KPX gcommaaccent comma -10 +KPX gcommaaccent e -10 +KPX gcommaaccent eacute -10 +KPX gcommaaccent ecaron -10 +KPX gcommaaccent ecircumflex -10 +KPX gcommaaccent edieresis -10 +KPX gcommaaccent edotaccent -10 +KPX gcommaaccent egrave -10 +KPX gcommaaccent emacron -10 +KPX gcommaaccent eogonek -10 +KPX gcommaaccent g -10 +KPX gcommaaccent gbreve -10 +KPX gcommaaccent gcommaaccent -10 +KPX gcommaaccent period -15 +KPX k e -10 +KPX k eacute -10 +KPX k ecaron -10 +KPX k ecircumflex -10 +KPX k edieresis -10 +KPX k edotaccent -10 +KPX k egrave -10 +KPX k emacron -10 +KPX k eogonek -10 +KPX k o -10 +KPX k oacute -10 +KPX k ocircumflex -10 +KPX k odieresis -10 +KPX k ograve -10 +KPX k ohungarumlaut -10 +KPX k omacron -10 +KPX k oslash -10 +KPX k otilde -10 +KPX k y -10 +KPX k yacute -10 +KPX k ydieresis -10 +KPX kcommaaccent e -10 +KPX kcommaaccent eacute -10 +KPX kcommaaccent ecaron -10 +KPX kcommaaccent ecircumflex -10 +KPX kcommaaccent edieresis -10 +KPX kcommaaccent edotaccent -10 +KPX kcommaaccent egrave -10 +KPX kcommaaccent emacron -10 +KPX kcommaaccent eogonek -10 +KPX kcommaaccent o -10 +KPX kcommaaccent oacute -10 +KPX kcommaaccent ocircumflex -10 +KPX kcommaaccent odieresis -10 +KPX kcommaaccent ograve -10 +KPX kcommaaccent ohungarumlaut -10 +KPX kcommaaccent omacron -10 +KPX kcommaaccent oslash -10 +KPX kcommaaccent otilde -10 +KPX kcommaaccent y -10 +KPX kcommaaccent yacute -10 +KPX kcommaaccent ydieresis -10 +KPX n v -40 +KPX nacute v -40 +KPX ncaron v -40 +KPX ncommaaccent v -40 +KPX ntilde v -40 +KPX o g -10 +KPX o gbreve -10 +KPX o gcommaaccent -10 +KPX o v -10 +KPX oacute g -10 +KPX oacute gbreve -10 +KPX oacute gcommaaccent -10 +KPX oacute v -10 +KPX ocircumflex g -10 +KPX ocircumflex gbreve -10 +KPX ocircumflex gcommaaccent -10 +KPX ocircumflex v -10 +KPX odieresis g -10 +KPX odieresis gbreve -10 +KPX odieresis gcommaaccent -10 +KPX odieresis v -10 +KPX ograve g -10 +KPX ograve gbreve -10 +KPX ograve gcommaaccent -10 +KPX ograve v -10 +KPX ohungarumlaut g -10 +KPX ohungarumlaut gbreve -10 +KPX ohungarumlaut gcommaaccent -10 +KPX ohungarumlaut v -10 +KPX omacron g -10 +KPX omacron gbreve -10 +KPX omacron gcommaaccent -10 +KPX omacron v -10 +KPX oslash g -10 +KPX oslash gbreve -10 +KPX oslash gcommaaccent -10 +KPX oslash v -10 +KPX otilde g -10 +KPX otilde gbreve -10 +KPX otilde gcommaaccent -10 +KPX otilde v -10 +KPX period quotedblright -140 +KPX period quoteright -140 +KPX quoteleft quoteleft -111 +KPX quoteright d -25 +KPX quoteright dcroat -25 +KPX quoteright quoteright -111 +KPX quoteright r -25 +KPX quoteright racute -25 +KPX quoteright rcaron -25 +KPX quoteright rcommaaccent -25 +KPX quoteright s -40 +KPX quoteright sacute -40 +KPX quoteright scaron -40 +KPX quoteright scedilla -40 +KPX quoteright scommaaccent -40 +KPX quoteright space -111 +KPX quoteright t -30 +KPX quoteright tcommaaccent -30 +KPX quoteright v -10 +KPX r a -15 +KPX r aacute -15 +KPX r abreve -15 +KPX r acircumflex -15 +KPX r adieresis -15 +KPX r agrave -15 +KPX r amacron -15 +KPX r aogonek -15 +KPX r aring -15 +KPX r atilde -15 +KPX r c -37 +KPX r cacute -37 +KPX r ccaron -37 +KPX r ccedilla -37 +KPX r comma -111 +KPX r d -37 +KPX r dcroat -37 +KPX r e -37 +KPX r eacute -37 +KPX r ecaron -37 +KPX r ecircumflex -37 +KPX r edieresis -37 +KPX r edotaccent -37 +KPX r egrave -37 +KPX r emacron -37 +KPX r eogonek -37 +KPX r g -37 +KPX r gbreve -37 +KPX r gcommaaccent -37 +KPX r hyphen -20 +KPX r o -45 +KPX r oacute -45 +KPX r ocircumflex -45 +KPX r odieresis -45 +KPX r ograve -45 +KPX r ohungarumlaut -45 +KPX r omacron -45 +KPX r oslash -45 +KPX r otilde -45 +KPX r period -111 +KPX r q -37 +KPX r s -10 +KPX r sacute -10 +KPX r scaron -10 +KPX r scedilla -10 +KPX r scommaaccent -10 +KPX racute a -15 +KPX racute aacute -15 +KPX racute abreve -15 +KPX racute acircumflex -15 +KPX racute adieresis -15 +KPX racute agrave -15 +KPX racute amacron -15 +KPX racute aogonek -15 +KPX racute aring -15 +KPX racute atilde -15 +KPX racute c -37 +KPX racute cacute -37 +KPX racute ccaron -37 +KPX racute ccedilla -37 +KPX racute comma -111 +KPX racute d -37 +KPX racute dcroat -37 +KPX racute e -37 +KPX racute eacute -37 +KPX racute ecaron -37 +KPX racute ecircumflex -37 +KPX racute edieresis -37 +KPX racute edotaccent -37 +KPX racute egrave -37 +KPX racute emacron -37 +KPX racute eogonek -37 +KPX racute g -37 +KPX racute gbreve -37 +KPX racute gcommaaccent -37 +KPX racute hyphen -20 +KPX racute o -45 +KPX racute oacute -45 +KPX racute ocircumflex -45 +KPX racute odieresis -45 +KPX racute ograve -45 +KPX racute ohungarumlaut -45 +KPX racute omacron -45 +KPX racute oslash -45 +KPX racute otilde -45 +KPX racute period -111 +KPX racute q -37 +KPX racute s -10 +KPX racute sacute -10 +KPX racute scaron -10 +KPX racute scedilla -10 +KPX racute scommaaccent -10 +KPX rcaron a -15 +KPX rcaron aacute -15 +KPX rcaron abreve -15 +KPX rcaron acircumflex -15 +KPX rcaron adieresis -15 +KPX rcaron agrave -15 +KPX rcaron amacron -15 +KPX rcaron aogonek -15 +KPX rcaron aring -15 +KPX rcaron atilde -15 +KPX rcaron c -37 +KPX rcaron cacute -37 +KPX rcaron ccaron -37 +KPX rcaron ccedilla -37 +KPX rcaron comma -111 +KPX rcaron d -37 +KPX rcaron dcroat -37 +KPX rcaron e -37 +KPX rcaron eacute -37 +KPX rcaron ecaron -37 +KPX rcaron ecircumflex -37 +KPX rcaron edieresis -37 +KPX rcaron edotaccent -37 +KPX rcaron egrave -37 +KPX rcaron emacron -37 +KPX rcaron eogonek -37 +KPX rcaron g -37 +KPX rcaron gbreve -37 +KPX rcaron gcommaaccent -37 +KPX rcaron hyphen -20 +KPX rcaron o -45 +KPX rcaron oacute -45 +KPX rcaron ocircumflex -45 +KPX rcaron odieresis -45 +KPX rcaron ograve -45 +KPX rcaron ohungarumlaut -45 +KPX rcaron omacron -45 +KPX rcaron oslash -45 +KPX rcaron otilde -45 +KPX rcaron period -111 +KPX rcaron q -37 +KPX rcaron s -10 +KPX rcaron sacute -10 +KPX rcaron scaron -10 +KPX rcaron scedilla -10 +KPX rcaron scommaaccent -10 +KPX rcommaaccent a -15 +KPX rcommaaccent aacute -15 +KPX rcommaaccent abreve -15 +KPX rcommaaccent acircumflex -15 +KPX rcommaaccent adieresis -15 +KPX rcommaaccent agrave -15 +KPX rcommaaccent amacron -15 +KPX rcommaaccent aogonek -15 +KPX rcommaaccent aring -15 +KPX rcommaaccent atilde -15 +KPX rcommaaccent c -37 +KPX rcommaaccent cacute -37 +KPX rcommaaccent ccaron -37 +KPX rcommaaccent ccedilla -37 +KPX rcommaaccent comma -111 +KPX rcommaaccent d -37 +KPX rcommaaccent dcroat -37 +KPX rcommaaccent e -37 +KPX rcommaaccent eacute -37 +KPX rcommaaccent ecaron -37 +KPX rcommaaccent ecircumflex -37 +KPX rcommaaccent edieresis -37 +KPX rcommaaccent edotaccent -37 +KPX rcommaaccent egrave -37 +KPX rcommaaccent emacron -37 +KPX rcommaaccent eogonek -37 +KPX rcommaaccent g -37 +KPX rcommaaccent gbreve -37 +KPX rcommaaccent gcommaaccent -37 +KPX rcommaaccent hyphen -20 +KPX rcommaaccent o -45 +KPX rcommaaccent oacute -45 +KPX rcommaaccent ocircumflex -45 +KPX rcommaaccent odieresis -45 +KPX rcommaaccent ograve -45 +KPX rcommaaccent ohungarumlaut -45 +KPX rcommaaccent omacron -45 +KPX rcommaaccent oslash -45 +KPX rcommaaccent otilde -45 +KPX rcommaaccent period -111 +KPX rcommaaccent q -37 +KPX rcommaaccent s -10 +KPX rcommaaccent sacute -10 +KPX rcommaaccent scaron -10 +KPX rcommaaccent scedilla -10 +KPX rcommaaccent scommaaccent -10 +KPX space A -18 +KPX space Aacute -18 +KPX space Abreve -18 +KPX space Acircumflex -18 +KPX space Adieresis -18 +KPX space Agrave -18 +KPX space Amacron -18 +KPX space Aogonek -18 +KPX space Aring -18 +KPX space Atilde -18 +KPX space T -18 +KPX space Tcaron -18 +KPX space Tcommaaccent -18 +KPX space V -35 +KPX space W -40 +KPX space Y -75 +KPX space Yacute -75 +KPX space Ydieresis -75 +KPX v comma -74 +KPX v period -74 +KPX w comma -74 +KPX w period -74 +KPX y comma -55 +KPX y period -55 +KPX yacute comma -55 +KPX yacute period -55 +KPX ydieresis comma -55 +KPX ydieresis period -55 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/Times-Roman.afm b/pyx/data/afm/Times-Roman.afm new file mode 100644 index 00000000..26806693 --- /dev/null +++ b/pyx/data/afm/Times-Roman.afm @@ -0,0 +1,2419 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 12:49:17 1997 +Comment UniqueID 43068 +Comment VMusage 43909 54934 +FontName Times-Roman +FullName Times Roman +FamilyName Times +Weight Roman +ItalicAngle 0 +IsFixedPitch false +CharacterSet ExtendedRoman +FontBBox -168 -218 1000 898 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. +EncodingScheme AdobeStandardEncoding +CapHeight 662 +XHeight 450 +Ascender 683 +Descender -217 +StdHW 28 +StdVW 84 +StartCharMetrics 315 +C 32 ; WX 250 ; N space ; B 0 0 0 0 ; +C 33 ; WX 333 ; N exclam ; B 130 -9 238 676 ; +C 34 ; WX 408 ; N quotedbl ; B 77 431 331 676 ; +C 35 ; WX 500 ; N numbersign ; B 5 0 496 662 ; +C 36 ; WX 500 ; N dollar ; B 44 -87 457 727 ; +C 37 ; WX 833 ; N percent ; B 61 -13 772 676 ; +C 38 ; WX 778 ; N ampersand ; B 42 -13 750 676 ; +C 39 ; WX 333 ; N quoteright ; B 79 433 218 676 ; +C 40 ; WX 333 ; N parenleft ; B 48 -177 304 676 ; +C 41 ; WX 333 ; N parenright ; B 29 -177 285 676 ; +C 42 ; WX 500 ; N asterisk ; B 69 265 432 676 ; +C 43 ; WX 564 ; N plus ; B 30 0 534 506 ; +C 44 ; WX 250 ; N comma ; B 56 -141 195 102 ; +C 45 ; WX 333 ; N hyphen ; B 39 194 285 257 ; +C 46 ; WX 250 ; N period ; B 70 -11 181 100 ; +C 47 ; WX 278 ; N slash ; B -9 -14 287 676 ; +C 48 ; WX 500 ; N zero ; B 24 -14 476 676 ; +C 49 ; WX 500 ; N one ; B 111 0 394 676 ; +C 50 ; WX 500 ; N two ; B 30 0 475 676 ; +C 51 ; WX 500 ; N three ; B 43 -14 431 676 ; +C 52 ; WX 500 ; N four ; B 12 0 472 676 ; +C 53 ; WX 500 ; N five ; B 32 -14 438 688 ; +C 54 ; WX 500 ; N six ; B 34 -14 468 684 ; +C 55 ; WX 500 ; N seven ; B 20 -8 449 662 ; +C 56 ; WX 500 ; N eight ; B 56 -14 445 676 ; +C 57 ; WX 500 ; N nine ; B 30 -22 459 676 ; +C 58 ; WX 278 ; N colon ; B 81 -11 192 459 ; +C 59 ; WX 278 ; N semicolon ; B 80 -141 219 459 ; +C 60 ; WX 564 ; N less ; B 28 -8 536 514 ; +C 61 ; WX 564 ; N equal ; B 30 120 534 386 ; +C 62 ; WX 564 ; N greater ; B 28 -8 536 514 ; +C 63 ; WX 444 ; N question ; B 68 -8 414 676 ; +C 64 ; WX 921 ; N at ; B 116 -14 809 676 ; +C 65 ; WX 722 ; N A ; B 15 0 706 674 ; +C 66 ; WX 667 ; N B ; B 17 0 593 662 ; +C 67 ; WX 667 ; N C ; B 28 -14 633 676 ; +C 68 ; WX 722 ; N D ; B 16 0 685 662 ; +C 69 ; WX 611 ; N E ; B 12 0 597 662 ; +C 70 ; WX 556 ; N F ; B 12 0 546 662 ; +C 71 ; WX 722 ; N G ; B 32 -14 709 676 ; +C 72 ; WX 722 ; N H ; B 19 0 702 662 ; +C 73 ; WX 333 ; N I ; B 18 0 315 662 ; +C 74 ; WX 389 ; N J ; B 10 -14 370 662 ; +C 75 ; WX 722 ; N K ; B 34 0 723 662 ; +C 76 ; WX 611 ; N L ; B 12 0 598 662 ; +C 77 ; WX 889 ; N M ; B 12 0 863 662 ; +C 78 ; WX 722 ; N N ; B 12 -11 707 662 ; +C 79 ; WX 722 ; N O ; B 34 -14 688 676 ; +C 80 ; WX 556 ; N P ; B 16 0 542 662 ; +C 81 ; WX 722 ; N Q ; B 34 -178 701 676 ; +C 82 ; WX 667 ; N R ; B 17 0 659 662 ; +C 83 ; WX 556 ; N S ; B 42 -14 491 676 ; +C 84 ; WX 611 ; N T ; B 17 0 593 662 ; +C 85 ; WX 722 ; N U ; B 14 -14 705 662 ; +C 86 ; WX 722 ; N V ; B 16 -11 697 662 ; +C 87 ; WX 944 ; N W ; B 5 -11 932 662 ; +C 88 ; WX 722 ; N X ; B 10 0 704 662 ; +C 89 ; WX 722 ; N Y ; B 22 0 703 662 ; +C 90 ; WX 611 ; N Z ; B 9 0 597 662 ; +C 91 ; WX 333 ; N bracketleft ; B 88 -156 299 662 ; +C 92 ; WX 278 ; N backslash ; B -9 -14 287 676 ; +C 93 ; WX 333 ; N bracketright ; B 34 -156 245 662 ; +C 94 ; WX 469 ; N asciicircum ; B 24 297 446 662 ; +C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; +C 96 ; WX 333 ; N quoteleft ; B 115 433 254 676 ; +C 97 ; WX 444 ; N a ; B 37 -10 442 460 ; +C 98 ; WX 500 ; N b ; B 3 -10 468 683 ; +C 99 ; WX 444 ; N c ; B 25 -10 412 460 ; +C 100 ; WX 500 ; N d ; B 27 -10 491 683 ; +C 101 ; WX 444 ; N e ; B 25 -10 424 460 ; +C 102 ; WX 333 ; N f ; B 20 0 383 683 ; L i fi ; L l fl ; +C 103 ; WX 500 ; N g ; B 28 -218 470 460 ; +C 104 ; WX 500 ; N h ; B 9 0 487 683 ; +C 105 ; WX 278 ; N i ; B 16 0 253 683 ; +C 106 ; WX 278 ; N j ; B -70 -218 194 683 ; +C 107 ; WX 500 ; N k ; B 7 0 505 683 ; +C 108 ; WX 278 ; N l ; B 19 0 257 683 ; +C 109 ; WX 778 ; N m ; B 16 0 775 460 ; +C 110 ; WX 500 ; N n ; B 16 0 485 460 ; +C 111 ; WX 500 ; N o ; B 29 -10 470 460 ; +C 112 ; WX 500 ; N p ; B 5 -217 470 460 ; +C 113 ; WX 500 ; N q ; B 24 -217 488 460 ; +C 114 ; WX 333 ; N r ; B 5 0 335 460 ; +C 115 ; WX 389 ; N s ; B 51 -10 348 460 ; +C 116 ; WX 278 ; N t ; B 13 -10 279 579 ; +C 117 ; WX 500 ; N u ; B 9 -10 479 450 ; +C 118 ; WX 500 ; N v ; B 19 -14 477 450 ; +C 119 ; WX 722 ; N w ; B 21 -14 694 450 ; +C 120 ; WX 500 ; N x ; B 17 0 479 450 ; +C 121 ; WX 500 ; N y ; B 14 -218 475 450 ; +C 122 ; WX 444 ; N z ; B 27 0 418 450 ; +C 123 ; WX 480 ; N braceleft ; B 100 -181 350 680 ; +C 124 ; WX 200 ; N bar ; B 67 -218 133 782 ; +C 125 ; WX 480 ; N braceright ; B 130 -181 380 680 ; +C 126 ; WX 541 ; N asciitilde ; B 40 183 502 323 ; +C 161 ; WX 333 ; N exclamdown ; B 97 -218 205 467 ; +C 162 ; WX 500 ; N cent ; B 53 -138 448 579 ; +C 163 ; WX 500 ; N sterling ; B 12 -8 490 676 ; +C 164 ; WX 167 ; N fraction ; B -168 -14 331 676 ; +C 165 ; WX 500 ; N yen ; B -53 0 512 662 ; +C 166 ; WX 500 ; N florin ; B 7 -189 490 676 ; +C 167 ; WX 500 ; N section ; B 70 -148 426 676 ; +C 168 ; WX 500 ; N currency ; B -22 58 522 602 ; +C 169 ; WX 180 ; N quotesingle ; B 48 431 133 676 ; +C 170 ; WX 444 ; N quotedblleft ; B 43 433 414 676 ; +C 171 ; WX 500 ; N guillemotleft ; B 42 33 456 416 ; +C 172 ; WX 333 ; N guilsinglleft ; B 63 33 285 416 ; +C 173 ; WX 333 ; N guilsinglright ; B 48 33 270 416 ; +C 174 ; WX 556 ; N fi ; B 31 0 521 683 ; +C 175 ; WX 556 ; N fl ; B 32 0 521 683 ; +C 177 ; WX 500 ; N endash ; B 0 201 500 250 ; +C 178 ; WX 500 ; N dagger ; B 59 -149 442 676 ; +C 179 ; WX 500 ; N daggerdbl ; B 58 -153 442 676 ; +C 180 ; WX 250 ; N periodcentered ; B 70 199 181 310 ; +C 182 ; WX 453 ; N paragraph ; B -22 -154 450 662 ; +C 183 ; WX 350 ; N bullet ; B 40 196 310 466 ; +C 184 ; WX 333 ; N quotesinglbase ; B 79 -141 218 102 ; +C 185 ; WX 444 ; N quotedblbase ; B 45 -141 416 102 ; +C 186 ; WX 444 ; N quotedblright ; B 30 433 401 676 ; +C 187 ; WX 500 ; N guillemotright ; B 44 33 458 416 ; +C 188 ; WX 1000 ; N ellipsis ; B 111 -11 888 100 ; +C 189 ; WX 1000 ; N perthousand ; B 7 -19 994 706 ; +C 191 ; WX 444 ; N questiondown ; B 30 -218 376 466 ; +C 193 ; WX 333 ; N grave ; B 19 507 242 678 ; +C 194 ; WX 333 ; N acute ; B 93 507 317 678 ; +C 195 ; WX 333 ; N circumflex ; B 11 507 322 674 ; +C 196 ; WX 333 ; N tilde ; B 1 532 331 638 ; +C 197 ; WX 333 ; N macron ; B 11 547 322 601 ; +C 198 ; WX 333 ; N breve ; B 26 507 307 664 ; +C 199 ; WX 333 ; N dotaccent ; B 118 581 216 681 ; +C 200 ; WX 333 ; N dieresis ; B 18 581 315 681 ; +C 202 ; WX 333 ; N ring ; B 67 512 266 711 ; +C 203 ; WX 333 ; N cedilla ; B 52 -215 261 0 ; +C 205 ; WX 333 ; N hungarumlaut ; B -3 507 377 678 ; +C 206 ; WX 333 ; N ogonek ; B 62 -165 243 0 ; +C 207 ; WX 333 ; N caron ; B 11 507 322 674 ; +C 208 ; WX 1000 ; N emdash ; B 0 201 1000 250 ; +C 225 ; WX 889 ; N AE ; B 0 0 863 662 ; +C 227 ; WX 276 ; N ordfeminine ; B 4 394 270 676 ; +C 232 ; WX 611 ; N Lslash ; B 12 0 598 662 ; +C 233 ; WX 722 ; N Oslash ; B 34 -80 688 734 ; +C 234 ; WX 889 ; N OE ; B 30 -6 885 668 ; +C 235 ; WX 310 ; N ordmasculine ; B 6 394 304 676 ; +C 241 ; WX 667 ; N ae ; B 38 -10 632 460 ; +C 245 ; WX 278 ; N dotlessi ; B 16 0 253 460 ; +C 248 ; WX 278 ; N lslash ; B 19 0 259 683 ; +C 249 ; WX 500 ; N oslash ; B 29 -112 470 551 ; +C 250 ; WX 722 ; N oe ; B 30 -10 690 460 ; +C 251 ; WX 500 ; N germandbls ; B 12 -9 468 683 ; +C -1 ; WX 333 ; N Idieresis ; B 18 0 315 835 ; +C -1 ; WX 444 ; N eacute ; B 25 -10 424 678 ; +C -1 ; WX 444 ; N abreve ; B 37 -10 442 664 ; +C -1 ; WX 500 ; N uhungarumlaut ; B 9 -10 501 678 ; +C -1 ; WX 444 ; N ecaron ; B 25 -10 424 674 ; +C -1 ; WX 722 ; N Ydieresis ; B 22 0 703 835 ; +C -1 ; WX 564 ; N divide ; B 30 -10 534 516 ; +C -1 ; WX 722 ; N Yacute ; B 22 0 703 890 ; +C -1 ; WX 722 ; N Acircumflex ; B 15 0 706 886 ; +C -1 ; WX 444 ; N aacute ; B 37 -10 442 678 ; +C -1 ; WX 722 ; N Ucircumflex ; B 14 -14 705 886 ; +C -1 ; WX 500 ; N yacute ; B 14 -218 475 678 ; +C -1 ; WX 389 ; N scommaaccent ; B 51 -218 348 460 ; +C -1 ; WX 444 ; N ecircumflex ; B 25 -10 424 674 ; +C -1 ; WX 722 ; N Uring ; B 14 -14 705 898 ; +C -1 ; WX 722 ; N Udieresis ; B 14 -14 705 835 ; +C -1 ; WX 444 ; N aogonek ; B 37 -165 469 460 ; +C -1 ; WX 722 ; N Uacute ; B 14 -14 705 890 ; +C -1 ; WX 500 ; N uogonek ; B 9 -155 487 450 ; +C -1 ; WX 611 ; N Edieresis ; B 12 0 597 835 ; +C -1 ; WX 722 ; N Dcroat ; B 16 0 685 662 ; +C -1 ; WX 250 ; N commaaccent ; B 59 -218 184 -50 ; +C -1 ; WX 760 ; N copyright ; B 38 -14 722 676 ; +C -1 ; WX 611 ; N Emacron ; B 12 0 597 813 ; +C -1 ; WX 444 ; N ccaron ; B 25 -10 412 674 ; +C -1 ; WX 444 ; N aring ; B 37 -10 442 711 ; +C -1 ; WX 722 ; N Ncommaaccent ; B 12 -198 707 662 ; +C -1 ; WX 278 ; N lacute ; B 19 0 290 890 ; +C -1 ; WX 444 ; N agrave ; B 37 -10 442 678 ; +C -1 ; WX 611 ; N Tcommaaccent ; B 17 -218 593 662 ; +C -1 ; WX 667 ; N Cacute ; B 28 -14 633 890 ; +C -1 ; WX 444 ; N atilde ; B 37 -10 442 638 ; +C -1 ; WX 611 ; N Edotaccent ; B 12 0 597 835 ; +C -1 ; WX 389 ; N scaron ; B 39 -10 350 674 ; +C -1 ; WX 389 ; N scedilla ; B 51 -215 348 460 ; +C -1 ; WX 278 ; N iacute ; B 16 0 290 678 ; +C -1 ; WX 471 ; N lozenge ; B 13 0 459 724 ; +C -1 ; WX 667 ; N Rcaron ; B 17 0 659 886 ; +C -1 ; WX 722 ; N Gcommaaccent ; B 32 -218 709 676 ; +C -1 ; WX 500 ; N ucircumflex ; B 9 -10 479 674 ; +C -1 ; WX 444 ; N acircumflex ; B 37 -10 442 674 ; +C -1 ; WX 722 ; N Amacron ; B 15 0 706 813 ; +C -1 ; WX 333 ; N rcaron ; B 5 0 335 674 ; +C -1 ; WX 444 ; N ccedilla ; B 25 -215 412 460 ; +C -1 ; WX 611 ; N Zdotaccent ; B 9 0 597 835 ; +C -1 ; WX 556 ; N Thorn ; B 16 0 542 662 ; +C -1 ; WX 722 ; N Omacron ; B 34 -14 688 813 ; +C -1 ; WX 667 ; N Racute ; B 17 0 659 890 ; +C -1 ; WX 556 ; N Sacute ; B 42 -14 491 890 ; +C -1 ; WX 588 ; N dcaron ; B 27 -10 589 695 ; +C -1 ; WX 722 ; N Umacron ; B 14 -14 705 813 ; +C -1 ; WX 500 ; N uring ; B 9 -10 479 711 ; +C -1 ; WX 300 ; N threesuperior ; B 15 262 291 676 ; +C -1 ; WX 722 ; N Ograve ; B 34 -14 688 890 ; +C -1 ; WX 722 ; N Agrave ; B 15 0 706 890 ; +C -1 ; WX 722 ; N Abreve ; B 15 0 706 876 ; +C -1 ; WX 564 ; N multiply ; B 38 8 527 497 ; +C -1 ; WX 500 ; N uacute ; B 9 -10 479 678 ; +C -1 ; WX 611 ; N Tcaron ; B 17 0 593 886 ; +C -1 ; WX 476 ; N partialdiff ; B 17 -38 459 710 ; +C -1 ; WX 500 ; N ydieresis ; B 14 -218 475 623 ; +C -1 ; WX 722 ; N Nacute ; B 12 -11 707 890 ; +C -1 ; WX 278 ; N icircumflex ; B -16 0 295 674 ; +C -1 ; WX 611 ; N Ecircumflex ; B 12 0 597 886 ; +C -1 ; WX 444 ; N adieresis ; B 37 -10 442 623 ; +C -1 ; WX 444 ; N edieresis ; B 25 -10 424 623 ; +C -1 ; WX 444 ; N cacute ; B 25 -10 413 678 ; +C -1 ; WX 500 ; N nacute ; B 16 0 485 678 ; +C -1 ; WX 500 ; N umacron ; B 9 -10 479 601 ; +C -1 ; WX 722 ; N Ncaron ; B 12 -11 707 886 ; +C -1 ; WX 333 ; N Iacute ; B 18 0 317 890 ; +C -1 ; WX 564 ; N plusminus ; B 30 0 534 506 ; +C -1 ; WX 200 ; N brokenbar ; B 67 -143 133 707 ; +C -1 ; WX 760 ; N registered ; B 38 -14 722 676 ; +C -1 ; WX 722 ; N Gbreve ; B 32 -14 709 876 ; +C -1 ; WX 333 ; N Idotaccent ; B 18 0 315 835 ; +C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ; +C -1 ; WX 611 ; N Egrave ; B 12 0 597 890 ; +C -1 ; WX 333 ; N racute ; B 5 0 335 678 ; +C -1 ; WX 500 ; N omacron ; B 29 -10 470 601 ; +C -1 ; WX 611 ; N Zacute ; B 9 0 597 890 ; +C -1 ; WX 611 ; N Zcaron ; B 9 0 597 886 ; +C -1 ; WX 549 ; N greaterequal ; B 26 0 523 666 ; +C -1 ; WX 722 ; N Eth ; B 16 0 685 662 ; +C -1 ; WX 667 ; N Ccedilla ; B 28 -215 633 676 ; +C -1 ; WX 278 ; N lcommaaccent ; B 19 -218 257 683 ; +C -1 ; WX 326 ; N tcaron ; B 13 -10 318 722 ; +C -1 ; WX 444 ; N eogonek ; B 25 -165 424 460 ; +C -1 ; WX 722 ; N Uogonek ; B 14 -165 705 662 ; +C -1 ; WX 722 ; N Aacute ; B 15 0 706 890 ; +C -1 ; WX 722 ; N Adieresis ; B 15 0 706 835 ; +C -1 ; WX 444 ; N egrave ; B 25 -10 424 678 ; +C -1 ; WX 444 ; N zacute ; B 27 0 418 678 ; +C -1 ; WX 278 ; N iogonek ; B 16 -165 265 683 ; +C -1 ; WX 722 ; N Oacute ; B 34 -14 688 890 ; +C -1 ; WX 500 ; N oacute ; B 29 -10 470 678 ; +C -1 ; WX 444 ; N amacron ; B 37 -10 442 601 ; +C -1 ; WX 389 ; N sacute ; B 51 -10 348 678 ; +C -1 ; WX 278 ; N idieresis ; B -9 0 288 623 ; +C -1 ; WX 722 ; N Ocircumflex ; B 34 -14 688 886 ; +C -1 ; WX 722 ; N Ugrave ; B 14 -14 705 890 ; +C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; +C -1 ; WX 500 ; N thorn ; B 5 -217 470 683 ; +C -1 ; WX 300 ; N twosuperior ; B 1 270 296 676 ; +C -1 ; WX 722 ; N Odieresis ; B 34 -14 688 835 ; +C -1 ; WX 500 ; N mu ; B 36 -218 512 450 ; +C -1 ; WX 278 ; N igrave ; B -8 0 253 678 ; +C -1 ; WX 500 ; N ohungarumlaut ; B 29 -10 491 678 ; +C -1 ; WX 611 ; N Eogonek ; B 12 -165 597 662 ; +C -1 ; WX 500 ; N dcroat ; B 27 -10 500 683 ; +C -1 ; WX 750 ; N threequarters ; B 15 -14 718 676 ; +C -1 ; WX 556 ; N Scedilla ; B 42 -215 491 676 ; +C -1 ; WX 344 ; N lcaron ; B 19 0 347 695 ; +C -1 ; WX 722 ; N Kcommaaccent ; B 34 -198 723 662 ; +C -1 ; WX 611 ; N Lacute ; B 12 0 598 890 ; +C -1 ; WX 980 ; N trademark ; B 30 256 957 662 ; +C -1 ; WX 444 ; N edotaccent ; B 25 -10 424 623 ; +C -1 ; WX 333 ; N Igrave ; B 18 0 315 890 ; +C -1 ; WX 333 ; N Imacron ; B 11 0 322 813 ; +C -1 ; WX 611 ; N Lcaron ; B 12 0 598 676 ; +C -1 ; WX 750 ; N onehalf ; B 31 -14 746 676 ; +C -1 ; WX 549 ; N lessequal ; B 26 0 523 666 ; +C -1 ; WX 500 ; N ocircumflex ; B 29 -10 470 674 ; +C -1 ; WX 500 ; N ntilde ; B 16 0 485 638 ; +C -1 ; WX 722 ; N Uhungarumlaut ; B 14 -14 705 890 ; +C -1 ; WX 611 ; N Eacute ; B 12 0 597 890 ; +C -1 ; WX 444 ; N emacron ; B 25 -10 424 601 ; +C -1 ; WX 500 ; N gbreve ; B 28 -218 470 664 ; +C -1 ; WX 750 ; N onequarter ; B 37 -14 718 676 ; +C -1 ; WX 556 ; N Scaron ; B 42 -14 491 886 ; +C -1 ; WX 556 ; N Scommaaccent ; B 42 -218 491 676 ; +C -1 ; WX 722 ; N Ohungarumlaut ; B 34 -14 688 890 ; +C -1 ; WX 400 ; N degree ; B 57 390 343 676 ; +C -1 ; WX 500 ; N ograve ; B 29 -10 470 678 ; +C -1 ; WX 667 ; N Ccaron ; B 28 -14 633 886 ; +C -1 ; WX 500 ; N ugrave ; B 9 -10 479 678 ; +C -1 ; WX 453 ; N radical ; B 2 -60 452 768 ; +C -1 ; WX 722 ; N Dcaron ; B 16 0 685 886 ; +C -1 ; WX 333 ; N rcommaaccent ; B 5 -218 335 460 ; +C -1 ; WX 722 ; N Ntilde ; B 12 -11 707 850 ; +C -1 ; WX 500 ; N otilde ; B 29 -10 470 638 ; +C -1 ; WX 667 ; N Rcommaaccent ; B 17 -198 659 662 ; +C -1 ; WX 611 ; N Lcommaaccent ; B 12 -218 598 662 ; +C -1 ; WX 722 ; N Atilde ; B 15 0 706 850 ; +C -1 ; WX 722 ; N Aogonek ; B 15 -165 738 674 ; +C -1 ; WX 722 ; N Aring ; B 15 0 706 898 ; +C -1 ; WX 722 ; N Otilde ; B 34 -14 688 850 ; +C -1 ; WX 444 ; N zdotaccent ; B 27 0 418 623 ; +C -1 ; WX 611 ; N Ecaron ; B 12 0 597 886 ; +C -1 ; WX 333 ; N Iogonek ; B 18 -165 315 662 ; +C -1 ; WX 500 ; N kcommaaccent ; B 7 -218 505 683 ; +C -1 ; WX 564 ; N minus ; B 30 220 534 286 ; +C -1 ; WX 333 ; N Icircumflex ; B 11 0 322 886 ; +C -1 ; WX 500 ; N ncaron ; B 16 0 485 674 ; +C -1 ; WX 278 ; N tcommaaccent ; B 13 -218 279 579 ; +C -1 ; WX 564 ; N logicalnot ; B 30 108 534 386 ; +C -1 ; WX 500 ; N odieresis ; B 29 -10 470 623 ; +C -1 ; WX 500 ; N udieresis ; B 9 -10 479 623 ; +C -1 ; WX 549 ; N notequal ; B 12 -31 537 547 ; +C -1 ; WX 500 ; N gcommaaccent ; B 28 -218 470 749 ; +C -1 ; WX 500 ; N eth ; B 29 -10 471 686 ; +C -1 ; WX 444 ; N zcaron ; B 27 0 418 674 ; +C -1 ; WX 500 ; N ncommaaccent ; B 16 -218 485 460 ; +C -1 ; WX 300 ; N onesuperior ; B 57 270 248 676 ; +C -1 ; WX 278 ; N imacron ; B 6 0 271 601 ; +C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; +EndCharMetrics +StartKernData +StartKernPairs 2073 +KPX A C -40 +KPX A Cacute -40 +KPX A Ccaron -40 +KPX A Ccedilla -40 +KPX A G -40 +KPX A Gbreve -40 +KPX A Gcommaaccent -40 +KPX A O -55 +KPX A Oacute -55 +KPX A Ocircumflex -55 +KPX A Odieresis -55 +KPX A Ograve -55 +KPX A Ohungarumlaut -55 +KPX A Omacron -55 +KPX A Oslash -55 +KPX A Otilde -55 +KPX A Q -55 +KPX A T -111 +KPX A Tcaron -111 +KPX A Tcommaaccent -111 +KPX A U -55 +KPX A Uacute -55 +KPX A Ucircumflex -55 +KPX A Udieresis -55 +KPX A Ugrave -55 +KPX A Uhungarumlaut -55 +KPX A Umacron -55 +KPX A Uogonek -55 +KPX A Uring -55 +KPX A V -135 +KPX A W -90 +KPX A Y -105 +KPX A Yacute -105 +KPX A Ydieresis -105 +KPX A quoteright -111 +KPX A v -74 +KPX A w -92 +KPX A y -92 +KPX A yacute -92 +KPX A ydieresis -92 +KPX Aacute C -40 +KPX Aacute Cacute -40 +KPX Aacute Ccaron -40 +KPX Aacute Ccedilla -40 +KPX Aacute G -40 +KPX Aacute Gbreve -40 +KPX Aacute Gcommaaccent -40 +KPX Aacute O -55 +KPX Aacute Oacute -55 +KPX Aacute Ocircumflex -55 +KPX Aacute Odieresis -55 +KPX Aacute Ograve -55 +KPX Aacute Ohungarumlaut -55 +KPX Aacute Omacron -55 +KPX Aacute Oslash -55 +KPX Aacute Otilde -55 +KPX Aacute Q -55 +KPX Aacute T -111 +KPX Aacute Tcaron -111 +KPX Aacute Tcommaaccent -111 +KPX Aacute U -55 +KPX Aacute Uacute -55 +KPX Aacute Ucircumflex -55 +KPX Aacute Udieresis -55 +KPX Aacute Ugrave -55 +KPX Aacute Uhungarumlaut -55 +KPX Aacute Umacron -55 +KPX Aacute Uogonek -55 +KPX Aacute Uring -55 +KPX Aacute V -135 +KPX Aacute W -90 +KPX Aacute Y -105 +KPX Aacute Yacute -105 +KPX Aacute Ydieresis -105 +KPX Aacute quoteright -111 +KPX Aacute v -74 +KPX Aacute w -92 +KPX Aacute y -92 +KPX Aacute yacute -92 +KPX Aacute ydieresis -92 +KPX Abreve C -40 +KPX Abreve Cacute -40 +KPX Abreve Ccaron -40 +KPX Abreve Ccedilla -40 +KPX Abreve G -40 +KPX Abreve Gbreve -40 +KPX Abreve Gcommaaccent -40 +KPX Abreve O -55 +KPX Abreve Oacute -55 +KPX Abreve Ocircumflex -55 +KPX Abreve Odieresis -55 +KPX Abreve Ograve -55 +KPX Abreve Ohungarumlaut -55 +KPX Abreve Omacron -55 +KPX Abreve Oslash -55 +KPX Abreve Otilde -55 +KPX Abreve Q -55 +KPX Abreve T -111 +KPX Abreve Tcaron -111 +KPX Abreve Tcommaaccent -111 +KPX Abreve U -55 +KPX Abreve Uacute -55 +KPX Abreve Ucircumflex -55 +KPX Abreve Udieresis -55 +KPX Abreve Ugrave -55 +KPX Abreve Uhungarumlaut -55 +KPX Abreve Umacron -55 +KPX Abreve Uogonek -55 +KPX Abreve Uring -55 +KPX Abreve V -135 +KPX Abreve W -90 +KPX Abreve Y -105 +KPX Abreve Yacute -105 +KPX Abreve Ydieresis -105 +KPX Abreve quoteright -111 +KPX Abreve v -74 +KPX Abreve w -92 +KPX Abreve y -92 +KPX Abreve yacute -92 +KPX Abreve ydieresis -92 +KPX Acircumflex C -40 +KPX Acircumflex Cacute -40 +KPX Acircumflex Ccaron -40 +KPX Acircumflex Ccedilla -40 +KPX Acircumflex G -40 +KPX Acircumflex Gbreve -40 +KPX Acircumflex Gcommaaccent -40 +KPX Acircumflex O -55 +KPX Acircumflex Oacute -55 +KPX Acircumflex Ocircumflex -55 +KPX Acircumflex Odieresis -55 +KPX Acircumflex Ograve -55 +KPX Acircumflex Ohungarumlaut -55 +KPX Acircumflex Omacron -55 +KPX Acircumflex Oslash -55 +KPX Acircumflex Otilde -55 +KPX Acircumflex Q -55 +KPX Acircumflex T -111 +KPX Acircumflex Tcaron -111 +KPX Acircumflex Tcommaaccent -111 +KPX Acircumflex U -55 +KPX Acircumflex Uacute -55 +KPX Acircumflex Ucircumflex -55 +KPX Acircumflex Udieresis -55 +KPX Acircumflex Ugrave -55 +KPX Acircumflex Uhungarumlaut -55 +KPX Acircumflex Umacron -55 +KPX Acircumflex Uogonek -55 +KPX Acircumflex Uring -55 +KPX Acircumflex V -135 +KPX Acircumflex W -90 +KPX Acircumflex Y -105 +KPX Acircumflex Yacute -105 +KPX Acircumflex Ydieresis -105 +KPX Acircumflex quoteright -111 +KPX Acircumflex v -74 +KPX Acircumflex w -92 +KPX Acircumflex y -92 +KPX Acircumflex yacute -92 +KPX Acircumflex ydieresis -92 +KPX Adieresis C -40 +KPX Adieresis Cacute -40 +KPX Adieresis Ccaron -40 +KPX Adieresis Ccedilla -40 +KPX Adieresis G -40 +KPX Adieresis Gbreve -40 +KPX Adieresis Gcommaaccent -40 +KPX Adieresis O -55 +KPX Adieresis Oacute -55 +KPX Adieresis Ocircumflex -55 +KPX Adieresis Odieresis -55 +KPX Adieresis Ograve -55 +KPX Adieresis Ohungarumlaut -55 +KPX Adieresis Omacron -55 +KPX Adieresis Oslash -55 +KPX Adieresis Otilde -55 +KPX Adieresis Q -55 +KPX Adieresis T -111 +KPX Adieresis Tcaron -111 +KPX Adieresis Tcommaaccent -111 +KPX Adieresis U -55 +KPX Adieresis Uacute -55 +KPX Adieresis Ucircumflex -55 +KPX Adieresis Udieresis -55 +KPX Adieresis Ugrave -55 +KPX Adieresis Uhungarumlaut -55 +KPX Adieresis Umacron -55 +KPX Adieresis Uogonek -55 +KPX Adieresis Uring -55 +KPX Adieresis V -135 +KPX Adieresis W -90 +KPX Adieresis Y -105 +KPX Adieresis Yacute -105 +KPX Adieresis Ydieresis -105 +KPX Adieresis quoteright -111 +KPX Adieresis v -74 +KPX Adieresis w -92 +KPX Adieresis y -92 +KPX Adieresis yacute -92 +KPX Adieresis ydieresis -92 +KPX Agrave C -40 +KPX Agrave Cacute -40 +KPX Agrave Ccaron -40 +KPX Agrave Ccedilla -40 +KPX Agrave G -40 +KPX Agrave Gbreve -40 +KPX Agrave Gcommaaccent -40 +KPX Agrave O -55 +KPX Agrave Oacute -55 +KPX Agrave Ocircumflex -55 +KPX Agrave Odieresis -55 +KPX Agrave Ograve -55 +KPX Agrave Ohungarumlaut -55 +KPX Agrave Omacron -55 +KPX Agrave Oslash -55 +KPX Agrave Otilde -55 +KPX Agrave Q -55 +KPX Agrave T -111 +KPX Agrave Tcaron -111 +KPX Agrave Tcommaaccent -111 +KPX Agrave U -55 +KPX Agrave Uacute -55 +KPX Agrave Ucircumflex -55 +KPX Agrave Udieresis -55 +KPX Agrave Ugrave -55 +KPX Agrave Uhungarumlaut -55 +KPX Agrave Umacron -55 +KPX Agrave Uogonek -55 +KPX Agrave Uring -55 +KPX Agrave V -135 +KPX Agrave W -90 +KPX Agrave Y -105 +KPX Agrave Yacute -105 +KPX Agrave Ydieresis -105 +KPX Agrave quoteright -111 +KPX Agrave v -74 +KPX Agrave w -92 +KPX Agrave y -92 +KPX Agrave yacute -92 +KPX Agrave ydieresis -92 +KPX Amacron C -40 +KPX Amacron Cacute -40 +KPX Amacron Ccaron -40 +KPX Amacron Ccedilla -40 +KPX Amacron G -40 +KPX Amacron Gbreve -40 +KPX Amacron Gcommaaccent -40 +KPX Amacron O -55 +KPX Amacron Oacute -55 +KPX Amacron Ocircumflex -55 +KPX Amacron Odieresis -55 +KPX Amacron Ograve -55 +KPX Amacron Ohungarumlaut -55 +KPX Amacron Omacron -55 +KPX Amacron Oslash -55 +KPX Amacron Otilde -55 +KPX Amacron Q -55 +KPX Amacron T -111 +KPX Amacron Tcaron -111 +KPX Amacron Tcommaaccent -111 +KPX Amacron U -55 +KPX Amacron Uacute -55 +KPX Amacron Ucircumflex -55 +KPX Amacron Udieresis -55 +KPX Amacron Ugrave -55 +KPX Amacron Uhungarumlaut -55 +KPX Amacron Umacron -55 +KPX Amacron Uogonek -55 +KPX Amacron Uring -55 +KPX Amacron V -135 +KPX Amacron W -90 +KPX Amacron Y -105 +KPX Amacron Yacute -105 +KPX Amacron Ydieresis -105 +KPX Amacron quoteright -111 +KPX Amacron v -74 +KPX Amacron w -92 +KPX Amacron y -92 +KPX Amacron yacute -92 +KPX Amacron ydieresis -92 +KPX Aogonek C -40 +KPX Aogonek Cacute -40 +KPX Aogonek Ccaron -40 +KPX Aogonek Ccedilla -40 +KPX Aogonek G -40 +KPX Aogonek Gbreve -40 +KPX Aogonek Gcommaaccent -40 +KPX Aogonek O -55 +KPX Aogonek Oacute -55 +KPX Aogonek Ocircumflex -55 +KPX Aogonek Odieresis -55 +KPX Aogonek Ograve -55 +KPX Aogonek Ohungarumlaut -55 +KPX Aogonek Omacron -55 +KPX Aogonek Oslash -55 +KPX Aogonek Otilde -55 +KPX Aogonek Q -55 +KPX Aogonek T -111 +KPX Aogonek Tcaron -111 +KPX Aogonek Tcommaaccent -111 +KPX Aogonek U -55 +KPX Aogonek Uacute -55 +KPX Aogonek Ucircumflex -55 +KPX Aogonek Udieresis -55 +KPX Aogonek Ugrave -55 +KPX Aogonek Uhungarumlaut -55 +KPX Aogonek Umacron -55 +KPX Aogonek Uogonek -55 +KPX Aogonek Uring -55 +KPX Aogonek V -135 +KPX Aogonek W -90 +KPX Aogonek Y -105 +KPX Aogonek Yacute -105 +KPX Aogonek Ydieresis -105 +KPX Aogonek quoteright -111 +KPX Aogonek v -74 +KPX Aogonek w -52 +KPX Aogonek y -52 +KPX Aogonek yacute -52 +KPX Aogonek ydieresis -52 +KPX Aring C -40 +KPX Aring Cacute -40 +KPX Aring Ccaron -40 +KPX Aring Ccedilla -40 +KPX Aring G -40 +KPX Aring Gbreve -40 +KPX Aring Gcommaaccent -40 +KPX Aring O -55 +KPX Aring Oacute -55 +KPX Aring Ocircumflex -55 +KPX Aring Odieresis -55 +KPX Aring Ograve -55 +KPX Aring Ohungarumlaut -55 +KPX Aring Omacron -55 +KPX Aring Oslash -55 +KPX Aring Otilde -55 +KPX Aring Q -55 +KPX Aring T -111 +KPX Aring Tcaron -111 +KPX Aring Tcommaaccent -111 +KPX Aring U -55 +KPX Aring Uacute -55 +KPX Aring Ucircumflex -55 +KPX Aring Udieresis -55 +KPX Aring Ugrave -55 +KPX Aring Uhungarumlaut -55 +KPX Aring Umacron -55 +KPX Aring Uogonek -55 +KPX Aring Uring -55 +KPX Aring V -135 +KPX Aring W -90 +KPX Aring Y -105 +KPX Aring Yacute -105 +KPX Aring Ydieresis -105 +KPX Aring quoteright -111 +KPX Aring v -74 +KPX Aring w -92 +KPX Aring y -92 +KPX Aring yacute -92 +KPX Aring ydieresis -92 +KPX Atilde C -40 +KPX Atilde Cacute -40 +KPX Atilde Ccaron -40 +KPX Atilde Ccedilla -40 +KPX Atilde G -40 +KPX Atilde Gbreve -40 +KPX Atilde Gcommaaccent -40 +KPX Atilde O -55 +KPX Atilde Oacute -55 +KPX Atilde Ocircumflex -55 +KPX Atilde Odieresis -55 +KPX Atilde Ograve -55 +KPX Atilde Ohungarumlaut -55 +KPX Atilde Omacron -55 +KPX Atilde Oslash -55 +KPX Atilde Otilde -55 +KPX Atilde Q -55 +KPX Atilde T -111 +KPX Atilde Tcaron -111 +KPX Atilde Tcommaaccent -111 +KPX Atilde U -55 +KPX Atilde Uacute -55 +KPX Atilde Ucircumflex -55 +KPX Atilde Udieresis -55 +KPX Atilde Ugrave -55 +KPX Atilde Uhungarumlaut -55 +KPX Atilde Umacron -55 +KPX Atilde Uogonek -55 +KPX Atilde Uring -55 +KPX Atilde V -135 +KPX Atilde W -90 +KPX Atilde Y -105 +KPX Atilde Yacute -105 +KPX Atilde Ydieresis -105 +KPX Atilde quoteright -111 +KPX Atilde v -74 +KPX Atilde w -92 +KPX Atilde y -92 +KPX Atilde yacute -92 +KPX Atilde ydieresis -92 +KPX B A -35 +KPX B Aacute -35 +KPX B Abreve -35 +KPX B Acircumflex -35 +KPX B Adieresis -35 +KPX B Agrave -35 +KPX B Amacron -35 +KPX B Aogonek -35 +KPX B Aring -35 +KPX B Atilde -35 +KPX B U -10 +KPX B Uacute -10 +KPX B Ucircumflex -10 +KPX B Udieresis -10 +KPX B Ugrave -10 +KPX B Uhungarumlaut -10 +KPX B Umacron -10 +KPX B Uogonek -10 +KPX B Uring -10 +KPX D A -40 +KPX D Aacute -40 +KPX D Abreve -40 +KPX D Acircumflex -40 +KPX D Adieresis -40 +KPX D Agrave -40 +KPX D Amacron -40 +KPX D Aogonek -40 +KPX D Aring -40 +KPX D Atilde -40 +KPX D V -40 +KPX D W -30 +KPX D Y -55 +KPX D Yacute -55 +KPX D Ydieresis -55 +KPX Dcaron A -40 +KPX Dcaron Aacute -40 +KPX Dcaron Abreve -40 +KPX Dcaron Acircumflex -40 +KPX Dcaron Adieresis -40 +KPX Dcaron Agrave -40 +KPX Dcaron Amacron -40 +KPX Dcaron Aogonek -40 +KPX Dcaron Aring -40 +KPX Dcaron Atilde -40 +KPX Dcaron V -40 +KPX Dcaron W -30 +KPX Dcaron Y -55 +KPX Dcaron Yacute -55 +KPX Dcaron Ydieresis -55 +KPX Dcroat A -40 +KPX Dcroat Aacute -40 +KPX Dcroat Abreve -40 +KPX Dcroat Acircumflex -40 +KPX Dcroat Adieresis -40 +KPX Dcroat Agrave -40 +KPX Dcroat Amacron -40 +KPX Dcroat Aogonek -40 +KPX Dcroat Aring -40 +KPX Dcroat Atilde -40 +KPX Dcroat V -40 +KPX Dcroat W -30 +KPX Dcroat Y -55 +KPX Dcroat Yacute -55 +KPX Dcroat Ydieresis -55 +KPX F A -74 +KPX F Aacute -74 +KPX F Abreve -74 +KPX F Acircumflex -74 +KPX F Adieresis -74 +KPX F Agrave -74 +KPX F Amacron -74 +KPX F Aogonek -74 +KPX F Aring -74 +KPX F Atilde -74 +KPX F a -15 +KPX F aacute -15 +KPX F abreve -15 +KPX F acircumflex -15 +KPX F adieresis -15 +KPX F agrave -15 +KPX F amacron -15 +KPX F aogonek -15 +KPX F aring -15 +KPX F atilde -15 +KPX F comma -80 +KPX F o -15 +KPX F oacute -15 +KPX F ocircumflex -15 +KPX F odieresis -15 +KPX F ograve -15 +KPX F ohungarumlaut -15 +KPX F omacron -15 +KPX F oslash -15 +KPX F otilde -15 +KPX F period -80 +KPX J A -60 +KPX J Aacute -60 +KPX J Abreve -60 +KPX J Acircumflex -60 +KPX J Adieresis -60 +KPX J Agrave -60 +KPX J Amacron -60 +KPX J Aogonek -60 +KPX J Aring -60 +KPX J Atilde -60 +KPX K O -30 +KPX K Oacute -30 +KPX K Ocircumflex -30 +KPX K Odieresis -30 +KPX K Ograve -30 +KPX K Ohungarumlaut -30 +KPX K Omacron -30 +KPX K Oslash -30 +KPX K Otilde -30 +KPX K e -25 +KPX K eacute -25 +KPX K ecaron -25 +KPX K ecircumflex -25 +KPX K edieresis -25 +KPX K edotaccent -25 +KPX K egrave -25 +KPX K emacron -25 +KPX K eogonek -25 +KPX K o -35 +KPX K oacute -35 +KPX K ocircumflex -35 +KPX K odieresis -35 +KPX K ograve -35 +KPX K ohungarumlaut -35 +KPX K omacron -35 +KPX K oslash -35 +KPX K otilde -35 +KPX K u -15 +KPX K uacute -15 +KPX K ucircumflex -15 +KPX K udieresis -15 +KPX K ugrave -15 +KPX K uhungarumlaut -15 +KPX K umacron -15 +KPX K uogonek -15 +KPX K uring -15 +KPX K y -25 +KPX K yacute -25 +KPX K ydieresis -25 +KPX Kcommaaccent O -30 +KPX Kcommaaccent Oacute -30 +KPX Kcommaaccent Ocircumflex -30 +KPX Kcommaaccent Odieresis -30 +KPX Kcommaaccent Ograve -30 +KPX Kcommaaccent Ohungarumlaut -30 +KPX Kcommaaccent Omacron -30 +KPX Kcommaaccent Oslash -30 +KPX Kcommaaccent Otilde -30 +KPX Kcommaaccent e -25 +KPX Kcommaaccent eacute -25 +KPX Kcommaaccent ecaron -25 +KPX Kcommaaccent ecircumflex -25 +KPX Kcommaaccent edieresis -25 +KPX Kcommaaccent edotaccent -25 +KPX Kcommaaccent egrave -25 +KPX Kcommaaccent emacron -25 +KPX Kcommaaccent eogonek -25 +KPX Kcommaaccent o -35 +KPX Kcommaaccent oacute -35 +KPX Kcommaaccent ocircumflex -35 +KPX Kcommaaccent odieresis -35 +KPX Kcommaaccent ograve -35 +KPX Kcommaaccent ohungarumlaut -35 +KPX Kcommaaccent omacron -35 +KPX Kcommaaccent oslash -35 +KPX Kcommaaccent otilde -35 +KPX Kcommaaccent u -15 +KPX Kcommaaccent uacute -15 +KPX Kcommaaccent ucircumflex -15 +KPX Kcommaaccent udieresis -15 +KPX Kcommaaccent ugrave -15 +KPX Kcommaaccent uhungarumlaut -15 +KPX Kcommaaccent umacron -15 +KPX Kcommaaccent uogonek -15 +KPX Kcommaaccent uring -15 +KPX Kcommaaccent y -25 +KPX Kcommaaccent yacute -25 +KPX Kcommaaccent ydieresis -25 +KPX L T -92 +KPX L Tcaron -92 +KPX L Tcommaaccent -92 +KPX L V -100 +KPX L W -74 +KPX L Y -100 +KPX L Yacute -100 +KPX L Ydieresis -100 +KPX L quoteright -92 +KPX L y -55 +KPX L yacute -55 +KPX L ydieresis -55 +KPX Lacute T -92 +KPX Lacute Tcaron -92 +KPX Lacute Tcommaaccent -92 +KPX Lacute V -100 +KPX Lacute W -74 +KPX Lacute Y -100 +KPX Lacute Yacute -100 +KPX Lacute Ydieresis -100 +KPX Lacute quoteright -92 +KPX Lacute y -55 +KPX Lacute yacute -55 +KPX Lacute ydieresis -55 +KPX Lcaron quoteright -92 +KPX Lcaron y -55 +KPX Lcaron yacute -55 +KPX Lcaron ydieresis -55 +KPX Lcommaaccent T -92 +KPX Lcommaaccent Tcaron -92 +KPX Lcommaaccent Tcommaaccent -92 +KPX Lcommaaccent V -100 +KPX Lcommaaccent W -74 +KPX Lcommaaccent Y -100 +KPX Lcommaaccent Yacute -100 +KPX Lcommaaccent Ydieresis -100 +KPX Lcommaaccent quoteright -92 +KPX Lcommaaccent y -55 +KPX Lcommaaccent yacute -55 +KPX Lcommaaccent ydieresis -55 +KPX Lslash T -92 +KPX Lslash Tcaron -92 +KPX Lslash Tcommaaccent -92 +KPX Lslash V -100 +KPX Lslash W -74 +KPX Lslash Y -100 +KPX Lslash Yacute -100 +KPX Lslash Ydieresis -100 +KPX Lslash quoteright -92 +KPX Lslash y -55 +KPX Lslash yacute -55 +KPX Lslash ydieresis -55 +KPX N A -35 +KPX N Aacute -35 +KPX N Abreve -35 +KPX N Acircumflex -35 +KPX N Adieresis -35 +KPX N Agrave -35 +KPX N Amacron -35 +KPX N Aogonek -35 +KPX N Aring -35 +KPX N Atilde -35 +KPX Nacute A -35 +KPX Nacute Aacute -35 +KPX Nacute Abreve -35 +KPX Nacute Acircumflex -35 +KPX Nacute Adieresis -35 +KPX Nacute Agrave -35 +KPX Nacute Amacron -35 +KPX Nacute Aogonek -35 +KPX Nacute Aring -35 +KPX Nacute Atilde -35 +KPX Ncaron A -35 +KPX Ncaron Aacute -35 +KPX Ncaron Abreve -35 +KPX Ncaron Acircumflex -35 +KPX Ncaron Adieresis -35 +KPX Ncaron Agrave -35 +KPX Ncaron Amacron -35 +KPX Ncaron Aogonek -35 +KPX Ncaron Aring -35 +KPX Ncaron Atilde -35 +KPX Ncommaaccent A -35 +KPX Ncommaaccent Aacute -35 +KPX Ncommaaccent Abreve -35 +KPX Ncommaaccent Acircumflex -35 +KPX Ncommaaccent Adieresis -35 +KPX Ncommaaccent Agrave -35 +KPX Ncommaaccent Amacron -35 +KPX Ncommaaccent Aogonek -35 +KPX Ncommaaccent Aring -35 +KPX Ncommaaccent Atilde -35 +KPX Ntilde A -35 +KPX Ntilde Aacute -35 +KPX Ntilde Abreve -35 +KPX Ntilde Acircumflex -35 +KPX Ntilde Adieresis -35 +KPX Ntilde Agrave -35 +KPX Ntilde Amacron -35 +KPX Ntilde Aogonek -35 +KPX Ntilde Aring -35 +KPX Ntilde Atilde -35 +KPX O A -35 +KPX O Aacute -35 +KPX O Abreve -35 +KPX O Acircumflex -35 +KPX O Adieresis -35 +KPX O Agrave -35 +KPX O Amacron -35 +KPX O Aogonek -35 +KPX O Aring -35 +KPX O Atilde -35 +KPX O T -40 +KPX O Tcaron -40 +KPX O Tcommaaccent -40 +KPX O V -50 +KPX O W -35 +KPX O X -40 +KPX O Y -50 +KPX O Yacute -50 +KPX O Ydieresis -50 +KPX Oacute A -35 +KPX Oacute Aacute -35 +KPX Oacute Abreve -35 +KPX Oacute Acircumflex -35 +KPX Oacute Adieresis -35 +KPX Oacute Agrave -35 +KPX Oacute Amacron -35 +KPX Oacute Aogonek -35 +KPX Oacute Aring -35 +KPX Oacute Atilde -35 +KPX Oacute T -40 +KPX Oacute Tcaron -40 +KPX Oacute Tcommaaccent -40 +KPX Oacute V -50 +KPX Oacute W -35 +KPX Oacute X -40 +KPX Oacute Y -50 +KPX Oacute Yacute -50 +KPX Oacute Ydieresis -50 +KPX Ocircumflex A -35 +KPX Ocircumflex Aacute -35 +KPX Ocircumflex Abreve -35 +KPX Ocircumflex Acircumflex -35 +KPX Ocircumflex Adieresis -35 +KPX Ocircumflex Agrave -35 +KPX Ocircumflex Amacron -35 +KPX Ocircumflex Aogonek -35 +KPX Ocircumflex Aring -35 +KPX Ocircumflex Atilde -35 +KPX Ocircumflex T -40 +KPX Ocircumflex Tcaron -40 +KPX Ocircumflex Tcommaaccent -40 +KPX Ocircumflex V -50 +KPX Ocircumflex W -35 +KPX Ocircumflex X -40 +KPX Ocircumflex Y -50 +KPX Ocircumflex Yacute -50 +KPX Ocircumflex Ydieresis -50 +KPX Odieresis A -35 +KPX Odieresis Aacute -35 +KPX Odieresis Abreve -35 +KPX Odieresis Acircumflex -35 +KPX Odieresis Adieresis -35 +KPX Odieresis Agrave -35 +KPX Odieresis Amacron -35 +KPX Odieresis Aogonek -35 +KPX Odieresis Aring -35 +KPX Odieresis Atilde -35 +KPX Odieresis T -40 +KPX Odieresis Tcaron -40 +KPX Odieresis Tcommaaccent -40 +KPX Odieresis V -50 +KPX Odieresis W -35 +KPX Odieresis X -40 +KPX Odieresis Y -50 +KPX Odieresis Yacute -50 +KPX Odieresis Ydieresis -50 +KPX Ograve A -35 +KPX Ograve Aacute -35 +KPX Ograve Abreve -35 +KPX Ograve Acircumflex -35 +KPX Ograve Adieresis -35 +KPX Ograve Agrave -35 +KPX Ograve Amacron -35 +KPX Ograve Aogonek -35 +KPX Ograve Aring -35 +KPX Ograve Atilde -35 +KPX Ograve T -40 +KPX Ograve Tcaron -40 +KPX Ograve Tcommaaccent -40 +KPX Ograve V -50 +KPX Ograve W -35 +KPX Ograve X -40 +KPX Ograve Y -50 +KPX Ograve Yacute -50 +KPX Ograve Ydieresis -50 +KPX Ohungarumlaut A -35 +KPX Ohungarumlaut Aacute -35 +KPX Ohungarumlaut Abreve -35 +KPX Ohungarumlaut Acircumflex -35 +KPX Ohungarumlaut Adieresis -35 +KPX Ohungarumlaut Agrave -35 +KPX Ohungarumlaut Amacron -35 +KPX Ohungarumlaut Aogonek -35 +KPX Ohungarumlaut Aring -35 +KPX Ohungarumlaut Atilde -35 +KPX Ohungarumlaut T -40 +KPX Ohungarumlaut Tcaron -40 +KPX Ohungarumlaut Tcommaaccent -40 +KPX Ohungarumlaut V -50 +KPX Ohungarumlaut W -35 +KPX Ohungarumlaut X -40 +KPX Ohungarumlaut Y -50 +KPX Ohungarumlaut Yacute -50 +KPX Ohungarumlaut Ydieresis -50 +KPX Omacron A -35 +KPX Omacron Aacute -35 +KPX Omacron Abreve -35 +KPX Omacron Acircumflex -35 +KPX Omacron Adieresis -35 +KPX Omacron Agrave -35 +KPX Omacron Amacron -35 +KPX Omacron Aogonek -35 +KPX Omacron Aring -35 +KPX Omacron Atilde -35 +KPX Omacron T -40 +KPX Omacron Tcaron -40 +KPX Omacron Tcommaaccent -40 +KPX Omacron V -50 +KPX Omacron W -35 +KPX Omacron X -40 +KPX Omacron Y -50 +KPX Omacron Yacute -50 +KPX Omacron Ydieresis -50 +KPX Oslash A -35 +KPX Oslash Aacute -35 +KPX Oslash Abreve -35 +KPX Oslash Acircumflex -35 +KPX Oslash Adieresis -35 +KPX Oslash Agrave -35 +KPX Oslash Amacron -35 +KPX Oslash Aogonek -35 +KPX Oslash Aring -35 +KPX Oslash Atilde -35 +KPX Oslash T -40 +KPX Oslash Tcaron -40 +KPX Oslash Tcommaaccent -40 +KPX Oslash V -50 +KPX Oslash W -35 +KPX Oslash X -40 +KPX Oslash Y -50 +KPX Oslash Yacute -50 +KPX Oslash Ydieresis -50 +KPX Otilde A -35 +KPX Otilde Aacute -35 +KPX Otilde Abreve -35 +KPX Otilde Acircumflex -35 +KPX Otilde Adieresis -35 +KPX Otilde Agrave -35 +KPX Otilde Amacron -35 +KPX Otilde Aogonek -35 +KPX Otilde Aring -35 +KPX Otilde Atilde -35 +KPX Otilde T -40 +KPX Otilde Tcaron -40 +KPX Otilde Tcommaaccent -40 +KPX Otilde V -50 +KPX Otilde W -35 +KPX Otilde X -40 +KPX Otilde Y -50 +KPX Otilde Yacute -50 +KPX Otilde Ydieresis -50 +KPX P A -92 +KPX P Aacute -92 +KPX P Abreve -92 +KPX P Acircumflex -92 +KPX P Adieresis -92 +KPX P Agrave -92 +KPX P Amacron -92 +KPX P Aogonek -92 +KPX P Aring -92 +KPX P Atilde -92 +KPX P a -15 +KPX P aacute -15 +KPX P abreve -15 +KPX P acircumflex -15 +KPX P adieresis -15 +KPX P agrave -15 +KPX P amacron -15 +KPX P aogonek -15 +KPX P aring -15 +KPX P atilde -15 +KPX P comma -111 +KPX P period -111 +KPX Q U -10 +KPX Q Uacute -10 +KPX Q Ucircumflex -10 +KPX Q Udieresis -10 +KPX Q Ugrave -10 +KPX Q Uhungarumlaut -10 +KPX Q Umacron -10 +KPX Q Uogonek -10 +KPX Q Uring -10 +KPX R O -40 +KPX R Oacute -40 +KPX R Ocircumflex -40 +KPX R Odieresis -40 +KPX R Ograve -40 +KPX R Ohungarumlaut -40 +KPX R Omacron -40 +KPX R Oslash -40 +KPX R Otilde -40 +KPX R T -60 +KPX R Tcaron -60 +KPX R Tcommaaccent -60 +KPX R U -40 +KPX R Uacute -40 +KPX R Ucircumflex -40 +KPX R Udieresis -40 +KPX R Ugrave -40 +KPX R Uhungarumlaut -40 +KPX R Umacron -40 +KPX R Uogonek -40 +KPX R Uring -40 +KPX R V -80 +KPX R W -55 +KPX R Y -65 +KPX R Yacute -65 +KPX R Ydieresis -65 +KPX Racute O -40 +KPX Racute Oacute -40 +KPX Racute Ocircumflex -40 +KPX Racute Odieresis -40 +KPX Racute Ograve -40 +KPX Racute Ohungarumlaut -40 +KPX Racute Omacron -40 +KPX Racute Oslash -40 +KPX Racute Otilde -40 +KPX Racute T -60 +KPX Racute Tcaron -60 +KPX Racute Tcommaaccent -60 +KPX Racute U -40 +KPX Racute Uacute -40 +KPX Racute Ucircumflex -40 +KPX Racute Udieresis -40 +KPX Racute Ugrave -40 +KPX Racute Uhungarumlaut -40 +KPX Racute Umacron -40 +KPX Racute Uogonek -40 +KPX Racute Uring -40 +KPX Racute V -80 +KPX Racute W -55 +KPX Racute Y -65 +KPX Racute Yacute -65 +KPX Racute Ydieresis -65 +KPX Rcaron O -40 +KPX Rcaron Oacute -40 +KPX Rcaron Ocircumflex -40 +KPX Rcaron Odieresis -40 +KPX Rcaron Ograve -40 +KPX Rcaron Ohungarumlaut -40 +KPX Rcaron Omacron -40 +KPX Rcaron Oslash -40 +KPX Rcaron Otilde -40 +KPX Rcaron T -60 +KPX Rcaron Tcaron -60 +KPX Rcaron Tcommaaccent -60 +KPX Rcaron U -40 +KPX Rcaron Uacute -40 +KPX Rcaron Ucircumflex -40 +KPX Rcaron Udieresis -40 +KPX Rcaron Ugrave -40 +KPX Rcaron Uhungarumlaut -40 +KPX Rcaron Umacron -40 +KPX Rcaron Uogonek -40 +KPX Rcaron Uring -40 +KPX Rcaron V -80 +KPX Rcaron W -55 +KPX Rcaron Y -65 +KPX Rcaron Yacute -65 +KPX Rcaron Ydieresis -65 +KPX Rcommaaccent O -40 +KPX Rcommaaccent Oacute -40 +KPX Rcommaaccent Ocircumflex -40 +KPX Rcommaaccent Odieresis -40 +KPX Rcommaaccent Ograve -40 +KPX Rcommaaccent Ohungarumlaut -40 +KPX Rcommaaccent Omacron -40 +KPX Rcommaaccent Oslash -40 +KPX Rcommaaccent Otilde -40 +KPX Rcommaaccent T -60 +KPX Rcommaaccent Tcaron -60 +KPX Rcommaaccent Tcommaaccent -60 +KPX Rcommaaccent U -40 +KPX Rcommaaccent Uacute -40 +KPX Rcommaaccent Ucircumflex -40 +KPX Rcommaaccent Udieresis -40 +KPX Rcommaaccent Ugrave -40 +KPX Rcommaaccent Uhungarumlaut -40 +KPX Rcommaaccent Umacron -40 +KPX Rcommaaccent Uogonek -40 +KPX Rcommaaccent Uring -40 +KPX Rcommaaccent V -80 +KPX Rcommaaccent W -55 +KPX Rcommaaccent Y -65 +KPX Rcommaaccent Yacute -65 +KPX Rcommaaccent Ydieresis -65 +KPX T A -93 +KPX T Aacute -93 +KPX T Abreve -93 +KPX T Acircumflex -93 +KPX T Adieresis -93 +KPX T Agrave -93 +KPX T Amacron -93 +KPX T Aogonek -93 +KPX T Aring -93 +KPX T Atilde -93 +KPX T O -18 +KPX T Oacute -18 +KPX T Ocircumflex -18 +KPX T Odieresis -18 +KPX T Ograve -18 +KPX T Ohungarumlaut -18 +KPX T Omacron -18 +KPX T Oslash -18 +KPX T Otilde -18 +KPX T a -80 +KPX T aacute -80 +KPX T abreve -80 +KPX T acircumflex -80 +KPX T adieresis -40 +KPX T agrave -40 +KPX T amacron -40 +KPX T aogonek -80 +KPX T aring -80 +KPX T atilde -40 +KPX T colon -50 +KPX T comma -74 +KPX T e -70 +KPX T eacute -70 +KPX T ecaron -70 +KPX T ecircumflex -70 +KPX T edieresis -30 +KPX T edotaccent -70 +KPX T egrave -70 +KPX T emacron -30 +KPX T eogonek -70 +KPX T hyphen -92 +KPX T i -35 +KPX T iacute -35 +KPX T iogonek -35 +KPX T o -80 +KPX T oacute -80 +KPX T ocircumflex -80 +KPX T odieresis -80 +KPX T ograve -80 +KPX T ohungarumlaut -80 +KPX T omacron -80 +KPX T oslash -80 +KPX T otilde -80 +KPX T period -74 +KPX T r -35 +KPX T racute -35 +KPX T rcaron -35 +KPX T rcommaaccent -35 +KPX T semicolon -55 +KPX T u -45 +KPX T uacute -45 +KPX T ucircumflex -45 +KPX T udieresis -45 +KPX T ugrave -45 +KPX T uhungarumlaut -45 +KPX T umacron -45 +KPX T uogonek -45 +KPX T uring -45 +KPX T w -80 +KPX T y -80 +KPX T yacute -80 +KPX T ydieresis -80 +KPX Tcaron A -93 +KPX Tcaron Aacute -93 +KPX Tcaron Abreve -93 +KPX Tcaron Acircumflex -93 +KPX Tcaron Adieresis -93 +KPX Tcaron Agrave -93 +KPX Tcaron Amacron -93 +KPX Tcaron Aogonek -93 +KPX Tcaron Aring -93 +KPX Tcaron Atilde -93 +KPX Tcaron O -18 +KPX Tcaron Oacute -18 +KPX Tcaron Ocircumflex -18 +KPX Tcaron Odieresis -18 +KPX Tcaron Ograve -18 +KPX Tcaron Ohungarumlaut -18 +KPX Tcaron Omacron -18 +KPX Tcaron Oslash -18 +KPX Tcaron Otilde -18 +KPX Tcaron a -80 +KPX Tcaron aacute -80 +KPX Tcaron abreve -80 +KPX Tcaron acircumflex -80 +KPX Tcaron adieresis -40 +KPX Tcaron agrave -40 +KPX Tcaron amacron -40 +KPX Tcaron aogonek -80 +KPX Tcaron aring -80 +KPX Tcaron atilde -40 +KPX Tcaron colon -50 +KPX Tcaron comma -74 +KPX Tcaron e -70 +KPX Tcaron eacute -70 +KPX Tcaron ecaron -70 +KPX Tcaron ecircumflex -30 +KPX Tcaron edieresis -30 +KPX Tcaron edotaccent -70 +KPX Tcaron egrave -70 +KPX Tcaron emacron -30 +KPX Tcaron eogonek -70 +KPX Tcaron hyphen -92 +KPX Tcaron i -35 +KPX Tcaron iacute -35 +KPX Tcaron iogonek -35 +KPX Tcaron o -80 +KPX Tcaron oacute -80 +KPX Tcaron ocircumflex -80 +KPX Tcaron odieresis -80 +KPX Tcaron ograve -80 +KPX Tcaron ohungarumlaut -80 +KPX Tcaron omacron -80 +KPX Tcaron oslash -80 +KPX Tcaron otilde -80 +KPX Tcaron period -74 +KPX Tcaron r -35 +KPX Tcaron racute -35 +KPX Tcaron rcaron -35 +KPX Tcaron rcommaaccent -35 +KPX Tcaron semicolon -55 +KPX Tcaron u -45 +KPX Tcaron uacute -45 +KPX Tcaron ucircumflex -45 +KPX Tcaron udieresis -45 +KPX Tcaron ugrave -45 +KPX Tcaron uhungarumlaut -45 +KPX Tcaron umacron -45 +KPX Tcaron uogonek -45 +KPX Tcaron uring -45 +KPX Tcaron w -80 +KPX Tcaron y -80 +KPX Tcaron yacute -80 +KPX Tcaron ydieresis -80 +KPX Tcommaaccent A -93 +KPX Tcommaaccent Aacute -93 +KPX Tcommaaccent Abreve -93 +KPX Tcommaaccent Acircumflex -93 +KPX Tcommaaccent Adieresis -93 +KPX Tcommaaccent Agrave -93 +KPX Tcommaaccent Amacron -93 +KPX Tcommaaccent Aogonek -93 +KPX Tcommaaccent Aring -93 +KPX Tcommaaccent Atilde -93 +KPX Tcommaaccent O -18 +KPX Tcommaaccent Oacute -18 +KPX Tcommaaccent Ocircumflex -18 +KPX Tcommaaccent Odieresis -18 +KPX Tcommaaccent Ograve -18 +KPX Tcommaaccent Ohungarumlaut -18 +KPX Tcommaaccent Omacron -18 +KPX Tcommaaccent Oslash -18 +KPX Tcommaaccent Otilde -18 +KPX Tcommaaccent a -80 +KPX Tcommaaccent aacute -80 +KPX Tcommaaccent abreve -80 +KPX Tcommaaccent acircumflex -80 +KPX Tcommaaccent adieresis -40 +KPX Tcommaaccent agrave -40 +KPX Tcommaaccent amacron -40 +KPX Tcommaaccent aogonek -80 +KPX Tcommaaccent aring -80 +KPX Tcommaaccent atilde -40 +KPX Tcommaaccent colon -50 +KPX Tcommaaccent comma -74 +KPX Tcommaaccent e -70 +KPX Tcommaaccent eacute -70 +KPX Tcommaaccent ecaron -70 +KPX Tcommaaccent ecircumflex -30 +KPX Tcommaaccent edieresis -30 +KPX Tcommaaccent edotaccent -70 +KPX Tcommaaccent egrave -30 +KPX Tcommaaccent emacron -70 +KPX Tcommaaccent eogonek -70 +KPX Tcommaaccent hyphen -92 +KPX Tcommaaccent i -35 +KPX Tcommaaccent iacute -35 +KPX Tcommaaccent iogonek -35 +KPX Tcommaaccent o -80 +KPX Tcommaaccent oacute -80 +KPX Tcommaaccent ocircumflex -80 +KPX Tcommaaccent odieresis -80 +KPX Tcommaaccent ograve -80 +KPX Tcommaaccent ohungarumlaut -80 +KPX Tcommaaccent omacron -80 +KPX Tcommaaccent oslash -80 +KPX Tcommaaccent otilde -80 +KPX Tcommaaccent period -74 +KPX Tcommaaccent r -35 +KPX Tcommaaccent racute -35 +KPX Tcommaaccent rcaron -35 +KPX Tcommaaccent rcommaaccent -35 +KPX Tcommaaccent semicolon -55 +KPX Tcommaaccent u -45 +KPX Tcommaaccent uacute -45 +KPX Tcommaaccent ucircumflex -45 +KPX Tcommaaccent udieresis -45 +KPX Tcommaaccent ugrave -45 +KPX Tcommaaccent uhungarumlaut -45 +KPX Tcommaaccent umacron -45 +KPX Tcommaaccent uogonek -45 +KPX Tcommaaccent uring -45 +KPX Tcommaaccent w -80 +KPX Tcommaaccent y -80 +KPX Tcommaaccent yacute -80 +KPX Tcommaaccent ydieresis -80 +KPX U A -40 +KPX U Aacute -40 +KPX U Abreve -40 +KPX U Acircumflex -40 +KPX U Adieresis -40 +KPX U Agrave -40 +KPX U Amacron -40 +KPX U Aogonek -40 +KPX U Aring -40 +KPX U Atilde -40 +KPX Uacute A -40 +KPX Uacute Aacute -40 +KPX Uacute Abreve -40 +KPX Uacute Acircumflex -40 +KPX Uacute Adieresis -40 +KPX Uacute Agrave -40 +KPX Uacute Amacron -40 +KPX Uacute Aogonek -40 +KPX Uacute Aring -40 +KPX Uacute Atilde -40 +KPX Ucircumflex A -40 +KPX Ucircumflex Aacute -40 +KPX Ucircumflex Abreve -40 +KPX Ucircumflex Acircumflex -40 +KPX Ucircumflex Adieresis -40 +KPX Ucircumflex Agrave -40 +KPX Ucircumflex Amacron -40 +KPX Ucircumflex Aogonek -40 +KPX Ucircumflex Aring -40 +KPX Ucircumflex Atilde -40 +KPX Udieresis A -40 +KPX Udieresis Aacute -40 +KPX Udieresis Abreve -40 +KPX Udieresis Acircumflex -40 +KPX Udieresis Adieresis -40 +KPX Udieresis Agrave -40 +KPX Udieresis Amacron -40 +KPX Udieresis Aogonek -40 +KPX Udieresis Aring -40 +KPX Udieresis Atilde -40 +KPX Ugrave A -40 +KPX Ugrave Aacute -40 +KPX Ugrave Abreve -40 +KPX Ugrave Acircumflex -40 +KPX Ugrave Adieresis -40 +KPX Ugrave Agrave -40 +KPX Ugrave Amacron -40 +KPX Ugrave Aogonek -40 +KPX Ugrave Aring -40 +KPX Ugrave Atilde -40 +KPX Uhungarumlaut A -40 +KPX Uhungarumlaut Aacute -40 +KPX Uhungarumlaut Abreve -40 +KPX Uhungarumlaut Acircumflex -40 +KPX Uhungarumlaut Adieresis -40 +KPX Uhungarumlaut Agrave -40 +KPX Uhungarumlaut Amacron -40 +KPX Uhungarumlaut Aogonek -40 +KPX Uhungarumlaut Aring -40 +KPX Uhungarumlaut Atilde -40 +KPX Umacron A -40 +KPX Umacron Aacute -40 +KPX Umacron Abreve -40 +KPX Umacron Acircumflex -40 +KPX Umacron Adieresis -40 +KPX Umacron Agrave -40 +KPX Umacron Amacron -40 +KPX Umacron Aogonek -40 +KPX Umacron Aring -40 +KPX Umacron Atilde -40 +KPX Uogonek A -40 +KPX Uogonek Aacute -40 +KPX Uogonek Abreve -40 +KPX Uogonek Acircumflex -40 +KPX Uogonek Adieresis -40 +KPX Uogonek Agrave -40 +KPX Uogonek Amacron -40 +KPX Uogonek Aogonek -40 +KPX Uogonek Aring -40 +KPX Uogonek Atilde -40 +KPX Uring A -40 +KPX Uring Aacute -40 +KPX Uring Abreve -40 +KPX Uring Acircumflex -40 +KPX Uring Adieresis -40 +KPX Uring Agrave -40 +KPX Uring Amacron -40 +KPX Uring Aogonek -40 +KPX Uring Aring -40 +KPX Uring Atilde -40 +KPX V A -135 +KPX V Aacute -135 +KPX V Abreve -135 +KPX V Acircumflex -135 +KPX V Adieresis -135 +KPX V Agrave -135 +KPX V Amacron -135 +KPX V Aogonek -135 +KPX V Aring -135 +KPX V Atilde -135 +KPX V G -15 +KPX V Gbreve -15 +KPX V Gcommaaccent -15 +KPX V O -40 +KPX V Oacute -40 +KPX V Ocircumflex -40 +KPX V Odieresis -40 +KPX V Ograve -40 +KPX V Ohungarumlaut -40 +KPX V Omacron -40 +KPX V Oslash -40 +KPX V Otilde -40 +KPX V a -111 +KPX V aacute -111 +KPX V abreve -111 +KPX V acircumflex -71 +KPX V adieresis -71 +KPX V agrave -71 +KPX V amacron -71 +KPX V aogonek -111 +KPX V aring -111 +KPX V atilde -71 +KPX V colon -74 +KPX V comma -129 +KPX V e -111 +KPX V eacute -111 +KPX V ecaron -71 +KPX V ecircumflex -71 +KPX V edieresis -71 +KPX V edotaccent -111 +KPX V egrave -71 +KPX V emacron -71 +KPX V eogonek -111 +KPX V hyphen -100 +KPX V i -60 +KPX V iacute -60 +KPX V icircumflex -20 +KPX V idieresis -20 +KPX V igrave -20 +KPX V imacron -20 +KPX V iogonek -60 +KPX V o -129 +KPX V oacute -129 +KPX V ocircumflex -129 +KPX V odieresis -89 +KPX V ograve -89 +KPX V ohungarumlaut -129 +KPX V omacron -89 +KPX V oslash -129 +KPX V otilde -89 +KPX V period -129 +KPX V semicolon -74 +KPX V u -75 +KPX V uacute -75 +KPX V ucircumflex -75 +KPX V udieresis -75 +KPX V ugrave -75 +KPX V uhungarumlaut -75 +KPX V umacron -75 +KPX V uogonek -75 +KPX V uring -75 +KPX W A -120 +KPX W Aacute -120 +KPX W Abreve -120 +KPX W Acircumflex -120 +KPX W Adieresis -120 +KPX W Agrave -120 +KPX W Amacron -120 +KPX W Aogonek -120 +KPX W Aring -120 +KPX W Atilde -120 +KPX W O -10 +KPX W Oacute -10 +KPX W Ocircumflex -10 +KPX W Odieresis -10 +KPX W Ograve -10 +KPX W Ohungarumlaut -10 +KPX W Omacron -10 +KPX W Oslash -10 +KPX W Otilde -10 +KPX W a -80 +KPX W aacute -80 +KPX W abreve -80 +KPX W acircumflex -80 +KPX W adieresis -80 +KPX W agrave -80 +KPX W amacron -80 +KPX W aogonek -80 +KPX W aring -80 +KPX W atilde -80 +KPX W colon -37 +KPX W comma -92 +KPX W e -80 +KPX W eacute -80 +KPX W ecaron -80 +KPX W ecircumflex -80 +KPX W edieresis -40 +KPX W edotaccent -80 +KPX W egrave -40 +KPX W emacron -40 +KPX W eogonek -80 +KPX W hyphen -65 +KPX W i -40 +KPX W iacute -40 +KPX W iogonek -40 +KPX W o -80 +KPX W oacute -80 +KPX W ocircumflex -80 +KPX W odieresis -80 +KPX W ograve -80 +KPX W ohungarumlaut -80 +KPX W omacron -80 +KPX W oslash -80 +KPX W otilde -80 +KPX W period -92 +KPX W semicolon -37 +KPX W u -50 +KPX W uacute -50 +KPX W ucircumflex -50 +KPX W udieresis -50 +KPX W ugrave -50 +KPX W uhungarumlaut -50 +KPX W umacron -50 +KPX W uogonek -50 +KPX W uring -50 +KPX W y -73 +KPX W yacute -73 +KPX W ydieresis -73 +KPX Y A -120 +KPX Y Aacute -120 +KPX Y Abreve -120 +KPX Y Acircumflex -120 +KPX Y Adieresis -120 +KPX Y Agrave -120 +KPX Y Amacron -120 +KPX Y Aogonek -120 +KPX Y Aring -120 +KPX Y Atilde -120 +KPX Y O -30 +KPX Y Oacute -30 +KPX Y Ocircumflex -30 +KPX Y Odieresis -30 +KPX Y Ograve -30 +KPX Y Ohungarumlaut -30 +KPX Y Omacron -30 +KPX Y Oslash -30 +KPX Y Otilde -30 +KPX Y a -100 +KPX Y aacute -100 +KPX Y abreve -100 +KPX Y acircumflex -100 +KPX Y adieresis -60 +KPX Y agrave -60 +KPX Y amacron -60 +KPX Y aogonek -100 +KPX Y aring -100 +KPX Y atilde -60 +KPX Y colon -92 +KPX Y comma -129 +KPX Y e -100 +KPX Y eacute -100 +KPX Y ecaron -100 +KPX Y ecircumflex -100 +KPX Y edieresis -60 +KPX Y edotaccent -100 +KPX Y egrave -60 +KPX Y emacron -60 +KPX Y eogonek -100 +KPX Y hyphen -111 +KPX Y i -55 +KPX Y iacute -55 +KPX Y iogonek -55 +KPX Y o -110 +KPX Y oacute -110 +KPX Y ocircumflex -110 +KPX Y odieresis -70 +KPX Y ograve -70 +KPX Y ohungarumlaut -110 +KPX Y omacron -70 +KPX Y oslash -110 +KPX Y otilde -70 +KPX Y period -129 +KPX Y semicolon -92 +KPX Y u -111 +KPX Y uacute -111 +KPX Y ucircumflex -111 +KPX Y udieresis -71 +KPX Y ugrave -71 +KPX Y uhungarumlaut -111 +KPX Y umacron -71 +KPX Y uogonek -111 +KPX Y uring -111 +KPX Yacute A -120 +KPX Yacute Aacute -120 +KPX Yacute Abreve -120 +KPX Yacute Acircumflex -120 +KPX Yacute Adieresis -120 +KPX Yacute Agrave -120 +KPX Yacute Amacron -120 +KPX Yacute Aogonek -120 +KPX Yacute Aring -120 +KPX Yacute Atilde -120 +KPX Yacute O -30 +KPX Yacute Oacute -30 +KPX Yacute Ocircumflex -30 +KPX Yacute Odieresis -30 +KPX Yacute Ograve -30 +KPX Yacute Ohungarumlaut -30 +KPX Yacute Omacron -30 +KPX Yacute Oslash -30 +KPX Yacute Otilde -30 +KPX Yacute a -100 +KPX Yacute aacute -100 +KPX Yacute abreve -100 +KPX Yacute acircumflex -100 +KPX Yacute adieresis -60 +KPX Yacute agrave -60 +KPX Yacute amacron -60 +KPX Yacute aogonek -100 +KPX Yacute aring -100 +KPX Yacute atilde -60 +KPX Yacute colon -92 +KPX Yacute comma -129 +KPX Yacute e -100 +KPX Yacute eacute -100 +KPX Yacute ecaron -100 +KPX Yacute ecircumflex -100 +KPX Yacute edieresis -60 +KPX Yacute edotaccent -100 +KPX Yacute egrave -60 +KPX Yacute emacron -60 +KPX Yacute eogonek -100 +KPX Yacute hyphen -111 +KPX Yacute i -55 +KPX Yacute iacute -55 +KPX Yacute iogonek -55 +KPX Yacute o -110 +KPX Yacute oacute -110 +KPX Yacute ocircumflex -110 +KPX Yacute odieresis -70 +KPX Yacute ograve -70 +KPX Yacute ohungarumlaut -110 +KPX Yacute omacron -70 +KPX Yacute oslash -110 +KPX Yacute otilde -70 +KPX Yacute period -129 +KPX Yacute semicolon -92 +KPX Yacute u -111 +KPX Yacute uacute -111 +KPX Yacute ucircumflex -111 +KPX Yacute udieresis -71 +KPX Yacute ugrave -71 +KPX Yacute uhungarumlaut -111 +KPX Yacute umacron -71 +KPX Yacute uogonek -111 +KPX Yacute uring -111 +KPX Ydieresis A -120 +KPX Ydieresis Aacute -120 +KPX Ydieresis Abreve -120 +KPX Ydieresis Acircumflex -120 +KPX Ydieresis Adieresis -120 +KPX Ydieresis Agrave -120 +KPX Ydieresis Amacron -120 +KPX Ydieresis Aogonek -120 +KPX Ydieresis Aring -120 +KPX Ydieresis Atilde -120 +KPX Ydieresis O -30 +KPX Ydieresis Oacute -30 +KPX Ydieresis Ocircumflex -30 +KPX Ydieresis Odieresis -30 +KPX Ydieresis Ograve -30 +KPX Ydieresis Ohungarumlaut -30 +KPX Ydieresis Omacron -30 +KPX Ydieresis Oslash -30 +KPX Ydieresis Otilde -30 +KPX Ydieresis a -100 +KPX Ydieresis aacute -100 +KPX Ydieresis abreve -100 +KPX Ydieresis acircumflex -100 +KPX Ydieresis adieresis -60 +KPX Ydieresis agrave -60 +KPX Ydieresis amacron -60 +KPX Ydieresis aogonek -100 +KPX Ydieresis aring -100 +KPX Ydieresis atilde -100 +KPX Ydieresis colon -92 +KPX Ydieresis comma -129 +KPX Ydieresis e -100 +KPX Ydieresis eacute -100 +KPX Ydieresis ecaron -100 +KPX Ydieresis ecircumflex -100 +KPX Ydieresis edieresis -60 +KPX Ydieresis edotaccent -100 +KPX Ydieresis egrave -60 +KPX Ydieresis emacron -60 +KPX Ydieresis eogonek -100 +KPX Ydieresis hyphen -111 +KPX Ydieresis i -55 +KPX Ydieresis iacute -55 +KPX Ydieresis iogonek -55 +KPX Ydieresis o -110 +KPX Ydieresis oacute -110 +KPX Ydieresis ocircumflex -110 +KPX Ydieresis odieresis -70 +KPX Ydieresis ograve -70 +KPX Ydieresis ohungarumlaut -110 +KPX Ydieresis omacron -70 +KPX Ydieresis oslash -110 +KPX Ydieresis otilde -70 +KPX Ydieresis period -129 +KPX Ydieresis semicolon -92 +KPX Ydieresis u -111 +KPX Ydieresis uacute -111 +KPX Ydieresis ucircumflex -111 +KPX Ydieresis udieresis -71 +KPX Ydieresis ugrave -71 +KPX Ydieresis uhungarumlaut -111 +KPX Ydieresis umacron -71 +KPX Ydieresis uogonek -111 +KPX Ydieresis uring -111 +KPX a v -20 +KPX a w -15 +KPX aacute v -20 +KPX aacute w -15 +KPX abreve v -20 +KPX abreve w -15 +KPX acircumflex v -20 +KPX acircumflex w -15 +KPX adieresis v -20 +KPX adieresis w -15 +KPX agrave v -20 +KPX agrave w -15 +KPX amacron v -20 +KPX amacron w -15 +KPX aogonek v -20 +KPX aogonek w -15 +KPX aring v -20 +KPX aring w -15 +KPX atilde v -20 +KPX atilde w -15 +KPX b period -40 +KPX b u -20 +KPX b uacute -20 +KPX b ucircumflex -20 +KPX b udieresis -20 +KPX b ugrave -20 +KPX b uhungarumlaut -20 +KPX b umacron -20 +KPX b uogonek -20 +KPX b uring -20 +KPX b v -15 +KPX c y -15 +KPX c yacute -15 +KPX c ydieresis -15 +KPX cacute y -15 +KPX cacute yacute -15 +KPX cacute ydieresis -15 +KPX ccaron y -15 +KPX ccaron yacute -15 +KPX ccaron ydieresis -15 +KPX ccedilla y -15 +KPX ccedilla yacute -15 +KPX ccedilla ydieresis -15 +KPX comma quotedblright -70 +KPX comma quoteright -70 +KPX e g -15 +KPX e gbreve -15 +KPX e gcommaaccent -15 +KPX e v -25 +KPX e w -25 +KPX e x -15 +KPX e y -15 +KPX e yacute -15 +KPX e ydieresis -15 +KPX eacute g -15 +KPX eacute gbreve -15 +KPX eacute gcommaaccent -15 +KPX eacute v -25 +KPX eacute w -25 +KPX eacute x -15 +KPX eacute y -15 +KPX eacute yacute -15 +KPX eacute ydieresis -15 +KPX ecaron g -15 +KPX ecaron gbreve -15 +KPX ecaron gcommaaccent -15 +KPX ecaron v -25 +KPX ecaron w -25 +KPX ecaron x -15 +KPX ecaron y -15 +KPX ecaron yacute -15 +KPX ecaron ydieresis -15 +KPX ecircumflex g -15 +KPX ecircumflex gbreve -15 +KPX ecircumflex gcommaaccent -15 +KPX ecircumflex v -25 +KPX ecircumflex w -25 +KPX ecircumflex x -15 +KPX ecircumflex y -15 +KPX ecircumflex yacute -15 +KPX ecircumflex ydieresis -15 +KPX edieresis g -15 +KPX edieresis gbreve -15 +KPX edieresis gcommaaccent -15 +KPX edieresis v -25 +KPX edieresis w -25 +KPX edieresis x -15 +KPX edieresis y -15 +KPX edieresis yacute -15 +KPX edieresis ydieresis -15 +KPX edotaccent g -15 +KPX edotaccent gbreve -15 +KPX edotaccent gcommaaccent -15 +KPX edotaccent v -25 +KPX edotaccent w -25 +KPX edotaccent x -15 +KPX edotaccent y -15 +KPX edotaccent yacute -15 +KPX edotaccent ydieresis -15 +KPX egrave g -15 +KPX egrave gbreve -15 +KPX egrave gcommaaccent -15 +KPX egrave v -25 +KPX egrave w -25 +KPX egrave x -15 +KPX egrave y -15 +KPX egrave yacute -15 +KPX egrave ydieresis -15 +KPX emacron g -15 +KPX emacron gbreve -15 +KPX emacron gcommaaccent -15 +KPX emacron v -25 +KPX emacron w -25 +KPX emacron x -15 +KPX emacron y -15 +KPX emacron yacute -15 +KPX emacron ydieresis -15 +KPX eogonek g -15 +KPX eogonek gbreve -15 +KPX eogonek gcommaaccent -15 +KPX eogonek v -25 +KPX eogonek w -25 +KPX eogonek x -15 +KPX eogonek y -15 +KPX eogonek yacute -15 +KPX eogonek ydieresis -15 +KPX f a -10 +KPX f aacute -10 +KPX f abreve -10 +KPX f acircumflex -10 +KPX f adieresis -10 +KPX f agrave -10 +KPX f amacron -10 +KPX f aogonek -10 +KPX f aring -10 +KPX f atilde -10 +KPX f dotlessi -50 +KPX f f -25 +KPX f i -20 +KPX f iacute -20 +KPX f quoteright 55 +KPX g a -5 +KPX g aacute -5 +KPX g abreve -5 +KPX g acircumflex -5 +KPX g adieresis -5 +KPX g agrave -5 +KPX g amacron -5 +KPX g aogonek -5 +KPX g aring -5 +KPX g atilde -5 +KPX gbreve a -5 +KPX gbreve aacute -5 +KPX gbreve abreve -5 +KPX gbreve acircumflex -5 +KPX gbreve adieresis -5 +KPX gbreve agrave -5 +KPX gbreve amacron -5 +KPX gbreve aogonek -5 +KPX gbreve aring -5 +KPX gbreve atilde -5 +KPX gcommaaccent a -5 +KPX gcommaaccent aacute -5 +KPX gcommaaccent abreve -5 +KPX gcommaaccent acircumflex -5 +KPX gcommaaccent adieresis -5 +KPX gcommaaccent agrave -5 +KPX gcommaaccent amacron -5 +KPX gcommaaccent aogonek -5 +KPX gcommaaccent aring -5 +KPX gcommaaccent atilde -5 +KPX h y -5 +KPX h yacute -5 +KPX h ydieresis -5 +KPX i v -25 +KPX iacute v -25 +KPX icircumflex v -25 +KPX idieresis v -25 +KPX igrave v -25 +KPX imacron v -25 +KPX iogonek v -25 +KPX k e -10 +KPX k eacute -10 +KPX k ecaron -10 +KPX k ecircumflex -10 +KPX k edieresis -10 +KPX k edotaccent -10 +KPX k egrave -10 +KPX k emacron -10 +KPX k eogonek -10 +KPX k o -10 +KPX k oacute -10 +KPX k ocircumflex -10 +KPX k odieresis -10 +KPX k ograve -10 +KPX k ohungarumlaut -10 +KPX k omacron -10 +KPX k oslash -10 +KPX k otilde -10 +KPX k y -15 +KPX k yacute -15 +KPX k ydieresis -15 +KPX kcommaaccent e -10 +KPX kcommaaccent eacute -10 +KPX kcommaaccent ecaron -10 +KPX kcommaaccent ecircumflex -10 +KPX kcommaaccent edieresis -10 +KPX kcommaaccent edotaccent -10 +KPX kcommaaccent egrave -10 +KPX kcommaaccent emacron -10 +KPX kcommaaccent eogonek -10 +KPX kcommaaccent o -10 +KPX kcommaaccent oacute -10 +KPX kcommaaccent ocircumflex -10 +KPX kcommaaccent odieresis -10 +KPX kcommaaccent ograve -10 +KPX kcommaaccent ohungarumlaut -10 +KPX kcommaaccent omacron -10 +KPX kcommaaccent oslash -10 +KPX kcommaaccent otilde -10 +KPX kcommaaccent y -15 +KPX kcommaaccent yacute -15 +KPX kcommaaccent ydieresis -15 +KPX l w -10 +KPX lacute w -10 +KPX lcommaaccent w -10 +KPX lslash w -10 +KPX n v -40 +KPX n y -15 +KPX n yacute -15 +KPX n ydieresis -15 +KPX nacute v -40 +KPX nacute y -15 +KPX nacute yacute -15 +KPX nacute ydieresis -15 +KPX ncaron v -40 +KPX ncaron y -15 +KPX ncaron yacute -15 +KPX ncaron ydieresis -15 +KPX ncommaaccent v -40 +KPX ncommaaccent y -15 +KPX ncommaaccent yacute -15 +KPX ncommaaccent ydieresis -15 +KPX ntilde v -40 +KPX ntilde y -15 +KPX ntilde yacute -15 +KPX ntilde ydieresis -15 +KPX o v -15 +KPX o w -25 +KPX o y -10 +KPX o yacute -10 +KPX o ydieresis -10 +KPX oacute v -15 +KPX oacute w -25 +KPX oacute y -10 +KPX oacute yacute -10 +KPX oacute ydieresis -10 +KPX ocircumflex v -15 +KPX ocircumflex w -25 +KPX ocircumflex y -10 +KPX ocircumflex yacute -10 +KPX ocircumflex ydieresis -10 +KPX odieresis v -15 +KPX odieresis w -25 +KPX odieresis y -10 +KPX odieresis yacute -10 +KPX odieresis ydieresis -10 +KPX ograve v -15 +KPX ograve w -25 +KPX ograve y -10 +KPX ograve yacute -10 +KPX ograve ydieresis -10 +KPX ohungarumlaut v -15 +KPX ohungarumlaut w -25 +KPX ohungarumlaut y -10 +KPX ohungarumlaut yacute -10 +KPX ohungarumlaut ydieresis -10 +KPX omacron v -15 +KPX omacron w -25 +KPX omacron y -10 +KPX omacron yacute -10 +KPX omacron ydieresis -10 +KPX oslash v -15 +KPX oslash w -25 +KPX oslash y -10 +KPX oslash yacute -10 +KPX oslash ydieresis -10 +KPX otilde v -15 +KPX otilde w -25 +KPX otilde y -10 +KPX otilde yacute -10 +KPX otilde ydieresis -10 +KPX p y -10 +KPX p yacute -10 +KPX p ydieresis -10 +KPX period quotedblright -70 +KPX period quoteright -70 +KPX quotedblleft A -80 +KPX quotedblleft Aacute -80 +KPX quotedblleft Abreve -80 +KPX quotedblleft Acircumflex -80 +KPX quotedblleft Adieresis -80 +KPX quotedblleft Agrave -80 +KPX quotedblleft Amacron -80 +KPX quotedblleft Aogonek -80 +KPX quotedblleft Aring -80 +KPX quotedblleft Atilde -80 +KPX quoteleft A -80 +KPX quoteleft Aacute -80 +KPX quoteleft Abreve -80 +KPX quoteleft Acircumflex -80 +KPX quoteleft Adieresis -80 +KPX quoteleft Agrave -80 +KPX quoteleft Amacron -80 +KPX quoteleft Aogonek -80 +KPX quoteleft Aring -80 +KPX quoteleft Atilde -80 +KPX quoteleft quoteleft -74 +KPX quoteright d -50 +KPX quoteright dcroat -50 +KPX quoteright l -10 +KPX quoteright lacute -10 +KPX quoteright lcommaaccent -10 +KPX quoteright lslash -10 +KPX quoteright quoteright -74 +KPX quoteright r -50 +KPX quoteright racute -50 +KPX quoteright rcaron -50 +KPX quoteright rcommaaccent -50 +KPX quoteright s -55 +KPX quoteright sacute -55 +KPX quoteright scaron -55 +KPX quoteright scedilla -55 +KPX quoteright scommaaccent -55 +KPX quoteright space -74 +KPX quoteright t -18 +KPX quoteright tcommaaccent -18 +KPX quoteright v -50 +KPX r comma -40 +KPX r g -18 +KPX r gbreve -18 +KPX r gcommaaccent -18 +KPX r hyphen -20 +KPX r period -55 +KPX racute comma -40 +KPX racute g -18 +KPX racute gbreve -18 +KPX racute gcommaaccent -18 +KPX racute hyphen -20 +KPX racute period -55 +KPX rcaron comma -40 +KPX rcaron g -18 +KPX rcaron gbreve -18 +KPX rcaron gcommaaccent -18 +KPX rcaron hyphen -20 +KPX rcaron period -55 +KPX rcommaaccent comma -40 +KPX rcommaaccent g -18 +KPX rcommaaccent gbreve -18 +KPX rcommaaccent gcommaaccent -18 +KPX rcommaaccent hyphen -20 +KPX rcommaaccent period -55 +KPX space A -55 +KPX space Aacute -55 +KPX space Abreve -55 +KPX space Acircumflex -55 +KPX space Adieresis -55 +KPX space Agrave -55 +KPX space Amacron -55 +KPX space Aogonek -55 +KPX space Aring -55 +KPX space Atilde -55 +KPX space T -18 +KPX space Tcaron -18 +KPX space Tcommaaccent -18 +KPX space V -50 +KPX space W -30 +KPX space Y -90 +KPX space Yacute -90 +KPX space Ydieresis -90 +KPX v a -25 +KPX v aacute -25 +KPX v abreve -25 +KPX v acircumflex -25 +KPX v adieresis -25 +KPX v agrave -25 +KPX v amacron -25 +KPX v aogonek -25 +KPX v aring -25 +KPX v atilde -25 +KPX v comma -65 +KPX v e -15 +KPX v eacute -15 +KPX v ecaron -15 +KPX v ecircumflex -15 +KPX v edieresis -15 +KPX v edotaccent -15 +KPX v egrave -15 +KPX v emacron -15 +KPX v eogonek -15 +KPX v o -20 +KPX v oacute -20 +KPX v ocircumflex -20 +KPX v odieresis -20 +KPX v ograve -20 +KPX v ohungarumlaut -20 +KPX v omacron -20 +KPX v oslash -20 +KPX v otilde -20 +KPX v period -65 +KPX w a -10 +KPX w aacute -10 +KPX w abreve -10 +KPX w acircumflex -10 +KPX w adieresis -10 +KPX w agrave -10 +KPX w amacron -10 +KPX w aogonek -10 +KPX w aring -10 +KPX w atilde -10 +KPX w comma -65 +KPX w o -10 +KPX w oacute -10 +KPX w ocircumflex -10 +KPX w odieresis -10 +KPX w ograve -10 +KPX w ohungarumlaut -10 +KPX w omacron -10 +KPX w oslash -10 +KPX w otilde -10 +KPX w period -65 +KPX x e -15 +KPX x eacute -15 +KPX x ecaron -15 +KPX x ecircumflex -15 +KPX x edieresis -15 +KPX x edotaccent -15 +KPX x egrave -15 +KPX x emacron -15 +KPX x eogonek -15 +KPX y comma -65 +KPX y period -65 +KPX yacute comma -65 +KPX yacute period -65 +KPX ydieresis comma -65 +KPX ydieresis period -65 +EndKernPairs +EndKernData +EndFontMetrics diff --git a/pyx/data/afm/ZapfDingbats.afm b/pyx/data/afm/ZapfDingbats.afm new file mode 100644 index 00000000..dc5662e2 --- /dev/null +++ b/pyx/data/afm/ZapfDingbats.afm @@ -0,0 +1,225 @@ +StartFontMetrics 4.1 +Comment Copyright (c) 1985, 1987, 1988, 1989, 1997 Adobe Systems Incorporated. All Rights Reserved. +Comment Creation Date: Thu May 1 15:14:13 1997 +Comment UniqueID 43082 +Comment VMusage 45775 55535 +FontName ZapfDingbats +FullName ITC Zapf Dingbats +FamilyName ZapfDingbats +Weight Medium +ItalicAngle 0 +IsFixedPitch false +CharacterSet Special +FontBBox -1 -143 981 820 +UnderlinePosition -100 +UnderlineThickness 50 +Version 002.000 +Notice Copyright (c) 1985, 1987, 1988, 1989, 1997 Adobe Systems Incorporated. All Rights Reserved.ITC Zapf Dingbats is a registered trademark of International Typeface Corporation. +EncodingScheme FontSpecific +StdHW 28 +StdVW 90 +StartCharMetrics 202 +C 32 ; WX 278 ; N space ; B 0 0 0 0 ; +C 33 ; WX 974 ; N a1 ; B 35 72 939 621 ; +C 34 ; WX 961 ; N a2 ; B 35 81 927 611 ; +C 35 ; WX 974 ; N a202 ; B 35 72 939 621 ; +C 36 ; WX 980 ; N a3 ; B 35 0 945 692 ; +C 37 ; WX 719 ; N a4 ; B 34 139 685 566 ; +C 38 ; WX 789 ; N a5 ; B 35 -14 755 705 ; +C 39 ; WX 790 ; N a119 ; B 35 -14 755 705 ; +C 40 ; WX 791 ; N a118 ; B 35 -13 761 705 ; +C 41 ; WX 690 ; N a117 ; B 34 138 655 553 ; +C 42 ; WX 960 ; N a11 ; B 35 123 925 568 ; +C 43 ; WX 939 ; N a12 ; B 35 134 904 559 ; +C 44 ; WX 549 ; N a13 ; B 29 -11 516 705 ; +C 45 ; WX 855 ; N a14 ; B 34 59 820 632 ; +C 46 ; WX 911 ; N a15 ; B 35 50 876 642 ; +C 47 ; WX 933 ; N a16 ; B 35 139 899 550 ; +C 48 ; WX 911 ; N a105 ; B 35 50 876 642 ; +C 49 ; WX 945 ; N a17 ; B 35 139 909 553 ; +C 50 ; WX 974 ; N a18 ; B 35 104 938 587 ; +C 51 ; WX 755 ; N a19 ; B 34 -13 721 705 ; +C 52 ; WX 846 ; N a20 ; B 36 -14 811 705 ; +C 53 ; WX 762 ; N a21 ; B 35 0 727 692 ; +C 54 ; WX 761 ; N a22 ; B 35 0 727 692 ; +C 55 ; WX 571 ; N a23 ; B -1 -68 571 661 ; +C 56 ; WX 677 ; N a24 ; B 36 -13 642 705 ; +C 57 ; WX 763 ; N a25 ; B 35 0 728 692 ; +C 58 ; WX 760 ; N a26 ; B 35 0 726 692 ; +C 59 ; WX 759 ; N a27 ; B 35 0 725 692 ; +C 60 ; WX 754 ; N a28 ; B 35 0 720 692 ; +C 61 ; WX 494 ; N a6 ; B 35 0 460 692 ; +C 62 ; WX 552 ; N a7 ; B 35 0 517 692 ; +C 63 ; WX 537 ; N a8 ; B 35 0 503 692 ; +C 64 ; WX 577 ; N a9 ; B 35 96 542 596 ; +C 65 ; WX 692 ; N a10 ; B 35 -14 657 705 ; +C 66 ; WX 786 ; N a29 ; B 35 -14 751 705 ; +C 67 ; WX 788 ; N a30 ; B 35 -14 752 705 ; +C 68 ; WX 788 ; N a31 ; B 35 -14 753 705 ; +C 69 ; WX 790 ; N a32 ; B 35 -14 756 705 ; +C 70 ; WX 793 ; N a33 ; B 35 -13 759 705 ; +C 71 ; WX 794 ; N a34 ; B 35 -13 759 705 ; +C 72 ; WX 816 ; N a35 ; B 35 -14 782 705 ; +C 73 ; WX 823 ; N a36 ; B 35 -14 787 705 ; +C 74 ; WX 789 ; N a37 ; B 35 -14 754 705 ; +C 75 ; WX 841 ; N a38 ; B 35 -14 807 705 ; +C 76 ; WX 823 ; N a39 ; B 35 -14 789 705 ; +C 77 ; WX 833 ; N a40 ; B 35 -14 798 705 ; +C 78 ; WX 816 ; N a41 ; B 35 -13 782 705 ; +C 79 ; WX 831 ; N a42 ; B 35 -14 796 705 ; +C 80 ; WX 923 ; N a43 ; B 35 -14 888 705 ; +C 81 ; WX 744 ; N a44 ; B 35 0 710 692 ; +C 82 ; WX 723 ; N a45 ; B 35 0 688 692 ; +C 83 ; WX 749 ; N a46 ; B 35 0 714 692 ; +C 84 ; WX 790 ; N a47 ; B 34 -14 756 705 ; +C 85 ; WX 792 ; N a48 ; B 35 -14 758 705 ; +C 86 ; WX 695 ; N a49 ; B 35 -14 661 706 ; +C 87 ; WX 776 ; N a50 ; B 35 -6 741 699 ; +C 88 ; WX 768 ; N a51 ; B 35 -7 734 699 ; +C 89 ; WX 792 ; N a52 ; B 35 -14 757 705 ; +C 90 ; WX 759 ; N a53 ; B 35 0 725 692 ; +C 91 ; WX 707 ; N a54 ; B 35 -13 672 704 ; +C 92 ; WX 708 ; N a55 ; B 35 -14 672 705 ; +C 93 ; WX 682 ; N a56 ; B 35 -14 647 705 ; +C 94 ; WX 701 ; N a57 ; B 35 -14 666 705 ; +C 95 ; WX 826 ; N a58 ; B 35 -14 791 705 ; +C 96 ; WX 815 ; N a59 ; B 35 -14 780 705 ; +C 97 ; WX 789 ; N a60 ; B 35 -14 754 705 ; +C 98 ; WX 789 ; N a61 ; B 35 -14 754 705 ; +C 99 ; WX 707 ; N a62 ; B 34 -14 673 705 ; +C 100 ; WX 687 ; N a63 ; B 36 0 651 692 ; +C 101 ; WX 696 ; N a64 ; B 35 0 661 691 ; +C 102 ; WX 689 ; N a65 ; B 35 0 655 692 ; +C 103 ; WX 786 ; N a66 ; B 34 -14 751 705 ; +C 104 ; WX 787 ; N a67 ; B 35 -14 752 705 ; +C 105 ; WX 713 ; N a68 ; B 35 -14 678 705 ; +C 106 ; WX 791 ; N a69 ; B 35 -14 756 705 ; +C 107 ; WX 785 ; N a70 ; B 36 -14 751 705 ; +C 108 ; WX 791 ; N a71 ; B 35 -14 757 705 ; +C 109 ; WX 873 ; N a72 ; B 35 -14 838 705 ; +C 110 ; WX 761 ; N a73 ; B 35 0 726 692 ; +C 111 ; WX 762 ; N a74 ; B 35 0 727 692 ; +C 112 ; WX 762 ; N a203 ; B 35 0 727 692 ; +C 113 ; WX 759 ; N a75 ; B 35 0 725 692 ; +C 114 ; WX 759 ; N a204 ; B 35 0 725 692 ; +C 115 ; WX 892 ; N a76 ; B 35 0 858 705 ; +C 116 ; WX 892 ; N a77 ; B 35 -14 858 692 ; +C 117 ; WX 788 ; N a78 ; B 35 -14 754 705 ; +C 118 ; WX 784 ; N a79 ; B 35 -14 749 705 ; +C 119 ; WX 438 ; N a81 ; B 35 -14 403 705 ; +C 120 ; WX 138 ; N a82 ; B 35 0 104 692 ; +C 121 ; WX 277 ; N a83 ; B 35 0 242 692 ; +C 122 ; WX 415 ; N a84 ; B 35 0 380 692 ; +C 123 ; WX 392 ; N a97 ; B 35 263 357 705 ; +C 124 ; WX 392 ; N a98 ; B 34 263 357 705 ; +C 125 ; WX 668 ; N a99 ; B 35 263 633 705 ; +C 126 ; WX 668 ; N a100 ; B 36 263 634 705 ; +C 128 ; WX 390 ; N a89 ; B 35 -14 356 705 ; +C 129 ; WX 390 ; N a90 ; B 35 -14 355 705 ; +C 130 ; WX 317 ; N a93 ; B 35 0 283 692 ; +C 131 ; WX 317 ; N a94 ; B 35 0 283 692 ; +C 132 ; WX 276 ; N a91 ; B 35 0 242 692 ; +C 133 ; WX 276 ; N a92 ; B 35 0 242 692 ; +C 134 ; WX 509 ; N a205 ; B 35 0 475 692 ; +C 135 ; WX 509 ; N a85 ; B 35 0 475 692 ; +C 136 ; WX 410 ; N a206 ; B 35 0 375 692 ; +C 137 ; WX 410 ; N a86 ; B 35 0 375 692 ; +C 138 ; WX 234 ; N a87 ; B 35 -14 199 705 ; +C 139 ; WX 234 ; N a88 ; B 35 -14 199 705 ; +C 140 ; WX 334 ; N a95 ; B 35 0 299 692 ; +C 141 ; WX 334 ; N a96 ; B 35 0 299 692 ; +C 161 ; WX 732 ; N a101 ; B 35 -143 697 806 ; +C 162 ; WX 544 ; N a102 ; B 56 -14 488 706 ; +C 163 ; WX 544 ; N a103 ; B 34 -14 508 705 ; +C 164 ; WX 910 ; N a104 ; B 35 40 875 651 ; +C 165 ; WX 667 ; N a106 ; B 35 -14 633 705 ; +C 166 ; WX 760 ; N a107 ; B 35 -14 726 705 ; +C 167 ; WX 760 ; N a108 ; B 0 121 758 569 ; +C 168 ; WX 776 ; N a112 ; B 35 0 741 705 ; +C 169 ; WX 595 ; N a111 ; B 34 -14 560 705 ; +C 170 ; WX 694 ; N a110 ; B 35 -14 659 705 ; +C 171 ; WX 626 ; N a109 ; B 34 0 591 705 ; +C 172 ; WX 788 ; N a120 ; B 35 -14 754 705 ; +C 173 ; WX 788 ; N a121 ; B 35 -14 754 705 ; +C 174 ; WX 788 ; N a122 ; B 35 -14 754 705 ; +C 175 ; WX 788 ; N a123 ; B 35 -14 754 705 ; +C 176 ; WX 788 ; N a124 ; B 35 -14 754 705 ; +C 177 ; WX 788 ; N a125 ; B 35 -14 754 705 ; +C 178 ; WX 788 ; N a126 ; B 35 -14 754 705 ; +C 179 ; WX 788 ; N a127 ; B 35 -14 754 705 ; +C 180 ; WX 788 ; N a128 ; B 35 -14 754 705 ; +C 181 ; WX 788 ; N a129 ; B 35 -14 754 705 ; +C 182 ; WX 788 ; N a130 ; B 35 -14 754 705 ; +C 183 ; WX 788 ; N a131 ; B 35 -14 754 705 ; +C 184 ; WX 788 ; N a132 ; B 35 -14 754 705 ; +C 185 ; WX 788 ; N a133 ; B 35 -14 754 705 ; +C 186 ; WX 788 ; N a134 ; B 35 -14 754 705 ; +C 187 ; WX 788 ; N a135 ; B 35 -14 754 705 ; +C 188 ; WX 788 ; N a136 ; B 35 -14 754 705 ; +C 189 ; WX 788 ; N a137 ; B 35 -14 754 705 ; +C 190 ; WX 788 ; N a138 ; B 35 -14 754 705 ; +C 191 ; WX 788 ; N a139 ; B 35 -14 754 705 ; +C 192 ; WX 788 ; N a140 ; B 35 -14 754 705 ; +C 193 ; WX 788 ; N a141 ; B 35 -14 754 705 ; +C 194 ; WX 788 ; N a142 ; B 35 -14 754 705 ; +C 195 ; WX 788 ; N a143 ; B 35 -14 754 705 ; +C 196 ; WX 788 ; N a144 ; B 35 -14 754 705 ; +C 197 ; WX 788 ; N a145 ; B 35 -14 754 705 ; +C 198 ; WX 788 ; N a146 ; B 35 -14 754 705 ; +C 199 ; WX 788 ; N a147 ; B 35 -14 754 705 ; +C 200 ; WX 788 ; N a148 ; B 35 -14 754 705 ; +C 201 ; WX 788 ; N a149 ; B 35 -14 754 705 ; +C 202 ; WX 788 ; N a150 ; B 35 -14 754 705 ; +C 203 ; WX 788 ; N a151 ; B 35 -14 754 705 ; +C 204 ; WX 788 ; N a152 ; B 35 -14 754 705 ; +C 205 ; WX 788 ; N a153 ; B 35 -14 754 705 ; +C 206 ; WX 788 ; N a154 ; B 35 -14 754 705 ; +C 207 ; WX 788 ; N a155 ; B 35 -14 754 705 ; +C 208 ; WX 788 ; N a156 ; B 35 -14 754 705 ; +C 209 ; WX 788 ; N a157 ; B 35 -14 754 705 ; +C 210 ; WX 788 ; N a158 ; B 35 -14 754 705 ; +C 211 ; WX 788 ; N a159 ; B 35 -14 754 705 ; +C 212 ; WX 894 ; N a160 ; B 35 58 860 634 ; +C 213 ; WX 838 ; N a161 ; B 35 152 803 540 ; +C 214 ; WX 1016 ; N a163 ; B 34 152 981 540 ; +C 215 ; WX 458 ; N a164 ; B 35 -127 422 820 ; +C 216 ; WX 748 ; N a196 ; B 35 94 698 597 ; +C 217 ; WX 924 ; N a165 ; B 35 140 890 552 ; +C 218 ; WX 748 ; N a192 ; B 35 94 698 597 ; +C 219 ; WX 918 ; N a166 ; B 35 166 884 526 ; +C 220 ; WX 927 ; N a167 ; B 35 32 892 660 ; +C 221 ; WX 928 ; N a168 ; B 35 129 891 562 ; +C 222 ; WX 928 ; N a169 ; B 35 128 893 563 ; +C 223 ; WX 834 ; N a170 ; B 35 155 799 537 ; +C 224 ; WX 873 ; N a171 ; B 35 93 838 599 ; +C 225 ; WX 828 ; N a172 ; B 35 104 791 588 ; +C 226 ; WX 924 ; N a173 ; B 35 98 889 594 ; +C 227 ; WX 924 ; N a162 ; B 35 98 889 594 ; +C 228 ; WX 917 ; N a174 ; B 35 0 882 692 ; +C 229 ; WX 930 ; N a175 ; B 35 84 896 608 ; +C 230 ; WX 931 ; N a176 ; B 35 84 896 608 ; +C 231 ; WX 463 ; N a177 ; B 35 -99 429 791 ; +C 232 ; WX 883 ; N a178 ; B 35 71 848 623 ; +C 233 ; WX 836 ; N a179 ; B 35 44 802 648 ; +C 234 ; WX 836 ; N a193 ; B 35 44 802 648 ; +C 235 ; WX 867 ; N a180 ; B 35 101 832 591 ; +C 236 ; WX 867 ; N a199 ; B 35 101 832 591 ; +C 237 ; WX 696 ; N a181 ; B 35 44 661 648 ; +C 238 ; WX 696 ; N a200 ; B 35 44 661 648 ; +C 239 ; WX 874 ; N a182 ; B 35 77 840 619 ; +C 241 ; WX 874 ; N a201 ; B 35 73 840 615 ; +C 242 ; WX 760 ; N a183 ; B 35 0 725 692 ; +C 243 ; WX 946 ; N a184 ; B 35 160 911 533 ; +C 244 ; WX 771 ; N a197 ; B 34 37 736 655 ; +C 245 ; WX 865 ; N a185 ; B 35 207 830 481 ; +C 246 ; WX 771 ; N a194 ; B 34 37 736 655 ; +C 247 ; WX 888 ; N a198 ; B 34 -19 853 712 ; +C 248 ; WX 967 ; N a186 ; B 35 124 932 568 ; +C 249 ; WX 888 ; N a195 ; B 34 -19 853 712 ; +C 250 ; WX 831 ; N a187 ; B 35 113 796 579 ; +C 251 ; WX 873 ; N a188 ; B 36 118 838 578 ; +C 252 ; WX 927 ; N a189 ; B 35 150 891 542 ; +C 253 ; WX 970 ; N a190 ; B 35 76 931 616 ; +C 254 ; WX 918 ; N a191 ; B 34 99 884 593 ; +EndCharMetrics +EndFontMetrics diff --git a/contrib/pyx.def b/pyx/data/def/pyx.def similarity index 100% rename from contrib/pyx.def rename to pyx/data/def/pyx.def diff --git a/pyx/lfs/10pt.lfs b/pyx/data/lfs/10pt.lfs similarity index 100% rename from pyx/lfs/10pt.lfs rename to pyx/data/lfs/10pt.lfs diff --git a/pyx/lfs/10ptex.lfs b/pyx/data/lfs/10ptex.lfs similarity index 100% rename from pyx/lfs/10ptex.lfs rename to pyx/data/lfs/10ptex.lfs diff --git a/pyx/lfs/11pt.lfs b/pyx/data/lfs/11pt.lfs similarity index 100% rename from pyx/lfs/11pt.lfs rename to pyx/data/lfs/11pt.lfs diff --git a/pyx/lfs/11ptex.lfs b/pyx/data/lfs/11ptex.lfs similarity index 100% rename from pyx/lfs/11ptex.lfs rename to pyx/data/lfs/11ptex.lfs diff --git a/pyx/lfs/12pt.lfs b/pyx/data/lfs/12pt.lfs similarity index 100% rename from pyx/lfs/12pt.lfs rename to pyx/data/lfs/12pt.lfs diff --git a/pyx/lfs/12ptex.lfs b/pyx/data/lfs/12ptex.lfs similarity index 100% rename from pyx/lfs/12ptex.lfs rename to pyx/data/lfs/12ptex.lfs diff --git a/pyx/lfs/createlfs.py b/pyx/data/lfs/createlfs.py similarity index 89% rename from pyx/lfs/createlfs.py rename to pyx/data/lfs/createlfs.py index a1c474f9..9666185b 100755 --- a/pyx/lfs/createlfs.py +++ b/pyx/data/lfs/createlfs.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002 Jörg Lehmann -# Copyright (C) 2002 André Wobst +# Copyright (C) 2002 Jörg Lehmann +# Copyright (C) 2002 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/lfs/createlfs.tex b/pyx/data/lfs/createlfs.tex similarity index 100% rename from pyx/lfs/createlfs.tex rename to pyx/data/lfs/createlfs.tex diff --git a/pyx/lfs/foils17pt.lfs b/pyx/data/lfs/foils17pt.lfs similarity index 100% rename from pyx/lfs/foils17pt.lfs rename to pyx/data/lfs/foils17pt.lfs diff --git a/pyx/lfs/foils20pt.lfs b/pyx/data/lfs/foils20pt.lfs similarity index 100% rename from pyx/lfs/foils20pt.lfs rename to pyx/data/lfs/foils20pt.lfs diff --git a/pyx/lfs/foils25pt.lfs b/pyx/data/lfs/foils25pt.lfs similarity index 100% rename from pyx/lfs/foils25pt.lfs rename to pyx/data/lfs/foils25pt.lfs diff --git a/pyx/lfs/foils30pt.lfs b/pyx/data/lfs/foils30pt.lfs similarity index 100% rename from pyx/lfs/foils30pt.lfs rename to pyx/data/lfs/foils30pt.lfs diff --git a/pyx/data/pyxrc b/pyx/data/pyxrc new file mode 100644 index 00000000..8183a21e --- /dev/null +++ b/pyx/data/pyxrc @@ -0,0 +1,70 @@ +# This file is an example containing the runtime configuration options +# of PyX and its default values. You may adapt this file and copy it +# to /etc/pyxrc for systemwide configuration overwriting the PyX +# defaults. Alternatively you may copy it to ~/.pyxrc for personal +# configuration overwritting both, the PyX defaults and the systemwide +# configuration. + +[general] +# general options +# +# warnings are issued using pythons warning module. You can influence +# the output by the following option, using the values "default" (for +# the python default), "short" (for a single line format), and +# "shortest" for printing the warning message itself only. +warnings = shortest + +[text] +# runtime configuration of the text module +# +# 'psfontmaps' is a whitespace separated list of options listing font +# mapping files. Those files contain information about the available +# type1 fonts. Depending on your TeX-installation you may need to add +# further font mapping files like psfonts.cmz (if your TeX installation +# is not configured to use type1 fonts by default). For further +# information browse the FAQ for the term 'font mapping file'. +psfontmaps = psfonts.map + +# 'pdffontmaps' is similar to psfontmaps, but it used when pdf output +# is generated. (Note that pdf has a different set of builtin fonts.) +pdffontmaps = pdftex.map + +# 'waitfortex' is an positive integer, namely the number of seconds +# to be waited for an appropriate response from TeX/LaTeX. +waitfortex = 60 + +# 'showwaitfortex' is an non-negative integer, namely the number of +# seconds to be waited until (and between) emitting messages +# indicating the waiting for an appropriate response from TeX/LaTeX. +# This feature can be turned off by setting showwaitfortex to 0. +showwaitfortex = 5 + +# 'texipc' is a boolean controlling the usage of the --ipc option of +# TeX/LaTeX. You should turn on this option when the ipc-extension is +# available in your TeX installation (check the output of tex --help). +# You will gain immediate access to the dvi-output of TeX by that, +# which will substantially improve the performance of certain +# operations (e.g. the usage of PyX markers). +texipc = 0 + +[filelocator] +# runtime configuration of file search mechanism +# +# 'methods' defines a list of methods to be tried one after each other +# to find files like, e.g., fonts and corresponding metrics information. +# +# Available methods are: +# - 'local': locates files in the current directory. +# - 'internal': locates files within the PyX data tree (also inside +# of zipped Python eggs for Python 2.6 and above). +# - 'recursivedir': locates files by searching recursively in a +# space-separated list of directories, which can +# be specified by the option 'recursivedir'. +# - 'ls-R': locates files by searching a list of ls-R files, +# which can be specified by the option 'ls-R'. +# - 'pykpathsea': locate files using the pykpathsea extension if available. +# Building of this module can be enabled in the setup.cfg +# file distributed with PyX. +# - 'kpsewhich': locate files using the kpsewhich executable if available. +# - 'locate': locate files using a locate executable if available. +methods = local internal pykpathsea kpsewhich diff --git a/pyx/deco.py b/pyx/deco.py index 72c18a3b..f431ef2b 100644 --- a/pyx/deco.py +++ b/pyx/deco.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2003-2011 Michael Schindler +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -25,24 +25,16 @@ # - should we improve on the arc length -> arg parametrization routine or # should we at least factor it out? -from __future__ import nested_scopes - import sys, math -import attr, canvas, color, path, normpath, style, trafo, unit - -try: - from math import radians -except ImportError: - # fallback implementation for Python 2.1 and below - def radians(x): return x*math.pi/180 +import attr, canvas, canvasitem, color, path, normpath, style, trafo, unit, deformer -class _marker: pass +_marker = object() # # Decorated path # -class decoratedpath(canvas.canvasitem): +class decoratedpath(canvasitem.canvasitem): """Decorated path The main purpose of this class is during the drawing @@ -52,7 +44,7 @@ class decoratedpath(canvas.canvasitem): def __init__(self, path, strokepath=None, fillpath=None, styles=None, strokestyles=None, fillstyles=None, - ornaments=None): + ornaments=None, fillrule=style.fillrule.nonzero_winding): self.path = path @@ -70,6 +62,9 @@ class decoratedpath(canvas.canvasitem): else: self.ornaments = ornaments + # the fillrule is either fillrule.nonzero_winding or fillrule.even_odd + self.fillrule = fillrule + self.nostrokeranges = None def ensurenormpath(self): @@ -165,7 +160,10 @@ class decoratedpath(canvas.canvasitem): if self.fillstyles: _writestyles(self.fillstyles, context(), registry, bbox) - file.write("fill\n") + if self.fillrule.even_odd: + file.write("eofill\n") + else: + file.write("fill\n") file.write("grestore\n") acontext = context() @@ -185,7 +183,10 @@ class decoratedpath(canvas.canvasitem): file.write("gsave\n") _writestyles(self.fillstyles, context(), registry, bbox) - file.write("fill\n") + if self.fillrule.even_odd: + file.write("eofill\n") + else: + file.write("fill\n") bbox += fillpath.bbox() if self.fillstyles: @@ -263,7 +264,10 @@ class decoratedpath(canvas.canvasitem): if self.strokestyles: _writestrokestyles(self.strokestyles, acontext, registry, bbox) - file.write("B\n") # both stroke and fill + if self.fillrule.even_odd: + file.write("B*\n") + else: + file.write("B\n") # both stroke and fill # take linewidth into account for bbox when stroking a path bbox += strokepath.bbox().enlarged_pt(0.5*acontext.linewidth_pt) @@ -274,7 +278,10 @@ class decoratedpath(canvas.canvasitem): file.write("q\n") # gsave _writefillstyles(self.fillstyles, context(), registry, bbox) - file.write("f\n") # fill + if self.fillrule.even_odd: + file.write("f*\n") + else: + file.write("f\n") # fill bbox += fillpath.bbox() if self.fillstyles: @@ -458,14 +465,14 @@ class arrow(deco, attr.attr): # self.constriction = 1, we actually have a length which is approximately shorter # by the given geometrical factor. if self.constriction is not None: - constrictionlen = arrowheadconstrictionlen = self.size * self.constriction * math.cos(radians(self.angle/2.0)) + constrictionlen = arrowheadconstrictionlen = self.size * self.constriction * math.cos(math.radians(self.angle/2.0)) else: # if we do not want a constriction, i.e. constriction is None, we still # need constrictionlen for cutting the path - constrictionlen = self.size * 1 * math.cos(radians(self.angle/2.0)) + constrictionlen = self.size * 1 * math.cos(math.radians(self.angle/2.0)) arrowheadconstrictionlen = None - arclenfrombegin = self.pos * anormpath.arclen() + arclenfrombegin = constrictionlen + self.pos * (anormpath.arclen() - constrictionlen) direction = self.reversed and -1 or 1 arrowhead = _arrowhead(anormpath, arclenfrombegin, direction, self.size, self.angle, arrowheadconstrictionlen) @@ -516,7 +523,7 @@ earrow.LARGE = earrow(size=_base*math.sqrt(64)) class text(deco, attr.attr): """a simple text decorator""" - def __init__(self, text, textattrs=[], angle=0, textdist=0.2, + def __init__(self, text, textattrs=[], angle=0, relangle=None, textdist=0.2, relarclenpos=0.5, arclenfrombegin=None, arclenfromend=None, texrunner=None): if arclenfrombegin is not None and arclenfromend is not None: @@ -524,6 +531,7 @@ class text(deco, attr.attr): self.text = text self.textattrs = textattrs self.angle = angle + self.relangle = relangle self.textdist = textdist self.relarclenpos = relarclenpos self.arclenfrombegin = arclenfrombegin @@ -538,15 +546,22 @@ class text(deco, attr.attr): dp.ensurenormpath() if self.arclenfrombegin is not None: - x, y = dp.path.at(dp.path.begin() + self.arclenfrombegin) + param = dp.path.begin() + self.arclenfrombegin elif self.arclenfromend is not None: - x, y = dp.path.at(dp.path.end() - self.arclenfromend) + param = dp.path.end() - self.arclenfromend else: # relarcpos is used, when neither arcfrombegin nor arcfromend is given - x, y = dp.path.at(self.relarclenpos * dp.path.arclen()) + param = self.relarclenpos * dp.path.arclen() + x, y = dp.path.at(param) + if self.relangle is not None: + a = dp.path.trafo(param).apply_pt(math.cos(self.relangle*math.pi/180), math.sin(self.relangle*math.pi/180)) + b = dp.path.trafo(param).apply_pt(0, 0) + angle = math.atan2(a[1] - b[1], a[0] - b[0]) + else: + angle = self.angle*math.pi/180 t = texrunner.text(x, y, self.text, textattrs) - t.linealign(self.textdist, math.cos(self.angle*math.pi/180), math.sin(self.angle*math.pi/180)) + t.linealign(self.textdist, math.cos(angle), math.sin(angle)) dp.ornaments.insert(t) @@ -575,3 +590,461 @@ class shownormpath(deco, attr.attr): dp.ornaments.draw(path.circle_pt(x_pt, y_pt, r_pt), [filled]) x_pt, y_pt = normsubpathitem.atend_pt() dp.ornaments.draw(path.circle_pt(x_pt, y_pt, r_pt), [filled]) + + +class linehatched(deco, attr.exclusiveattr, attr.clearclass): + """draws a pattern with explicit lines + + This class acts as a drop-in replacement for postscript patterns + from the pattern module which are not understood by some printers""" + + def __init__(self, dist, angle, strokestyles=[], cross=0): + attr.clearclass.__init__(self, _filled) + attr.exclusiveattr.__init__(self, linehatched) + self.dist = dist + self.angle = angle + self.strokestyles = attr.mergeattrs([style.linewidth.THIN] + strokestyles) + attr.checkattrs(self.strokestyles, [style.strokestyle]) + self.cross = cross + + def __call__(self, dist=None, angle=None, strokestyles=None, cross=None): + if dist is None: + dist = self.dist + if angle is None: + angle = self.angle + if strokestyles is None: + strokestyles = self.strokestyles + if cross is None: + cross = self.cross + return linehatched(dist, angle, strokestyles, cross) + + def _decocanvas(self, angle, dp, texrunner): + dp.ensurenormpath() + dist_pt = unit.topt(self.dist) + + c = canvas.canvas([canvas.clip(dp.path)]) + llx_pt, lly_pt, urx_pt, ury_pt = dp.path.bbox().highrestuple_pt() + center_pt = 0.5*(llx_pt+urx_pt), 0.5*(lly_pt+ury_pt) + radius_pt = 0.5*math.hypot(urx_pt-llx_pt, ury_pt-lly_pt) + dist_pt + n = int(2*radius_pt / dist_pt) + 1 + for i in range(n): + x_pt = center_pt[0] - radius_pt + i*dist_pt + c.stroke(path.line_pt(x_pt, center_pt[1]-radius_pt, x_pt, center_pt[1]+radius_pt), + [trafo.rotate_pt(angle, center_pt[0], center_pt[1])] + self.strokestyles) + return c + + def decorate(self, dp, texrunner): + dp.ornaments.insert(self._decocanvas(self.angle, dp, texrunner)) + if self.cross: + dp.ornaments.insert(self._decocanvas(self.angle+90, dp, texrunner)) + + def merge(self, attrs): + # act as attr.clearclass and as attr.exclusiveattr at the same time + newattrs = attr.exclusiveattr.merge(self, attrs) + return attr.clearclass.merge(self, newattrs) + +linehatched.clear = attr.clearclass(linehatched) + +_hatch_base = 0.1 * unit.v_cm + +linehatched0 = linehatched(_hatch_base, 0) +linehatched0.SMALL = linehatched0(_hatch_base/math.sqrt(64)) +linehatched0.SMALL = linehatched0(_hatch_base/math.sqrt(64)) +linehatched0.SMALl = linehatched0(_hatch_base/math.sqrt(32)) +linehatched0.SMAll = linehatched0(_hatch_base/math.sqrt(16)) +linehatched0.SMall = linehatched0(_hatch_base/math.sqrt(8)) +linehatched0.Small = linehatched0(_hatch_base/math.sqrt(4)) +linehatched0.small = linehatched0(_hatch_base/math.sqrt(2)) +linehatched0.normal = linehatched0(_hatch_base) +linehatched0.large = linehatched0(_hatch_base*math.sqrt(2)) +linehatched0.Large = linehatched0(_hatch_base*math.sqrt(4)) +linehatched0.LArge = linehatched0(_hatch_base*math.sqrt(8)) +linehatched0.LARge = linehatched0(_hatch_base*math.sqrt(16)) +linehatched0.LARGe = linehatched0(_hatch_base*math.sqrt(32)) +linehatched0.LARGE = linehatched0(_hatch_base*math.sqrt(64)) + +linehatched45 = linehatched(_hatch_base, 45) +linehatched45.SMALL = linehatched45(_hatch_base/math.sqrt(64)) +linehatched45.SMALl = linehatched45(_hatch_base/math.sqrt(32)) +linehatched45.SMAll = linehatched45(_hatch_base/math.sqrt(16)) +linehatched45.SMall = linehatched45(_hatch_base/math.sqrt(8)) +linehatched45.Small = linehatched45(_hatch_base/math.sqrt(4)) +linehatched45.small = linehatched45(_hatch_base/math.sqrt(2)) +linehatched45.normal = linehatched45(_hatch_base) +linehatched45.large = linehatched45(_hatch_base*math.sqrt(2)) +linehatched45.Large = linehatched45(_hatch_base*math.sqrt(4)) +linehatched45.LArge = linehatched45(_hatch_base*math.sqrt(8)) +linehatched45.LARge = linehatched45(_hatch_base*math.sqrt(16)) +linehatched45.LARGe = linehatched45(_hatch_base*math.sqrt(32)) +linehatched45.LARGE = linehatched45(_hatch_base*math.sqrt(64)) + +linehatched90 = linehatched(_hatch_base, 90) +linehatched90.SMALL = linehatched90(_hatch_base/math.sqrt(64)) +linehatched90.SMALl = linehatched90(_hatch_base/math.sqrt(32)) +linehatched90.SMAll = linehatched90(_hatch_base/math.sqrt(16)) +linehatched90.SMall = linehatched90(_hatch_base/math.sqrt(8)) +linehatched90.Small = linehatched90(_hatch_base/math.sqrt(4)) +linehatched90.small = linehatched90(_hatch_base/math.sqrt(2)) +linehatched90.normal = linehatched90(_hatch_base) +linehatched90.large = linehatched90(_hatch_base*math.sqrt(2)) +linehatched90.Large = linehatched90(_hatch_base*math.sqrt(4)) +linehatched90.LArge = linehatched90(_hatch_base*math.sqrt(8)) +linehatched90.LARge = linehatched90(_hatch_base*math.sqrt(16)) +linehatched90.LARGe = linehatched90(_hatch_base*math.sqrt(32)) +linehatched90.LARGE = linehatched90(_hatch_base*math.sqrt(64)) + +linehatched135 = linehatched(_hatch_base, 135) +linehatched135.SMALL = linehatched135(_hatch_base/math.sqrt(64)) +linehatched135.SMALl = linehatched135(_hatch_base/math.sqrt(32)) +linehatched135.SMAll = linehatched135(_hatch_base/math.sqrt(16)) +linehatched135.SMall = linehatched135(_hatch_base/math.sqrt(8)) +linehatched135.Small = linehatched135(_hatch_base/math.sqrt(4)) +linehatched135.small = linehatched135(_hatch_base/math.sqrt(2)) +linehatched135.normal = linehatched135(_hatch_base) +linehatched135.large = linehatched135(_hatch_base*math.sqrt(2)) +linehatched135.Large = linehatched135(_hatch_base*math.sqrt(4)) +linehatched135.LArge = linehatched135(_hatch_base*math.sqrt(8)) +linehatched135.LARge = linehatched135(_hatch_base*math.sqrt(16)) +linehatched135.LARGe = linehatched135(_hatch_base*math.sqrt(32)) +linehatched135.LARGE = linehatched135(_hatch_base*math.sqrt(64)) + +crosslinehatched0 = linehatched(_hatch_base, 0, cross=1) +crosslinehatched0.SMALL = crosslinehatched0(_hatch_base/math.sqrt(64)) +crosslinehatched0.SMALl = crosslinehatched0(_hatch_base/math.sqrt(32)) +crosslinehatched0.SMAll = crosslinehatched0(_hatch_base/math.sqrt(16)) +crosslinehatched0.SMall = crosslinehatched0(_hatch_base/math.sqrt(8)) +crosslinehatched0.Small = crosslinehatched0(_hatch_base/math.sqrt(4)) +crosslinehatched0.small = crosslinehatched0(_hatch_base/math.sqrt(2)) +crosslinehatched0.normal = crosslinehatched0 +crosslinehatched0.large = crosslinehatched0(_hatch_base*math.sqrt(2)) +crosslinehatched0.Large = crosslinehatched0(_hatch_base*math.sqrt(4)) +crosslinehatched0.LArge = crosslinehatched0(_hatch_base*math.sqrt(8)) +crosslinehatched0.LARge = crosslinehatched0(_hatch_base*math.sqrt(16)) +crosslinehatched0.LARGe = crosslinehatched0(_hatch_base*math.sqrt(32)) +crosslinehatched0.LARGE = crosslinehatched0(_hatch_base*math.sqrt(64)) + +crosslinehatched45 = linehatched(_hatch_base, 45, cross=1) +crosslinehatched45.SMALL = crosslinehatched45(_hatch_base/math.sqrt(64)) +crosslinehatched45.SMALl = crosslinehatched45(_hatch_base/math.sqrt(32)) +crosslinehatched45.SMAll = crosslinehatched45(_hatch_base/math.sqrt(16)) +crosslinehatched45.SMall = crosslinehatched45(_hatch_base/math.sqrt(8)) +crosslinehatched45.Small = crosslinehatched45(_hatch_base/math.sqrt(4)) +crosslinehatched45.small = crosslinehatched45(_hatch_base/math.sqrt(2)) +crosslinehatched45.normal = crosslinehatched45 +crosslinehatched45.large = crosslinehatched45(_hatch_base*math.sqrt(2)) +crosslinehatched45.Large = crosslinehatched45(_hatch_base*math.sqrt(4)) +crosslinehatched45.LArge = crosslinehatched45(_hatch_base*math.sqrt(8)) +crosslinehatched45.LARge = crosslinehatched45(_hatch_base*math.sqrt(16)) +crosslinehatched45.LARGe = crosslinehatched45(_hatch_base*math.sqrt(32)) +crosslinehatched45.LARGE = crosslinehatched45(_hatch_base*math.sqrt(64)) + + +class colorgradient(deco, attr.attr): + """inserts pieces of the path in different colors""" + + def __init__(self, grad, attrs=[], steps=20): + self.attrs = attrs + self.grad = grad + self.steps = steps + + def decorate(self, dp, texrunner): + dp.ensurenormpath() + l = dp.path.arclen() + + colors = [self.grad.select(n, self.steps) for n in range(self.steps)] + colors.reverse() + params = dp.path.arclentoparam([l*i/float(self.steps) for i in range(self.steps)]) + params.reverse() + + c = canvas.canvas() + # treat the end pieces separately + c.stroke(dp.path.split(params[1])[1], attr.mergeattrs([colors[0]] + self.attrs)) + for n in range(1,self.steps-1): + c.stroke(dp.path.split([params[n-1],params[n+1]])[1], attr.mergeattrs([colors[n]] + self.attrs)) + c.stroke(dp.path.split(params[-2])[0], attr.mergeattrs([colors[-1]] + self.attrs)) + dp.ornaments.insert(c) + + +class brace(deco, attr.attr): + r"""draws a nicely curled brace + + In most cases, the original line is not wanted use canvas.canvas.draw(..) for it + + Geometrical parameters: + + inner /\ strokes + ____________/ \__________ + / bar bar \ outer + / \ strokes + + totalheight distance from the jaws to the middle cap + barthickness thickness of the main bars + innerstrokesthickness thickness of the two ending strokes + outerstrokesthickness thickness of the inner strokes at the middle cap + innerstrokesrelheight height of the inner/outer strokes, relative to the total height + outerstrokesrelheight this determines the angle of the main bars! + should be around 0.5 + Note: if innerstrokesrelheight + outerstrokesrelheight == 1 then the main bars + will be aligned parallel to the connecting line between the endpoints + outerstrokesangle angle of the two ending strokes + innerstrokesangle angle between the inner strokes at the middle cap + slantstrokesangle extra slanting of the inner/outer strokes + innerstrokessmoothness smoothing parameter for the inner + outer strokes + outerstrokessmoothness should be around 1 (allowed: [0,infty)) + middlerelpos position of the middle cap (0 == left, 1 == right) + """ + # This code is experimental because it is unclear + # how the brace fits into the concepts of PyX + # + # Some thoughts: + # - a brace needs to be decoratable with text + # it needs stroking and filling attributes + # - the brace is not really a box: + # it has two "anchor" points that are important for aligning it to other things + # and one "anchor" point (plus direction) for aligning other things + # - a brace is not a deformer: + # it does not look at anything else than begin/endpoint of a path + # - a brace might be a connector (which is to be dissolved into the box concept later?) + + def __init__(self, reverse=1, stretch=None, dist=None, fillattrs=[], + totalheight=12*unit.x_pt, + barthickness=0.5*unit.x_pt, innerstrokesthickness=0.25*unit.x_pt, outerstrokesthickness=0.25*unit.x_pt, + innerstrokesrelheight=0.6, outerstrokesrelheight=0.7, + innerstrokesangle=30, outerstrokesangle=25, slantstrokesangle=5, + innerstrokessmoothness=2.0, outerstrokessmoothness=2.5, + middlerelpos=0.5): + self.fillattrs = fillattrs + self.reverse = reverse + self.stretch = stretch + self.dist = dist + self.totalheight = totalheight + self.barthickness = barthickness + self.innerstrokesthickness = innerstrokesthickness + self.outerstrokesthickness = outerstrokesthickness + self.innerstrokesrelheight = innerstrokesrelheight + self.outerstrokesrelheight = outerstrokesrelheight + self.innerstrokesangle = innerstrokesangle + self.outerstrokesangle = outerstrokesangle + self.slantstrokesangle = slantstrokesangle + self.innerstrokessmoothness = innerstrokessmoothness + self.outerstrokessmoothness = outerstrokessmoothness + self.middlerelpos = middlerelpos + + def __call__(self, **kwargs): + for name in ["reverse", "stretch", "dist", "fillattrs", + "totalheight", "barthickness", "innerstrokesthickness", "outerstrokesthickness", + "innerstrokesrelheight", "outerstrokesrelheight", "innerstrokesangle", "outerstrokesangle", "slantstrokesangle", + "innerstrokessmoothness", "outerstrokessmoothness", "middlerelpos"]: + if not kwargs.has_key(name): + kwargs[name] = self.__dict__[name] + return brace(**kwargs) + + def _halfbracepath_pt(self, length_pt, height_pt, ilength_pt, olength_pt, # <<< + ithick_pt, othick_pt, bthick_pt, cos_iangle, sin_iangle, cos_oangle, + sin_oangle, cos_slangle, sin_slangle): + + ismooth = self.innerstrokessmoothness + osmooth = self.outerstrokessmoothness + + # these two parameters are not important enough to be seen outside + inner_cap_param = 1.5 + outer_cap_param = 2.5 + outerextracurved = 0.6 # in (0, 1] + # 1.0 will lead to F=G, the outer strokes will not be curved at their ends. + # The smaller, the more curvature + + # build an orientation path (three straight lines) + # + # \q1 + # / \ + # / \ + # _/ \______________________________________q5 + # q2 q3 q4 \ + # \ + # \ + # \q6 + # + # get the points for that: + q1 = (0, height_pt - inner_cap_param * ithick_pt + 0.5*ithick_pt/sin_iangle) + q2 = (q1[0] + ilength_pt * sin_iangle, + q1[1] - ilength_pt * cos_iangle) + q6 = (length_pt, 0) + q5 = (q6[0] - olength_pt * sin_oangle, + q6[1] + olength_pt * cos_oangle) + bardir = (q5[0] - q2[0], q5[1] - q2[1]) + bardirnorm = math.hypot(*bardir) + bardir = (bardir[0]/bardirnorm, bardir[1]/bardirnorm) + ismoothlength_pt = ilength_pt * ismooth + osmoothlength_pt = olength_pt * osmooth + if bardirnorm < ismoothlength_pt + osmoothlength_pt: + ismoothlength_pt = bardirnorm * ismoothlength_pt / (ismoothlength_pt + osmoothlength_pt) + osmoothlength_pt = bardirnorm * osmoothlength_pt / (ismoothlength_pt + osmoothlength_pt) + q3 = (q2[0] + ismoothlength_pt * bardir[0], + q2[1] + ismoothlength_pt * bardir[1]) + q4 = (q5[0] - osmoothlength_pt * bardir[0], + q5[1] - osmoothlength_pt * bardir[1]) + + # + # P _O + # / | \A2 + # / A1\ \ + # / \ B2C2________D2___________E2_______F2___G2 + # \______________________________________ \ + # B1,C1 D1 E1 F1 G1 \ + # \ \ + # \ \H2 + # H1\_/I2 + # I1 + # + # the halfbraces meet in P and A1: + P = (0, height_pt) + A1 = (0, height_pt - inner_cap_param * ithick_pt) + # A2 is A1, shifted by the inner thickness + A2 = (A1[0] + ithick_pt * cos_iangle, + A1[1] + ithick_pt * sin_iangle) + s, t = deformer.intersection(P, A2, (cos_slangle, sin_slangle), (sin_iangle, -cos_iangle)) + O = (P[0] + s * cos_slangle, + P[1] + s * sin_slangle) + + # from D1 to E1 is the straight part of the brace + # also back from E2 to D1 + D1 = (q3[0] + bthick_pt * bardir[1], + q3[1] - bthick_pt * bardir[0]) + D2 = (q3[0] - bthick_pt * bardir[1], + q3[1] + bthick_pt * bardir[0]) + E1 = (q4[0] + bthick_pt * bardir[1], + q4[1] - bthick_pt * bardir[0]) + E2 = (q4[0] - bthick_pt * bardir[1], + q4[1] + bthick_pt * bardir[0]) + # I1, I2 are the control points at the outer stroke + I1 = (q6[0] - 0.5 * othick_pt * cos_oangle, + q6[1] - 0.5 * othick_pt * sin_oangle) + I2 = (q6[0] + 0.5 * othick_pt * cos_oangle, + q6[1] + 0.5 * othick_pt * sin_oangle) + # get the control points for the curved parts of the brace + s, t = deformer.intersection(A1, D1, (sin_iangle, -cos_iangle), bardir) + B1 = (D1[0] + t * bardir[0], + D1[1] + t * bardir[1]) + s, t = deformer.intersection(A2, D2, (sin_iangle, -cos_iangle), bardir) + B2 = (D2[0] + t * bardir[0], + D2[1] + t * bardir[1]) + s, t = deformer.intersection(E1, I1, bardir, (-sin_oangle, cos_oangle)) + G1 = (E1[0] + s * bardir[0], + E1[1] + s * bardir[1]) + s, t = deformer.intersection(E2, I2, bardir, (-sin_oangle, cos_oangle)) + G2 = (E2[0] + s * bardir[0], + E2[1] + s * bardir[1]) + # at the inner strokes: use curvature zero at both ends + C1 = B1 + C2 = B2 + # at the outer strokes: use curvature zero only at the connection to + # the straight part + F1 = (outerextracurved * G1[0] + (1 - outerextracurved) * E1[0], + outerextracurved * G1[1] + (1 - outerextracurved) * E1[1]) + F2 = (outerextracurved * G2[0] + (1 - outerextracurved) * E2[0], + outerextracurved * G2[1] + (1 - outerextracurved) * E2[1]) + # the tip of the outer stroke, endpoints of the bezier curve + H1 = (I1[0] - outer_cap_param * othick_pt * sin_oangle, + I1[1] + outer_cap_param * othick_pt * cos_oangle) + H2 = (I2[0] - outer_cap_param * othick_pt * sin_oangle, + I2[1] + outer_cap_param * othick_pt * cos_oangle) + + #for qq in [A1,B1,C1,D1,E1,F1,G1,H1,I1, + # A2,B2,C2,D2,E2,F2,G2,H2,I2, + # O,P + # ]: + # cc.fill(path.circle(qq[0], qq[1], 0.5), [color.rgb.green]) + + # now build the right halfbrace + bracepath = path.path(path.moveto_pt(*A1)) + bracepath.append(path.curveto_pt(B1[0], B1[1], C1[0], C1[1], D1[0], D1[1])) + bracepath.append(path.lineto_pt(E1[0], E1[1])) + bracepath.append(path.curveto_pt(F1[0], F1[1], G1[0], G1[1], H1[0], H1[1])) + # the tip of the right halfbrace + bracepath.append(path.curveto_pt(I1[0], I1[1], I2[0], I2[1], H2[0], H2[1])) + # the rest of the right halfbrace + bracepath.append(path.curveto_pt(G2[0], G2[1], F2[0], F2[1], E2[0], E2[1])) + bracepath.append(path.lineto_pt(D2[0], D2[1])) + bracepath.append(path.curveto_pt(C2[0], C2[1], B2[0], B2[1], A2[0], A2[1])) + # the tip in the middle of the brace + bracepath.append(path.curveto_pt(O[0], O[1], O[0], O[1], P[0], P[1])) + + return bracepath + # >>> + + def _bracepath(self, x0_pt, y0_pt, x1_pt, y1_pt): # <<< + height_pt = unit.topt(self.totalheight) + totallength_pt = math.hypot(x1_pt - x0_pt, y1_pt - y0_pt) + leftlength_pt = self.middlerelpos * totallength_pt + rightlength_pt = totallength_pt - leftlength_pt + ithick_pt = unit.topt(self.innerstrokesthickness) + othick_pt = unit.topt(self.outerstrokesthickness) + bthick_pt = unit.topt(self.barthickness) + + # create the left halfbrace with positive slanting + # because we will mirror this part + cos_iangle = math.cos(math.radians(0.5*self.innerstrokesangle - self.slantstrokesangle)) + sin_iangle = math.sin(math.radians(0.5*self.innerstrokesangle - self.slantstrokesangle)) + cos_oangle = math.cos(math.radians(self.outerstrokesangle - self.slantstrokesangle)) + sin_oangle = math.sin(math.radians(self.outerstrokesangle - self.slantstrokesangle)) + cos_slangle = math.cos(math.radians(-self.slantstrokesangle)) + sin_slangle = math.sin(math.radians(-self.slantstrokesangle)) + ilength_pt = self.innerstrokesrelheight * height_pt / cos_iangle + olength_pt = self.outerstrokesrelheight * height_pt / cos_oangle + + bracepath = self._halfbracepath_pt(leftlength_pt, height_pt, + ilength_pt, olength_pt, ithick_pt, othick_pt, bthick_pt, cos_iangle, + sin_iangle, cos_oangle, sin_oangle, cos_slangle, + sin_slangle).reversed().transformed(trafo.mirror(90)) + + # create the right halfbrace with negative slanting + cos_iangle = math.cos(math.radians(0.5*self.innerstrokesangle + self.slantstrokesangle)) + sin_iangle = math.sin(math.radians(0.5*self.innerstrokesangle + self.slantstrokesangle)) + cos_oangle = math.cos(math.radians(self.outerstrokesangle + self.slantstrokesangle)) + sin_oangle = math.sin(math.radians(self.outerstrokesangle + self.slantstrokesangle)) + cos_slangle = math.cos(math.radians(-self.slantstrokesangle)) + sin_slangle = math.sin(math.radians(-self.slantstrokesangle)) + ilength_pt = self.innerstrokesrelheight * height_pt / cos_iangle + olength_pt = self.outerstrokesrelheight * height_pt / cos_oangle + + bracepath = bracepath << self._halfbracepath_pt(rightlength_pt, height_pt, + ilength_pt, olength_pt, ithick_pt, othick_pt, bthick_pt, cos_iangle, + sin_iangle, cos_oangle, sin_oangle, cos_slangle, + sin_slangle) + + return bracepath.transformed( + # two trafos for matching the given endpoints + trafo.translate_pt(x0_pt, y0_pt) * + trafo.rotate_pt(math.degrees(math.atan2(y1_pt-y0_pt, x1_pt-x0_pt))) * + # one trafo to move the brace's left outer stroke to zero + trafo.translate_pt(leftlength_pt, 0)) + # >>> + + def decorate(self, dp, texrunner): + dp.ensurenormpath() + x0_pt, y0_pt = dp.path.atbegin_pt() + x1_pt, y1_pt = dp.path.atend_pt() + if self.reverse: + x0_pt, y0_pt, x1_pt, y1_pt = x1_pt, y1_pt, x0_pt, y0_pt + if self.stretch is not None: + xm, ym = 0.5*(x0_pt+x1_pt), 0.5*(y0_pt+y1_pt) + x0_pt, y0_pt = xm + self.stretch*(x0_pt-xm), ym + self.stretch*(y0_pt-ym) + x1_pt, y1_pt = xm + self.stretch*(x1_pt-xm), ym + self.stretch*(y1_pt-ym) + if self.dist is not None: + d = unit.topt(self.dist) + dx, dy = dp.path.rotation_pt(dp.path.begin()).apply_pt(0, 1) + x0_pt += d*dx; y0_pt += d*dy + dx, dy = dp.path.rotation_pt(dp.path.end()).apply_pt(0, 1) + x1_pt += d*dx; y1_pt += d*dy + dp.ornaments.fill(self._bracepath(x0_pt, y0_pt, x1_pt, y1_pt), self.fillattrs) + +brace.clear = attr.clearclass(brace) + +leftbrace = brace(reverse=0, middlerelpos=0.55, innerstrokesrelheight=0.6, outerstrokesrelheight=0.7, slantstrokesangle=-10) +rightbrace = brace(reverse=1, middlerelpos=0.45, innerstrokesrelheight=0.6, outerstrokesrelheight=0.7, slantstrokesangle=10) +belowbrace = brace(reverse=1, middlerelpos=0.55, innerstrokesrelheight=0.7, outerstrokesrelheight=0.9, slantstrokesangle=-10) +abovebrace = brace(reverse=0, middlerelpos=0.45, innerstrokesrelheight=0.7, outerstrokesrelheight=0.9, slantstrokesangle=-10) +straightbrace = brace(innerstrokesrelheight=0.5, outerstrokesrelheight=0.5, + innerstrokesangle=30, outerstrokesangle=30, slantstrokesangle=0, + innerstrokessmoothness=1.0, outerstrokessmoothness=1.0) + diff --git a/pyx/deformer.py b/pyx/deformer.py index fdde6b67..97f4143b 100644 --- a/pyx/deformer.py +++ b/pyx/deformer.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # # Copyright (C) 2003-2006 Michael Schindler -# Copyright (C) 2003-2005 André Wobst +# Copyright (C) 2003-2005 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -20,19 +20,8 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math, warnings import attr, mathutils, path, normpath, unit, color -from path import degrees, radians - -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) - # specific exception for an invalid parameterization point # used in parallel @@ -378,7 +367,7 @@ class cycloid(deformer): # <<< skipfirst = abs(unit.topt(self.skipfirst)) skiplast = abs(unit.topt(self.skiplast)) radius = abs(unit.topt(self.radius)) - turnangle = degrees(self.turnangle) + turnangle = math.radians(self.turnangle) sign = mathutils.sign(self.sign) cosTurn = math.cos(turnangle) @@ -728,7 +717,7 @@ class parallel(deformer): # <<< # avoid too small dists: we would run into instabilities if abs(dist) < abs(epsilon): - return orig_nsp + return normpath.normpath([orig_nsp]) result = normpath.normpath() @@ -811,7 +800,7 @@ class parallel(deformer): # <<< arcclass = path.arc_pt arc_normpath = path.path(arcclass( arccenter[0], arccenter[1], abs(dist), - degrees(angle1), degrees(angle2))).normpath(epsilon=epsilon) + math.degrees(angle1), math.degrees(angle2))).normpath(epsilon=epsilon) # append the arc to the parallel path result.join(arc_normpath) @@ -865,7 +854,7 @@ class parallel(deformer): # <<< arcclass = path.arc_pt arc_normpath = path.path(arcclass( arccenter[0], arccenter[1], abs(dist), - degrees(angle1), degrees(angle2))).normpath(epsilon=epsilon) + math.degrees(angle1), math.degrees(angle2))).normpath(epsilon=epsilon) # append the arc to the parallel path if (result.normsubpaths and result[-1].normsubpathitems and diff --git a/pyx/document.py b/pyx/document.py index 9b7e26e0..8b225fa6 100644 --- a/pyx/document.py +++ b/pyx/document.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005-2006 Jörg Lehmann -# Copyright (C) 2005-2006 André Wobst +# Copyright (C) 2005-2011 Jörg Lehmann +# Copyright (C) 2005-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -20,8 +20,9 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -import cStringIO, warnings +import cStringIO, sys, warnings import bbox, pswriter, pdfwriter, trafo, style, unit +import canvas as canvasmodule class paperformat: @@ -31,6 +32,7 @@ class paperformat: self.height = height self.name = name +paperformat.A5 = paperformat(148.5 * unit.t_mm, 210 * unit.t_mm, "A5") paperformat.A4 = paperformat(210 * unit.t_mm, 297 * unit.t_mm, "A4") paperformat.A3 = paperformat(297 * unit.t_mm, 420 * unit.t_mm, "A3") paperformat.A2 = paperformat(420 * unit.t_mm, 594 * unit.t_mm, "A2") @@ -50,7 +52,7 @@ class page: margin=1*unit.t_cm, bboxenlarge=1*unit.t_pt, bbox=None): self.canvas = canvas self.pagename = pagename - # support for depricated string specification of paper formats + # support for deprecated string specification of paper formats try: paperformat + "" except: @@ -67,72 +69,61 @@ class page: self.pagebbox = bbox def _process(self, processMethod, contentfile, writer, context, registry, bbox): - assert not bbox - - # check whether we expect a page trafo and use a temporary canvasfile to insert the - # pagetrafo in front after the bbox was calculated - expectpagetrafo = self.paperformat and (self.rotated or self.centered or self.fittosize) - if expectpagetrafo: - canvasfile = cStringIO.StringIO() - else: - canvasfile = contentfile - - getattr(style.linewidth.normal, processMethod)(canvasfile, writer, context, registry, bbox) - getattr(self.canvas, processMethod)(canvasfile, writer, context, registry, bbox) - - # usually its the bbox of the canvas enlarged by self.bboxenlarge, but + # usually, it is the bbox of the canvas enlarged by self.bboxenlarge, but # it might be a different bbox as specified in the page constructor + assert not bbox if self.pagebbox: bbox.set(self.pagebbox) - elif bbox: + else: + bbox.set(self.canvas.bbox()) # this bbox is not accurate bbox.enlarge(self.bboxenlarge) - if expectpagetrafo: - - if bbox: - # calculate the pagetrafo - paperwidth, paperheight = self.paperformat.width, self.paperformat.height - - # center (optionally rotated) output on page - if self.rotated: - pagetrafo = trafo.rotate(90).translated(paperwidth, 0) - if self.centered or self.fittosize: - if not self.fittosize and (bbox.height() > paperwidth or bbox.width() > paperheight): - warnings.warn("content exceeds the papersize") - pagetrafo = pagetrafo.translated(-0.5*(paperwidth - bbox.height()) + bbox.bottom(), - 0.5*(paperheight - bbox.width()) - bbox.left()) - else: - if not self.fittosize and (bbox.width() > paperwidth or bbox.height() > paperheight): + # check whether we expect a page trafo and use a temporary canvas to insert the + # page canvas + if self.paperformat and (self.rotated or self.centered or self.fittosize) and bbox: + # calculate the pagetrafo + paperwidth, paperheight = self.paperformat.width, self.paperformat.height + + # center (optionally rotated) output on page + if self.rotated: + pagetrafo = trafo.rotate(90).translated(paperwidth, 0) + if self.centered or self.fittosize: + if not self.fittosize and (bbox.height() > paperwidth or bbox.width() > paperheight): warnings.warn("content exceeds the papersize") - pagetrafo = trafo.translate(0.5*(paperwidth - bbox.width()) - bbox.left(), - 0.5*(paperheight - bbox.height()) - bbox.bottom()) + pagetrafo = pagetrafo.translated(-0.5*(paperwidth - bbox.height()) + bbox.bottom(), + 0.5*(paperheight - bbox.width()) - bbox.left()) + else: + if not self.fittosize and (bbox.width() > paperwidth or bbox.height() > paperheight): + warnings.warn("content exceeds the papersize") + pagetrafo = trafo.translate(0.5*(paperwidth - bbox.width()) - bbox.left(), + 0.5*(paperheight - bbox.height()) - bbox.bottom()) - if self.fittosize: + if self.fittosize: - if 2*self.margin > paperwidth or 2*self.margin > paperheight: - raise ValueError("Margins too broad for selected paperformat. Aborting.") + if 2*self.margin > paperwidth or 2*self.margin > paperheight: + raise ValueError("Margins too broad for selected paperformat. Aborting.") - paperwidth -= 2 * self.margin - paperheight -= 2 * self.margin + paperwidth -= 2 * self.margin + paperheight -= 2 * self.margin - # scale output to pagesize - margins - if self.rotated: - sfactor = min(unit.topt(paperheight)/bbox.width_pt(), unit.topt(paperwidth)/bbox.height_pt()) - else: - sfactor = min(unit.topt(paperwidth)/bbox.width_pt(), unit.topt(paperheight)/bbox.height_pt()) + # scale output to pagesize - margins + if self.rotated: + sfactor = min(unit.topt(paperheight)/bbox.width_pt(), unit.topt(paperwidth)/bbox.height_pt()) + else: + sfactor = min(unit.topt(paperwidth)/bbox.width_pt(), unit.topt(paperheight)/bbox.height_pt()) - pagetrafo = pagetrafo.scaled(sfactor, sfactor, self.margin + 0.5*paperwidth, self.margin + 0.5*paperheight) + pagetrafo = pagetrafo.scaled(sfactor, sfactor, self.margin + 0.5*paperwidth, self.margin + 0.5*paperheight) - # apply the pagetrafo and write it to the contentfile - bbox.transform(pagetrafo) - pagetrafofile = cStringIO.StringIO() - # context, bbox, registry are just passed as stubs (the trafo should not touch them) - getattr(pagetrafo, processMethod)(pagetrafofile, writer, context, registry, bbox) - contentfile.write(pagetrafofile.getvalue()) - pagetrafofile.close() + bbox.transform(pagetrafo) + cc = canvasmodule.canvas() + cc.insert(self.canvas, [pagetrafo]) + else: + cc = self.canvas - contentfile.write(canvasfile.getvalue()) - canvasfile.close() + getattr(style.linewidth.normal, processMethod)(contentfile, writer, context, registry, bbox) + if self.pagebbox: + bbox = bbox.copy() # don't alter the bbox provided to the constructor -> use a copy + getattr(cc, processMethod)(contentfile, writer, context, registry, bbox) def processPS(self, *args): self._process("processPS", *args) @@ -141,31 +132,49 @@ class page: self._process("processPDF", *args) +def _outputstream(file, suffix): + if file is None: + if not sys.argv[0].endswith(".py"): + raise RuntimeError("could not auto-guess filename") + return open("%s.%s" % (sys.argv[0][:-3], suffix), "wb") + try: + file.write("") + return file + except: + if not file.endswith(".%s" % suffix): + return open("%s.%s" % (file, suffix), "wb") + return open(file, "wb") + + class document: """holds a collection of page instances which are output as pages of a document""" - def __init__(self, pages=[]): - self.pages = pages + def __init__(self, pages=None): + if pages is None: + self.pages = [] + else: + self.pages = pages def append(self, page): self.pages.append(page) - def writeEPSfile(self, file, *args, **kwargs): - pswriter.epswriter(self, file, *args, **kwargs) + def writeEPSfile(self, file=None, **kwargs): + pswriter.EPSwriter(self, _outputstream(file, "eps"), **kwargs) - def writePSfile(self, file, *args, **kwargs): - pswriter.pswriter(self, file, *args, **kwargs) + def writePSfile(self, file=None, **kwargs): + pswriter.PSwriter(self, _outputstream(file, "ps"), **kwargs) - def writePDFfile(self, file, *args, **kwargs): - pdfwriter.PDFwriter(self, file, *args, **kwargs) + def writePDFfile(self, file=None, **kwargs): + pdfwriter.PDFwriter(self, _outputstream(file, "pdf"), **kwargs) - def writetofile(self, filename, *args, **kwargs): + def writetofile(self, filename, **kwargs): if filename.endswith(".eps"): - self.writeEPSfile(filename, *args, **kwargs) + self.writeEPSfile(open(filename, "wb"), **kwargs) elif filename.endswith(".ps"): - self.writePSfile(filename, *args, **kwargs) + self.writePSfile(open(filename, "wb"), **kwargs) elif filename.endswith(".pdf"): - self.writePDFfile(filename, *args, **kwargs) + self.writePDFfile(open(filename, "wb"), **kwargs) else: raise ValueError("unknown file extension") + diff --git a/pyx/dvi/__init__.py b/pyx/dvi/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/pyx/dvi/__init__.py @@ -0,0 +1 @@ + diff --git a/pyx/dvi/dvifile.py b/pyx/dvi/dvifile.py new file mode 100644 index 00000000..e4b2d979 --- /dev/null +++ b/pyx/dvi/dvifile.py @@ -0,0 +1,632 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2003-2004,2006,2007 Michael Schindler +# Copyright (C) 2002-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +import cStringIO, math, re, string, struct, sys, warnings +from pyx import bbox, canvas, canvasitem, color, epsfile, filelocator, path, reader, trafo, unit +import texfont, tfmfile + + +_DVI_CHARMIN = 0 # typeset a character and move right (range min) +_DVI_CHARMAX = 127 # typeset a character and move right (range max) +_DVI_SET1234 = 128 # typeset a character and move right +_DVI_SETRULE = 132 # typeset a rule and move right +_DVI_PUT1234 = 133 # typeset a character +_DVI_PUTRULE = 137 # typeset a rule +_DVI_NOP = 138 # no operation +_DVI_BOP = 139 # beginning of page +_DVI_EOP = 140 # ending of page +_DVI_PUSH = 141 # save the current positions (h, v, w, x, y, z) +_DVI_POP = 142 # restore positions (h, v, w, x, y, z) +_DVI_RIGHT1234 = 143 # move right +_DVI_W0 = 147 # move right by w +_DVI_W1234 = 148 # move right and set w +_DVI_X0 = 152 # move right by x +_DVI_X1234 = 153 # move right and set x +_DVI_DOWN1234 = 157 # move down +_DVI_Y0 = 161 # move down by y +_DVI_Y1234 = 162 # move down and set y +_DVI_Z0 = 166 # move down by z +_DVI_Z1234 = 167 # move down and set z +_DVI_FNTNUMMIN = 171 # set current font (range min) +_DVI_FNTNUMMAX = 234 # set current font (range max) +_DVI_FNT1234 = 235 # set current font +_DVI_SPECIAL1234 = 239 # special (dvi extention) +_DVI_FNTDEF1234 = 243 # define the meaning of a font number +_DVI_PRE = 247 # preamble +_DVI_POST = 248 # postamble beginning +_DVI_POSTPOST = 249 # postamble ending + +_DVI_VERSION = 2 # dvi version + +# position variable indices +_POS_H = 0 +_POS_V = 1 +_POS_W = 2 +_POS_X = 3 +_POS_Y = 4 +_POS_Z = 5 + +# reader states +_READ_PRE = 1 +_READ_NOPAGE = 2 +_READ_PAGE = 3 +_READ_POST = 4 # XXX not used +_READ_POSTPOST = 5 # XXX not used +_READ_DONE = 6 + + +class DVIError(Exception): pass + +# save and restore colors + +class _savecolor(canvasitem.canvasitem): + def processPS(self, file, writer, context, registry, bbox): + file.write("currentcolor currentcolorspace\n") + + def processPDF(self, file, writer, context, registry, bbox): + file.write("q\n") + + +class _restorecolor(canvasitem.canvasitem): + def processPS(self, file, writer, context, registry, bbox): + file.write("setcolorspace setcolor\n") + + def processPDF(self, file, writer, context, registry, bbox): + file.write("Q\n") + +class _savetrafo(canvasitem.canvasitem): + def processPS(self, file, writer, context, registry, bbox): + file.write("matrix currentmatrix\n") + + def processPDF(self, file, writer, context, registry, bbox): + file.write("q\n") + + +class _restoretrafo(canvasitem.canvasitem): + def processPS(self, file, writer, context, registry, bbox): + file.write("setmatrix\n") + + def processPDF(self, file, writer, context, registry, bbox): + file.write("Q\n") + + +class DVIfile: + + def __init__(self, filename, debug=0, debugfile=sys.stdout): + """ opens the dvi file and reads the preamble """ + self.filename = filename + self.debug = debug + self.debugfile = debugfile + self.debugstack = [] + + self.fonts = {} + self.activefont = None + + # stack of fonts and fontscale currently used (used for VFs) + self.fontstack = [] + self.stack = [] + + # pointer to currently active page + self.actpage = None + + # stack for self.file, self.fonts and self.stack, needed for VF inclusion + self.statestack = [] + + self.file = reader.reader(self.filename) + + # currently read byte in file (for debugging output) + self.filepos = None + + self._read_pre() + + # helper routines + + def flushtext(self, fontmap): + """ finish currently active text object """ + if self.activetext: + x, y, charcodes = self.activetext + x_pt, y_pt = x * self.pyxconv, -y*self.pyxconv + self.actpage.insert(self.activefont.text_pt(x_pt, y_pt, charcodes, fontmap=fontmap)) + if self.debug: + self.debugfile.write("[%s]\n" % "".join([chr(char) for char in self.activetext[2]])) + self.activetext = None + + def putrule(self, height, width, advancepos, fontmap): + self.flushtext(fontmap) + x1 = self.pos[_POS_H] * self.pyxconv + y1 = -self.pos[_POS_V] * self.pyxconv + w = width * self.pyxconv + h = height * self.pyxconv + + if height > 0 and width > 0: + if self.debug: + self.debugfile.write("%d: %srule height %d, width %d (???x??? pixels)\n" % + (self.filepos, advancepos and "set" or "put", height, width)) + self.actpage.fill(path.rect_pt(x1, y1, w, h)) + else: + if self.debug: + self.debugfile.write("%d: %srule height %d, width %d (invisible)\n" % + (self.filepos, advancepos and "set" or "put", height, width)) + + if advancepos: + if self.debug: + self.debugfile.write(" h:=%d+%d=%d, hh:=???\n" % + (self.pos[_POS_H], width, self.pos[_POS_H]+width)) + self.pos[_POS_H] += width * self.scale + + def putchar(self, char, advancepos, id1234, fontmap): + dx = advancepos and self.activefont.getwidth_dvi(char) or 0 + + if self.debug: + self.debugfile.write("%d: %s%s%d h:=%d+%d=%d, hh:=???\n" % + (self.filepos, + advancepos and "set" or "put", + id1234 and "%i " % id1234 or "char", + char, + self.pos[_POS_H], dx, self.pos[_POS_H]+dx)) + + if isinstance(self.activefont, texfont.virtualfont): + # virtual font handling + afterpos = list(self.pos) + afterpos[_POS_H] += dx + self._push_dvistring(self.activefont.getchar(char), self.activefont.getfonts(), afterpos, + self.activefont.getsize_pt(), fontmap) + else: + if self.activetext is None: + self.activetext = (self.pos[_POS_H], self.pos[_POS_V], []) + self.activetext[2].append(char) + self.pos[_POS_H] += dx + + if not advancepos: + self.flushtext(fontmap) + + def usefont(self, fontnum, id1234, fontmap): + self.flushtext(fontmap) + self.activefont = self.fonts[fontnum] + if self.debug: + self.debugfile.write("%d: fnt%s%i current font is %s\n" % + (self.filepos, + id1234 and "%i " % id1234 or "num", + fontnum, + self.fonts[fontnum].name)) + + + def definefont(self, cmdnr, num, c, q, d, fontname): + # cmdnr: type of fontdef command (only used for debugging output) + # c: checksum + # q: scaling factor (fix_word) + # Note that q is actually s in large parts of the documentation. + # d: design size (fix_word) + + # check whether it's a virtual font by trying to open it. if this fails, it is an ordinary TeX font + try: + fontfile = filelocator.open(fontname, [filelocator.format.vf]) + except IOError: + afont = texfont.TeXfont(fontname, c, q/self.tfmconv, d/self.tfmconv, self.tfmconv, self.pyxconv, self.debug>1) + else: + afont = texfont.virtualfont(fontname, fontfile, c, q/self.tfmconv, d/self.tfmconv, self.tfmconv, self.pyxconv, self.debug>1) + + self.fonts[num] = afont + + if self.debug: + self.debugfile.write("%d: fntdef%d %i: %s\n" % (self.filepos, cmdnr, num, fontname)) + +# scale = round((1000.0*self.conv*q)/(self.trueconv*d)) +# m = 1.0*q/d +# scalestring = scale!=1000 and " scaled %d" % scale or "" +# print ("Font %i: %s%s---loaded at size %d DVI units" % +# (num, fontname, scalestring, q)) +# if scale!=1000: +# print " (this font is magnified %d%%)" % round(scale/10) + + def special(self, s, fontmap): + x = self.pos[_POS_H] * self.pyxconv + y = -self.pos[_POS_V] * self.pyxconv + if self.debug: + self.debugfile.write("%d: xxx '%s'\n" % (self.filepos, s)) + if not s.startswith("PyX:"): + warnings.warn("ignoring special '%s'" % s) + return + + # it is in general not safe to continue using the currently active font because + # the specials may involve some gsave/grestore operations + self.flushtext(fontmap) + + command, args = s[4:].split()[0], s[4:].split()[1:] + if command == "color_begin": + if args[0] == "cmyk": + c = color.cmyk(float(args[1]), float(args[2]), float(args[3]), float(args[4])) + elif args[0] == "gray": + c = color.gray(float(args[1])) + elif args[0] == "hsb": + c = color.hsb(float(args[1]), float(args[2]), float(args[3])) + elif args[0] == "rgb": + c = color.rgb(float(args[1]), float(args[2]), float(args[3])) + elif args[0] == "RGB": + c = color.rgb(int(args[1])/255.0, int(args[2])/255.0, int(args[3])/255.0) + elif args[0] == "texnamed": + try: + c = getattr(color.cmyk, args[1]) + except AttributeError: + raise RuntimeError("unknown TeX color '%s', aborting" % args[1]) + elif args[0] == "pyxcolor": + # pyx.color.cmyk.PineGreen or + # pyx.color.cmyk(0,0,0,0.0) + pat = re.compile(r"(pyx\.)?(color\.)?(?P(cmyk)|(rgb)|(grey)|(gray)|(hsb))[\.]?(?P.*)") + sd = pat.match(" ".join(args[1:])) + if sd: + sd = sd.groupdict() + if sd["arg"][0] == "(": + numpat = re.compile(r"[+-]?((\d+\.\d*)|(\d*\.\d+)|(\d+))([eE][+-]\d+)?") + arg = tuple([float(x[0]) for x in numpat.findall(sd["arg"])]) + try: + c = getattr(color, sd["model"])(*arg) + except TypeError or AttributeError: + raise RuntimeError("cannot access PyX color '%s' in TeX, aborting" % " ".join(args[1:])) + else: + try: + c = getattr(getattr(color, sd["model"]), sd["arg"]) + except AttributeError: + raise RuntimeError("cannot access PyX color '%s' in TeX, aborting" % " ".join(args[1:])) + else: + raise RuntimeError("cannot access PyX color '%s' in TeX, aborting" % " ".join(args[1:])) + else: + raise RuntimeError("color model '%s' cannot be handled by PyX, aborting" % args[0]) + self.actpage.insert(_savecolor()) + self.actpage.insert(c) + elif command == "color_end": + self.actpage.insert(_restorecolor()) + elif command == "rotate_begin": + self.actpage.insert(_savetrafo()) + self.actpage.insert(trafo.rotate_pt(float(args[0]), x, y)) + elif command == "rotate_end": + self.actpage.insert(_restoretrafo()) + elif command == "scale_begin": + self.actpage.insert(_savetrafo()) + self.actpage.insert(trafo.scale_pt(float(args[0]), float(args[1]), x, y)) + elif command == "scale_end": + self.actpage.insert(_restoretrafo()) + elif command == "epsinclude": + # parse arguments + argdict = {} + for arg in args: + name, value = arg.split("=") + argdict[name] = value + + # construct kwargs for epsfile constructor + epskwargs = {} + epskwargs["filename"] = argdict["file"] + epskwargs["bbox"] = bbox.bbox_pt(float(argdict["llx"]), float(argdict["lly"]), + float(argdict["urx"]), float(argdict["ury"])) + if argdict.has_key("width"): + epskwargs["width"] = float(argdict["width"]) * unit.t_pt + if argdict.has_key("height"): + epskwargs["height"] = float(argdict["height"]) * unit.t_pt + if argdict.has_key("clip"): + epskwargs["clip"] = int(argdict["clip"]) + self.actpage.insert(epsfile.epsfile(x * unit.t_pt, y * unit.t_pt, **epskwargs)) + elif command == "marker": + if len(args) != 1: + raise RuntimeError("marker contains spaces") + for c in args[0]: + if c not in string.digits + string.letters + "@": + raise RuntimeError("marker contains invalid characters") + if self.actpage.markers.has_key(args[0]): + raise RuntimeError("marker name occurred several times") + self.actpage.markers[args[0]] = x * unit.t_pt, y * unit.t_pt + else: + raise RuntimeError("unknown PyX special '%s', aborting" % command) + + # routines for pushing and popping different dvi chunks on the reader + + def _push_dvistring(self, dvi, fonts, afterpos, fontsize, fontmap): + """ push dvi string with defined fonts on top of reader + stack. Every positions gets scaled relatively by the factor + scale. After interpretating the dvi chunk, continue with self.pos=afterpos. + The designsize of the virtual font is passed as a fix_word + + """ + + #if self.debug: + # self.debugfile.write("executing new dvi chunk\n") + self.debugstack.append(self.debug) + self.debug = 0 + + self.statestack.append((self.file, self.fonts, self.activefont, afterpos, self.stack, self.scale)) + + # units in vf files are relative to the size of the font and given as fix_words + # which can be converted to floats by diving by 2**20. + # This yields the following scale factor for the height and width of rects: + self.scale = fontsize/2**20/self.pyxconv + + self.file = reader.stringreader(dvi) + self.fonts = fonts + self.stack = [] + self.filepos = 0 + + self.usefont(0, 0, fontmap) + + def _pop_dvistring(self, fontmap): + self.flushtext(fontmap) + #if self.debug: + # self.debugfile.write("finished executing dvi chunk\n") + self.debug = self.debugstack.pop() + + self.file.close() + self.file, self.fonts, self.activefont, self.pos, self.stack, self.scale = self.statestack.pop() + + # routines corresponding to the different reader states of the dvi maschine + + def _read_pre(self): + afile = self.file + while 1: + self.filepos = afile.tell() + cmd = afile.readuchar() + if cmd == _DVI_NOP: + pass + elif cmd == _DVI_PRE: + if afile.readuchar() != _DVI_VERSION: raise DVIError + num = afile.readuint32() + den = afile.readuint32() + self.mag = afile.readuint32() + + # For the interpretation of the lengths in dvi and tfm files, + # three conversion factors are relevant: + # - self.tfmconv: tfm units -> dvi units + # - self.pyxconv: dvi units -> (PostScript) points + # - self.conv: dvi units -> pixels + self.tfmconv = (25400000.0/num)*(den/473628672.0)/16.0 + + # calculate conv as described in the DVIType docu using + # a given resolution in dpi + self.resolution = 300.0 + self.conv = (num/254000.0)*(self.resolution/den) + + # self.pyxconv is the conversion factor from the dvi units + # to (PostScript) points. It consists of + # - self.mag/1000.0: magstep scaling + # - self.conv: conversion from dvi units to pixels + # - 1/self.resolution: conversion from pixels to inch + # - 72 : conversion from inch to points + self.pyxconv = self.mag/1000.0*self.conv/self.resolution*72 + + # scaling used for rules when VF chunks are interpreted + self.scale = 1 + + comment = afile.read(afile.readuchar()) + return + else: + raise DVIError + + def readpage(self, pageid=None, fontmap=None): + """ reads a page from the dvi file + + This routine reads a page from the dvi file which is + returned as a canvas. When there is no page left in the + dvifile, None is returned and the file is closed properly.""" + + while 1: + self.filepos = self.file.tell() + cmd = self.file.readuchar() + if cmd == _DVI_NOP: + pass + elif cmd == _DVI_BOP: + ispageid = [self.file.readuint32() for i in range(10)] + if pageid is not None and ispageid != pageid: + raise DVIError("invalid pageid") + if self.debug: + self.debugfile.write("%d: beginning of page %i\n" % (self.filepos, ispageid[0])) + self.file.readuint32() + break + elif cmd == _DVI_POST: + self.file.close() + return None # nothing left + else: + raise DVIError + + self.actpage = canvas.canvas() + self.actpage.markers = {} + self.pos = [0, 0, 0, 0, 0, 0] + + # tuple (hpos, vpos, codepoints) to be output, or None if no output is pending + self.activetext = None + + while 1: + afile = self.file + self.filepos = afile.tell() + try: + cmd = afile.readuchar() + except struct.error: + # we most probably (if the dvi file is not corrupt) hit the end of a dvi chunk, + # so we have to continue with the rest of the dvi file + self._pop_dvistring(fontmap) + continue + if cmd == _DVI_NOP: + pass + if cmd >= _DVI_CHARMIN and cmd <= _DVI_CHARMAX: + self.putchar(cmd, True, 0, fontmap) + elif cmd >= _DVI_SET1234 and cmd < _DVI_SET1234 + 4: + self.putchar(afile.readint(cmd - _DVI_SET1234 + 1), True, cmd-_DVI_SET1234+1, fontmap) + elif cmd == _DVI_SETRULE: + self.putrule(afile.readint32()*self.scale, afile.readint32()*self.scale, True, fontmap) + elif cmd >= _DVI_PUT1234 and cmd < _DVI_PUT1234 + 4: + self.putchar(afile.readint(cmd - _DVI_PUT1234 + 1), False, cmd-_DVI_SET1234+1, fontmap) + elif cmd == _DVI_PUTRULE: + self.putrule(afile.readint32()*self.scale, afile.readint32()*self.scale, False, fontmap) + elif cmd == _DVI_EOP: + self.flushtext(fontmap) + if self.debug: + self.debugfile.write("%d: eop\n \n" % self.filepos) + return self.actpage + elif cmd == _DVI_PUSH: + self.stack.append(list(self.pos)) + if self.debug: + self.debugfile.write("%s: push\n" + "level %d:(h=%d,v=%d,w=%d,x=%d,y=%d,z=%d,hh=???,vv=???)\n" % + ((self.filepos, len(self.stack)-1) + tuple(self.pos))) + elif cmd == _DVI_POP: + self.flushtext(fontmap) + self.pos = self.stack.pop() + if self.debug: + self.debugfile.write("%s: pop\n" + "level %d:(h=%d,v=%d,w=%d,x=%d,y=%d,z=%d,hh=???,vv=???)\n" % + ((self.filepos, len(self.stack)) + tuple(self.pos))) + elif cmd >= _DVI_RIGHT1234 and cmd < _DVI_RIGHT1234 + 4: + self.flushtext(fontmap) + dh = afile.readint(cmd - _DVI_RIGHT1234 + 1, 1) * self.scale + if self.debug: + self.debugfile.write("%d: right%d %d h:=%d%+d=%d, hh:=???\n" % + (self.filepos, + cmd - _DVI_RIGHT1234 + 1, + dh, + self.pos[_POS_H], + dh, + self.pos[_POS_H]+dh)) + self.pos[_POS_H] += dh + elif cmd == _DVI_W0: + self.flushtext(fontmap) + if self.debug: + self.debugfile.write("%d: w0 %d h:=%d%+d=%d, hh:=???\n" % + (self.filepos, + self.pos[_POS_W], + self.pos[_POS_H], + self.pos[_POS_W], + self.pos[_POS_H]+self.pos[_POS_W])) + self.pos[_POS_H] += self.pos[_POS_W] + elif cmd >= _DVI_W1234 and cmd < _DVI_W1234 + 4: + self.flushtext(fontmap) + self.pos[_POS_W] = afile.readint(cmd - _DVI_W1234 + 1, 1) * self.scale + if self.debug: + self.debugfile.write("%d: w%d %d h:=%d%+d=%d, hh:=???\n" % + (self.filepos, + cmd - _DVI_W1234 + 1, + self.pos[_POS_W], + self.pos[_POS_H], + self.pos[_POS_W], + self.pos[_POS_H]+self.pos[_POS_W])) + self.pos[_POS_H] += self.pos[_POS_W] + elif cmd == _DVI_X0: + self.flushtext(fontmap) + if self.debug: + self.debugfile.write("%d: x0 %d h:=%d%+d=%d, hh:=???\n" % + (self.filepos, + self.pos[_POS_X], + self.pos[_POS_H], + self.pos[_POS_X], + self.pos[_POS_H]+self.pos[_POS_X])) + self.pos[_POS_H] += self.pos[_POS_X] + elif cmd >= _DVI_X1234 and cmd < _DVI_X1234 + 4: + self.flushtext(fontmap) + self.pos[_POS_X] = afile.readint(cmd - _DVI_X1234 + 1, 1) * self.scale + if self.debug: + self.debugfile.write("%d: x%d %d h:=%d%+d=%d, hh:=???\n" % + (self.filepos, + cmd - _DVI_X1234 + 1, + self.pos[_POS_X], + self.pos[_POS_H], + self.pos[_POS_X], + self.pos[_POS_H]+self.pos[_POS_X])) + self.pos[_POS_H] += self.pos[_POS_X] + elif cmd >= _DVI_DOWN1234 and cmd < _DVI_DOWN1234 + 4: + self.flushtext(fontmap) + dv = afile.readint(cmd - _DVI_DOWN1234 + 1, 1) * self.scale + if self.debug: + self.debugfile.write("%d: down%d %d v:=%d%+d=%d, vv:=???\n" % + (self.filepos, + cmd - _DVI_DOWN1234 + 1, + dv, + self.pos[_POS_V], + dv, + self.pos[_POS_V]+dv)) + self.pos[_POS_V] += dv + elif cmd == _DVI_Y0: + self.flushtext(fontmap) + if self.debug: + self.debugfile.write("%d: y0 %d v:=%d%+d=%d, vv:=???\n" % + (self.filepos, + self.pos[_POS_Y], + self.pos[_POS_V], + self.pos[_POS_Y], + self.pos[_POS_V]+self.pos[_POS_Y])) + self.pos[_POS_V] += self.pos[_POS_Y] + elif cmd >= _DVI_Y1234 and cmd < _DVI_Y1234 + 4: + self.flushtext(fontmap) + self.pos[_POS_Y] = afile.readint(cmd - _DVI_Y1234 + 1, 1) * self.scale + if self.debug: + self.debugfile.write("%d: y%d %d v:=%d%+d=%d, vv:=???\n" % + (self.filepos, + cmd - _DVI_Y1234 + 1, + self.pos[_POS_Y], + self.pos[_POS_V], + self.pos[_POS_Y], + self.pos[_POS_V]+self.pos[_POS_Y])) + self.pos[_POS_V] += self.pos[_POS_Y] + elif cmd == _DVI_Z0: + self.flushtext(fontmap) + if self.debug: + self.debugfile.write("%d: z0 %d v:=%d%+d=%d, vv:=???\n" % + (self.filepos, + self.pos[_POS_Z], + self.pos[_POS_V], + self.pos[_POS_Z], + self.pos[_POS_V]+self.pos[_POS_Z])) + self.pos[_POS_V] += self.pos[_POS_Z] + elif cmd >= _DVI_Z1234 and cmd < _DVI_Z1234 + 4: + self.flushtext(fontmap) + self.pos[_POS_Z] = afile.readint(cmd - _DVI_Z1234 + 1, 1) * self.scale + if self.debug: + self.debugfile.write("%d: z%d %d v:=%d%+d=%d, vv:=???\n" % + (self.filepos, + cmd - _DVI_Z1234 + 1, + self.pos[_POS_Z], + self.pos[_POS_V], + self.pos[_POS_Z], + self.pos[_POS_V]+self.pos[_POS_Z])) + self.pos[_POS_V] += self.pos[_POS_Z] + elif cmd >= _DVI_FNTNUMMIN and cmd <= _DVI_FNTNUMMAX: + self.usefont(cmd - _DVI_FNTNUMMIN, 0, fontmap) + elif cmd >= _DVI_FNT1234 and cmd < _DVI_FNT1234 + 4: + # note that according to the DVI docs, for four byte font numbers, + # the font number is signed. Don't ask why! + fntnum = afile.readint(cmd - _DVI_FNT1234 + 1, cmd == _DVI_FNT1234 + 3) + self.usefont(fntnum, cmd-_DVI_FNT1234+1, fontmap) + elif cmd >= _DVI_SPECIAL1234 and cmd < _DVI_SPECIAL1234 + 4: + self.special(afile.read(afile.readint(cmd - _DVI_SPECIAL1234 + 1)), fontmap) + elif cmd >= _DVI_FNTDEF1234 and cmd < _DVI_FNTDEF1234 + 4: + if cmd == _DVI_FNTDEF1234: + num = afile.readuchar() + elif cmd == _DVI_FNTDEF1234+1: + num = afile.readuint16() + elif cmd == _DVI_FNTDEF1234+2: + num = afile.readuint24() + elif cmd == _DVI_FNTDEF1234+3: + # Cool, here we have according to docu a signed int. Why? + num = afile.readint32() + self.definefont(cmd-_DVI_FNTDEF1234+1, + num, + afile.readint32(), + afile.readint32(), + afile.readint32(), + afile.read(afile.readuchar()+afile.readuchar())) + else: + raise DVIError diff --git a/pyx/dvi/encfile.py b/pyx/dvi/encfile.py new file mode 100644 index 00000000..79a0520e --- /dev/null +++ b/pyx/dvi/encfile.py @@ -0,0 +1,52 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2007-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + +from pyx import reader + +class ENFfileError(Exception): + pass + +class ENCfile: + + def __init__(self, bytes): + c = reader.PStokenizer(bytes, "") + + # name of encoding + self.name = c.gettoken() + token = c.gettoken() + if token != "[": + raise ENCfileError("cannot parse encoding file '%s', expecting '[' got '%s'" % (filename, token)) + self.vector = [] + for i in range(256): + token = c.gettoken() + if token == "]": + raise ENCfileError("not enough charcodes in encoding file '%s'" % filename) + if not token[0] == "/": + raise ENCfileError("token does not start with / in encoding file '%s'" % filename) + self.vector.append(token[1:]) + if c.gettoken() != "]": + raise ENCfileError("too many charcodes in encoding file '%s'" % filename) + token = c.gettoken() + if token != "def": + raise ENCfileError("cannot parse encoding file '%s', expecting 'def' got '%s'" % (filename, token)) + diff --git a/pyx/dvi/mapfile.py b/pyx/dvi/mapfile.py new file mode 100644 index 00000000..9192fc5f --- /dev/null +++ b/pyx/dvi/mapfile.py @@ -0,0 +1,179 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2007-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +import os.path, re, warnings +from pyx import font, filelocator +from pyx.font import t1file, afmfile +from pyx.dvi import encfile + +class UnsupportedFontFormat(Exception): + pass + +class UnsupportedPSFragment(Exception): + pass + +class ParseError(Exception): + pass + +_marker = object() + +class MAPline: + + tokenpattern = re.compile(r'"(.*?)("\s+|"$|$)|(.*?)(\s+|$)') + + def __init__(self, s): + """ construct font mapping from line s of font mapping file """ + self.texname = self.basepsname = self.fontfilename = None + + # standard encoding + self.encodingfilename = None + + # supported postscript fragments occuring in psfonts.map + # XXX extendfont not yet implemented + self.reencodefont = self.extendfont = self.slant = None + + # cache for openend font and encoding + self._font = None + self._encoding = _marker + + tokens = [] + while len(s): + match = self.tokenpattern.match(s) + if match: + if match.groups()[0] is not None: + tokens.append('"%s"' % match.groups()[0]) + else: + tokens.append(match.groups()[2]) + s = s[match.end():] + else: + raise ParseError("Cannot tokenize string '%s'" % s) + + next_token_is_encfile = False + for token in tokens: + if next_token_is_encfile: + self.encodingfilename = token + next_token_is_encfile = False + elif token.startswith("<"): + if token == "<": + next_token_is_encfile = True + elif token.startswith("<<"): + # XXX: support non-partial download here + self.fontfilename = token[2:] + elif token.startswith("<["): + self.encodingfilename = token[2:] + elif token.endswith(".pfa") or token.endswith(".pfb"): + self.fontfilename = token[1:] + elif token.endswith(".enc"): + self.encodingfilename = token[1:] + elif token.endswith(".ttf"): + raise UnsupportedFontFormat("TrueType font") + elif token.endswith(".t42"): + raise UnsupportedFontFormat("Type 42 font") + else: + raise ParseError("Unknown token '%s'" % token) + elif token.startswith('"'): + pscode = token[1:-1].split() + # parse standard postscript code fragments + while pscode: + try: + arg, cmd = pscode[:2] + except: + raise UnsupportedPSFragment("Unsupported Postscript fragment '%s'" % pscode) + pscode = pscode[2:] + if cmd == "ReEncodeFont": + self.reencodefont = arg + elif cmd == "ExtendFont": + self.extendfont = arg + elif cmd == "SlantFont": + self.slant = float(arg) + else: + raise UnsupportedPSFragment("Unsupported Postscript fragment '%s %s'" % (arg, cmd)) + else: + if self.texname is None: + self.texname = token + else: + self.basepsname = token + if self.basepsname is None: + self.basepsname = self.texname + + def getfontname(self): + return self.basepsname + + def getfont(self): + if self._font is None: + if self.fontfilename is not None: + fontfile = filelocator.open(self.fontfilename, [filelocator.format.type1], "rb") + t1font = t1file.from_PF_bytes(fontfile.read()) + fontfile.close() + assert self.basepsname == t1font.name, "corrupt MAP file" + try: + metricfile = filelocator.open(os.path.splitext(self.fontfilename)[0], [filelocator.format.afm]) + except IOError: + self._font = font.T1font(t1font, None) + else: + self._font = font.T1font(t1font, afmfile.AFMfile(metricfile)) + metricfile.close() + else: + metricfile = filelocator.open(self.basepsname, [filelocator.format.afm]) + self._font = font.T1builtinfont(self.basepsname, afmfile.AFMfile(metricfile)) + metricfile.close() + return self._font + + def getencoding(self): + if self._encoding is _marker: + if self.encodingfilename is not None: + encodingfile = filelocator.open(self.encodingfilename, [filelocator.format.tex_ps_header], "rb") + ef = encfile.ENCfile(encodingfile.read()) + encodingfile.close() + assert ef.name == "/%s" % self.reencodefont + self._encoding = ef.vector + + else: + self._encoding = None + return self._encoding + + def __str__(self): + return ("'%s' is '%s' read from '%s' encoded as '%s'" % + (self.texname, self.basepsname, self.fontfile, repr(self.encodingfile))) + +# generate fontmap + +def readfontmap(filenames): + """ read font map from filename (without path) """ + fontmap = {} + for filename in filenames: + mapfile = filelocator.open(filename, [filelocator.format.fontmap, filelocator.format.dvips_config], mode="rU") + lineno = 0 + for line in mapfile.readlines(): + lineno += 1 + line = line.rstrip() + if not (line=="" or line[0] in (" ", "%", "*", ";" , "#")): + try: + fm = MAPline(line) + except (ParseError, UnsupportedPSFragment), e: + warnings.warn("Ignoring line %i in mapping file '%s': %s" % (lineno, filename, e)) + except UnsupportedFontFormat, e: + pass + else: + fontmap[fm.texname] = fm + mapfile.close() + return fontmap diff --git a/pyx/dvi/texfont.py b/pyx/dvi/texfont.py new file mode 100644 index 00000000..ee0cfb7d --- /dev/null +++ b/pyx/dvi/texfont.py @@ -0,0 +1,192 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2007-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + +from pyx import bbox, canvasitem, font, filelocator +import tfmfile, vffile + + +class TeXfont: + + def __init__(self, name, c, q, d, tfmconv, pyxconv, debug=0): + self.name = name + self.q = q # desired size of font (fix_word) in TeX points + self.d = d # design size of font (fix_word) in TeX points + self.tfmconv = tfmconv # conversion factor from tfm units to dvi units + self.pyxconv = pyxconv # conversion factor from dvi units to PostScript points + file = filelocator.open(self.name, [filelocator.format.tfm], "rb") + self.TFMfile = tfmfile.TFMfile(file, debug) + file.close() + + # We only check for equality of font checksums if none of them + # is zero. The case c == 0 happend in some VF files and + # according to the VFtoVP documentation, paragraph 40, a check + # is only performed if TFMfile.checksum > 0. Anyhow, being + # more generous here seems to be reasonable + if self.TFMfile.checksum != c and self.TFMfile.checksum != 0 and c != 0: + raise DVIError("check sums do not agree: %d vs. %d" % + (self.TFMfile.checksum, c)) + + # Check whether the given design size matches the one defined in the tfm file + if abs(self.TFMfile.designsize - d) > 2: + raise DVIError("design sizes do not agree: %d vs. %d" % (self.TFMfile.designsize, d)) + #if q < 0 or q > 134217728: + # raise DVIError("font '%s' not loaded: bad scale" % self.name) + if d < 0 or d > 134217728: + raise DVIError("font '%s' not loaded: bad design size" % self.name) + + def __str__(self): + return "font %s designed at %g TeX pts used at %g TeX pts" % (self.name, + 16.0*self.d/16777216L, + 16.0*self.q/16777216L) + + def getsize_pt(self): + """ return size of font in (PS) points """ + # The factor 16L/16777216L=2**(-20) converts a fix_word (here self.q) + # to the corresponding float. Furthermore, we have to convert from TeX + # points to points, hence the factor 72/72.27. + return 72/72.27 * 16*self.q/16777216 + + def _convert_tfm_to_dvi(self, length): + # doing the integer math with long integers will lead to different roundings + # return 16*length*int(round(self.q*self.tfmconv))/16777216 + + # Knuth instead suggests the following algorithm based on 4 byte integer logic only + # z = int(round(self.q*self.tfmconv)) + # b0, b1, b2, b3 = [ord(c) for c in struct.pack(">L", length)] + # assert b0 == 0 or b0 == 255 + # shift = 4 + # while z >= 8388608: + # z >>= 1 + # shift -= 1 + # assert shift >= 0 + # result = ( ( ( ( ( b3 * z ) >> 8 ) + ( b2 * z ) ) >> 8 ) + ( b1 * z ) ) >> shift + # if b0 == 255: + # result = result - (z << (8-shift)) + + # however, we can simplify this using a single long integer multiplication, + # but take into account the transformation of z + z = int(round(self.q*self.tfmconv)) + assert -16777216 <= length < 16777216 # -(1 << 24) <= length < (1 << 24) + assert z < 134217728 # 1 << 27 + shift = 20 # 1 << 20 + while z >= 8388608: # 1 << 23 + z >>= 1 + shift -= 1 + # length*z is a long integer, but the result will be a regular integer + return int(length*long(z) >> shift) + + def _convert_tfm_to_pt(self, length): + return (16*long(round(length*float(self.q)*self.tfmconv))/16777216) * self.pyxconv + + # routines returning lengths as integers in dvi units + + def getwidth_dvi(self, charcode): + return self._convert_tfm_to_dvi(self.TFMfile.width[self.TFMfile.char_info[charcode].width_index]) + + def getheight_dvi(self, charcode): + return self._convert_tfm_to_dvi(self.TFMfile.height[self.TFMfile.char_info[charcode].height_index]) + + def getdepth_dvi(self, charcode): + return self._convert_tfm_to_dvi(self.TFMfile.depth[self.TFMfile.char_info[charcode].depth_index]) + + def getitalic_dvi(self, charcode): + return self._convert_tfm_to_dvi(self.TFMfile.italic[self.TFMfile.char_info[charcode].italic_index]) + + # routines returning lengths as floats in PostScript points + + def getwidth_pt(self, charcode): + return self._convert_tfm_to_pt(self.TFMfile.width[self.TFMfile.char_info[charcode].width_index]) + + def getheight_pt(self, charcode): + return self._convert_tfm_to_pt(self.TFMfile.height[self.TFMfile.char_info[charcode].height_index]) + + def getdepth_pt(self, charcode): + return self._convert_tfm_to_pt(self.TFMfile.depth[self.TFMfile.char_info[charcode].depth_index]) + + def getitalic_pt(self, charcode): + return self._convert_tfm_to_pt(self.TFMfile.italic[self.TFMfile.char_info[charcode].italic_index]) + + def text_pt(self, x_pt, y_pt, charcodes, fontmap=None): + return TeXtext_pt(self, x_pt, y_pt, charcodes, self.getsize_pt(), fontmap=fontmap) + + def getMAPline(self, fontmap): + if self.name not in fontmap: + raise RuntimeError("missing font information for '%s'; check fontmapping file(s)" % self.name) + return fontmap[self.name] + + +class virtualfont(TeXfont): + + def __init__(self, name, file, c, q, d, tfmconv, pyxconv, debug=0): + TeXfont.__init__(self, name, c, q, d, tfmconv, pyxconv, debug) + self.vffile = vffile.vffile(file, 1.0*q/d, tfmconv, pyxconv, debug > 1) + + def getfonts(self): + """ return fonts used in virtual font itself """ + return self.vffile.getfonts() + + def getchar(self, cc): + """ return dvi chunk corresponding to char code cc """ + return self.vffile.getchar(cc) + + def text_pt(self, *args, **kwargs): + raise RuntimeError("you don't know what you're doing") + + +class TeXtext_pt(font.text_pt): + + def __init__(self, font, x_pt, y_pt, charcodes, size_pt, fontmap=None): + self.font = font + self.x_pt = x_pt + self.y_pt = y_pt + self.charcodes = charcodes + self.size_pt = size_pt + self.fontmap = fontmap + + self.width_pt = sum([self.font.getwidth_pt(charcode) for charcode in charcodes]) + self.height_pt = max([self.font.getheight_pt(charcode) for charcode in charcodes]) + self.depth_pt = max([self.font.getdepth_pt(charcode) for charcode in charcodes]) + + self._bbox = bbox.bbox_pt(self.x_pt, self.y_pt-self.depth_pt, self.x_pt+self.width_pt, self.y_pt+self.height_pt) + + def bbox(self): + return self._bbox + + def processPS(self, file, writer, context, registry, bbox): + bbox += self.bbox() + if self.fontmap is not None: + mapline = self.font.getMAPline(self.fontmap) + else: + mapline = self.font.getMAPline(writer.getfontmap()) + font = mapline.getfont() + text = font.text_pt(self.x_pt, self.y_pt, self.charcodes, self.size_pt, decoding=mapline.getencoding(), slant=mapline.slant, ignorebbox=True) + text.processPS(file, writer, context, registry, bbox) + + def processPDF(self, file, writer, context, registry, bbox): + bbox += self.bbox() + + mapline = self.font.getMAPline(writer.getfontmap()) + font = mapline.getfont() + text = font.text_pt(self.x_pt, self.y_pt, self.charcodes, self.size_pt, decoding=mapline.getencoding(), slant=mapline.slant, ignorebbox=True) + text.processPDF(file, writer, context, registry, bbox) + diff --git a/pyx/dvi/tfmfile.py b/pyx/dvi/tfmfile.py new file mode 100644 index 00000000..be0832b3 --- /dev/null +++ b/pyx/dvi/tfmfile.py @@ -0,0 +1,212 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2007-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + +from pyx import reader + +class char_info_word: + + def __init__(self, word): + self.width_index = int((word & 0xFF000000L) >> 24) #make sign-safe + self.height_index = (word & 0x00F00000) >> 20 + self.depth_index = (word & 0x000F0000) >> 16 + self.italic_index = (word & 0x0000FC00) >> 10 + self.tag = (word & 0x00000300) >> 8 + self.remainder = (word & 0x000000FF) + + +class TFMfile: + + def __init__(self, file, debug=0): + self.file = reader.stringreader(file.read()) + + # + # read pre header + # + + self.lf = self.file.readint16() + self.lh = self.file.readint16() + self.bc = self.file.readint16() + self.ec = self.file.readint16() + self.nw = self.file.readint16() + self.nh = self.file.readint16() + self.nd = self.file.readint16() + self.ni = self.file.readint16() + self.nl = self.file.readint16() + self.nk = self.file.readint16() + self.ne = self.file.readint16() + self.np = self.file.readint16() + + if not (self.bc-1 <= self.ec <= 255 and + self.ne <= 256 and + self.lf == 6+self.lh+(self.ec-self.bc+1)+self.nw+self.nh+self.nd + +self.ni+self.nl+self.nk+self.ne+self.np): + raise RuntimeError("error in TFM pre-header") + + if debug: + print "lh=%d" % self.lh + + # + # read header + # + + self.checksum = self.file.readint32() + self.designsize = self.file.readint32() + assert self.designsize > 0, "invald design size" + if self.lh > 2: + assert self.lh > 11, "inconsistency in TFM file: incomplete field" + self.charcoding = self.file.readstring(40) + else: + self.charcoding = None + + if self.lh > 12: + assert self.lh > 16, "inconsistency in TFM file: incomplete field" + self.fontfamily = self.file.readstring(20) + else: + self.fontfamily = None + + if debug: + print "(FAMILY %s)" % self.fontfamily + print "(CODINGSCHEME %s)" % self.charcoding + print "(DESINGSIZE R %f)" % (16.0*self.designsize/16777216L) + + if self.lh > 17: + self.sevenbitsave = self.file.readuchar() + # ignore the following two bytes + self.file.readint16() + facechar = self.file.readuchar() + # decode ugly face specification into the Knuth suggested string + if facechar < 18: + if facechar >= 12: + self.face = "E" + facechar -= 12 + elif facechar >= 6: + self.face = "C" + facechar -= 6 + else: + self.face = "R" + + if facechar >= 4: + self.face = "L" + self.face + facechar -= 4 + elif facechar >= 2: + self.face = "B" + self.face + facechar -= 2 + else: + self.face = "M" + self.face + + if facechar == 1: + self.face = self.face[0] + "I" + self.face[1] + else: + self.face = self.face[0] + "R" + self.face[1] + + else: + self.face = None + else: + self.sevenbitsave = self.face = None + + if self.lh > 18: + # just ignore the rest + print self.file.read((self.lh-18)*4) + + # + # read char_info + # + + self.char_info = [None]*(self.ec+1) + for charcode in range(self.bc, self.ec+1): + self.char_info[charcode] = char_info_word(self.file.readint32()) + if self.char_info[charcode].width_index == 0: + # disable character if width_index is zero + self.char_info[charcode] = None + + # + # read widths + # + + self.width = [None for width_index in range(self.nw)] + for width_index in range(self.nw): + self.width[width_index] = self.file.readint32() + + # + # read heights + # + + self.height = [None for height_index in range(self.nh)] + for height_index in range(self.nh): + self.height[height_index] = self.file.readint32() + + # + # read depths + # + + self.depth = [None for depth_index in range(self.nd)] + for depth_index in range(self.nd): + self.depth[depth_index] = self.file.readint32() + + # + # read italic + # + + self.italic = [None for italic_index in range(self.ni)] + for italic_index in range(self.ni): + self.italic[italic_index] = self.file.readint32() + + # + # read lig_kern + # + + # XXX decode to lig_kern_command + + self.lig_kern = [None for lig_kern_index in range(self.nl)] + for lig_kern_index in range(self.nl): + self.lig_kern[lig_kern_index] = self.file.readint32() + + # + # read kern + # + + self.kern = [None for kern_index in range(self.nk)] + for kern_index in range(self.nk): + self.kern[kern_index] = self.file.readint32() + + # + # read exten + # + + # XXX decode to extensible_recipe + + self.exten = [None for exten_index in range(self.ne)] + for exten_index in range(self.ne): + self.exten[exten_index] = self.file.readint32() + + # + # read param + # + + # XXX decode + + self.param = [None for param_index in range(self.np)] + for param_index in range(self.np): + self.param[param_index] = self.file.readint32() + + self.file.close() diff --git a/pyx/dvi/vffile.py b/pyx/dvi/vffile.py new file mode 100644 index 00000000..3c5ce91c --- /dev/null +++ b/pyx/dvi/vffile.py @@ -0,0 +1,112 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2002-2007 Jörg Lehmann +# Copyright (C) 2002-2007 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +from pyx import reader +import texfont + +_VF_LONG_CHAR = 242 # character packet (long version) +_VF_FNTDEF1234 = 243 # font definition +_VF_PRE = 247 # preamble +_VF_POST = 248 # postamble +_VF_ID = 202 # VF id byte + +class VFError(Exception): pass + +class vffile: + + def __init__(self, file, scale, tfmconv, pyxconv, debug=0): + self.scale = scale + self.tfmconv = tfmconv + self.pyxconv = pyxconv + self.debug = debug + self.fonts = {} # used fonts + self.widths = {} # widths of defined chars + self.chardefs = {} # dvi chunks for defined chars + + afile = reader.stringreader(file.read()) + + cmd = afile.readuchar() + if cmd == _VF_PRE: + if afile.readuchar() != _VF_ID: raise VFError + comment = afile.read(afile.readuchar()) + self.cs = afile.readuint32() + self.ds = afile.readuint32() + else: + raise VFError + + while 1: + cmd = afile.readuchar() + if cmd >= _VF_FNTDEF1234 and cmd < _VF_FNTDEF1234 + 4: + # font definition + if cmd == _VF_FNTDEF1234: + num = afile.readuchar() + elif cmd == _VF_FNTDEF1234+1: + num = afile.readuint16() + elif cmd == _VF_FNTDEF1234+2: + num = afile.readuint24() + elif cmd == _VF_FNTDEF1234+3: + num = afile.readint32() + c = afile.readint32() + s = afile.readint32() # relative scaling used for font (fix_word) + d = afile.readint32() # design size of font + fontname = afile.read(afile.readuchar() + afile.readuchar()) + + # rescaled size of font: s is relative to the scaling + # of the virtual font itself. Note that realscale has + # to be a fix_word (like s) + # XXX: check rounding + reals = int(round(self.scale * (16*self.ds/16777216L) * s)) + + # print ("defining font %s -- VF scale: %g, VF design size: %d, relative font size: %d => real size: %d" % + # (fontname, self.scale, self.ds, s, reals) + # ) + + # XXX allow for virtual fonts here too + self.fonts[num] = texfont.TeXfont(fontname, c, reals, d, self.tfmconv, self.pyxconv, self.debug > 1) + elif cmd == _VF_LONG_CHAR: + # character packet (long form) + pl = afile.readuint32() # packet length + cc = afile.readuint32() # char code (assumed unsigned, but anyhow only 0 <= cc < 255 is actually used) + tfm = afile.readuint24() # character width + dvi = afile.read(pl) # dvi code of character + self.widths[cc] = tfm + self.chardefs[cc] = dvi + elif cmd < _VF_LONG_CHAR: + # character packet (short form) + cc = afile.readuchar() # char code + tfm = afile.readuint24() # character width + dvi = afile.read(cmd) + self.widths[cc] = tfm + self.chardefs[cc] = dvi + elif cmd == _VF_POST: + break + else: + raise VFError + + afile.close() + + def getfonts(self): + return self.fonts + + def getchar(self, cc): + return self.chardefs[cc] + diff --git a/pyx/dvifile.py b/pyx/dvifile.py deleted file mode 100644 index 06248c89..00000000 --- a/pyx/dvifile.py +++ /dev/null @@ -1,1308 +0,0 @@ -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2003-2004,2006,2007 Michael Schindler -# Copyright (C) 2002-2006 André Wobst -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -import cStringIO, exceptions, re, struct, string, sys, warnings, math -import unit, epsfile, bbox, canvas, color, trafo, path, pykpathsea, type1font - - -class binfile: - - def __init__(self, filename, mode="r"): - self.file = open(filename, mode) - - def close(self): - self.file.close() - - def tell(self): - return self.file.tell() - - def eof(self): - return self.file.eof() - - def read(self, bytes): - return self.file.read(bytes) - - def readint(self, bytes=4, signed=0): - first = 1 - result = 0 - while bytes: - value = ord(self.file.read(1)) - if first and signed and value > 127: - value -= 256 - first = 0 - result = 256 * result + value - bytes -= 1 - return result - - def readint32(self): - return struct.unpack(">l", self.file.read(4))[0] - - def readuint32(self): - return struct.unpack(">L", self.file.read(4))[0] - - def readint24(self): - # XXX: checkme - return struct.unpack(">l", "\0"+self.file.read(3))[0] - - def readuint24(self): - # XXX: checkme - return struct.unpack(">L", "\0"+self.file.read(3))[0] - - def readint16(self): - return struct.unpack(">h", self.file.read(2))[0] - - def readuint16(self): - return struct.unpack(">H", self.file.read(2))[0] - - def readchar(self): - return struct.unpack("b", self.file.read(1))[0] - - def readuchar(self): - return struct.unpack("B", self.file.read(1))[0] - - def readstring(self, bytes): - l = self.readuchar() - assert l <= bytes-1, "inconsistency in file: string too long" - return self.file.read(bytes-1)[:l] - -class stringbinfile(binfile): - - def __init__(self, s): - self.file = cStringIO.StringIO(s) - - - - -############################################################################## -# TFM file handling -############################################################################## - -class TFMError(exceptions.Exception): pass - - -class char_info_word: - def __init__(self, word): - self.width_index = int((word & 0xFF000000L) >> 24) #make sign-safe - self.height_index = (word & 0x00F00000) >> 20 - self.depth_index = (word & 0x000F0000) >> 16 - self.italic_index = (word & 0x0000FC00) >> 10 - self.tag = (word & 0x00000300) >> 8 - self.remainder = (word & 0x000000FF) - - -class tfmfile: - def __init__(self, name, debug=0): - self.file = binfile(name, "rb") - - # - # read pre header - # - - self.lf = self.file.readint16() - self.lh = self.file.readint16() - self.bc = self.file.readint16() - self.ec = self.file.readint16() - self.nw = self.file.readint16() - self.nh = self.file.readint16() - self.nd = self.file.readint16() - self.ni = self.file.readint16() - self.nl = self.file.readint16() - self.nk = self.file.readint16() - self.ne = self.file.readint16() - self.np = self.file.readint16() - - if not (self.bc-1 <= self.ec <= 255 and - self.ne <= 256 and - self.lf == 6+self.lh+(self.ec-self.bc+1)+self.nw+self.nh+self.nd - +self.ni+self.nl+self.nk+self.ne+self.np): - raise TFMError, "error in TFM pre-header" - - if debug: - print "lh=%d" % self.lh - - # - # read header - # - - self.checksum = self.file.readint32() - self.designsize = self.file.readint32() - assert self.designsize > 0, "invald design size" - if self.lh > 2: - assert self.lh > 11, "inconsistency in TFM file: incomplete field" - self.charcoding = self.file.readstring(40) - else: - self.charcoding = None - - if self.lh > 12: - assert self.lh > 16, "inconsistency in TFM file: incomplete field" - self.fontfamily = self.file.readstring(20) - else: - self.fontfamily = None - - if debug: - print "(FAMILY %s)" % self.fontfamily - print "(CODINGSCHEME %s)" % self.charcoding - print "(DESINGSIZE R %f)" % 16.0*self.designsize/16777216L - - if self.lh > 17: - self.sevenbitsave = self.file.readuchar() - # ignore the following two bytes - self.file.readint16() - facechar = self.file.readuchar() - # decode ugly face specification into the Knuth suggested string - if facechar < 18: - if facechar >= 12: - self.face = "E" - facechar -= 12 - elif facechar >= 6: - self.face = "C" - facechar -= 6 - else: - self.face = "R" - - if facechar >= 4: - self.face = "L" + self.face - facechar -= 4 - elif facechar >= 2: - self.face = "B" + self.face - facechar -= 2 - else: - self.face = "M" + self.face - - if facechar == 1: - self.face = self.face[0] + "I" + self.face[1] - else: - self.face = self.face[0] + "R" + self.face[1] - - else: - self.face = None - else: - self.sevenbitsave = self.face = None - - if self.lh > 18: - # just ignore the rest - print self.file.read((self.lh-18)*4) - - # - # read char_info - # - - self.char_info = [None]*(self.ec+1) - for charcode in range(self.bc, self.ec+1): - self.char_info[charcode] = char_info_word(self.file.readint32()) - if self.char_info[charcode].width_index == 0: - # disable character if width_index is zero - self.char_info[charcode] = None - - # - # read widths - # - - self.width = [None for width_index in range(self.nw)] - for width_index in range(self.nw): - self.width[width_index] = self.file.readint32() - - # - # read heights - # - - self.height = [None for height_index in range(self.nh)] - for height_index in range(self.nh): - self.height[height_index] = self.file.readint32() - - # - # read depths - # - - self.depth = [None for depth_index in range(self.nd)] - for depth_index in range(self.nd): - self.depth[depth_index] = self.file.readint32() - - # - # read italic - # - - self.italic = [None for italic_index in range(self.ni)] - for italic_index in range(self.ni): - self.italic[italic_index] = self.file.readint32() - - # - # read lig_kern - # - - # XXX decode to lig_kern_command - - self.lig_kern = [None for lig_kern_index in range(self.nl)] - for lig_kern_index in range(self.nl): - self.lig_kern[lig_kern_index] = self.file.readint32() - - # - # read kern - # - - self.kern = [None for kern_index in range(self.nk)] - for kern_index in range(self.nk): - self.kern[kern_index] = self.file.readint32() - - # - # read exten - # - - # XXX decode to extensible_recipe - - self.exten = [None for exten_index in range(self.ne)] - for exten_index in range(self.ne): - self.exten[exten_index] = self.file.readint32() - - # - # read param - # - - # XXX decode - - self.param = [None for param_index in range(self.np)] - for param_index in range(self.np): - self.param[param_index] = self.file.readint32() - - self.file.close() - - - -############################################################################## -# Font handling -############################################################################## - -# -# PostScript font selection and output primitives -# - -class UnsupportedFontFormat(Exception): - pass - -class UnsupportedPSFragment(Exception): - pass - -class fontmapping: - - tokenpattern = re.compile(r'"(.*?)("\s+|"$|$)|(.*?)(\s+|$)') - - def __init__(self, s): - """ construct font mapping from line s of font mapping file """ - self.texname = self.basepsname = self.fontfile = None - - # standard encoding - self.encodingfile = None - - # supported postscript fragments occuring in psfonts.map - self.reencodefont = self.extendfont = self.slantfont = None - - tokens = [] - while len(s): - match = self.tokenpattern.match(s) - if match: - if match.groups()[0] is not None: - tokens.append('"%s"' % match.groups()[0]) - else: - tokens.append(match.groups()[2]) - s = s[match.end():] - else: - raise RuntimeError("Cannot tokenize string '%s'" % s) - - for token in tokens: - if token.startswith("<"): - if token.startswith("<<"): - # XXX: support non-partial download here - self.fontfile = token[2:] - elif token.startswith("<["): - self.encodingfile = token[2:] - elif token.endswith(".pfa") or token.endswith(".pfb"): - self.fontfile = token[1:] - elif token.endswith(".enc"): - self.encodingfile = token[1:] - elif token.endswith(".ttf"): - raise UnsupportedFontFormat("TrueType font") - else: - raise RuntimeError("Unknown token '%s'" % token) - elif token.startswith('"'): - pscode = token[1:-1].split() - # parse standard postscript code fragments - while pscode: - try: - arg, cmd = pscode[:2] - except: - raise UnsupportedPSFragment("Unsupported Postscript fragment '%s'" % pscode) - pscode = pscode[2:] - if cmd == "ReEncodeFont": - self.reencodefont = arg - elif cmd == "ExtendFont": - self.extendfont = arg - elif cmd == "SlantFont": - self.slantfont = arg - else: - raise UnsupportedPSFragment("Unsupported Postscript fragment '%s %s'" % (arg, cmd)) - else: - if self.texname is None: - self.texname = token - else: - self.basepsname = token - if self.basepsname is None: - self.basepsname = self.texname - - def __str__(self): - return ("'%s' is '%s' read from '%s' encoded as '%s'" % - (self.texname, self.basepsname, self.fontfile, repr(self.encodingfile))) - -# generate fontmap - -def readfontmap(filenames): - """ read font map from filename (without path) """ - fontmap = {} - for filename in filenames: - mappath = pykpathsea.find_file(filename, pykpathsea.kpse_fontmap_format) - # try also the oft-used registration as dvips config file - if not mappath: - mappath = pykpathsea.find_file(filename, pykpathsea.kpse_dvips_config_format) - if not mappath: - raise RuntimeError("cannot find font mapping file '%s'" % filename) - mapfile = open(mappath, "rU") - lineno = 0 - for line in mapfile.readlines(): - lineno += 1 - line = line.rstrip() - if not (line=="" or line[0] in (" ", "%", "*", ";" , "#")): - try: - fm = fontmapping(line) - except (RuntimeError, UnsupportedPSFragment), e: - warnings.warn("Ignoring line %i in mapping file '%s': %s" % (lineno, mappath, e)) - except UnsupportedFontFormat, e: - pass - else: - fontmap[fm.texname] = fm - mapfile.close() - return fontmap - - -class font: - - def __init__(self, name, c, q, d, tfmconv, pyxconv, fontmap, debug=0): - self.name = name - self.q = q # desired size of font (fix_word) in TeX points - self.d = d # design size of font (fix_word) in TeX points - self.tfmconv = tfmconv # conversion factor from tfm units to dvi units - self.pyxconv = pyxconv # conversion factor from dvi units to PostScript points - self.fontmap = fontmap - tfmpath = pykpathsea.find_file("%s.tfm" % self.name, pykpathsea.kpse_tfm_format) - if not tfmpath: - raise TFMError("cannot find %s.tfm" % self.name) - self.tfmfile = tfmfile(tfmpath, debug) - - # We only check for equality of font checksums if none of them - # is zero. The case c == 0 happend in some VF files and - # according to the VFtoVP documentation, paragraph 40, a check - # is only performed if tfmfile.checksum > 0. Anyhow, being - # more generous here seems to be reasonable - if self.tfmfile.checksum != c and self.tfmfile.checksum != 0 and c != 0: - raise DVIError("check sums do not agree: %d vs. %d" % - (self.tfmfile.checksum, c)) - - # Check whether the given design size matches the one defined in the tfm file - if abs(self.tfmfile.designsize - d) > 2: - raise DVIError("design sizes do not agree: %d vs. %d" % (self.tfmfile.designsize, d)) - #if q < 0 or q > 134217728: - # raise DVIError("font '%s' not loaded: bad scale" % self.name) - if d < 0 or d > 134217728: - raise DVIError("font '%s' not loaded: bad design size" % self.name) - - self.scale = 1.0*q/d - - def fontinfo(self): - class fontinfo: - pass - - # The following code is a very crude way to obtain the information - # required for the PDF font descritor. (TODO: The correct way would - # be to read the information from the AFM file.) - fontinfo = fontinfo() - try: - fontinfo.fontbbox = (0, - -self.getdepth_ds(ord("y")), - self.getwidth_ds(ord("W")), - self.getheight_ds(ord("H"))) - except: - fontinfo.fontbbox = (0, -10, 100, 100) - try: - fontinfo.italicangle = -180/math.pi*math.atan(self.tfmfile.param[0]/65536.0) - except IndexError: - fontinfo.italicangle = 0 - fontinfo.ascent = fontinfo.fontbbox[3] - fontinfo.descent = fontinfo.fontbbox[1] - try: - fontinfo.capheight = self.getheight_ds(ord("h")) - except: - fontinfo.capheight = 100 - try: - fontinfo.vstem = self.getwidth_ds(ord("."))/3 - except: - fontinfo.vstem = 5 - return fontinfo - - def __str__(self): - return "font %s designed at %g TeX pts used at %g TeX pts" % (self.name, - 16.0*self.d/16777216L, - 16.0*self.q/16777216L) - __repr__ = __str__ - - def getsize_pt(self): - """ return size of font in (PS) points """ - # The factor 16L/16777216L=2**(-20) converts a fix_word (here self.q) - # to the corresponding float. Furthermore, we have to convert from TeX - # points to points, hence the factor 72/72.27. - return 16L*self.q/16777216L*72/72.27 - - def _convert_tfm_to_dvi(self, length): - # doing the integer math with long integers will lead to different roundings - # return 16*length*int(round(self.q*self.tfmconv))/16777216 - - # Knuth instead suggests the following algorithm based on 4 byte integer logic only - # z = int(round(self.q*self.tfmconv)) - # b0, b1, b2, b3 = [ord(c) for c in struct.pack(">L", length)] - # assert b0 == 0 or b0 == 255 - # shift = 4 - # while z >= 8388608: - # z >>= 1 - # shift -= 1 - # assert shift >= 0 - # result = ( ( ( ( ( b3 * z ) >> 8 ) + ( b2 * z ) ) >> 8 ) + ( b1 * z ) ) >> shift - # if b0 == 255: - # result = result - (z << (8-shift)) - - # however, we can simplify this using a single long integer multiplication, - # but take into account the transformation of z - z = int(round(self.q*self.tfmconv)) - assert -16777216 <= length < 16777216 # -(1 << 24) <= length < (1 << 24) - assert z < 134217728 # 1 << 27 - shift = 20 # 1 << 20 - while z >= 8388608: # 1 << 23 - z >>= 1 - shift -= 1 - # length*z is a long integer, but the result will be a regular integer - return int(length*long(z) >> shift) - - def _convert_tfm_to_ds(self, length): - return (16*long(round(length*float(self.q)*self.tfmconv))/16777216) * self.pyxconv * 1000 / self.getsize_pt() - - def _convert_tfm_to_pt(self, length): - return (16*long(round(length*float(self.q)*self.tfmconv))/16777216) * self.pyxconv - - # routines returning lengths as integers in dvi units - - def getwidth_dvi(self, charcode): - return self._convert_tfm_to_dvi(self.tfmfile.width[self.tfmfile.char_info[charcode].width_index]) - - def getheight_dvi(self, charcode): - return self._convert_tfm_to_dvi(self.tfmfile.height[self.tfmfile.char_info[charcode].height_index]) - - def getdepth_dvi(self, charcode): - return self._convert_tfm_to_dvi(self.tfmfile.depth[self.tfmfile.char_info[charcode].depth_index]) - - def getitalic_dvi(self, charcode): - return self._convert_tfm_to_dvi(self.tfmfile.italic[self.tfmfile.char_info[charcode].italic_index]) - - # routines returning lengths as integers in design size (AFM) units - - def getwidth_ds(self, charcode): - return self._convert_tfm_to_ds(self.tfmfile.width[self.tfmfile.char_info[charcode].width_index]) - - def getheight_ds(self, charcode): - return self._convert_tfm_to_ds(self.tfmfile.height[self.tfmfile.char_info[charcode].height_index]) - - def getdepth_ds(self, charcode): - return self._convert_tfm_to_ds(self.tfmfile.depth[self.tfmfile.char_info[charcode].depth_index]) - - def getitalic_ds(self, charcode): - return self._convert_tfm_to_ds(self.tfmfile.italic[self.tfmfile.char_info[charcode].italic_index]) - - # routines returning lengths as floats in PostScript points - - def getwidth_pt(self, charcode): - return self._convert_tfm_to_pt(self.tfmfile.width[self.tfmfile.char_info[charcode].width_index]) - - def getheight_pt(self, charcode): - return self._convert_tfm_to_pt(self.tfmfile.height[self.tfmfile.char_info[charcode].height_index]) - - def getdepth_pt(self, charcode): - return self._convert_tfm_to_pt(self.tfmfile.depth[self.tfmfile.char_info[charcode].depth_index]) - - def getitalic_pt(self, charcode): - return self._convert_tfm_to_pt(self.tfmfile.italic[self.tfmfile.char_info[charcode].italic_index]) - - -class virtualfont(font): - def __init__(self, name, c, q, d, tfmconv, pyxconv, fontmap, debug=0): - fontpath = pykpathsea.find_file(name, pykpathsea.kpse_vf_format) - if fontpath is None or not len(fontpath): - raise RuntimeError - font.__init__(self, name, c, q, d, tfmconv, pyxconv, fontmap, debug) - self.vffile = vffile(fontpath, self.scale, tfmconv, pyxconv, fontmap, debug > 1) - - def getfonts(self): - """ return fonts used in virtual font itself """ - return self.vffile.getfonts() - - def getchar(self, cc): - """ return dvi chunk corresponding to char code cc """ - return self.vffile.getchar(cc) - - -############################################################################## -# DVI file handling -############################################################################## - -_DVI_CHARMIN = 0 # typeset a character and move right (range min) -_DVI_CHARMAX = 127 # typeset a character and move right (range max) -_DVI_SET1234 = 128 # typeset a character and move right -_DVI_SETRULE = 132 # typeset a rule and move right -_DVI_PUT1234 = 133 # typeset a character -_DVI_PUTRULE = 137 # typeset a rule -_DVI_NOP = 138 # no operation -_DVI_BOP = 139 # beginning of page -_DVI_EOP = 140 # ending of page -_DVI_PUSH = 141 # save the current positions (h, v, w, x, y, z) -_DVI_POP = 142 # restore positions (h, v, w, x, y, z) -_DVI_RIGHT1234 = 143 # move right -_DVI_W0 = 147 # move right by w -_DVI_W1234 = 148 # move right and set w -_DVI_X0 = 152 # move right by x -_DVI_X1234 = 153 # move right and set x -_DVI_DOWN1234 = 157 # move down -_DVI_Y0 = 161 # move down by y -_DVI_Y1234 = 162 # move down and set y -_DVI_Z0 = 166 # move down by z -_DVI_Z1234 = 167 # move down and set z -_DVI_FNTNUMMIN = 171 # set current font (range min) -_DVI_FNTNUMMAX = 234 # set current font (range max) -_DVI_FNT1234 = 235 # set current font -_DVI_SPECIAL1234 = 239 # special (dvi extention) -_DVI_FNTDEF1234 = 243 # define the meaning of a font number -_DVI_PRE = 247 # preamble -_DVI_POST = 248 # postamble beginning -_DVI_POSTPOST = 249 # postamble ending - -_DVI_VERSION = 2 # dvi version - -# position variable indices -_POS_H = 0 -_POS_V = 1 -_POS_W = 2 -_POS_X = 3 -_POS_Y = 4 -_POS_Z = 5 - -# reader states -_READ_PRE = 1 -_READ_NOPAGE = 2 -_READ_PAGE = 3 -_READ_POST = 4 # XXX not used -_READ_POSTPOST = 5 # XXX not used -_READ_DONE = 6 - - -class DVIError(exceptions.Exception): pass - -# save and restore colors - -class _savecolor(canvas.canvasitem): - def processPS(self, file, writer, context, registry, bbox): - file.write("currentcolor currentcolorspace\n") - - def processPDF(self, file, writer, context, registry, bbox): - file.write("q\n") - - -class _restorecolor(canvas.canvasitem): - def processPS(self, file, writer, context, registry, bbox): - file.write("setcolorspace setcolor\n") - - def processPDF(self, file, writer, context, registry, bbox): - file.write("Q\n") - -class _savetrafo(canvas.canvasitem): - def processPS(self, file, writer, context, registry, bbox): - file.write("matrix currentmatrix\n") - - def processPDF(self, file, writer, context, registry, bbox): - file.write("q\n") - - -class _restoretrafo(canvas.canvasitem): - def processPS(self, file, writer, context, registry, bbox): - file.write("setmatrix\n") - - def processPDF(self, file, writer, context, registry, bbox): - file.write("Q\n") - - -class dvifile: - - def __init__(self, filename, fontmap, debug=0, debugfile=sys.stdout): - """ opens the dvi file and reads the preamble """ - self.filename = filename - self.fontmap = fontmap - self.debug = debug - self.debugfile = debugfile - self.debugstack = [] - - self.fonts = {} - self.activefont = None - - # stack of fonts and fontscale currently used (used for VFs) - self.fontstack = [] - self.stack = [] - - # pointer to currently active page - self.actpage = None - - # stack for self.file, self.fonts and self.stack, needed for VF inclusion - self.statestack = [] - - self.file = binfile(self.filename, "rb") - - # currently read byte in file (for debugging output) - self.filepos = None - - self._read_pre() - - # helper routines - - def flushtext(self): - """ finish currently active text object """ - if self.debug and self.activetext: - self.debugfile.write("[%s]\n" % "".join([chr(char) for char in self.activetext.chars])) - self.activetext = None - - def putrule(self, height, width, advancepos=1): - self.flushtext() - x1 = self.pos[_POS_H] * self.pyxconv - y1 = -self.pos[_POS_V] * self.pyxconv - w = width * self.pyxconv - h = height * self.pyxconv - - if height > 0 and width > 0: - if self.debug: - self.debugfile.write("%d: %srule height %d, width %d (???x??? pixels)\n" % - (self.filepos, advancepos and "set" or "put", height, width)) - self.actpage.fill(path.rect_pt(x1, y1, w, h)) - else: - if self.debug: - self.debugfile.write("%d: %srule height %d, width %d (invisible)\n" % - (self.filepos, advancepos and "set" or "put", height, width)) - - if advancepos: - if self.debug: - self.debugfile.write(" h:=%d+%d=%d, hh:=???\n" % - (self.pos[_POS_H], width, self.pos[_POS_H]+width)) - self.pos[_POS_H] += width - - def putchar(self, char, advancepos=1, id1234=0): - dx = advancepos and self.activefont.getwidth_dvi(char) or 0 - - if self.debug: - self.debugfile.write("%d: %s%s%d h:=%d+%d=%d, hh:=???\n" % - (self.filepos, - advancepos and "set" or "put", - id1234 and "%i " % id1234 or "char", - char, - self.pos[_POS_H], dx, self.pos[_POS_H]+dx)) - - if isinstance(self.activefont, virtualfont): - # virtual font handling - afterpos = list(self.pos) - afterpos[_POS_H] += dx - self._push_dvistring(self.activefont.getchar(char), self.activefont.getfonts(), afterpos, - self.activefont.getsize_pt()) - else: - if self.activetext is None: - if not self.fontmap.has_key(self.activefont.name): - raise RuntimeError("missing font information for '%s'; check fontmapping file(s)" % self.activefont.name) - fontmapinfo = self.fontmap[self.activefont.name] - - encodingname = fontmapinfo.reencodefont - if encodingname is not None: - encodingfilename = pykpathsea.find_file(fontmapinfo.encodingfile, pykpathsea.kpse_tex_ps_header_format) - if not encodingfilename: - raise RuntimeError("cannot find font encoding file %s" % fontmapinfo.encodingfile) - fontencoding = type1font.encoding(encodingname, encodingfilename) - else: - fontencoding = None - - fontbasefontname = fontmapinfo.basepsname - if fontmapinfo.fontfile is not None: - fontfilename = pykpathsea.find_file(fontmapinfo.fontfile, pykpathsea.kpse_type1_format) - if not fontfilename: - raise RuntimeError("cannot find type 1 font %s" % fontmapinfo.fontfile) - else: - fontfilename = None - - fontslant = fontmapinfo.slantfont - if fontslant is not None: - fontslant = float(fontslant) - - # XXX we currently misuse use self.activefont as metric - font = type1font.font(fontbasefontname, fontfilename, fontencoding, fontslant, self.activefont) - - self.activetext = type1font.text_pt(self.pos[_POS_H] * self.pyxconv, -self.pos[_POS_V] * self.pyxconv, font) - self.actpage.insert(self.activetext) - self.activetext.addchar(char) - self.pos[_POS_H] += dx - - if not advancepos: - self.flushtext() - - def usefont(self, fontnum, id1234=0): - self.flushtext() - self.activefont = self.fonts[fontnum] - if self.debug: - self.debugfile.write("%d: fnt%s%i current font is %s\n" % - (self.filepos, - id1234 and "%i " % id1234 or "num", - fontnum, - self.fonts[fontnum].name)) - - - def definefont(self, cmdnr, num, c, q, d, fontname): - # cmdnr: type of fontdef command (only used for debugging output) - # c: checksum - # q: scaling factor (fix_word) - # Note that q is actually s in large parts of the documentation. - # d: design size (fix_word) - - try: - afont = virtualfont(fontname, c, q/self.tfmconv, d/self.tfmconv, self.tfmconv, self.pyxconv, self.fontmap, self.debug > 1) - except (TypeError, RuntimeError): - afont = font(fontname, c, q/self.tfmconv, d/self.tfmconv, self.tfmconv, self.pyxconv, self.fontmap, self.debug > 1) - - self.fonts[num] = afont - - if self.debug: - self.debugfile.write("%d: fntdef%d %i: %s\n" % (self.filepos, cmdnr, num, fontname)) - -# scale = round((1000.0*self.conv*q)/(self.trueconv*d)) -# m = 1.0*q/d -# scalestring = scale!=1000 and " scaled %d" % scale or "" -# print ("Font %i: %s%s---loaded at size %d DVI units" % -# (num, fontname, scalestring, q)) -# if scale!=1000: -# print " (this font is magnified %d%%)" % round(scale/10) - - def special(self, s): - x = self.pos[_POS_H] * self.pyxconv - y = -self.pos[_POS_V] * self.pyxconv - if self.debug: - self.debugfile.write("%d: xxx '%s'\n" % (self.filepos, s)) - if not s.startswith("PyX:"): - warnings.warn("ignoring special '%s'" % s) - return - - # it is in general not safe to continue using the currently active font because - # the specials may involve some gsave/grestore operations - self.flushtext() - - command, args = s[4:].split()[0], s[4:].split()[1:] - if command == "color_begin": - if args[0] == "cmyk": - c = color.cmyk(float(args[1]), float(args[2]), float(args[3]), float(args[4])) - elif args[0] == "gray": - c = color.gray(float(args[1])) - elif args[0] == "hsb": - c = color.hsb(float(args[1]), float(args[2]), float(args[3])) - elif args[0] == "rgb": - c = color.rgb(float(args[1]), float(args[2]), float(args[3])) - elif args[0] == "RGB": - c = color.rgb(int(args[1])/255.0, int(args[2])/255.0, int(args[3])/255.0) - elif args[0] == "texnamed": - try: - c = getattr(color.cmyk, args[1]) - except AttributeError: - raise RuntimeError("unknown TeX color '%s', aborting" % args[1]) - elif args[0] == "pyxcolor": - # pyx.color.cmyk.PineGreen or - # pyx.color.cmyk(0,0,0,0.0) - pat = re.compile(r"(pyx\.)?(color\.)?(?P(cmyk)|(rgb)|(grey)|(gray)|(hsb))[\.]?(?P.*)") - sd = pat.match(" ".join(args[1:])) - if sd: - sd = sd.groupdict() - if sd["arg"][0] == "(": - numpat = re.compile(r"[+-]?((\d+\.\d*)|(\d*\.\d+)|(\d+))([eE][+-]\d+)?") - arg = tuple([float(x[0]) for x in numpat.findall(sd["arg"])]) - try: - c = getattr(color, sd["model"])(*arg) - except TypeError or AttributeError: - raise RuntimeError("cannot access PyX color '%s' in TeX, aborting" % " ".join(args[1:])) - else: - try: - c = getattr(getattr(color, sd["model"]), sd["arg"]) - except AttributeError: - raise RuntimeError("cannot access PyX color '%s' in TeX, aborting" % " ".join(args[1:])) - else: - raise RuntimeError("cannot access PyX color '%s' in TeX, aborting" % " ".join(args[1:])) - else: - raise RuntimeError("color model '%s' cannot be handled by PyX, aborting" % args[0]) - self.actpage.insert(_savecolor()) - self.actpage.insert(c) - elif command == "color_end": - self.actpage.insert(_restorecolor()) - elif command == "rotate_begin": - self.actpage.insert(_savetrafo()) - self.actpage.insert(trafo.rotate_pt(float(args[0]), x, y)) - elif command == "rotate_end": - self.actpage.insert(_restoretrafo()) - elif command == "scale_begin": - self.actpage.insert(_savetrafo()) - self.actpage.insert(trafo.scale_pt(float(args[0]), float(args[1]), x, y)) - elif command == "scale_end": - self.actpage.insert(_restoretrafo()) - elif command == "epsinclude": - # parse arguments - argdict = {} - for arg in args: - name, value = arg.split("=") - argdict[name] = value - - # construct kwargs for epsfile constructor - epskwargs = {} - epskwargs["filename"] = argdict["file"] - epskwargs["bbox"] = bbox.bbox_pt(float(argdict["llx"]), float(argdict["lly"]), - float(argdict["urx"]), float(argdict["ury"])) - if argdict.has_key("width"): - epskwargs["width"] = float(argdict["width"]) * unit.t_pt - if argdict.has_key("height"): - epskwargs["height"] = float(argdict["height"]) * unit.t_pt - if argdict.has_key("clip"): - epskwargs["clip"] = int(argdict["clip"]) - self.actpage.insert(epsfile.epsfile(x * unit.t_pt, y * unit.t_pt, **epskwargs)) - elif command == "marker": - if len(args) != 1: - raise RuntimeError("marker contains spaces") - for c in args[0]: - if c not in string.digits + string.letters + "@": - raise RuntimeError("marker contains invalid characters") - if self.actpage.markers.has_key(args[0]): - raise RuntimeError("marker name occurred several times") - self.actpage.markers[args[0]] = x * unit.t_pt, y * unit.t_pt - else: - raise RuntimeError("unknown PyX special '%s', aborting" % command) - - # routines for pushing and popping different dvi chunks on the reader - - def _push_dvistring(self, dvi, fonts, afterpos, fontsize): - """ push dvi string with defined fonts on top of reader - stack. Every positions gets scaled relatively by the factor - scale. After the interpreting of the dvi chunk has been finished, - continue with self.pos=afterpos. The designsize of the virtual - font is passed as a fix_word - - """ - - #if self.debug: - # self.debugfile.write("executing new dvi chunk\n") - self.debugstack.append(self.debug) - self.debug = 0 - - self.statestack.append((self.file, self.fonts, self.activefont, afterpos, self.stack, self.pyxconv, self.tfmconv)) - - # units in vf files are relative to the size of the font and given as fix_words - # which can be converted to floats by diving by 2**20 - oldpyxconv = self.pyxconv - self.pyxconv = fontsize/2**20 - rescale = self.pyxconv/oldpyxconv - - self.file = stringbinfile(dvi) - self.fonts = fonts - self.stack = [] - self.filepos = 0 - - # rescale self.pos in order to be consistent with the new scaling - self.pos = map(lambda x, rescale=rescale:1.0*x/rescale, self.pos) - - # since tfmconv converts from tfm units to dvi units, rescale it as well - self.tfmconv /= rescale - - self.usefont(0) - - def _pop_dvistring(self): - self.flushtext() - #if self.debug: - # self.debugfile.write("finished executing dvi chunk\n") - self.debug = self.debugstack.pop() - - self.file.close() - self.file, self.fonts, self.activefont, self.pos, self.stack, self.pyxconv, self.tfmconv = self.statestack.pop() - - # routines corresponding to the different reader states of the dvi maschine - - def _read_pre(self): - afile = self.file - while 1: - self.filepos = afile.tell() - cmd = afile.readuchar() - if cmd == _DVI_NOP: - pass - elif cmd == _DVI_PRE: - if afile.readuchar() != _DVI_VERSION: raise DVIError - num = afile.readuint32() - den = afile.readuint32() - self.mag = afile.readuint32() - - # For the interpretation of the lengths in dvi and tfm files, - # three conversion factors are relevant: - # - self.tfmconv: tfm units -> dvi units - # - self.pyxconv: dvi units -> (PostScript) points - # - self.conv: dvi units -> pixels - self.tfmconv = (25400000.0/num)*(den/473628672.0)/16.0 - - # calculate conv as described in the DVIType docu using - # a given resolution in dpi - self.resolution = 300.0 - self.conv = (num/254000.0)*(self.resolution/den) - - # self.pyxconv is the conversion factor from the dvi units - # to (PostScript) points. It consists of - # - self.mag/1000.0: magstep scaling - # - self.conv: conversion from dvi units to pixels - # - 1/self.resolution: conversion from pixels to inch - # - 72 : conversion from inch to points - self.pyxconv = self.mag/1000.0*self.conv/self.resolution*72 - - comment = afile.read(afile.readuchar()) - return - else: - raise DVIError - - def readpage(self, pageid=None): - """ reads a page from the dvi file - - This routine reads a page from the dvi file which is - returned as a canvas. When there is no page left in the - dvifile, None is returned and the file is closed properly.""" - - while 1: - self.filepos = self.file.tell() - cmd = self.file.readuchar() - if cmd == _DVI_NOP: - pass - elif cmd == _DVI_BOP: - ispageid = [self.file.readuint32() for i in range(10)] - if pageid is not None and ispageid != pageid: - raise DVIError("invalid pageid") - if self.debug: - self.debugfile.write("%d: beginning of page %i\n" % (self.filepos, ispageid[0])) - self.file.readuint32() - break - elif cmd == _DVI_POST: - self.file.close() - return None # nothing left - else: - raise DVIError - - self.actpage = canvas.canvas() - self.actpage.markers = {} - self.pos = [0, 0, 0, 0, 0, 0] - - # currently active output: text instance currently used - self.activetext = None - - while 1: - afile = self.file - self.filepos = afile.tell() - try: - cmd = afile.readuchar() - except struct.error: - # we most probably (if the dvi file is not corrupt) hit the end of a dvi chunk, - # so we have to continue with the rest of the dvi file - self._pop_dvistring() - continue - if cmd == _DVI_NOP: - pass - if cmd >= _DVI_CHARMIN and cmd <= _DVI_CHARMAX: - self.putchar(cmd) - elif cmd >= _DVI_SET1234 and cmd < _DVI_SET1234 + 4: - self.putchar(afile.readint(cmd - _DVI_SET1234 + 1), id1234=cmd-_DVI_SET1234+1) - elif cmd == _DVI_SETRULE: - self.putrule(afile.readint32(), afile.readint32()) - elif cmd >= _DVI_PUT1234 and cmd < _DVI_PUT1234 + 4: - self.putchar(afile.readint(cmd - _DVI_PUT1234 + 1), advancepos=0, id1234=cmd-_DVI_SET1234+1) - elif cmd == _DVI_PUTRULE: - self.putrule(afile.readint32(), afile.readint32(), 0) - elif cmd == _DVI_EOP: - self.flushtext() - if self.debug: - self.debugfile.write("%d: eop\n \n" % self.filepos) - return self.actpage - elif cmd == _DVI_PUSH: - self.stack.append(list(self.pos)) - if self.debug: - self.debugfile.write("%s: push\n" - "level %d:(h=%d,v=%d,w=%d,x=%d,y=%d,z=%d,hh=???,vv=???)\n" % - ((self.filepos, len(self.stack)-1) + tuple(self.pos))) - elif cmd == _DVI_POP: - self.flushtext() - self.pos = self.stack.pop() - if self.debug: - self.debugfile.write("%s: pop\n" - "level %d:(h=%d,v=%d,w=%d,x=%d,y=%d,z=%d,hh=???,vv=???)\n" % - ((self.filepos, len(self.stack)) + tuple(self.pos))) - elif cmd >= _DVI_RIGHT1234 and cmd < _DVI_RIGHT1234 + 4: - self.flushtext() - dh = afile.readint(cmd - _DVI_RIGHT1234 + 1, 1) - if self.debug: - self.debugfile.write("%d: right%d %d h:=%d%+d=%d, hh:=???\n" % - (self.filepos, - cmd - _DVI_RIGHT1234 + 1, - dh, - self.pos[_POS_H], - dh, - self.pos[_POS_H]+dh)) - self.pos[_POS_H] += dh - elif cmd == _DVI_W0: - self.flushtext() - if self.debug: - self.debugfile.write("%d: w0 %d h:=%d%+d=%d, hh:=???\n" % - (self.filepos, - self.pos[_POS_W], - self.pos[_POS_H], - self.pos[_POS_W], - self.pos[_POS_H]+self.pos[_POS_W])) - self.pos[_POS_H] += self.pos[_POS_W] - elif cmd >= _DVI_W1234 and cmd < _DVI_W1234 + 4: - self.flushtext() - self.pos[_POS_W] = afile.readint(cmd - _DVI_W1234 + 1, 1) - if self.debug: - self.debugfile.write("%d: w%d %d h:=%d%+d=%d, hh:=???\n" % - (self.filepos, - cmd - _DVI_W1234 + 1, - self.pos[_POS_W], - self.pos[_POS_H], - self.pos[_POS_W], - self.pos[_POS_H]+self.pos[_POS_W])) - self.pos[_POS_H] += self.pos[_POS_W] - elif cmd == _DVI_X0: - self.flushtext() - if self.debug: - self.debugfile.write("%d: x0 %d h:=%d%+d=%d, hh:=???\n" % - (self.filepos, - self.pos[_POS_X], - self.pos[_POS_H], - self.pos[_POS_X], - self.pos[_POS_H]+self.pos[_POS_X])) - self.pos[_POS_H] += self.pos[_POS_X] - elif cmd >= _DVI_X1234 and cmd < _DVI_X1234 + 4: - self.flushtext() - self.pos[_POS_X] = afile.readint(cmd - _DVI_X1234 + 1, 1) - if self.debug: - self.debugfile.write("%d: x%d %d h:=%d%+d=%d, hh:=???\n" % - (self.filepos, - cmd - _DVI_X1234 + 1, - self.pos[_POS_X], - self.pos[_POS_H], - self.pos[_POS_X], - self.pos[_POS_H]+self.pos[_POS_X])) - self.pos[_POS_H] += self.pos[_POS_X] - elif cmd >= _DVI_DOWN1234 and cmd < _DVI_DOWN1234 + 4: - self.flushtext() - dv = afile.readint(cmd - _DVI_DOWN1234 + 1, 1) - if self.debug: - self.debugfile.write("%d: down%d %d v:=%d%+d=%d, vv:=???\n" % - (self.filepos, - cmd - _DVI_DOWN1234 + 1, - dv, - self.pos[_POS_V], - dv, - self.pos[_POS_V]+dv)) - self.pos[_POS_V] += dv - elif cmd == _DVI_Y0: - self.flushtext() - if self.debug: - self.debugfile.write("%d: y0 %d v:=%d%+d=%d, vv:=???\n" % - (self.filepos, - self.pos[_POS_Y], - self.pos[_POS_V], - self.pos[_POS_Y], - self.pos[_POS_V]+self.pos[_POS_Y])) - self.pos[_POS_V] += self.pos[_POS_Y] - elif cmd >= _DVI_Y1234 and cmd < _DVI_Y1234 + 4: - self.flushtext() - self.pos[_POS_Y] = afile.readint(cmd - _DVI_Y1234 + 1, 1) - if self.debug: - self.debugfile.write("%d: y%d %d v:=%d%+d=%d, vv:=???\n" % - (self.filepos, - cmd - _DVI_Y1234 + 1, - self.pos[_POS_Y], - self.pos[_POS_V], - self.pos[_POS_Y], - self.pos[_POS_V]+self.pos[_POS_Y])) - self.pos[_POS_V] += self.pos[_POS_Y] - elif cmd == _DVI_Z0: - self.flushtext() - if self.debug: - self.debugfile.write("%d: z0 %d v:=%d%+d=%d, vv:=???\n" % - (self.filepos, - self.pos[_POS_Z], - self.pos[_POS_V], - self.pos[_POS_Z], - self.pos[_POS_V]+self.pos[_POS_Z])) - self.pos[_POS_V] += self.pos[_POS_Z] - elif cmd >= _DVI_Z1234 and cmd < _DVI_Z1234 + 4: - self.flushtext() - self.pos[_POS_Z] = afile.readint(cmd - _DVI_Z1234 + 1, 1) - if self.debug: - self.debugfile.write("%d: z%d %d v:=%d%+d=%d, vv:=???\n" % - (self.filepos, - cmd - _DVI_Z1234 + 1, - self.pos[_POS_Z], - self.pos[_POS_V], - self.pos[_POS_Z], - self.pos[_POS_V]+self.pos[_POS_Z])) - self.pos[_POS_V] += self.pos[_POS_Z] - elif cmd >= _DVI_FNTNUMMIN and cmd <= _DVI_FNTNUMMAX: - self.usefont(cmd - _DVI_FNTNUMMIN, 0) - elif cmd >= _DVI_FNT1234 and cmd < _DVI_FNT1234 + 4: - # note that according to the DVI docs, for four byte font numbers, - # the font number is signed. Don't ask why! - fntnum = afile.readint(cmd - _DVI_FNT1234 + 1, cmd == _DVI_FNT1234 + 3) - self.usefont(fntnum, id1234=cmd-_DVI_FNT1234+1) - elif cmd >= _DVI_SPECIAL1234 and cmd < _DVI_SPECIAL1234 + 4: - self.special(afile.read(afile.readint(cmd - _DVI_SPECIAL1234 + 1))) - elif cmd >= _DVI_FNTDEF1234 and cmd < _DVI_FNTDEF1234 + 4: - if cmd == _DVI_FNTDEF1234: - num = afile.readuchar() - elif cmd == _DVI_FNTDEF1234+1: - num = afile.readuint16() - elif cmd == _DVI_FNTDEF1234+2: - num = afile.readuint24() - elif cmd == _DVI_FNTDEF1234+3: - # Cool, here we have according to docu a signed int. Why? - num = afile.readint32() - self.definefont(cmd-_DVI_FNTDEF1234+1, - num, - afile.readint32(), - afile.readint32(), - afile.readint32(), - afile.read(afile.readuchar()+afile.readuchar())) - else: - raise DVIError - - -############################################################################## -# VF file handling -############################################################################## - -_VF_LONG_CHAR = 242 # character packet (long version) -_VF_FNTDEF1234 = _DVI_FNTDEF1234 # font definition -_VF_PRE = _DVI_PRE # preamble -_VF_POST = _DVI_POST # postamble - -_VF_ID = 202 # VF id byte - -class VFError(exceptions.Exception): pass - -class vffile: - def __init__(self, filename, scale, tfmconv, pyxconv, fontmap, debug=0): - self.filename = filename - self.scale = scale - self.tfmconv = tfmconv - self.pyxconv = pyxconv - self.fontmap = fontmap - self.debug = debug - self.fonts = {} # used fonts - self.widths = {} # widths of defined chars - self.chardefs = {} # dvi chunks for defined chars - - afile = binfile(self.filename, "rb") - - cmd = afile.readuchar() - if cmd == _VF_PRE: - if afile.readuchar() != _VF_ID: raise VFError - comment = afile.read(afile.readuchar()) - self.cs = afile.readuint32() - self.ds = afile.readuint32() - else: - raise VFError - - while 1: - cmd = afile.readuchar() - if cmd >= _VF_FNTDEF1234 and cmd < _VF_FNTDEF1234 + 4: - # font definition - if cmd == _VF_FNTDEF1234: - num = afile.readuchar() - elif cmd == _VF_FNTDEF1234+1: - num = afile.readuint16() - elif cmd == _VF_FNTDEF1234+2: - num = afile.readuint24() - elif cmd == _VF_FNTDEF1234+3: - num = afile.readint32() - c = afile.readint32() - s = afile.readint32() # relative scaling used for font (fix_word) - d = afile.readint32() # design size of font - fontname = afile.read(afile.readuchar()+afile.readuchar()) - - # rescaled size of font: s is relative to the scaling - # of the virtual font itself. Note that realscale has - # to be a fix_word (like s) - # XXX: check rounding - reals = int(round(self.scale * (16*self.ds/16777216L) * s)) - - # print ("defining font %s -- VF scale: %g, VF design size: %d, relative font size: %d => real size: %d" % - # (fontname, self.scale, self.ds, s, reals) - # ) - - # XXX allow for virtual fonts here too - self.fonts[num] = font(fontname, c, reals, d, self.tfmconv, self.pyxconv, self.fontmap, self.debug > 1) - elif cmd == _VF_LONG_CHAR: - # character packet (long form) - pl = afile.readuint32() # packet length - cc = afile.readuint32() # char code (assumed unsigned, but anyhow only 0 <= cc < 255 is actually used) - tfm = afile.readuint24() # character width - dvi = afile.read(pl) # dvi code of character - self.widths[cc] = tfm - self.chardefs[cc] = dvi - elif cmd < _VF_LONG_CHAR: - # character packet (short form) - cc = afile.readuchar() # char code - tfm = afile.readuint24() # character width - dvi = afile.read(cmd) - self.widths[cc] = tfm - self.chardefs[cc] = dvi - elif cmd == _VF_POST: - break - else: - raise VFError - - afile.close() - - def getfonts(self): - return self.fonts - - def getchar(self, cc): - return self.chardefs[cc] - - diff --git a/pyx/epsfile.py b/pyx/epsfile.py index b008d68f..4c5fda5d 100644 --- a/pyx/epsfile.py +++ b/pyx/epsfile.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -20,8 +20,8 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -import string -import canvas, bbox, pykpathsea, unit, trafo, pswriter +import os, string, tempfile, warnings +import canvasitem, bbox, filelocator, unit, trafo, pswriter # PostScript-procedure definitions (cf. 5002.EPSF_Spec_v3.0.pdf) # with important correction in EndEPSF: @@ -224,7 +224,7 @@ def _readbbox(filename): return usebbox -class epsfile(canvas.canvasitem): +class epsfile(canvasitem.canvasitem): """class for epsfiles""" @@ -246,10 +246,8 @@ class epsfile(canvas.canvasitem): self.x_pt = unit.topt(x) self.y_pt = unit.topt(y) - if kpsearch: - self.filename = pykpathsea.find_file(filename, pykpathsea.kpse_pict_format) - else: - self.filename = filename + self.filename = filename + self.kpsearch = kpsearch self.mybbox = bbox or _readbbox(self.filename) # determine scaling in x and y direction @@ -316,10 +314,11 @@ class epsfile(canvas.canvasitem): registry.add(_BeginEPSF) registry.add(_EndEPSF) bbox += self.bbox() - try: - epsfile=open(self.filename,"rb") - except: - raise IOError, "cannot open EPS file '%s'" % self.filename + + if self.kpsearch: + epsfile = filelocator.open(self.filename, [filelocator.format.pict], "rb") + else: + epsfile = open(self.filename, "rb") file.write("BeginEPSF\n") @@ -330,9 +329,27 @@ class epsfile(canvas.canvasitem): self.trafo.processPS(file, writer, context, registry, bbox) file.write("%%%%BeginDocument: %s\n" % self.filename) - file.write(epsfile.read()) + file.write(epsfile.read()) file.write("%%EndDocument\n") file.write("EndEPSF\n") + epsfile.close() def processPDF(self, file, writer, context, registry, bbox): - raise RuntimeError("Including EPS files in PDF files not supported") + warnings.warn("EPS file is included as a bitmap created using pipeGS") + from pyx import bitmap, canvas + import Image + c = canvas.canvas() + c.insert(self) + fd, fname = tempfile.mkstemp() + f = os.fdopen(fd, "wb") + f.close() + c.pipeGS(fname, device="pngalpha", resolution=600) + i = Image.open(fname) + i.load() + os.unlink(fname) + b = bitmap.bitmap_pt(self.bbox().llx_pt, self.bbox().lly_pt, i) + # we slightly shift the bitmap to re-center it, as the bitmap might contain some additional border + # unfortunately we need to construct another bitmap instance for that ... + b = bitmap.bitmap_pt(self.bbox().llx_pt + 0.5*(self.bbox().width_pt()-b.bbox().width_pt()), + self.bbox().lly_pt + 0.5*(self.bbox().height_pt()-b.bbox().height_pt()), i) + b.processPDF(file, writer, context, registry, bbox) diff --git a/pyx/filelocator.py b/pyx/filelocator.py new file mode 100644 index 00000000..530227eb --- /dev/null +++ b/pyx/filelocator.py @@ -0,0 +1,288 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2011 Jörg Lehmann +# Copyright (C) 2009-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +builtinopen = open + +import os, cStringIO, warnings, pkgutil + +import config, pycompat + +try: + import pykpathsea as pykpathsea_module + has_pykpathsea = True +except ImportError: + has_pykpathsea = False + + +# Locators implement an open method which returns a list of functions +# by searching for a file according to a specific rule. Each of the functions +# returned can be called (multiple times) and return an open file. The +# opening of the file might fail with a IOError which indicates, that the +# file could not be found at the given location. +# names is a list of kpsewhich format names to be used for searching where as +# extensions is a list of file extensions to be tried (including the dot). Note +# that the list of file extenions should include an empty string to not add +# an extension at all. + +locator_classes = {} + +class local: + """locates files in the current directory""" + + def openers(self, filename, names, extensions, mode): + return [lambda: builtinopen(filename+extension, mode) for extension in extensions] + +locator_classes["local"] = local + + +class internal_pkgutil: + """locates files within the PyX data tree (via pkgutil)""" + + def openers(self, filename, names, extensions, mode): + for extension in extensions: + full_filename = filename+extension + dir = os.path.splitext(full_filename)[1][1:] + try: + data = pkgutil.get_data("pyx", "data/%s/%s" % (dir, full_filename)) + except IOError: + pass + else: + if data: + # ignoring mode?! + return [lambda: cStringIO.StringIO(data)] + return [] + +class internal_open: + """locates files within the PyX data tree (via an open relative to the path of this file)""" + + def openers(self, filename, names, extensions, mode): + result = [] + for extension in extensions: + full_filename = filename+extension + dir = os.path.splitext(full_filename)[1][1:] + result.append(lambda: builtinopen(os.path.join(os.path.dirname(__file__), "data", dir, full_filename), mode)) + return result + +try: + pkgutil.get_data +except AttributeError: + locator_classes["internal"] = internal_open # fallback for python < 2.6 +else: + locator_classes["internal"] = internal_pkgutil + + +class recursivedir: + """locates files by searching recursively in a list of directories""" + + def __init__(self): + self.dirs = config.getlist("locator", "recursivedir") + self.full_filenames = {} + + def openers(self, filename, names, extensions, mode): + for extension in extensions: + if filename+extension in self.full_filenames: + return [lambda: builtinopen(self.full_filenames[filename], mode)] + while self.dirs: + dir = self.dirs.pop(0) + for item in os.listdir(dir): + full_item = os.path.join(dir, item) + if os.path.isdir(full_item): + self.dirs.insert(0, full_item) + else: + self.full_filenames[item] = full_item + for extension in extensions: + if filename+extension in self.full_filenames: + return [lambda: builtinopen(self.full_filenames[filename], mode)] + return [] + +locator_classes["recursivedir"] = recursivedir + + +class ls_R: + """locates files by searching a list of ls-R files""" + + def __init__(self): + self.ls_Rs = config.getlist("locator", "ls-R") + self.full_filenames = {} + + def openers(self, filename, names, extensions, mode): + while self.ls_Rs and not any([filename+extension in self.full_filenames for extension in extensions]): + lsr = self.ls_Rs.pop(0) + base_dir = os.path.dirname(lsr) + dir = None + first = True + for line in builtinopen(lsr): + line = line.rstrip() + if first and line.startswith("%"): + continue + first = False + if line.endswith(":"): + dir = os.path.join(base_dir, line[:-1]) + elif line: + self.full_filenames[line] = os.path.join(dir, line) + for extension in extensions: + if filename+extension in self.full_filenames: + def _opener(): + try: + return builtinopen(self.full_filenames[filename+extension], mode) + except IOError: + warnings.warn("'%s' should be available at '%s' according to the ls-R file, " + "but the file is not available at this location; " + "update your ls-R file" % (filename, self.full_filenames[filename])) + return [_opener] + return [] + +locator_classes["ls-R"] = ls_R + + +class pykpathsea: + """locate files by pykpathsea (a C extension module wrapping libkpathsea)""" + + def openers(self, filename, names, extensions, mode): + if not has_pykpathsea: + return [] + for name in names: + full_filename = pykpathsea_module.find_file(filename, name) + if full_filename: + break + else: + return [] + def _opener(): + try: + return builtinopen(full_filename, mode) + except IOError: + warnings.warn("'%s' should be available at '%s' according to libkpathsea, " + "but the file is not available at this location; " + "update your kpsewhich database" % (filename, full_filename)) + return [_opener] + +locator_classes["pykpathsea"] = pykpathsea + + +# class libkpathsea: +# """locate files by libkpathsea using ctypes""" +# +# def openers(self, filename, names, extensions, mode): +# raise NotImplemented +# +# locator_classes["libpathsea"] = libkpathsea + + +class kpsewhich: + """locate files using the kpsewhich executable""" + + def openers(self, filename, names, extensions, mode): + for name in names: + try: + full_filenames = pycompat.popen('kpsewhich --format="%s" "%s"' % (name, filename)).read() + except OSError: + return [] + if full_filenames: + break + else: + return [] + full_filename = full_filenames.split("\n")[0] + def _opener(): + try: + return builtinopen(full_filename, mode) + except IOError: + warnings.warn("'%s' should be available at '%s' according to kpsewhich, " + "but the file is not available at this location; " + "update your kpsewhich database" % (filename, full_filename)) + return [_opener] + +locator_classes["kpsewhich"] = kpsewhich + + +class locate: + """locate files using a locate executable""" + + def openers(self, filename, names, extensions, mode): + for extension in extensions: + full_filenames = pycompat.popen("locate \"%s\"" % (filename+extension)).read() + if full_filenames: + break + else: + return [] + full_filename = full_filenames.split("\n")[0] + def _opener(): + try: + return builtinopen(full_filenames, mode) + except IOError: + warnings.warn("'%s' should be available at '%s' according to the locate, " + "but the file is not available at this location; " + "update your locate database" % (filename, self.full_filenames[filename])) + return [_opener] + +locator_classes["locate"] = locate + + +def init(): + global methods, opener_cache + methods = [locator_classes[method]() + for method in config.getlist("filelocator", "methods", ["local", "internal", "pykpathsea", "kpsewhich"])] + opener_cache = {} + + +def open(filename, formats, mode="r"): + """returns an open file searched according the list of formats""" + + # When using an empty list of formats, the names list is empty + # and the extensions list contains an empty string only. For that + # case some locators (notably local and internal) return an open + # function for the requested file whereas other locators might not + # return anything (like pykpathsea and kpsewhich). + # This is useful for files not to be searched in the latex + # installation at all (like lfs files). + extensions = pycompat.set([""]) + for format in formats: + for extension in format.extensions: + extensions.add(extension) + names = tuple([format.name for format in formats]) + if (filename, names) in opener_cache: + return opener_cache[(filename, names)]() + for method in methods: + openers = method.openers(filename, names, extensions, mode) + for opener in openers: + try: + file = opener() + except IOError: + file = None + if file: + opener_cache[(filename, names)] = opener + return file + raise IOError("Could not locate the file '%s'." % filename) + + +class format: + def __init__(self, name, extensions): + self.name = name + self.extensions = extensions + +format.tfm = format("tfm", [".tfm"]) +format.afm = format("afm", [".afm"]) +format.fontmap = format("map", []) +format.pict = format("graphics/figure", [".eps", ".epsi"]) +format.tex_ps_header = format("PostScript header", [".pro"]) # contains also: enc files +format.type1 = format("type1 fonts", [".pfa", ".pfb"]) +format.vf = format("vf", [".vf"]) +format.dvips_config = format("dvips config", []) diff --git a/pyx/font/__init__.py b/pyx/font/__init__.py index f65434e6..a63fc757 100644 --- a/pyx/font/__init__.py +++ b/pyx/font/__init__.py @@ -1,7 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005 André Wobst +# Copyright (C) 2011 Jörg Lehmann +# Copyright (C) 2005-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -18,3 +19,10 @@ # You should have received a copy of the GNU General Public License # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +import font +__allfont__ = ["T1font", "T1builtinfont", "text_pt", "font"] +for importfromfont in __allfont__: + locals()[importfromfont] = getattr(font, importfromfont) + +__all__ = __allfont__ diff --git a/pyx/font/_t1code.c b/pyx/font/_t1code.c index f806fed2..8a5c4b22 100644 --- a/pyx/font/_t1code.c +++ b/pyx/font/_t1code.c @@ -1,4 +1,4 @@ -/* t1code.c: Copyright 2005 Jörg Lehmann +/* t1code.c: Copyright 2005 Jörg Lehmann * 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 diff --git a/pyx/font/afm.py b/pyx/font/afm.py deleted file mode 100644 index 2e95c867..00000000 --- a/pyx/font/afm.py +++ /dev/null @@ -1,489 +0,0 @@ -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2006 Jörg Lehmann -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -import string - -class AFMError(Exception): - pass - -# reader states -_READ_START = 0 -_READ_MAIN = 1 -_READ_DIRECTION = 2 -_READ_CHARMETRICS = 3 -_READ_KERNDATA = 4 -_READ_TRACKKERN = 5 -_READ_KERNPAIRS = 6 -_READ_COMPOSITES = 7 -_READ_END = 8 - -# various parsing functions -def _parseint(s): - try: - return int(s) - except: - raise AFMError("Expecting int, got '%s'" % s) - -def _parsehex(s): - try: - if s[0] != "<" or s[-1] != ">": - raise AFMError() - return int(s[1:-1], 16) - except: - raise AFMError("Expecting hexadecimal int, got '%s'" % s) - -def _parsefloat(s): - try: - return float(s) - except: - raise AFMError("Expecting float, got '%s'" % s) - -def _parsefloats(s, nos): - try: - numbers = s.split() - result = map(float, numbers) - if len(result) != nos: - raise AFMError() - except: - raise AFMError("Expecting list of %d numbers, got '%s'" % (s, nos)) - return result - -def _parsestr(s): - # XXX: check for invalid characters in s - return s - -def _parsebool(s): - s = s.rstrip() - if s == "true": - return 1 - elif s == "false": - return 0 - else: - raise AFMError("Expecting boolean, got '%s'" % s) - - -class AFMcharmetrics: - def __init__(self, code, widths=None, vvector=None, name=None, bbox=None, ligatures=None): - self.code = code - if widths is None: - self.widths = [None] * 2 - else: - self.widths = widths - self.vvector = vvector - self.name = name - self.bbox = bbox - if ligatures is None: - self.ligatures = [] - else: - self.ligatures = ligatures - - -class AFMtrackkern: - def __init__(self, degree, min_ptsize, min_kern, max_ptsize, max_kern): - self.degree = degree - self.min_ptsize = min_ptsize - self.min_kern = min_kern - self.max_ptsize = max_ptsize - self.max_kern = max_kern - - -class AFMkernpair: - def __init__(self, name1, name2, x, y): - self.name1 = name1 - self.name2 = name2 - self.x = x - self.y = y - - -class AFMcomposite: - def __init__(self, name, parts): - self.name = name - self.parts = parts - - -class AFMfile: - - def __init__(self, filename): - self.filename = filename - self.metricssets = 0 # int, optional - self.fontname = None # str, required - self.fullname = None # str, optional - self.familyname = None # str, optional - self.weight = None # str, optional - self.fontbbox = None # 4 floats, required - self.version = None # str, optional - self.notice = None # str, optional - self.encodingscheme = None # str, optional - self.mappingscheme = None # int, optional (not present in base font programs) - self.escchar = None # int, required if mappingscheme == 3 - self.characterset = None # str, optional - self.characters = None # int, optional - self.isbasefont = 1 # bool, optional - self.vvector = None # 2 floats, required if metricssets == 2 - self.isfixedv = None # bool, default: true if vvector present, false otherwise - self.capheight = None # float, optional - self.xheight = None # float, optional - self.ascender = None # float, optional - self.descender = None # float, optional - self.underlinepositions = [None] * 2 # int, optional (for each direction) - self.underlinethicknesses = [None] * 2 # float, optional (for each direction) - self.italicangles = [None] * 2 # float, optional (for each direction) - self.charwidths = [None] * 2 # 2 floats, optional (for each direction) - self.isfixedpitchs = [None] * 2 # bool, optional (for each direction) - self.charmetrics = None # list of character metrics information, optional - self.trackkerns = None # list of track kernings, optional - self.kernpairs = [None] * 2 # list of list of kerning pairs (for each direction), optional - self.composites = None # list of composite character data sets, optional - self.parse() - if self.isfixedv is None: - self.isfixedv = self.vvector is not None - # XXX we should check the constraints on some parameters - - # the following methods process a line when the reader is in the corresponding - # state and return the new state - def _processline_start(self, line): - key, args = line.split(None, 1) - if key != "StartFontMetrics": - raise AFMError("Expecting StartFontMetrics, no found") - return _READ_MAIN, None - - def _processline_main(self, line): - try: - key, args = line.split(None, 1) - except ValueError: - key = line.rstrip() - if key == "Comment": - return _READ_MAIN, None - elif key == "MetricsSets": - self.metricssets = _parseint(args) - if direction is not None: - raise AFMError("MetricsSets not allowed after first (implicit) StartDirection") - elif key == "FontName": - self.fontname = _parsestr(args) - elif key == "FullName": - self.fullname = _parsestr(args) - elif key == "FamilyName": - self.familyname = _parsestr(args) - elif key == "Weight": - self.weight = _parsestr(args) - elif key == "FontBBox": - self.fontbbox = _parsefloats(args, 4) - elif key == "Version": - self.version = _parsestr(args) - elif key == "Notice": - self.notice = _parsestr(args) - elif key == "EncodingScheme": - self.encodingscheme = _parsestr(args) - elif key == "MappingScheme": - self.mappingscheme = _parseint(args) - elif key == "EscChar": - self.escchar = _parseint(args) - elif key == "CharacterSet": - self.characterset = _parsestr(args) - elif key == "Characters": - self.characters = _parseint(args) - elif key == "IsBaseFont": - self.isbasefont = _parsebool(args) - elif key == "VVector": - self.vvector = _parsefloats(args, 2) - elif key == "IsFixedV": - self.isfixedv = _parsebool(args) - elif key == "CapHeight": - self.capheight = _parsefloat(args) - elif key == "XHeight": - self.xheight = _parsefloat(args) - elif key == "Ascender": - self.ascender = _parsefloat(args) - elif key == "Descender": - self.descender = _parsefloat(args) - elif key == "StartDirection": - direction = _parseint(args) - if 0 <= direction <= 2: - return _READ_DIRECTION, direction - else: - raise AFMError("Wrong direction number %d" % direction) - elif (key == "UnderLinePosition" or key == "UnderlineThickness" or key == "ItalicAngle" or - key == "Charwidth" or key == "IsFixedPitch"): - # we implicitly entered a direction section, so we should process the line again - return self._processline_direction(line, 0) - elif key == "StartCharMetrics": - if self.charmetrics is not None: - raise AFMError("Multiple character metrics sections") - self.charmetrics = [None] * _parseint(args) - return _READ_CHARMETRICS, 0 - elif key == "StartKernData": - return _READ_KERNDATA, None - elif key == "StartComposites": - if self.composites is not None: - raise AFMError("Multiple composite character data sections") - self.composites = [None] * _parseint(args) - return _READ_COMPOSITES, 0 - elif key == "EndFontMetrics": - return _READ_END, None - elif key[0] in string.lowercase: - # ignoring private commands - pass - return _READ_MAIN, None - - def _processline_direction(self, line, direction): - try: - key, args = line.split(None, 1) - except ValueError: - key = line.rstrip() - if key == "UnderLinePosition": - self.underlinepositions[direction] = _parseint(args) - elif key == "UnderlineThickness": - self.underlinethicknesses[direction] = _parsefloat(args) - elif key == "ItalicAngle": - self.italicangles[direction] = _parsefloat(args) - elif key == "Charwidth": - self.charwidths[direction] = _parsefloats(args, 2) - elif key == "IsFixedPitch": - self.isfixedpitchs[direction] = _parsebool(args) - elif key == "EndDirection": - return _READ_MAIN, None - else: - # we assume that we are implicitly leaving the direction section again, - # so try to reprocess the line in the header reader state - return self._processline_main(line) - return _READ_DIRECTION, direction - - def _processline_charmetrics(self, line, charno): - if line.rstrip() == "EndCharMetrics": - if charno != len(self.charmetrics): - raise AFMError("Fewer character metrics than expected") - return _READ_MAIN, None - if charno >= len(self.charmetrics): - raise AFMError("More character metrics than expected") - - char = None - for s in line.split(";"): - s = s.strip() - if not s: - continue - key, args = s.split(None, 1) - if key == "C": - if char is not None: - raise AFMError("Cannot define char code twice") - char = AFMcharmetrics(_parseint(args)) - elif key == "CH": - if char is not None: - raise AFMError("Cannot define char code twice") - char = AFMcharmetrics(_parsehex(args)) - elif key == "WX" or key == "W0X": - char.widths[0] = _parsefloat(args), 0 - elif key == "W1X": - char.widths[1] = _parsefloat(args), 0 - elif key == "WY" or key == "W0Y": - char.widths[0] = 0, _parsefloat(args) - elif key == "W1Y": - char.widths[1] = 0, _parsefloat(args) - elif key == "W" or key == "W0": - char.widths[0] = _parsefloats(args, 2) - elif key == "W1": - char.widths[1] = _parsefloats(args, 2) - elif key == "VV": - char.vvector = _parsefloats(args, 2) - elif key == "N": - # XXX: we should check that name is valid (no whitespcae, etc.) - char.name = _parsestr(args) - elif key == "B": - char.bbox = _parsefloats(args, 4) - elif key == "L": - successor, ligature = args.split(None, 1) - char.ligatures.append((_parsestr(successor), ligature)) - else: - raise AFMError("Undefined command in character widths specification: '%s'", s) - if char is None: - raise AFMError("Character metrics not defined") - - self.charmetrics[charno] = char - return _READ_CHARMETRICS, charno+1 - - def _processline_kerndata(self, line): - try: - key, args = line.split(None, 1) - except ValueError: - key = line.rstrip() - if key == "Comment": - return _READ_KERNDATA, None - if key == "StartTrackKern": - if self.trackkerns is not None: - raise AFMError("Multiple track kernings data sections") - self.trackkerns = [None] * _parseint(args) - return _READ_TRACKKERN, 0 - elif key == "StartKernPairs" or key == "StartKernPairs0": - if self.kernpairs[0] is not None: - raise AFMError("Multiple kerning pairs data sections for direction 0") - self.kernpairs[0] = [None] * _parseint(args) - return _READ_KERNPAIRS, (0, 0) - elif key == "StartKernPairs1": - if self.kernpairs[1] is not None: - raise AFMError("Multiple kerning pairs data sections for direction 0") - self.kernpairs[1] = [None] * _parseint(args) - return _READ_KERNPAIRS, (1, 0) - elif key == "EndKernData": - return _READ_MAIN, None - else: - raise AFMError("Unsupported key %s in kerning data section" % key) - - def _processline_trackkern(self, line, i): - try: - key, args = line.split(None, 1) - except ValueError: - key = line.rstrip() - if key == "Comment": - return _READ_TRACKKERN, i - elif key == "TrackKern": - if i >= len(self.trackkerns): - raise AFMError("More track kerning data sets than expected") - degrees, args = args.split(None, 1) - self.trackkerns[i] = AFMtrackkern(int(degrees), *_parsefloats(args, 4)) - return _READ_TRACKKERN, i+1 - elif key == "EndTrackKern": - if i < len(self.trackkerns): - raise AFMError("Fewer track kerning data sets than expected") - return _READ_KERNDATA, None - else: - raise AFMError("Unsupported key %s in kerning data section" % key) - - def _processline_kernpairs(self, line, (direction, i)): - try: - key, args = line.split(None, 1) - except ValueError: - key = line.rstrip() - if key == "Comment": - return _READ_KERNPAIRS, (direction, i) - elif key == "EndKernPairs": - if i < len(self.kernpairs[direction]): - raise AFMError("Fewer kerning pairs than expected") - return _READ_KERNDATA, None - else: - if i >= len(self.kernpairs[direction]): - raise AFMError("More kerning pairs than expected") - if key == "KP": - try: - name1, name2, x, y = args.split() - except: - raise AFMError("Expecting name1, name2, x, y, got '%s'" % args) - self.kernpairs[direction][i] = AFMkernpair(name1, name2, _parsefloat(x), _parsefloat(y)) - elif key == "KPH": - try: - hex1, hex2, x, y = args.split() - except: - raise AFMError("Expecting , , x, y, got '%s'" % args) - self.kernpairs[direction][i] = AFMkernpair(_parsehex(hex1), _parsehex(hex2), - _parsefloat(x), _parsefloat(y)) - elif key == "KPX": - try: - name1, name2, x = args.split() - except: - raise AFMError("Expecting name1, name2, x, got '%s'" % args) - self.kernpairs[direction][i] = AFMkernpair(name1, name2, _parsefloat(x), 0) - elif key == "KPY": - try: - name1, name2, y = args.split() - except: - raise AFMError("Expecting name1, name2, x, got '%s'" % args) - self.kernpairs[direction][i] = AFMkernpair(name1, name2, 0, _parsefloat(y)) - else: - raise AFMError("Unknown key '%s' in kern pair section" % key) - return _READ_KERNPAIRS, (direction, i+1) - - def _processline_composites(self, line, i): - if line.rstrip() == "EndComposites": - if i < len(self.composites): - raise AFMError("Fewer composite character data sets than expected") - return _READ_MAIN, None - if i >= len(self.composites): - raise AFMError("More composite character data sets than expected") - - name = None - no = None - parts = [] - for s in line.split(";"): - s = s.strip() - if not s: - continue - key, args = s.split(None, 1) - if key == "CC": - try: - name, no = args.split() - except: - raise AFMError("Expecting name number, got '%s'" % args) - no = _parseint(no) - elif key == "PCC": - try: - name1, x, y = args.split() - except: - raise AFMError("Expecting name x y, got '%s'" % args) - parts.append((name1, _parsefloat(x), _parsefloat(y))) - else: - raise AFMError("Unknown key '%s' in composite character data section" % key) - if len(parts) != no: - raise AFMError("Wrong number of composite characters") - self.composites[i] = AFMcomposite(name, parts) - return _READ_COMPOSITES, i+1 - - def parse(self): - f = open(self.filename, "r") - try: - # state of the reader, consisting of - # - the main state, i.e. the type of the section - # - a parameter sstate - state = _READ_START, None - # Note that we do a line by line processing here, since one - # of the states (_READ_DIRECTION) can be entered implicitly, i.e. - # without a corresponding StartDirection section and we thus - # may need to reprocess a line in the context of the new state - for line in f: - line = line[:-1] - mstate, sstate = state - if mstate == _READ_START: - state = self._processline_start(line) - else: - # except for the first line, any empty will be ignored - if not line.strip(): - continue - if mstate == _READ_MAIN: - state = self._processline_main(line) - elif mstate == _READ_DIRECTION: - state = self._processline_direction(line, sstate) - elif mstate == _READ_CHARMETRICS: - state = self._processline_charmetrics(line, sstate) - elif mstate == _READ_KERNDATA: - state = self._processline_kerndata(line) - elif mstate == _READ_TRACKKERN: - state = self._processline_trackkern(line, sstate) - elif mstate == _READ_KERNPAIRS: - state = self._processline_kernpairs(line, sstate) - elif mstate == _READ_COMPOSITES: - state = self._processline_composites(line, sstate) - else: - raise RuntimeError("Undefined state in AFM reader") - finally: - f.close() - -if __name__ == "__main__": - a = AFMfile("/opt/local/share/texmf-dist/fonts/afm/yandy/lucida/lbc.afm") - print a.charmetrics[0].name - a = AFMfile("/usr/share/enscript/hv.afm") - print a.charmetrics[32].name diff --git a/pyx/font/afmfile.py b/pyx/font/afmfile.py new file mode 100644 index 00000000..f4e5ca57 --- /dev/null +++ b/pyx/font/afmfile.py @@ -0,0 +1,1443 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2006-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +import string +import metric + +unicodestring = {u" ": "space", + u"!": "exclam", + u"\"": "quotedbl", + u"#": "numbersign", + u"$": "dollar", + u"%": "percent", + u"&": "ampersand", + u"'": "quotesingle", + u"(": "parenleft", + u")": "parenright", + u"*": "asterisk", + u"+": "plus", + u",": "comma", + u"-": "hyphen", + u".": "period", + u"/": "slash", + u"0": "zero", + u"1": "one", + u"2": "two", + u"3": "three", + u"4": "four", + u"5": "five", + u"6": "six", + u"7": "seven", + u"8": "eight", + u"9": "nine", + u":": "colon", + u";": "semicolon", + u"<": "less", + u"=": "equal", + u">": "greater", + u"?": "question", + u"@": "at", + u"A": "A", + u"B": "B", + u"C": "C", + u"D": "D", + u"E": "E", + u"F": "F", + u"G": "G", + u"H": "H", + u"I": "I", + u"J": "J", + u"K": "K", + u"L": "L", + u"M": "M", + u"N": "N", + u"O": "O", + u"P": "P", + u"Q": "Q", + u"R": "R", + u"S": "S", + u"T": "T", + u"U": "U", + u"V": "V", + u"W": "W", + u"X": "X", + u"Y": "Y", + u"Z": "Z", + u"[": "bracketleft", + u"\\": "backslash", + u"]": "bracketright", + u"^": "asciicircum", + u"_": "underscore", + u"`": "grave", + u"a": "a", + u"b": "b", + u"c": "c", + u"d": "d", + u"e": "e", + u"f": "f", + u"g": "g", + u"h": "h", + u"i": "i", + u"j": "j", + u"k": "k", + u"l": "l", + u"m": "m", + u"n": "n", + u"o": "o", + u"p": "p", + u"q": "q", + u"r": "r", + u"s": "s", + u"t": "t", + u"u": "u", + u"v": "v", + u"w": "w", + u"x": "x", + u"y": "y", + u"z": "z", + u"{": "braceleft", + u"|": "bar", + u"}": "braceright", + u"~": "asciitilde", + u"\xa0": "space", + u"\xa1": "exclamdown", + u"\xa2": "cent", + u"\xa3": "sterling", + u"\xa4": "currency", + u"\xa5": "yen", + u"\xa6": "brokenbar", + u"\xa7": "section", + u"\xa8": "dieresis", + u"\xa9": "copyright", + u"\xaa": "ordfeminine", + u"\xab": "guillemotleft", + u"\xac": "logicalnot", + u"\xad": "hyphen", + u"\xae": "registered", + u"\xaf": "macron", + u"\xb0": "degree", + u"\xb1": "plusminus", + u"\xb4": "acute", + u"\xb6": "paragraph", + u"\xb7": "periodcentered", + u"\xb8": "cedilla", + u"\xba": "ordmasculine", + u"\xbb": "guillemotright", + u"\xbc": "onequarter", + u"\xbd": "onehalf", + u"\xbe": "threequarters", + u"\xbf": "questiondown", + u"\xc0": "Agrave", + u"\xc1": "Aacute", + u"\xc2": "Acircumflex", + u"\xc3": "Atilde", + u"\xc4": "Adieresis", + u"\xc5": "Aring", + u"\xc6": "AE", + u"\xc7": "Ccedilla", + u"\xc8": "Egrave", + u"\xc9": "Eacute", + u"\xca": "Ecircumflex", + u"\xcb": "Edieresis", + u"\xcc": "Igrave", + u"\xcd": "Iacute", + u"\xce": "Icircumflex", + u"\xcf": "Idieresis", + u"\xd0": "Eth", + u"\xd1": "Ntilde", + u"\xd2": "Ograve", + u"\xd3": "Oacute", + u"\xd4": "Ocircumflex", + u"\xd5": "Otilde", + u"\xd6": "Odieresis", + u"\xd7": "multiply", + u"\xd8": "Oslash", + u"\xd9": "Ugrave", + u"\xda": "Uacute", + u"\xdb": "Ucircumflex", + u"\xdc": "Udieresis", + u"\xdd": "Yacute", + u"\xde": "Thorn", + u"\xdf": "germandbls", + u"\xe0": "agrave", + u"\xe1": "aacute", + u"\xe2": "acircumflex", + u"\xe3": "atilde", + u"\xe4": "adieresis", + u"\xe5": "aring", + u"\xe6": "ae", + u"\xe7": "ccedilla", + u"\xe8": "egrave", + u"\xe9": "eacute", + u"\xea": "ecircumflex", + u"\xeb": "edieresis", + u"\xec": "igrave", + u"\xed": "iacute", + u"\xee": "icircumflex", + u"\xef": "idieresis", + u"\xf0": "eth", + u"\xf1": "ntilde", + u"\xf2": "ograve", + u"\xf3": "oacute", + u"\xf4": "ocircumflex", + u"\xf5": "otilde", + u"\xf6": "odieresis", + u"\xf7": "divide", + u"\xf8": "oslash", + u"\xf9": "ugrave", + u"\xfa": "uacute", + u"\xfb": "ucircumflex", + u"\xfc": "udieresis", + u"\xfd": "yacute", + u"\xfe": "thorn", + u"\xff": "ydieresis", + u"\u0100": "Amacron", + u"\u0101": "amacron", + u"\u0102": "Abreve", + u"\u0103": "abreve", + u"\u0104": "Aogonek", + u"\u0105": "aogonek", + u"\u0106": "Cacute", + u"\u0107": "cacute", + u"\u0108": "Ccircumflex", + u"\u0109": "ccircumflex", + u"\u010a": "Cdotaccent", + u"\u010b": "cdotaccent", + u"\u010c": "Ccaron", + u"\u010d": "ccaron", + u"\u010e": "Dcaron", + u"\u010f": "dcaron", + u"\u0110": "Dcroat", + u"\u0111": "dcroat", + u"\u0112": "Emacron", + u"\u0113": "emacron", + u"\u0114": "Ebreve", + u"\u0115": "ebreve", + u"\u0116": "Edotaccent", + u"\u0117": "edotaccent", + u"\u0118": "Eogonek", + u"\u0119": "eogonek", + u"\u011a": "Ecaron", + u"\u011b": "ecaron", + u"\u011c": "Gcircumflex", + u"\u011d": "gcircumflex", + u"\u011e": "Gbreve", + u"\u011f": "gbreve", + u"\u0120": "Gdotaccent", + u"\u0121": "gdotaccent", + u"\u0122": "Gcommaaccent", + u"\u0123": "gcommaaccent", + u"\u0124": "Hcircumflex", + u"\u0125": "hcircumflex", + u"\u0126": "Hbar", + u"\u0127": "hbar", + u"\u0128": "Itilde", + u"\u0129": "itilde", + u"\u012a": "Imacron", + u"\u012b": "imacron", + u"\u012c": "Ibreve", + u"\u012d": "ibreve", + u"\u012e": "Iogonek", + u"\u012f": "iogonek", + u"\u0130": "Idotaccent", + u"\u0131": "dotlessi", + u"\u0132": "IJ", + u"\u0133": "ij", + u"\u0134": "Jcircumflex", + u"\u0135": "jcircumflex", + u"\u0136": "Kcommaaccent", + u"\u0137": "kcommaaccent", + u"\u0138": "kgreenlandic", + u"\u0139": "Lacute", + u"\u013a": "lacute", + u"\u013b": "Lcommaaccent", + u"\u013c": "lcommaaccent", + u"\u013d": "Lcaron", + u"\u013e": "lcaron", + u"\u013f": "Ldot", + u"\u0140": "ldot", + u"\u0141": "Lslash", + u"\u0142": "lslash", + u"\u0143": "Nacute", + u"\u0144": "nacute", + u"\u0145": "Ncommaaccent", + u"\u0146": "ncommaaccent", + u"\u0147": "Ncaron", + u"\u0148": "ncaron", + u"\u0149": "napostrophe", + u"\u014a": "Eng", + u"\u014b": "eng", + u"\u014c": "Omacron", + u"\u014d": "omacron", + u"\u014e": "Obreve", + u"\u014f": "obreve", + u"\u0150": "Ohungarumlaut", + u"\u0151": "ohungarumlaut", + u"\u0152": "OE", + u"\u0153": "oe", + u"\u0154": "Racute", + u"\u0155": "racute", + u"\u0156": "Rcommaaccent", + u"\u0157": "rcommaaccent", + u"\u0158": "Rcaron", + u"\u0159": "rcaron", + u"\u015a": "Sacute", + u"\u015b": "sacute", + u"\u015c": "Scircumflex", + u"\u015d": "scircumflex", + u"\u015e": "Scedilla", + u"\u015f": "scedilla", + u"\u0160": "Scaron", + u"\u0161": "scaron", + u"\u0162": "Tcommaaccent", + u"\u0163": "tcommaaccent", + u"\u0164": "Tcaron", + u"\u0165": "tcaron", + u"\u0166": "Tbar", + u"\u0167": "tbar", + u"\u0168": "Utilde", + u"\u0169": "utilde", + u"\u016a": "Umacron", + u"\u016b": "umacron", + u"\u016c": "Ubreve", + u"\u016d": "ubreve", + u"\u016e": "Uring", + u"\u016f": "uring", + u"\u0170": "Uhungarumlaut", + u"\u0171": "uhungarumlaut", + u"\u0172": "Uogonek", + u"\u0173": "uogonek", + u"\u0174": "Wcircumflex", + u"\u0175": "wcircumflex", + u"\u0176": "Ycircumflex", + u"\u0177": "ycircumflex", + u"\u0178": "Ydieresis", + u"\u0179": "Zacute", + u"\u017a": "zacute", + u"\u017b": "Zdotaccent", + u"\u017c": "zdotaccent", + u"\u017d": "Zcaron", + u"\u017e": "zcaron", + u"\u017f": "longs", + u"\u0192": "florin", + u"\u01a0": "Ohorn", + u"\u01a1": "ohorn", + u"\u01af": "Uhorn", + u"\u01b0": "uhorn", + u"\u01e6": "Gcaron", + u"\u01e7": "gcaron", + u"\u01fa": "Aringacute", + u"\u01fb": "aringacute", + u"\u01fc": "AEacute", + u"\u01fd": "aeacute", + u"\u01fe": "Oslashacute", + u"\u01ff": "oslashacute", + u"\u0218": "Scommaaccent", + u"\u0219": "scommaaccent", + u"\u02bc": "afii57929", + u"\u02bd": "afii64937", + u"\u02c6": "circumflex", + u"\u02c7": "caron", + u"\u02c9": "macron", + u"\u02d8": "breve", + u"\u02d9": "dotaccent", + u"\u02da": "ring", + u"\u02db": "ogonek", + u"\u02dc": "tilde", + u"\u02dd": "hungarumlaut", + u"\u0300": "gravecomb", + u"\u0301": "acutecomb", + u"\u0303": "tildecomb", + u"\u0309": "hookabovecomb", + u"\u0323": "dotbelowcomb", + u"\u0384": "tonos", + u"\u0385": "dieresistonos", + u"\u0386": "Alphatonos", + u"\u0387": "anoteleia", + u"\u0388": "Epsilontonos", + u"\u0389": "Etatonos", + u"\u038a": "Iotatonos", + u"\u038c": "Omicrontonos", + u"\u038e": "Upsilontonos", + u"\u038f": "Omegatonos", + u"\u0390": "iotadieresistonos", + u"\u0391": "Alpha", + u"\u0392": "Beta", + u"\u0393": "Gamma", + u"\u0394": "Delta", + u"\u0395": "Epsilon", + u"\u0396": "Zeta", + u"\u0397": "Eta", + u"\u0398": "Theta", + u"\u0399": "Iota", + u"\u039a": "Kappa", + u"\u039b": "Lambda", + u"\u039c": "Mu", + u"\u039d": "Nu", + u"\u039e": "Xi", + u"\u039f": "Omicron", + u"\u03a0": "Pi", + u"\u03a1": "Rho", + u"\u03a3": "Sigma", + u"\u03a4": "Tau", + u"\u03a5": "Upsilon", + u"\u03a6": "Phi", + u"\u03a7": "Chi", + u"\u03a8": "Psi", + u"\u03a9": "Omega", + u"\u03aa": "Iotadieresis", + u"\u03ab": "Upsilondieresis", + u"\u03ac": "alphatonos", + u"\u03ad": "epsilontonos", + u"\u03ae": "etatonos", + u"\u03af": "iotatonos", + u"\u03b0": "upsilondieresistonos", + u"\u03b1": "alpha", + u"\u03b2": "beta", + u"\u03b3": "gamma", + u"\u03b4": "delta", + u"\u03b5": "epsilon", + u"\u03b6": "zeta", + u"\u03b7": "eta", + u"\u03b8": "theta", + u"\u03b9": "iota", + u"\u03ba": "kappa", + u"\u03bb": "lambda", + u"\u03bc": "mu", + u"\u03bd": "nu", + u"\u03be": "xi", + u"\u03bf": "omicron", + u"\u03c0": "pi", + u"\u03c1": "rho", + u"\u03c2": "sigma1", + u"\u03c3": "sigma", + u"\u03c4": "tau", + u"\u03c5": "upsilon", + u"\u03c6": "phi", + u"\u03c7": "chi", + u"\u03c8": "psi", + u"\u03c9": "omega", + u"\u03ca": "iotadieresis", + u"\u03cb": "upsilondieresis", + u"\u03cc": "omicrontonos", + u"\u03cd": "upsilontonos", + u"\u03ce": "omegatonos", + u"\u03d1": "theta1", + u"\u03d2": "Upsilon1", + u"\u03d5": "phi1", + u"\u03d6": "omega1", + u"\u0401": "afii10023", + u"\u0402": "afii10051", + u"\u0403": "afii10052", + u"\u0404": "afii10053", + u"\u0405": "afii10054", + u"\u0406": "afii10055", + u"\u0407": "afii10056", + u"\u0408": "afii10057", + u"\u0409": "afii10058", + u"\u040a": "afii10059", + u"\u040b": "afii10060", + u"\u040c": "afii10061", + u"\u040e": "afii10062", + u"\u040f": "afii10145", + u"\u0410": "afii10017", + u"\u0411": "afii10018", + u"\u0412": "afii10019", + u"\u0413": "afii10020", + u"\u0414": "afii10021", + u"\u0415": "afii10022", + u"\u0416": "afii10024", + u"\u0417": "afii10025", + u"\u0418": "afii10026", + u"\u0419": "afii10027", + u"\u041a": "afii10028", + u"\u041b": "afii10029", + u"\u041c": "afii10030", + u"\u041d": "afii10031", + u"\u041e": "afii10032", + u"\u041f": "afii10033", + u"\u0420": "afii10034", + u"\u0421": "afii10035", + u"\u0422": "afii10036", + u"\u0423": "afii10037", + u"\u0424": "afii10038", + u"\u0425": "afii10039", + u"\u0426": "afii10040", + u"\u0427": "afii10041", + u"\u0428": "afii10042", + u"\u0429": "afii10043", + u"\u042a": "afii10044", + u"\u042b": "afii10045", + u"\u042c": "afii10046", + u"\u042d": "afii10047", + u"\u042e": "afii10048", + u"\u042f": "afii10049", + u"\u0430": "afii10065", + u"\u0431": "afii10066", + u"\u0432": "afii10067", + u"\u0433": "afii10068", + u"\u0434": "afii10069", + u"\u0435": "afii10070", + u"\u0436": "afii10072", + u"\u0437": "afii10073", + u"\u0438": "afii10074", + u"\u0439": "afii10075", + u"\u043a": "afii10076", + u"\u043b": "afii10077", + u"\u043c": "afii10078", + u"\u043d": "afii10079", + u"\u043e": "afii10080", + u"\u043f": "afii10081", + u"\u0440": "afii10082", + u"\u0441": "afii10083", + u"\u0442": "afii10084", + u"\u0443": "afii10085", + u"\u0444": "afii10086", + u"\u0445": "afii10087", + u"\u0446": "afii10088", + u"\u0447": "afii10089", + u"\u0448": "afii10090", + u"\u0449": "afii10091", + u"\u044a": "afii10092", + u"\u044b": "afii10093", + u"\u044c": "afii10094", + u"\u044d": "afii10095", + u"\u044e": "afii10096", + u"\u044f": "afii10097", + u"\u0451": "afii10071", + u"\u0452": "afii10099", + u"\u0453": "afii10100", + u"\u0454": "afii10101", + u"\u0455": "afii10102", + u"\u0456": "afii10103", + u"\u0457": "afii10104", + u"\u0458": "afii10105", + u"\u0459": "afii10106", + u"\u045a": "afii10107", + u"\u045b": "afii10108", + u"\u045c": "afii10109", + u"\u045e": "afii10110", + u"\u045f": "afii10193", + u"\u0462": "afii10146", + u"\u0463": "afii10194", + u"\u0472": "afii10147", + u"\u0473": "afii10195", + u"\u0474": "afii10148", + u"\u0475": "afii10196", + u"\u0490": "afii10050", + u"\u0491": "afii10098", + u"\u04d9": "afii10846", + u"\u05b0": "afii57799", + u"\u05b1": "afii57801", + u"\u05b2": "afii57800", + u"\u05b3": "afii57802", + u"\u05b4": "afii57793", + u"\u05b5": "afii57794", + u"\u05b6": "afii57795", + u"\u05b7": "afii57798", + u"\u05b8": "afii57797", + u"\u05b9": "afii57806", + u"\u05bb": "afii57796", + u"\u05bc": "afii57807", + u"\u05bd": "afii57839", + u"\u05be": "afii57645", + u"\u05bf": "afii57841", + u"\u05c0": "afii57842", + u"\u05c1": "afii57804", + u"\u05c2": "afii57803", + u"\u05c3": "afii57658", + u"\u05d0": "afii57664", + u"\u05d1": "afii57665", + u"\u05d2": "afii57666", + u"\u05d3": "afii57667", + u"\u05d4": "afii57668", + u"\u05d5": "afii57669", + u"\u05d6": "afii57670", + u"\u05d7": "afii57671", + u"\u05d8": "afii57672", + u"\u05d9": "afii57673", + u"\u05da": "afii57674", + u"\u05db": "afii57675", + u"\u05dc": "afii57676", + u"\u05dd": "afii57677", + u"\u05de": "afii57678", + u"\u05df": "afii57679", + u"\u05e0": "afii57680", + u"\u05e1": "afii57681", + u"\u05e2": "afii57682", + u"\u05e3": "afii57683", + u"\u05e4": "afii57684", + u"\u05e5": "afii57685", + u"\u05e6": "afii57686", + u"\u05e7": "afii57687", + u"\u05e8": "afii57688", + u"\u05e9": "afii57689", + u"\u05ea": "afii57690", + u"\u05f0": "afii57716", + u"\u05f1": "afii57717", + u"\u05f2": "afii57718", + u"\u060c": "afii57388", + u"\u061b": "afii57403", + u"\u061f": "afii57407", + u"\u0621": "afii57409", + u"\u0622": "afii57410", + u"\u0623": "afii57411", + u"\u0624": "afii57412", + u"\u0625": "afii57413", + u"\u0626": "afii57414", + u"\u0627": "afii57415", + u"\u0628": "afii57416", + u"\u0629": "afii57417", + u"\u062a": "afii57418", + u"\u062b": "afii57419", + u"\u062c": "afii57420", + u"\u062d": "afii57421", + u"\u062e": "afii57422", + u"\u062f": "afii57423", + u"\u0630": "afii57424", + u"\u0631": "afii57425", + u"\u0632": "afii57426", + u"\u0633": "afii57427", + u"\u0634": "afii57428", + u"\u0635": "afii57429", + u"\u0636": "afii57430", + u"\u0637": "afii57431", + u"\u0638": "afii57432", + u"\u0639": "afii57433", + u"\u063a": "afii57434", + u"\u0640": "afii57440", + u"\u0641": "afii57441", + u"\u0642": "afii57442", + u"\u0643": "afii57443", + u"\u0644": "afii57444", + u"\u0645": "afii57445", + u"\u0646": "afii57446", + u"\u0647": "afii57470", + u"\u0648": "afii57448", + u"\u0649": "afii57449", + u"\u064a": "afii57450", + u"\u064b": "afii57451", + u"\u064c": "afii57452", + u"\u064d": "afii57453", + u"\u064e": "afii57454", + u"\u064f": "afii57455", + u"\u0650": "afii57456", + u"\u0651": "afii57457", + u"\u0652": "afii57458", + u"\u0660": "afii57392", + u"\u0661": "afii57393", + u"\u0662": "afii57394", + u"\u0663": "afii57395", + u"\u0664": "afii57396", + u"\u0665": "afii57397", + u"\u0666": "afii57398", + u"\u0667": "afii57399", + u"\u0668": "afii57400", + u"\u0669": "afii57401", + u"\u066a": "afii57381", + u"\u066d": "afii63167", + u"\u0679": "afii57511", + u"\u067e": "afii57506", + u"\u0686": "afii57507", + u"\u0688": "afii57512", + u"\u0691": "afii57513", + u"\u0698": "afii57508", + u"\u06a4": "afii57505", + u"\u06af": "afii57509", + u"\u06ba": "afii57514", + u"\u06d2": "afii57519", + u"\u06d5": "afii57534", + u"\u1e80": "Wgrave", + u"\u1e81": "wgrave", + u"\u1e82": "Wacute", + u"\u1e83": "wacute", + u"\u1e84": "Wdieresis", + u"\u1e85": "wdieresis", + u"\u1ef2": "Ygrave", + u"\u1ef3": "ygrave", + u"\u200c": "afii61664", + u"\u200d": "afii301", + u"\u200e": "afii299", + u"\u200f": "afii300", + u"\u2012": "figuredash", + u"\u2013": "endash", + u"\u2014": "emdash", + u"\u2015": "afii00208", + u"\u2017": "underscoredbl", + u"\u2018": "quoteleft", + u"\u2019": "quoteright", + u"\u201a": "quotesinglbase", + u"\u201b": "quotereversed", + u"\u201c": "quotedblleft", + u"\u201d": "quotedblright", + u"\u201e": "quotedblbase", + u"\u2020": "dagger", + u"\u2021": "daggerdbl", + u"\u2022": "bullet", + u"\u2024": "onedotenleader", + u"\u2025": "twodotenleader", + u"\u2026": "ellipsis", + u"\u202c": "afii61573", + u"\u202d": "afii61574", + u"\u202e": "afii61575", + u"\u2030": "perthousand", + u"\u2032": "minute", + u"\u2033": "second", + u"\u2039": "guilsinglleft", + u"\u203a": "guilsinglright", + u"\u203c": "exclamdbl", + u"\u2044": "fraction", + u"\u20a1": "colonmonetary", + u"\u20a3": "franc", + u"\u20a4": "lira", + u"\u20a7": "peseta", + u"\u20aa": "afii57636", + u"\u20ab": "dong", + u"\u20ac": "Euro", + u"\u2105": "afii61248", + u"\u2111": "Ifraktur", + u"\u2113": "afii61289", + u"\u2116": "afii61352", + u"\u2118": "weierstrass", + u"\u211c": "Rfraktur", + u"\u211e": "prescription", + u"\u2122": "trademark", + u"\u212e": "estimated", + u"\u2135": "aleph", + u"\u2153": "onethird", + u"\u2154": "twothirds", + u"\u215b": "oneeighth", + u"\u215c": "threeeighths", + u"\u215d": "fiveeighths", + u"\u215e": "seveneighths", + u"\u2190": "arrowleft", + u"\u2191": "arrowup", + u"\u2192": "arrowright", + u"\u2193": "arrowdown", + u"\u2194": "arrowboth", + u"\u2195": "arrowupdn", + u"\u21a8": "arrowupdnbse", + u"\u21b5": "carriagereturn", + u"\u21d0": "arrowdblleft", + u"\u21d1": "arrowdblup", + u"\u21d2": "arrowdblright", + u"\u21d3": "arrowdbldown", + u"\u21d4": "arrowdblboth", + u"\u2200": "universal", + u"\u2202": "partialdiff", + u"\u2203": "existential", + u"\u2205": "emptyset", + u"\u2207": "gradient", + u"\u2208": "element", + u"\u2209": "notelement", + u"\u220b": "suchthat", + u"\u220f": "product", + u"\u2211": "summation", + u"\u2212": "minus", + u"\u2215": "fraction", + u"\u2217": "asteriskmath", + u"\u2219": "periodcentered", + u"\u221a": "radical", + u"\u221d": "proportional", + u"\u221e": "infinity", + u"\u221f": "orthogonal", + u"\u2220": "angle", + u"\u2227": "logicaland", + u"\u2228": "logicalor", + u"\u2229": "intersection", + u"\u222a": "union", + u"\u222b": "integral", + u"\u2234": "therefore", + u"\u223c": "similar", + u"\u2245": "congruent", + u"\u2248": "approxequal", + u"\u2260": "notequal", + u"\u2261": "equivalence", + u"\u2264": "lessequal", + u"\u2265": "greaterequal", + u"\u2282": "propersubset", + u"\u2283": "propersuperset", + u"\u2284": "notsubset", + u"\u2286": "reflexsubset", + u"\u2287": "reflexsuperset", + u"\u2295": "circleplus", + u"\u2297": "circlemultiply", + u"\u22a5": "perpendicular", + u"\u22c5": "dotmath", + u"\u2302": "house", + u"\u2310": "revlogicalnot", + u"\u2320": "integraltp", + u"\u2321": "integralbt", + u"\u2329": "angleleft", + u"\u232a": "angleright", + u"\u2500": "SF100000", + u"\u2502": "SF110000", + u"\u250c": "SF010000", + u"\u2510": "SF030000", + u"\u2514": "SF020000", + u"\u2518": "SF040000", + u"\u251c": "SF080000", + u"\u2524": "SF090000", + u"\u252c": "SF060000", + u"\u2534": "SF070000", + u"\u253c": "SF050000", + u"\u2550": "SF430000", + u"\u2551": "SF240000", + u"\u2552": "SF510000", + u"\u2553": "SF520000", + u"\u2554": "SF390000", + u"\u2555": "SF220000", + u"\u2556": "SF210000", + u"\u2557": "SF250000", + u"\u2558": "SF500000", + u"\u2559": "SF490000", + u"\u255a": "SF380000", + u"\u255b": "SF280000", + u"\u255c": "SF270000", + u"\u255d": "SF260000", + u"\u255e": "SF360000", + u"\u255f": "SF370000", + u"\u2560": "SF420000", + u"\u2561": "SF190000", + u"\u2562": "SF200000", + u"\u2563": "SF230000", + u"\u2564": "SF470000", + u"\u2565": "SF480000", + u"\u2566": "SF410000", + u"\u2567": "SF450000", + u"\u2568": "SF460000", + u"\u2569": "SF400000", + u"\u256a": "SF540000", + u"\u256b": "SF530000", + u"\u256c": "SF440000", + u"\u2580": "upblock", + u"\u2584": "dnblock", + u"\u2588": "block", + u"\u258c": "lfblock", + u"\u2590": "rtblock", + u"\u2591": "ltshade", + u"\u2592": "shade", + u"\u2593": "dkshade", + u"\u25a0": "filledbox", + u"\u25a1": "H22073", + u"\u25aa": "H18543", + u"\u25ab": "H18551", + u"\u25ac": "filledrect", + u"\u25b2": "triagup", + u"\u25ba": "triagrt", + u"\u25bc": "triagdn", + u"\u25c4": "triaglf", + u"\u25ca": "lozenge", + u"\u25cb": "circle", + u"\u25cf": "H18533", + u"\u25d8": "invbullet", + u"\u25d9": "invcircle", + u"\u25e6": "openbullet", + u"\u263a": "smileface", + u"\u263b": "invsmileface", + u"\u263c": "sun", + u"\u2640": "female", + u"\u2642": "male", + u"\u2660": "spade", + u"\u2663": "club", + u"\u2665": "heart", + u"\u2666": "diamond", + u"\u266a": "musicalnote", + u"\u266b": "musicalnotedbl", + u"\ufb01": "fi", + u"\ufb02": "fl"} + +class AFMError(Exception): + pass + +# reader states +_READ_START = 0 +_READ_MAIN = 1 +_READ_DIRECTION = 2 +_READ_CHARMETRICS = 3 +_READ_KERNDATA = 4 +_READ_TRACKKERN = 5 +_READ_KERNPAIRS = 6 +_READ_COMPOSITES = 7 +_READ_END = 8 + +# various parsing functions +def _parseint(s): + try: + return int(s) + except: + raise AFMError("Expecting int, got '%s'" % s) + +def _parsehex(s): + try: + if s[0] != "<" or s[-1] != ">": + raise AFMError() + return int(s[1:-1], 16) + except: + raise AFMError("Expecting hexadecimal int, got '%s'" % s) + +def _parsefloat(s): + try: + return float(s) + except: + raise AFMError("Expecting float, got '%s'" % s) + +def _parsefloats(s, nos): + try: + numbers = s.split() + result = map(float, numbers) + if len(result) != nos: + raise AFMError() + except: + raise AFMError("Expecting list of %d numbers, got '%s'" % (s, nos)) + return result + +def _parsestr(s): + # XXX: check for invalid characters in s + return s + +def _parsebool(s): + s = s.rstrip() + if s == "true": + return 1 + elif s == "false": + return 0 + else: + raise AFMError("Expecting boolean, got '%s'" % s) + + +class AFMcharmetrics: + def __init__(self, code, widths=None, vvector=None, name=None, bbox=None, ligatures=None): + self.code = code + if widths is None: + self.widths = [None] * 2 + else: + self.widths = widths + self.vvector = vvector + self.name = name + self.bbox = bbox + if ligatures is None: + self.ligatures = [] + else: + self.ligatures = ligatures + + +class AFMtrackkern: + def __init__(self, degree, min_ptsize, min_kern, max_ptsize, max_kern): + self.degree = degree + self.min_ptsize = min_ptsize + self.min_kern = min_kern + self.max_ptsize = max_ptsize + self.max_kern = max_kern + + +class AFMkernpair: + def __init__(self, name1, name2, x, y): + self.name1 = name1 + self.name2 = name2 + self.x = x + self.y = y + + +class AFMcomposite: + def __init__(self, name, parts): + self.name = name + self.parts = parts + + +class AFMfile(metric.metric): + + def __init__(self, file): + self.metricssets = 0 # int, optional + self.fontname = None # str, required + self.fullname = None # str, optional + self.familyname = None # str, optional + self.weight = None # str, optional + self.fontbbox = None # 4 floats, required + self.version = None # str, optional + self.notice = None # str, optional + self.encodingscheme = None # str, optional + self.mappingscheme = None # int, optional (not present in base font programs) + self.escchar = None # int, required if mappingscheme == 3 + self.characterset = None # str, optional + self.characters = None # int, optional + self.isbasefont = 1 # bool, optional + self.vvector = None # 2 floats, required if metricssets == 2 + self.isfixedv = None # bool, default: true if vvector present, false otherwise + self.capheight = None # float, optional + self.xheight = None # float, optional + self.ascender = None # float, optional + self.descender = None # float, optional + self.stdhw = None # float, optional + self.stdvw = None # float, optional + self.underlinepositions = [None] * 2 # int, optional (for each direction) + self.underlinethicknesses = [None] * 2 # float, optional (for each direction) + self.italicangles = [None] * 2 # float, optional (for each direction) + self.charwidths = [None] * 2 # 2 floats, optional (for each direction) + self.isfixedpitchs = [None] * 2 # bool, optional (for each direction) + self.charmetrics = None # list of character metrics information, optional + self.charmetricsdict = {} # helper dictionary mapping glyph names to character metrics information + self.trackkerns = None # list of track kernings, optional + self.kernpairs = [None] * 2 # list of list of kerning pairs (for each direction), optional + self.kernpairsdict = {} # helper dictionary mapping glyph names to kerning pairs, first direction + self.kernpairsdict1 = {} # helper dictionary mapping glyph names to kerning pairs, second direction + self.composites = None # list of composite character data sets, optional + self.parse(file) + if self.isfixedv is None: + self.isfixedv = self.vvector is not None + # XXX we should check the constraints on some parameters + + # the following methods process a line when the reader is in the corresponding + # state and return the new state + def _processline_start(self, line): + key, args = line.split(None, 1) + if key != "StartFontMetrics": + raise AFMError("Expecting StartFontMetrics, no found") + return _READ_MAIN, None + + def _processline_main(self, line): + try: + key, args = line.split(None, 1) + except ValueError: + key = line.rstrip() + if key == "Comment": + return _READ_MAIN, None + elif key == "MetricsSets": + self.metricssets = _parseint(args) + if direction is not None: + raise AFMError("MetricsSets not allowed after first (implicit) StartDirection") + elif key == "FontName": + self.fontname = _parsestr(args) + elif key == "FullName": + self.fullname = _parsestr(args) + elif key == "FamilyName": + self.familyname = _parsestr(args) + elif key == "Weight": + self.weight = _parsestr(args) + elif key == "FontBBox": + self.fontbbox = _parsefloats(args, 4) + elif key == "Version": + self.version = _parsestr(args) + elif key == "Notice": + self.notice = _parsestr(args) + elif key == "EncodingScheme": + self.encodingscheme = _parsestr(args) + elif key == "MappingScheme": + self.mappingscheme = _parseint(args) + elif key == "EscChar": + self.escchar = _parseint(args) + elif key == "CharacterSet": + self.characterset = _parsestr(args) + elif key == "Characters": + self.characters = _parseint(args) + elif key == "IsBaseFont": + self.isbasefont = _parsebool(args) + elif key == "VVector": + self.vvector = _parsefloats(args, 2) + elif key == "IsFixedV": + self.isfixedv = _parsebool(args) + elif key == "CapHeight": + self.capheight = _parsefloat(args) + elif key == "XHeight": + self.xheight = _parsefloat(args) + elif key == "Ascender": + self.ascender = _parsefloat(args) + elif key == "Descender": + self.descender = _parsefloat(args) + elif key == "StdHW": + self.stdhw = _parsefloat(args) + elif key == "StdVW": + self.stdvw = _parsefloat(args) + elif key == "StartDirection": + direction = _parseint(args) + if 0 <= direction <= 2: + return _READ_DIRECTION, direction + else: + raise AFMError("Wrong direction number %d" % direction) + elif (key == "UnderLinePosition" or key == "UnderlineThickness" or key == "ItalicAngle" or + key == "Charwidth" or key == "IsFixedPitch"): + # we implicitly entered a direction section, so we should process the line again + return self._processline_direction(line, 0) + elif key == "StartCharMetrics": + if self.charmetrics is not None: + raise AFMError("Multiple character metrics sections") + self.charmetrics = [None] * _parseint(args) + return _READ_CHARMETRICS, 0 + elif key == "StartKernData": + return _READ_KERNDATA, None + elif key == "StartComposites": + if self.composites is not None: + raise AFMError("Multiple composite character data sections") + self.composites = [None] * _parseint(args) + return _READ_COMPOSITES, 0 + elif key == "EndFontMetrics": + return _READ_END, None + elif key[0] in string.lowercase: + # ignoring private commands + pass + return _READ_MAIN, None + + def _processline_direction(self, line, direction): + try: + key, args = line.split(None, 1) + except ValueError: + key = line.rstrip() + if key == "UnderLinePosition": + self.underlinepositions[direction] = _parseint(args) + elif key == "UnderlineThickness": + self.underlinethicknesses[direction] = _parsefloat(args) + elif key == "ItalicAngle": + self.italicangles[direction] = _parsefloat(args) + elif key == "Charwidth": + self.charwidths[direction] = _parsefloats(args, 2) + elif key == "IsFixedPitch": + self.isfixedpitchs[direction] = _parsebool(args) + elif key == "EndDirection": + return _READ_MAIN, None + else: + # we assume that we are implicitly leaving the direction section again, + # so try to reprocess the line in the header reader state + return self._processline_main(line) + return _READ_DIRECTION, direction + + def _processline_charmetrics(self, line, charno): + if line.rstrip() == "EndCharMetrics": + if charno != len(self.charmetrics): + raise AFMError("Fewer character metrics than expected") + return _READ_MAIN, None + if charno >= len(self.charmetrics): + raise AFMError("More character metrics than expected") + + has_name = False + char = None + for s in line.split(";"): + s = s.strip() + if not s: + continue + key, args = s.split(None, 1) + if key == "C": + if char is not None: + raise AFMError("Cannot define char code twice") + char = AFMcharmetrics(_parseint(args)) + elif key == "CH": + if char is not None: + raise AFMError("Cannot define char code twice") + char = AFMcharmetrics(_parsehex(args)) + elif key == "WX" or key == "W0X": + char.widths[0] = _parsefloat(args), 0 + elif key == "W1X": + char.widths[1] = _parsefloat(args), 0 + elif key == "WY" or key == "W0Y": + char.widths[0] = 0, _parsefloat(args) + elif key == "W1Y": + char.widths[1] = 0, _parsefloat(args) + elif key == "W" or key == "W0": + char.widths[0] = _parsefloats(args, 2) + elif key == "W1": + char.widths[1] = _parsefloats(args, 2) + elif key == "VV": + char.vvector = _parsefloats(args, 2) + elif key == "N": + # XXX: we should check that name is valid (no whitespace, etc.) + has_name = True + char.name = _parsestr(args) + elif key == "B": + char.bbox = _parsefloats(args, 4) + elif key == "L": + successor, ligature = args.split(None, 1) + char.ligatures.append((_parsestr(successor), ligature)) + else: + raise AFMError("Undefined command in character widths specification: '%s'", s) + if char is None: + raise AFMError("Character metrics not defined") + + self.charmetrics[charno] = char + if has_name: + self.charmetricsdict[char.name] = char + return _READ_CHARMETRICS, charno+1 + + def _processline_kerndata(self, line): + try: + key, args = line.split(None, 1) + except ValueError: + key = line.rstrip() + if key == "Comment": + return _READ_KERNDATA, None + if key == "StartTrackKern": + if self.trackkerns is not None: + raise AFMError("Multiple track kernings data sections") + self.trackkerns = [None] * _parseint(args) + return _READ_TRACKKERN, 0 + elif key == "StartKernPairs" or key == "StartKernPairs0": + if self.kernpairs[0] is not None: + raise AFMError("Multiple kerning pairs data sections for direction 0") + self.kernpairs[0] = [None] * _parseint(args) + return _READ_KERNPAIRS, (0, 0) + elif key == "StartKernPairs1": + if self.kernpairs[1] is not None: + raise AFMError("Multiple kerning pairs data sections for direction 1") + self.kernpairs[1] = [None] * _parseint(args) + return _READ_KERNPAIRS, (1, 0) + elif key == "EndKernData": + return _READ_MAIN, None + else: + raise AFMError("Unsupported key %s in kerning data section" % key) + + def _processline_trackkern(self, line, i): + try: + key, args = line.split(None, 1) + except ValueError: + key = line.rstrip() + if key == "Comment": + return _READ_TRACKKERN, i + elif key == "TrackKern": + if i >= len(self.trackkerns): + raise AFMError("More track kerning data sets than expected") + degrees, args = args.split(None, 1) + self.trackkerns[i] = AFMtrackkern(int(degrees), *_parsefloats(args, 4)) + return _READ_TRACKKERN, i+1 + elif key == "EndTrackKern": + if i < len(self.trackkerns): + raise AFMError("Fewer track kerning data sets than expected") + return _READ_KERNDATA, None + else: + raise AFMError("Unsupported key %s in kerning data section" % key) + + def _processline_kernpairs(self, line, (direction, i)): + try: + key, args = line.split(None, 1) + except ValueError: + key = line.rstrip() + if key == "Comment": + return _READ_KERNPAIRS, (direction, i) + elif key == "EndKernPairs": + if i < len(self.kernpairs[direction]): + raise AFMError("Fewer kerning pairs than expected") + return _READ_KERNDATA, None + else: + if i >= len(self.kernpairs[direction]): + raise AFMError("More kerning pairs than expected") + if key == "KP": + try: + name1, name2, x, y = args.split() + except: + raise AFMError("Expecting name1, name2, x, y, got '%s'" % args) + x = _parsefloat(x) + y = _parsefloat(y) + elif key == "KPH": + try: + hex1, hex2, x, y = args.split() + except: + raise AFMError("Expecting , , x, y, got '%s'" % args) + name1 = _parsehex(hex1) + name2 = _parsehex(hex2) + x = _parsefloat(x) + y = _parsefloat(y) + elif key == "KPX": + try: + name1, name2, x = args.split() + except: + raise AFMError("Expecting name1, name2, x, got '%s'" % args) + x = _parsefloat(x) + y = 0 + self.kernpairs[direction][i] = AFMkernpair(name1, name2, _parsefloat(x), 0) + elif key == "KPY": + try: + name1, name2, y = args.split() + except: + raise AFMError("Expecting name1, name2, y, got '%s'" % args) + x = 0 + y = _parsefloat(y) + self.kernpairs[direction][i] = AFMkernpair(name1, name2, 0, _parsefloat(y)) + else: + raise AFMError("Unknown key '%s' in kern pair section" % key) + kernpair = AFMkernpair(name1, name2, x, y) + self.kernpairs[direction][i] = kernpair + if direction: + self.kernpairsdict1[name1, name2] = kernpair + else: + self.kernpairsdict[name1, name2] = kernpair + return _READ_KERNPAIRS, (direction, i+1) + + def _processline_composites(self, line, i): + if line.rstrip() == "EndComposites": + if i < len(self.composites): + raise AFMError("Fewer composite character data sets than expected") + return _READ_MAIN, None + if i >= len(self.composites): + raise AFMError("More composite character data sets than expected") + + name = None + no = None + parts = [] + for s in line.split(";"): + s = s.strip() + if not s: + continue + key, args = s.split(None, 1) + if key == "CC": + try: + name, no = args.split() + except: + raise AFMError("Expecting name number, got '%s'" % args) + no = _parseint(no) + elif key == "PCC": + try: + name1, x, y = args.split() + except: + raise AFMError("Expecting name x y, got '%s'" % args) + parts.append((name1, _parsefloat(x), _parsefloat(y))) + else: + raise AFMError("Unknown key '%s' in composite character data section" % key) + if len(parts) != no: + raise AFMError("Wrong number of composite characters") + return _READ_COMPOSITES, i+1 + + def parse(self, f): + # state of the reader, consisting of + # - the main state, i.e. the type of the section + # - a parameter sstate + state = _READ_START, None + # Note that we do a line by line processing here, since one + # of the states (_READ_DIRECTION) can be entered implicitly, i.e. + # without a corresponding StartDirection section and we thus + # may need to reprocess a line in the context of the new state + for line in f: + line = line[:-1] + mstate, sstate = state + if mstate == _READ_START: + state = self._processline_start(line) + else: + # except for the first line, any empty will be ignored + if not line.strip(): + continue + if mstate == _READ_MAIN: + state = self._processline_main(line) + elif mstate == _READ_DIRECTION: + state = self._processline_direction(line, sstate) + elif mstate == _READ_CHARMETRICS: + state = self._processline_charmetrics(line, sstate) + elif mstate == _READ_KERNDATA: + state = self._processline_kerndata(line) + elif mstate == _READ_TRACKKERN: + state = self._processline_trackkern(line, sstate) + elif mstate == _READ_KERNPAIRS: + state = self._processline_kernpairs(line, sstate) + elif mstate == _READ_COMPOSITES: + state = self._processline_composites(line, sstate) + else: + raise AFMError("Undefined state in AFM reader") + + def fucking_scale(self): + # XXX XXX XXX + return 1000.0 + + def width_ds(self, glyphname): + return self.charmetricsdict[glyphname].widths[0][0] + + def width_pt(self, glyphnames, size): + return sum([self.charmetricsdict[glyphname].widths[0][0] for glyphname in glyphnames])*size/self.fucking_scale() + + def height_pt(self, glyphnames, size): + return max([self.charmetricsdict[glyphname].bbox[3] for glyphname in glyphnames])*size/self.fucking_scale() + + def depth_pt(self, glyphnames, size): + return min([self.charmetricsdict[glyphname].bbox[1] for glyphname in glyphnames])*size/self.fucking_scale() + + def resolveligatures(self, glyphnames): + i = 1 + while i < len(glyphnames): + for glyphname, replacement in self.charmetricsdict[glyphnames[i-1]].ligatures: + if glyphname == glyphnames[i]: + glyphnames[i-1] = replacement + del glyphnames[i] + break + else: + i += 1 + return glyphnames + + def resolvekernings(self, glyphnames, size=None): + result = [None]*(2*len(glyphnames)-1) + for i, glyphname in enumerate(glyphnames): + result[2*i] = glyphname + if i: + kernpair = self.kernpairsdict.get((glyphnames[i-1], glyphname)) + if kernpair: + if size is not None: + result[2*i-1] = kernpair.x*size/self.fucking_scale() + else: + result[2*i-1] = kernpair.x + return result + + def writePDFfontinfo(self, file, seriffont=False, symbolfont=True): + flags = 0 + if self.isfixedpitchs[0]: + flags += 1<<0 + if seriffont: + flags += 1<<1 + if symbolfont: + flags += 1<<2 + else: + flags += 1<<5 + if self.italicangles[0]: + flags += 1<<6 + file.write("/Flags %d\n" % flags) + if self.italicangles[0] is not None: + file.write("/ItalicAngles %d\n" % self.italicangles[0]) + if self.ascender is not None: + ascent = self.ascender + elif self.fontbbox is not None: + ascent = self.fontbbox[3] + else: + ascent = 1000 # guessed default + file.write("/Ascent %d\n" % ascent) + if self.descender is not None: + descent = self.descender + elif self.fontbbox is not None: + descent = self.fontbbox[3] + else: + descent = -200 # guessed default + file.write("/Descent %d\n" % descent) + if self.fontbbox is not None: + file.write("/FontBBox [%d %d %d %d]\n" % tuple(self.fontbbox)) + else: + # the fontbbox is required, so we have to have to provide some default + file.write("/FontBBox [0 %d 1000 %d]\n" % (descent, ascent)) + if self.capheight is not None: + file.write("/CapHeight %d\n" % self.capheight) + else: + # the CapHeight is required, so we have to have to provide some default + file.write("/CapHeight %d\n" % ascent) + if self.stdvw is not None: + stemv = self.stdvw + elif self.weight is not None and ("bold" in self.weight.lower() or "black" in self.weight.lower()): + stemv = 120 # guessed default + else: + stemv = 70 # guessed default + file.write("/StemV %d\n" % stemv) + + +if __name__ == "__main__": + a = AFMfile("/opt/local/share/texmf-dist/fonts/afm/yandy/lucida/lbc.afm") + print a.charmetrics[0].name + a = AFMfile("/usr/share/enscript/hv.afm") + print a.charmetrics[32].name diff --git a/pyx/font/encoding.py b/pyx/font/encoding.py deleted file mode 100644 index 0503d4fe..00000000 --- a/pyx/font/encoding.py +++ /dev/null @@ -1,90 +0,0 @@ -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2005-2006 Jörg Lehmann -# Copyright (C) 2005-2006 André Wobst -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -class encoding: - - def __init__(self, encvector): - self.encvector = encvector - - def decode(self, char): - return self.encvector[char] - - # XXX why do we need to pass the name during the outputPS call - def outputPS(self, file, writer, name): - file.write("%%%%BeginProcSet: %s\n" % name) - file.write("/%s\n" - "[" % self.name) - for i, glyphname in enumerate(self.encvector): - if i and not (i % 8): - file.write("\n") - else: - file.write(" ") - file.write(glyphname) - file.write(" ] def\n" - "%%EndProcSet\n") - - def outputPDF(self, file, writer): - file.write("<<\n" - "/Type /Encoding\n" - "/Differences\n" - "[ 0") - for i, glyphname in enumerate(self.encvector): - if i and not (i % 8): - file.write("\n") - else: - file.write(" ") - file.write(glyphname) - file.write(" ]\n" - ">>\n") - -adobestandardencoding = encoding([None, None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - "space", "exclam", "quotedbl", "numbersign", "dollar", "percent", "ampersand", "quoteright", - "parenleft", "parenright", "asterisk", "plus", "comma", "hyphen", "period", "slash", - "zero", "one", "two", "three", "four", "five", "six", "seven", - "eight", "nine", "colon", "semicolon", "less", "equal", "greater", "question", - "at", "A", "B", "C", "D", "E", "F", "G", - "H", "I", "J", "K", "L", "M", "N", "O", - "P", "Q", "R", "S", "T", "U", "V", "W", - "X", "Y", "Z", "bracketleft", "backslash", "bracketright", "asciicircum", "underscore", - "quoteleft", "a", "b", "c", "d", "e", "f", "g", - "h", "i", "j", "k", "l", "m", "n", "o", - "p", "q", "r", "s", "t", "u", "v", "w", - "x", "y", "z", "braceleft", "bar", "braceright", "asciitilde", None, - None, None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - None, "exclamdown", "cent", "sterling", "fraction", "yen", "florin", "section", - "currency", "quotesingle", "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi", "fl", - None, "endash", "dagger", "daggerdbl", "periodcentered", None, "paragraph", "bullet", - "quotesinglbase", "quotedblbase", "quotedblright", "guillemotright", "ellipsis", "perthousand", None, "questiondown", - None, "grave", "acute", "circumflex", "tilde", "macron", "breve", "dotaccent", - "dieresis", None, "ring", "cedilla", None, "hungarumlaut", "ogonek", "caron", - "emdash", None, None, None, None, None, None, None, - None, None, None, None, None, None, None, None, - None, "AE", None, "ordfeminine", None, None, None, None, - "Lslash", "Oslash", "OE", "ordmasculine", None, None, None, None, - None, "ae", None, None, None, "dotlessi", None, None, - "lslash", "oslash", "oe", "germandbls", None, None, None, None]) diff --git a/pyx/font/font.py b/pyx/font/font.py new file mode 100644 index 00000000..195c2536 --- /dev/null +++ b/pyx/font/font.py @@ -0,0 +1,609 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2005-2011 Jörg Lehmann +# Copyright (C) 2006-2011 Michael Schindler +# Copyright (C) 2005-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +from pyx import bbox, canvasitem, deco, path, pswriter, pdfwriter, trafo, unit +import t1file + +try: + set() +except NameError: + # Python 2.3 + from sets import Set as set + + +############################################################################## +# PS resources +############################################################################## + +class PST1file(pswriter.PSresource): + + """ PostScript font definition included in the prolog """ + + def __init__(self, t1file, glyphnames, charcodes): + """ include type 1 font t1file stripped to the given glyphnames""" + self.type = "t1file" + self.t1file = t1file + self.id = t1file.name + self.glyphnames = set(glyphnames) + self.charcodes = set(charcodes) + + def merge(self, other): + self.glyphnames.update(other.glyphnames) + self.charcodes.update(other.charcodes) + + def output(self, file, writer, registry): + file.write("%%%%BeginFont: %s\n" % self.t1file.name) + if writer.strip_fonts: + if self.glyphnames: + file.write("%%Included glyphs: %s\n" % " ".join(self.glyphnames)) + if self.charcodes: + file.write("%%Included charcodes: %s\n" % " ".join([str(charcode) for charcode in self.charcodes])) + self.t1file.getstrippedfont(self.glyphnames, self.charcodes).outputPS(file, writer) + else: + self.t1file.outputPS(file, writer) + file.write("\n%%EndFont\n") + + +_ReEncodeFont = pswriter.PSdefinition("ReEncodeFont", """{ + 5 dict + begin + /newencoding exch def + /newfontname exch def + /basefontname exch def + /basefontdict basefontname findfont def + /newfontdict basefontdict maxlength dict def + basefontdict { + exch dup dup /FID ne exch /Encoding ne and + { exch newfontdict 3 1 roll put } + { pop pop } + ifelse + } forall + newfontdict /FontName newfontname put + newfontdict /Encoding newencoding put + newfontname newfontdict definefont pop + end +}""") + + +class PSreencodefont(pswriter.PSresource): + + """ reencoded PostScript font""" + + def __init__(self, basefontname, newfontname, encoding): + """ reencode the font """ + + self.type = "reencodefont" + self.basefontname = basefontname + self.id = self.newfontname = newfontname + self.encoding = encoding + + def output(self, file, writer, registry): + file.write("%%%%BeginResource: %s\n" % self.newfontname) + file.write("/%s /%s\n[" % (self.basefontname, self.newfontname)) + vector = [None] * len(self.encoding) + for glyphname, charcode in self.encoding.items(): + vector[charcode] = glyphname + for i, glyphname in enumerate(vector): + if i: + if not (i % 8): + file.write("\n") + else: + file.write(" ") + file.write("/%s" % glyphname) + file.write("]\n") + file.write("ReEncodeFont\n") + file.write("%%EndResource\n") + + +_ChangeFontMatrix = pswriter.PSdefinition("ChangeFontMatrix", """{ + 5 dict + begin + /newfontmatrix exch def + /newfontname exch def + /basefontname exch def + /basefontdict basefontname findfont def + /newfontdict basefontdict maxlength dict def + basefontdict { + exch dup dup /FID ne exch /FontMatrix ne and + { exch newfontdict 3 1 roll put } + { pop pop } + ifelse + } forall + newfontdict /FontName newfontname put + newfontdict /FontMatrix newfontmatrix readonly put + newfontname newfontdict definefont pop + end +}""") + + +class PSchangefontmatrix(pswriter.PSresource): + + """ change font matrix of a PostScript font""" + + def __init__(self, basefontname, newfontname, newfontmatrix): + """ change the font matrix """ + + self.type = "changefontmatrix" + self.basefontname = basefontname + self.id = self.newfontname = newfontname + self.newfontmatrix = newfontmatrix + + def output(self, file, writer, registry): + file.write("%%%%BeginResource: %s\n" % self.newfontname) + file.write("/%s /%s\n" % (self.basefontname, self.newfontname)) + file.write(str(self.newfontmatrix)) + file.write("\nChangeFontMatrix\n") + file.write("%%EndResource\n") + + +############################################################################## +# PDF resources +############################################################################## + +class PDFfont(pdfwriter.PDFobject): + + def __init__(self, fontname, basefontname, charcodes, fontdescriptor, encoding, metric): + pdfwriter.PDFobject.__init__(self, "font", fontname) + + self.fontname = fontname + self.basefontname = basefontname + self.charcodes = set(charcodes) + self.fontdescriptor = fontdescriptor + self.encoding = encoding + self.metric = metric + + def merge(self, other): + self.charcodes.update(other.charcodes) + + def write(self, file, writer, registry): + file.write("<<\n" + "/Type /Font\n" + "/Subtype /Type1\n") + file.write("/Name /%s\n" % self.fontname) + file.write("/BaseFont /%s\n" % self.basefontname) + firstchar = min(self.charcodes) + lastchar = max(self.charcodes) + file.write("/FirstChar %d\n" % firstchar) + file.write("/LastChar %d\n" % lastchar) + file.write("/Widths\n" + "[") + if self.encoding: + encoding = self.encoding.getvector() + else: + encoding = self.fontdescriptor.fontfile.t1file.encoding + for i in range(firstchar, lastchar+1): + if i: + if not (i % 8): + file.write("\n") + else: + file.write(" ") + if i in self.charcodes: + if self.metric is not None: + file.write("%i" % self.metric.width_ds(encoding[i])) + else: + file.write("%i" % self.fontdescriptor.fontfile.t1file.getglyphinfo(encoding[i])[0]) + else: + file.write("0") + file.write(" ]\n") + file.write("/FontDescriptor %d 0 R\n" % registry.getrefno(self.fontdescriptor)) + if self.encoding: + file.write("/Encoding %d 0 R\n" % registry.getrefno(self.encoding)) + file.write(">>\n") + + +class PDFstdfont(pdfwriter.PDFobject): + + def __init__(self, basename): + pdfwriter.PDFobject.__init__(self, "font", "stdfont-%s" % basename) + self.name = basename # name is ignored by acroread + self.basename = basename + + def write(self, file, writer, registry): + file.write("<>\n") + +# the 14 standard fonts that are always available in PDF +PDFTimesRoman = PDFstdfont("Times-Roman") +PDFTimesBold = PDFstdfont("Times-Bold") +PDFTimesItalic = PDFstdfont("Times-Italic") +PDFTimesBoldItalic = PDFstdfont("Times-BoldItalic") +PDFHelvetica = PDFstdfont("Helvetica") +PDFHelveticaBold = PDFstdfont("Helvetica-Bold") +PDFHelveticaOblique = PDFstdfont("Helvetica-Oblique") +PDFHelveticaBoldOblique = PDFstdfont("Helvetica-BoldOblique") +PDFCourier = PDFstdfont("Courier") +PDFCourierBold = PDFstdfont("Courier-Bold") +PDFCourierOblique = PDFstdfont("Courier-Oblique") +PDFCourierBoldOblique = PDFstdfont("Courier-BoldOblique") +PDFSymbol = PDFstdfont("Symbol") +PDFZapfDingbats = PDFstdfont("ZapfDingbats") + + +class PDFfontdescriptor(pdfwriter.PDFobject): + + def __init__(self, fontname, fontfile, metric): + pdfwriter.PDFobject.__init__(self, "fontdescriptor", fontname) + self.fontname = fontname + self.fontfile = fontfile + self.metric = metric + + def write(self, file, writer, registry): + file.write("<<\n" + "/Type /FontDescriptor\n" + "/FontName /%s\n" % self.fontname) + if self.metric is not None: + self.metric.writePDFfontinfo(file) + else: + self.fontfile.t1file.writePDFfontinfo(file) + if self.fontfile is not None: + file.write("/FontFile %d 0 R\n" % registry.getrefno(self.fontfile)) + file.write(">>\n") + + +class PDFfontfile(pdfwriter.PDFobject): + + def __init__(self, t1file, glyphnames, charcodes): + pdfwriter.PDFobject.__init__(self, "fontfile", t1file.name) + self.t1file = t1file + self.glyphnames = set(glyphnames) + self.charcodes = set(charcodes) + + def merge(self, other): + self.glyphnames.update(other.glyphnames) + self.charcodes.update(other.charcodes) + + def write(self, file, writer, registry): + if writer.strip_fonts: + self.t1file.getstrippedfont(self.glyphnames, self.charcodes).outputPDF(file, writer) + else: + self.t1file.outputPDF(file, writer) + + +class PDFencoding(pdfwriter.PDFobject): + + def __init__(self, encoding, name): + pdfwriter.PDFobject.__init__(self, "encoding", name) + self.encoding = encoding + + def getvector(self): + # As self.encoding might be appended after the constructur has set it, + # we need to defer the calculation until the whole content was constructed. + vector = [None] * len(self.encoding) + for glyphname, charcode in self.encoding.items(): + vector[charcode] = glyphname + return vector + + def write(self, file, writer, registry): + file.write("<<\n" + "/Type /Encoding\n" + "/Differences\n" + "[0") + for i, glyphname in enumerate(self.getvector()): + if i: + if not (i % 8): + file.write("\n") + else: + file.write(" ") + file.write("/%s" % glyphname) + file.write("]\n" + ">>\n") + + +############################################################################## +# basic PyX text output +############################################################################## + +class font: + + def text(self, x, y, charcodes, size_pt, **kwargs): + return self.text_pt(unit.topt(x), unit.topt(y), charcodes, size_pt, **kwargs) + + +class T1font(font): + + def __init__(self, t1file, metric): + self.t1file = t1file + self.name = t1file.name + self.metric = metric + + def text_pt(self, x, y, charcodes, size_pt, **kwargs): + return T1text_pt(self, x, y, charcodes, size_pt, **kwargs) + + +class T1builtinfont(T1font): + + def __init__(self, name, metric): + self.name = name + self.t1file = None + self.metric = metric + + +class selectedfont: + + def __init__(self, name, size_pt): + self.name = name + self.size_pt = size_pt + + def __ne__(self, other): + return self.name != other.name or self.size_pt != other.size_pt + + def outputPS(self, file, writer): + file.write("/%s %f selectfont\n" % (self.name, self.size_pt)) + + def outputPDF(self, file, writer): + file.write("/%s %f Tf\n" % (self.name, self.size_pt)) + + +class text_pt(canvasitem.canvasitem): + + pass + + +class T1text_pt(text_pt): + + def __init__(self, font, x_pt, y_pt, charcodes, size_pt, decoding=None, slant=None, ignorebbox=False, kerning=False, ligatures=False, spaced_pt=0): + if decoding is not None: + self.glyphnames = [decoding[character] for character in charcodes] + self.decode = True + else: + self.charcodes = charcodes + self.decode = False + self.font = font + self.x_pt = x_pt + self.y_pt = y_pt + self.size_pt = size_pt + self.slant = slant + self.ignorebbox = ignorebbox + self.kerning = kerning + self.ligatures = ligatures + self.spaced_pt = spaced_pt + + if self.kerning and not self.decode: + raise ValueError("decoding required for font metric access (kerning)") + if self.ligatures and not self.decode: + raise ValueError("decoding required for font metric access (ligatures)") + if self.ligatures: + self.glyphnames = self.font.metric.resolveligatures(self.glyphnames) + + def bbox(self): + if self.font.metric is None: + raise ValueError("metric missing") + if not self.decode: + raise ValueError("decoding required for font metric access (bbox)") + return bbox.bbox_pt(self.x_pt, + self.y_pt+self.font.metric.depth_pt(self.glyphnames, self.size_pt), + self.x_pt+self.font.metric.width_pt(self.glyphnames, self.size_pt), + self.y_pt+self.font.metric.height_pt(self.glyphnames, self.size_pt)) + + def getencodingname(self, encodings): + """returns the name of the encoding (in encodings) mapping self.glyphnames to codepoints + If no such encoding can be found or extended, a new encoding is added to encodings + """ + glyphnames = set(self.glyphnames) + if len(glyphnames) > 256: + raise ValueError("glyphs do not fit into one single encoding") + for encodingname, encoding in encodings.items(): + glyphsmissing = [] + for glyphname in glyphnames: + if glyphname not in encoding.keys(): + glyphsmissing.append(glyphname) + + if len(glyphsmissing) + len(encoding) < 256: + # new glyphs fit in existing encoding which will thus be extended + for glyphname in glyphsmissing: + encoding[glyphname] = len(encoding) + return encodingname + # create a new encoding for the glyphnames + encodingname = "encoding%d" % len(encodings) + encodings[encodingname] = dict([(glyphname, i) for i, glyphname in enumerate(glyphnames)]) + return encodingname + + def processPS(self, file, writer, context, registry, bbox): + if not self.ignorebbox: + bbox += self.bbox() + + if writer.text_as_path: + if self.decode: + if self.kerning: + data = self.font.metric.resolvekernings(self.glyphnames, self.size_pt) + else: + data = self.glyphnames + else: + data = self.charcodes + textpath = path.path() + x_pt = self.x_pt + y_pt = self.y_pt + for i, value in enumerate(data): + if self.kerning and i % 2: + if value is not None: + x_pt += value + else: + if i: + x_pt += self.spaced_pt + glyphpath, wx_pt, wy_pt = self.font.t1file.getglyphpathwxwy_pt(value, self.size_pt, convertcharcode=not self.decode) + textpath += glyphpath.transformed(trafo.translate_pt(x_pt, y_pt)) + x_pt += wx_pt + y_pt += wy_pt + deco.decoratedpath(textpath, fillstyles=[]).processPS(file, writer, context, registry, bbox) + else: + # register resources + if self.font.t1file is not None: + if self.decode: + registry.add(PST1file(self.font.t1file, self.glyphnames, [])) + else: + registry.add(PST1file(self.font.t1file, [], self.charcodes)) + + fontname = self.font.name + if self.decode: + encodingname = self.getencodingname(writer.encodings.setdefault(self.font.name, {})) + encoding = writer.encodings[self.font.name][encodingname] + newfontname = "%s-%s" % (fontname, encodingname) + registry.add(_ReEncodeFont) + registry.add(PSreencodefont(fontname, newfontname, encoding)) + fontname = newfontname + + if self.slant: + newfontmatrix = trafo.trafo_pt(matrix=((1, self.slant), (0, 1))) * self.font.t1file.fontmatrix + newfontname = "%s-slant%f" % (fontname, self.slant) + registry.add(_ChangeFontMatrix) + registry.add(PSchangefontmatrix(fontname, newfontname, newfontmatrix)) + fontname = newfontname + + # select font if necessary + sf = selectedfont(fontname, self.size_pt) + if context.selectedfont is None or sf != context.selectedfont: + context.selectedfont = sf + sf.outputPS(file, writer) + + file.write("%f %f moveto (" % (self.x_pt, self.y_pt)) + if self.decode: + if self.kerning: + data = self.font.metric.resolvekernings(self.glyphnames, self.size_pt) + else: + data = self.glyphnames + else: + data = self.charcodes + for i, value in enumerate(data): + if self.kerning and i % 2: + if value is not None: + file.write(") show\n%f 0 rmoveto (" % (value+self.spaced_pt)) + elif self.spaced_pt: + file.write(") show\n%f 0 rmoveto (" % self.spaced_pt) + else: + if i and not self.kerning and self.spaced_pt: + file.write(") show\n%f 0 rmoveto (" % self.spaced_pt) + if self.decode: + value = encoding[value] + if 32 < value < 127 and chr(value) not in "()[]<>\\": + file.write("%s" % chr(value)) + else: + file.write("\\%03o" % value) + file.write(") show\n") + + def processPDF(self, file, writer, context, registry, bbox): + if not self.ignorebbox: + bbox += self.bbox() + + if writer.text_as_path: + if self.decode: + if self.kerning: + data = self.font.metric.resolvekernings(self.glyphnames, self.size_pt) + else: + data = self.glyphnames + else: + data = self.charcodes + textpath = path.path() + x_pt = self.x_pt + y_pt = self.y_pt + for i, value in enumerate(data): + if self.kerning and i % 2: + if value is not None: + x_pt += value + else: + if i: + x_pt += self.spaced_pt + glyphpath, wx_pt, wy_pt = self.font.t1file.getglyphpathwxwy_pt(value, self.size_pt, convertcharcode=not self.decode) + textpath += glyphpath.transformed(trafo.translate_pt(x_pt, y_pt)) + x_pt += wx_pt + y_pt += wy_pt + deco.decoratedpath(textpath, fillstyles=[]).processPDF(file, writer, context, registry, bbox) + else: + if self.decode: + encodingname = self.getencodingname(writer.encodings.setdefault(self.font.name, {})) + encoding = writer.encodings[self.font.name][encodingname] + charcodes = [encoding[glyphname] for glyphname in self.glyphnames] + else: + charcodes = self.charcodes + + # create resources + fontname = self.font.name + if self.decode: + newfontname = "%s-%s" % (fontname, encodingname) + _encoding = PDFencoding(encoding, newfontname) + fontname = newfontname + else: + _encoding = None + if self.font.t1file is not None: + if self.decode: + fontfile = PDFfontfile(self.font.t1file, self.glyphnames, []) + else: + fontfile = PDFfontfile(self.font.t1file, [], self.charcodes) + else: + fontfile = None + fontdescriptor = PDFfontdescriptor(self.font.name, fontfile, self.font.metric) + font = PDFfont(fontname, self.font.name, charcodes, fontdescriptor, _encoding, self.font.metric) + + # register resources + if fontfile is not None: + registry.add(fontfile) + registry.add(fontdescriptor) + if _encoding is not None: + registry.add(_encoding) + registry.add(font) + + registry.addresource("Font", fontname, font, procset="Text") + + if self.slant is None: + slantvalue = 0 + else: + slantvalue = self.slant + + # select font if necessary + sf = selectedfont(fontname, self.size_pt) + if context.selectedfont is None or sf != context.selectedfont: + context.selectedfont = sf + sf.outputPDF(file, writer) + + if self.kerning: + file.write("1 0 %f 1 %f %f Tm [(" % (slantvalue, self.x_pt, self.y_pt)) + else: + file.write("1 0 %f 1 %f %f Tm (" % (slantvalue, self.x_pt, self.y_pt)) + if self.decode: + if self.kerning: + data = self.font.metric.resolvekernings(self.glyphnames) + else: + data = self.glyphnames + else: + data = self.charcodes + for i, value in enumerate(data): + if self.kerning and i % 2: + if value is not None: + file.write(")%f(" % (-value-self.spaced_pt)) + elif self.spaced_pt: + file.write(")%f(" % (-self.spaced_pt)) + else: + if i and not self.kerning and self.spaced_pt: + file.write(")%f(" % (-self.spaced_pt)) + if self.decode: + value = encoding[value] + if 32 <= value <= 127 and chr(value) not in "()[]<>\\": + file.write("%s" % chr(value)) + else: + file.write("\\%03o" % value) + if self.kerning: + file.write(")] TJ\n") + else: + file.write(") Tj\n") diff --git a/pyx/font/metric.py b/pyx/font/metric.py new file mode 100644 index 00000000..4446b604 --- /dev/null +++ b/pyx/font/metric.py @@ -0,0 +1,45 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2007-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + +class metric: + + def width_ds(self, glyphname): + raise NotImplementedError() + + def width_pt(self, glyphnames, size): + raise NotImplementedError() + + def height_pt(self, glyphnames, size): + raise NotImplementedError() + + def depth_pt(self, glyphnames, size): + raise NotImplementedError() + + def resolveligatures(self, glyphnames): + return glyphnames + + def resolvekernings(self, glyphnames, size=None): + result = [None]*(2*len(glyphnames)-1) + for i, glyphname in enumerate(glyphnames): + result[2*i] = glyphname + return result diff --git a/pyx/font/t1code.py b/pyx/font/t1code.py index b16b8283..ad195571 100644 --- a/pyx/font/t1code.py +++ b/pyx/font/t1code.py @@ -1,7 +1,7 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005-2006 André Wobst +# Copyright (C) 2005-2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/font/t1font.py b/pyx/font/t1file.py similarity index 74% rename from pyx/font/t1font.py rename to pyx/font/t1file.py index f2b34982..7353a538 100644 --- a/pyx/font/t1font.py +++ b/pyx/font/t1file.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005-2006 André Wobst -# Copyright (C) 2006 Jörg Lehmann +# Copyright (C) 2005-2011 André Wobst +# Copyright (C) 2006-2011 Jörg Lehmann # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -20,25 +20,16 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - -import array, binascii, re +import array, binascii, math, re, warnings try: import zlib haszlib = 1 except ImportError: haszlib = 0 -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) -from pyx import trafo +from pyx import trafo, reader, pycompat from pyx.path import path, moveto_pt, lineto_pt, curveto_pt, closepath -import encoding try: from _t1code import * @@ -46,6 +37,39 @@ except: from t1code import * +adobestandardencoding = [None, None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + "space", "exclam", "quotedbl", "numbersign", "dollar", "percent", "ampersand", "quoteright", + "parenleft", "parenright", "asterisk", "plus", "comma", "hyphen", "period", "slash", + "zero", "one", "two", "three", "four", "five", "six", "seven", + "eight", "nine", "colon", "semicolon", "less", "equal", "greater", "question", + "at", "A", "B", "C", "D", "E", "F", "G", + "H", "I", "J", "K", "L", "M", "N", "O", + "P", "Q", "R", "S", "T", "U", "V", "W", + "X", "Y", "Z", "bracketleft", "backslash", "bracketright", "asciicircum", "underscore", + "quoteleft", "a", "b", "c", "d", "e", "f", "g", + "h", "i", "j", "k", "l", "m", "n", "o", + "p", "q", "r", "s", "t", "u", "v", "w", + "x", "y", "z", "braceleft", "bar", "braceright", "asciitilde", None, + None, None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + None, "exclamdown", "cent", "sterling", "fraction", "yen", "florin", "section", + "currency", "quotesingle", "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi", "fl", + None, "endash", "dagger", "daggerdbl", "periodcentered", None, "paragraph", "bullet", + "quotesinglbase", "quotedblbase", "quotedblright", "guillemotright", "ellipsis", "perthousand", None, "questiondown", + None, "grave", "acute", "circumflex", "tilde", "macron", "breve", "dotaccent", + "dieresis", None, "ring", "cedilla", None, "hungarumlaut", "ogonek", "caron", + "emdash", None, None, None, None, None, None, None, + None, None, None, None, None, None, None, None, + None, "AE", None, "ordfeminine", None, None, None, None, + "Lslash", "Oslash", "OE", "ordmasculine", None, None, None, None, + None, "ae", None, None, None, "dotlessi", None, None, + "lslash", "oslash", "oe", "germandbls", None, None, None, None] + class T1context: def __init__(self, t1font): @@ -92,7 +116,7 @@ class T1cmd: """gather dependancy information subrs is the "called-subrs" dictionary. gathercalls will insert the - subr number as key having the value 1, i.e. subrs.keys() will become the + subr number as key having the value 1, i.e. subrs will become the numbers of used subrs. Similar seacglyphs will contain all glyphs in composite characters (subrs and othersubrs for those glyphs will also already be included) and othersubrs the othersubrs called. @@ -155,8 +179,8 @@ class _T1seac(T1cmd): ady = context.t1stack.pop(0) bchar = context.t1stack.pop(0) achar = context.t1stack.pop(0) - aglyph = encoding.adobestandardencoding.decode(achar) - bglyph = encoding.adobestandardencoding.decode(bchar) + aglyph = adobestandardencoding[achar] + bglyph = adobestandardencoding[bchar] context.t1font.updateglyphpath(bglyph, path, atrafo, context) atrafo = atrafo * trafo.translate_pt(adx-sab, ady) context.t1font.updateglyphpath(aglyph, path, atrafo, context) @@ -164,10 +188,10 @@ class _T1seac(T1cmd): def gathercalls(self, seacglyphs, subrs, othersubrs, context): bchar = context.t1stack.pop() achar = context.t1stack.pop() - aglyph = encoding.adobestandardencoding.decode(achar) - bglyph = encoding.adobestandardencoding.decode(bchar) - seacglyphs[aglyph] = 1 - seacglyphs[bglyph] = 1 + aglyph = adobestandardencoding[achar] + bglyph = adobestandardencoding[bchar] + seacglyphs.add(aglyph) + seacglyphs.add(bglyph) context.t1font.gatherglyphcalls(bglyph, seacglyphs, subrs, othersubrs, context) context.t1font.gatherglyphcalls(aglyph, seacglyphs, subrs, othersubrs, context) @@ -509,7 +533,7 @@ class _T1callothersubr(T1cmd): def gathercalls(self, seacglyphs, subrs, othersubrs, context): othersubrnumber = context.t1stack.pop() - othersubrs[othersubrnumber] = 1 + othersubrs.add(othersubrnumber) n = context.t1stack.pop() for i in range(n): context.psstack.append(context.t1stack.pop()) @@ -531,7 +555,7 @@ class _T1callsubr(T1cmd): def gathercalls(self, seacglyphs, subrs, othersubrs, context): subr = context.t1stack.pop() - subrs[subr] = 1 + subrs.add(subr) context.t1font.gathersubrcalls(subr, seacglyphs, subrs, othersubrs, context) T1callsubr = _T1callsubr() @@ -574,7 +598,7 @@ class _T1setcurrentpoint(T1cmd): T1cmd.__init__(self, 33, subcmd=1) def __str__(self): - return "setcurrentpoint" % self.x, self.y + return "setcurrentpoint" def updatepath(self, path, trafo, context): x = context.t1stack.pop(0) @@ -588,71 +612,14 @@ T1setcurrentpoint = _T1setcurrentpoint() ###################################################################### -class cursor: - """cursor to read a string token by token""" - - def __init__(self, data, startstring, eattokensep=1, tokenseps=" \t\r\n", tokenstarts="()<>[]{}/%"): - """creates a cursor for the string data - - startstring is a string at which the cursor should start at. The first - ocurance of startstring is used. When startstring is not in data, an - exception is raised, otherwise the cursor is set to the position right - after the startstring. When eattokenseps is set, startstring must be - followed by a tokensep and this first tokensep is also consumed. - tokenseps is a string containing characters to be used as token - separators. tokenstarts is a string containing characters which - directly (even without intermediate token separator) start a new token. - """ - self.data = data - self.pos = self.data.index(startstring) + len(startstring) - self.tokenseps = tokenseps - self.tokenstarts = tokenstarts - if eattokensep: - if self.data[self.pos] not in self.tokenstarts: - if self.data[self.pos] not in self.tokenseps: - raise ValueError("cursor initialization string is not followed by a token separator") - self.pos += 1 - - def gettoken(self): - """get the next token - - Leading token separators and comments are silently consumed. The first token - separator after the token is also silently consumed.""" - while self.data[self.pos] in self.tokenseps: - self.pos += 1 - # ignore comments including subsequent whitespace characters - while self.data[self.pos] == "%": - while self.data[self.pos] not in "\r\n": - self.pos += 1 - while self.data[self.pos] in self.tokenseps: - self.pos += 1 - startpos = self.pos - while self.data[self.pos] not in self.tokenseps: - # any character in self.tokenstarts ends the token - if self.pos>startpos and self.data[self.pos] in self.tokenstarts: - break - self.pos += 1 - result = self.data[startpos:self.pos] - if self.data[self.pos] in self.tokenseps: - self.pos += 1 # consume a single tokensep - return result - - def getint(self): - """get the next token as an integer""" - return int(self.gettoken()) - - def getbytes(self, count): - """get the next count bytes""" - startpos = self.pos - self.pos += count - return self.data[startpos: self.pos] - - -class T1font: +class T1file: eexecr = 55665 charstringr = 4330 + fontnamepattern = re.compile("/FontName\s+/(.*?)\s+def\s+") + fontmatrixpattern = re.compile("/FontMatrix\s*\[\s*(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s*\]\s*(readonly\s+)?def") + def __init__(self, data1, data2eexec, data3): """initializes a t1font instance @@ -672,6 +639,10 @@ class T1font: # marker and value for standard encoding check self.encoding = None + self.name, = self.fontnamepattern.search(self.data1).groups() + m11, m12, m21, m22, v1, v2 = map(float, self.fontmatrixpattern.search(self.data1).groups()[:6]) + self.fontmatrix = trafo.trafo_pt(matrix=((m11, m12), (m21, m22)), vector=(v1, v2)) + def _eexecdecode(self, code): """eexec decoding of code""" return decoder(code, self.eexecr, 4) @@ -688,21 +659,15 @@ class T1font: """eexec encoding of data""" return encoder(data, self.charstringr, "PyX!"[:self.lenIV]) - lenIVpattern = re.compile("/lenIV\s+(\d+)\s+def\s+") - flexhintsubrs = [[3, 0, T1callothersubr, T1pop, T1pop, T1setcurrentpoint, T1return], - [0, 1, T1callothersubr, T1return], - [0, 2, T1callothersubr, T1return], - [T1return]] - def _encoding(self): """helper method to lookup the encoding in the font""" - c = cursor(self.data1, "/Encoding") + c = reader.PStokenizer(self.data1, "/Encoding") token1 = c.gettoken() token2 = c.gettoken() if token1 == "StandardEncoding" and token2 == "def": - self.encoding = encoding.adobestandardencoding + self.encoding = adobestandardencoding else: - encvector = [None]*256 + self.encoding = [None]*256 while 1: self.encodingstart = c.pos if c.gettoken() == "dup": @@ -711,14 +676,19 @@ class T1font: i = c.getint() glyph = c.gettoken() if 0 <= i < 256: - encvector[i] = glyph[1:] + self.encoding[i] = glyph[1:] token = c.gettoken(); assert token == "put" self.encodingend = c.pos token = c.gettoken() if token == "readonly" or token == "def": break assert token == "dup" - self.encoding = encoding.encoding(encvector) + + lenIVpattern = re.compile("/lenIV\s+(\d+)\s+def\s+") + flexhintsubrs = [[3, 0, T1callothersubr, T1pop, T1pop, T1setcurrentpoint, T1return], + [0, 1, T1callothersubr, T1return], + [0, 2, T1callothersubr, T1return], + [T1return]] def _data2decode(self): """decodes data2eexec to the data2 string and the subr and glyphs dictionary @@ -736,7 +706,7 @@ class T1font: self.emptysubr = self._charstringencode(chr(11)) # extract Subrs - c = cursor(self._data2, "/Subrs") + c = reader.PStokenizer(self._data2, "/Subrs") self.subrsstart = c.pos arraycount = c.getint() token = c.gettoken(); assert token == "array" @@ -762,7 +732,7 @@ class T1font: # hasflexhintsubrs is a boolean indicating that the font uses flex or # hint replacement subrs as specified by Adobe (tm). When it does, the # first 4 subrs should all be copied except when none of them are used - # in the stripped version of the font since we than get a font not + # in the stripped version of the font since we then get a font not # using flex or hint replacement subrs at all. self.hasflexhintsubrs = (arraycount >= len(self.flexhintsubrs) and [self.getsubrcmds(i) @@ -771,7 +741,7 @@ class T1font: # extract glyphs self.glyphs = {} self.glyphlist = [] # we want to keep the order of the glyph names - c = cursor(self._data2, "/CharStrings") + c = reader.PStokenizer(self._data2, "/CharStrings") self.charstringsstart = c.pos c.getint() token = c.gettoken(); assert token == "dict" @@ -906,23 +876,23 @@ class T1font: def gatherglyphcalls(self, glyph, seacglyphs, subrs, othersubrs, context): self.gathercalls(self.getglyphcmds(glyph), seacglyphs, subrs, othersubrs, context) - fontmatrixpattern = re.compile("/FontMatrix\s*\[\s*(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s+(-?[0-9.]+)\s*\]\s*(readonly\s+)?def") - - def getglyphpathwxwy_pt(self, glyph, size): - m = self.fontmatrixpattern.search(self.data1) - m11, m12, m21, m22, v1, v2 = map(float, m.groups()[:6]) - t = trafo.trafo_pt(matrix=((m11, m12), (m21, m22)), vector=(v1, v2)).scaled(size) + def getglyphpathwxwy_pt(self, glyph, size, convertcharcode=False): + if convertcharcode: + if not self.encoding: + self._encoding() + glyph = self.encoding[glyph] + t = self.fontmatrix.scaled(size) context = T1context(self) p = path() self.updateglyphpath(glyph, p, t, context) wx, wy = t.apply_pt(context.wx, context.wy) return p, wx, wy - def getglyphpath(self, glyph, size): + def getglyphpath(self, glyph, size, convertcharcode=False): """return a PyX path for glyph named glyph""" return self.getglyphpathwxwy_pt(glyph, size)[0] - def getglyphwxwy_pt(self, glyph, size): + def getglyphwxwy_pt(self, glyph, size, convertcharcode=False): return self.getglyphpathwxwy_pt(glyph, size)[1:] def getdata2(self, subrs=None, glyphs=None): @@ -940,14 +910,13 @@ class T1font: if subrs is not None: # some adjustments to the subrs dict if subrs: - subrsindices = subrs.keys() - subrsmin = min(subrsindices) - subrsmax = max(subrsindices) + subrsmin = min(subrs) + subrsmax = max(subrs) if self.hasflexhintsubrs and subrsmin < len(self.flexhintsubrs): # According to the spec we need to keep all the flex and hint subrs # as long as any of it is used. for subr in range(len(self.flexhintsubrs)): - subrs[subr] = 1 + subrs.add(subr) else: subrsmax = -1 else: @@ -958,7 +927,7 @@ class T1font: # build the string from all selected subrs result.append("%d array\n" % (subrsmax + 1)) for subr in range(subrsmax+1): - if subrs.has_key(subr): + if subr in subrs: code = self.subrs[subr] else: code = self.emptysubr @@ -967,7 +936,7 @@ class T1font: def addcharstrings(glyphs, result): result.append("%d dict dup begin\n" % (glyphs is None and len(self.glyphlist) or len(glyphs))) for glyph in self.glyphlist: - if glyphs is None or glyphs.has_key(glyph): + if glyphs is None or glyph in glyphs: result.append("/%s %d %s %s %s\n" % (glyph, len(self.glyphs[glyph]), self.glyphrdtoken, self.glyphs[glyph], self.glyphndtoken)) result.append("end\n") @@ -992,36 +961,38 @@ class T1font: return self._eexecencode(self.getdata2()) newlinepattern = re.compile("\s*[\r\n]\s*") - uniqueidpattern = re.compile("/UniqueID\s+\d+\s+def\s+") + uniqueidpattern = re.compile("%?/UniqueID\s+\d+\s+def\s+") + # when UniqueID is commented out (as in modern latin), prepare to remove the comment character as well - def getstrippedfont(self, glyphs): - """create a T1font instance containing only certain glyphs + def getstrippedfont(self, glyphs, charcodes): + """create a T1file instance containing only certain glyphs - glyphs is a dict having the glyph names to be contained as keys. - The glyphs dict might be modified *in place*. + glyphs is a set of the glyph names. It might be modified *in place*! """ # TODO: we could also strip othersubrs to those actually used + if not self.encoding: + self._encoding() + for charcode in charcodes: + glyphs.add(self.encoding[charcode]) # collect information about used glyphs and subrs - seacglyphs = {} - subrs = {} - othersubrs = {} - for glyph in glyphs.keys(): + seacglyphs = pycompat.set() + subrs = pycompat.set() + othersubrs = pycompat.set() + for glyph in glyphs: self.gatherglyphcalls(glyph, seacglyphs, subrs, othersubrs, T1context(self)) # while we have gathered all subrs for the seacglyphs alreadys, we # might have missed the glyphs themself (when they are not used stand-alone) glyphs.update(seacglyphs) - glyphs[".notdef"] = 1 + glyphs.add(".notdef") # strip data1 - if not self.encoding: - self._encoding() - if self.encoding is encoding.adobestandardencoding: + if self.encoding is adobestandardencoding: data1 = self.data1 else: encodingstrings = [] - for char, glyph in enumerate(self.encoding.encvector): - if glyph in glyphs.keys(): + for char, glyph in enumerate(self.encoding): + if glyph in glyphs: encodingstrings.append("dup %i /%s put\n" % (char, glyph)) data1 = self.data1[:self.encodingstart] + "".join(encodingstrings) + self.data1[self.encodingend:] data1 = self.newlinepattern.subn("\n", data1)[0] @@ -1034,20 +1005,54 @@ class T1font: data3 = self.newlinepattern.subn("\n", self.data3)[0] # create and return the new font instance - return T1font(data1.rstrip() + "\n", self._eexecencode(data2), data3.rstrip() + "\n") - - def getflags(self): - # As a simple heuristics we assume non-symbolic fonts if and only - # if the Adobe standard encoding is used. All other font flags are - # not specified here. - if not self.encoding: - self._encoding() - if self.encoding is encoding.adobestandardencoding: - return 32 - return 4 + return T1file(data1.rstrip() + "\n", self._eexecencode(data2), data3.rstrip() + "\n") + + # The following two methods, writePDFfontinfo and getglyphinfo, + # extract informtion which should better be taken from the afm file. + def writePDFfontinfo(self, file): + try: + glyphinfo_y = self.getglyphinfo("y") + glyphinfo_W = self.getglyphinfo("W") + glyphinfo_H = self.getglyphinfo("H") + glyphinfo_h = self.getglyphinfo("h") + glyphinfo_period = self.getglyphinfo("period") + glyphinfo_colon = self.getglyphinfo("colon") + except: + warnings.warn("Auto-guessing of font information for font '%s' failed. We're writing stub data instead." % self.name) + file.write("/Flags 4\n") + file.write("/FontBBox [0 -100 1000 1000]\n") + file.write("/ItalicAngle 0\n") + file.write("/Ascent 1000\n") + file.write("/Descent -100\n") + file.write("/CapHeight 700\n") + file.write("/StemV 100\n") + else: + if not self.encoding: + self._encoding() + # As a simple heuristics we assume non-symbolic fonts if and only + # if the Adobe standard encoding is used. All other font flags are + # not specified here. + if self.encoding is adobestandardencoding: + file.write("/Flags 32\n") + else: + file.write("/Flags 4\n") + file.write("/FontBBox [0 %f %f %f]\n" % (glyphinfo_y[3], glyphinfo_W[0], glyphinfo_H[5])) + file.write("/ItalicAngle %f\n" % math.degrees(math.atan2(glyphinfo_period[4]-glyphinfo_colon[4], glyphinfo_colon[5]-glyphinfo_period[5]))) + file.write("/Ascent %f\n" % glyphinfo_H[5]) + file.write("/Descent %f\n" % glyphinfo_y[3]) + file.write("/CapHeight %f\n" % glyphinfo_h[5]) + file.write("/StemV %f\n" % (glyphinfo_period[4]-glyphinfo_period[2])) + + def getglyphinfo(self, glyph): + warnings.warn("We are about to extract font information for the Type 1 font '%s' from its pfb file. This is bad practice (and it's slow). You should use an afm file instead." % self.name) + context = T1context(self) + p = path() + self.updateglyphpath(glyph, p, trafo.trafo(), context) + bbox = p.bbox() + return context.wx, context.wy, bbox.llx_pt, bbox.lly_pt, bbox.urx_pt, bbox.ury_pt def outputPFA(self, file): - """output the T1font in PFA format""" + """output the T1file in PFA format""" file.write(self.data1) data2eexechex = binascii.b2a_hex(self.getdata2eexec()) linelength = 64 @@ -1057,7 +1062,7 @@ class T1font: file.write(self.data3) def outputPFB(self, file): - """output the T1font in PFB format""" + """output the T1file in PFB format""" data2eexec = self.getdata2eexec() def pfblength(data): l = len(data) @@ -1077,7 +1082,7 @@ class T1font: file.write("\200\3") def outputPS(self, file, writer): - """output the PostScript code for the T1font to the file file""" + """output the PostScript code for the T1file to the file file""" self.outputPFA(file) def outputPDF(self, file, writer): @@ -1107,45 +1112,89 @@ class T1font: file.write("\n" "endstream\n") - -class T1pfafont(T1font): - - """create a T1font instance from a pfa font file""" - - def __init__(self, filename): - d = open(filename, "rb").read() - # hey, that's quick'n'dirty - m1 = d.index("eexec") + 6 - m2 = d.index("0"*40) - data1 = d[:m1] - data2 = binascii.a2b_hex(d[m1: m2].replace(" ", "").replace("\r", "").replace("\n", "")) - data3 = d[m2:] - T1font.__init__(self, data1, data2, data3) - - -class T1pfbfont(T1font): - - """create a T1font instance from a pfb font file""" - - def __init__(self, filename): - def pfblength(s): - if len(s) != 4: - raise ValueError("invalid string length") - return (ord(s[0]) + - ord(s[1])*256 + - ord(s[2])*256*256 + - ord(s[3])*256*256*256) - f = open(filename, "rb") - mark = f.read(2); assert mark == "\200\1" - data1 = f.read(pfblength(f.read(4))) - mark = f.read(2); assert mark == "\200\2" - data2 = "" - while mark == "\200\2": - data2 = data2 + f.read(pfblength(f.read(4))) - mark = f.read(2) - assert mark == "\200\1" - data3 = f.read(pfblength(f.read(4))) - mark = f.read(2); assert mark == "\200\3" - assert not f.read(1) - T1font.__init__(self, data1, data2, data3) - +# factory functions + +class FontFormatError(Exception): + pass + +def from_PFA_bytes(bytes): + """create a T1file instance from a string of bytes corresponding to a PFA file""" + try: + m1 = bytes.index("eexec") + 6 + m2 = bytes.index("0"*40) + except ValueError: + raise FontFormatError + + data1 = bytes[:m1] + data2 = binascii.a2b_hex(bytes[m1: m2].replace(" ", "").replace("\r", "").replace("\n", "")) + data3 = bytes[m2:] + return T1file(data1, data2, data3) + +def from_PFA_filename(filename): + """create a T1file instance from PFA font file of given name""" + file = open(filename, "rb") + t1file = from_PFA_bytes(file.read()) + file.close() + return t1file + +def from_PFB_bytes(bytes): + """create a T1file instance from a string of bytes corresponding to a PFB file""" + + def pfblength(s): + if len(s) != 4: + raise ValueError("invalid string length") + return (ord(s[0]) + + ord(s[1])*256 + + ord(s[2])*256*256 + + ord(s[3])*256*256*256) + class consumer: + def __init__(self, bytes): + self.bytes = bytes + self.pos = 0 + def __call__(self, n): + result = self.bytes[self.pos:self.pos+n] + self.pos += n + return result + + consume = consumer(bytes) + mark = consume(2) + if mark != "\200\1": + raise FontFormatError + data1= consume(pfblength(consume(4))) + mark = consume(2) + if mark != "\200\2": + raise FontFormatError + data2 = "" + while mark == "\200\2": + data2 = data2 + consume(pfblength(consume(4))) + mark = consume(2) + if mark != "\200\1": + raise FontFormatError + data3 = consume(pfblength(consume(4))) + mark = consume(2) + if mark != "\200\3": + raise FontFormatError + if consume(1): + raise FontFormatError + + return T1file(data1, data2, data3) + +def from_PFB_filename(filename): + """create a T1file instance from PFB font file of given name""" + file = open(filename, "rb") + t1file = from_PFB_bytes(file.read()) + file.close() + return t1file + +def from_PF_bytes(bytes): + try: + return from_PFB_bytes(bytes) + except FontFormatError: + return from_PFA_bytes(bytes) + +def from_PF_filename(filename): + """create a T1file instance from PFA or PFB font file of given name""" + file = open(filename, "rb") + t1file = from_PF_bytes(file.read()) + file.close() + return t1file diff --git a/pyx/graph/__init__.py b/pyx/graph/__init__.py index 5e2c65ce..c8f3084a 100644 --- a/pyx/graph/__init__.py +++ b/pyx/graph/__init__.py @@ -1,7 +1,7 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2004-2005 André Wobst +# Copyright (C) 2004-2005 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/graph/axis/__init__.py b/pyx/graph/axis/__init__.py index 930a277d..3e47a5fd 100644 --- a/pyx/graph/axis/__init__.py +++ b/pyx/graph/axis/__init__.py @@ -1,7 +1,7 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2004-2006 André Wobst +# Copyright (C) 2004-2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/graph/axis/axis.py b/pyx/graph/axis/axis.py index 867600fc..9264414a 100644 --- a/pyx/graph/axis/axis.py +++ b/pyx/graph/axis/axis.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann -# Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2003-2011 Michael Schindler +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,18 +21,10 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math, warnings from pyx import attr, unit, text from pyx.graph.axis import painter, parter, positioner, rater, texter, tick -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) class _marker: pass @@ -72,7 +64,7 @@ class _regularaxis(_axis): def __init__(self, min=None, max=None, reverse=0, divisor=None, title=None, painter=painter.regular(), texter=texter.mixed(), linkpainter=painter.linked(), - density=1, maxworse=2, manualticks=[]): + density=1, maxworse=2, manualticks=[], fallbackrange=None): if min is not None and max is not None and min > max: min, max, reverse = max, min, not reverse self.min = min @@ -86,6 +78,7 @@ class _regularaxis(_axis): self.density = density self.maxworse = maxworse self.manualticks = self.checkfraclist(manualticks) + self.fallbackrange = fallbackrange def createdata(self, errorname): return axisdata(min=self.min, max=self.max) @@ -121,6 +114,14 @@ class _regularaxis(_axis): errorname = " for axis %s" % errorname if data.min is None or data.max is None: raise RuntimeError("incomplete axis range%s" % errorname) + if data.max == data.min: + if self.fallbackrange is not None: + try: + data.min, data.max = data.min - 0.5*self.fallbackrange, data.min + 0.5*self.fallbackrange + except TypeError: + data.min, data.max = self.fallbackrange[0], self.fallbackrange[1] + else: + raise RuntimeError("zero axis range%s" % errorname) def layout(data): self.adjustaxis(data, data.ticks, graphtexrunner, errorname) @@ -154,7 +155,15 @@ class _regularaxis(_axis): # build a list of variants bestrate = None if self.divisor is not None: - partfunctions = parter.partfunctions(data.min/self.divisor, data.max/self.divisor, + if data.min is not None: + data_min_divided = data.min/self.divisor + else: + data_min_divided = None + if data.max is not None: + data_max_divided = data.max/self.divisor + else: + data_max_divided = None + partfunctions = parter.partfunctions(data_min_divided, data_max_divided, self.min is None, self.max is None) else: partfunctions = parter.partfunctions(data.min, data.max, @@ -167,7 +176,8 @@ class _regularaxis(_axis): ticks = partfunction() if ticks is None: break - ticks = tick.mergeticklists(self.manualticks, ticks, mergeequal=0) + ticks = [t for t in tick.mergeticklists(self.manualticks, ticks, mergeequal=0) + if t.ticklevel is not None or t.labellevel is not None] if ticks: rate = rater.rateticks(self, ticks, self.density) if self.reverse: @@ -485,7 +495,7 @@ class anchoredaxis: self.axis = axis self.errorname = errorname self.graphtexrunner = graphtexrunner - self.data = axis.createdata(errorname) + self.data = axis.createdata(self.errorname) self.canvas = None self.positioner = None @@ -578,7 +588,7 @@ class linkedaxis(anchoredaxis): self.setlinkedaxis(linkedaxis) def setlinkedaxis(self, linkedaxis): - assert isinstance(linkedaxis, anchoredaxis), errorname + assert isinstance(linkedaxis, anchoredaxis), self.errorname self.linkedto = linkedaxis self.axis = linkedaxis.axis self.graphtexrunner = self.linkedto.graphtexrunner diff --git a/pyx/graph/axis/painter.py b/pyx/graph/axis/painter.py index 2391e1bb..d6275257 100644 --- a/pyx/graph/axis/painter.py +++ b/pyx/graph/axis/painter.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -100,7 +100,12 @@ class _title(_text): dx, dy = axispos.vtickdirection(self.titlepos) titleattrs = self.defaulttitleattrs + self.titleattrs if self.titledirection is not None: - titleattrs.append(self.titledirection.trafo(dx, dy)) + x2, y2 = axispos.vtickpoint_pt(self.titlepos+0.001) # XXX: axisdirection needed + dx2, dy2 = x2-x, y2-y + if dx*dy2-dy*dx2 < 0: + dy2 *= -1 + dx2 *= -1 + titleattrs.append(self.titledirection.trafo(dy2, -dx2)) title = canvas.text_pt(x, y, axis.title, titleattrs) canvas.extent_pt += unit.topt(self.titledist) title.linealign_pt(canvas.extent_pt, -dx, -dy) @@ -307,7 +312,7 @@ class bar(_title): for (v, x, y, dx, dy), name in zip(namepos, data.names): nameattrs = self.defaultnameattrs + self.nameattrs if self.namedirection is not None: - nameattrs.append(self.namedirection.trafo(tick.temp_dx, tick.temp_dy)) + nameattrs.append(self.namedirection.trafo(dx, dy)) nameboxes.append(canvas.texrunner.text_pt(x, y, str(name), nameattrs)) labeldist_pt = canvas.extent_pt + unit.topt(self.namedist) if len(namepos) > 1: diff --git a/pyx/graph/axis/parter.py b/pyx/graph/axis/parter.py index f01e73d6..03788aa3 100644 --- a/pyx/graph/axis/parter.py +++ b/pyx/graph/axis/parter.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,8 +21,6 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math from pyx.graph.axis import tick @@ -65,7 +63,7 @@ class _parter: class linear(_parter): - """partitioner to create a single linear parition""" + """partitioner to create a single linear partition""" def __init__(self, tickdists=None, labeldists=None, extendtick=0, extendlabel=None, epsilon=1e-10): if tickdists is None and labeldists is not None: @@ -130,7 +128,7 @@ lin = linear class autolinear(_parter): - """partitioner to create an arbitrary number of linear paritions""" + """partitioner to create an arbitrary number of linear partitions""" defaultvariants = [[tick.rational((1, 1)), tick.rational((1, 2))], [tick.rational((2, 1)), tick.rational((1, 1))], @@ -196,7 +194,7 @@ class preexp: class logarithmic(linear): - """partitioner to create a single logarithmic parition""" + """partitioner to create a single logarithmic partition""" # define some useful constants pre1exp = preexp([tick.rational((1, 1))], 10) @@ -266,7 +264,7 @@ log = logarithmic class autologarithmic(logarithmic): - """partitioner to create several logarithmic paritions""" + """partitioner to create several logarithmic partitions""" defaultvariants = [([logarithmic.pre1exp, # ticks logarithmic.pre1to9exp], # subticks diff --git a/pyx/graph/axis/positioner.py b/pyx/graph/axis/positioner.py index bdee12db..62ece690 100644 --- a/pyx/graph/axis/positioner.py +++ b/pyx/graph/axis/positioner.py @@ -1,7 +1,7 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005-2006 André Wobst +# Copyright (C) 2005-2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/graph/axis/rater.py b/pyx/graph/axis/rater.py index 0daf6806..4f5c087c 100644 --- a/pyx/graph/axis/rater.py +++ b/pyx/graph/axis/rater.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/graph/axis/texter.py b/pyx/graph/axis/texter.py index 267460bd..ba1231e3 100644 --- a/pyx/graph/axis/texter.py +++ b/pyx/graph/axis/texter.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2004 André Wobst +# Copyright (C) 2002-2004 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/graph/axis/tick.py b/pyx/graph/axis/tick.py index dc59ac3f..3794d966 100644 --- a/pyx/graph/axis/tick.py +++ b/pyx/graph/axis/tick.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2005 André Wobst +# Copyright (C) 2002-2005 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/graph/axis/timeaxis.py b/pyx/graph/axis/timeaxis.py index 4b036fc2..1b53361f 100644 --- a/pyx/graph/axis/timeaxis.py +++ b/pyx/graph/axis/timeaxis.py @@ -1,3 +1,25 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2004-2006 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + import datetime from pyx.graph import style from pyx.graph.axis import axis, rater diff --git a/pyx/graph/data.py b/pyx/graph/data.py index 9e525ba2..ef9f7008 100644 --- a/pyx/graph/data.py +++ b/pyx/graph/data.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,30 +21,11 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math, re, ConfigParser, struct, warnings from pyx import text from pyx.style import linestyle from pyx.graph import style -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) - -try: - dict() -except NameError: - # fallback implementation for Python 2.1 - def dict(items): - result = {} - for key, value in items: - result[key] = value - return result - def splitatvalue(value, *splitpoints): section = 0 @@ -157,7 +138,7 @@ class points(_data): self.columndata = [range(1, len(points) + 1)] + self.columndata self.columns = dict([(key, self.columndata[i]) for key, i in columns.items()]) else: - self.columns = dict([(key, []) for key, i in columns]) + self.columns = dict([(key, []) for key, i in columns.items()]) self.columnnames = self.columns.keys() self.title = title diff --git a/pyx/graph/graph.py b/pyx/graph/graph.py index 8b4a319e..dfaa119a 100644 --- a/pyx/graph/graph.py +++ b/pyx/graph/graph.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -22,8 +22,6 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math, re, string, warnings from pyx import canvas, path, trafo, unit from pyx.graph import style @@ -133,6 +131,7 @@ class graph(canvas.canvas): canvas.canvas.__init__(self) self.axes = {} self.plotitems = [] + self.keyitems = [] self._calls = {} self.didranges = 0 self.didstyles = 0 @@ -250,15 +249,26 @@ class graph(canvas.canvas): self.didstyles = 1 - def doplot(self, plotitem): - if self.did(self.doplot, plotitem): + def doplotitem(self, plotitem): + if self.did(self.doplotitem, plotitem): return self.dostyles() plotitem.draw(self) - def dodata(self): + def doplot(self): for plotitem in self.plotitems: - self.doplot(plotitem) + self.doplotitem(plotitem) + + def dodata(self): + warnings.warn("dodata() has been deprecated. Use doplot() instead.") + self.doplot() + + def dokeyitem(self, plotitem): + if self.did(self.dokeyitem, plotitem): + return + self.dostyles() + if plotitem.title is not None: + self.keyitems.append(plotitem) def dokey(self): raise NotImplementedError @@ -266,7 +276,7 @@ class graph(canvas.canvas): def finish(self): self.dobackground() self.doaxes() - self.dodata() + self.doplot() self.dokey() @@ -497,9 +507,10 @@ class graphxy(graph): if self.did(self.dokey): return self.dobackground() - self.dostyles() + for plotitem in self.plotitems: + self.dokeyitem(plotitem) if self.key is not None: - c = self.key.paint(self.plotitems) + c = self.key.paint(self.keyitems) bbox = c.bbox() def parentchildalign(pmin, pmax, cmin, cmax, pos, dist, inside): ppos = pmin+0.5*(cmax-cmin)+dist+pos*(pmax-pmin-cmax+cmin-2*dist) @@ -631,7 +642,7 @@ class graphxyz(graphxy): else: self.axes[axisname] = axis.linkedaxis(self.axes[okey], axisname) if not axes.has_key("z"): - self.axes["z"] = axis.anchoredaxis(axis.linear(), self.texrunner, axisname) + self.axes["z"] = axis.anchoredaxis(axis.linear(), self.texrunner, "z") if self.axes.has_key("x"): self.xbasepath = self.axes["x"].basepath @@ -686,7 +697,7 @@ class graphxyz(graphxy): yaxis = self.axes["y"] if zaxis is None: zaxis = self.axes["z"] - return self.vpos_pt(xaxis.convert(x), yaxis.convert(y), zaxis.convert(y)) + return self.vpos_pt(xaxis.convert(x), yaxis.convert(y), zaxis.convert(z)) def pos(self, x, y, z, xaxis=None, yaxis=None, zaxis=None): if xaxis is None: @@ -695,7 +706,7 @@ class graphxyz(graphxy): yaxis = self.axes["y"] if zaxis is None: zaxis = self.axes["z"] - return self.vpos(xaxis.convert(x), yaxis.convert(y), zaxis.convert(y)) + return self.vpos(xaxis.convert(x), yaxis.convert(y), zaxis.convert(z)) def vpos_pt(self, vx, vy, vz): x, y = self.projector.point(2*self.xscale*(vx - 0.5), @@ -731,7 +742,7 @@ class graphxyz(graphxy): def vgeodesic_el(self, vx1, vy1, vz1, vx2, vy2, vz2): """returns a geodesic path element between two points in graph coordinates""" - return path.lineto_pt(*(self.vpos_pt(vx1, vy1, vz1) + self.vpos_pt(vx2, vy2, vz2))) + return path.lineto_pt(*self.vpos_pt(vx2, vy2, vz2)) def vcap_pt(self, coordinate, length_pt, vx, vy, vz): """returns an error cap path for a given coordinate, lengths and @@ -847,7 +858,7 @@ class graphxyz(graphxy): lambda vz: self.vtickdirection(0, 1, vz, 1, 0, vz), self.zvgridpath)) elif axisname == "z4": - self.axes["z4"].setpositioner(positioner.flexlineaxispos_pt(lambda vz: self.vpos_pt(0, 0, vz), + self.axes["z4"].setpositioner(positioner.flexlineaxispos_pt(lambda vz: self.vpos_pt(1, 1, vz), lambda vz: self.vtickdirection(1, 1, vz, 0, 0, vz), self.zvgridpath)) else: @@ -875,9 +886,10 @@ class graphxyz(graphxy): if self.did(self.dokey): return self.dobackground() - self.dostyles() + for plotitem in self.plotitems: + self.dokeyitem(plotitem) if self.key is not None: - c = self.key.paint(self.plotitems) + c = self.key.paint(self.keyitems) bbox = c.bbox() def parentchildalign(pmin, pmax, cmin, cmax, pos, dist, inside): ppos = pmin+0.5*(cmax-cmin)+dist+pos*(pmax-pmin-cmax+cmin-2*dist) diff --git a/pyx/graph/key.py b/pyx/graph/key.py index 515d203a..e3a6af12 100644 --- a/pyx/graph/key.py +++ b/pyx/graph/key.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2005 André Wobst +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -99,7 +99,6 @@ class key: "creates the layout of the key" columndist_pt = unit.topt(self.columndist) c = canvas.canvas() - plotitems = [plotitem for plotitem in plotitems if plotitem.title is not None] itemspercolumn = (len(plotitems) + self.columns - 1) / self.columns # integer division x_pt = 0 while plotitems: diff --git a/pyx/graph/style.py b/pyx/graph/style.py index cc43df10..812be88f 100644 --- a/pyx/graph/style.py +++ b/pyx/graph/style.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 Jörg Lehmann # Copyright (C) 2003-2004 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -22,27 +22,12 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math, warnings from pyx import attr, deco, style, color, unit, canvas, path, mesh from pyx import text as textmodule builtinrange = range -try: - sum([]) -except NameError: - # fallback implementation for Python 2.2 and below - def sum(list): - return reduce(lambda x, y: x+y, list, 0) - -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2. and below - def enumerate(list): - return zip(xrange(len(list)), list) class _style: """Interface class for graph styles @@ -869,13 +854,14 @@ class arrow(_styleneedingpointpos): defaultlineattrs = [] defaultarrowattrs = [] - def __init__(self, linelength=0.25*unit.v_cm, arrowsize=0.15*unit.v_cm, lineattrs=[], arrowattrs=[], arrowpos=0.5, epsilon=1e-5): + def __init__(self, linelength=0.25*unit.v_cm, arrowsize=0.15*unit.v_cm, lineattrs=[], arrowattrs=[], arrowpos=0.5, epsilon=1e-5, decorator=deco.earrow): self.linelength = linelength self.arrowsize = arrowsize self.lineattrs = lineattrs self.arrowattrs = arrowattrs self.arrowpos = arrowpos self.epsilon = epsilon + self.decorator = decorator def columnnames(self, privatedata, sharedata, graph, columnnames): if len(graph.axesnames) != 2: @@ -916,8 +902,11 @@ class arrow(_styleneedingpointpos): y1 = y_pt-self.arrowpos*dy*linelength_pt*size x2 = x_pt+(1-self.arrowpos)*dx*linelength_pt*size y2 = y_pt+(1-self.arrowpos)*dy*linelength_pt*size - privatedata.arrowcanvas.stroke(path.line_pt(x1, y1, x2, y2), privatedata.lineattrs + - [deco.earrow(privatedata.arrowattrs, size=self.arrowsize*size)]) + if self.decorator: + privatedata.arrowcanvas.stroke(path.line_pt(x1, y1, x2, y2), + privatedata.lineattrs+[self.decorator(privatedata.arrowattrs, size=self.arrowsize*size)]) + else: + privatedata.arrowcanvas.stroke(path.line_pt(x1, y1, x2, y2), privatedata.lineattrs) def donedrawpoints(self, privatedata, sharedata, graph): graph.insert(privatedata.arrowcanvas) @@ -1015,7 +1004,7 @@ class histogram(_style): if privatedata.autohistogram and columnname == sharedata.poscolumnnames[privatedata.rangeaxisindex]: if len(data) == 1: raise ValueError("several data points needed for automatic histogram width calculation") - if data: + if len(data) > 1: delta = data[1] - data[0] min = data[0] - self.autohistogrampointpos * delta max = data[-1] + (1-self.autohistogrampointpos) * delta @@ -1386,13 +1375,13 @@ class barpos(_style): sharedata.stackedbar = sharedata.stackedbardraw = 0 if self.fromvalue is not None: - privatedata.vfromvalue = graph.axes[sharedata.barposcolumnnames[sharedata.barvalueindex][0]].convert(self.fromvalue) + privatedata.vfromvalue = graph.axes[sharedata.barposcolumnnames[sharedata.barvalueindex]].convert(self.fromvalue) if privatedata.vfromvalue < 0: privatedata.vfromvalue = 0 if privatedata.vfromvalue > 1: privatedata.vfromvalue = 1 if self.frompathattrs is not None and privatedata.insertfrompath: - graph.stroke(graph.axes[sharedata.barposcolumnnames[sharedata.barvalueindex][0]].vgridpath(privatedata.vfromvalue), + graph.stroke(graph.axes[sharedata.barposcolumnnames[sharedata.barvalueindex]].vgridpath(privatedata.vfromvalue), self.defaultfrompathattrs + self.frompathattrs) else: privatedata.vfromvalue = 0 @@ -1479,61 +1468,106 @@ class bar(_style): defaultbarattrs = [color.gradient.Rainbow, deco.stroked([color.grey.black])] - def __init__(self, barattrs=[]): + def __init__(self, barattrs=[], epsilon=1e-10, gradient=color.gradient.RedBlack): self.barattrs = barattrs + self.epsilon = epsilon + self.gradient = gradient + + def lighting(self, angle, zindex): + return self.gradient.getcolor(0.7-0.4*abs(angle)+0.1*zindex) def columnnames(self, privatedata, sharedata, graph, columnnames): - if len(graph.axesnames) != 2: - raise TypeError("bar style restricted on two-dimensional graphs") return [] def selectstyle(self, privatedata, sharedata, graph, selectindex, selecttotal): privatedata.barattrs = attr.selectattrs(self.defaultbarattrs + self.barattrs, selectindex, selecttotal) def initdrawpoints(self, privatedata, sharedata, graph): - privatedata.rectcanvas = graph.insert(canvas.canvas()) + privatedata.barcanvas = graph.insert(canvas.canvas()) sharedata.stackedbardraw = 1 privatedata.stackedbar = sharedata.stackedbar + privatedata.todraw = [] def drawpointfill(self, privatedata, p): if p: - privatedata.rectcanvas.fill(p, privatedata.barattrs) + privatedata.barcanvas.fill(p, privatedata.barattrs) def drawpoint(self, privatedata, sharedata, graph, point): - xvmin = sharedata.vbarrange[0][0] - xvmax = sharedata.vbarrange[0][1] - yvmin = sharedata.vbarrange[1][0] - yvmax = sharedata.vbarrange[1][1] - try: - if xvmin > xvmax: - xvmin, xvmax = xvmax, xvmin - except: - pass - try: - if yvmin > yvmax: - yvmin, yvmax = yvmax, yvmin - except: - pass - if (xvmin is not None and xvmin < 1 and - xvmax is not None and xvmax > 0 and - yvmin is not None and yvmin < 1 and - yvmax is not None and yvmax > 0): - if xvmin < 0: - xvmin = 0 - elif xvmax > 1: - xvmax = 1 - if yvmin < 0: - yvmin = 0 - elif yvmax > 1: - yvmax = 1 - p = graph.vgeodesic(xvmin, yvmin, xvmax, yvmin) - p.append(graph.vgeodesic_el(xvmax, yvmin, xvmax, yvmax)) - p.append(graph.vgeodesic_el(xvmax, yvmax, xvmin, yvmax)) - p.append(graph.vgeodesic_el(xvmin, yvmax, xvmin, yvmin)) + vbarrange = [] + for vmin, vmax in sharedata.vbarrange: + if vmin is None or vmax is None: + self.drawpointfill(privatedata, None) + return + if vmin > vmax: + vmin, vmax = vmax, vmin + if vmin > 1 or vmax < 0: + self.drawpointfill(privatedata, None) + return + if vmin < 0: + vmin = 0 + if vmax > 1: + vmax = 1 + vbarrange.append((vmin, vmax)) + if len(vbarrange) == 2: + p = graph.vgeodesic(vbarrange[0][0], vbarrange[1][0], vbarrange[0][1], vbarrange[1][0]) + p.append(graph.vgeodesic_el(vbarrange[0][1], vbarrange[1][0], vbarrange[0][1], vbarrange[1][1])) + p.append(graph.vgeodesic_el(vbarrange[0][1], vbarrange[1][1], vbarrange[0][0], vbarrange[1][1])) + p.append(graph.vgeodesic_el(vbarrange[0][0], vbarrange[1][1], vbarrange[0][0], vbarrange[1][0])) p.append(path.closepath()) self.drawpointfill(privatedata, p) + elif len(vbarrange) == 3: + planes = [] + if abs(vbarrange[0][0] - vbarrange[0][1]) > self.epsilon and abs(vbarrange[1][0] - vbarrange[1][1]): + planes.append((vbarrange[0][0], vbarrange[1][0], vbarrange[2][0], + vbarrange[0][1], vbarrange[1][0], vbarrange[2][0], + vbarrange[0][1], vbarrange[1][1], vbarrange[2][0], + vbarrange[0][0], vbarrange[1][1], vbarrange[2][0])) + planes.append((vbarrange[0][0], vbarrange[1][0], vbarrange[2][1], + vbarrange[0][0], vbarrange[1][1], vbarrange[2][1], + vbarrange[0][1], vbarrange[1][1], vbarrange[2][1], + vbarrange[0][1], vbarrange[1][0], vbarrange[2][1])) + if abs(vbarrange[0][0] - vbarrange[0][1]) > self.epsilon and abs(vbarrange[2][0] - vbarrange[2][1]): + planes.append((vbarrange[0][0], vbarrange[1][0], vbarrange[2][0], + vbarrange[0][0], vbarrange[1][0], vbarrange[2][1], + vbarrange[0][1], vbarrange[1][0], vbarrange[2][1], + vbarrange[0][1], vbarrange[1][0], vbarrange[2][0])) + planes.append((vbarrange[0][0], vbarrange[1][1], vbarrange[2][0], + vbarrange[0][1], vbarrange[1][1], vbarrange[2][0], + vbarrange[0][1], vbarrange[1][1], vbarrange[2][1], + vbarrange[0][0], vbarrange[1][1], vbarrange[2][1])) + if abs(vbarrange[1][0] - vbarrange[1][1]) > self.epsilon and abs(vbarrange[2][0] - vbarrange[2][1]): + planes.append((vbarrange[0][0], vbarrange[1][0], vbarrange[2][0], + vbarrange[0][0], vbarrange[1][1], vbarrange[2][0], + vbarrange[0][0], vbarrange[1][1], vbarrange[2][1], + vbarrange[0][0], vbarrange[1][0], vbarrange[2][1])) + planes.append((vbarrange[0][1], vbarrange[1][0], vbarrange[2][0], + vbarrange[0][1], vbarrange[1][0], vbarrange[2][1], + vbarrange[0][1], vbarrange[1][1], vbarrange[2][1], + vbarrange[0][1], vbarrange[1][1], vbarrange[2][0])) + v = [0.5 * (vbarrange[0][0] + vbarrange[0][1]), + 0.5 * (vbarrange[1][0] + vbarrange[1][1]), + 0.5 * (vbarrange[2][0] + vbarrange[2][1])] + v[sharedata.barvalueindex] = 0.5 + zindex = graph.vzindex(*v) + for v11, v12, v13, v21, v22, v23, v31, v32, v33, v41, v42, v43 in planes: + angle = graph.vangle(v11, v12, v13, v21, v22, v23, v41, v42, v43) + if angle > 0: + p = graph.vgeodesic(v11, v12, v13, v21, v22, v23) + p.append(graph.vgeodesic_el(v21, v22, v23, v31, v32, v33)) + p.append(graph.vgeodesic_el(v31, v32, v33, v41, v42, v43)) + p.append(graph.vgeodesic_el(v41, v42, v43, v11, v12, v13)) + p.append(path.closepath()) + if self.gradient: + privatedata.todraw.append((-zindex, p, privatedata.barattrs + [self.lighting(angle, zindex)])) + else: + privatedata.todraw.append((-zindex, p, privatedata.barattrs)) else: - self.drawpointfill(privatedata, None) + raise TypeError("bar style restricted to two- and three dimensional graphs") + + def donedrawpoints(self, privatedata, sharedata, graph): + privatedata.todraw.sort() + for vzindex, p, a in privatedata.todraw: + privatedata.barcanvas.fill(p, a) def key_pt(self, privatedata, sharedata, graph, x_pt, y_pt, width_pt, height_pt): selectindex = privatedata.stackedbar @@ -1548,6 +1582,8 @@ class changebar(bar): raise RuntimeError("Changebar can't change its appearance. Thus you can't use it to plot several bars side by side on a subaxis.") def initdrawpoints(self, privatedata, sharedata, graph): + if len(graph.axesnames) != 2: + raise TypeError("changebar style restricted on two-dimensional graphs (at least for the moment)") bar.initdrawpoints(self, privatedata, sharedata, graph) privatedata.bars = [] @@ -1559,7 +1595,7 @@ class changebar(bar): for selectindex, p in enumerate(privatedata.bars): if p: barattrs = attr.selectattrs(self.defaultbarattrs + self.barattrs, selectindex, selecttotal) - privatedata.rectcanvas.fill(p, barattrs) + privatedata.barcanvas.fill(p, barattrs) def key_pt(self, privatedata, sharedata, graph, x_pt, y_pt, width_pt, height_pt): raise RuntimeError("Style currently doesn't provide a graph key") @@ -1688,7 +1724,7 @@ class surface(_style): def midcolor(self, c1, c2, c3, c4): return 0.25*(c1+c2+c3+c4) - def lightning(self, angle, zindex): + def lighting(self, angle, zindex): if angle < 0 and self.backcolor is not None: return self.backcolor return self.gradient.getcolor(0.7-0.4*abs(angle)+0.1*zindex) @@ -1758,6 +1794,7 @@ class surface(_style): sortElements = [(zindex, i) for i, zindex in enumerate(sortElements)] sortElements.sort() + mincolor, maxcolor = privatedata.mincolor, privatedata.maxcolor if self.mincolor is not None: mincolor = self.mincolor if self.maxcolor is not None: @@ -1800,8 +1837,14 @@ class surface(_style): x5_pt, y5_pt = graph.vpos_pt(*v5) if privatedata.colorize: def colorfromgradient(c): - return self.gradient.getcolor((c - privatedata.mincolor) / - float(privatedata.maxcolor - privatedata.mincolor)) + vc = (c - mincolor) / float(maxcolor - mincolor) + if vc < 0: + warnings.warn("gradiend color range is exceeded due to mincolor setting") + vc = 0 + if vc > 1: + warnings.warn("gradiend color range is exceeded due to maxcolor setting") + vc = 1 + return self.gradient.getcolor(vc) c1 = privatedata.colors[value1a][value2a] c2 = privatedata.colors[value1a][value2b] c3 = privatedata.colors[value1b][value2a] @@ -1822,10 +1865,10 @@ class surface(_style): c4d = c3d = c5d = self.backcolor else: zindex = graph.vzindex(*v5) - c1a = c2a = c5a = self.lightning(sign*graph.vangle(*(v1+v2+v5)), zindex) - c3b = c1b = c5b = self.lightning(sign*graph.vangle(*(v3+v1+v5)), zindex) - c2c = c4c = c5c = self.lightning(sign*graph.vangle(*(v2+v4+v5)), zindex) - c4d = c3d = c5d = self.lightning(sign*graph.vangle(*(v4+v3+v5)), zindex) + c1a = c2a = c5a = self.lighting(sign*graph.vangle(*(v1+v2+v5)), zindex) + c3b = c1b = c5b = self.lighting(sign*graph.vangle(*(v3+v1+v5)), zindex) + c2c = c4c = c5c = self.lighting(sign*graph.vangle(*(v2+v4+v5)), zindex) + c4d = c3d = c5d = self.lighting(sign*graph.vangle(*(v4+v3+v5)), zindex) for zindex, i in sortElements: if i == 0: elements.append(mesh.element((mesh.node_pt((x1_pt, y1_pt), c1a), diff --git a/pyx/mathutils.py b/pyx/mathutils.py index 1b47af12..daaa3718 100644 --- a/pyx/mathutils.py +++ b/pyx/mathutils.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # # Copyright (C) 2005-2006 Michael Schindler -# Copyright (C) 2006 André Wobst +# Copyright (C) 2006 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/mesh.py b/pyx/mesh.py index d29d0b51..c93f6f2e 100644 --- a/pyx/mesh.py +++ b/pyx/mesh.py @@ -1,7 +1,7 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2006, 2007 André Wobst +# Copyright (C) 2006-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -36,8 +36,8 @@ # node2 * -import struct, binascii, zlib -import bbox, canvas, color, pdfwriter, unit +import struct, binascii, zlib, os, tempfile +import bbox, canvasitem, color, pdfwriter, unit class node_pt: @@ -74,7 +74,7 @@ class PDFGenericResource(pdfwriter.PDFobject): file.write(self.content) -class mesh(canvas.canvasitem): +class mesh(canvasitem.canvasitem): def __init__(self, elements, check=1): self.elements = elements @@ -104,13 +104,31 @@ class mesh(canvas.canvasitem): def data(self, bbox): return "".join(["\000%s%s%s" % (coords24bit_pt(node.coords_pt[0], bbox.llx_pt, bbox.urx_pt), coords24bit_pt(node.coords_pt[1], bbox.lly_pt, bbox.ury_pt), - node.value.tostring8bit()) + node.value.to8bitstring()) for element in self.elements for node in element.nodes]) def processPS(self, file, writer, context, registry, bbox): - thisbbox = self.bbox() - bbox += thisbbox - file.write("""<< /ShadingType 4 + if writer.mesh_as_bitmap: + from pyx import bitmap, canvas + import Image + c = canvas.canvas() + c.insert(self) + fd, fname = tempfile.mkstemp() + f = os.fdopen(fd, "wb") + f.close() + c.pipeGS(fname, device="pngalpha", resolution=writer.mesh_as_bitmap_resolution) + i = Image.open(fname) + os.unlink(fname) + b = bitmap.bitmap_pt(self.bbox().llx_pt, self.bbox().lly_pt, i) + # we slightly shift the bitmap to re-center it, as the bitmap might contain some additional border + # unfortunately we need to construct another bitmap instance for that ... + b = bitmap.bitmap_pt(self.bbox().llx_pt + 0.5*(self.bbox().width_pt()-b.bbox().width_pt()), + self.bbox().lly_pt + 0.5*(self.bbox().height_pt()-b.bbox().height_pt()), i) + b.processPS(file, writer, context, registry, bbox) + else: + thisbbox = self.bbox() + bbox += thisbbox + file.write("""<< /ShadingType 4 /ColorSpace %s /BitsPerCoordinate 24 /BitsPerComponent 8 @@ -119,21 +137,40 @@ class mesh(canvas.canvasitem): /DataSource currentfile /ASCIIHexDecode filter /FlateDecode filter >> shfill\n""" % (self.elements[0].nodes[0].value.colorspacestring(), thisbbox.llx_pt, thisbbox.urx_pt, thisbbox.lly_pt, thisbbox.ury_pt, - " ".join(["0 1" for value in self.elements[0].nodes[0].value.tostring8bit()]))) - file.write(binascii.b2a_hex(zlib.compress(self.data(thisbbox)))) - file.write("\n") + " ".join(["0 1" for value in self.elements[0].nodes[0].value.to8bitstring()]))) + file.write(binascii.b2a_hex(zlib.compress(self.data(thisbbox)))) + file.write("\n") def processPDF(self, file, writer, context, registry, bbox): - thisbbox = self.bbox() - bbox += thisbbox - d = self.data(thisbbox) - if writer.compress: - filter = "/Filter /FlateDecode\n" - d = zlib.compress(d) + if writer.mesh_as_bitmap: + from pyx import bitmap, canvas + import Image + c = canvas.canvas() + c.insert(self) + fd, fname = tempfile.mkstemp() + f = os.fdopen(fd, "wb") + f.close() + c.pipeGS(fname, device="pngalpha", resolution=writer.mesh_as_bitmap_resolution) + i = Image.open(fname) + os.unlink(fname) + b = bitmap.bitmap_pt(self.bbox().llx_pt, self.bbox().lly_pt, i) + # we slightly shift the bitmap to re-center it, as the bitmap might contain some additional border + # unfortunately we need to construct another bitmap instance for that ... + b = bitmap.bitmap_pt(self.bbox().llx_pt + 0.5*(self.bbox().width_pt()-b.bbox().width_pt()), + self.bbox().lly_pt + 0.5*(self.bbox().height_pt()-b.bbox().height_pt()), i) + b.processPDF(file, writer, context, registry, bbox) else: - filter = "" - name = "shading-%s" % id(self) - shading = PDFGenericResource("shading", name, """<< /ShadingType 4 + thisbbox = self.bbox() + bbox += thisbbox + d = self.data(thisbbox) + if writer.compress: + filter = "/Filter /FlateDecode\n" + d = zlib.compress(d) + else: + filter = "" + name = "shading-%s" % id(self) + shading = PDFGenericResource("shading", name, """<< +/ShadingType 4 /ColorSpace %s /BitsPerCoordinate 24 /BitsPerComponent 8 @@ -145,8 +182,8 @@ stream %s endstream\n""" % (self.elements[0].nodes[0].value.colorspacestring(), thisbbox.llx_pt, thisbbox.urx_pt, thisbbox.lly_pt, thisbbox.ury_pt, - " ".join(["0 1" for value in self.elements[0].nodes[0].value.tostring8bit()]), + " ".join(["0 1" for value in self.elements[0].nodes[0].value.to8bitstring()]), len(d), filter, d)) - registry.add(shading) - registry.addresource("Shading", name, shading) - file.write("/%s sh\n" % name) + registry.add(shading) + registry.addresource("Shading", name, shading) + file.write("/%s sh\n" % name) diff --git a/pyx/normpath.py b/pyx/normpath.py index 6056a4c8..bd00e17d 100644 --- a/pyx/normpath.py +++ b/pyx/normpath.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann +# Copyright (C) 2002-2011 Jörg Lehmann # Copyright (C) 2003-2006 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,32 +21,10 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math -try: - from math import radians, degrees -except ImportError: - # fallback implementation for Python 2.1 - def radians(x): return x*math.pi/180 - def degrees(x): return x*180/math.pi - import mathutils, path, trafo, unit import bbox as bboxmodule -try: - sum([]) -except NameError: - # fallback implementation for Python 2.2 and below - def sum(list): - return reduce(lambda x, y: x+y, list, 0) - -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) # use new style classes when possible __metaclass__ = type @@ -317,7 +295,7 @@ class normline_pt(normsubpathitem): return normline_pt(self.x1_pt, self.y1_pt, self.x0_pt, self.y0_pt) def rotation(self, params): - return [trafo.rotate(degrees(math.atan2(self.y1_pt-self.y0_pt, self.x1_pt-self.x0_pt)))]*len(params) + return [trafo.rotate(math.degrees(math.atan2(self.y1_pt-self.y0_pt, self.x1_pt-self.x0_pt)))]*len(params) def segments(self, params): if len(params) < 2: @@ -334,7 +312,7 @@ class normline_pt(normsubpathitem): return result def trafo(self, params): - rotate = trafo.rotate(degrees(math.atan2(self.y1_pt-self.y0_pt, self.x1_pt-self.x0_pt))) + rotate = trafo.rotate(math.degrees(math.atan2(self.y1_pt-self.y0_pt, self.x1_pt-self.x0_pt))) return [trafo.translate_pt(*at_pt) * rotate for param, at_pt in zip(params, self.at_pt(params))] @@ -589,7 +567,7 @@ class normcurve_pt(normsubpathitem): # the length of the line. For curves we want this "relative speed" to be higher than # _minrelspeed: if math.hypot(tdx_pt, tdy_pt)/approxarclen > _minrelspeed: - result.append(trafo.rotate(degrees(math.atan2(tdy_pt, tdx_pt)))) + result.append(trafo.rotate(math.degrees(math.atan2(tdy_pt, tdx_pt)))) else: # Note that we can't use the rule of l'Hopital here, since it would # not provide us with a sign for the tangent. Hence we wouldn't @@ -1728,7 +1706,7 @@ class normpath: if not self.normsubpaths: raise NormpathException("cannot join to empty path") if not other.normsubpaths: - raise PathException("cannot join empty path") + raise NormpathException("cannot join empty path") self.normsubpaths[-1].join(other.normsubpaths[0]) self.normsubpaths.extend(other.normsubpaths[1:]) @@ -1895,7 +1873,7 @@ class normpath: return self._tangent(self._convertparams(params, self.arclentoparam_pt), length_pt) tangent_pt = _valueorlistmethod(tangent_pt) - def tangent(self, params, length): + def tangent(self, params, length=1): """return tangent vector of path at param(s) or arc length(s) If length is not None, the tangent vector will be scaled to diff --git a/pyx/path.py b/pyx/path.py index 6352ac59..62a265ce 100644 --- a/pyx/path.py +++ b/pyx/path.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann +# Copyright (C) 2002-2006 Jörg Lehmann # Copyright (C) 2003-2005 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,17 +21,8 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import math -from math import cos, sin, tan, acos, pi -try: - from math import radians, degrees -except ImportError: - # fallback implementation for Python 2.1 - def radians(x): return x*pi/180 - def degrees(x): return x*180/pi - +from math import cos, sin, tan, acos, pi, radians, degrees import trafo, unit from normpath import NormpathException, normpath, normsubpath, normline_pt, normcurve_pt import bbox as bboxmodule @@ -41,20 +32,6 @@ from normpath import set # normpath's invalid is available as an external interface from normpath import invalid -try: - sum([]) -except NameError: - # fallback implementation for Python 2.2 and below - def sum(list): - return reduce(lambda x, y: x+y, list, 0) - -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) - # use new style classes when possible __metaclass__ = type @@ -327,6 +304,12 @@ class closepath(pathitem): file.write("closepath\n") +class pdfmoveto_pt(normline_pt): + + def outputPDF(self, file, writer): + pass + + class moveto_pt(pathitem): """Start a new subpath and set current point to (x_pt, y_pt) (coordinates in pts)""" @@ -349,6 +332,9 @@ class moveto_pt(pathitem): def createnormpath(self, epsilon=_marker): if epsilon is _marker: return normpath([normsubpath([normline_pt(self.x_pt, self.y_pt, self.x_pt, self.y_pt)])]) + elif epsilon is None: + return normpath([normsubpath([pdfmoveto_pt(self.x_pt, self.y_pt, self.x_pt, self.y_pt)], + epsilon=epsilon)]) else: return normpath([normsubpath([normline_pt(self.x_pt, self.y_pt, self.x_pt, self.y_pt)], epsilon=epsilon)]) diff --git a/pyx/pattern.py b/pyx/pattern.py index a2b0cc1a..57e4daed 100644 --- a/pyx/pattern.py +++ b/pyx/pattern.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -20,8 +20,6 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -from __future__ import nested_scopes - import cStringIO, math, warnings import attr, canvas, path, pdfwriter, pswriter, style, unit, trafo import bbox as bboxmodule @@ -32,24 +30,26 @@ class _marker: pass class pattern(canvas._canvas, attr.exclusiveattr, style.fillstyle): - def __init__(self, painttype=1, tilingtype=1, xstep=None, ystep=None, bbox=None, trafo=None, **kwargs): + def __init__(self, painttype=1, tilingtype=1, xstep=None, ystep=None, + bbox=None, trafo=None, bboxenlarge=5*unit.t_pt, **kwargs): canvas._canvas.__init__(self, **kwargs) attr.exclusiveattr.__init__(self, pattern) self.id = "pattern%d" % id(self) self.patterntype = 1 - if painttype not in (1,2): + if painttype not in (1, 2): raise ValueError("painttype must be 1 or 2") self.painttype = painttype - if tilingtype not in (1,2,3): - raise ValueError("tilingtype must be 1, 2 or 3") + if tilingtype not in (1, 2, 3): + raise ValueError("tilingtype must be 1, 2, or 3") self.tilingtype = tilingtype self.xstep = xstep self.ystep = ystep self.patternbbox = bbox self.patterntrafo = trafo + self.bboxenlarge = bboxenlarge - def __call__(self, painttype=_marker, tilingtype=_marker, xstep=_marker, ystep=_marker, - bbox=_marker, trafo=_marker): + def __call__(self, painttype=_marker, tilingtype=_marker, xstep=_marker, ystep=_marker, + bbox=_marker, trafo=_marker, bboxenlarge=_marker): if painttype is _marker: painttype = self.painttype if tilingtype is _marker: @@ -62,7 +62,9 @@ class pattern(canvas._canvas, attr.exclusiveattr, style.fillstyle): bbox = self.bbox if trafo is _marker: trafo = self.trafo - return pattern(painttype, tilingtype, xstep, ystep, bbox, trafo) + if bboxenlarge is _marker: + bboxenlarge = self.bboxenlarge + return pattern(painttype, tilingtype, xstep, ystep, bbox, trafo, bboxenlarge) def bbox(self): return bboxmodule.empty() @@ -76,24 +78,24 @@ class pattern(canvas._canvas, attr.exclusiveattr, style.fillstyle): patternfile.close() if self.xstep is None: - xstep = unit.topt(realpatternbbox.width()) + xstep = unit.topt(realpatternbbox.width()) else: - xstep = unit.topt(self.xstep) + xstep = unit.topt(self.xstep) if self.ystep is None: ystep = unit.topt(realpatternbbox.height()) else: - ystep = unit.topt(self.ystep) + ystep = unit.topt(self.ystep) if not xstep: raise ValueError("xstep in pattern cannot be zero") if not ystep: raise ValueError("ystep in pattern cannot be zero") - patternbbox = self.patternbbox or realpatternbbox.enlarged(5*unit.pt) + patternbbox = self.patternbbox or realpatternbbox.enlarged(self.bboxenlarge) patternprefix = "\n".join(("<<", "/PatternType %d" % self.patterntype, "/PaintType %d" % self.painttype, "/TilingType %d" % self.tilingtype, - "/BBox[%d %d %d %d]" % patternbbox.lowrestuple_pt(), + "/BBox [%g %g %g %g]" % patternbbox.highrestuple_pt(), "/XStep %g" % xstep, "/YStep %g" % ystep, "/PaintProc {\nbegin\n")) @@ -312,6 +314,7 @@ class PDFpattern(pdfwriter.PDFobject): file.write("/XStep %f\n" % self.xstep) file.write("/YStep %f\n" % self.ystep) file.write("/Matrix %s\n" % str(self.trafo)) + file.write("/Resources ") self.patternregistry.writeresources(file) if writer.compress: import zlib diff --git a/pyx/pdfextra.py b/pyx/pdfextra.py new file mode 100644 index 00000000..adf3231b --- /dev/null +++ b/pyx/pdfextra.py @@ -0,0 +1,717 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2006 Michael Schindler +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +import cStringIO, math +import canvasitem, bbox, pdfwriter, color, unit +from font.font import PDFHelvetica, PDFZapfDingbats + +# TODO: +# - discuss behaviour under transformations with André and Jörg +# - what about fillstyles here? +# - where should e.g. a font be added to the registry: +# in processPDF or in __init__ of the PDF-item? +# - test for double occurrance of field names: +# this leads to wrong/no display +# +# TODO horizontal alignment in textfields + + +# flags for annotations: +PDFannotflags = [("invisible", 0), ("hidden", 1), ("printable", 2), + ("nozoom", 3), ("norotate", 4), ("noview", 5), ("readonly", 6)] + +# flags for form fields +PDFformflags = [("readonly", 0), ("required", 1), ("noexport", 2), + # flags for the button field + ("notoggletooff", 14), ("radio", 15), ("pushbutton", 16), + # flags for the choice list field + ("combo", 17), ("edit", 18), ("sort", 19), ("multiselect", 21), + # flags for the text field + ("multiline", 12), ("password", 13), ("fileselect", 20), ("donotspellcheck", 22), + ("donotscroll", 23)] + + +class flag: # <<< + """A helper class for handling flags in pdf forms and annotations""" + + def __init__(self, value=None): + self.value = value + + def is_set(self, bit): + return self.value is not None and (self.value & 1<>> +def _pdfflags(flags): # <<< + """Splits flags into annotation/form part + the flag for the annotation dictionary + the flag for the form (field) dictionary + + All flags are handled equally here, independent of their use + for the specific form field. + """ + + # we initialize with 0 and set only those flags which are not 0 + annotflag = flag(value=0) + formflag = flag(value=0) + + for key, value in PDFannotflags: + if flags.has_key(key) and flags[key]: + annotflag.set(value) + + for key, value in PDFformflags: + if flags.has_key(key) and flags[key]: + formflag.set(value) + + return int(annotflag), int(formflag) +# >>> +def _pdfalignment(string): # <<< + alignflag = 0 + if string == "c": + alignflag = 1 + elif string == "r": + alignflag = 2 + return alignflag +# >>> +def _topt(value, type="u", un="cm"): # <<< + if isinstance(value, unit.length): + return unit.topt(value) + else: + return unit.topt(unit.length(value, type, un)) +# >>> +def _simplestring(text): # <<< + result = "" + for x in text: + if x.isalnum(): + result += x + return result +# >>> +def _sizetrafo(s, tr): # <<< + x1, y1 = tr.apply_pt(s, s) + x0, y0 = tr.apply_pt(0, 0) + return math.hypot(x1 - x0, y1 - y0) * math.sqrt(0.5) +# >>> + + +class formfield(canvasitem.canvasitem): # <<< + """Base class for acroforms""" + + defaultflags = dict() + + def selectflags(self, flags): + newflags = dict(**self.defaultflags) + # overwrite the default flags with given values: + for key, value in flags.items(): + if newflags.has_key(key): + newflags[key] = value + else: + raise RuntimeError("unknown argument \"%s\" to formfield" % key) + return newflags + + def bbox(self): + return bbox.bbox_pt(self.llx_pt, self.lly_pt, self.urx_pt, self.ury_pt) + + def processPS(self, file, writer, context, registry, bbox): + raise RuntimeError("postscript output of forms is not supported") +# >>> + + +class textfield(formfield): # <<< + """An interactive pdf form field for text input. + + The "name" is used for the graphical user interface and for exporing the input data. + Note that the behaviour under rotations is undefined.""" + + defaultflags = dict(invisible=0, hidden=0, printable=1, nozoom=0, norotate=0, noview=0, + readonly=0, required=0, noexport=0, multiline=0, password=0, fileselect=0, + donotspellcheck=1, donotscroll=0) + + def __init__(self, x, y, width, height, name, defaultvalue="", fontsize=10, font=PDFHelvetica, + fontrelleading=1.16, borderwidth=0, align="l", **flags): + + self.llx_pt, self.lly_pt = _topt(x), _topt(y) + self.urx_pt, self.ury_pt = _topt(x+width), _topt(y+height) + self.name = name + self.defaultvalue = defaultvalue + self.fontsize_pt = _topt(fontsize, "x", "pt") + self.font = font + self.fontrelleading = fontrelleading + self.borderwidth_pt = _topt(borderwidth, "x", "pt") + self.align = align + self.flags = self.selectflags(flags) + + def processPDF(self, file, writer, context, registry, bbox): + # the bounding box is transformed by the canvas + bbox += self.bbox() + + # the annotation rectangle must be transformed separately: + llx_pt, lly_pt = context.trafo.apply_pt(self.llx_pt, self.lly_pt) + urx_pt, ury_pt = context.trafo.apply_pt(self.urx_pt, self.ury_pt) + fontsize_pt = _sizetrafo(self.fontsize_pt, context.trafo) + borderwidth_pt = _sizetrafo(self.borderwidth_pt, context.trafo) + + # we create numbers from the flags given + annotflag, formflag = _pdfflags(self.flags) + alignflag = _pdfalignment(self.align) + + registry.add(PDFtextfield((llx_pt, lly_pt, urx_pt, ury_pt), self.name, self.defaultvalue, + fontsize_pt, self.font, self.fontrelleading*fontsize_pt, + borderwidth_pt, (not self.flags["multiline"]), + alignflag, annotflag, formflag, context.fillstyles, writer, registry)) +# >>> +class PDFtextfield(pdfwriter.PDFobject): # <<< + + def __init__(self, bb_pt, name, defaultvalue, fontsize, font, fontleading, + borderwidth, vcenter, + alignflag, annotflag, formflag, fillstyles, writer, registry): + + pdfwriter.PDFobject.__init__(self, "formfield_text") + + # append this formfield to the global document form + # and to the annotation list of the page: + self.PDFform = None + for object in registry.objects: + if object.type == "form": + object.append(self) + self.PDFform = object + elif object.type == "annotations": + object.append(self) + + self.name = name + self.bb_pt = bb_pt + self.defaultvalue = defaultvalue + self.fontsize = fontsize + self.font = font + if self.font is None: + self.font = PDFHelvetica + self.fontleading = fontleading + self.borderwidth = borderwidth + self.alignflag = alignflag + self.formflag = formflag + self.annotflag = annotflag + + self.registry = pdfwriter.PDFregistry() + self.registry.addresource("Font", self.font.name, self.font, procset="Text") + self.registry.add(self.font) + + if self.defaultvalue: + text = self.defaultvalue.split("\n") + self.defaulttext = PDFdefaulttext(writer, registry, self.fontsize, self.font, + self.fontleading, text, self.bb_pt, self.borderwidth, vcenter) + self.registry.add(self.defaulttext) + else: + self.defaulttext = None + + # process some fillstyles: + fillstring = cStringIO.StringIO() + for attr in fillstyles: + if 1:#isinstance(attr, color.color): + cont = pdfwriter.context() + cont.fillattr = 1 + cont.strokeattr = 0 + attr.processPDF(fillstring, writer, cont, self.registry, bbox) + self.fillstyles = fillstring.getvalue() + fillstring.close() + + registry.mergeregistry(self.registry) + + def write(self, file, writer, registry): + ### the dictionary entries for the annotation + file.write("<>\n") # border style dictionary + file.write("/Border [0 0 %f]\n" % self.borderwidth) # border style + file.write("/F %d\n" % self.annotflag) + ### the dictionary entries for the widget annotations + file.write("/Subtype /Widget\n") + file.write("/H /N\n") # highlight behaviour + if self.defaulttext: + file.write("/AP <>\n" % registry.getrefno(self.defaulttext)) # appearance dictionary + ### the dictionary entries for the form field + file.write("/FT /Tx\n") # type of the form field + file.write("/T (%s)\n" % self.name) # partial field name + file.write("/TU (%s)\n" % self.name) # field name for the user-interface + file.write("/TM (%s)\n" % self.name) # field name for exporting the data + file.write("/V (%s)\n" % self.defaultvalue) # starting value + file.write("/DV (%s)\n" % self.defaultvalue) # reset value + file.write("/Ff %d\n" % self.formflag) # flags for various purposes + ### the dictionary entries for the text field + file.write("/DR ") + self.registry.writeresources(file) # default resources for appearance + file.write("/DA (%s /%s %f Tf %f TL)\n" % (self.fillstyles, self.font.name, self.fontsize, self.fontleading)) # default appearance string + file.write("/Q %d\n" % self.alignflag) + file.write(">>\n") +# >>> +class PDFdefaulttext(pdfwriter.PDFobject): # <<< + + def __init__(self, writer, registry, fontsize, font, fontleading, texts, bb, borderwidth, vcenter): + + pdfwriter.PDFobject.__init__(self, "defaulttext") + self.font = font + self.fontsize = fontsize + self.fontleading = fontleading + + self.registry = pdfwriter.PDFregistry() + self.registry.addresource("Font", self.font.name, self.font, procset="Text") + self.registry.add(self.font) + + self.bb = (0, 0, bb[2] - bb[0], bb[3] - bb[1]) + self.texts = [t for t in texts if t] + + self.borderwidth = borderwidth + # try to imitate the shifting of PDF: + # the font orientation point is on the baseline of the text + self.hshift = 2*self.borderwidth + if vcenter: + baselinevrel = 0.215 + self.vshift = 0.5 * (bb[3] - bb[1]) + (len(self.texts) / 2.0 - 1)*self.fontleading + baselinevrel*self.fontsize + elif (bb[3] - bb[1]) < self.fontleading + 4*self.borderwidth: + baselinevrel = 0.215 + self.vshift = 2*self.borderwidth + baselinevrel * self.fontsize + #self.vshift = 0.5 * (bb[3] - bb[1]) - (0.5 - baselinevrel - 0.5*addrelshift)*self.fontsize + else: + baselinevrel = 0.215 + addrelshift = 0.215 + self.vshift = (bb[3] - bb[1]) - 2*self.borderwidth - self.fontleading + (baselinevrel - addrelshift)*self.fontsize + + registry.mergeregistry(self.registry) + + + def write(self, file, writer, registry): + content = "/Tx BMC q BT /%s %f Tf %f TL %f %f Td (%s) Tj" % (self.font.name, self.fontsize, self.fontleading, self.hshift, self.vshift, self.texts[0]) + for text in self.texts[1:]: + content += " (%s)'" % (text) + content += " ET Q EMC\n" + if writer.compress: + import zlib + content = zlib.compress(content) + + file.write("<<\n") + file.write("/Type /XObject\n") + file.write("/Subtype /Form\n") + file.write("/BBox [%f %f %f %f]\n" % self.bb) + #ile.write("/Matrix [0.98 0.17 -0.17 0.98 0 0]\n") + file.write("/Resources ") + self.registry.writeresources(file) # default resources for appearance + file.write("/Length %i\n" % len(content)) + if writer.compress: + file.write("/Filter /FlateDecode\n") + file.write(">>\n" + "stream\n") + file.write(content) + file.write("endstream\n") +# >>> + + +class radiobuttons(formfield): # <<< + + """A set of related buttons that can each be on or off. + + Typically, at most one radio button in a set may be on at any + given time, and selecting any one of the buttons + automatically deselects all the others. + + Note that the behaviour under rotations is undefined.""" + + defaultflags = dict(invisible=0, hidden=0, printable=1, nozoom=0, + norotate=0, noview=0, readonly=0, required=0, noexport=0, notoggletooff=0) + + def __init__(self, positions, name, values, defaultvalue=None, size=10, baselinerelpos=0.2, **flags): + + self.name = name + self.size_pt = _topt(size, "x", "pt") + self.positions_pt = [(_topt(x), _topt(y) - baselinerelpos*self.size_pt) for x, y in positions] + self.flags = self.selectflags(flags) + self.flags["radio"] = 1 + self.values = values + self.defaultvalue = defaultvalue + + def bbox(self): + llx = min([x[0] for x in self.positions_pt]) + lly = min([x[1] for x in self.positions_pt]) + urx = max([x[0] for x in self.positions_pt]) + self.size_pt + ury = max([x[1] for x in self.positions_pt]) + self.size_pt + return bbox.bbox_pt(llx, lly, urx, ury) + + def processPDF(self, file, writer, context, registry, bbox): + # the bbox is transformed by the canvas + bbox += self.bbox() + + # the annotation rectangle must be transformed separately: + positions_pt = [context.trafo.apply_pt(x, y) for x, y in self.positions_pt] + size_pt = _sizetrafo(self.size_pt, context.trafo) + + # we create numbers from the flags given + annotflag, formflag = _pdfflags(self.flags) + + onstate = PDFButtonState(writer, registry, + 10, PDFZapfDingbats, bgchar="m", fgchar="8", + bgscale=1.1, bgrelshift=(0, 0.18), fgrelshift=(0.12, 0.26)) + offstate = PDFButtonState(writer, registry, + 10, PDFZapfDingbats, bgchar="m", fgchar=None, + bgscale=1.1, bgrelshift=(0, 0.18)) + registry.add(onstate) + registry.add(offstate) + + registry.add(PDFbuttonlist(positions_pt, self.name, size_pt, self.values, self.defaultvalue, + annotflag, formflag, onstate, offstate, writer, registry)) +# >>> +class checkbox(formfield): # <<< + + """Toggles between two states, on and off + + Note that the behaviour under rotations is undefined.""" + + defaultflags = dict(invisible=0, hidden=0, printable=1, nozoom=0, + norotate=0, noview=0, readonly=0, required=0, noexport=0) + + def __init__(self, x, y, name, defaulton=0, size=10, baselinerelpos=0.2, **flags): + + self.name = name + self.size_pt = _topt(size, "x", "pt") + self.llx_pt, self.lly_pt = _topt(x), _topt(y) - baselinerelpos*self.size_pt + self.urx_pt, self.ury_pt = self.llx_pt + self.size_pt, self.lly_pt + self.size_pt + self.flags = self.selectflags(flags) + self.defaulton = defaulton + + def processPDF(self, file, writer, context, registry, bbox): + # the bbox is transformed by the canvas + bbox += self.bbox() + + # the annotation rectangle must be transformed separately: + positions_pt = [context.trafo.apply_pt(self.llx_pt, self.lly_pt)] + size_pt = _sizetrafo(self.size_pt, context.trafo) + + # we create numbers from the flags given + annotflag, formflag = _pdfflags(self.flags) + + onstate = PDFButtonState(writer, registry, + 10, PDFZapfDingbats, bgchar="o", fgchar="4", + bgscale=1.2, bgrelshift=(0, 0.08), fgscale=0.9, fgrelshift=(0.15, 0.25)) + offstate = PDFButtonState(writer, registry, + 10, PDFZapfDingbats, bgchar="o", fgchar=None, + bgscale=1.2, bgrelshift=(0, 0.08)) + registry.add(onstate) + registry.add(offstate) + + if self.defaulton: + default = "Yes" + else: + default = "Off" + + registry.add(PDFbuttonlist(positions_pt, self.name, size_pt, ["Yes"], default, + annotflag, formflag, onstate, offstate, writer, registry)) +# >>> +class PDFbuttonlist(pdfwriter.PDFobject): # <<< + + def __init__(self, positions_pt, name, size_pt, values, defaultvalue, annotflag, formflag, + onstate, offstate, writer, registry): + + pdfwriter.PDFobject.__init__(self, "formfield_buttonlist") + + # append this formfield to the global document form + # but we do not treat this as a fully valid annotation field + for object in registry.objects: + if object.type == "form": + object.append(self) + + self.name = name + self.formflag = formflag + self.annotflag = annotflag + + self.size_pt = size_pt + self.defaultvalue = defaultvalue + self.onstate = onstate + self.offstate = offstate + + self.checkboxes = [] + for i, pos_pt, value in zip(range(len(values)), positions_pt, values): + chbox = PDFcheckboxfield(pos_pt, value, size_pt, _simplestring(value), (value == defaultvalue), + self, self.onstate, self.offstate, self.annotflag, self.formflag, writer, registry) + self.checkboxes.append(chbox) + registry.add(chbox) + + def write(self, file, writer, registry): + ### implementation note: There are some (undocumented) PDF flaws which + ### do not allow to inherit certain variables: + ### * The parent button may not have /Ff (otherwise, notoggletooff fails) + ### * The Kids of a radio button may not have a /T on their own (otherwise, they are not displayed) + ### * The /BS and /Border do not draw anything. + ### Nevertheless, the border width of /Border is used + + ### the dictionary entries for the annotation + file.write("<<\n") + ### the dictionary entries for the form field + file.write("/FT /Btn\n") # type of the form field + file.write("/Kids [%s]\n" % " ".join(["%d 0 R" % registry.getrefno(x) for x in self.checkboxes])) + file.write("/T (%s)\n" % self.name) # partial field name + file.write("/TU (%s)\n" % self.name) # field name for the user-interface + file.write("/TM (%s)\n" % self.name) # field name for exporting the data + ### the dictionary entries for the radiobuttons field + file.write("/V /%s\n" % self.defaultvalue) + file.write(">>\n") +# >>> +class PDFcheckboxfield(pdfwriter.PDFobject): # <<< + + def __init__(self, pos_pt, name, size_pt, valuename, defaulton, parent, onstate, offstate, annotflag, formflag, writer, registry): + + pdfwriter.PDFobject.__init__(self, "formfield_checkbox") + + # we treat this as an annotation only, since the parent is + # already in the form field + self.PDFform = None + for object in registry.objects: + if object.type == "form": + assert self.PDFform is None + self.PDFform = object + if object.type == "annotations": + object.append(self) + + self.bb_pt = (pos_pt[0], pos_pt[1], pos_pt[0] + size_pt, pos_pt[1] + size_pt) + self.name = name + self.size_pt = size_pt + self.valuename = valuename + if defaulton: + self.defaultvalue = self.valuename + else: + self.defaultvalue = "Off" + self.parent = parent + self.onstate = onstate + self.offstate = offstate + self.annotflag = annotflag + self.formflag = formflag + + def write(self, file, writer, registry): + ### the dictionary entries for the annotation + file.write("<<\n") + file.write("/Type /Annot\n") + file.write("/Subtype /Widget\n") + file.write("/P %d 0 R\n" % registry.getrefno(self.PDFform)) # reference to the page objects + file.write("/Rect [%f %f %f %f]\n" % self.bb_pt) # the annotation rectangle + file.write("/F %d\n" % self.annotflag) # flags + ### the dictionary entries for the widget annotations + file.write("/H /N\n") # hightlight behaviour + ### the dictionary entries for the form field + file.write("/FT /Btn\n") # type of the form field + file.write("/Parent %d 0 R\n" % registry.getrefno(self.parent)) # only for hierarchy + file.write("/AP << /N << /%s %d 0 R /Off %d 0 R >> >>\n" % (self.valuename, registry.getrefno(self.onstate), registry.getrefno(self.offstate))) + file.write("/AS /%s\n" % self.defaultvalue) + file.write("/Ff %d\n" % self.formflag) # Ff may not come from parent! + file.write(">>\n") +# >>> +class PDFButtonState(pdfwriter.PDFobject): # <<< + + def __init__(self, writer, registry, fontsize, font, bgchar, fgchar, + bgscale=None, bgrelshift=None, fgscale=None, fgrelshift=None): + + pdfwriter.PDFobject.__init__(self, "buttonstate", "buttonstate" + "_".join(map(str, map(id, [fontsize, font, bgchar, fgchar, bgscale, bgrelshift, fgscale, fgrelshift])))) + self.font = font + self.fontsize = fontsize + registry.addresource("Font", self.font.name, self.font, procset="Text") + registry.add(self.font) + self.bb = 0, 0, fontsize, fontsize + self.bgchar = bgchar + self.fgchar = fgchar + + if bgscale is None and bgrelshift is not None: + bgscale = 1 + if bgscale is not None and bgrelshift is None: + bgrelshift = 0, 0 + if bgscale is not None: + self.bgtrafo = "%f 0 0 %f %f %f Tm" % (bgscale, bgscale, bgrelshift[0]*self.fontsize, bgrelshift[1]*self.fontsize) + else: + self.bgtrafo = "" + + if fgscale is None and fgrelshift is not None: + fgscale = 1 + if fgscale is not None and fgrelshift is None: + fgrelshift = 0, 0 + if fgscale is not None: + self.fgtrafo = "%f 0 0 %f %f %f Tm" % (fgscale, fgscale, fgrelshift[0]*self.fontsize, fgrelshift[1]*self.fontsize) + else: + self.fgtrafo = "" + + def write(self, file, writer, registry): + content = "" + if self.bgchar: + content += "q BT /%s %f Tf %s (%s) Tj ET Q\n" % (self.font.name, self.fontsize, self.bgtrafo, self.bgchar) + if self.fgchar: + content += "q BT /%s %f Tf %s (%s) Tj ET Q\n" % (self.font.name, self.fontsize, self.fgtrafo, self.fgchar) + if writer.compress: + import zlib + content = zlib.compress(content) + + file.write("<<\n") + file.write("/Type /XObject\n") + file.write("/Subtype /Form\n") + file.write("/BBox [%f %f %f %f]\n" % self.bb) + #ile.write("/Matrix [0.98 0.17 -0.17 0.98 0 0]\n") + file.write("/Resources <> /ProcSet [/PDF /Text] >>\n" % + (self.font.name, registry.getrefno(self.font))) + file.write("/Length %i\n" % len(content)) + if writer.compress: + file.write("/Filter /FlateDecode\n") + file.write(">>\n" + "stream\n") + file.write(content) + file.write("endstream\n") + + +## Zapf Dingbats symbols for further buttonstates: +# "3" = thin checkmark +# "4" = thick checkmark +# "5" = thin large cross +# "6" = thick large cross +# "7" = thin small cross +# "8" = thick small cross +# "l" = filled circle +# "m" = empty circle +# "n" = filled rectangle +# "o" = empty rectangle (shadow bottom right) +# "p" = empty rectangle (shadow top right) +# "q" = empty box (to bottom right) +# "r" = empty box (to top right) +# >>> + + +class choicefield(formfield): # <<< + """An interactive pdf form field for text input. + + The name is used for the graphical user interface and for exporing the input data. + Note that the behaviour under rotations is undefined.""" + + defaultflags = dict(invisible=0, hidden=0, printable=1, nozoom=0, + norotate=0, noview=0, readonly=0, required=0, noexport=0, combo=1, + edit=0, sort=0, multiselect=0, donotspellcheck=1) + + def __init__(self, x, y, width, height, name, values, defaultvalue=None, fontsize=10, font=None, + borderwidth=0, align="l", **flags): + + self.llx_pt, self.lly_pt = _topt(x), _topt(y) + self.urx_pt, self.ury_pt = _topt(x+width), _topt(y+height) + self.name = name + self.values = values + self.defaultvalue = defaultvalue + self.fontsize_pt = _topt(fontsize, "x", "pt") + self.font = font # TODO: add the generic fonts + self.borderwidth_pt = _topt(borderwidth, "x", "pt") + self.flags = self.selectflags(flags) + self.align = align + + def processPDF(self, file, writer, context, registry, bbox): + # the bounding box is transformed by the canvas + bbox += self.bbox() + + # the annotation rectangle must be transformed separately: + llx_pt, lly_pt = context.trafo.apply_pt(self.llx_pt, self.lly_pt) + urx_pt, ury_pt = context.trafo.apply_pt(self.urx_pt, self.ury_pt) + fontsize_pt = _sizetrafo(self.fontsize_pt, context.trafo) + borderwidth_pt = _sizetrafo(self.borderwidth_pt, context.trafo) + + # we create numbers from the flags given + annotflag, formflag = _pdfflags(self.flags) + alignflag = _pdfalignment(self.align) + + registry.add(PDFchoicefield((llx_pt, lly_pt, urx_pt, ury_pt), + self.name, self.values, self.defaultvalue, fontsize_pt, self.font, + borderwidth_pt, alignflag, annotflag, formflag, writer, registry)) +# >>> +class PDFchoicefield(pdfwriter.PDFobject): # <<< + + def __init__(self, bb_pt, name, values, defaultvalue, fontsize, font, + borderwidth_pt, alignflag, annotflag, formflag, writer, registry): + + pdfwriter.PDFobject.__init__(self, "formfield_choice") + + # append this formfield to the global document form + # and to the annotation list of the page: + self.PDFform = None + for object in registry.objects: + if object.type == "form": + object.append(self) + self.PDFform = object + elif object.type == "annotations": + object.append(self) + + self.name = name + self.bb_pt = bb_pt + self.values = values + self.defaultvalue = defaultvalue + self.fontsize = fontsize + self.font = font + if self.font is None: + self.font = PDFHelvetica + registry.addresource("Font", self.font.name, self.font, procset="Text") + registry.add(self.font) + self.borderwidth_pt = borderwidth_pt + self.alignflag = alignflag + self.formflag = formflag + self.annotflag = annotflag + + def write(self, file, writer, registry): + ### the dictionary entries for the annotation + file.write("<>\n" # border style dictionary + file.write("/Border [0 0 %f]\n" % self.borderwidth_pt) # border style + file.write("/F %d\n" % self.annotflag) + ### the dictionary entries for the widget annotations + file.write("/Subtype /Widget\n") + file.write("/H /N\n") # highlight behaviour + #ile.write("/AP <>\n") # appearance dictionary TODO + ### the dictionary entries for the form field + file.write("/FT /Ch\n") # type of the form field + file.write("/T (%s)\n" % self.name) # partial field name + file.write("/TU (%s)\n" % self.name) # field name for the user-interface + file.write("/TM (%s)\n" % self.name) # field name for exporting the data + if self.defaultvalue in self.values: + file.write("/V (%s)\n" % self.defaultvalue) # starting value + file.write("/Ff %d\n" % self.formflag) # flags for various purposes + ### the dictionary entries for the text field + file.write("/DR <> >>\n" % (self.font.name, registry.getrefno(self.font))) # default resources for appearance + file.write("/DA (/%s %f Tf)\n" % (self.font.name, self.fontsize)) # default appearance string + file.write("/Q %d\n" % self.alignflag) + file.write("/Opt [") + for value in self.values: + file.write(" (%s)" % value) + file.write(" ]\n") + file.write(">>\n") +# >>> + + +# vim:foldmethod=marker:foldmarker=<<<,>>> + diff --git a/pyx/pdfwriter.py b/pyx/pdfwriter.py index 25ac3f7f..df296eb1 100644 --- a/pyx/pdfwriter.py +++ b/pyx/pdfwriter.py @@ -1,8 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005-2006 Jörg Lehmann -# Copyright (C) 2005-2006 André Wobst +# Copyright (C) 2005-2011 Jörg Lehmann +# Copyright (C) 2007 Michael Schindler +# Copyright (C) 2005-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -27,24 +28,8 @@ try: except: haszlib = 0 -import bbox, unit, style, type1font, version +import bbox, config, style, unit, version, trafo -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) - -try: - dict([]) -except NameError: - # fallback implementation for Python 2.1 - def dict(list): - result = {} - for key, value in list: - result[key] = value - return result class PDFregistry: @@ -118,7 +103,7 @@ class PDFregistry: self.procsets[procset] = 1 def writeresources(self, file): - file.write("/Resources <<\n") + file.write("<<\n") file.write("/ProcSet [ %s ]\n" % " ".join(["/%s" % p for p in self.procsets.keys()])) if self.resources: for resourcetype, resources in self.resources.items(): @@ -152,6 +137,8 @@ class PDFcatalog(PDFobject): def __init__(self, document, writer, registry): PDFobject.__init__(self, "catalog") + self.PDFform = PDFform(writer, registry) + registry.add(self.PDFform) self.PDFpages = PDFpages(document, writer, registry) registry.add(self.PDFpages) self.PDFinfo = PDFinfo() @@ -161,6 +148,8 @@ class PDFcatalog(PDFobject): file.write("<<\n" "/Type /Catalog\n" "/Pages %i 0 R\n" % registry.getrefno(self.PDFpages)) + if not self.PDFform.empty(): + file.write("/AcroForm %i 0 R\n" % registry.getrefno(self.PDFform)) if writer.fullscreen: file.write("/PageMode /FullScreen\n") file.write(">>\n") @@ -234,6 +223,14 @@ class PDFpage(PDFobject): # resources are used within the page. However, the # pageregistry is also merged in the global registry self.pageregistry = PDFregistry() + self.pageregistry.add(self) + + self.PDFannotations = PDFannotations() + self.pageregistry.add(self.PDFannotations) + # we eventually need the form dictionary to append formfields + for object in registry.objects: + if object.type == "form": + self.pageregistry.add(object) self.PDFcontent = PDFcontent(page, writer, self.pageregistry) self.pageregistry.add(self.PDFcontent) @@ -252,7 +249,10 @@ class PDFpage(PDFobject): file.write("/CropBox [%f %f %f %f]\n" % self.PDFcontent.bbox.highrestuple_pt()) if self.page.rotated: file.write("/Rotate 90\n") + if not self.PDFannotations.empty(): + file.write("/Annots %i 0 R\n" % registry.getrefno(self.PDFannotations)) file.write("/Contents %i 0 R\n" % registry.getrefno(self.PDFcontent)) + file.write("/Resources ") self.pageregistry.writeresources(file) file.write(">>\n") @@ -283,180 +283,13 @@ class PDFcontent(PDFobject): file.write("endstream\n") -class PDFfont(PDFobject): - - def __init__(self, font, chars, writer, registry): - PDFobject.__init__(self, "font", font.name) - registry.addresource("Font", font.name, self, procset="Text") - - self.fontdescriptor = PDFfontdescriptor(font, chars, writer, registry) - registry.add(self.fontdescriptor) - - if font.encoding: - self.encoding = PDFencoding(font.encoding, writer, registry) - registry.add(self.encoding) - else: - self.encoding = None - - self.name = font.name - self.basefontname = font.basefontname - self.metric = font.metric - - def write(self, file, writer, registry): - file.write("<<\n" - "/Type /Font\n" - "/Subtype /Type1\n") - file.write("/Name /%s\n" % self.name) - file.write("/BaseFont /%s\n" % self.basefontname) - if self.fontdescriptor.fontfile is not None and self.fontdescriptor.fontfile.usedchars is not None: - usedchars = self.fontdescriptor.fontfile.usedchars - firstchar = min(usedchars.keys()) - lastchar = max(usedchars.keys()) - file.write("/FirstChar %d\n" % firstchar) - file.write("/LastChar %d\n" % lastchar) - file.write("/Widths\n" - "[") - for i in range(firstchar, lastchar+1): - if i and not (i % 8): - file.write("\n") - else: - file.write(" ") - if usedchars.has_key(i): - file.write("%f" % self.metric.getwidth_ds(i)) - else: - file.write("0") - file.write(" ]\n") - else: - file.write("/FirstChar 0\n" - "/LastChar 255\n" - "/Widths\n" - "[") - for i in range(256): - if i and not (i % 8): - file.write("\n") - else: - file.write(" ") - try: - width = self.metric.getwidth_ds(i) - except (IndexError, AttributeError): - width = 0 - file.write("%f" % width) - file.write(" ]\n") - file.write("/FontDescriptor %d 0 R\n" % registry.getrefno(self.fontdescriptor)) - if self.encoding: - file.write("/Encoding %d 0 R\n" % registry.getrefno(self.encoding)) - file.write(">>\n") - - -class PDFfontdescriptor(PDFobject): - - def __init__(self, font, chars, writer, registry): - PDFobject.__init__(self, "fontdescriptor", font.basefontname) - - if font.filename is None: - self.fontfile = None - else: - self.fontfile = PDFfontfile(font.basefontname, font.filename, font.encoding, chars, writer, registry) - registry.add(self.fontfile) - - self.name = font.basefontname - self.fontinfo = font.metric.fontinfo() - - def write(self, file, writer, registry): - file.write("<<\n" - "/Type /FontDescriptor\n" - "/FontName /%s\n" % self.name) - if self.fontfile is None: - file.write("/Flags 32\n") - else: - file.write("/Flags %d\n" % self.fontfile.getflags()) - file.write("/FontBBox [%d %d %d %d]\n" % self.fontinfo.fontbbox) - file.write("/ItalicAngle %d\n" % self.fontinfo.italicangle) - file.write("/Ascent %d\n" % self.fontinfo.ascent) - file.write("/Descent %d\n" % self.fontinfo.descent) - file.write("/CapHeight %d\n" % self.fontinfo.capheight) - file.write("/StemV %d\n" % self.fontinfo.vstem) - if self.fontfile is not None: - file.write("/FontFile %d 0 R\n" % registry.getrefno(self.fontfile)) - file.write(">>\n") - - -class PDFfontfile(PDFobject): - - def __init__(self, name, filename, encoding, chars, writer, registry): - PDFobject.__init__(self, "fontfile", filename) - self.name = name - self.filename = filename - if encoding is None: - self.encodingfilename = None - else: - self.encodingfilename = encoding.filename - self.usedchars = {} - for char in chars: - self.usedchars[char] = 1 - - self.strip = 1 - self.font = None - - def merge(self, other): - if self.encodingfilename == other.encodingfilename: - self.usedchars.update(other.usedchars) - else: - # TODO: need to resolve the encoding when several encodings are in the play - self.strip = 0 - - def mkfontfile(self): - import font.t1font - self.font = font.t1font.T1pfbfont(self.filename) - - def getflags(self): - if self.font is None: - self.mkfontfile() - return self.font.getflags() - - def write(self, file, writer, registry): - if self.font is None: - self.mkfontfile() - if self.strip: - # XXX: access to the encoding file - if self.encodingfilename: - encodingfile = type1font.encodingfile(self.encodingfilename, self.encodingfilename) - usedglyphs = dict([(encodingfile.decode(char)[1:], 1) for char in self.usedchars.keys()]) - else: - self.font._encoding() - usedglyphs = dict([(self.font.encoding.decode(char), 1) for char in self.usedchars.keys()]) - strippedfont = self.font.getstrippedfont(usedglyphs) - else: - strippedfont = self.font - strippedfont.outputPDF(file, writer) - - -class PDFencoding(PDFobject): - - def __init__(self, encoding, writer, registry): - PDFobject.__init__(self, "encoding", encoding.name) - self.encoding = encoding - - def write(self, file, writer, registry): - encodingfile = type1font.encodingfile(self.encoding.name, self.encoding.filename) - encodingfile.outputPDF(file, writer) - - class PDFwriter: def __init__(self, document, file, title=None, author=None, subject=None, keywords=None, - fullscreen=0, writebbox=0, compress=1, compresslevel=6): - try: - file.write("") - except: - filename = file - if not filename.endswith(".pdf"): - filename += ".pdf" - try: - file = open(filename, "wb") - except IOError: - raise IOError("cannot open output file") + fullscreen=False, writebbox=False, compress=True, compresslevel=6, + strip_fonts=True, text_as_path=False, mesh_as_bitmap=False, mesh_as_bitmap_resolution=300): + self._fontmap = None self.title = title self.author = author @@ -469,6 +302,14 @@ class PDFwriter: warnings.warn("compression disabled due to missing zlib module") self.compress = compress self.compresslevel = compresslevel + self.strip_fonts = strip_fonts + self.text_as_path = text_as_path + self.mesh_as_bitmap = mesh_as_bitmap + self.mesh_as_bitmap_resolution = mesh_as_bitmap_resolution + + # dictionary mapping font names to dictionaries mapping encoding names to encodings + # encodings themselves are mappings from glyphnames to codepoints + self.encodings = {} # the PDFcatalog class automatically builds up the pdfobjects from a document registry = PDFregistry() @@ -479,6 +320,59 @@ class PDFwriter: registry.write(file, self, catalog) file.close() + def getfontmap(self): + if self._fontmap is None: + # late import due to cyclic dependency + from pyx.dvi import mapfile + fontmapfiles = config.getlist("text", "pdffontmaps", ["pdftex.map"]) + self._fontmap = mapfile.readfontmap(fontmapfiles) + return self._fontmap + + +class PDFannotations(PDFobject): + + def __init__(self): + PDFobject.__init__(self, "annotations") + self.annots = [] + + def append(self, item): + if item not in self.annots: + self.annots.append(item) + + def empty(self): + return len(self.annots) == 0 + + def write(self, file, writer, registry): + # XXX problem: This object will be written to the file even if it is useless (empty) + file.write("[ %s ]\n" % " ".join(["%d 0 R" % registry.getrefno(annot) for annot in self.annots])) + + +class PDFform(PDFobject): + + def __init__(self, writer, registry): + PDFobject.__init__(self, "form") + self.fields = [] + + def merge(self, other): + for field in other.fields: + self.append(field) + + def append(self, field): + if field not in self.fields: + self.fields.append(field) + + def empty(self): + return len(self.fields) == 0 + + def write(self, file, writer, registry): + # XXX problem: This object will be written to the file even if it is useless (empty) + file.write("<<") + file.write("/Fields [") + for field in self.fields: + file.write(" %d 0 R" % registry.getrefno(field)) + file.write(" ]\n") + file.write(">>\n") + class context: @@ -488,11 +382,14 @@ class context: self.colorspace = None self.strokeattr = 1 self.fillattr = 1 - self.font = None + self.selectedfont = None self.textregion = 0 + self.trafo = trafo.trafo() + self.fillstyles = [] def __call__(self, **kwargs): newcontext = copy.copy(self) for key, value in kwargs.items(): setattr(newcontext, key, value) return newcontext + diff --git a/pyx/pswriter.py b/pyx/pswriter.py index e9f838ad..70d6ee22 100644 --- a/pyx/pswriter.py +++ b/pyx/pswriter.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2005-2006 Jörg Lehmann -# Copyright (C) 2005-2006 André Wobst +# Copyright (C) 2005-2011 Jörg Lehmann +# Copyright (C) 2005-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,24 +21,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA import cStringIO, copy, time, math -import bbox, style, version, type1font, unit, trafo - -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) - -try: - dict([]) -except NameError: - # fallback implementation for Python 2.1 - def dict(list): - result = {} - for key, value in list: - result[key] = value - return result +import bbox, config, style, version, unit, trafo class PSregistry: @@ -91,10 +74,6 @@ class PSresource: def output(self, file, writer, registry): raise NotImplementedError("output not implemented for %s" % repr(self)) -# -# Different variants of prolog items -# - class PSdefinition(PSresource): """ PostScript function definition included in the prolog """ @@ -105,224 +84,54 @@ class PSdefinition(PSresource): self.body = body def output(self, file, writer, registry): - file.write("%%%%BeginRessource: %s\n" % self.id) + file.write("%%%%BeginResource: %s\n" % self.id) file.write("%(body)s /%(id)s exch def\n" % self.__dict__) - file.write("%%EndRessource\n") - - -class PSfont: - - def __init__(self, font, chars, registry): - if font.filename: - registry.add(PSfontfile(font.basefontname, - font.filename, - font.encoding, - chars)) - if font.encoding and font.slant: - assert font.encname - # do first the reencoding and then the slanting: - enc_basename, enc_finalname = font.basefontname, font.encname - slt_basename, slt_finalname = tfont.encname, font.name - elif font.encoding: - enc_basename, enc_finalname = font.basefontname, font.name - elif font.slant: - slt_basename, slt_finalname = font.basefontname, font.name - - if font.encoding: - registry.add(_ReEncodeFont) - registry.add(PSfontencoding(font.encoding)) - registry.add(PSfontreencoding(enc_finalname, enc_basename, font.encoding.name)) - - if font.slant: - # we need the current fontmatrix in order to manipulate it: - # for this we need to re-read the fontfile as below in - # PSfontfile.ouput: - # XXX Is there a better way to do this? - t = trafo.trafo_pt(matrix=((1, font.slant), (0, 1))) - if font.filename: - # for the builtin fonts, we assume a trivial fontmatrix - import font.t1font as t1fontmodule - t1font = t1fontmodule.T1pfbfont(font.filename) - m = t1font.fontmatrixpattern.search(t1font.data1) - m11, m12, m21, m22, v1, v2 = map(float, m.groups()[:6]) - t *= trafo.trafo_pt(matrix=((m11, m12), (m21, m22)), vector=(v1, v2)) - else: - raise NotImplementedError( - "cannot slant unembedded fonts -- try to include \"download35.map\" in fontmaps") - registry.add(PSfontslanting(slt_finalname, slt_basename, t.__str__())) - - -class PSfontfile(PSresource): - - """ PostScript font definition included in the prolog """ - - def __init__(self, name, filename, encoding, chars): - """ include type 1 font defined by the following parameters - - - name: name of the PostScript font - - filename: name (without path) of file containing the font definition - - encfilename: name (without path) of file containing used encoding of font - or None (if no encoding file used) - - chars: character list to fill usedchars - - """ - - # Note that here we only need the encoding for selecting the used glyphs! - - self.type = "fontfile" - self.id = self.name = name - self.filename = filename - if encoding is None: - self.encodingfilename = None - else: - self.encodingfilename = encoding.filename - self.usedchars = {} - for char in chars: - self.usedchars[char] = 1 - - self.strip = 1 - - def merge(self, other): - if self.encodingfilename == other.encodingfilename: - self.usedchars.update(other.usedchars) - else: - # TODO: need to resolve the encoding when several encodings are in the play - self.strip = 0 - - def output(self, file, writer, registry): - import font.t1font - font = font.t1font.T1pfbfont(self.filename) - - file.write("%%%%BeginFont: %s\n" % self.name) - # file.write("%%Included glyphs: %s\n" % " ".join(usedglyphs)) - if self.strip: - # XXX: access to the encoding file - if self.encodingfilename: - encodingfile = type1font.encodingfile(self.encodingfilename, self.encodingfilename) - usedglyphs = dict([(encodingfile.decode(char)[1:], 1) for char in self.usedchars.keys()]) - else: - font._encoding() - usedglyphs = dict([(font.encoding.decode(char), 1) for char in self.usedchars.keys()]) - strippedfont = font.getstrippedfont(usedglyphs) - else: - strippedfont = font - strippedfont.outputPS(file, writer) - file.write("\n%%EndFont\n") - - -class PSfontencoding(PSresource): - - """ PostScript font encoding vector included in the prolog """ - - def __init__(self, encoding): - """ include font encoding vector specified by encoding """ + file.write("%%EndResource\n") - self.type = "fontencoding" - self.id = encoding.name - self.encoding = encoding - - def output(self, file, writer, registry): - encodingfile = type1font.encodingfile(self.encoding.name, self.encoding.filename) - encodingfile.outputPS(file, writer) - - -class PSfontslanting(PSresource): - - """ PostScript font slanting directive included in the prolog """ - - def __init__(self, fontname, basefontname, matrixstring): - """ include transformed font directive specified by - - - fontname: PostScript FontName of the new slanted font - - basefontname: PostScript FontName of the original font - - slant: the value of slanting - """ - - self.type = "fontslanting" - self.id = self.fontname = fontname - self.basefontname = basefontname - self.matrixstring = matrixstring +# +# Writers +# - def output(self, file, writer, registry): - file.write("%%%%BeginProcSet: %s\n" % self.fontname) - file.write("/%s findfont\n" % self.basefontname) - file.write("dup length dict begin\n") - file.write("{ 1 index /FID ne {def} {pop pop} ifelse } forall\n") - file.write("/FontMatrix %s readonly def\n" % self.matrixstring) - file.write("currentdict\n") - file.write("end\n") - file.write("/%s exch definefont pop\n" % self.fontname) - file.write("%%EndProcSet\n") +class _PSwriter: -class PSfontreencoding(PSresource): + def __init__(self, title=None, strip_fonts=True, text_as_path=False, mesh_as_bitmap=False, mesh_as_bitmap_resolution=300): + self._fontmap = None + self.title = title + self.strip_fonts = strip_fonts + self.text_as_path = text_as_path + self.mesh_as_bitmap = mesh_as_bitmap + self.mesh_as_bitmap_resolution = mesh_as_bitmap_resolution - """ PostScript font re-encoding directive included in the prolog """ + # dictionary mapping font names to dictionaries mapping encoding names to encodings + # encodings themselves are mappings from glyphnames to codepoints + self.encodings = {} - def __init__(self, fontname, basefontname, encodingname): - """ include font re-encoding directive specified by + def writeinfo(self, file): + file.write("%%%%Creator: PyX %s\n" % version.version) + if self.title is not None: + file.write("%%%%Title: %s\n" % self.title) + file.write("%%%%CreationDate: %s\n" % + time.asctime(time.localtime(time.time()))) - - fontname: PostScript FontName of the new reencoded font - - basefontname: PostScript FontName of the original font - - encname: name of the encoding + def getfontmap(self): + if self._fontmap is None: + # late import due to cyclic dependency + from pyx.dvi import mapfile + fontmapfiles = config.getlist("text", "psfontmaps", ["psfonts.map"]) + self._fontmap = mapfile.readfontmap(fontmapfiles) + return self._fontmap - Before being able to reencode a font, you have to include the - encoding via a fontencoding prolog item with name=encname - """ +class EPSwriter(_PSwriter): - self.type = "fontreencoding" - self.id = self.fontname = fontname - self.basefontname = basefontname - self.encodingname = encodingname + def __init__(self, document, file, **kwargs): + _PSwriter.__init__(self, **kwargs) - def output(self, file, writer, registry): - file.write("%%%%BeginProcSet: %s\n" % self.fontname) - file.write("/%s /%s %s ReEncodeFont\n" % (self.basefontname, self.fontname, self.encodingname)) - file.write("%%EndProcSet\n") - - -_ReEncodeFont = PSdefinition("ReEncodeFont", """{ - 5 dict - begin - /newencoding exch def - /newfontname exch def - /basefontname exch def - /basefontdict basefontname findfont def - /newfontdict basefontdict maxlength dict def - basefontdict { - exch dup dup /FID ne exch /Encoding ne and - { exch newfontdict 3 1 roll put } - { pop pop } - ifelse - } forall - newfontdict /FontName newfontname put - newfontdict /Encoding newencoding put - newfontname newfontdict definefont pop - end -}""") - - -class epswriter: - - def __init__(self, document, file): if len(document.pages) != 1: raise ValueError("EPS file can be constructed out of a single page document only") page = document.pages[0] canvas = page.canvas - try: - file.write("") - except: - filename = file - if not filename.endswith(".eps"): - filename += ".eps" - try: - file = open(filename, "w") - except IOError: - raise IOError("cannot open output file") - else: - filename = "stream" - pagefile = cStringIO.StringIO() registry = PSregistry() acontext = context() @@ -334,10 +143,7 @@ class epswriter: if pagebbox: file.write("%%%%BoundingBox: %d %d %d %d\n" % pagebbox.lowrestuple_pt()) file.write("%%%%HiResBoundingBox: %g %g %g %g\n" % pagebbox.highrestuple_pt()) - file.write("%%%%Creator: PyX %s\n" % version.version) - file.write("%%%%Title: %s\n" % filename) - file.write("%%%%CreationDate: %s\n" % - time.asctime(time.localtime(time.time()))) + self.writeinfo(file) file.write("%%EndComments\n") file.write("%%BeginProlog\n") @@ -352,21 +158,10 @@ class epswriter: file.write("%%EOF\n") -class pswriter: +class PSwriter(_PSwriter): - def __init__(self, document, file, writebbox=0): - try: - file.write("") - except: - filename = file - if not filename.endswith(".ps"): - filename += ".ps" - try: - file = open(filename, "w") - except IOError: - raise IOError("cannot open output file") - else: - filename = "stream" + def __init__(self, document, file, writebbox=False, **kwargs): + _PSwriter.__init__(self, **kwargs) # We first have to process the content of the pages, writing them into the stream pagesfile # Doing so, we fill the registry and also calculate the page bounding boxes, which are @@ -408,10 +203,7 @@ class pswriter: if documentbbox and writebbox: file.write("%%%%BoundingBox: %d %d %d %d\n" % documentbbox.lowrestuple_pt()) file.write("%%%%HiResBoundingBox: %g %g %g %g\n" % documentbbox.highrestuple_pt()) - file.write("%%%%Creator: PyX %s\n" % version.version) - file.write("%%%%Title: %s\n" % filename) - file.write("%%%%CreationDate: %s\n" % - time.asctime(time.localtime(time.time()))) + self.writeinfo(file) # required paper formats paperformats = {} @@ -455,12 +247,13 @@ class pswriter: file.write("%%Trailer\n") file.write("%%EOF\n") + class context: def __init__(self): self.linewidth_pt = None self.colorspace = None - self.font = None + self.selectedfont = None def __call__(self, **kwargs): newcontext = copy.copy(self) diff --git a/pyx/pycompat.py b/pyx/pycompat.py new file mode 100644 index 00000000..7f973406 --- /dev/null +++ b/pyx/pycompat.py @@ -0,0 +1,52 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2011 Jörg Lehmann +# Copyright (C) 2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +class _marker: pass + +def popen(cmd, mode="r", bufsize=_marker): + try: + import subprocess + if bufsize is _marker: + return subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE).stdout + else: + return subprocess.Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout + except ImportError: + import os + if bufsize is _marker: + return os.popen(cmd, mode) + else: + return os.popen(cmd, mode, bufsize) + +try: + any = any +except NameError: + def any(iterable): + for element in iterable: + if element: + return True + return False + +try: + set = set +except NameError: + # Python 2.3 + from sets import Set as set diff --git a/pyx/pykpathsea.c b/pyx/pykpathsea.c new file mode 100644 index 00000000..72a7a8d4 --- /dev/null +++ b/pyx/pykpathsea.c @@ -0,0 +1,101 @@ +/* pykpathsea.c: Copyright 2003-2011 Jörg Lehmann, André Wobst + * + * 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. + */ + +#include +#include +#include +#include + +static PyObject *py_kpse_find_file(PyObject *self, PyObject *args) +{ + char *filename; + char *format; + char *completefilename; + PyObject *returnvalue; + kpse_file_format_type kpse_file_format; + + if (PyArg_ParseTuple(args, "ss", &filename, &format)) { + + /* if (!strcmp(format, "gf")) kpse_file_format = kpse_gf_format; else */ + /* if (!strcmp(format, "pk")) kpse_file_format = kpse_pk_format; else */ + /* if (!strcmp(format, "bitmap font")) kpse_file_format = kpse_any_glyph_format; else */ + if (!strcmp(format, "tfm")) kpse_file_format = kpse_tfm_format; else + if (!strcmp(format, "afm")) kpse_file_format = kpse_afm_format; else + /* if (!strcmp(format, "base")) kpse_file_format = kpse_base_format; else */ + /* if (!strcmp(format, "bib")) kpse_file_format = kpse_bib_format; else */ + /* if (!strcmp(format, "bst")) kpse_file_format = kpse_bst_format; else */ + /* if (!strcmp(format, "cnf")) kpse_file_format = kpse_cnf_format; else */ + /* if (!strcmp(format, "ls-R")) kpse_file_format = kpse_db_format; else */ + /* if (!strcmp(format, "fmt")) kpse_file_format = kpse_fmt_format; else */ + if (!strcmp(format, "map")) kpse_file_format = kpse_fontmap_format; else + /* if (!strcmp(format, "mem")) kpse_file_format = kpse_mem_format; else */ + /* if (!strcmp(format, "mf")) kpse_file_format = kpse_mf_format; else */ + /* if (!strcmp(format, "mfpool")) kpse_file_format = kpse_mfpool_format; else */ + /* if (!strcmp(format, "mft")) kpse_file_format = kpse_mft_format; else */ + /* if (!strcmp(format, "mp")) kpse_file_format = kpse_mp_format; else */ + /* if (!strcmp(format, "mppool")) kpse_file_format = kpse_mppool_format; else */ + /* if (!strcmp(format, "MetaPost support")) kpse_file_format = kpse_mpsupport_format; else */ + /* if (!strcmp(format, "ocp")) kpse_file_format = kpse_ocp_format; else */ + /* if (!strcmp(format, "ofm")) kpse_file_format = kpse_ofm_format; else */ + /* if (!strcmp(format, "opl")) kpse_file_format = kpse_opl_format; else */ + /* if (!strcmp(format, "otp")) kpse_file_format = kpse_otp_format; else */ + /* if (!strcmp(format, "ovf")) kpse_file_format = kpse_ovf_format; else */ + /* if (!strcmp(format, "ovp")) kpse_file_format = kpse_ovp_format; else */ + if (!strcmp(format, "graphics/figure")) kpse_file_format = kpse_pict_format; else + /* if (!strcmp(format, "tex")) kpse_file_format = kpse_tex_format; else */ + /* if (!strcmp(format, "TeX system documentation")) kpse_file_format = kpse_texdoc_format; else */ + /* if (!strcmp(format, "texpool")) kpse_file_format = kpse_texpool_format; else */ + /* if (!strcmp(format, "TeX system sources")) kpse_file_format = kpse_texsource_format; else */ + if (!strcmp(format, "PostScript header")) kpse_file_format = kpse_tex_ps_header_format; else + /* if (!strcmp(format, "Troff fonts")) kpse_file_format = kpse_troff_font_format; else */ + if (!strcmp(format, "type1 fonts")) kpse_file_format = kpse_type1_format; else + if (!strcmp(format, "vf")) kpse_file_format = kpse_vf_format; else + if (!strcmp(format, "dvips config")) kpse_file_format = kpse_dvips_config_format; else + /* if (!strcmp(format, "ist")) kpse_file_format = kpse_ist_format; else */ + /* if (!strcmp(format, "truetype fonts")) kpse_file_format = kpse_truetype_format; else */ + /* if (!strcmp(format, "type42 fonts")) kpse_file_format = kpse_type42_format; else */ + /* if (!strcmp(format, "web2c files")) kpse_file_format = kpse_web2c_format; else */ + /* if (!strcmp(format, "other text files")) kpse_file_format = kpse_program_text_format; else */ + /* if (!strcmp(format, "other binary files")) kpse_file_format = kpse_program_binary_format; else */ + /* if (!strcmp(format, "misc fonts")) kpse_file_format = kpse_miscfonts_format; else */ + return NULL; + + completefilename = kpse_find_file(filename, kpse_file_format, 1); + returnvalue = Py_BuildValue("s", completefilename); + /* XXX: free(completefilename); */ + return returnvalue; + } + + return NULL; + +} + +/* exported methods */ + +static PyMethodDef pykpathsea_methods[] = { + {"find_file", py_kpse_find_file, METH_VARARGS}, + {NULL, NULL} +}; + +#define AddFormat(key, value) PyDict_SetItemString(format, PyString_FromString(key), PyInt_FromLong(value)) + +void initpykpathsea(void) +{ + Py_InitModule("pykpathsea", pykpathsea_methods); + kpse_set_program_name("dvips", "dvips"); +} diff --git a/pyx/pykpathsea/__init__.py b/pyx/pykpathsea/__init__.py deleted file mode 100644 index 6a9c0eee..00000000 --- a/pyx/pykpathsea/__init__.py +++ /dev/null @@ -1,77 +0,0 @@ -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2003-2004 Jörg Lehmann -# Copyright (C) 2003-2004 André Wobst -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - - -try: - from _pykpathsea import * -except: - import os - find_file_cache = {} - def find_file(filename, kpse_file_format): - command = 'kpsewhich --format="%s" %s' % (kpse_file_format, filename) - if not find_file_cache.has_key(command): - find_file_cache[command] = os.popen(command, "r").readline().strip() - return find_file_cache[command] - kpse_gf_format = "gf" - kpse_pk_format = "pk" - kpse_any_glyph_format = "bitmap font" - kpse_tfm_format = "tfm" - kpse_afm_format = "afm" - kpse_base_format = "base" - kpse_bib_format = "bib" - kpse_bst_format = "bst" - kpse_cnf_format = "cnf" - kpse_db_format = "ls-R" - kpse_fmt_format = "fmt" - kpse_fontmap_format = "map" - kpse_mem_format = "mem" - kpse_mf_format = "mf" - kpse_mfpool_format = "mfpool" - kpse_mft_format = "mft" - kpse_mp_format = "mp" - kpse_mppool_format = "mppool" - kpse_mpsupport_format = "MetaPost support" - kpse_ocp_format = "ocp" - kpse_ofm_format = "ofm" - kpse_opl_format = "opl" - kpse_otp_format = "otp" - kpse_ovf_format = "ovf" - kpse_ovp_format = "ovp" - kpse_pict_format = "graphics/figure" - kpse_tex_format = "tex" - kpse_texdoc_format = "TeX system documentation" - kpse_texpool_format = "texpool" - kpse_texsource_format = "TeX system sources" - kpse_tex_ps_header_format = "PostScript header" - kpse_troff_font_format = "Troff fonts" - kpse_type1_format = "type1 fonts" - kpse_vf_format = "vf" - kpse_dvips_config_format = "dvips config" - kpse_ist_format = "ist" - kpse_truetype_format = "truetype fonts" - kpse_type42_format = "type42 fonts" - kpse_web2c_format = "web2c" - kpse_program_text_format = "other text files" - kpse_program_binary_format = "other binary files" - kpse_miscfonts_format = "misc fonts" - kpse_web_format = "web" - kpse_cweb_format = "cweb" diff --git a/pyx/pykpathsea/pykpathsea.c b/pyx/pykpathsea/pykpathsea.c deleted file mode 100644 index 02c8a493..00000000 --- a/pyx/pykpathsea/pykpathsea.c +++ /dev/null @@ -1,104 +0,0 @@ -/* pykpathsea.c: Copyright 2003 Jörg Lehmann, André Wobst - * - * 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. - */ - -#include -#include -#include - -static PyObject *py_kpse_find_file(PyObject *self, PyObject *args) -{ - char *filename; - int kpse_file_format; - char *completefilename; - PyObject *returnvalue; - - if (PyArg_ParseTuple(args, "si", &filename, &kpse_file_format)) { - completefilename = kpse_find_file(filename, (kpse_file_format_type) kpse_file_format, 1); - - returnvalue = Py_BuildValue("s", completefilename); - /* XXX: free(completefilename); */ - return returnvalue; - } - - return NULL; - -} - -/* exported methods */ - -static PyMethodDef pykpathsea_methods[] = { - {"find_file", py_kpse_find_file, METH_VARARGS}, - {NULL, NULL} -}; - -#define AddInt(x) PyDict_SetItemString(dict, #x, PyInt_FromLong(x)) - -void init_pykpathsea(void) -{ - PyObject *module = Py_InitModule("_pykpathsea", pykpathsea_methods); - PyObject *dict = PyModule_GetDict(module); - kpse_set_program_name("dvips", "dvips"); - - AddInt(kpse_gf_format); - AddInt(kpse_pk_format); - AddInt(kpse_any_glyph_format); - AddInt(kpse_tfm_format); - AddInt(kpse_afm_format); - AddInt(kpse_base_format); - AddInt(kpse_bib_format); - AddInt(kpse_bst_format); - AddInt(kpse_cnf_format); - AddInt(kpse_db_format); - AddInt(kpse_fmt_format); - AddInt(kpse_fontmap_format); - AddInt(kpse_mem_format); - AddInt(kpse_mf_format); - AddInt(kpse_mfpool_format); - AddInt(kpse_mft_format); - AddInt(kpse_mp_format); - AddInt(kpse_mppool_format); - AddInt(kpse_mpsupport_format); - AddInt(kpse_ocp_format); - AddInt(kpse_ofm_format); - AddInt(kpse_opl_format); - AddInt(kpse_otp_format); - AddInt(kpse_ovf_format); - AddInt(kpse_ovp_format); - AddInt(kpse_pict_format); - AddInt(kpse_tex_format); - AddInt(kpse_texdoc_format); - AddInt(kpse_texpool_format); - AddInt(kpse_texsource_format); - AddInt(kpse_tex_ps_header_format); - AddInt(kpse_troff_font_format); - AddInt(kpse_type1_format); - AddInt(kpse_vf_format); - AddInt(kpse_dvips_config_format); - AddInt(kpse_ist_format); - AddInt(kpse_truetype_format); - AddInt(kpse_type42_format); - AddInt(kpse_web2c_format); - AddInt(kpse_program_text_format); - AddInt(kpse_program_binary_format); - AddInt(kpse_miscfonts_format); - /* - AddInt(kpse_web_format); - AddInt(kpse_cweb_format); - */ - -} diff --git a/pyx/reader.py b/pyx/reader.py new file mode 100644 index 00000000..2376b8db --- /dev/null +++ b/pyx/reader.py @@ -0,0 +1,158 @@ +# -*- encoding: utf-8 -*- +# +# +# Copyright (C) 2007-2011 Jörg Lehmann +# Copyright (C) 2007-2011 André Wobst +# +# This file is part of PyX (http://pyx.sourceforge.net/). +# +# PyX 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. +# +# PyX 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 PyX; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + +import cStringIO, struct + + +class reader: + + def __init__(self, filename): + self.file = open(filename, "rb") + + def close(self): + self.file.close() + + def tell(self): + return self.file.tell() + + def eof(self): + return self.file.eof() + + def read(self, bytes): + return self.file.read(bytes) + + def readint(self, bytes=4, signed=0): + first = 1 + result = 0 + while bytes: + value = ord(self.file.read(1)) + if first and signed and value > 127: + value -= 256 + first = 0 + result = 256 * result + value + bytes -= 1 + return result + + def readint32(self): + return struct.unpack(">l", self.file.read(4))[0] + + def readuint32(self): + return struct.unpack(">L", self.file.read(4))[0] + + def readint24(self): + # XXX: checkme + return struct.unpack(">l", "\0"+self.file.read(3))[0] + + def readuint24(self): + # XXX: checkme + return struct.unpack(">L", "\0"+self.file.read(3))[0] + + def readint16(self): + return struct.unpack(">h", self.file.read(2))[0] + + def readuint16(self): + return struct.unpack(">H", self.file.read(2))[0] + + def readchar(self): + return struct.unpack("b", self.file.read(1))[0] + + def readuchar(self): + return struct.unpack("B", self.file.read(1))[0] + + def readstring(self, bytes): + l = self.readuchar() + assert l <= bytes-1, "inconsistency in file: string too long" + return self.file.read(bytes-1)[:l] + + + +class stringreader(reader): + + def __init__(self, s): + self.file = cStringIO.StringIO(s) + + +class PStokenizer: + """cursor to read a string token by token""" + + def __init__(self, data, startstring=None, eattokensep=1, tokenseps=" \t\r\n", tokenstarts="()<>[]{}/%"): + """creates a cursor for the string data + + startstring is a string at which the cursor should start at. The first + ocurance of startstring is used. When startstring is not in data, an + exception is raised, otherwise the cursor is set to the position right + after the startstring. When eattokenseps is set, startstring must be + followed by a tokensep and this first tokensep is also consumed. + tokenseps is a string containing characters to be used as token + separators. tokenstarts is a string containing characters which + directly (even without intermediate token separator) start a new token. + """ + self.data = data + if startstring is not None: + self.pos = self.data.index(startstring) + len(startstring) + else: + self.pos = 0 + self.tokenseps = tokenseps + self.tokenstarts = tokenstarts + if eattokensep: + if self.data[self.pos] not in self.tokenstarts: + if self.data[self.pos] not in self.tokenseps: + raise ValueError("cursor initialization string is not followed by a token separator") + self.pos += 1 + + def gettoken(self): + """get the next token + + Leading token separators and comments are silently consumed. The first token + separator after the token is also silently consumed.""" + while self.data[self.pos] in self.tokenseps: + self.pos += 1 + # ignore comments including subsequent whitespace characters + while self.data[self.pos] == "%": + while self.data[self.pos] not in "\r\n": + self.pos += 1 + while self.data[self.pos] in self.tokenseps: + self.pos += 1 + startpos = self.pos + while self.data[self.pos] not in self.tokenseps: + # any character in self.tokenstarts ends the token + if self.pos>startpos and self.data[self.pos] in self.tokenstarts: + break + self.pos += 1 + result = self.data[startpos:self.pos] + if self.data[self.pos] in self.tokenseps: + self.pos += 1 # consume a single tokensep + return result + + def getint(self): + """get the next token as an integer""" + return int(self.gettoken()) + + def getbytes(self, count): + """get the next count bytes""" + startpos = self.pos + self.pos += count + return self.data[startpos: self.pos] + + + diff --git a/pyx/siteconfig.py b/pyx/siteconfig.py deleted file mode 100644 index fb8a879e..00000000 --- a/pyx/siteconfig.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2004-2005 André Wobst -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -# This file configures PyX search paths relative to the current -# position, e.g. for local usage. When installing PyX via distutils -# the contents of this file is not copied to the PyX installation. -# Instead the correct information about the paths from the installation -# process are used. -# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - -import os - -lfsdir = os.path.join(os.path.dirname(__file__), "lfs") -sharedir = os.path.join(os.path.dirname(__file__), "..", "contrib") -pyxrcdir = os.path.join(os.path.dirname(__file__), "..") - diff --git a/pyx/style.py b/pyx/style.py index 1b036573..b862c464 100644 --- a/pyx/style.py +++ b/pyx/style.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2003-2004,2006 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2003-2006 Michael Schindler +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -22,15 +22,20 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA import math -import attr, unit, canvas +import attr, unit, canvasitem +import bbox as bboxmodule # # base classes for stroke and fill styles # -class strokestyle(canvas.canvasitem): pass +class strokestyle(canvasitem.canvasitem): + def bbox(self): + return bboxmodule.empty() -class fillstyle(canvas.canvasitem): pass +class fillstyle(canvasitem.canvasitem): + def bbox(self): + return bboxmodule.empty() # # common stroke styles @@ -188,3 +193,22 @@ linewidth.THIck = linewidth(_defaultlinewidth*math.sqrt(16)) linewidth.THICk = linewidth(_defaultlinewidth*math.sqrt(32)) linewidth.THICK = linewidth(_defaultlinewidth*math.sqrt(64)) linewidth.clear = attr.clearclass(linewidth) + + +class fillrule(attr.exclusiveattr): + + """defines the fill rule to be used""" + + def __init__(self, even_odd): + attr.exclusiveattr.__init__(self, fillrule) + self.even_odd = even_odd + + def processPS(self, file, writer, context, registry, bbox): + pass + + def processPDF(self, file, writer, context, registry, bbox): + pass + +fillrule.nonzero_winding = fillrule(0) +fillrule.even_odd = fillrule(1) +fillrule.clear = attr.clearclass(fillrule) diff --git a/pyx/text.py b/pyx/text.py index 8e51a695..516c475a 100644 --- a/pyx/text.py +++ b/pyx/text.py @@ -1,9 +1,9 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann -# Copyright (C) 2003-2007 Michael Schindler -# Copyright (C) 2002-2006 André Wobst +# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2003-2011 Michael Schindler +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,10 +21,21 @@ # along with PyX; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -import glob, os, threading, Queue, re, tempfile, atexit, time, warnings -import config, siteconfig, unit, box, canvas, trafo, version, attr, style, dvifile +import errno, glob, os, threading, Queue, re, tempfile, atexit, time, warnings +import config, unit, box, canvas, trafo, version, attr, style, filelocator +from pyx.dvi import dvifile import bbox as bboxmodule +try: + import subprocess +except ImportError: + have_subprocess = False +else: + have_subprocess = True + +class PyXTeXWarning(UserWarning): pass +warnings.filterwarnings('always', category=PyXTeXWarning) + ############################################################################### # texmessages # - please don't get confused: @@ -100,12 +111,6 @@ class _texmessagestart(texmessage): raise TexResultError("TeX startup failed", texrunner) texrunner.texmessageparsed = texrunner.texmessageparsed[m.end():] - # check for filename to be processed - try: - texrunner.texmessageparsed = texrunner.texmessageparsed.split("%s.tex" % texrunner.texfilename, 1)[1] - except (IndexError, ValueError): - raise TexResultError("TeX running startup file failed", texrunner) - # check for \raiseerror -- just to be sure that communication works try: texrunner.texmessageparsed = texrunner.texmessageparsed.split("*! Undefined control sequence.\n<*> \\raiseerror\n %\n", 1)[1] @@ -182,23 +187,17 @@ class _texmessageend(texmessage): __implements__ = _Itexmessage + auxPattern = re.compile(r"\(([^()]+\.aux|\"[^\"]+\.aux\")\)") + def check(self, texrunner): - try: - s1, s2 = texrunner.texmessageparsed.split("(%s.aux)" % texrunner.texfilename, 1) - texrunner.texmessageparsed = s1 + s2 - except (IndexError, ValueError): - try: - s1, s2 = texrunner.texmessageparsed.split("(%s%s%s.aux)" % (os.curdir, - os.sep, - texrunner.texfilename), 1) - texrunner.texmessageparsed = s1 + s2 - except (IndexError, ValueError): - pass + m = self.auxPattern.search(texrunner.texmessageparsed) + if m: + texrunner.texmessageparsed = (texrunner.texmessageparsed[:m.start()] + texrunner.texmessageparsed[m.end():]).strip() # check for "(see the transcript file for additional information)" try: s1, s2 = texrunner.texmessageparsed.split("(see the transcript file for additional information)", 1) - texrunner.texmessageparsed = s1 + s2 + texrunner.texmessageparsed = (s1 + s2).strip() except (IndexError, ValueError): pass @@ -250,35 +249,47 @@ class _texmessageload(texmessage): __implements__ = _Itexmessage - pattern = re.compile(r"\([\"]?(?P(?:(?[^()]*)\)") + pattern = re.compile(r"\([\"]?(?P(?:(?[^()]*)\)") - def baselevels(self, s, maxlevel=1, brackets="()"): + def baselevels(self, s, maxlevel=1, brackets="()", quotes='""'): """strip parts of a string above a given bracket level - return a modified (some parts might be removed) version of the string s where all parts inside brackets with level higher than maxlevel are removed - if brackets do not match (number of left and right brackets is wrong or at some points there were more right brackets than left brackets) - just return the unmodified string""" + just return the unmodified string + - a quoted string immediately followed after a bracket is left untouched + even if it contains quotes itself""" level = 0 highestlevel = 0 + inquote = 0 res = "" - for c in s: - if c == brackets[0]: - level += 1 - if level > highestlevel: - highestlevel = level - if level <= maxlevel: + for i, c in enumerate(s): + if quotes and level <= maxlevel: + if not inquote and c == quotes[0] and i and s[i-1] == brackets[0]: + inquote = 1 + elif inquote and c == quotes[1]: + inquote = 0 + if inquote: res += c - if c == brackets[1]: - level -= 1 + else: + if c == brackets[0]: + level += 1 + if level > highestlevel: + highestlevel = level + if level <= maxlevel: + res += c + if c == brackets[1]: + level -= 1 if level == 0 and highestlevel > 0: return res def check(self, texrunner): - lowestbracketlevel = self.baselevels(texrunner.texmessageparsed) - if lowestbracketlevel is not None: - m = self.pattern.search(lowestbracketlevel) + search = self.baselevels(texrunner.texmessageparsed) + res = [] + if search is not None: + m = self.pattern.search(search) while m: filename = m.group("filename").replace("\n", "") try: @@ -287,20 +298,23 @@ class _texmessageload(texmessage): additional = "" if (os.access(filename, os.R_OK) or len(additional) and additional[0] == "\n" and os.access(filename+additional.split()[0], os.R_OK)): - lowestbracketlevel = lowestbracketlevel[:m.start()] + lowestbracketlevel[m.end():] + res.append(search[:m.start()]) else: - break - m = self.pattern.search(lowestbracketlevel) + res.append(search[:m.end()]) + search = search[m.end():] + m = self.pattern.search(search) else: - texrunner.texmessageparsed = lowestbracketlevel + res.append(search) + texrunner.texmessageparsed = "".join(res) class _texmessageloaddef(_texmessageload): """validates the inclusion of font description files (fd-files) - works like _texmessageload - - filename must end with .def or .fd and no further text is allowed""" + - filename must end with .def or .fd + - further text is allowed""" - pattern = re.compile(r"\((?P[^)]+(\.fd|\.def))\)") + pattern = re.compile(r"\([\"]?(?P(?:(?:(?[\(]?[^\(\)]*[\)]?)[\s\n]*\)") def baselevels(self, s, **kwargs): return s @@ -375,6 +389,8 @@ class texmessagepattern(texmessage): texmessage.fontwarning = texmessagepattern(re.compile(r"^LaTeX Font Warning: .*$(\n^\(Font\).*$)*", re.MULTILINE), "ignoring font warning") texmessage.boxwarning = texmessagepattern(re.compile(r"^(Overfull|Underfull) \\[hv]box.*$(\n^..*$)*\n^$\n", re.MULTILINE), "ignoring overfull/underfull box warning") texmessage.rerunwarning = texmessagepattern(re.compile(r"^(LaTeX Warning: Label\(s\) may have changed\. Rerun to get cross-references right\s*\.)$", re.MULTILINE), "ignoring rerun warning") +texmessage.packagewarning = texmessagepattern(re.compile(r"^package\s+(?P\S+)\s+warning\s*:[^\n]+(?:\n\(?(?P=packagename)\)?[^\n]*)*", re.MULTILINE | re.IGNORECASE), "ignoring generic package warning") +texmessage.nobblwarning = texmessagepattern(re.compile(r"^[\s\*]*(No file .*\.bbl.)\s*", re.MULTILINE), "ignoring no-bbl warning") @@ -620,11 +636,18 @@ class _readpipe(threading.Thread): self.gotqueue = gotqueue self.quitevent = quitevent self.expect = None - self.start() def run(self): """thread routine""" - read = self.pipe.readline() # read, what comes in + def _read(): + # catch interupted system call errors while reading + while 1: + try: + return self.pipe.readline() + except IOError, e: + if e.errno != errno.EINTR: + raise + read = _read() # read, what comes in try: self.expect = self.expectqueue.get_nowait() # read, what should be expected except Queue.Empty: @@ -636,7 +659,7 @@ class _readpipe(threading.Thread): self.gotqueue.put(read) # report, whats read if self.expect is not None and read.find(self.expect) != -1: self.gotevent.set() # raise the got event, when the output was expected (XXX: within a single line) - read = self.pipe.readline() # read again + read = _read() # read again try: self.expect = self.expectqueue.get_nowait() except Queue.Empty: @@ -730,7 +753,7 @@ def _cleantmp(texrunner): os.rename(texrunner.texfilename + usefile[extpos:], usefile) except OSError: pass - for file in glob.glob("%s.*" % texrunner.texfilename): + for file in glob.glob("%s.*" % texrunner.texfilename) + ["%sNotes.bib" % texrunner.texfilename]: try: os.unlink(file) except OSError: @@ -762,17 +785,16 @@ class texrunner: defaulttexmessagesstart = [texmessage.start] defaulttexmessagesdocclass = [texmessage.load] defaulttexmessagesbegindoc = [texmessage.load, texmessage.noaux] - defaulttexmessagesend = [texmessage.end, texmessage.fontwarning, texmessage.rerunwarning] + defaulttexmessagesend = [texmessage.end, texmessage.fontwarning, texmessage.rerunwarning, texmessage.nobblwarning] defaulttexmessagesdefaultpreamble = [texmessage.load] defaulttexmessagesdefaultrun = [texmessage.loaddef, texmessage.graphicsload, - texmessage.fontwarning, texmessage.boxwarning] + texmessage.fontwarning, texmessage.boxwarning, texmessage.packagewarning] def __init__(self, mode="tex", lfs="10pt", docclass="article", docopt=None, usefiles=[], - fontmaps=config.get("text", "fontmaps", "psfonts.map"), waitfortex=config.getint("text", "waitfortex", 60), showwaitfortex=config.getint("text", "showwaitfortex", 5), texipc=config.getboolean("text", "texipc", 0), @@ -794,7 +816,6 @@ class texrunner: self.docclass = docclass self.docopt = docopt self.usefiles = usefiles[:] - self.fontmaps = fontmaps self.waitfortex = waitfortex self.showwaitfortex = showwaitfortex self.texipc = texipc @@ -847,9 +868,9 @@ class texrunner: hasevent = event.isSet() if not hasevent: if waited < self.waitfortex: - warnings.warn("still waiting for %s after %i (of %i) seconds..." % (self.mode, waited, self.waitfortex)) + warnings.warn("still waiting for %s after %i (of %i) seconds..." % (self.mode, waited, self.waitfortex), PyXTeXWarning) else: - warnings.warn("the timeout of %i seconds expired and %s did not respond." % (waited, self.mode)) + warnings.warn("the timeout of %i seconds expired and %s did not respond." % (waited, self.mode), PyXTeXWarning) return hasevent else: event.wait(self.waitfortex) @@ -884,11 +905,16 @@ class texrunner: ipcflag = " --ipc" else: ipcflag = "" - try: - self.texinput, self.texoutput = os.popen4("%s%s %s" % (self.mode, ipcflag, self.texfilename), "t", 0) - except ValueError: - # XXX: workaround for MS Windows (bufsize = 0 makes trouble!?) - self.texinput, self.texoutput = os.popen4("%s%s %s" % (self.mode, ipcflag, self.texfilename), "t") + if have_subprocess: + p = subprocess.Popen("%s%s %s" % (self.mode, ipcflag, self.texfilename), shell=True, bufsize=0, + stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True) + self.texinput, self.texoutput = p.stdin, p.stdout + else: + try: + self.texinput, self.texoutput = os.popen4("%s%s %s" % (self.mode, ipcflag, self.texfilename), "t", 0) + except ValueError: + # XXX: workaround for MS Windows (bufsize = 0 makes trouble!?) + self.texinput, self.texoutput = os.popen4("%s%s %s" % (self.mode, ipcflag, self.texfilename), "t") atexit.register(_cleantmp, self) self.expectqueue = Queue.Queue(1) # allow for a single entry only -> keeps the next InputMarker to be wait for self.gotevent = threading.Event() # keeps the got inputmarker event @@ -896,9 +922,9 @@ class texrunner: self.quitevent = threading.Event() # keeps for end of terminal event self.readoutput = _readpipe(self.texoutput, self.expectqueue, self.gotevent, self.gotqueue, self.quitevent) self.texruns = 1 - self.fontmap = dvifile.readfontmap(self.fontmaps.split()) oldpreamblemode = self.preamblemode self.preamblemode = 1 + self.readoutput.start() self.execute("\\scrollmode\n\\raiseerror%\n" # switch to and check scrollmode "\\def\\PyX{P\\kern-.3em\\lower.5ex\hbox{Y}\kern-.18em X}%\n" # just the PyX Logo "\\gdef\\PyXBoxHAlign{0}%\n" # global PyXBoxHAlign (0.0-1.0) for the horizontal alignment, default to 0 @@ -927,54 +953,27 @@ class texrunner: os.remove("%s.tex" % self.texfilename) if self.mode == "tex": if self.lfs: - lfserror = None - if len(self.lfs) > 4 and self.lfs[-4:] == ".lfs": - lfsname = self.lfs - else: - lfsname = "%s.lfs" % self.lfs - for fulllfsname in [lfsname, - os.path.join(siteconfig.lfsdir, lfsname)]: - try: - lfsfile = open(fulllfsname, "r") - lfsdef = lfsfile.read() - lfsfile.close() - break - except IOError: - pass - else: - lfserror = "File '%s' is not available or not readable. " % lfsname - else: - lfserror = "" - if lfserror is not None: - allfiles = (glob.glob("*.lfs") + - glob.glob(os.path.join(siteconfig.lfsdir, "*.lfs"))) - lfsnames = [] - for f in allfiles: - try: - open(f, "r").close() - lfsnames.append(os.path.basename(f)[:-4]) - except IOError: - pass - lfsnames.sort() - if len(lfsnames): - raise IOError("%sAvailable LaTeX font size files (*.lfs): %s" % (lfserror, lfsnames)) - else: - raise IOError("%sNo LaTeX font size files (*.lfs) available. Check your installation." % lfserror) - self.execute(lfsdef, []) - self.execute("\\normalsize%\n", []) + if not self.lfs.endswith(".lfs"): + self.lfs = "%s.lfs" % self.lfs + lfsfile = filelocator.open(self.lfs, [], "r") + lfsdef = lfsfile.read() + lfsfile.close() + self.execute(lfsdef, []) + self.execute("\\normalsize%\n", []) self.execute("\\newdimen\\linewidth\\newdimen\\textwidth%\n", []) elif self.mode == "latex": if self.pyxgraphics: - pyxdef = os.path.join(siteconfig.sharedir, "pyx.def") - try: - open(pyxdef, "r").close() - except IOError: - IOError("file 'pyx.def' is not available or not readable. Check your installation or turn off the pyxgraphics option.") - pyxdef = os.path.abspath(pyxdef).replace(os.sep, "/") + pyxdef = filelocator.open("pyx.def", [], "rb") + pyxdef_filename = self.texfilename + ".pyxdef" + pyxdef_file = open(pyxdef_filename, "wb") + pyxdef_file.write(pyxdef.read()) + pyxdef.close() + pyxdef_file.close() + pyxdef_filename_tex = os.path.abspath(pyxdef_filename).replace(os.sep, "/") self.execute("\\makeatletter%\n" "\\let\\saveProcessOptions=\\ProcessOptions%\n" "\\def\\ProcessOptions{%\n" - "\\def\\Gin@driver{" + pyxdef + "}%\n" + "\\def\\Gin@driver{" + pyxdef_filename_tex + "}%\n" "\\def\\c@lor@namefile{dvipsnam.def}%\n" "\\saveProcessOptions}%\n" "\\makeatother", @@ -1044,10 +1043,10 @@ class texrunner: self.execute(None, self.defaulttexmessagesend + self.texmessagesend) dvifilename = "%s.dvi" % self.texfilename if not self.texipc: - self.dvifile = dvifile.dvifile(dvifilename, self.fontmap, debug=self.dvidebug) + self.dvifile = dvifile.DVIfile(dvifilename, debug=self.dvidebug) page = 1 for box in self.needdvitextboxes: - box.setdvicanvas(self.dvifile.readpage([ord("P"), ord("y"), ord("X"), page, 0, 0, 0, 0, 0, 0])) + box.setdvicanvas(self.dvifile.readpage([ord("P"), ord("y"), ord("X"), page, 0, 0, 0, 0, 0, 0], fontmap=box.fontmap)) page += 1 if not ignoretail and self.dvifile.readpage(None) is not None: raise RuntimeError("end of dvifile expected") @@ -1079,7 +1078,6 @@ class texrunner: docclass=_unset, docopt=_unset, usefiles=_unset, - fontmaps=_unset, waitfortex=_unset, showwaitfortex=_unset, texipc=_unset, @@ -1112,8 +1110,6 @@ class texrunner: self.docopt = docopt if usefiles is not _unset: self.usefiles = usefiles - if fontmaps is not _unset: - self.fontmaps = fontmaps if waitfortex is not _unset: self.waitfortex = waitfortex if showwaitfortex is not _unset: @@ -1167,7 +1163,7 @@ class texrunner: PyXBoxPattern = re.compile(r"PyXBox:page=(?P\d+),lt=(?P-?\d*((\d\.?)|(\.?\d))\d*)pt,rt=(?P-?\d*((\d\.?)|(\.?\d))\d*)pt,ht=(?P-?\d*((\d\.?)|(\.?\d))\d*)pt,dp=(?P-?\d*((\d\.?)|(\.?\d))\d*)pt:") - def text(self, x, y, expr, textattrs=[], texmessages=[]): + def text(self, x, y, expr, textattrs=[], texmessages=[], fontmap=None): """create text by passing expr to TeX/LaTeX - returns a textbox containing the result from running expr thru TeX/LaTeX - the box center is set to x, y @@ -1197,12 +1193,16 @@ class texrunner: expr = textattrs[lentextattrs-1-i].apply(expr) try: self.execute(expr, self.defaulttexmessagesdefaultrun + self.texmessagesdefaultrun + texmessages) - except TexResultError: - self.finishdvi(ignoretail=1) - raise + except TexResultError, e: + warnings.warn("We try to finish the dvi due to an unhandled tex error", PyXTeXWarning) + try: + self.finishdvi(ignoretail=1) + except TexResultError: + pass + raise e if self.texipc: if first: - self.dvifile = dvifile.dvifile("%s.dvi" % self.texfilename, self.fontmap, debug=self.dvidebug) + self.dvifile = dvifile.DVIfile("%s.dvi" % self.texfilename, debug=self.dvidebug) match = self.PyXBoxPattern.search(self.texmessage) if not match or int(match.group("page")) != self.page: raise TexResultError("box extents not found", self) @@ -1213,8 +1213,9 @@ class texrunner: # this is quite different from what we do elsewhere!!! # see https://sourceforge.net/mailarchive/forum.php?thread_id=9137692&forum_id=23700 if self.texipc: - box.setdvicanvas(self.dvifile.readpage([ord("P"), ord("y"), ord("X"), self.page, 0, 0, 0, 0, 0, 0])) + box.setdvicanvas(self.dvifile.readpage([ord("P"), ord("y"), ord("X"), self.page, 0, 0, 0, 0, 0, 0], fontmap=fontmap)) else: + box.fontmap = fontmap self.needdvitextboxes.append(box) return box @@ -1263,7 +1264,7 @@ class texrunner: "\\vfill\\supereject%%\n" % text, [texmessage.ignore]) if self.texipc: if self.dvifile is None: - self.dvifile = dvifile.dvifile("%s.dvi" % self.texfilename, self.fontmap, debug=self.dvidebug) + self.dvifile = dvifile.DVIfile("%s.dvi" % self.texfilename, debug=self.dvidebug) else: raise RuntimeError("textboxes currently needs texipc") lastparnos = parnos diff --git a/pyx/trafo.py b/pyx/trafo.py index b9509502..d4b605b0 100644 --- a/pyx/trafo.py +++ b/pyx/trafo.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2006 Jörg Lehmann -# Copyright (C) 2002-2004 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,7 +21,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA import math -import attr, canvas, deformer, unit +import attr, canvasitem, deformer, unit import bbox as bboxmodule # global epsilon (used to judge whether a matrix is singular) @@ -65,7 +65,7 @@ class TrafoException(Exception): # trafo: affine transformations -class trafo_pt(canvas.canvasitem, deformer.deformer): +class trafo_pt(canvasitem.canvasitem, deformer.deformer): """affine transformation (coordinates in constructor in pts) diff --git a/pyx/type1font.py b/pyx/type1font.py deleted file mode 100644 index bdf86ca3..00000000 --- a/pyx/type1font.py +++ /dev/null @@ -1,186 +0,0 @@ -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2005-2006 Jörg Lehmann -# Copyright (C) 2005-2006 André Wobst -# Copyright (C) 2007 Michael Schindler -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -import bbox, canvas, pswriter, pdfwriter - -try: - enumerate([]) -except NameError: - # fallback implementation for Python 2.2 and below - def enumerate(list): - return zip(xrange(len(list)), list) - - -class encoding: - - def __init__(self, name, filename): - """ font encoding contained in filename """ - self.name = name - self.filename = filename - - -class encodingfile: - - def __init__(self, name, filename): - # XXX move the cursor to a module of its own - from font.t1font import cursor - self.name = name - encfile = open(filename, "r") - c = cursor(encfile.read(), "") - encfile.close() - - # name of encoding - self.encname = c.gettoken() - token = c.gettoken() - if token != "[": - raise RuntimeError("cannot parse encoding file '%s', expecting '[' got '%s'" % (filename, token)) - self.encvector = [] - for i in range(256): - token = c.gettoken() - if token == "]": - raise RuntimeError("not enough charcodes in encoding file '%s'" % filename) - self.encvector.append(token) - if c.gettoken() != "]": - raise RuntimeError("too many charcodes in encoding file '%s'" % filename) - token = c.gettoken() - if token != "def": - raise RuntimeError("cannot parse encoding file '%s', expecting 'def' got '%s'" % (filename, token)) - - def decode(self, charcode): - return self.encvector[charcode] - - def outputPS(self, file, writer): - file.write("%%%%BeginProcSet: %s\n" % self.name) - file.write("/%s\n" - "[" % self.name) - for i, glyphname in enumerate(self.encvector): - if i and not (i % 8): - file.write("\n") - else: - file.write(" ") - file.write(glyphname) - file.write(" ] def\n" - "%%EndProcSet\n") - - def outputPDF(self, file, writer): - file.write("<<\n" - "/Type /Encoding\n" - "/Differences\n" - "[ 0") - for i, glyphname in enumerate(self.encvector): - if i and not (i % 8): - file.write("\n") - else: - file.write(" ") - file.write(glyphname) - file.write(" ]\n" - ">>\n") - - -class font: - - def __init__(self, basefontname, filename, encoding, slant, metric): - self.basefontname = basefontname - self.filename = filename - self.encoding = encoding - self.slant = slant # None or a float - self.metric = metric - - if encoding is not None and slant is not None: - self.encname = "%s-%s" % (basefontname, encoding.name) - self.name = "%s-slant%f" % (self.encname, self.slant) - elif encoding is not None: - self.name = "%s-%s" % (basefontname, encoding.name) - elif slant is not None: - self.name = "%s-slant%f" % (basefontname, self.slant) - else: - self.name = basefontname - - -class text_pt(canvas.canvasitem): - - def __init__(self, x_pt, y_pt, font): - self.font = font - self.x_pt = x_pt - self.y_pt = y_pt - self.width_pt = 0 - self.height_pt = 0 - self.depth_pt = 0 - self.chars = [] - - def addchar(self, char): - metric = self.font.metric - self.width_pt += metric.getwidth_pt(char) - cheight_pt = metric.getwidth_pt(char) - if cheight_pt > self.height_pt: - self.height_pt = cheight_pt - cdepth_pt = metric.getdepth_pt(char) - if cdepth_pt > self.depth_pt: - self.depth_pt = cdepth_pt - self.chars.append(char) - - def bbox(self): - return bbox.bbox_pt(self.x_pt, self.y_pt-self.depth_pt, self.x_pt+self.width_pt, self.y_pt+self.height_pt) - - def processPS(self, file, writer, context, registry, bbox): - # note that we don't register PSfont as it is just a helper resource - # which registers the needed components - pswriter.PSfont(self.font, self.chars, registry) - bbox += self.bbox() - - if ( context.font is None or - context.font.name != self.font.name or - context.font.metric.getsize_pt() != self.font.metric.getsize_pt() ): - file.write("/%s %f selectfont\n" % (self.font.name, self.font.metric.getsize_pt())) - context.font = self.font - outstring = "" - for char in self.chars: - if char > 32 and char < 127 and chr(char) not in "()[]<>\\": - ascii = "%s" % chr(char) - else: - ascii = "\\%03o" % char - outstring += ascii - file.write("%g %g moveto (%s) show\n" % (self.x_pt, self.y_pt, outstring)) - - def processPDF(self, file, writer, context, registry, bbox): - registry.add(pdfwriter.PDFfont(self.font, self.chars, writer, registry)) - bbox += self.bbox() - - if ( context.font is None or - context.font.name != self.font.name or - context.font.metric.getsize_pt() != self.font.metric.getsize_pt() ): - file.write("/%s %f Tf\n" % (self.font.name, self.font.metric.getsize_pt())) - context.font = self.font - outstring = "" - for char in self.chars: - if 32 <= char <= 127 and chr(char) not in "()[]<>\\": - ascii = "%s" % chr(char) - else: - ascii = "\\%03o" % char - outstring += ascii - if self.font.slant is None: - slantvalue = 0 - else: - slantvalue = self.font.slant - file.write("1 0 %f 1 %f %f Tm (%s) Tj\n" % (slantvalue, self.x_pt, self.y_pt, outstring)) - diff --git a/pyx/unit.py b/pyx/unit.py index 932eaabb..33110237 100644 --- a/pyx/unit.py +++ b/pyx/unit.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2004 Jörg Lehmann -# Copyright (C) 2002-2004 André Wobst +# Copyright (C) 2002-2004 Jörg Lehmann +# Copyright (C) 2002-2004 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # diff --git a/pyx/version.py b/pyx/version.py index 9cf13e3a..eefcc307 100644 --- a/pyx/version.py +++ b/pyx/version.py @@ -1,8 +1,8 @@ -# -*- coding: ISO-8859-1 -*- +# -*- encoding: utf-8 -*- # # -# Copyright (C) 2002-2007 Jörg Lehmann -# Copyright (C) 2002-2007 André Wobst +# Copyright (C) 2002-2011 Jörg Lehmann +# Copyright (C) 2002-2011 André Wobst # # This file is part of PyX (http://pyx.sourceforge.net/). # @@ -21,5 +21,5 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -version = "0.10" -date = "2007/10/03" +version = "0.11" +date = "2011/05/15" diff --git a/pyxrc b/pyxrc deleted file mode 100644 index 6e03b2e8..00000000 --- a/pyxrc +++ /dev/null @@ -1,36 +0,0 @@ -# This file is an example containing the runtime configuration options -# of PyX and its default values. You may adapt this file and copy it -# to /etc/pyxrc for systemwide configuration overwriting the PyX -# defaults. Alternatively you may copy it to ~/.pyxrc for personal -# configuration overwritting both, the PyX defaults and the systemwide -# configuration. - -[text] -# runtime configuration of the text module -# -# 'fontmaps' is a string, namely a whitespace separated list of font -# mapping files. Those files contain information about the available -# type1 fonts. Depending on your TeX-installation you may need to add -# further font mapping files like psfonts.cmz if your TeX installation -# is not configured to use type1 fonts by default. For further -# information browse the FAQ for the term 'font mapping file'. -fontmaps = psfonts.map - -# 'waitfortex' is an positive integer, namely the number of seconds -# to be waited for an appropriate response from TeX/LaTeX. -waitfortex = 60 - -# 'showwaitfortex' is an non-negative integer, namely the number of -# seconds to be waited until (and between) emitting messages -# indicating the waiting for an appropriate response from TeX/LaTeX. -# This feature can be turned off by setting showwaitfortex to 0. -showwaitfortex = 5 - -# 'texipc' is a boolean controlling the usage of the --ipc option of -# TeX/LaTeX. You should turn on this option when the ipc-extension is -# available in your TeX installation (check the output of tex --help). -# You will gain immediate access to the dvi-output of TeX by that, -# which will substantially improve the performance of certain -# operations (e.g. the usage of PyX markers). -texipc = 0 - diff --git a/setup.cfg b/setup.cfg index 9086d398..9044fbcc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,6 +8,9 @@ build_t1code=0 # and library and you may need to specify their location below. build_pykpathsea=0 +# use setuptools instead of distutils +use_setuptools=0 + [build_ext] # additional include and library directories: # insert paths to the libkpathsea headers and library, when building diff --git a/setup.py b/setup.py dissimilarity index 84% index ba70f80d..e50d1320 100755 --- a/setup.py +++ b/setup.py @@ -1,199 +1,68 @@ -#!/usr/bin/env python -# -*- coding: ISO-8859-1 -*- - -"""Python package for the generation of PostScript and PDF files - -PyX is a Python package for the creation of PostScript and PDF files. It -combines an abstraction of the PostScript drawing model with a TeX/LaTeX -interface. Complex tasks like 2d and 3d plots in publication-ready quality are -built out of these primitives. -""" - -try: - from distutils import log -except: - log = None -from distutils.core import setup, Extension -from distutils.util import change_root, convert_path -from distutils.command.build_py import build_py -from distutils.command.install_data import install_data -from distutils.command.install_lib import install_lib -import ConfigParser -import sys, os -import pyx - -# -# build list of extension modules -# - -ext_modules = [] -pykpathsea_ext_module = Extension("pyx.pykpathsea._pykpathsea", - sources=["pyx/pykpathsea/pykpathsea.c"], - libraries=["kpathsea"]) -t1code_ext_module = Extension("pyx.font._t1code", - sources=["pyx/font/_t1code.c"]) - -# obtain information on which modules have to be built from setup.cfg file -cfg = ConfigParser.ConfigParser() -cfg.read("setup.cfg") -if cfg.has_section("PyX"): - if cfg.has_option("PyX", "build_pykpathsea") and cfg.getboolean("PyX", "build_pykpathsea"): - ext_modules.append(pykpathsea_ext_module) - if cfg.has_option("PyX", "build_t1code") and cfg.getboolean("PyX", "build_t1code"): - ext_modules.append(t1code_ext_module) - -################################################################################ -# data files -# - -# share/pyx is taken relative to "setup.py install --home=..." -# whereas /etc is taken relative to "setup.py install --root=..." - -data_files = [] - -# variable names in siteconfig.py for a list of files in data_files -siteconfignames = {} - -def adddatafiles(siteconfigname, dir, files): - """store siteconfigname for files in siteconfignames and add (dir, files) to data_files""" - # convert files to a tuple to make it hashable - files = tuple(files) - data_files.append((dir, files)) - siteconfignames[files] = siteconfigname - -adddatafiles("lfsdir", "share/pyx", ["pyx/lfs/10pt.lfs", - "pyx/lfs/11pt.lfs", - "pyx/lfs/12pt.lfs", - "pyx/lfs/10ptex.lfs", - "pyx/lfs/11ptex.lfs", - "pyx/lfs/12ptex.lfs", - "pyx/lfs/foils17pt.lfs", - "pyx/lfs/foils20pt.lfs", - "pyx/lfs/foils25pt.lfs", - "pyx/lfs/foils30pt.lfs"]) -adddatafiles("sharedir", "share/pyx", ["contrib/pyx.def"]) - -# Note that on windows we can't install to absolute paths. Hence -# we put the global pyxrc into the share directory as well. -adddatafiles("pyxrcdir", os.name != "nt" and "/etc" or "share/pyx", ["pyxrc"]) - -################################################################################ -# extend install commands to overwrite siteconfig.py during build and install -# - - -class pyx_build_py(build_py): - - def build_module(self, module, module_file, package): - if package == "pyx" and module == "siteconfig": - # generate path information as the original build_module does it - outfile = self.get_module_outfile(self.build_lib, [package], module) - outdir = os.path.dirname(outfile) - self.mkpath(outdir) - - if log: - log.info("creating proper %s" % outfile) - - # create the additional relative path parts to be inserted into the - # os.path.join methods in the original siteconfig.py - indir = os.path.dirname(module_file) - addjoinstring = ", ".join(["'..'" for d in outdir.split(os.path.sep)] + - ["'%s'" % d for d in indir.split(os.path.sep)]) - - # write a modifed version of siteconfig.py - fin = open(module_file, "r") - fout = open(outfile, "w") - for line in fin.readlines(): - fout.write(line.replace("os.path.join(os.path.dirname(__file__), ", - "os.path.join(os.path.dirname(__file__), %s, " % addjoinstring)) - fin.close() - fout.close() - else: - return build_py.build_module(self, module, module_file, package) - - -class pyx_install_data(install_data): - - def run(self): - self.siteconfiglines = [] - for dir, files in self.data_files: - # append siteconfiglines by " = " - - # get the install directory - # (the following four lines are copied from within the install_data.run loop) - dir = convert_path(dir) - if not os.path.isabs(dir): - dir = os.path.join(self.install_dir, dir) - elif self.root: - dir = change_root(self.root, dir) - - self.siteconfiglines.append("%s = '%s'\n" % (siteconfignames[files], dir)) - - install_data.run(self) - - -class pyx_install_lib(install_lib): - - def run(self): - # siteconfig.py depends on install_data: - self.run_command('install_data') - install_lib.run(self) - - def install(self): - # first we perform the tree_copy - result = install_lib.install(self) - - # siteconfiglines have been created by install_data - siteconfiglines = self.distribution.command_obj["install_data"].siteconfiglines - - # such that we can easily overwrite siteconfig.py - outfile = os.path.join(self.install_dir, "pyx", "siteconfig.py") - if log: - log.info("creating proper %s" % outfile) - f = open(outfile, "w") - f.writelines(siteconfiglines) - f.close() - - return result - -################################################################################ -# additional package metadata (only available in Python 2.3 and above) -# - -if sys.version_info >= (2, 3): - addargs = { "classifiers": - [ "Development Status :: 3 - Alpha", - "Intended Audience :: Developers", - "Intended Audience :: End Users/Desktop", - "License :: OSI Approved :: GNU General Public License (GPL)", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Topic :: Multimedia :: Graphics", - "Topic :: Scientific/Engineering :: Visualization", - "Topic :: Software Development :: Libraries :: Python Modules" ], - "download_url": - "http://sourceforge.net/project/showfiles.php?group_id=45430", - "platforms": - "OS independent", - } -else: - addargs = {} - -# We're using the module docstring as the distutils descriptions. (seen in Zope3 setup.py) -doclines = __doc__.split("\n") - -setup(name="PyX", - version=pyx.__version__, - author="Jörg Lehmann, André Wobst", - author_email="pyx-devel@lists.sourceforge.net", - url="http://pyx.sourceforge.net/", - description=doclines[0], - long_description="\n".join(doclines[2:]), - license="GPL", - packages=["pyx", "pyx/graph", "pyx/graph/axis", "pyx/font", "pyx/pykpathsea"], - ext_modules=ext_modules, - data_files=data_files, - cmdclass = {"build_py": pyx_build_py, - "install_data": pyx_install_data, - "install_lib": pyx_install_lib}, - **addargs) +#!/usr/bin/env python +# -*- encoding: utf-8 -*- + +"""Python package for the generation of PostScript and PDF files + +PyX is a Python package for the creation of PostScript and PDF files. It +combines an abstraction of the PostScript drawing model with a TeX/LaTeX +interface. Complex tasks like 2d and 3d plots in publication-ready quality are +built out of these primitives.""" + +import ConfigParser +import pyx.version + +setuptools_args={} + +# obtain information on which modules have to be built and whether to use setuptools +# instead of distutils from setup.cfg file +cfg = ConfigParser.ConfigParser() +cfg.read("setup.cfg") +if cfg.has_section("PyX"): + if cfg.has_option("PyX", "build_pykpathsea") and cfg.getboolean("PyX", "build_pykpathsea"): + ext_modules.append(pykpathsea_ext_module) + if cfg.has_option("PyX", "build_t1code") and cfg.getboolean("PyX", "build_t1code"): + ext_modules.append(t1code_ext_module) + if cfg.has_option("PyX", "use_setuptools") and cfg.getboolean("PyX", "use_setuptools"): + from setuptools import setup, Extension + setuptools_args={"zip_safe": True} + else: + from distutils.core import setup, Extension + + +# +# build list of extension modules +# + +ext_modules = [] +pykpathsea_ext_module = Extension("pyx.pykpathsea", + sources=["pyx/pykpathsea.c"], + libraries=["kpathsea"]) +t1code_ext_module = Extension("pyx.font._t1code", + sources=["pyx/font/_t1code.c"]) + + +description, long_description = __doc__.split("\n\n", 1) + +setup(name="PyX", + version=pyx.version.version, + author="Jörg Lehmann, André Wobst", + author_email="pyx-devel@lists.sourceforge.net", + url="http://pyx.sourceforge.net/", + description=description, + long_description=long_description, + license="GPL", + packages=["pyx", "pyx/graph", "pyx/graph/axis", "pyx/font", "pyx/dvi"], + package_data={"pyx": ["data/afm/*", "data/lfs/*", "data/def/*", "data/pyxrc"]}, + ext_modules=ext_modules, + classifiers=["Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Intended Audience :: End Users/Desktop", + "License :: OSI Approved :: GNU General Public License (GPL)", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Multimedia :: Graphics", + "Topic :: Scientific/Engineering :: Visualization", + "Topic :: Software Development :: Libraries :: Python Modules"], + download_url="http://sourceforge.net/project/showfiles.php?group_id=45430", + platforms="OS independent", + **setuptools_args) diff --git a/test/experimental/brace.py b/test/experimental/brace.py deleted file mode 100644 index 438087ec..00000000 --- a/test/experimental/brace.py +++ /dev/null @@ -1,367 +0,0 @@ -#!/usr/bin/env python -# -*- coding: ISO-8859-1 -*- -# -# -# Copyright (C) 2005 Michael Schindler -# -# This file is part of PyX (http://pyx.sourceforge.net/). -# -# PyX 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. -# -# PyX 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 PyX; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - - -import sys; sys.path.insert(0, "../..") -import math -from pyx import * - -# -# contains some nice curly braces -# This code is experimental because it is unclear -# how the brace fits into the concepts of PyX -# -# Some thoughts: -# -# - a brace needs to be decoratable with text -# it needs stroking and filling attributes -# -# - the brace is not really a box: -# it has two "anchor" points that are important for aligning it to other things -# and one "anchor" point (plus direction) for aligning other things -# -# - a brace is not a deformer: -# it does not look at anything else than begin/endpoint of a path -# -# - a brace might be a connector (which is to be dissolved into the box concept later?) -# - -def unit_hypot(l1, l2): - result = unit.length() - l1 = unit.length(l1) - l2 = unit.length(l2) - result.t = math.hypot(l1.t, l2.t) - result.u = math.hypot(l1.u, l2.u) - result.v = math.hypot(l1.v, l2.v) - result.w = math.hypot(l1.w, l2.w) - result.x = math.hypot(l1.x, l2.x) - return result - - -def straightbrace(x0, x1, y0, y1, - totalheight=None, - barthickness=None, innerstrokesthickness=None, outerstrokesthickness=None, - innerstrokesangle=30, outerstrokesangle=30, slantstrokesangle=0, - innerstrokessmoothness=1.0, outerstrokessmoothness=1.0, - middlerelpos=0.5): - - """a straight curly brace (differs from the original brace only via its default parameters)""" - - return brace(x0, x1, y0, y1, - totalheight=totalheight, - barthickness=barthickness, - innerstrokesthickness=innerstrokesthickness, - outerstrokesthickness=outerstrokesthickness, - innerstrokesrelheight=0.5, # this makes the brace straight - outerstrokesrelheight=0.5, # this makes the brace straight - innerstrokesangle=innerstrokesangle, - outerstrokesangle=outerstrokesangle, - slantstrokesangle=slantstrokesangle, - innerstrokessmoothness=innerstrokessmoothness, - outerstrokessmoothness=outerstrokessmoothness, - middlerelpos=middlerelpos) - - -class brace: - - def __init__(self, x0, y0, x1, y1, - totalheight=None, - barthickness=None, innerstrokesthickness=None, outerstrokesthickness=None, - innerstrokesrelheight=0.55, outerstrokesrelheight=0.60, - innerstrokesangle=30, outerstrokesangle=25, slantstrokesangle=5, - innerstrokessmoothness=2.0, outerstrokessmoothness=2.5, - middlerelpos=0.5): - - r"""creates a curly brace - - inner/\strokes - ____________/ \__________ - / bar bar \outer - / \strokes - parameters: - x0, y0 starting point - x1, y1 end point - totalheight distance from the jaws to the middle cap (default: 0.10 * totallength) - barthickness thickness of the main bars (default: 0.05 * totalheight) - innerstrokesthickness thickness of the two ending strokes (default: 0.45 * barthickness) - outerstrokesthickness thickness of the inner strokes at the middle cap (default: 0.45 * barthickness) - innerstrokesrelheight | height of the inner/outer strokes, relative to the total height - outerstrokesrelheight | this determines the angle of the main bars! - should be around 0.5 - Note: if innerstrokesrelheight + outerstrokesrelheight == 1 then the main bars - will be aligned parallel to the connecting line between the endpoints - outerstrokesangle angle of the two ending strokes - innerstrokesangle angle between the inner strokes at the middle cap - slantstrokesangle extra slanting of the inner/outer strokes - innerstrokessmoothness | smoothing parameter for the inner + outer strokes - outerstrokessmoothness | should be around 1 (allowed: [0,infty)) - middlerelpos position of the middle cap (0 == left, 1 == right) - """ - - # first all the pyx-length parameters: - self.x0 = unit.length(x0) - self.y0 = unit.length(y0) - self.x1 = unit.length(x1) - self.y1 = unit.length(y1) - - totallength = unit_hypot(x1 - x0, y1 - y0) - - self.leftlength = middlerelpos * totallength - self.rightlength = (1 - middlerelpos) * totallength - if totalheight is None: - self.totalheight = 0.10 * totallength - else: - self.totalheight = unit.length(totalheight) - - # use thicknesses relative to the total height: - if barthickness is None: - self.barthickness = 0.05 * self.totalheight - else: - self.barthickness = unit.length(barthickness) - if innerstrokesthickness is None: - self.innerstrokesthickness = 0.45 * self.barthickness - else: - self.innerstrokesthickness = unit.length(innerstrokesthickness) - if outerstrokesthickness is None: - self.outerstrokesthickness = 0.45 * self.barthickness - else: - self.outerstrokesthickness = unit.length(outerstrokesthickness) - - # then angle parameters in degrees: - self.innerstrokesangle = innerstrokesangle - self.outerstrokesangle = outerstrokesangle - self.slantstrokesangle = slantstrokesangle - - # and then simple number parameters: - self.innerstrokesrelheight = innerstrokesrelheight - self.outerstrokesrelheight = outerstrokesrelheight - self.middlerelpos = middlerelpos - - self.innerstrokessmoothness = innerstrokessmoothness - self.outerstrokessmoothness = outerstrokessmoothness - - - def path(self): - - height_pt = unit.topt(self.totalheight) - leftlength_pt = unit.topt(self.leftlength) - rightlength_pt = unit.topt(self.rightlength) - - ithick_pt = unit.topt(self.innerstrokesthickness) - othick_pt = unit.topt(self.outerstrokesthickness) - bthick_pt = unit.topt(self.barthickness) - - # create the left halfbrace with positive slanting - # because we will mirror this part - cos_iangle = math.cos(math.radians(0.5*self.innerstrokesangle - self.slantstrokesangle)) - sin_iangle = math.sin(math.radians(0.5*self.innerstrokesangle - self.slantstrokesangle)) - cos_oangle = math.cos(math.radians(self.outerstrokesangle - self.slantstrokesangle)) - sin_oangle = math.sin(math.radians(self.outerstrokesangle - self.slantstrokesangle)) - cos_slangle = math.cos(math.radians(-self.slantstrokesangle)) - sin_slangle = math.sin(math.radians(-self.slantstrokesangle)) - ilength_pt = self.innerstrokesrelheight * height_pt / cos_iangle - olength_pt = self.outerstrokesrelheight * height_pt / cos_oangle - - bracepath = self.halfbracepath_pt(leftlength_pt, height_pt, - ilength_pt, olength_pt, ithick_pt, othick_pt, bthick_pt, cos_iangle, - sin_iangle, cos_oangle, sin_oangle, cos_slangle, - sin_slangle).reversed().transformed(trafo.mirror(90)) - - # create the right halfbrace with negative slanting - cos_iangle = math.cos(math.radians(0.5*self.innerstrokesangle + self.slantstrokesangle)) - sin_iangle = math.sin(math.radians(0.5*self.innerstrokesangle + self.slantstrokesangle)) - cos_oangle = math.cos(math.radians(self.outerstrokesangle + self.slantstrokesangle)) - sin_oangle = math.sin(math.radians(self.outerstrokesangle + self.slantstrokesangle)) - cos_slangle = math.cos(math.radians(-self.slantstrokesangle)) - sin_slangle = math.sin(math.radians(-self.slantstrokesangle)) - ilength_pt = self.innerstrokesrelheight * height_pt / cos_iangle - olength_pt = self.outerstrokesrelheight * height_pt / cos_oangle - - bracepath = bracepath << self.halfbracepath_pt(rightlength_pt, height_pt, - ilength_pt, olength_pt, ithick_pt, othick_pt, bthick_pt, cos_iangle, - sin_iangle, cos_oangle, sin_oangle, cos_slangle, - sin_slangle) - - x0_pt = unit.topt(self.x0) - y0_pt = unit.topt(self.y0) - x1_pt = unit.topt(self.x1) - y1_pt = unit.topt(self.y1) - return bracepath.transformed( - # two trafos for matching the given endpoints - trafo.translate_pt(x0_pt, y0_pt) * - trafo.rotate_pt(math.degrees(math.atan2(y1_pt-y0_pt, x1_pt-x0_pt))) * - # one trafo to move the brace's left outer stroke to zero - trafo.translate(self.leftlength, 0)) - - def halfbracepath_pt(self, length_pt, height_pt, ilength_pt, olength_pt, - ithick_pt, othick_pt, bthick_pt, cos_iangle, sin_iangle, cos_oangle, - sin_oangle, cos_slangle, sin_slangle): - - ismooth = self.innerstrokessmoothness - osmooth = self.outerstrokessmoothness - - # these two parameters are not important enough to be seen outside - inner_cap_param = 1.5 - outer_cap_param = 2.5 - outerextracurved = 0.6 # in (0, 1] - # 1.0 will lead to F=G, the outer strokes will not be curved at their ends. - # The smaller, the more curvature - - # build an orientation path (three straight lines) - # - # \q1 - # / \ - # / \ - # _/ \______________________________________q5 - # q2 q3 q4 \ - # \ - # \ - # \q6 - # - # get the points for that: - q1 = (0, height_pt - inner_cap_param * ithick_pt + 0.5*ithick_pt/sin_iangle) - q2 = (q1[0] + ilength_pt * sin_iangle, - q1[1] - ilength_pt * cos_iangle) - q6 = (length_pt, 0) - q5 = (q6[0] - olength_pt * sin_oangle, - q6[1] + olength_pt * cos_oangle) - bardir = (q5[0] - q2[0], q5[1] - q2[1]) - bardirnorm = math.hypot(*bardir) - bardir = (bardir[0]/bardirnorm, bardir[1]/bardirnorm) - ismoothlength_pt = ilength_pt * ismooth - osmoothlength_pt = olength_pt * osmooth - if bardirnorm < ismoothlength_pt + osmoothlength_pt: - ismoothlength_pt = bardirnorm * ismoothlength_pt / (ismoothlength_pt + osmoothlength_pt) - osmoothlength_pt = bardirnorm * osmoothlength_pt / (ismoothlength_pt + osmoothlength_pt) - q3 = (q2[0] + ismoothlength_pt * bardir[0], - q2[1] + ismoothlength_pt * bardir[1]) - q4 = (q5[0] - osmoothlength_pt * bardir[0], - q5[1] - osmoothlength_pt * bardir[1]) - - # - # P _O - # / | \A2 - # / A1\ \ - # / \ B2C2________D2___________E2_______F2___G2 - # \______________________________________ \ - # B1,C1 D1 E1 F1 G1 \ - # \ \ - # \ \H2 - # H1\_/I2 - # I1 - # - # the halfbraces meet in P and A1: - P = (0, height_pt) - A1 = (0, height_pt - inner_cap_param * ithick_pt) - # A2 is A1, shifted by the inner thickness - A2 = (A1[0] + ithick_pt * cos_iangle, - A1[1] + ithick_pt * sin_iangle) - s, t = deformer.intersection(P, A2, (cos_slangle, sin_slangle), (sin_iangle, -cos_iangle)) - O = (P[0] + s * cos_slangle, - P[1] + s * sin_slangle) - - # from D1 to E1 is the straight part of the brace - # also back from E2 to D1 - D1 = (q3[0] + bthick_pt * bardir[1], - q3[1] - bthick_pt * bardir[0]) - D2 = (q3[0] - bthick_pt * bardir[1], - q3[1] + bthick_pt * bardir[0]) - E1 = (q4[0] + bthick_pt * bardir[1], - q4[1] - bthick_pt * bardir[0]) - E2 = (q4[0] - bthick_pt * bardir[1], - q4[1] + bthick_pt * bardir[0]) - # I1, I2 are the control points at the outer stroke - I1 = (q6[0] - 0.5 * othick_pt * cos_oangle, - q6[1] - 0.5 * othick_pt * sin_oangle) - I2 = (q6[0] + 0.5 * othick_pt * cos_oangle, - q6[1] + 0.5 * othick_pt * sin_oangle) - # get the control points for the curved parts of the brace - s, t = deformer.intersection(A1, D1, (sin_iangle, -cos_iangle), bardir) - B1 = (D1[0] + t * bardir[0], - D1[1] + t * bardir[1]) - s, t = deformer.intersection(A2, D2, (sin_iangle, -cos_iangle), bardir) - B2 = (D2[0] + t * bardir[0], - D2[1] + t * bardir[1]) - s, t = deformer.intersection(E1, I1, bardir, (-sin_oangle, cos_oangle)) - G1 = (E1[0] + s * bardir[0], - E1[1] + s * bardir[1]) - s, t = deformer.intersection(E2, I2, bardir, (-sin_oangle, cos_oangle)) - G2 = (E2[0] + s * bardir[0], - E2[1] + s * bardir[1]) - # at the inner strokes: use curvature zero at both ends - C1 = B1 - C2 = B2 - # at the outer strokes: use curvature zero only at the connection to - # the straight part - F1 = (outerextracurved * G1[0] + (1 - outerextracurved) * E1[0], - outerextracurved * G1[1] + (1 - outerextracurved) * E1[1]) - F2 = (outerextracurved * G2[0] + (1 - outerextracurved) * E2[0], - outerextracurved * G2[1] + (1 - outerextracurved) * E2[1]) - # the tip of the outer stroke, endpoints of the bezier curve - H1 = (I1[0] - outer_cap_param * othick_pt * sin_oangle, - I1[1] + outer_cap_param * othick_pt * cos_oangle) - H2 = (I2[0] - outer_cap_param * othick_pt * sin_oangle, - I2[1] + outer_cap_param * othick_pt * cos_oangle) - - #for qq in [A1,B1,C1,D1,E1,F1,G1,H1,I1, - # A2,B2,C2,D2,E2,F2,G2,H2,I2, - # O,P - # ]: - # cc.fill(path.circle(qq[0], qq[1], 0.5), [color.rgb.green]) - - # now build the right halfbrace - bracepath = path.path(path.moveto_pt(*A1)) - bracepath.append(path.curveto_pt(B1[0], B1[1], C1[0], C1[1], D1[0], D1[1])) - bracepath.append(path.lineto_pt(E1[0], E1[1])) - bracepath.append(path.curveto_pt(F1[0], F1[1], G1[0], G1[1], H1[0], H1[1])) - # the tip of the right halfbrace - bracepath.append(path.curveto_pt(I1[0], I1[1], I2[0], I2[1], H2[0], H2[1])) - # the rest of the right halfbrace - bracepath.append(path.curveto_pt(G2[0], G2[1], F2[0], F2[1], E2[0], E2[1])) - bracepath.append(path.lineto_pt(D2[0], D2[1])) - bracepath.append(path.curveto_pt(C2[0], C2[1], B2[0], B2[1], A2[0], A2[1])) - # the tip in the middle of the brace - bracepath.append(path.curveto_pt(O[0], O[1], O[0], O[1], P[0], P[1])) - - return bracepath - - - -A = (0,5) -B = (6,18) - -b1 = straightbrace(A[0], A[1], B[0], B[1], - middlerelpos=0.8) -b2 = brace(B[0], B[1], A[0], A[1], - middlerelpos=0.2, - innerstrokesrelheight=0.6, outerstrokesrelheight=0.7, - slantstrokesangle=10) - -c = canvas.canvas() -c.fill(path.circle(A[0], A[1], 1), [color.rgb.red]) -c.fill(path.circle(B[0], B[1], 1), [color.rgb.blue]) -c.stroke(path.line(A[0], A[1], B[0], B[1])) -c.fill(b1.path()) -c.fill(b2.path()) - -c.writetofile("brace.eps", paperformat=document.paperformat.A4, fittosize=1, rotated=0) - diff --git a/test/functional/test_arrow.py b/test/functional/test_arrow.py index f5c76e55..a17febc9 100755 --- a/test/functional/test_arrow.py +++ b/test/functional/test_arrow.py @@ -1,6 +1,4 @@ #!/usr/bin/env python -import sys; sys.path[:0] = ["../.."] - import pyx from pyx import * from pyx.path import * @@ -22,21 +20,27 @@ def testarrow(c): base = 2 + pal = color.lineargradient(color.rgb.red, color.rgb.blue) + c.stroke(path(moveto(5,10), rlineto(5,0)), [#deco.barrow(size=base/math.sqrt(8)*unit.t_pt, constriction=1), deco.earrow.SMall, + deco.colorgradient(pal), deco.text("start", arclenfrombegin=0, angle=90)]) c.stroke(path(moveto(5,10.5), rlineto(5,0)), [deco.barrow(size=base/math.sqrt(4)*unit.t_pt, constriction=1), deco.earrow.Small, + deco.colorgradient(pal), deco.text("start+1", arclenfrombegin=1, angle=90)]) c.stroke(path(moveto(5,11), rlineto(5,0)), [deco.barrow(size=base/math.sqrt(2)*unit.t_pt, constriction=1), deco.earrow.small, + deco.colorgradient(pal), deco.text("center", angle=90)]) c.stroke(path(moveto(5,11.5), rlineto(5,0)), [deco.barrow(size=base/math.sqrt(1)*unit.t_pt, constriction=1), deco.earrow.normal, + deco.colorgradient(pal), deco.text("end-1", arclenfromend=1, angle=90)]) c.stroke(path(moveto(5,12), rlineto(5,0)), [deco.barrow(size=base*math.sqrt(2)*unit.t_pt, constriction=1), @@ -57,7 +61,8 @@ def testarrow(c): c.stroke(path(moveto(11,10), rlineto(5,0)), [lt, deco.barrow(size=base/math.sqrt(8)*unit.t_pt, constriction=1), - deco.earrow.SMall]) + deco.earrow.SMall, + deco.colorgradient(pal, [style.linewidth.THIN])]) c.stroke(path(moveto(11,10.5), rlineto(5,0)), [lt, deco.barrow(size=base/math.sqrt(4)*unit.t_pt, constriction=1), @@ -89,9 +94,33 @@ def testarrow(c): deco.stroked([style.linejoin.round]), deco.filled([color.rgb.blue])])]) +def linehatched(c): + p = rect(0, 0, 5, 0.5).transformed(trafo.rotate(60)) + c.draw(p, [deco.linehatched45.normal]) + c.fill(p, [trafo.translate(2,0), deco.linehatched(0.1, 60, cross=1)]) # should not be filled, but hatched + c.stroke(p, [trafo.translate(4,0), deco.linehatched90.normal]) + c.draw(p, [trafo.translate(6,0), deco.linehatched(0.1, 30, strokestyles=[color.rgb.red, style.linewidth.normal], cross=1)]) + +def testbrace(c): + p = line(0, 0, 5, 0).transformed(trafo.rotate(60)) + c.stroke(p, [deco.brace(dist=-0.1, stretch=1.1), deco.text(r"hallo", textdist=20*unit.x_pt, relangle=-90), trafo.translate(8,0)]) + + tr = trafo.translate(12, 0) + c.draw(line(0,0,0,4), [deco.leftbrace, tr]) + c.draw(line(4,0,4,4), [deco.rightbrace, tr]) + c.draw(line(0,0,4,0), [deco.belowbrace, tr]) + c.stroke(line(0,4,4,4), [deco.abovebrace, tr, style.linewidth.THin]) + + tr = trafo.translate(12.5, 0.5) + c.stroke(line(0,0,3,0), [deco.straightbrace, tr, color.rgb.red]) + c.draw(line(3,0,3,3), [deco.straightbrace(fillattrs=[color.rgb.blue]), tr]) + c.draw(line(3,3,0,3), [deco.straightbrace, tr]) + c.draw(line(0,3,0,0), [deco.straightbrace, tr]) -c=canvas.canvas() +c = canvas.canvas() testarrow(c) +linehatched(c) +testbrace(c) c.writeEPSfile("test_arrow", paperformat=document.paperformat.A4, rotated=0, fittosize=1) c.writePDFfile("test_arrow", paperformat=document.paperformat.A4) diff --git a/test/functional/test_bargraph.py b/test/functional/test_bargraph.py index 31c0cd64..d0236310 100755 --- a/test/functional/test_bargraph.py +++ b/test/functional/test_bargraph.py @@ -35,11 +35,17 @@ def test_bar4(c, x, y): graph.data.data(graph.data.points([['x', 10, 3], ['y', 11, 2], ['z', 12, 1]], id=1, y=2, ystack1=3, title="test"), xname="id, ('B', 'Z')")], [graph.style.barpos(fromvalue=0), graph.style.bar(), graph.style.stackedbarpos("ystack1", addontop=1), graph.style.bar([color.gradient.ReverseRainbow])]) +def test_bar5(c, x, y): + g = c.insert(graph.graphxyz(x, y, size=3, x=graph.axis.bar(), y=graph.axis.bar(), z=graph.axis.lin())) + g.plot(graph.data.data(graph.data.points([[1, 1, 1.4], [1, 2, 1.8], [2, 1, -0.5], [2, 2, 0.9]]), xname=1, yname=2, z=3), + [graph.style.barpos(fromvalue=0, frompathattrs=None), graph.style.bar(barattrs=[style.linejoin.bevel])]) + c = canvas.canvas() test_bar(c, 0, 0) test_bar2(c, 7, 0) test_bar3(c, 0, -7) test_bar4(c, 0, -14) +test_bar5(c, 7, -19) c.writeEPSfile("test_bargraph", paperformat=document.paperformat.A4) c.writePDFfile("test_bargraph", paperformat=document.paperformat.A4) diff --git a/test/functional/test_graph3d.py b/test/functional/test_graph3d.py index 2bc0b470..1d71b7a3 100755 --- a/test/functional/test_graph3d.py +++ b/test/functional/test_graph3d.py @@ -15,18 +15,16 @@ def test_line(c, x, y): g.plot(graph.data.file("data/husimi_small.dat", x=1, y=2, z=3), [graph.style.line()]) def test_grid(c, x, y): - g = c.insert(graph.graphxyz(x, y, size=3)) + g = c.insert(graph.graphxyz(x, y, size=3, x=graph.axis.lin(title="x axis"), y=graph.axis.lin(title="y axis"), z=graph.axis.lin(title="z axis"))) g.plot(graph.data.file("data/husimi_small.dat", x=1, y=2, z=3), [graph.style.grid()]) def test_surface(c, x, y): g = c.insert(graph.graphxyz(x, y, size=3, x=graph.axis.lin(), y=graph.axis.lin(), x2=None, y2=None)) g.plot(graph.data.file("data/husimi_small.dat", x=1, y=2, z=3, color=4), [graph.style.surface()]) - g.dodata() def test_surface2d(c, x, y): g = c.insert(graph.graphxy(x, y, width=6, height=6)) g.plot(graph.data.file("data/husimi_small.dat", x=1, y=2, color=3), [graph.style.surface()]) - g.dodata() c = canvas.canvas() test_minimal(c, 0, 0) diff --git a/test/functional/test_pdfextra.py b/test/functional/test_pdfextra.py new file mode 100755 index 00000000..ba292bdb --- /dev/null +++ b/test/functional/test_pdfextra.py @@ -0,0 +1,81 @@ +#!/usr/bin/env python +# -*- coding: ISO-8859-1 -*- +import sys; sys.path[:0] = ["../.."] + +import pyx +from pyx import * +from pyx.font.font import PDFTimesBold +from pyx.pdfextra import * + + +def texttest(): + c = canvas.canvas() + d = 0.0 + + llx, lly, w, h = 0, 0, 5, 1 + c.text(llx, lly+h, "first textfield:", [text.vshift(-0.5)]) + c.stroke(path.rect(llx-d, lly-d, w+2*d, h+2*d)) + c.insert(textfield(llx, lly, w, h, name="textfield", defaultvalue="hallo", multiline=1, + font=PDFTimesBold)) + + llx, lly, w, h = 0, -2, 1, 1 + c.text(llx, lly+h, "second textfield:", [text.vshift(-0.5)]) + c.stroke(path.rect(llx-d, lly-d, w+2*d, h+2*d)) + c.insert(textfield(llx, lly, w, h, name="another")) + + return c + +def checkboxtest(): + c = canvas.canvas() + + c.text(0, 0, "first checkbox:", [text.vshift(-0.5)]) + c.insert(checkbox(0, -0.5, name="checkbox", defaulton=1)) + + return c + +def radiotest(): + c = canvas.canvas() + + c.text(0, 0, "first radiobuttons:", [text.vshift(-0.5)]) + pos = [(0, -0.5), (0, -1.0), (0, -1.5)] + values = ["One", "Two", "Three"] + for (x, y), value in zip(pos, values): + c.text(x+12*unit.x_pt, y, value) + c.insert(radiobuttons(pos, name="button", values=values, defaultvalue=values[0])) + + # XXX : default entry is activated with the others + + return c + +def choicetest(): + c = canvas.canvas() + d = 0.0 + + llx, lly, w, h = 0, 0, 5, 1 + values = ["One", "Two", "Three"] + c.text(llx, lly+h, "first choicefield:", [text.vshift(-0.5)]) + c.stroke(path.rect(llx-d, lly-d, w+2*d, h+2*d)) + c.insert(choicefield(llx, lly, w, h, name="choicefield", values=values, defaultvalue=values[0], + font=PDFTimesBold)) + + return c + +# write all test into one canvas +c = canvas.canvas() +for cc in [texttest(), checkboxtest(), radiotest(), choicetest()]: + if not c: + t = [] + else: + t = [trafo.translate(0, c.bbox().bottom() - cc.bbox().top() - 1)] + c.insert(cc, t) + #c.stroke(cc.bbox().path(), t + [color.rgb.red, style.linestyle.dotted]) + +# test the transformation behaviour: +cc = canvas.canvas([trafo.scale(0.3)])#, trafo.rotate(90)]) +cc.fill(c.bbox().path(), [color.gray(0.9)]) +cc.insert(c) +d = document.document([document.page(cc, bboxenlarge=1)]) +d.writePDFfile("test_pdfextra", compress=0) + +# vim:syntax=python +# vim:fdm=marker:fmr=<<<,>>>: diff --git a/test/functional/test_text.py b/test/functional/test_text.py index aea5cdd4..66005e3e 100755 --- a/test/functional/test_text.py +++ b/test/functional/test_text.py @@ -52,8 +52,8 @@ c.text(0, 6, r"\int\limits_{-\infty}^\infty \!{\rm d}x\, e^{-a x^2} = \sqrt{\pi\ c.stroke(c.text(1, 2, r"Hello, world!").path()) # test a virtual font with encoding -c.text(0, 8, r"\sffamily VF test: \"o\ss ffl \char0") -c.text(0, 9, r"\sffamily \fontsize{30}{35}\selectfont VF test: \"o\ss ffl \char0") +c.text(0, 8, r"\sffamily VF test: \"o\ss ffl \char0\char0") +c.text(0, 9, r"\sffamily \fontsize{30}{35}\selectfont VF test: \"o\ss ffl \char0\char0") # scaling test unit.set(xscale=2) @@ -62,14 +62,22 @@ unit.set(xscale=1) t = c.text(0, 11, r"scale test", [color.rgb.red]) # test font stripping (proper usedchar selection) +from pyx.dvi import mapfile +fontmap = mapfile.readfontmap(["download35.map"]) c.text(0, 12, r"usechar test (``fl'' should be typed):") -myrunner = text.texrunner(fontmaps="download35.map") +myrunner = text.texrunner() myrunner.preamble(r"\font\pyxfont=phvr8t\pyxfont") -c.insert(myrunner.text(5.5, 12, r"\char'035")) +c.insert(myrunner.text(5.5, 12, r"\char'035", fontmap=fontmap)) -myrunner2 = text.texrunner(fontmaps="download35.map") +myrunner2 = text.texrunner() myrunner2.preamble(r"\font\pyxfont=ptmr8t\pyxfont") -c.insert(myrunner2.text(6.5, 12, r"\char'035")) +c.insert(myrunner2.text(6.5, 12, r"\char'035", fontmap=fontmap)) + +# test for ligatures/kerning in virtual fonts +c.text(0, 13, r"usechar test (``affa'' should be typed):") +myrunner = text.texrunner() +myrunner.preamble(r"\font\pyxfont=ptmr7t\pyxfont") +c.insert(myrunner.text(6.0, 13, r"affa", fontmap=fontmap)) # test the specials c.stroke(c.text(10, 2, r"Hello, \color{green}world!", [trafo.slant(1)]).path()) diff --git a/test/unit/test_dvifile.py b/test/unit/test_dvifile.py index 28acbb33..05cbcf46 100644 --- a/test/unit/test_dvifile.py +++ b/test/unit/test_dvifile.py @@ -4,7 +4,7 @@ if sys.path[0] != "../..": import cStringIO, os, re, unittest -from pyx import dvifile +from pyx.dvi import dvifile class DvifileTestCase(unittest.TestCase): @@ -15,8 +15,7 @@ class DvifileTestCase(unittest.TestCase): dvitypelineno = dvitypelines.index(" \n") + 1 pyxdvifile = cStringIO.StringIO() - df = dvifile.dvifile(advifile, dvifile.readfontmap(["psfonts.map"]), - debug=1, debugfile=pyxdvifile) + df = dvifile.DVIfile(advifile, debug=1, debugfile=pyxdvifile) while df.readpage(): pass pyxdvifilelines = list(pyxdvifile.getvalue().split("\n")) diff --git a/www/Makefile b/www/Makefile index b75979f7..17e51054 100644 --- a/www/Makefile +++ b/www/Makefile @@ -3,7 +3,7 @@ PYTHON ?= python default: build -publicserver = shell.sourceforge.net +publicserver = web.sourceforge.net publicpath = /home/groups/p/py/pyx/htdocs all: @@ -15,10 +15,6 @@ clean: public: scp -oCompression=yes -r build/* $(publicserver):$(publicpath) - make chmod - -chmod: - -ssh $(publicserver) "cd $(publicpath); chmod -fR g+w *" build: copy html diff --git a/www/index.pt b/www/index.pt index b4dea6bb..1a63bc7b 100644 --- a/www/index.pt +++ b/www/index.pt @@ -38,7 +38,7 @@ The current release, PyX version, is available at the - download section + download section of the SourceForge project page.

@@ -58,7 +58,8 @@ Jörg Lehmann, Michael Schindler, and André Wobst. PyX is free - software licensed under the GNU GPL Version 2. Other licensing + software licensed under the GNU GPL Version 2 or + (at your option) any later version. Other licensing schemes might be available upon request. Refer to the license page for further information.

@@ -70,8 +71,6 @@ DANTE e.V.

- - diff --git a/www/license.pt b/www/license.pt index 73caf502..f1dcaa47 100644 --- a/www/license.pt +++ b/www/license.pt @@ -6,9 +6,10 @@

PyX - License

-

PyX is free software licensed under the GNU GPL Version 2. However, - since the copyright of the source code is currently owned by a few people - only, we are able to offer PyX under a different license upon request.

+

PyX is free software licensed under the GNU GPL Version 2 or (at + your option) any later version. However, since the copyright of the source + code is currently owned by a few people only, we are able to offer PyX + under a different license upon request.

In case you want to obtain PyX under a different license, seek for professional support, or need additional features to be added to PyX, diff --git a/www/maintemplate.pt b/www/maintemplate.pt index fee33c25..f795c7ca 100644 --- a/www/maintemplate.pt +++ b/www/maintemplate.pt @@ -46,9 +46,9 @@

diff --git a/www/news.pt b/www/news.pt index 6b2900f2..6506a819 100644 --- a/www/news.pt +++ b/www/news.pt @@ -9,6 +9,13 @@

PyX - News

+
2011-05-15: PyX 0.11 released
+
+ This release contains a major reorganization of the text output code. + Transparency in bitmaps is now supported and limited functionality of the bar + style is available in 3d graphs. Various bugs have been fixed and there are + small improvements all over the place. +
2007-10-03: PyX 0.10 released
This release adds 3d plotting facilities to PyX using parallel or central