summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
Diffstat (limited to 'systems')
-rw-r--r--systems/stanford/pkware/README16
-rw-r--r--systems/stanford/pkware/pktogf.web1729
-rw-r--r--systems/stanford/pkware/pktype.web1160
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb1510
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.md52
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha5122
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc14
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2191156 -> 2191976 bytes
-rw-r--r--systems/win32/miktex/tm/packages/files.csv.lzmabin531594 -> 531674 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/pr.ini6
-rw-r--r--systems/win32/miktex/tm/packages/pr.ini6
-rw-r--r--systems/win32/w32tex/ChangeLog67
12 files changed, 4184 insertions, 328 deletions
diff --git a/systems/stanford/pkware/README b/systems/stanford/pkware/README
new file mode 100644
index 0000000000..d677ca7733
--- /dev/null
+++ b/systems/stanford/pkware/README
@@ -0,0 +1,16 @@
+pktype verifies a PK-format bitmap font.
+pktogf converts a PK-format bitmap font to GF format.
+These programs are released to the public domain (as is this README file).
+
+These programs were originally written by Tomas Rokicki as part of his
+Stanford Ph.D. work, and have always been distributed alongside the
+other programs coming from the Stanford TeX project, though they are not
+maintained by Donald Knuth.
+
+The related program gftopk[.web], however, is maintained by DEK and is
+part of the "mfware" collection (https://ctan.org/pkg/mfware).
+gftopk is by far the most commonly used of the PK font utilities.
+
+pktype and pktogf are currently maintained by Tom and the TeX Live project
+(https://tug.org/texlive).
+Home page: https://ctan.org/pkg/pkware
diff --git a/systems/stanford/pkware/pktogf.web b/systems/stanford/pkware/pktogf.web
new file mode 100644
index 0000000000..5b3ff04f8f
--- /dev/null
+++ b/systems/stanford/pkware/pktogf.web
@@ -0,0 +1,1729 @@
+% This program is not copyrighted and can be used freely.
+% PKtoGF.web
+%
+% PKtoGF creates a generic font file from a packed pixel file.
+%
+% Preliminary 0.0 version: January, 1988
+% Fixed bug to include specials in character (1.0): January 1988
+% Cleaned up description (bitweight errors) no version change: July 1990
+% Fixed bug with empty character setting min_n to 1 (1.1): 19 October 1990
+% A few typos, no version change: 22 April 2020
+\def\versiondate{22 April 2020}
+%
+\font\ninerm=cmr9
+\let\mc=\ninerm % medium caps for names like PASCAL
+\font\logo=logo10 % font used for the METAFONT logo
+\def\MF{{\logo META}\-{\logo FONT}}
+\def\PASCAL{{\mc Pascal}}
+\def\tamu{Texas A\char38 M}
+\def\(#1){} % this is used to make section names sort themselves better
+\def\9#1{} % this is used for sort keys in the index
+\def\title{PKtoGF}
+\def\contentspagenumber{0}
+\def\topofcontents{\null
+ \def\titlepage{F} % include headline on the contents page
+ \def\rheader{\mainfont\hfil \contentspagenumber}
+ \vfill
+ \centerline{\titlefont The {\ttitlefont PKtoGF} processor}
+ \vskip 15pt
+ \centerline{(Version 1.1, \versiondate)}
+ \vfill}
+\def\botofcontents{\vfill
+ \centerline{\hsize 5in\baselineskip9pt
+ \vbox{\ninerm\noindent
+ The preparation of this report
+ was supported in part by the National Science
+ Foundation under grants IST-8201926 and MCS-8300984,
+ and by the System Development Foundation. `\TeX' is a
+ trademark of the American Mathematical Society.}}}
+\pageno=\contentspagenumber \advance\pageno by 1
+
+@* Introduction.
+This program takes a packed, or \.{PK} file, and converts it into the
+standard \.{GF} format. The resulting \.{GF} file is standard in
+every way, and is essentially identical to the \.{GF} file from which
+the \.{PK} file was produced in the first place. Note that, however,
+\.{GF} to \.{PK} to \.{GF} is not an exact identity transformation, as
+the new \.{GF} file will have a different preamble string and the actual
+minimum bounding box will be used, instead of a possibly larger bounding
+box in the original \.{GF} file.
+
+@ The |banner| string defined here should be changed whenever \.{PKtoGF}
+gets modified. You should update the preamble comment as well.
+
+@d banner=='This is PKtoGF, Version 1.1'
+ {printed when the program starts}
+@d preamble_comment=='PKtoGF 1.1 output'
+@d comm_length==17
+
+@ This program is written in standard \PASCAL, except where it is necessary
+to use extensions; for example, \.{PKtoGF} must read files whose names
+are dynamically specified, and that would be impossible in pure \PASCAL.
+
+@d othercases == others: {default for cases not listed explicitly}
+@d endcases == @+end {follows the default case in an extended |case| statement}
+@f othercases == else
+@f endcases == end
+
+@ Both the input and output come from binary files. On line interaction
+is handled through \PASCAL's standard |input| and |output| files.
+
+@d print_ln(#)==write_ln(output,#)
+@d print(#)==write(output,#)
+
+@p program PKtoGF(input, output);
+label @<Labels in the outer block@>@/
+const @<Constants in the outer block@>@/
+type @<Types in the outer block@>@/
+var @<Globals in the outer block@>@/
+procedure initialize; {this procedure gets things started properly}
+ var i:integer; {loop index for initializations}
+ begin print_ln(banner);@/
+ @<Set initial values@>@/
+ end;
+
+@ If the program has to stop prematurely, it goes to the
+`|final_end|'.
+
+@d final_end=9999 {label for the end of it all}
+
+@<Labels...@>=final_end;
+
+@ These constants determine the maximum length of a file name and the length
+of the terminal line, as well as the maximum number of run counts allowed
+per line of the \.{GF} file. (We need this to implement repeat counts.)
+@^system dependancies@>
+
+@<Constants...@>=
+@!name_length=80; {maximum length of a file name}
+@!terminal_line_length=132; {maximum length of an input line}
+@!max_counts=400; {maximum number of run counts in a raster line}
+
+@ Here are some macros for common programming idioms.
+
+@d incr(#) == #:=#+1 {increase a variable by unity}
+@d decr(#) == #:=#-1 {decrease a variable by unity}
+@d do_nothing == {empty statement}
+
+@ It is possible that a malformed packed file (heaven forbid!) or some other
+error might be detected by this program. Such errors might occur in a deeply
+nested procedure, so the procedure called |jump_out| has been added to transfer
+to the very end of the program with an error message.
+
+@d abort(#)==begin print_ln(' ',#); jump_out; end
+
+@p procedure jump_out;
+begin goto final_end;
+end;
+
+@* The character set.
+Like all programs written with the \.{WEB} system, \.{PKtoGF} can be
+used with any character set. But it uses ASCII code internally, because
+the programming for portable input-output is easier when a fixed internal
+code is used.
+
+The next few sections of \.{PKtoGF} have therefore been copied from the
+analogous ones in the \.{WEB} system routines. They have been considerably
+simplified, since \.{PKtoGF} need not deal with the controversial
+ASCII codes less than @'40.
+
+@<Types...@>=
+@!ASCII_code=" ".."~"; {a subrange of the integers}
+
+@ The original \PASCAL\ compiler was designed in the late 60s, when six-bit
+character sets were common, so it did not make provision for lower case
+letters. Nowadays, of course, we need to deal with both upper and lower case
+alphabets in a convenient way, especially in a program like \.{GFtoPK}.
+So we shall assume that the \PASCAL\ system being used for \.{GFtoPK}
+has a character set containing at least the standard visible characters
+of ASCII code (|"!"| through |"~"|).
+
+Some \PASCAL\ compilers use the original name |char| for the data type
+associated with the characters in text files, while other \PASCAL s
+consider |char| to be a 64-element subrange of a larger data type that has
+some other name. In order to accommodate this difference, we shall use
+the name |text_char| to stand for the data type of the characters in the
+output file. We shall also assume that |text_char| consists of
+the elements |chr(first_text_char)| through |chr(last_text_char)|,
+inclusive. The following definitions should be adjusted if necessary.
+@^system dependencies@>
+
+@d text_char == char {the data type of characters in text files}
+@d first_text_char=0 {ordinal number of the smallest element of |text_char|}
+@d last_text_char=127 {ordinal number of the largest element of |text_char|}
+
+@<Types...@>=
+@!text_file=packed file of text_char;
+
+@ The \.{GFtoPK} processor converts between ASCII code and
+the user's external character set by means of arrays |xord| and |xchr|
+that are analogous to \PASCAL's |ord| and |chr| functions.
+
+@<Globals...@>=
+@!xord: array [text_char] of ASCII_code;
+ {specifies conversion of input characters}
+@!xchr: array [0..255] of text_char;
+ {specifies conversion of output characters}
+
+@ Under our assumption that the visible characters of standard ASCII are
+all present, the following assignment statements initialize the
+|xchr| array properly, without needing any system-dependent changes.
+
+@<Set init...@>=
+for i:=0 to @'37 do xchr[i]:='?';
+xchr[@'40]:=' ';
+xchr[@'41]:='!';
+xchr[@'42]:='"';
+xchr[@'43]:='#';
+xchr[@'44]:='$';
+xchr[@'45]:='%';
+xchr[@'46]:='&';
+xchr[@'47]:='''';@/
+xchr[@'50]:='(';
+xchr[@'51]:=')';
+xchr[@'52]:='*';
+xchr[@'53]:='+';
+xchr[@'54]:=',';
+xchr[@'55]:='-';
+xchr[@'56]:='.';
+xchr[@'57]:='/';@/
+xchr[@'60]:='0';
+xchr[@'61]:='1';
+xchr[@'62]:='2';
+xchr[@'63]:='3';
+xchr[@'64]:='4';
+xchr[@'65]:='5';
+xchr[@'66]:='6';
+xchr[@'67]:='7';@/
+xchr[@'70]:='8';
+xchr[@'71]:='9';
+xchr[@'72]:=':';
+xchr[@'73]:=';';
+xchr[@'74]:='<';
+xchr[@'75]:='=';
+xchr[@'76]:='>';
+xchr[@'77]:='?';@/
+xchr[@'100]:='@@';
+xchr[@'101]:='A';
+xchr[@'102]:='B';
+xchr[@'103]:='C';
+xchr[@'104]:='D';
+xchr[@'105]:='E';
+xchr[@'106]:='F';
+xchr[@'107]:='G';@/
+xchr[@'110]:='H';
+xchr[@'111]:='I';
+xchr[@'112]:='J';
+xchr[@'113]:='K';
+xchr[@'114]:='L';
+xchr[@'115]:='M';
+xchr[@'116]:='N';
+xchr[@'117]:='O';@/
+xchr[@'120]:='P';
+xchr[@'121]:='Q';
+xchr[@'122]:='R';
+xchr[@'123]:='S';
+xchr[@'124]:='T';
+xchr[@'125]:='U';
+xchr[@'126]:='V';
+xchr[@'127]:='W';@/
+xchr[@'130]:='X';
+xchr[@'131]:='Y';
+xchr[@'132]:='Z';
+xchr[@'133]:='[';
+xchr[@'134]:='\';
+xchr[@'135]:=']';
+xchr[@'136]:='^';
+xchr[@'137]:='_';@/
+xchr[@'140]:='`';
+xchr[@'141]:='a';
+xchr[@'142]:='b';
+xchr[@'143]:='c';
+xchr[@'144]:='d';
+xchr[@'145]:='e';
+xchr[@'146]:='f';
+xchr[@'147]:='g';@/
+xchr[@'150]:='h';
+xchr[@'151]:='i';
+xchr[@'152]:='j';
+xchr[@'153]:='k';
+xchr[@'154]:='l';
+xchr[@'155]:='m';
+xchr[@'156]:='n';
+xchr[@'157]:='o';@/
+xchr[@'160]:='p';
+xchr[@'161]:='q';
+xchr[@'162]:='r';
+xchr[@'163]:='s';
+xchr[@'164]:='t';
+xchr[@'165]:='u';
+xchr[@'166]:='v';
+xchr[@'167]:='w';@/
+xchr[@'170]:='x';
+xchr[@'171]:='y';
+xchr[@'172]:='z';
+xchr[@'173]:='{';
+xchr[@'174]:='|';
+xchr[@'175]:='}';
+xchr[@'176]:='~';
+for i:=@'177 to 255 do xchr[i]:='?';
+
+@ The following system-independent code makes the |xord| array contain a
+suitable inverse to the information in |xchr|.
+
+@<Set init...@>=
+for i:=first_text_char to last_text_char do xord[chr(i)]:=@'40;
+for i:=" " to "~" do xord[xchr[i]]:=i;
+
+@* Generic font file format.
+The most important output produced by a typical run of \MF\ is the
+``generic font'' (\.{GF}) file that specifies the bit patterns of the
+characters that have been drawn. The term {\sl generic\/} indicates that
+this file format doesn't match the conventions of any name-brand manufacturer;
+but it is easy to convert \.{GF} files to the special format required by
+almost all digital phototypesetting equipment. There's a strong analogy
+between the \.{DVI} files written by \TeX\ and the \.{GF} files written
+by \MF; and, in fact, the file formats have a lot in common.
+
+A \.{GF} file is a stream of 8-bit bytes that may be
+regarded as a series of commands in a machine-like language. The first
+byte of each command is the operation code, and this code is followed by
+zero or more bytes that provide parameters to the command. The parameters
+themselves may consist of several consecutive bytes; for example, the
+`|boc|' (beginning of character) command has six parameters, each of
+which is four bytes long. Parameters are usually regarded as nonnegative
+integers; but four-byte-long parameters can be either positive or
+negative, hence they range in value from $-2^{31}$ to $2^{31}-1$.
+As in \.{TFM} files, numbers that occupy
+more than one byte position appear in BigEndian order,
+and negative numbers appear in two's complement notation.
+
+A \.{GF} file consists of a ``preamble,'' followed by a sequence of one or
+more ``characters,'' followed by a ``postamble.'' The preamble is simply a
+|pre| command, with its parameters that introduce the file; this must come
+first. Each ``character'' consists of a |boc| command, followed by any
+number of other commands that specify ``black'' pixels,
+followed by an |eoc| command. The characters appear in the order that \MF\
+generated them. If we ignore no-op commands (which are allowed between any
+two commands in the file), each |eoc| command is immediately followed by a
+|boc| command, or by a |post| command; in the latter case, there are no
+more characters in the file, and the remaining bytes form the postamble.
+Further details about the postamble will be explained later.
+
+Some parameters in \.{GF} commands are ``pointers.'' These are four-byte
+quantities that give the location number of some other byte in the file;
+the first file byte is number~0, then comes number~1, and so on.
+
+@ The \.{GF} format is intended to be both compact and easily interpreted
+by a machine. Compactness is achieved by making most of the information
+relative instead of absolute. When a \.{GF}-reading program reads the
+commands for a character, it keeps track of two quantities: (a)~the current
+column number,~|m|; and (b)~the current row number,~|n|. These are 32-bit
+signed integers, although most actual font formats produced from \.{GF}
+files will need to curtail this vast range because of practical
+limitations. (\MF\ output will never allow $\vert m\vert$ or $\vert
+n\vert$ to get extremely large, but the \.{GF} format tries to be more
+general.)
+
+How do \.{GF}'s row and column numbers correspond to the conventions
+of \TeX\ and \MF? Well, the ``reference point'' of a character, in \TeX's
+view, is considered to be at the lower left corner of the pixel in row~0
+and column~0. This point is the intersection of the baseline with the left
+edge of the type; it corresponds to location $(0,0)$ in \MF\ programs.
+Thus the pixel in \.{GF} row~0 and column~0 is \MF's unit square, comprising
+the region of the plane whose coordinates both lie between 0 and~1. The
+pixel in \.{GF} row~|n| and column~|m| consists of the points whose \MF\
+coordinates |(x,y)| satisfy |m<=x<=m+1| and |n<=y<=n+1|. Negative values of
+|m| and~|x| correspond to columns of pixels {\sl left\/} of the reference
+point; negative values of |n| and~|y| correspond to rows of pixels {\sl
+below\/} the baseline.
+
+Besides |m| and |n|, there's also a third aspect of the current
+state, namely the @!|paint_switch|, which is always either \\{black} or
+\\{white}. Each \\{paint} command advances |m| by a specified amount~|d|,
+and blackens the intervening pixels if |paint_switch=black|; then
+the |paint_switch| changes to the opposite state. \.{GF}'s commands are
+designed so that |m| will never decrease within a row, and |n| will never
+increase within a character; hence there is no way to whiten a pixel that
+has been blackened.
+
+@ Here is a list of all the commands that may appear in a \.{GF} file. Each
+command is specified by its symbolic name (e.g., |boc|), its opcode byte
+(e.g., 67), and its parameters (if any). The parameters are followed
+by a bracketed number telling how many bytes they occupy; for example,
+`|d[2]|' means that parameter |d| is two bytes long.
+
+\yskip\hang|paint_0| 0. This is a \\{paint} command with |d=0|; it does
+nothing but change the |paint_switch| from \\{black} to \\{white} or
+vice~versa.
+
+\yskip\hang\\{paint\_1} through \\{paint\_63} (opcodes 1 to 63).
+These are \\{paint} commands with |d=1| to~63, defined as follows: If
+|paint_switch=black|, blacken |d|~pixels of the current row~|n|,
+in columns |m| through |m+d-1| inclusive. Then, in any case,
+complement the |paint_switch| and advance |m| by~|d|.
+
+\yskip\hang|paint1| 64 |d[1]|. This is a \\{paint} command with a specified
+value of~|d|; \MF\ uses it to paint when |64<=d<256|.
+
+\yskip\hang|@!paint2| 65 |d[2]|. Same as |paint1|, but |d|~can be as high
+as~65535.
+
+\yskip\hang|@!paint3| 66 |d[3]|. Same as |paint1|, but |d|~can be as high
+as $2^{24}-1$. \MF\ never needs this command, and it is hard to imagine
+anybody making practical use of it; surely a more compact encoding will be
+desirable when characters can be this large. But the command is there,
+anyway, just in case.
+
+\yskip\hang|boc| 67 |c[4]| |p[4]| |min_m[4]| |max_m[4]| |min_n[4]|
+|max_n[4]|. Beginning of a character: Here |c| is the character code, and
+|p| points to the previous character beginning (if any) for characters having
+this code number modulo 256. (The pointer |p| is |-1| if there was no
+prior character with an equivalent code.) The values of registers |m| and |n|
+defined by the instructions that follow for this character must
+satisfy |min_m<=m<=max_m| and |min_n<=n<=max_n|. (The values of |max_m| and
+|min_n| need not be the tightest bounds possible.) When a \.{GF}-reading
+program sees a |boc|, it can use |min_m|, |max_m|, |min_n|, and |max_n| to
+initialize the bounds of an array. Then it sets |m:=min_m|, |n:=max_n|, and
+|paint_switch:=white|.
+
+\yskip\hang|boc1| 68 |c[1]| |@!del_m[1]| |max_m[1]| |@!del_n[1]| |max_n[1]|.
+Same as |boc|, but |p| is assumed to be~$-1$; also |del_m=max_m-min_m|
+and |del_n=max_n-min_n| are given instead of |min_m| and |min_n|.
+The one-byte parameters must be between 0 and 255, inclusive.
+\ (This abbreviated |boc| saves 19~bytes per character, in common cases.)
+
+\yskip\hang|eoc| 69. End of character: All pixels blackened so far
+constitute the pattern for this character. In particular, a completely
+blank character might have |eoc| immediately following |boc|.
+
+\yskip\hang|skip0| 70. Decrease |n| by 1 and set |m:=min_m|,
+|paint_switch:=white|. \ (This finishes one row and begins another,
+ready to whiten the leftmost pixel in the new row.)
+
+\yskip\hang|skip1| 71 |d[1]|. Decrease |n| by |d+1|, set |m:=min_m|, and set
+|paint_switch:=white|. This is a way to produce |d| all-white rows.
+
+\yskip\hang|@!skip2| 72 |d[2]|. Same as |skip1|, but |d| can be as large
+as 65535.
+
+\yskip\hang|@!skip3| 73 |d[3]|. Same as |skip1|, but |d| can be as large
+as $2^{24}-1$. \MF\ obviously never needs this command.
+
+\yskip\hang|new_row_0| 74. Decrease |n| by 1 and set |m:=min_m|,
+|paint_switch:=black|. \ (This finishes one row and begins another,
+ready to {\sl blacken\/} the leftmost pixel in the new row.)
+
+\yskip\hang|@!new_row_1| through |@!new_row_164| (opcodes 75 to 238). Same as
+|new_row_0|, but with |m:=min_m+1| through |min_m+164|, respectively.
+
+\yskip\hang|xxx1| 239 |k[1]| |x[k]|. This command is undefined in
+general; it functions as a $(k+2)$-byte |no_op| unless special \.{GF}-reading
+programs are being used. \MF\ generates \\{xxx} commands when encountering
+a \&{special} string; this occurs in the \.{GF} file only between
+characters, after the preamble, and before the postamble. However,
+\\{xxx} commands might appear anywhere in \.{GF} files generated by other
+processors. It is recommended that |x| be a string having the form of a
+keyword followed by possible parameters relevant to that keyword.
+
+\yskip\hang|@!xxx2| 240 |k[2]| |x[k]|. Like |xxx1|, but |0<=k<65536|.
+
+\yskip\hang|xxx3| 241 |k[3]| |x[k]|. Like |xxx1|, but |0<=k<@t$2^{24}$@>|.
+\MF\ uses this when sending a \&{special} string whose length exceeds~255.
+
+\yskip\hang|@!xxx4| 242 |k[4]| |x[k]|. Like |xxx1|, but |k| can be
+ridiculously large; |k| mustn't be negative.
+
+\yskip\hang|yyy| 243 |y[4]|. This command is undefined in general;
+it functions as a 5-byte |no_op| unless special \.{GF}-reading programs
+are being used. \MF\ puts |scaled| numbers into |yyy|'s, as a
+result of \&{numspecial} commands; the intent is to provide numeric
+parameters to \\{xxx} commands that immediately precede.
+
+\yskip\hang|no_op| 244. No operation, do nothing. Any number of |no_op|'s
+may occur between \.{GF} commands, but a |no_op| cannot be inserted between
+a command and its parameters or between two parameters.
+
+\yskip\hang|char_loc| 245 |c[1]| |dx[4]| |dy[4]| |w[4]| |p[4]|.
+This command will appear only in the postamble, which will be explained
+shortly.
+
+\yskip\hang|@!char_loc0| 246 |c[1]| |@!dm[1]| |w[4]| |p[4]|.
+Same as |char_loc|, except that |dy| is assumed to be zero, and the value
+of~|dx| is taken to be |65536*dm|, where |0<=dm<256|.
+
+\yskip\hang|pre| 247 |i[1]| |k[1]| |x[k]|.
+Beginning of the preamble; this must come at the very beginning of the
+file. Parameter |i| is an identifying number for \.{GF} format, currently
+131. The other information is merely commentary; it is not given
+special interpretation like \\{xxx} commands are. (Note that \\{xxx}
+commands may immediately follow the preamble, before the first |boc|.)
+
+\yskip\hang|post| 248. Beginning of the postamble, see below.
+
+\yskip\hang|post_post| 249. Ending of the postamble, see below.
+
+\yskip\noindent Commands 250--255 are undefined at the present time.
+
+@d gf_id_byte=131 {identifies the kind of \.{GF} files described here}
+
+@ Here are the opcodes that \.{GFtoPK} actually refers to.
+
+@d paint_0=0 {beginning of the \\{paint} commands}
+@d paint1=64 {move right a given number of columns, then
+ black${}\leftrightarrow{}$white}
+@d boc=67 {beginning of a character}
+@d boc1=68 {abbreviated |boc|}
+@d eoc=69 {end of a character}
+@d skip0=70 {skip no blank rows}
+@d skip1=71 {skip over blank rows}
+@d new_row_0=74 {move down one row and then right}
+@d max_new_row=238 {move down one row and then right}
+@d no_op=247 {noop}
+@d xxx1=239 {for \&{special} strings}
+@d yyy=243 {for \&{numspecial} numbers}
+@d nop=244 {no operation}
+@d char_loc=245 {character locators in the postamble}
+@d char_loc0=246 {character locators in the postamble}
+@d pre=247 {preamble}
+@d post=248 {postamble beginning}
+@d post_post=249 {postamble ending}
+@d undefined_commands==250,251,252,253,254,255
+
+@ The last character in a \.{GF} file is followed by `|post|'; this command
+introduces the postamble, which summarizes important facts that \MF\ has
+accumulated. The postamble has the form
+$$\vbox{\halign{\hbox{#\hfil}\cr
+ |post| |p[4]| |@!ds[4]| |@!cs[4]| |@!hppp[4]| |@!vppp[4]|
+ |@!min_m[4]| |@!max_m[4]| |@!min_n[4]| |@!max_n[4]|\cr
+ $\langle\,$character locators$\,\rangle$\cr
+ |post_post| |q[4]| |i[1]| 223's$[{\G}4]$\cr}}$$
+Here |p| is a pointer to the byte following the final |eoc| in the file
+(or to the byte following the preamble, if there are no characters);
+it can be used to locate the beginning of \\{xxx} commands
+that might have preceded the postamble. The |ds| and |cs| parameters
+@^design size@> @^check sum@>
+give the design size and check sum, respectively, which are exactly the
+values put into the header of any \.{TFM} file that shares information with
+this \.{GF} file. Parameters |hppp| and |vppp| are the ratios of
+pixels per point, horizontally and vertically, expressed as |scaled| integers
+(i.e., multiplied by $2^{16}$); they can be used to correlate the font
+with specific device resolutions, magnifications, and ``at sizes.'' Then
+come |min_m|, |max_m|, |min_n|, and |max_n|, which bound the values that
+registers |m| and~|n| assume in all characters in this \.{GF} file.
+(These bounds need not be the best possible; |max_m| and |min_n| may, on the
+other hand, be tighter than the similar bounds in |boc| commands. For
+example, some character may have |min_n=-100| in its |boc|, but it might
+turn out that |n| never gets lower than |-50| in any character; then
+|min_n| can have any value |<=-50|. If there are no characters in the file,
+it's possible to have |min_m>max_m| and/or |min_n>max_n|.)
+
+@ Character locators are introduced by |char_loc| commands,
+which specify a character residue~|c|, character escapements (|dx,dy|),
+a character width~|w|, and a pointer~|p|
+to the beginning of that character. (If two or more characters have the
+same code~|c| modulo 256, only the last will be indicated; the others can be
+located by following backpointers. Characters whose codes differ by a
+multiple of 256 are assumed to share the same font metric information,
+hence the \.{TFM} file contains only residues of character codes modulo~256.
+This convention is intended for oriental languages, when there are many
+character shapes but few distinct widths.)
+@^oriental characters@>@^Chinese characters@>@^Japanese characters@>
+
+The character escapements (|dx,dy|) are the values of \MF's \&{chardx}
+and \&{chardy} parameters; they are in units of |scaled| pixels;
+i.e., |dx| is in horizontal pixel units times $2^{16}$, and |dy| is in
+vertical pixel units times $2^{16}$. This is the intended amount of
+displacement after typesetting the character; for \.{DVI} files, |dy|
+should be zero, but other document file formats allow nonzero vertical
+escapement.
+
+The character width~|w| duplicates the information in the \.{TFM} file; it
+is $2^{24}$ times the ratio of the true width to the font's design size.
+
+The backpointer |p| points to the character's |boc|, or to the first of
+a sequence of consecutive \\{xxx} or |yyy| or |no_op| commands that
+immediately precede the |boc|, if such commands exist; such ``special''
+commands essentially belong to the characters, while the special commands
+after the final character belong to the postamble (i.e., to the font
+as a whole). This convention about |p| applies also to the backpointers
+in |boc| commands, even though it wasn't explained in the description
+of~|boc|. @^backpointers@>
+
+Pointer |p| might be |-1| if the character exists in the \.{TFM} file
+but not in the \.{GF} file. This unusual situation can arise in \MF\ output
+if the user had |proofing<0| when the character was being shipped out,
+but then made |proofing>=0| in order to get a \.{GF} file.
+
+@ The last part of the postamble, following the |post_post| byte that
+signifies the end of the character locators, contains |q|, a pointer to the
+|post| command that started the postamble. An identification byte, |i|,
+comes next; this currently equals~131, as in the preamble.
+
+The |i| byte is followed by four or more bytes that are all equal to
+the decimal number 223 (i.e., @'337 in octal). \MF\ puts out four to seven of
+these trailing bytes, until the total length of the file is a multiple of
+four bytes, since this works out best on machines that pack four bytes per
+word; but any number of 223's is allowed, as long as there are at least four
+of them. In effect, 223 is a sort of signature that is added at the very end.
+@^Fuchs, David Raymond@>
+
+This curious way to finish off a \.{GF} file makes it feasible for
+\.{GF}-reading programs to find the postamble first, on most computers,
+even though \MF\ wants to write the postamble last. Most operating
+systems permit random access to individual words or bytes of a file, so
+the \.{GF} reader can start at the end and skip backwards over the 223's
+until finding the identification byte. Then it can back up four bytes, read
+|q|, and move to byte |q| of the file. This byte should, of course,
+contain the value 248 (|post|); now the postamble can be read, so the
+\.{GF} reader can discover all the information needed for individual
+characters.
+
+Unfortunately, however, standard \PASCAL\ does not include the ability to
+@^system dependencies@>
+access a random position in a file, or even to determine the length of a file.
+Almost all systems nowadays provide the necessary capabilities, so \.{GF}
+format has been designed to work most efficiently with modern operating
+systems. \.{GFtoPK} first reads the postamble, and then scans the file from
+front to back.
+
+@* Packed file format.
+The packed file format is a compact representation of the data contained in a
+\.{GF} file. The information content is the same, but packed (\.{PK}) files
+are almost always less than half the size of their \.{GF} counterparts. They
+are also easier to convert into a raster representation because they do not
+have a profusion of \\{paint}, \\{skip}, and \\{new\_row} commands to be
+separately interpreted. In addition, the \.{PK} format expressedly forbids
+\&{special} commands within a character. The minimum bounding box for each
+character is explicit in the format, and does not need to be scanned for as in
+the \.{GF} format. Finally, the width and escapement values are combined with
+the raster information into character ``packets'', making it simpler in many
+cases to process a character.
+
+A \.{PK} file is organized as a stream of 8-bit bytes. At times, these bytes
+might be split into 4-bit nybbles or single bits, or combined into multiple
+byte parameters. When bytes are split into smaller pieces, the `first' piece
+is always the most significant of the byte. For instance, the first bit of
+a byte is the bit with value 128; the first nybble can be found by dividing
+a byte by 16. Similarly, when bytes are combined into multiple byte
+parameters, the first byte is the most significant of the parameter. If the
+parameter is signed, it is represented by two's-complement notation.
+
+The set of possible eight-bit values are separated into two sets, those that
+introduce a character definition, and those that do not. The values that
+introduce a character definition comprise the range from 0 to 239; byte values
+above 239 are interpreted commands. Bytes which introduce character
+definitions are called flag bytes, and various fields within the byte indicate
+various things about how the character definition is encoded. Command bytes
+have zero or more parameters, and can never appear within a character
+definition or between parameters of another command, where they would be
+interpreted as data.
+
+A \.{PK} file consists of a preamble, followed by a sequence of one or more
+character definitions, followed by a postamble. The preamble command must
+be the first byte in the file, followed immediately by its parameters.
+Any number of character definitions may follow, and any command but the
+preamble command and the postamble command may occur between character
+definitions. The very last command in the file must be the postamble.
+
+@ The packed file format is intended to be easy to read and interpret by
+device drivers. The small size of the file reduces the input/output overhead
+each time a font is defined. For those drivers that load and save each font
+file into memory, the small size also helps reduce the memory requirements.
+The length of each character packet is specified, allowing the character raster
+data to be loaded into memory by simply counting bytes, rather than
+interpreting each command; then, each character can be interpreted on a demand
+basis. This also makes it possible for a driver to skip a particular
+character quickly if it knows that the character is unused.
+
+@ First, the command bytes shall be presented; then the format of the
+character definitions will be defined. Eight of the possible sixteen
+commands (values 240 through 255) are currently defined; the others are
+reserved for future extensions. The commands are listed below. Each command
+is specified by its symbolic name (e.g., \\{pk\_no\_op}), its opcode byte,
+and any parameters. The parameters are followed by a bracketed number
+telling how many bytes they occupy, with the number preceded by a plus sign if
+it is a signed quantity. (Four byte quantities are always signed, however.)
+
+\yskip\hang|pk_xxx1| 240 |k[1]| |x[k]|. This command is undefined in general;
+it functions as a $(k+2)$-byte \\{no\_op} unless special \.{PK}-reading
+programs are being used. \MF\ generates \\{xxx} commands when encountering
+a \&{special} string. It is recommended that |x| be a string having the form
+of a keyword followed by possible parameters relevant to that keyword.
+
+\yskip\hang\\{pk\_xxx2} 241 |k[2]| |x[k]|. Like |pk_xxx1|, but |0<=k<65536|.
+
+\yskip\hang\\{pk\_xxx3} 242 |k[3]| |x[k]|. Like |pk_xxx1|, but
+|0<=k<@t$2^{24}$@>|. \MF\ uses this when sending a \&{special} string whose
+length exceeds~255.
+
+\yskip\hang\\{pk\_xxx4} 243 |k[4]| |x[k]|. Like |pk_xxx1|, but |k| can be
+ridiculously large; |k| mustn't be negative.
+
+\yskip\hang|pk_yyy| 244 |y[4]|. This command is undefined in general; it
+functions as a five-byte \\{no\_op} unless special \.{PK} reading programs
+are being used. \MF\ puts |scaled| numbers into |yyy|'s, as a result of
+\&{numspecial} commands; the intent is to provide numeric parameters to
+\\{xxx} commands that immediately precede.
+
+\yskip\hang|pk_post| 245. Beginning of the postamble. This command is
+followed by enough |pk_no_op| commands to make the file a multiple
+of four bytes long. Zero through three bytes are usual, but any number
+is allowed.
+This should make the file easy to read on machines which pack four bytes to
+a word.
+
+\yskip\hang|pk_no_op| 246. No operation, do nothing. Any number of
+|pk_no_op|'s may appear between \.{PK} commands, but a |pk_no_op| cannot be
+inserted between a command and its parameters, between two parameters, or
+inside a character definition.
+
+\yskip\hang|pk_pre| 247 |i[1]| |k[1]| |x[k]| |ds[4]| |cs[4]| |hppp[4]|
+|vppp[4]|. Preamble command. Here, |i| is the identification byte of the
+file, currently equal to 89. The string |x| is merely a comment, usually
+indicating the source of the \.{PK} file. The parameters |ds| and |cs| are
+the design size of the file in $1/2^{20}$ points, and the checksum of the
+file, respectively. The checksum should match the \.{TFM} file and the
+\.{GF} files for this font. Parameters |hppp| and |vppp| are the ratios
+of pixels per point, horizontally and vertically, multiplied by $2^{16}$; they
+can be used to correlate the font with specific device resolutions,
+magnifications, and ``at sizes''. Usually, the name of the \.{PK} file is
+formed by concatenating the font name (e.g., cmr10) with the resolution at
+which the font is prepared in pixels per inch multiplied by the magnification
+factor, and the letters \.{PK}. For instance, cmr10 at 300 dots per inch
+should be named CMR10.300PK; at one thousand dots per inch and magstephalf,
+it should be named CMR10.1095PK.
+
+@ We put a few of the above opcodes into definitions for symbolic use by
+this program.
+
+@d pk_id = 89 {the version of \.{PK} file described}
+@d pk_xxx1 = 240 {\&{special} commands}
+@d pk_yyy = 244 {\&{numspecial} commands}
+@d pk_post = 245 {postamble}
+@d pk_no_op = 246 {no operation}
+@d pk_pre = 247 {preamble}
+
+@ The \.{PK} format has two conflicting goals; to pack character raster and
+size information as compactly as possible, while retaining ease of translation
+into raster and other forms. A suitable compromise was found in the use of
+run-encoding of the raster information. Instead of packing the individual
+bits of the character, we instead count the number of consecutive `black' or
+`white' pixels in a horizontal raster row, and then encode this number. Run
+counts are found for each row, from the top of the character to the bottom.
+This is essentially the way the \.{GF} format works.
+Instead of presenting each row individually, however, let us concatenate all
+of the horizontal raster rows into one long string of pixels, and encode this
+row. With knowledge of the width of the bit-map, the original character glyph
+can be easily reconstructed. In addition, we do not need special commands to
+mark the end of one row and the beginning of the next.
+
+Next, let us put the burden of finding the minimum bounding box on the part
+of the font generator, since the characters will usually be used much more
+often than they are generated. The minimum bounding box is the smallest
+rectangle which encloses all `black' pixels of a character. Let us also
+eliminate the need for a special end of character marker, by supplying
+exactly as many bits as are required to fill the minimum bounding box, from
+which the end of the character is implicit.
+
+Let us next consider the distribution of the run counts. Analysis of several
+dozen pixel files at 300 dots per inch yields a distribution peaking at four,
+falling off slowly until ten, then a bit more steeply until twenty, and then
+asymptotically approaching the horizontal. Thus, the great majority of our
+run counts will fit in a four-bit nybble. The eight-bit byte is attractive for
+our run-counts, as it is the standard on many systems; however, the wasted four
+bits in the majority of cases seems a high price to pay. Another possibility
+is to use a Huffman-type encoding scheme with a variable number of bits for
+each run-count; this was rejected because of the overhead in fetching and
+examining individual bits in the file. Thus, the character raster definitions
+in the \.{PK} file format are based on the four-bit nybble.
+
+@ The analysis of the pixel files yielded another interesting statistic: fully
+37\char`\%\
+of the raster rows were duplicates of the previous row. Thus, the \.{PK}
+format allows the specification of repeat counts, which indicate how many times
+a horizontal raster row is to be repeated. These repeated rows are taken out
+of the character glyph before individual rows are concatenated into the long
+string of pixels.
+
+For elegance, we disallow a run count of zero. The case of a null raster
+description should be gleaned from the character width and height being equal
+to zero, and no raster data should be read. No other zero counts are ever
+necessary. Also, in the absence of repeat counts, the repeat value is set to
+be zero (only the original row is sent.) If a repeat count is seen, it takes
+effect on the current row. The current row is defined as the row on which the
+first pixel of the next run count will lie. The repeat count is set back to
+zero when the last pixel in the current row is seen, and the row is sent out.
+
+This poses a problem for entirely black and entirely white rows, however. Let
+us say that the current row ends with four white pixels, and then we have five
+entirely empty rows, followed by a black pixel at the beginning of the next
+row, and the character width is ten pixels. We would like to use a repeat
+count, but there is no legal place to put it. If we put it before the white
+run count, it will apply to the current row. If we put it after, it applies
+to the row with the black pixel at the beginning. Thus, entirely white or
+entirely black repeated rows are always packed as large run counts (in this
+case, a white run count of 54) rather than repeat counts.
+
+@ Now let us turn our attention to the actual packing of the run counts and
+repeat counts into nybbles. There are only sixteen possible nybble values.
+We need to indicate run counts and repeat counts. Since the run counts are
+much more common, we will devote the majority of the nybble values to them.
+We therefore indicate a repeat count by a nybble of 14 followed by a packed
+number, where a packed number will be explained later. Since the repeat
+count value of one is so common, we indicate a repeat one command by a single
+nybble of 15. A 14 followed by the packed number 1 is still legal for a
+repeat one count, however. The run counts are coded directly as packed
+numbers.
+
+For packed numbers, therefore, we have the nybble values 0 through 13. We
+need to represent the positive integers up to, say, $2^{31}-1$. We would
+like the more common smaller numbers to take only one or two nybbles, and
+the infrequent large numbers to take three or more. We could therefore
+allocate one nybble value to indicate a large run count taking three or more
+nybbles. We do this with the value 0.
+
+@ We are left with the values 1 through 13. We can allocate some of these, say
+|dyn_f|, to be one-nybble run counts.
+These will work for the run counts |1..dyn_f|. For subsequent run
+counts, we will use a nybble greater than |dyn_f|, followed by a second nybble,
+whose value can run from 0 through 15. Thus, the two-byte nybble values will
+run from |dyn_f+1..(13-dyn_f)*16+dyn_f|. We have our definition of large run
+count values now, being all counts greater than |(13-dyn_f)*16+dyn_f|.
+
+We can analyze our several dozen pixel files and determine an optimal value of
+|dyn_f|, and use this value for all of the characters. Unfortunately, values
+of |dyn_f| that pack small characters well tend to pack the large characters
+poorly, and values that pack large characters well are not efficient for the
+smaller characters. Thus, we choose the optimal |dyn_f| on a character basis,
+picking the value which will pack each individual character in the smallest
+number of nybbles. Legal values of |dyn_f| run from 0 (with no one-byte run
+counts) to 13 (with no two-byte run counts).
+
+@ Our only remaining task in the coding of packed numbers is the large run
+counts. We use a scheme suggested by D.~E.~Knuth
+@^Knuth, D.~E.@>
+which will simply and elegantly represent arbitrarily large values. The
+general scheme to represent an integer |i| is to write its hexadecimal
+representation, with leading zeros removed. Then we count the number of
+digits, and prepend one less than that many zeros before the hexadecimal
+representation. Thus, the values from one to fifteen occupy one nybble;
+the values sixteen through 255 occupy three, the values 256 through 4095
+require five, etc.
+
+For our purposes, however, we have already represented the numbers one
+through |(13-dyn_f)*16+dyn_f|. In addition, the one-nybble values have
+already been taken by our other commands, which means that only the values
+from sixteen up are available to us for long run counts. Thus, we simply
+normalize our long run counts, by subtracting |(13-dyn_f)*16+dyn_f+1| and
+adding 16, and then representing the result according to the scheme above.
+
+@ The final algorithm for decoding the run counts based on the above scheme
+might look like this, assuming a procedure called \\{pk\_nyb} is available
+to get the next nybble from the file, and assuming that the global
+|repeat_count| indicates whether a row needs to be repeated. Note that this
+routine is recursive, but since a repeat count can never directly follow
+another repeat count, it can only be recursive to one level.
+
+@<Packed number procedure@>=
+function pk_packed_num : integer ;
+var i, j, k : integer ;
+begin
+ i := get_nyb ;
+ if i = 0 then begin
+ repeat j := get_nyb ; incr(i) ; until j <> 0 ;
+ while i > 0 do begin j := j * 16 + get_nyb ; decr(i) ; end ;
+ pk_packed_num := j - 15 + (13-dyn_f)*16 + dyn_f ;
+ end else if i <= dyn_f then
+ pk_packed_num := i
+ else if i < 14 then
+ pk_packed_num := (i-dyn_f-1)*16+get_nyb+dyn_f+1
+ else begin
+ if i = 14 then
+ repeat_count := pk_packed_num
+ else
+ repeat_count := 1 ;
+ pk_packed_num := pk_packed_num ;
+ end ;
+end ;
+
+@ For low resolution fonts, or characters with `gray' areas, run encoding can
+often make the character many times larger. Therefore, for those characters
+that cannot be encoded efficiently with run counts, the \.{PK} format allows
+bit-mapping of the characters. This is indicated by a |dyn_f| value of
+14. The bits are packed tightly, by concatenating all of the horizontal raster
+rows into one long string, and then packing this string eight bits to a byte.
+The number of bytes required can be calculated by |(width*height+7) div 8|.
+This format should only be used when packing the character by run counts takes
+more bytes than this, although, of course, it is legal for any character.
+Any extra bits in the last byte should be set to zero.
+
+@ At this point, we are ready to introduce the format for a character
+descriptor. It consists of three parts: a flag byte, a character preamble,
+and the raster data. The most significant four bits of the flag byte
+yield the |dyn_f| value for that character. (Notice that only values of
+0 through 14 are legal for |dyn_f|, with 14 indicating a bit mapped character;
+thus, the flag bytes do not conflict with the command bytes, whose upper nybble
+is always 15.) The next bit (with weight 8) indicates whether the first run
+count is a black count or a white count, with a one indicating a black count.
+For bit-mapped characters, this bit should be set to a zero. The next bit
+(with weight 4) indicates whether certain later parameters (referred to as size
+parameters) are given in one-byte or two-byte quantities, with a one indicating
+that they are in two-byte quantities. The last two bits are concatenated on to
+the beginning of the length parameter in the character preamble, which will be
+explained below.
+
+However, if the last three bits of the flag byte are all set (normally
+indicating that the size parameters are two-byte values and that a 3 should be
+prepended to the length parameter), then a long format of the character
+preamble should be used instead of one of the short forms.
+
+Therefore, there are three formats for the character preamble, and which one
+is used depends on the least significant three bits of the flag byte. If the
+least significant three bits are in the range zero through three, the short
+format is used. If they are in the range four through six, the extended short
+format is used. Otherwise, if the least significant bits are all set, then
+the long form of the character preamble is used. The preamble formats are
+explained below.
+
+\yskip\hang Short form: |flag[1]| |pl[1]| |cc[1]| |tfm[3]| |dm[1]| |w[1]|
+|h[1]| |hoff[+1]| |voff[+1]|.
+If this format of the character preamble is used, the above
+parameters must all fit in the indicated number of bytes, signed or unsigned
+as indicated. Almost all of the standard \TeX\ font characters fit; the few
+exceptions are fonts such as \.{aminch}.
+
+\yskip\hang Extended short form: |flag[1]| |pl[2]| |cc[1]| |tfm[3]| |dm[2]|
+|w[2]| |h[2]| |hoff[+2]| |voff[+2]|. Larger characters use this extended
+format.
+
+\yskip\hang Long form: |flag[1]| |pl[4]| |cc[4]| |tfm[4]| |dx[4]| |dy[4]|
+|w[4]| |h[4]| |hoff[4]| |voff[4]|. This is the general format which
+allows all of the
+parameters of the \.{GF} file format, including vertical escapement.
+\vskip\baselineskip
+The |flag| parameter is the flag byte. The parameter |pl| (packet length)
+contains the offset
+of the byte following this character descriptor, with respect to the beginning
+of the |tfm| width parameter. This is given so a \.{PK} reading program can,
+once it has read the flag byte, packet length, and character code (|cc|), skip
+over the character by simply reading this many more bytes. For the two short
+forms of the character preamble, the last two bits of the flag byte should be
+considered the two most-significant bits of the packet length. For the short
+format, the true packet length might be calculated as |(flag mod 4)*256+pl|;
+for the extended format, it might be calculated as |(flag mod 4)*65536+pl|.
+
+The |w| parameter is the width and the |h| parameter is the height in pixels
+of the minimum bounding box. The |dx| and |dy| parameters are the horizontal
+and vertical escapements, respectively. In the short formats, |dy| is assumed
+to be zero and |dm| is |dy| but in pixels;
+in the long format, |dx| and |dy| are both
+in pixels multiplied by $2^{16}$. The |hoff| is the horizontal offset from the
+upper left pixel to the reference pixel; the |voff| is the vertical offset.
+They are both given in pixels, with right and down being positive. The
+reference pixel is the pixel which occupies the unit square in \MF; the
+\MF\ reference point is the lower left hand corner of this pixel. (See the
+example below.)
+
+@ \TeX\ requires that all characters which have the same character codes
+modulo 256 also have the same |tfm| widths, and escapement values. The \.{PK}
+format does not itself make this a requirement, but in order for the font to
+work correctly with the \TeX\ software, this constraint should be observed.
+
+
+Following the character preamble is the raster information for the
+character, packed by run counts or by bits, as indicated by the flag byte.
+If the character is packed by run counts and the required number of nybbles
+is odd, then the last byte of the raster description should have a zero
+for its least significant nybble.
+
+@ As an illustration of the \.{PK} format, the character \char4\ from the font
+amr10 at 300 dots per inch will be encoded. (Note: amr fonts are obsolete,
+and the reference to this character is retained from an older version of
+the Computer Modern fonts solely for illustration.) This character was chosen
+because it illustrates some
+of the borderline cases. The raster for the character looks like this (the
+row numbers are chosen for convenience, and are not \MF's row numbers.)
+
+\vskip\baselineskip
+\centerline{\vbox{\baselineskip=10pt
+\halign{\hfil#\quad&&\hfil#\hfil\cr
+0& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+1& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+2& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+3& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+4& & &M&M& & & & & & & & & & & & & & & & &M&M\cr
+5& & &M&M& & & & & & & & & & & & & & & & &M&M\cr
+6& & &M&M& & & & & & & & & & & & & & & & &M&M\cr
+7\cr
+8\cr
+9& & & & &M&M& & & & & & & & & & & & &M&M& & \cr
+10& & & & &M&M& & & & & & & & & & & & &M&M& & \cr
+11& & & & &M&M& & & & & & & & & & & & &M&M& & \cr
+12& & & & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M& & \cr
+13& & & & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M& & \cr
+14& & & & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M& & \cr
+15& & & & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M& & \cr
+16& & & & &M&M& & & & & & & & & & & & &M&M& & \cr
+17& & & & &M&M& & & & & & & & & & & & &M&M& & \cr
+18& & & & &M&M& & & & & & & & & & & & &M&M& & \cr
+19\cr
+20\cr
+21\cr
+22& & &M&M& & & & & & & & & & & & & & & & &M&M\cr
+23& & &M&M& & & & & & & & & & & & & & & & &M&M\cr
+24& & &M&M& & & & & & & & & & & & & & & & &M&M\cr
+25& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+26& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+27& & &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+28&*& &M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M&M\cr
+&\hphantom{M}&\hphantom{M}\cr
+}}}
+The width of the minimum bounding box for this character is 20; its height
+is 29. The `*' represents the reference pixel; notice how it lies outside the
+minimum bounding box. The |hoff| value is $-2$, and the |voff| is~28.
+
+The first task is to calculate the run counts and repeat counts. The repeat
+counts are placed at the first transition (black to white or white to black)
+in a row, and are enclosed in brackets. White counts are enclosed in
+parentheses. It is relatively easy to generate the counts list:
+\vskip\baselineskip
+\centerline{82 [2] (16) 2 (42) [2] 2 (12) 2 (4) [3]}
+\centerline{16 (4) [2] 2 (12) 2 (62) [2] 2 (16) 82}
+\vskip\baselineskip
+Note that any duplicated rows that are not all white or all black are removed
+before the repeat counts are calculated. The rows thus removed are rows 5, 6,
+10, 11, 13, 14, 15, 17, 18, 23, and 24.
+
+@ The next step in the encoding of this character is to calculate the optimal
+value of |dyn_f|. The details of how this calculation is done are not
+important here; suffice it to say that there is a simple algorithm which in one
+pass over the count list can determine the best value of |dyn_f|. For this
+character, the optimal value turns out to be 8 (atypically low). Thus, all
+count values less than or equal to 8 are packed in one nybble; those from
+nine to $(13-8)*16+8$ or 88 are packed in two nybbles. The run encoded values
+now become (in hex, separated according to the above list):
+\vskip\baselineskip
+\centerline{\tt D9 E2 97 2 B1 E2 2 93 2 4 E3}
+\centerline{\tt 97 4 E2 2 93 2 C5 E2 2 97 D9}
+\vskip\baselineskip\noindent
+which comes to 36 nybbles, or 18 bytes. This is shorter than the 73 bytes
+required for the bit map, so we use the run count packing.
+
+@ The short form of the character preamble is used because all of the
+parameters fit in their respective lengths. The packet length is therefore
+18 bytes for the raster, plus
+eight bytes for the character preamble parameters following the character
+code, or 26. The |tfm| width for this character is 640796, or {\tt 9C71C} in
+hexadecimal. The horizontal escapement is 25 pixels. The flag byte is
+88 hex, indicating the short preamble, the black first count, and the
+|dyn_f| value of 8. The final total character packet, in hexadecimal, is:
+\vskip\baselineskip
+$$\vbox{\halign{\hfil #\quad&&{\tt #\ }\cr
+Flag byte&88\cr
+Packet length&1A\cr
+Character code&04\cr
+|tfm| width&09&C7&1C\cr
+Horizontal escapement (pixels)&19\cr
+Width of bit map&14\cr
+Height of bit map&1D\cr
+Horizontal offset (signed)&FE\cr
+Vertical offset&1C\cr
+Raster data&D9&E2&97\cr
+&2B&1E&22\cr
+&93&24&E3\cr
+&97&4E&22\cr
+&93&2C&5E\cr
+&22&97&D9\cr}}$$
+
+@ This format was written by Tomas Rokicki in August, 1985.
+
+@* Input and output.
+There are two types of files that this program must deal with---standard
+text files and files of bytes (packed files and generic font files.)
+For our purposes, we shall consider an eight-bit byte to consist of the
+values |0..255|. If your system does not pack these values to a byte, it is
+no major difficulty; you must only insure that the input function
+|pk_byte| can read packed bytes, and that the output function |gf_byte|
+packs the bytes to be shipped.
+
+@<Types...@>=
+@!eight_bits=0..255; {packed file byte}
+@!byte_file=packed file of eight_bits ; {for packed file words}
+@^system dependancies@>
+
+@ @<Glob...@>=
+@!gf_file,@!pk_file:byte_file; {the I/O streams}
+@^system dependencies@>
+
+@ To prepare these files for input, we |reset| them. An extension of
+\PASCAL\ is needed in the case of |gf_file|, since we want to associate
+it with external files whose names are specified dynamically (i.e., not
+known at compile time). The following code assumes that `|reset(f,s)|'
+does this, when |f| is a file variable and |s| is a string variable that
+specifies the file name. If |eof(f)| is true immediately after
+|reset(f,s)| has acted, we assume that no file named |s| is accessible.
+@^system dependencies@>
+
+@p procedure open_gf_file; {prepares to write packed bytes in a |gf_file|}
+begin rewrite(gf_file,gf_name);
+gf_loc := 0 ;
+end;
+@#
+procedure open_pk_file; {prepares the input for reading}
+begin reset(pk_file,pk_name);
+pk_loc := 0 ;
+end;
+
+@ We need a place to store the names of the input and output files, as well
+as a byte counter for the output file.
+
+@<Glob...@>=
+@!gf_name,@!pk_name:packed array[1..name_length] of char; {names of input
+ and output files}
+@!gf_loc, @!pk_loc:integer; {how many bytes have we sent?}
+
+@ We need a procedure that will write a byte to the \.{GF} file. If the
+particular system
+@^system dependencies@>
+requires buffering, here is the place to do it.
+
+@p procedure gf_byte (i : integer) ;
+begin gf_file^ := i ;
+put(gf_file) ;
+incr(gf_loc) ;
+end;
+
+@ We also need a function that will get a single byte from the \.{PK} file.
+Again, buffering may be done in this procedure.
+
+@p function pk_byte : eight_bits ;
+var nybble, temp : eight_bits ;
+begin
+ temp := pk_file^ ;
+ get(pk_file) ;
+ pk_loc := pk_loc + 1 ;
+ pk_byte := temp ;
+end ;
+
+@ Now we are ready to open the files and write the identification of the
+pixel file.
+
+@<Open files@>=
+open_pk_file ;
+open_gf_file
+
+@ As we are reading the packed file, we often need to fetch 16 and 32 bit
+quantities. Here we have two procedures to do this.
+
+@p function signed_byte : integer ;
+var a : integer ;
+begin
+ a := pk_byte ;
+ if a > 127 then
+ a := a - 256 ;
+ signed_byte := a ;
+end ;
+@#
+function get_16 : integer ;
+var a : integer ;
+begin
+ a := pk_byte ;
+ get_16 := a * 256 + pk_byte ;
+end ;
+@#
+function signed_16 : integer ;
+var a : integer ;
+begin
+ a := signed_byte ;
+ signed_16 := a * 256 + pk_byte ;
+end ;
+@#
+function get_32 : integer ;
+var a : integer ;
+begin
+ a := get_16 ;
+ if a > 32767 then a := a - 65536 ;
+ get_32 := a * 65536 + get_16 ;
+end ;
+
+@ As we are writing the \.{GF} file, we often need to write signed and
+unsigned, one, two, three, and four-byte values. These routines give
+us that capability.
+
+@p procedure gf_sbyte(i : integer) ;
+begin
+ if i < 0 then
+ i := i + 256 ;
+ gf_byte(i) ;
+end ;
+@#
+procedure gf_16(i : integer) ;
+begin
+ gf_byte(i div 256) ;
+ gf_byte(i mod 256) ;
+end ;
+@#
+procedure gf_24(i : integer) ;
+begin
+ gf_byte(i div 65536) ;
+ gf_16(i mod 65536) ;
+end ;
+@#
+procedure gf_quad(i : integer) ;
+begin
+ if i >= 0 then begin
+ gf_byte(i div 16777216) ;
+ end else begin
+ i := (i + 1073741824) + 1073741824 ;
+ gf_byte(128 + (i div 16777216)) ;
+ end ;
+ gf_24(i mod 16777216) ;
+end ;
+
+@* Character unpacking.
+Now we deal with unpacking characters into the \.{GF} representation.
+
+@<Unpack and write character@>=
+dyn_f := flag_byte div 16 ;
+flag_byte := flag_byte mod 16 ;
+turn_on := flag_byte >= 8 ;
+if turn_on then flag_byte := flag_byte - 8 ;
+if flag_byte = 7 then
+ @<Read long character preamble@>
+else if flag_byte > 3 then
+ @<Read extended short character preamble@>
+else
+ @<Read short character preamble@> ;
+@<Calculate and check |min_m|, |max_m|, |min_n|, and |max_n|@> ;
+@<Save character locator@> ;
+@<Write character preamble@> ;
+@<Read and translate raster description@> ;
+gf_byte(eoc) ;
+last_eoc := gf_loc ;
+if end_of_packet <> pk_loc then abort('Bad pk file! Bad packet length.')
+
+@ We need a whole lot of globals used but not defined up there.
+
+@<Glob...@>=
+@!i, @!j : integer ; {index pointers}
+@!end_of_packet : integer ; {where we expect the end of the packet to be}
+@!dyn_f : integer ; {dynamic packing variable}
+@!car : integer ; {the character we are reading}
+@!tfm_width : integer ; {the TFM width of the current character}
+@!x_off, @!y_off : integer ; {the offsets for the character}
+
+@ Now we read and check the preamble of the \.{PK} file. In the preamble, we
+find the |hppp|, |design_size|, |checksum|. We write the relevant parameters
+to the \.{GF} file, including the preamble comment.
+
+@<Read preamble@>=
+if pk_byte <> pk_pre then abort('Bad pk file! pre command missing.') ;
+gf_byte(pre) ;
+if pk_byte <> pk_id then abort('Wrong version of packed file!.') ;
+gf_byte(gf_id_byte) ;
+j := pk_byte ;
+for i := 1 to j do hppp := pk_byte ;
+gf_byte(comm_length) ;
+for i := 1 to comm_length do
+ gf_byte(xord[comment[i]]) ;
+design_size := get_32 ;
+checksum := get_32 ;
+hppp := get_32 ; vppp := get_32 ;
+if hppp <> vppp then print_ln('Warning: aspect ratio not 1:1!') ;
+magnification := round(hppp * 72.27 * 5 / 65536) ;
+last_eoc := gf_loc
+
+@ Of course, we need to define the above variables.
+
+@<Glob...@>=
+@!comment : packed array[1..comm_length] of char ;
+@!magnification : integer ; {resolution at which pixel file is prepared}
+@!design_size : integer ; {design size in \.{FIXes}}
+@!checksum : integer ; {checksum of pixel file}
+@!hppp, @!vppp : integer ; {horizontal and vertical points per inch}
+
+@ @<Set init...@>=
+comment := preamble_comment ;
+
+@ Now, the character preamble reading modules. First, we have the general
+case: the long character preamble format.
+
+@<Read long character preamble@>=
+begin
+ packet_length := get_32 ; car := get_32 ;
+ end_of_packet := packet_length + pk_loc ;
+ tfm_width := get_32 ;
+ hor_esc := get_32 ;
+ ver_esc := get_32 ;
+ c_width := get_32 ;
+ c_height := get_32 ;
+ word_width := (c_width + 31) div 32 ;
+ x_off := get_32 ;
+ y_off := get_32 ;
+end
+
+@ This module reads the character preamble with double byte parameters.
+
+@<Read extended short character preamble@>=
+begin
+ packet_length := (flag_byte - 4) * 65536 + get_16 ;
+ car := pk_byte ;
+ end_of_packet := packet_length + pk_loc ;
+ i := pk_byte ;
+ tfm_width := i * 65536 + get_16 ;
+ hor_esc := get_16 * 65536 ;
+ ver_esc := 0 ;
+ c_width := get_16 ;
+ c_height := get_16 ;
+ word_width := (c_width + 31) div 32 ;
+ x_off := signed_16 ;
+ y_off := signed_16 ;
+end
+
+@ Here we read the most common character preamble, that with single byte
+parameters.
+
+@<Read short character preamble@>=
+begin
+ packet_length := flag_byte * 256 + pk_byte ;
+ car := pk_byte ;
+ end_of_packet := packet_length + pk_loc ;
+ i := pk_byte ;
+ tfm_width := i * 65536 + get_16 ;
+ hor_esc := pk_byte * 65536 ;
+ ver_esc := 0 ;
+ c_width := pk_byte ;
+ c_height := pk_byte ;
+ word_width := (c_width + 31) div 32 ;
+ x_off := signed_byte ;
+ y_off := signed_byte ;
+end
+
+@ Some more globals:
+
+@<Glob...@>=
+@!c_height, @!c_width : integer ; {sizes of the character glyphs}
+@!word_width : integer ; {width of character in raster words}
+@!hor_esc, @!ver_esc : integer ; {the character escapement}
+@!packet_length : integer ; {the length of the packet in bytes}
+@!last_eoc : integer ; {the last end of character}
+
+@ The \.{GF} format requires the minimum and maximum |m| and |n|
+values in the postamble, so we generate them here. One thing
+that should be noted, here. The value |max_n-min_n| will be the
+height of the character glyph, but for the width, you need to
+use |max_m-min_m-1|, because of the peculiarities of the \.{GF}
+format.
+
+@<Calculate and check |min_m|, |max_m|, |min_n|, and |max_n|@>=
+if (c_height = 0) or (c_width = 0) then begin
+ c_height := 0 ; c_width := 0 ; x_off := 0 ; y_off := 0 ;
+end ;
+min_m := - x_off ;
+if min_m < mmin_m then
+ mmin_m := min_m ;
+max_m := c_width + min_m ;
+if max_m > mmax_m then
+ mmax_m := max_m ;
+min_n := y_off - c_height + 1 ;
+max_n := y_off ;
+if min_n > max_n then
+ min_n := max_n ;
+if min_n < mmin_n then
+ mmin_n := min_n ;
+if max_n > mmax_n then
+ mmax_n := max_n
+
+@ We have to declare the variables which hold the bounding box. We
+also need the arrays that hold the back pointers to the characters,
+the horizontal and vertical escapements, and the \.{TFM} widths.
+
+@<Glob...@>=
+@!min_m, @!max_m, @!min_n, @!max_n : integer ;
+@!mmin_m, @!mmax_m, @!mmin_n, @!mmax_n : integer ;
+@!char_pointer, @!s_tfm_width : array [0..255] of integer ;
+@!s_hor_esc, @!s_ver_esc : array [0..255] of integer ;
+@!this_char_ptr : integer ;
+
+@ We initialize these bounding box values to be ridiculous, and say
+that there were no characters seen yet.
+
+@<Set init...@>=
+mmin_m := 999999 ;
+mmin_n := 999999 ;
+mmax_m := -999999 ;
+mmax_n := -999999 ;
+for i := 0 to 255 do
+ char_pointer[i] := -1 ;
+
+@ This module takes care of the simple job of writing the character
+preamble, after picking one to fit.
+
+@<Write character preamble@>=
+begin
+ if (char_pointer[car mod 256] = -1) and
+ (car >= 0) and (car < 256) and
+ (max_m >= 0) and (max_m < 256) and
+ (max_n >= 0) and (max_n < 256) and
+ (max_m >= min_m) and (max_n >= min_n) and
+ (max_m < min_m + 256) and (max_n < min_n + 256) then begin
+ char_pointer[car mod 256] := this_char_ptr ;
+ gf_byte(boc1) ;
+ gf_byte(car) ;
+ gf_byte(max_m - min_m) ;
+ gf_byte(max_m) ;
+ gf_byte(max_n - min_n) ;
+ gf_byte(max_n) ;
+ end else begin
+ gf_byte(boc) ;
+ gf_quad(car) ;
+ gf_quad(char_pointer[car mod 256]) ;
+ char_pointer[car mod 256] := this_char_ptr ;
+ gf_quad(min_m) ;
+ gf_quad(max_m) ;
+ gf_quad(min_n) ;
+ gf_quad(max_n) ;
+ end ;
+end
+
+@ In this routine we either save or check the current character
+parameters.
+
+@<Save character locator@>=
+begin
+ i := car mod 256 ;
+ if (char_pointer[i] = -1) then begin
+ s_ver_esc[i] := ver_esc ;
+ s_hor_esc[i] := hor_esc ;
+ s_tfm_width[i] := tfm_width ;
+ end else begin
+ if (s_ver_esc[i] <> ver_esc) or
+ (s_hor_esc[i] <> hor_esc) or
+ (s_tfm_width[i] <> tfm_width) then
+ print_ln('Two characters mod ', i:1,' have mismatched parameters') ;
+ end ;
+end
+
+@ And another module to write out those character locators we have so
+carefully saved up the information for.
+
+@<Write character locators@>=
+for i := 0 to 255 do
+ if char_pointer[i] <> -1 then begin
+ if (s_ver_esc[i] = 0) and (s_hor_esc[i] >= 0) and
+ (s_hor_esc[i] < 16777216) and (s_hor_esc[i] mod 65536 = 0) then begin
+ gf_byte(char_loc0) ;
+ gf_byte(i) ;
+ gf_byte(s_hor_esc[i] div 65536) ;
+ end else begin
+ gf_byte(char_loc) ;
+ gf_byte(i) ;
+ gf_quad(s_hor_esc[i]) ;
+ gf_quad(s_ver_esc[i]) ;
+ end ;
+ gf_quad(s_tfm_width[i]) ;
+ gf_quad(char_pointer[i]) ;
+ end
+
+@ Now we have the most important part of the program, where we actually
+interpret the commands in the raster description. First of all, we need
+a procedure to get a single nybble from the file, as well as one to get
+a single bit. We also use the |pk_packed_num| procedure defined in the
+\.{PK} file description.
+
+@p function get_nyb : integer ;
+var temp : eight_bits ;
+begin
+ if bit_weight = 0 then begin
+ input_byte := pk_byte ;
+ bit_weight := 16 ;
+ end ;
+ temp := input_byte div bit_weight ;
+ input_byte := input_byte - temp * bit_weight ;
+ bit_weight := bit_weight div 16 ;
+ get_nyb := temp ;
+end ;
+@#
+function get_bit : boolean ;
+var temp : boolean ;
+begin
+ bit_weight := bit_weight div 2 ;
+ if bit_weight = 0 then begin
+ input_byte := pk_byte ;
+ bit_weight := 128 ;
+ end ;
+ temp := input_byte >= bit_weight ;
+ if temp then
+ input_byte := input_byte - bit_weight ;
+ get_bit := temp ;
+end ;
+@<Packed number procedure@>
+
+@ Now, the globals to help communication between these procedures, and a buffer
+for the raster row counts.
+
+@<Glob...@>=
+@!input_byte : eight_bits ; {the byte we are currently decimating}
+@!bit_weight : eight_bits ; {weight of the current bit}
+@!nybble : eight_bits ; {the current nybble}
+@!row_counts : array [0..max_counts] of integer ;
+ {where the row is constructed}
+@!rcp : integer ; { the row counts pointer }
+
+@ Actually, if the character is a bit mapped character, then we
+make it look like run counts by determining the appropriate
+values ourselves. Thus, we have a routine which gets the next
+count value, below.
+
+@<Get next count value into |count|@>=
+begin
+ turn_on := not turn_on ;
+ if dyn_f = 14 then begin
+ count := 1 ;
+ done := false ;
+ while not done do begin
+ if count_down <= 0 then
+ done := true
+ else if (turn_on = get_bit) then
+ count := count + 1
+ else
+ done := true ;
+ count_down := count_down - 1 ;
+ end ;
+ end else
+ count := pk_packed_num ;
+end
+
+@ And the main procedure.
+
+@<Read and translate raster description@>=
+if (c_width > 0) and (c_height > 0) then begin
+ bit_weight := 0 ;
+ count_down := c_height * c_width - 1 ;
+ if dyn_f = 14 then
+ turn_on := get_bit ;
+ repeat_count := 0 ;
+ x_to_go := c_width ;
+ y_to_go := c_height ;
+ cur_n := c_height ;
+ count := 0 ;
+ first_on := turn_on ;
+ turn_on := not turn_on ;
+ rcp := 0 ;
+ while y_to_go > 0 do begin
+ if count = 0 then
+ @<Get next count...@> ;
+ if rcp = 0 then
+ first_on := turn_on ;
+ while count >= x_to_go do begin
+ row_counts[rcp] := x_to_go ;
+ count := count - x_to_go ;
+ for i := 0 to repeat_count do begin
+ @<Output row@> ;
+ y_to_go := y_to_go - 1 ;
+ end ;
+ repeat_count := 0 ;
+ x_to_go := c_width ;
+ rcp := 0 ;
+ if (count > 0) then
+ first_on := turn_on ;
+ end ;
+ if count > 0 then begin
+ row_counts[rcp] := count ;
+ if rcp = 0 then
+ first_on := turn_on ;
+ rcp := rcp + 1 ;
+ if rcp > max_counts then begin
+ print_ln('A character had too many run counts') ;
+ jump_out ;
+ end ;
+ x_to_go := x_to_go - count ;
+ count := 0 ;
+ end ;
+ end ;
+end
+
+@ This routine actually outputs a row to the \.{GF} file.
+
+@<Output row@>=
+if (rcp > 0) or first_on then begin
+ j := 0 ;
+ max := rcp ;
+ if not turn_on then
+ max := max - 1 ;
+ if cur_n - y_to_go = 1 then begin
+ if first_on then
+ gf_byte(new_row_0)
+ else if row_counts[0] < 165 then begin
+ gf_byte(new_row_0 + row_counts[0]) ;
+ j := j + 1 ;
+ end else
+ gf_byte(skip0) ;
+ end else if cur_n > y_to_go then begin
+ if cur_n - y_to_go < 257 then begin
+ gf_byte(skip1) ;
+ gf_byte(cur_n - y_to_go - 1) ;
+ end else begin
+ gf_byte(skip1+1) ;
+ gf_16(cur_n - y_to_go - 1) ;
+ end ;
+ if first_on then
+ gf_byte(paint_0) ;
+ end else if first_on then
+ gf_byte(paint_0) ;
+ cur_n := y_to_go ;
+ while j <= max do begin
+ if row_counts[j] < 64 then
+ gf_byte(paint_0 + row_counts[j])
+ else if row_counts[j] < 256 then begin
+ gf_byte(paint1) ;
+ gf_byte(row_counts[j]) ;
+ end else begin
+ gf_byte(paint1+1) ;
+ gf_16(row_counts[j]) ;
+ end ;
+ j := j + 1 ;
+ end ;
+end
+
+@ Here we need the array which counts down the number of bits, and
+the current state flag.
+
+@<Glob...@>=
+@!count_down : integer ; { have we run out of bits yet? }
+@!done : boolean ; { are we done yet? }
+@!max : integer ; { the maximum number of counts to output }
+@!repeat_count : integer ; {how many times to repeat the next row?}
+@!x_to_go, @!y_to_go : integer ; {how many columns/rows left?}
+@!turn_on, @!first_on : boolean ; {are we black here?}
+@!count : integer ; {how many bits of current color left?}
+@!cur_n : integer ; {what row are we at?}
+
+@ To finish the \.{GF} file, we write out a postamble, including the
+character locators that we stored away.
+
+@<Write \.{GF} postamble@>=
+j := gf_loc ;
+gf_byte(post) ;
+gf_quad(last_eoc) ;
+gf_quad(design_size) ;
+gf_quad(checksum) ;
+gf_quad(hppp) ;
+gf_quad(vppp) ;
+gf_quad(mmin_m) ;
+gf_quad(mmax_m) ;
+gf_quad(mmin_n) ;
+gf_quad(mmax_n) ;
+@<Write character locators@> ;
+gf_byte(post_post) ;
+gf_quad(j) ;
+gf_byte(gf_id_byte) ;
+for i := 0 to 3 do
+ gf_byte(223) ;
+while gf_loc mod 4 <> 0 do
+ gf_byte(223)
+
+@ We need the |flag_byte| variable.
+
+@<Glob...@>=
+@!flag_byte : integer ; {command or character flag byte}
+
+@ Another necessary procedure skips over any specials between characters
+and before and after the postamble. (It echoes the specials exactly.)
+
+@p procedure skip_specials ;
+var i, j, k : integer ;
+begin
+ this_char_ptr := gf_loc ;
+ repeat
+ flag_byte := pk_byte ;
+ if flag_byte >= 240 then
+ case flag_byte of
+ 240, 241, 242, 243 :
+begin
+ i := 0 ;
+ gf_byte(flag_byte-1) ;
+ for j := 240 to flag_byte do begin
+ k := pk_byte ;
+ gf_byte(k) ;
+ i := 256 * i + k ;
+ end ;
+ for j := 1 to i do gf_byte(pk_byte) ;
+end ;
+ 244 :
+begin
+ gf_byte(243) ;
+ gf_quad(get_32) ;
+end ;
+ 245 : begin end ;
+ 246 : begin end ;
+ 247, 248, 249, 250, 251, 252, 253, 254, 255 :
+ abort('Unexpected ', flag_byte:1,'!') ;
+ endcases ;
+ until (flag_byte < 240) or (flag_byte = pk_post) ;
+end ;
+
+@* Terminal communication.
+We must get the file names and determine whether input is to be in
+hexadecimal or binary. To do this, we use the standard input path
+name. We need a procedure to flush the input buffer. For most systems,
+this will be an empty statement. For other systems, a |print_ln| will
+provide a quick fix. We also need a routine to get a line of input from
+the terminal. On some systems, a simple |read_ln| will do. Finally,
+a macro to print a string to the first blank is required.
+
+@d flush_buffer == begin end
+@d get_line(#) == if eoln(input) then read_ln(input) ;
+ i := 1 ;
+ while not (eoln(input) or eof(input)) do begin
+ #[i] := input^ ;
+ incr(i) ;
+ get(input) ;
+ end ;
+ #[i] := ' '
+
+@ @p procedure dialog ;
+var i : integer ; {index variable}
+buffer : packed array [1..name_length] of char; {input buffer}
+begin
+ for i := 1 to name_length do begin
+ gf_name[i] := ' ' ;
+ pk_name[i] := ' ' ;
+ end;
+ print('Input file name: ') ;
+ flush_buffer ;
+ get_line(pk_name) ;
+ print('Output file name: ') ;
+ flush_buffer ;
+ get_line(gf_name) ;
+end ;
+
+@* The main program.
+Now that we have all the pieces written, let us put them together.
+
+@p begin
+initialize ;
+dialog ;
+@<Open files@> ;
+@<Read preamble@> ;
+skip_specials ;
+while flag_byte <> pk_post do begin
+ @<Unpack and write character@> ;
+ skip_specials ;
+end ;
+while not eof(pk_file) do i := pk_byte ;
+@<Write \.{GF} postamble@> ;
+print_ln(pk_loc:1,' bytes unpacked to ',gf_loc:1,' bytes.');
+final_end :
+end .
+
+@* System-dependent changes.
+This section should be replaced, if necessary, by changes to the program
+that are necessary to make \.{PKtoGF} work at a particular installation.
+Any additional routines should be inserted here.
+@^system dependencies@>
+
+@* Index.
+Pointers to error messages appear here together with the section numbers
+where each ident\-i\-fier is used.
diff --git a/systems/stanford/pkware/pktype.web b/systems/stanford/pkware/pktype.web
new file mode 100644
index 0000000000..6323dc453a
--- /dev/null
+++ b/systems/stanford/pkware/pktype.web
@@ -0,0 +1,1160 @@
+% This program is not copyrighted and can be used freely.
+% PKtype.web
+%
+% PKtype verifies the correctness of a PK file.
+%
+% Preliminary 0.0 version: May, 1985
+% First release, 0.9 version: 8 May 1985
+% Updated to reflect new pk format, 2.0 version: 25 July 1985
+% Updated again for new pk format, 2.1 version: 15 August 1985
+% Docmentation updated, 2.2 version: 17 November 1987
+%
+% slight editing to correspond with MFware report -- don, 21 October 89
+% additional editing suggested by P Breitenlohner -- don, 18 November 89
+% Corrected two typos -- 21 December 96 (don)
+% More typos -- 23 April 20 (tgr/karl)
+
+\def\versiondate{23 April 2020}
+%
+\def\hang{\hangindent 3em\noindent\ignorespaces}
+\font\ninerm=cmr9
+\font\logo=logo10 % font used for the METAFONT logo
+\def\MF{{\logo META}\-{\logo FONT}}
+\def\PASCAL{Pascal}
+\def\tamu{Texas A\char38 M}
+\def\(#1){} % this is used to make section names sort themselves better
+\def\9#1{} % this is used for sort keys in the index
+\def\title{PKtype}
+\def\contentspagenumber{0}
+\def\topofcontents{\null
+ \def\titlepage{F} % include headline on the contents page
+ \def\rheader{\mainfont\hfil \contentspagenumber}
+ \vfill
+ \centerline{\titlefont The {\ttitlefont PKtype} processor}
+ \vskip 15pt
+ \centerline{(Version 2.3, \versiondate)}
+ \vfill}
+\def\botofcontents{\vfill
+ \centerline{\hsize 5in\baselineskip9pt
+ \vbox{\ninerm\noindent
+ The preparation of this report
+ was supported in part by the National Science
+ Foundation under grants IST-8201926 and MCS-8300984,
+ and by the System Development Foundation. `\TeX' is a
+ trademark of the American Mathematical Society.}}}
+\pageno=\contentspagenumber \advance\pageno by 1
+
+@* Introduction.
+This program reads a \.{PK} file, verifies that it is in the correct
+format, and writes it in textual format.
+
+@ The |banner| string defined here should be changed whenever \.{PKtype}
+gets modified.
+
+@d banner=='This is PKtype, Version 2.3' {printed when the program starts}
+
+@ This program is written in standard \PASCAL, except where it is necessary
+to use extensions; for example, \.{PKtype} must read files whose names
+are dynamically specified, and that would be impossible in pure \PASCAL.
+
+@d othercases == others: {default for cases not listed explicitly}
+@d endcases == @+end {follows the default case in an extended |case| statement}
+@f othercases == else
+@f endcases == end
+
+@ Both the input and output come from binary files. On line interaction
+is handled through \PASCAL's standard |input| and |output| files. Two macros
+are used to write to the type file, so this output can easily be redirected.
+
+@d print_ln(#)==write_ln(output,#)
+@d print(#)==write(output,#)
+@d t_print_ln(#)==write_ln(typ_file,#)
+@d t_print(#)==write(typ_file,#)
+
+@p program PKtype(@!input,@!output);
+label @<Labels in the outer block@>@/
+const @<Constants in the outer block@>@/
+type @<Types in the outer block@>@/
+var @<Globals in the outer block@>@/
+procedure initialize; {this procedure gets things started properly}
+ var i:integer; {loop index for initializations}
+ begin print_ln(banner);@/
+ @<Set initial values@>@/
+ end;
+
+@ If the program has to stop prematurely, it goes to the
+`|final_end|'.
+
+@d final_end=9999 {label for the end of it all}
+
+@<Labels...@>=final_end;
+
+@ These constants determine the maximum length of a file name and the length
+of the terminal line, as well as the widest character that can be translated.
+@^system dependencies@>
+
+@<Constants...@>=
+@!name_length=80; {maximum length of a file name}
+@!terminal_line_length=132; {maximum length of an input line}
+
+@ Here are some macros for common programming idioms.
+
+@d incr(#) == #:=#+1 {increase a variable by unity}
+@d decr(#) == #:=#-1 {decrease a variable by unity}
+@d do_nothing == {empty statement}
+
+@ It is possible that a malformed packed file (heaven forbid!) or some other
+error might be detected by this program. Such errors might occur in a deeply
+nested procedure, so the procedure called |jump_out| has been added to transfer
+to the very end of the program with an error message.
+
+@d abort(#)==begin print_ln(' ',#); t_print_ln(' ',#); jump_out; end
+
+@p procedure jump_out;
+begin goto final_end;
+end;
+
+@* The character set.
+Like all programs written with the \.{WEB} system, \.{PKtype} can be
+used with any character set. But it uses ASCII code internally, because
+the programming for portable input-output is easier when a fixed internal
+code is used.
+
+The next few sections of \.{PKtype} have therefore been copied from the
+analogous ones in the \.{WEB} system routines. They have been considerably
+simplified, since \.{PKtype} need not deal with the controversial
+ASCII codes less than @'40 or greater than @'176.
+
+@<Types...@>=
+@!ASCII_code=" ".."~"; {a subrange of the integers}
+
+@ The original \PASCAL\ compiler was designed in the late 60s, when six-bit
+character sets were common, so it did not make provision for lower case
+letters. Nowadays, of course, we need to deal with both upper and lower case
+alphabets in a convenient way, especially in a program like \.{PKtype}.
+So we shall assume that the \PASCAL\ system being used for \.{PKtype}
+has a character set containing at least the standard visible characters
+of ASCII code (|"!"| through |"~"|).
+
+Some \PASCAL\ compilers use the original name |char| for the data type
+associated with the characters in text files, while other \PASCAL s
+consider |char| to be a 64-element subrange of a larger data type that has
+some other name. In order to accommodate this difference, we shall use
+the name |text_char| to stand for the data type of the characters in the
+output file. We shall also assume that |text_char| consists of
+the elements |chr(first_text_char)| through |chr(last_text_char)|,
+inclusive. The following definitions should be adjusted if necessary.
+@^system dependencies@>
+
+@d text_char == char {the data type of characters in text files}
+@d first_text_char=0 {ordinal number of the smallest element of |text_char|}
+@d last_text_char=127 {ordinal number of the largest element of |text_char|}
+
+@<Types...@>=
+@!text_file=packed file of text_char;
+
+@ The \.{PKtype} processor converts between ASCII code and
+the user's external character set by means of arrays |xord| and |xchr|
+that are analogous to \PASCAL's |ord| and |chr| functions.
+
+@<Globals...@>=
+@!xord: array [text_char] of ASCII_code;
+ {specifies conversion of input characters}
+@!xchr: array [0..255] of text_char;
+ {specifies conversion of output characters}
+
+@ Under our assumption that the visible characters of standard ASCII are
+all present, the following assignment statements initialize the
+|xchr| array properly, without needing any system-dependent changes.
+
+@<Set init...@>=
+for i:=0 to @'37 do xchr[i]:='?';
+xchr[@'40]:=' ';
+xchr[@'41]:='!';
+xchr[@'42]:='"';
+xchr[@'43]:='#';
+xchr[@'44]:='$';
+xchr[@'45]:='%';
+xchr[@'46]:='&';
+xchr[@'47]:='''';@/
+xchr[@'50]:='(';
+xchr[@'51]:=')';
+xchr[@'52]:='*';
+xchr[@'53]:='+';
+xchr[@'54]:=',';
+xchr[@'55]:='-';
+xchr[@'56]:='.';
+xchr[@'57]:='/';@/
+xchr[@'60]:='0';
+xchr[@'61]:='1';
+xchr[@'62]:='2';
+xchr[@'63]:='3';
+xchr[@'64]:='4';
+xchr[@'65]:='5';
+xchr[@'66]:='6';
+xchr[@'67]:='7';@/
+xchr[@'70]:='8';
+xchr[@'71]:='9';
+xchr[@'72]:=':';
+xchr[@'73]:=';';
+xchr[@'74]:='<';
+xchr[@'75]:='=';
+xchr[@'76]:='>';
+xchr[@'77]:='?';@/
+xchr[@'100]:='@@';
+xchr[@'101]:='A';
+xchr[@'102]:='B';
+xchr[@'103]:='C';
+xchr[@'104]:='D';
+xchr[@'105]:='E';
+xchr[@'106]:='F';
+xchr[@'107]:='G';@/
+xchr[@'110]:='H';
+xchr[@'111]:='I';
+xchr[@'112]:='J';
+xchr[@'113]:='K';
+xchr[@'114]:='L';
+xchr[@'115]:='M';
+xchr[@'116]:='N';
+xchr[@'117]:='O';@/
+xchr[@'120]:='P';
+xchr[@'121]:='Q';
+xchr[@'122]:='R';
+xchr[@'123]:='S';
+xchr[@'124]:='T';
+xchr[@'125]:='U';
+xchr[@'126]:='V';
+xchr[@'127]:='W';@/
+xchr[@'130]:='X';
+xchr[@'131]:='Y';
+xchr[@'132]:='Z';
+xchr[@'133]:='[';
+xchr[@'134]:='\';
+xchr[@'135]:=']';
+xchr[@'136]:='^';
+xchr[@'137]:='_';@/
+xchr[@'140]:='`';
+xchr[@'141]:='a';
+xchr[@'142]:='b';
+xchr[@'143]:='c';
+xchr[@'144]:='d';
+xchr[@'145]:='e';
+xchr[@'146]:='f';
+xchr[@'147]:='g';@/
+xchr[@'150]:='h';
+xchr[@'151]:='i';
+xchr[@'152]:='j';
+xchr[@'153]:='k';
+xchr[@'154]:='l';
+xchr[@'155]:='m';
+xchr[@'156]:='n';
+xchr[@'157]:='o';@/
+xchr[@'160]:='p';
+xchr[@'161]:='q';
+xchr[@'162]:='r';
+xchr[@'163]:='s';
+xchr[@'164]:='t';
+xchr[@'165]:='u';
+xchr[@'166]:='v';
+xchr[@'167]:='w';@/
+xchr[@'170]:='x';
+xchr[@'171]:='y';
+xchr[@'172]:='z';
+xchr[@'173]:='{';
+xchr[@'174]:='|';
+xchr[@'175]:='}';
+xchr[@'176]:='~';
+for i:=@'177 to 255 do xchr[i]:='?';
+
+@ The following system-independent code makes the |xord| array contain a
+suitable inverse to the information in |xchr|.
+
+@<Set init...@>=
+for i:=first_text_char to last_text_char do xord[chr(i)]:=@'40;
+for i:=" " to "~" do xord[xchr[i]]:=i;
+
+@* Packed file format.
+The packed file format is a compact representation of the data contained in a
+\.{GF} file. The information content is the same, but packed (\.{PK}) files
+are almost always less than half the size of their \.{GF} counterparts. They
+are also easier to convert into a raster representation because they do not
+have a profusion of \\{paint}, \\{skip}, and \\{new\_row} commands to be
+separately interpreted. In addition, the \.{PK} format expressly forbids
+\&{special} commands within a character. The minimum bounding box for each
+character is explicit in the format, and does not need to be scanned for as in
+the \.{GF} format. Finally, the width and escapement values are combined with
+the raster information into character ``packets'', making it simpler in many
+cases to process a character.
+
+A \.{PK} file is organized as a stream of 8-bit bytes. At times, these bytes
+might be split into 4-bit nybbles or single bits, or combined into multiple
+byte parameters. When bytes are split into smaller pieces, the `first' piece
+is always the most significant of the byte. For instance, the first bit of
+a byte is the bit with value 128; the first nybble can be found by dividing
+a byte by 16. Similarly, when bytes are combined into multiple byte
+parameters, the first byte is the most significant of the parameter. If the
+parameter is signed, it is represented by two's-complement notation.
+
+The set of possible eight-bit values is separated into two sets, those that
+introduce a character definition, and those that do not. The values that
+introduce a character definition range from 0 to 239; byte values
+above 239 are interpreted as commands. Bytes that introduce character
+definitions are called flag bytes, and various fields within the byte indicate
+various things about how the character definition is encoded. Command bytes
+have zero or more parameters, and can never appear within a character
+definition or between parameters of another command, where they would be
+interpreted as data.
+
+A \.{PK} file consists of a preamble, followed by a sequence of one or more
+character definitions, followed by a postamble. The preamble command must
+be the first byte in the file, followed immediately by its parameters.
+Any number of character definitions may follow, and any command but the
+preamble command and the postamble command may occur between character
+definitions. The very last command in the file must be the postamble.
+
+@ The packed file format is intended to be easy to read and interpret by
+device drivers. The small size of the file reduces the input/output overhead
+each time a font is loaded. For those drivers that load and save each font
+file into memory, the small size also helps reduce the memory requirements.
+The length of each character packet is specified, allowing the character raster
+data to be loaded into memory by simply counting bytes, rather than
+interpreting each command; then, each character can be interpreted on a demand
+basis. This also makes it possible for a driver to skip a particular
+character quickly if it knows that the character is unused.
+
+@ First, the command bytes will be presented; then the format of the
+character definitions will be defined. Eight of the possible sixteen
+commands (values 240 through 255) are currently defined; the others are
+reserved for future extensions. The commands are listed below. Each command
+is specified by its symbolic name (e.g., \\{pk\_no\_op}), its opcode byte,
+and any parameters. The parameters are followed by a bracketed number
+telling how many bytes they occupy, with the number preceded by a plus sign if
+it is a signed quantity. (Four byte quantities are always signed, however.)
+
+\yskip\hang|pk_xxx1| 240 |k[1]| |x[k]|. This command is undefined in general;
+it functions as a $(k+2)$-byte \\{no\_op} unless special \.{PK}-reading
+programs are being used. \MF\ generates \\{xxx} commands when encountering
+a \&{special} string. It is recommended that |x| be a string having the form
+of a keyword followed by possible parameters relevant to that keyword.
+
+\yskip\hang\\{pk\_xxx2} 241 |k[2]| |x[k]|. Like |pk_xxx1|, but |0<=k<65536|.
+
+\yskip\hang\\{pk\_xxx3} 242 |k[3]| |x[k]|. Like |pk_xxx1|, but
+|0<=k<@t$2^{24}$@>|. \MF\ uses this when sending a \&{special} string whose
+length exceeds~255.
+
+\yskip\hang\\{pk\_xxx4} 243 |k[4]| |x[k]|. Like |pk_xxx1|, but |k| can be
+ridiculously large; |k| mustn't be negative.
+
+\yskip\hang|pk_yyy| 244 |y[4]|. This command is undefined in general; it
+functions as a five-byte \\{no\_op} unless special \.{PK} reading programs
+are being used. \MF\ puts |scaled| numbers into |yyy|'s, as a result of
+\&{numspecial} commands; the intent is to provide numeric parameters to
+\\{xxx} commands that immediately precede.
+
+\yskip\hang|pk_post| 245. Beginning of the postamble. This command is
+followed by enough |pk_no_op| commands to make the file a multiple
+of four bytes long. Zero through three bytes are usual, but any number
+is allowed.
+This should make the file easy to read on machines that pack four bytes to
+a word.
+
+\yskip\hang|pk_no_op| 246. No operation, do nothing. Any number of
+|pk_no_op|'s may appear between \.{PK} commands, but a |pk_no_op| cannot be
+inserted between a command and its parameters, between two parameters, or
+inside a character definition.
+
+\yskip\hang|pk_pre| 247 |i[1]| |k[1]| |x[k]| |ds[4]| |cs[4]| |hppp[4]|
+|vppp[4]|. Preamble command. Here, |i| is the identification byte of the
+file, currently equal to 89. The string |x| is merely a comment, usually
+indicating the source of the \.{PK} file. The parameters |ds| and |cs| are
+the design size of the file in $1/2^{20}$ points, and the checksum of the
+file, respectively. The checksum should match the \.{TFM} file and the
+\.{GF} files for this font. Parameters |hppp| and |vppp| are the ratios
+of pixels per point, horizontally and vertically, multiplied by $2^{16}$; they
+can be used to correlate the font with specific device resolutions,
+magnifications, and ``at sizes''. Usually, the name of the \.{PK} file is
+formed by concatenating the font name (e.g., cmr10) with the resolution at
+which the font is prepared in pixels per inch multiplied by the magnification
+factor, and the letters \.{pk}. For instance, cmr10 at 300 dots per inch
+should be named \.{cmr10.300pk}; at one thousand dots per inch and magstephalf,
+it should be named \.{cmr10.1095pk}.
+
+@ We put a few of the above opcodes into definitions for symbolic use by
+this program.
+
+@d pk_id = 89 {the version of \.{PK} file described}
+@d pk_xxx1 = 240 {\&{special} commands}
+@d pk_yyy = 244 {\&{numspecial} commands}
+@d pk_post = 245 {postamble}
+@d pk_no_op = 246 {no operation}
+@d pk_pre = 247 {preamble}
+@d pk_undefined == 248, 249, 250, 251, 252, 253, 254, 255
+
+@ The \.{PK} format has two conflicting goals: to pack character raster and
+size information as compactly as possible, while retaining ease of translation
+into raster and other forms. A suitable compromise was found in the use of
+run-encoding of the raster information. Instead of packing the individual
+bits of the character, we instead count the number of consecutive `black' or
+`white' pixels in a horizontal raster row, and then encode this number. Run
+counts are found for each row from left to right, traversing rows from the
+top to bottom. This is essentially the way the \.{GF} format works.
+Instead of presenting each row individually, however, we concatenate all
+of the horizontal raster rows into one long string of pixels, and encode this
+row. With knowledge of the width of the bit-map, the original character glyph
+can easily be reconstructed. In addition, we do not need special commands to
+mark the end of one row and the beginning of the next.
+
+Next, we place the burden of finding the minimum bounding box on the part
+of the font generator, since the characters will usually be used much more
+often than they are generated. The minimum bounding box is the smallest
+rectangle that encloses all `black' pixels of a character. We also
+eliminate the need for a special end of character marker, by supplying
+exactly as many bits as are required to fill the minimum bounding box, from
+which the end of the character is implicit.
+
+Let us next consider the distribution of the run counts. Analysis of several
+dozen pixel files at 300 dots per inch yields a distribution peaking at four,
+falling off slowly until ten, then a bit more steeply until twenty, and then
+asymptotically approaching the horizontal. Thus, the great majority of our
+run counts will fit in a four-bit nybble. The eight-bit byte is attractive for
+our run-counts, as it is the standard on many systems; however, the wasted four
+bits in the majority of cases seem a high price to pay. Another possibility
+is to use a Huffman-type encoding scheme with a variable number of bits for
+each run-count; this was rejected because of the overhead in fetching and
+examining individual bits in the file. Thus, the character raster definitions
+in the \.{PK} file format are based on the four-bit nybble.
+
+@ An analysis of typical pixel files yielded another interesting statistic:
+Fully 37\char`\%\
+of the raster rows were duplicates of the previous row. Thus, the \.{PK}
+format allows the specification of repeat counts, which indicate how many times
+a horizontal raster row is to be repeated. These repeated rows are taken out
+of the character glyph before individual rows are concatenated into the long
+string of pixels.
+
+For elegance, we disallow a run count of zero. The case of a null raster
+description should be gleaned from the character width and height being equal
+to zero, and no raster data should be read. No other zero counts are ever
+necessary. Also, in the absence of repeat counts, the repeat value is set to
+be zero (only the original row is sent.) If a repeat count is seen, it takes
+effect on the current row. The current row is defined as the row on which the
+first pixel of the next run count will lie. The repeat count is set back to
+zero when the last pixel in the current row is seen, and the row is sent out.
+
+This poses a problem for entirely black and entirely white rows, however. Let
+us say that the current row ends with four white pixels, and then we have five
+entirely empty rows, followed by a black pixel at the beginning of the next
+row, and the character width is ten pixels. We would like to use a repeat
+count, but there is no legal place to put it. If we put it before the white
+run count, it will apply to the current row. If we put it after, it applies
+to the row with the black pixel at the beginning. Thus, entirely white or
+entirely black repeated rows are always packed as large run counts (in this
+case, a white run count of 54) rather than repeat counts.
+
+@ Now we turn our attention to the actual packing of the run counts and
+repeat counts into nybbles. There are only sixteen possible nybble values.
+We need to indicate run counts and repeat counts. Since the run counts are
+much more common, we will devote the majority of the nybble values to them.
+We therefore indicate a repeat count by a nybble of 14 followed by a packed
+number, where a packed number will be explained later. Since the repeat
+count value of one is so common, we indicate a repeat one command by a single
+nybble of 15. A 14 followed by the packed number 1 is still legal for a
+repeat one count. The run counts are coded directly as packed
+numbers.
+
+For packed numbers, therefore, we have the nybble values 0 through 13. We
+need to represent the positive integers up to, say, $2^{31}-1$. We would
+like the more common smaller numbers to take only one or two nybbles, and
+the infrequent large numbers to take three or more. We could therefore
+allocate one nybble value to indicate a large run count taking three or more
+nybbles. We do this with the value 0.
+
+@ We are left with the values 1 through 13. We can allocate some of these, say
+|dyn_f|, to be one-nybble run counts.
+These will work for the run counts |1..dyn_f|. For subsequent run
+counts, we will use a nybble greater than |dyn_f|, followed by a second nybble,
+whose value can run from 0 through 15. Thus, the two-nybble values will
+run from |dyn_f+1..(13-dyn_f)*16+dyn_f|. We have our definition of large run
+count values now, being all counts greater than |(13-dyn_f)*16+dyn_f|.
+
+We can analyze our several dozen pixel files and determine an optimal value of
+|dyn_f|, and use this value for all of the characters. Unfortunately, values
+of |dyn_f| that pack small characters well tend to pack the large characters
+poorly, and values that pack large characters well are not efficient for the
+smaller characters. Thus, we choose the optimal |dyn_f| on a character basis,
+picking the value that will pack each individual character in the smallest
+number of nybbles. Legal values of |dyn_f| run from 0 (with no one-nybble run
+counts) to 13 (with no two-nybble run counts).
+
+@ Our only remaining task in the coding of packed numbers is the large run
+counts. We use a scheme suggested by D.~E.~Knuth
+@^Knuth, Donald Ervin@>
+that simply and elegantly represents arbitrarily large values. The
+general scheme to represent an integer |i| is to write its hexadecimal
+representation, with leading zeros removed. Then we count the number of
+digits, and prepend one less than that many zeros before the hexadecimal
+representation. Thus, the values from one to fifteen occupy one nybble;
+the values sixteen through 255 occupy three, the values 256 through 4095
+require five, etc.
+
+For our purposes, however, we have already represented the numbers one
+through |(13-dyn_f)*16+dyn_f|. In addition, the one-nybble values have
+already been taken by our other commands, which means that only the values
+from sixteen up are available to us for long run counts. Thus, we simply
+normalize our long run counts, by subtracting |(13-dyn_f)*16+dyn_f+1| and
+adding 16, and then we represent the result according to the scheme above.
+
+@ The final algorithm for decoding the run counts based on the above scheme
+looks like this, assuming that a procedure called \\{get\_nyb} is available
+to get the next nybble from the file, and assuming that the global
+|repeat_count| indicates whether a row needs to be repeated. Note that this
+routine is recursive, but since a repeat count can never directly follow
+another repeat count, it can only be recursive to one level.
+
+@<Packed number procedure@>=
+function pk_packed_num : integer ;
+var i, @!j : integer ;
+begin
+ i := get_nyb ;
+ if i = 0 then begin
+ repeat j := get_nyb ; incr(i) ; until j <> 0 ;
+ while i > 0 do begin j := j * 16 + get_nyb ; decr(i) ; end ;
+ pk_packed_num := j - 15 + (13-dyn_f)*16 + dyn_f ;
+ end else if i <= dyn_f then
+ pk_packed_num := i
+ else if i < 14 then
+ pk_packed_num := (i-dyn_f-1)*16+get_nyb+dyn_f+1
+ else begin
+ if repeat_count <> 0 then abort('Second repeat count for this row!') ;
+@.Second repeat count...@>
+ repeat_count := 1; {prevent recursion more than one level}
+ if i = 14 then repeat_count := pk_packed_num;
+ send_out(true, repeat_count) ;
+ pk_packed_num := pk_packed_num ;
+ end ;
+end ;
+
+@ For low resolution fonts, or characters with `gray' areas, run encoding can
+often make the character many times larger. Therefore, for those characters
+that cannot be encoded efficiently with run counts, the \.{PK} format allows
+bit-mapping of the characters. This is indicated by a |dyn_f| value of
+14. The bits are packed tightly, by concatenating all of the horizontal raster
+rows into one long string, and then packing this string eight bits to a byte.
+The number of bytes required can be calculated by |(width*height+7) div 8|.
+This format should only be used when packing the character by run counts takes
+more bytes than this, although, of course, it is legal for any character.
+Any extra bits in the last byte should be set to zero.
+
+@ At this point, we are ready to introduce the format for a character
+descriptor. It consists of three parts: a flag byte, a character preamble,
+and the raster data. The most significant four bits of the flag byte
+yield the |dyn_f| value for that character. (Notice that only values of
+0 through 14 are legal for |dyn_f|, with 14 indicating a bit mapped character;
+thus, the flag bytes do not conflict with the command bytes, whose upper nybble
+is always 15.) The next bit (with weight 8) indicates whether the first run
+count is a black count or a white count, with a one indicating a black count.
+For bit-mapped characters, this bit should be set to a zero. The next bit
+(with weight 4) indicates whether certain later parameters (referred to as size
+parameters) are given in one-byte or two-byte quantities, with a one indicating
+that they are in two-byte quantities. The last two bits are concatenated on to
+the beginning of the packet-length parameter in the character preamble,
+which will be explained below.
+
+However, if the last three bits of the flag byte are all set (normally
+indicating that the size parameters are two-byte values and that a 3 should be
+prepended to the length parameter), then a long format of the character
+preamble should be used instead of one of the short forms.
+
+Therefore, there are three formats for the character preamble; the one that
+is used depends on the least significant three bits of the flag byte. If the
+least significant three bits are in the range zero through three, the short
+format is used. If they are in the range four through six, the extended short
+format is used. Otherwise, if the least significant bits are all set, then
+the long form of the character preamble is used. The preamble formats are
+explained below.
+
+\yskip\hang Short form: |flag[1]| |pl[1]| |cc[1]| |tfm[3]| |dm[1]| |w[1]|
+|h[1]| |hoff[+1]| |voff[+1]|.
+If this format of the character preamble is used, the above
+parameters must all fit in the indicated number of bytes, signed or unsigned
+as indicated. Almost all of the standard \TeX\ font characters fit; the few
+exceptions are fonts such as \.{cminch}.
+
+\yskip\hang Extended short form: |flag[1]| |pl[2]| |cc[1]| |tfm[3]| |dm[2]|
+|w[2]| |h[2]| |hoff[+2]| |voff[+2]|. Larger characters use this extended
+format.
+
+\yskip\hang Long form: |flag[1]| |pl[4]| |cc[4]| |tfm[4]| |dx[4]| |dy[4]|
+|w[4]| |h[4]| |hoff[4]| |voff[4]|. This is the general format that
+allows all of the
+parameters of the \.{GF} file format, including vertical escapement.
+\vskip\baselineskip
+The |flag| parameter is the flag byte. The parameter |pl| (packet length)
+contains the offset
+of the byte following this character descriptor, with respect to the beginning
+of the |tfm| width parameter. This is given so a \.{PK} reading program can,
+once it has read the flag byte, packet length, and character code (|cc|), skip
+over the character by simply reading this many more bytes. For the two short
+forms of the character preamble, the last two bits of the flag byte should be
+considered the two most-significant bits of the packet length. For the short
+format, the true packet length might be calculated as |(flag mod 4)*256+pl|;
+for the short extended format, it might be calculated as
+|(flag mod 4)*65536+pl|.
+
+The |w| parameter is the width and the |h| parameter is the height in pixels
+of the minimum bounding box. The |dx| and |dy| parameters are the horizontal
+and vertical escapements, respectively. In the short formats, |dy| is assumed
+to be zero and |dm| is |dx| but in pixels;
+in the long format, |dx| and |dy| are both
+in pixels multiplied by $2^{16}$. The |hoff| is the horizontal offset from the
+upper left pixel to the reference pixel; the |voff| is the vertical offset.
+They are both given in pixels, with right and down being positive. The
+reference pixel is the pixel that occupies the unit square in \MF; the
+\MF\ reference point is the lower left hand corner of this pixel. (See the
+example below.)
+
+@ \TeX\ requires all characters that have the same character codes
+modulo 256 to have also the same |tfm| widths and escapement values. The \.{PK}
+format does not itself make this a requirement, but in order for the font to
+work correctly with the \TeX\ software, this constraint should be observed.
+(The standard version of \TeX\ cannot output character codes greater
+than 255, but extended versions do exist.)
+
+Following the character preamble is the raster information for the
+character, packed by run counts or by bits, as indicated by the flag byte.
+If the character is packed by run counts and the required number of nybbles
+is odd, then the last byte of the raster description should have a zero
+for its least significant nybble.
+
+@ As an illustration of the \.{PK} format, the character \char4\ from the font
+amr10 at 300 dots per inch will be encoded. This character was chosen
+because it illustrates some
+of the borderline cases. The raster for the character looks like this (the
+row numbers are chosen for convenience, and are not \MF's row numbers.)
+
+\vskip\baselineskip
+{\def\smbox{\vrule height 7pt width 7pt depth 0pt \hskip 3pt}%
+\catcode`\*=\active \let*=\smbox
+\centerline{\vbox{\baselineskip=10pt
+\halign{\hfil#\quad&&\hfil#\hfil\cr
+0& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+1& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+2& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+3& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+4& & &*&*& & & & & & & & & & & & & & & & &*&*\cr
+5& & &*&*& & & & & & & & & & & & & & & & &*&*\cr
+6& & &*&*& & & & & & & & & & & & & & & & &*&*\cr
+7\cr
+8\cr
+9& & & & &*&*& & & & & & & & & & & & &*&*& & \cr
+10& & & & &*&*& & & & & & & & & & & & &*&*& & \cr
+11& & & & &*&*& & & & & & & & & & & & &*&*& & \cr
+12& & & & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*& & \cr
+13& & & & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*& & \cr
+14& & & & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*& & \cr
+15& & & & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*& & \cr
+16& & & & &*&*& & & & & & & & & & & & &*&*& & \cr
+17& & & & &*&*& & & & & & & & & & & & &*&*& & \cr
+18& & & & &*&*& & & & & & & & & & & & &*&*& & \cr
+19\cr
+20\cr
+21\cr
+22& & &*&*& & & & & & & & & & & & & & & & &*&*\cr
+23& & &*&*& & & & & & & & & & & & & & & & &*&*\cr
+24& & &*&*& & & & & & & & & & & & & & & & &*&*\cr
+25& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+26& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+27& & &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+28&+& &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*\cr
+&\hphantom{*}&\hphantom{*}\cr
+}}}}
+The width of the minimum bounding box for this character is 20; its height
+is 29. The `+' represents the reference pixel; notice how it lies outside the
+minimum bounding box. The |hoff| value is $-2$, and the |voff| is~28.
+
+The first task is to calculate the run counts and repeat counts. The repeat
+counts are placed at the first transition (black to white or white to black)
+in a row, and are enclosed in brackets. White counts are enclosed in
+parentheses. It is relatively easy to generate the counts list:
+\vskip\baselineskip
+\centerline{82 [2] (16) 2 (42) [2] 2 (12) 2 (4) [3]}
+\centerline{16 (4) [2] 2 (12) 2 (62) [2] 2 (16) 82}
+\vskip\baselineskip
+Note that any duplicated rows that are not all white or all black are removed
+before the run counts are calculated. The rows thus removed are rows 5, 6,
+10, 11, 13, 14, 15, 17, 18, 23, and 24.
+
+@ The next step in the encoding of this character is to calculate the optimal
+value of |dyn_f|. The details of how this calculation is done are not
+important here; suffice it to say that there is a simple algorithm that can
+determine the best value of |dyn_f| in one pass over the count list. For this
+character, the optimal value turns out to be 8 (atypically low). Thus, all
+count values less than or equal to 8 are packed in one nybble; those from
+nine to $(13-8)*16+8$ or 88 are packed in two nybbles. The run encoded values
+now become (in hex, separated according to the above list):
+\vskip\baselineskip
+\centerline{\tt D9 E2 97 2 B1 E2 2 93 2 4 E3}
+\centerline{\tt 97 4 E2 2 93 2 C5 E2 2 97 D9}
+\vskip\baselineskip\noindent
+which comes to 36 nybbles, or 18 bytes. This is shorter than the 73 bytes
+required for the bit map, so we use the run count packing.
+
+@ The short form of the character preamble is used because all of the
+parameters fit in their respective lengths. The packet length is therefore
+18 bytes for the raster, plus
+eight bytes for the character preamble parameters following the character
+code, or 26. The |tfm| width for this character is 640796, or {\tt 9C71C} in
+hexadecimal. The horizontal escapement is 25 pixels. The flag byte is
+88 hex, indicating the short preamble, the black first count, and the
+|dyn_f| value of 8. The final total character packet, in hexadecimal, is:
+\vskip\baselineskip
+$$\vbox{\halign{\hfil #\quad&&{\tt #\ }\cr
+Flag byte&88\cr
+Packet length&1A\cr
+Character code&04\cr
+|tfm| width&09&C7&1C\cr
+Horizontal escapement (pixels)&19\cr
+Width of bit map&14\cr
+Height of bit map&1D\cr
+Horizontal offset (signed)&FE\cr
+Vertical offset&1C\cr
+Raster data&D9&E2&97\cr
+&2B&1E&22\cr
+&93&24&E3\cr
+&97&4E&22\cr
+&93&2C&5E\cr
+&22&97&D9\cr}}$$
+
+@* Input and output.
+There are two types of files that this program must deal with---standard
+text files and files of bytes (packed files.)
+For our purposes, we shall consider an eight-bit byte to consist of the
+values |0..255|. If your system does not pack these values to a byte, it is
+no major difficulty; you must only insure that the input function
+|pk_byte| can read packed bytes.
+
+@<Types...@>=
+@!eight_bits=0..255; {packed file byte}
+@!byte_file=packed file of eight_bits ; {for packed file words}
+@^system dependencies@>
+
+@ @<Glob...@>=
+@!pk_file:byte_file; {where the input comes from}
+@!typ_file:text_file; {where the final output goes}
+@^system dependencies@>
+
+@ To prepare these files for input and output, we |reset| and |rewrite| them.
+An extension of \PASCAL\ is needed, since we want to associate files
+with external names that are specified dynamically (i.e., not
+known at compile time). The following code assumes that `|reset(f,s)|'
+does this, when |f| is a file variable and |s| is a string variable that
+specifies the file name. If |eof(f)| is true immediately after
+|reset(f,s)| has acted, we assume that no file named |s| is accessible.
+@^system dependencies@>
+
+@p procedure open_pk_file; {prepares the input for reading}
+begin reset(pk_file,pk_name);
+pk_loc := 0 ;
+end;
+@#
+procedure open_typ_file; {prepares to write text data to the |typ_file|}
+begin rewrite(typ_file,typ_name);
+end;
+
+@ We need a place to store the names of the input and output file, as well
+as a byte counter for the output file.
+
+@<Glob...@>=
+@!pk_name,@!typ_name:packed array[1..name_length] of char; {name of input
+ and output files}
+@!pk_loc:integer; {how many bytes have we read?}
+
+@ We also need a function that will get a single byte from the \.{pk} file.
+
+@p function pk_byte : eight_bits ;
+var temp : eight_bits ;
+begin
+ temp := pk_file^ ;
+ get(pk_file) ;
+ incr(pk_loc) ;
+ pk_byte := temp ;
+end ;
+
+@ Now we are ready to open the files.
+
+@<Open files@>=
+open_pk_file ;
+open_typ_file ;
+t_print_ln(banner) ;
+t_print('Input file: ') ;
+i := 1 ;
+while pk_name[i] <> ' ' do begin
+ t_print(pk_name[i]) ; incr(i) ;
+end ;
+t_print_ln(' ')
+
+@ As we are reading the packed file, we often need to fetch 16 and 32 bit
+quantities. Here we have two procedures to do this.
+
+@p function get_16 : integer ;
+var a : integer ;
+begin a := pk_byte ; get_16 := a * 256 + pk_byte ; end ;
+@#
+function get_32 : integer ;
+var a : integer ;
+begin a := get_16 ; if a > 32767 then a := a - 65536 ;
+get_32 := a * 65536 + get_16 ; end ;
+
+@ We still need the |term_pos| variable.
+
+@<Glob...@>=
+@!term_pos : integer ; {current terminal position}
+
+@ Now we read and check the preamble of the \.{PK} file. In the preamble, we
+find the |hppp|, |design_size|, |checksum|.
+
+@<Read preamble@>=
+if pk_byte <> pk_pre then abort('Bad PK file: pre command missing!') ;
+@.pre command missing@>
+if pk_byte <> pk_id then abort('Wrong version of PK file!') ;
+@.Wrong version of PK file@>
+j := pk_byte ;
+t_print('''') ;
+for i := 1 to j do t_print(xchr[pk_byte]) ;
+t_print_ln('''') ;
+design_size := get_32 ;
+t_print_ln('Design size = ',design_size:1) ;
+checksum := get_32 ;
+t_print_ln('Checksum = ',checksum:1) ;
+hppp := get_32 ; vppp := get_32 ;
+t_print('Resolution: horizontal = ',hppp:1,' vertical = ',vppp:1) ;
+magnification := round(hppp * 72.27 / 65536) ;
+t_print_ln(' (',magnification:1,' dpi)') ;
+if hppp <> vppp then print_ln('Warning: aspect ratio not 1:1!')
+
+@ Of course, we need to define the above variables.
+
+@<Glob...@>=
+@!magnification : integer ; {resolution at which pixel file is prepared}
+@!design_size : integer ; {design size in FIXes}
+@!checksum : integer ; {checksum of pixel file}
+@!hppp, @!vppp : integer ; {horizontal and vertical points per inch}
+
+@* Character unpacking.
+Here we simply unpack the character, writing the information we glean to the
+|typ_file|.
+
+@<Unpack and write character@>=
+t_print((pk_loc-1):1,': Flag byte = ',flag_byte:1) ;
+dyn_f := flag_byte div 16 ;
+flag_byte := flag_byte mod 16 ;
+turn_on := flag_byte >= 8 ;
+if turn_on then flag_byte := flag_byte - 8 ;
+if flag_byte = 7 then
+ @<Read long character preamble@>
+else if flag_byte > 3 then
+ @<Read extended short character preamble@>
+else
+ @<Read short character preamble@> ;
+t_print_ln(' Character = ',car:1,' Packet length = ',
+ packet_length:1) ;
+t_print_ln(' Dynamic packing variable = ',dyn_f:1) ;
+t_print(' TFM width = ',tfm_width:1,' dx = ',dx:1) ;
+if dy <> 0 then t_print_ln(' dy = ',dy:1) else t_print_ln(' ') ;
+t_print_ln(' Height = ',height:1,' Width = ',width:1,' X-offset = ',
+ x_off:1, ' Y-offset = ',y_off:1) ;
+@<Read and translate raster description@> ;
+if end_of_packet <> pk_loc then abort('Bad PK file: Bad packet length!')
+@.Bad packet length@>
+
+@ We need a whole lot of globals used but not defined up there.
+
+@<Glob...@>=
+@!i, @!j : integer ; {index pointers}
+@!flag_byte : integer ; {the byte that introduces the character definition}
+@!end_of_packet : integer ; {where we expect the end of the packet to be}
+@!width, @!height : integer ; {width and height of character}
+@!x_off, @!y_off : integer ; {x and y offsets of character}
+@!tfm_width : integer ; {character tfm width}
+@!tfms : array [0..255] of integer ; {character tfm widths}
+@!dx, @!dy : integer ; {escapement values}
+@!dxs, @!dys : array [0..255] of integer ; {escapement values}
+@!status : array[0..255] of boolean ; {has the character been seen?}
+@!dyn_f : integer ; {dynamic packing variable}
+@!car : integer ; {the character we are reading}
+@!packet_length : integer ; {the length of the character packet}
+
+@ Now, the preamble reading modules. First, we have the general case: the
+long character preamble format.
+
+@<Read long character preamble@>=
+begin
+ packet_length := get_32 ; car := get_32 ;
+ end_of_packet := packet_length + pk_loc ;
+ packet_length := packet_length + 9 ;
+ tfm_width := get_32 ;
+ dx := get_32 ; dy := get_32 ;
+ width := get_32 ;
+ height := get_32 ;
+ x_off := get_32 ; y_off := get_32 ;
+end
+
+@ This module reads the character preamble with double byte parameters.
+
+@<Read extended short character preamble@>=
+begin
+ packet_length := (flag_byte - 4) * 65536 + get_16 ;
+ car := pk_byte ;
+ end_of_packet := packet_length + pk_loc ;
+ packet_length := packet_length + 4 ;
+ i := pk_byte ;
+ tfm_width := i * 65536 + get_16 ;
+ dx := get_16 * 65536 ;
+ dy := 0 ;
+ width := get_16 ;
+ height := get_16 ;
+ x_off := get_16 ; y_off := get_16 ;
+ if x_off > 32767 then x_off := x_off - 65536 ;
+ if y_off > 32767 then y_off := y_off - 65536 ;
+end
+
+@ Here we read the most common character preamble, that with single byte
+parameters.
+
+@<Read short character preamble@>=
+begin
+ packet_length := flag_byte * 256 + pk_byte ;
+ car := pk_byte ;
+ end_of_packet := packet_length + pk_loc ;
+ packet_length := packet_length + 3 ;
+ i := pk_byte ;
+ tfm_width := i * 65536 + get_16 ;
+ dx := pk_byte * 65536 ;
+ dy := 0 ;
+ width := pk_byte ;
+ height := pk_byte ;
+ x_off := pk_byte ; y_off := pk_byte ;
+ if x_off > 127 then x_off := x_off - 256 ;
+ if y_off > 127 then y_off := y_off - 256 ;
+end
+
+@ Now we have the most important part of the program, where we actually
+interpret the commands in the raster description. First of all, we need
+a procedure to get a single nybble from the file, as well as one to get
+a single bit.
+
+@p function get_nyb : integer ;
+var temp : eight_bits ;
+begin
+ if bit_weight = 0 then begin
+ input_byte := pk_byte ;
+ bit_weight := 16 ;
+ end ;
+ temp := input_byte div bit_weight ;
+ input_byte := input_byte - temp * bit_weight ;
+ bit_weight := bit_weight div 16 ;
+ get_nyb := temp ;
+end ;
+@#
+function get_bit : boolean ;
+var temp : boolean ;
+begin
+ bit_weight := bit_weight div 2 ;
+ if bit_weight = 0 then begin
+ input_byte := pk_byte ;
+ bit_weight := 128 ;
+ end ;
+ temp := input_byte >= bit_weight ;
+ if temp then
+ input_byte := input_byte - bit_weight ;
+ get_bit := temp ;
+end ;
+
+@ We also need a function to write output to the screen. We put as many
+counts on a line as possible, to reduce the volume of output. Each count
+will appear as a number, with white counts enclosed by parentheses and repeat
+counts by brackets.
+
+@p procedure send_out(@!repeat_count: boolean ; @!value : integer ) ;
+var i, len : integer ;
+begin
+ i := 10 ; len := 1 ;
+ while value >= i do begin incr(len) ; i := i * 10 ; end ;
+ if repeat_count or not turn_on then len := len + 2 ;
+ if term_pos + len > 78 then begin
+ term_pos := len + 2 ; t_print_ln(' ') ; t_print(' ') ;
+ end else term_pos := term_pos + len ;
+ if repeat_count then t_print('[', value:1, ']')
+ else if turn_on then t_print(value:1)
+ else t_print('(', value:1, ')') ;
+end ;
+@<Packed number procedure@>
+
+@ Now, the globals to help communication between these procedures.
+
+@<Glob...@>=
+@!input_byte : eight_bits ; {the byte we are currently decimating}
+@!bit_weight : eight_bits ; {weight of the current bit}
+@!nybble : eight_bits ; {the current nybble}
+
+@ And the main procedure.
+
+@<Read and translate raster description@>=
+bit_weight := 0 ;
+if dyn_f = 14 then
+ @<Get raster by bits@>
+else @<Create normally packed raster@>
+
+@ If |dyn_f=14|, then we need to get the raster representation
+one bit at a time.
+
+@<Get raster by bits@>=
+begin
+for i := 1 to height do begin
+ t_print(' ') ;
+ for j := 1 to width do
+ if get_bit then t_print('*')
+ else t_print('.') ;
+ t_print_ln(' ') ;
+end;
+end
+
+@ Otherwise, we translate the bit counts into the raster rows. |count|
+contains the number of bits of the current color, and |turn_on| indicates
+whether or not they should be black. |rows_left| contains the number of
+rows to be sent.
+
+@<Create normally packed raster@>=
+begin
+term_pos := 2 ;
+t_print(' ') ;
+rows_left := height ;
+h_bit := width ;
+repeat_count := 0 ;
+while rows_left > 0 do begin
+ count := pk_packed_num ;
+ send_out(false, count) ;
+ if count >= h_bit then begin
+ rows_left := rows_left - repeat_count - 1 ;
+ repeat_count := 0 ;
+ count := count - h_bit ;
+ h_bit := width ;
+ rows_left := rows_left - count div width ;
+ count := count mod width ;
+ end ;
+ h_bit := h_bit - count ;
+ turn_on := not turn_on ;
+end ;
+t_print_ln(' ') ;
+if (rows_left <> 0) or (h_bit <> width) then
+ abort('Bad PK file: More bits than required!');
+@.More bits than required@>
+end
+
+@ We need to declare the repeat flag, bit counter, and color flag here.
+
+@<Glob...@>=
+@!repeat_count : integer ; {how many times to repeat the next row?}
+@!rows_left : integer ; {how many rows left?}
+@!turn_on : boolean ; {are we black here?}
+@!h_bit : integer ; {what is our horizontal position?}
+@!count : integer ; {how many bits of current color left?}
+
+@ If any specials are found, we write them out here.
+
+@d four_cases(#)==#,#+1,#+2,#+3
+
+@p procedure skip_specials ;
+var @!i, @!j: integer ;
+begin
+ repeat
+ flag_byte := pk_byte ;
+ if flag_byte >= 240 then
+ case flag_byte of
+ four_cases(pk_xxx1):
+begin
+ t_print((pk_loc-1):1,': Special: ''') ;
+ i := 0 ;
+ for j := pk_xxx1 to flag_byte do i := 256 * i + pk_byte ;
+ for j := 1 to i do t_print(xchr[pk_byte]) ;
+ t_print_ln('''') ;
+end ;
+ pk_yyy : t_print_ln((pk_loc-1):1,': Num special: ',get_32:1) ;
+ pk_post : t_print_ln((pk_loc-1):1,': Postamble') ;
+ pk_no_op : t_print_ln((pk_loc-1):1,': No op') ;
+ pk_pre, pk_undefined : abort('Unexpected ', flag_byte:1,'!') ;
+@.Unexpected bbb@>
+ endcases ;
+ until (flag_byte < 240) or (flag_byte = pk_post) ;
+end ;
+
+@* Terminal communication.
+We must get the file names and determine whether input is to be in
+hexadecimal or binary. To do this, we use the standard input path
+name. We need a procedure to flush the input buffer. For most systems,
+this will be an empty statement. For other systems, a |print_ln| will
+provide a quick fix. We also need a routine to get a line of input from
+the terminal. On some systems, a simple |read_ln| will do. Finally,
+a macro to print a string to the first blank is required.
+
+@d flush_buffer == begin end
+@d get_line(#) == if eoln(input) then read_ln(input) ;
+ i := 1 ;
+ while not (eoln(input) or eof(input)) do begin
+ #[i] := input^ ;
+ incr(i) ;
+ get(input) ;
+ end ;
+ #[i] := ' '
+
+@ @p procedure dialog ;
+var i : integer ; {index variable}
+buffer : packed array [1..name_length] of char; {input buffer}
+begin
+ for i := 1 to name_length do begin
+ typ_name[i] := ' ' ;
+ pk_name[i] := ' ' ;
+ end;
+ print('Input file name: ') ;
+ flush_buffer ;
+ get_line(pk_name) ;
+ print('Output file name: ') ;
+ flush_buffer ;
+ get_line(typ_name) ;
+end ;
+
+@* The main program.
+Now that we have all the pieces written, let us put them together.
+
+@p begin
+initialize ;
+dialog ;
+@<Open files@> ;
+@<Read preamble@> ;
+skip_specials ;
+while flag_byte <> pk_post do begin
+ @<Unpack and write character@> ;
+ skip_specials ;
+end ;
+j := 0 ;
+while not eof(pk_file) do begin
+ i := pk_byte ;
+ if i <> pk_no_op then abort('Bad byte at end of file: ',i:1) ;
+@.Bad byte at end of file@>
+ t_print_ln((pk_loc-1):1,': No op') ;
+ incr(j) ;
+end ;
+t_print_ln(pk_loc:1,' bytes read from packed file.');
+final_end :
+end .
+
+@* System-dependent changes.
+This section should be replaced, if necessary, by changes to the program
+that are necessary to make \.{PKtype} work at a particular installation.
+Any additional routines should be inserted here.
+@^system dependencies@>
+
+@* Index.
+Pointers to error messages appear here together with the section numbers
+where each ident\-i\-fier is used.
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 22e3005c65..7658dd6b1b 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,11 +26,11 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2020
-depend revision/54878
+depend revision/54901
name 00texlive.image
category TLCore
-revision 54877
+revision 54894
shortdesc TeX Live files only in the source repository
longdesc The files here are not copied by the installer and containers
longdesc are not built for them; they exist only in the source
@@ -2146,6 +2146,7 @@ runfiles size=5010
tlpkg/tlpsrc/jkmath.tlpsrc
tlpkg/tlpsrc/jknapltx.tlpsrc
tlpkg/tlpsrc/jlabels.tlpsrc
+ tlpkg/tlpsrc/jlreq-deluxe.tlpsrc
tlpkg/tlpsrc/jlreq.tlpsrc
tlpkg/tlpsrc/jmb.tlpsrc
tlpkg/tlpsrc/jmlr.tlpsrc
@@ -34277,7 +34278,7 @@ catalogue-version 2.6.2
name biblatex-apa
category Package
-revision 54758
+revision 54896
shortdesc BibLaTeX citation and reference style for APA
relocated 1
longdesc This is a fairly complete BibLaTeX style (citations and
@@ -34289,10 +34290,10 @@ longdesc every citation and reference example in the APA 7th edition
longdesc style guide. This version of the package requires use of
longdesc csquotes [?]4.3, BibLaTeX [?]3.4, and the biber backend for
longdesc BibLaTeX [?]2.5.
-containersize 23976
-containerchecksum 4fdc0bf55cfbdbab6b1cc85ef7276a4bfbc73bf6b9e0388f42f17a631e245fd9c2d3773ced67b17910703dc61ae7e58b33285026ffb3a24ce4142c2fc28cfdac
-doccontainersize 317564
-doccontainerchecksum b43d3876b03c815833295133044913c209a24d052ca91ff95400e24fc377e2ac12f00a48be75f778524e389ddfcc0d564d50a3a8b5c86dd7e0580a55c6be4568
+containersize 23972
+containerchecksum 993178d65e9e2dba756fa2afbeaa90fa4b9ab4fec768b3c27c3ea805357e164af8dc55627cebb7c204b2c9deb235a5731a93c72fd72fb01ecc02d4eb496958e8
+doccontainersize 317772
+doccontainerchecksum 3bc5feb99a2022b55ccd21b32ea1620596c85e4e9722e3cf51d5bcee0ffab58c13bb93f578a3b961dd830396a0f7d3f01bc4b8cbd40176858a9bad17a835b3a8
docfiles size=113
RELOC/doc/latex/biblatex-apa/README details="Readme"
RELOC/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib
@@ -34336,7 +34337,7 @@ catalogue-contact-repository https://github.com/plk/biblatex-apa.git
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-apa
catalogue-license lppl1.3c
catalogue-topics apa biblatex psychology journalpub
-catalogue-version 9.9
+catalogue-version 9.10
name biblatex-apa6
category Package
@@ -64059,7 +64060,7 @@ containerchecksum 20571a262dfd6bcb177613e2e50cd7678ebb2b03832ac7b1ba3c8363b9f067
name collection-langjapanese
category Collection
-revision 54074
+revision 54894
shortdesc Japanese
relocated 1
longdesc Support for Japanese; additional packages are in
@@ -64088,6 +64089,7 @@ depend ipaex
depend japanese-otf
depend japanese-otf-uptex
depend jlreq
+depend jlreq-deluxe
depend jsclasses
depend lshort-japanese
depend luatexja
@@ -64119,8 +64121,8 @@ depend uptex-fonts
depend wadalab
depend zxjafbfont
depend zxjatype
-containersize 616
-containerchecksum b8a4e9ec9cbbb373b1df40892a5821c52e791643933853f7eede151ebcd9a2f8ed2360a5431be628d2e18ea686ddcd7b7a7f187f7a13aaf3c98c93e0427e1f0c
+containersize 620
+containerchecksum 8412379041e16c25e6ec557b17926877c4b13d4b0fc2112adf8fba446636f8108255ffce8bece9df6c64170398e70576ab8fcbcc2560adbb5340cf7a5cc4eba7
name collection-langkorean
category Collection
@@ -67544,7 +67546,7 @@ catalogue-version 3.2
name comicneue
category Package
-revision 42851
+revision 54891
shortdesc Use Comic Neue with TeX(-alike) systems
relocated 1
longdesc Comic Neue is a well-known redesign of the (in)famous Comic
@@ -67554,11 +67556,12 @@ longdesc pdfTeX users. Issues with this package can be reported on
longdesc GitHub or emailed to tex@slxh.nl.
execute addMap ComicNeue.map
execute addMap ComicNeueAngular.map
-containersize 758452
-containerchecksum c72d19a0f5219d96da92916ec13fe333703c911b4222b60f825aa5ea2d412df261fbae2227c56844e70fcc057ed8367a4c42f17799c4b8418b02c3171b8d4864
-doccontainersize 83920
-doccontainerchecksum e3d1630dbecc93365e18b496565a5430e0867f3d3a82c0bedcfec8a02168bddf71d9e65b996e4682294c086d1049cf88182a36c5619d8fe6762aa1050fd923a4
-docfiles size=40
+containersize 872884
+containerchecksum 5dc900d215fef53fe69ffda6e9120f1230173f40d220c71eaaa3d7eb21610b214591bdc043f27f0fe5259daf2a800b695167d2deee1810a67045997aff7c2a76
+doccontainersize 200176
+doccontainerchecksum 24baee44951d9dc6fd70b6b6092112a1d7d13c394eeb495162c3f80444ebd799b526acf7b7c86b7590afc9f5f6efa97c10b661ddead6ca11a168325c7c840650
+docfiles size=97
+ RELOC/doc/latex/comicneue/README.md details="Readme"
RELOC/doc/latex/comicneue/SIL-License.txt
RELOC/doc/latex/comicneue/comicneue-otf-specimen.pdf
RELOC/doc/latex/comicneue/comicneue-otf-specimen.tex
@@ -67566,91 +67569,72 @@ docfiles size=40
RELOC/doc/latex/comicneue/comicneue-type1-specimen.tex
RELOC/doc/latex/comicneue/comicneue.pdf details="Package documentation"
RELOC/doc/latex/comicneue/comicneue.tex
-runfiles size=453
- RELOC/fonts/enc/dvips/comicneue/a_bs6yxn.enc
- RELOC/fonts/enc/dvips/comicneue/a_lfux4u.enc
- RELOC/fonts/enc/dvips/comicneue/a_t3s7zg.enc
- RELOC/fonts/enc/dvips/comicneue/a_yvpaqy.enc
+runfiles size=459
+ RELOC/fonts/enc/dvips/comicneue/a_3f3vls.enc
+ RELOC/fonts/enc/dvips/comicneue/a_d7lrxj.enc
+ RELOC/fonts/enc/dvips/comicneue/a_fqjac7.enc
+ RELOC/fonts/enc/dvips/comicneue/a_ixwebc.enc
+ RELOC/fonts/enc/dvips/comicneue/a_ncyf37.enc
+ RELOC/fonts/enc/dvips/comicneue/a_nhwyv3.enc
+ RELOC/fonts/enc/dvips/comicneue/a_trnund.enc
+ RELOC/fonts/enc/dvips/comicneue/a_upn2ip.enc
+ RELOC/fonts/enc/dvips/comicneue/a_wfs66e.enc
RELOC/fonts/map/dvips/comicneue/ComicNeue.map
RELOC/fonts/map/dvips/comicneue/ComicNeueAngular.map
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light_Oblique.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular_Oblique.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Bold.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Bold_Oblique.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Light.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Light_Oblique.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Regular.otf
- RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Regular_Oblique.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Bold.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-BoldItalic.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Light.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-LightItalic.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Regular.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-RegularItalic.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-Bold.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-BoldItalic.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-Light.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-LightItalic.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-Regular.otf
+ RELOC/fonts/opentype/rozynski/comicneue/ComicNeueAngular-RegularItalic.otf
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1--base.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Italic-tlf-ts1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1--base.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Regular-tlf-ts1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--base.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.tfm
@@ -67662,17 +67646,28 @@ runfiles size=453
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1--base.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ts1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--base.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--lcdfj.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.tfm
@@ -67684,111 +67679,88 @@ runfiles size=453
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1--base.tfm
RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--lcdfj.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1--base.tfm
- RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1--lcdfj.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ts1.tfm
RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Bold.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldOblique.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldObliqueLCDFJ.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldItalic.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Italic.pfb
RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Light.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightOblique.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightObliqueLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Oblique.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue-ObliqueLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeue.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightItalic.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Regular.pfb
RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Bold.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldItalic.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldItalicLCDFJ.pfb
RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldOblique.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldObliqueLCDFJ.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Italic.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-ItalicLCDFJ.pfb
RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Light.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightItalic.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightItalicLCDFJ.pfb
RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightOblique.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightObliqueLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Oblique.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-ObliqueLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngularLCDFJ.pfb
- RELOC/fonts/type1/rozynski/comicneue/ComicNeueLCDFJ.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Regular.pfb
+ RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-RegularLCDFJ.pfb
RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-t1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldItalic-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldItalic-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Italic-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Italic-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Italic-tlf-ts1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ot1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-t1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightItalic-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightItalic-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightItalic-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Regular-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Regular-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Regular-tlf-ts1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ot1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldItalic-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ot1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Italic-tlf-ts1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.vf
RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ly1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ot1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-t1.vf
- RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ot1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightItalic-tlf-ts1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ly1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ot1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-t1.vf
+ RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Regular-tlf-ts1.vf
RELOC/tex/latex/comicneue/LY1ComicNeue-TLF.fd
RELOC/tex/latex/comicneue/LY1ComicNeueAngular-TLF.fd
RELOC/tex/latex/comicneue/OT1ComicNeue-TLF.fd
@@ -67802,7 +67774,7 @@ catalogue-contact-repository https://github.com/silkeh/latex-comicneue/issues
catalogue-ctan /fonts/comicneue
catalogue-license ofl
catalogue-topics font font-otf font-supp font-type1
-catalogue-version 1.1
+catalogue-version 1.2
name comma
category Package
@@ -107619,7 +107591,7 @@ catalogue-version 1.0
name euclideangeometry
category Package
-revision 54758
+revision 54897
shortdesc Draw geometrical constructions
relocated 1
longdesc This package provides tools to draw most of the geometrical
@@ -107628,25 +107600,25 @@ longdesc professor might need to teach geometry. The connection to
longdesc Euclide depends on the fact that in his times calculations were
longdesc made with ruler, compass and also with ellipsograph. This
longdesc package extends the functionalities of the curve2e package.
-containersize 4924
-containerchecksum b4a4ed36740bfb767bae7881f415dad2e787a8f3cba2bf1fd3c2f3492572a6dd3ef0a3ae7d8892975d012e1f82ccccbda689707cb3349432c0392f105f75d29a
-doccontainersize 997864
-doccontainerchecksum 546ac76f9c630e085a0f3e13a5842f8c78a83bbd06a7805552da9b7df3a528a17e7caf7b848b256a4c64cda5377f5906f6eed54dac71d8c81fa24035bbb30ed0
-docfiles size=270
+containersize 5316
+containerchecksum 62900fe71550594672cbcb6cc22d067aae1e6315e54c76888fbe3db2b79558c25182e05c028e2e0504fa1f19168276d95684d0dcf76c2aceb600720cf090ae1c
+doccontainersize 1020216
+doccontainerchecksum c12dfd05e72c4a081068af962fc223f6391793436ece1e706bacaf205c69ba01ae9a7263e1069b5e10ff4dc8a7ad151558ba188ee6c539d8e297d57dd6e1c45e
+docfiles size=276
RELOC/doc/latex/euclideangeometry/README.txt details="Readme"
RELOC/doc/latex/euclideangeometry/euclideangeometry-man.pdf details="User manual"
RELOC/doc/latex/euclideangeometry/euclideangeometry-man.tex
RELOC/doc/latex/euclideangeometry/euclideangeometry.pdf details="Documented code"
-srccontainersize 19212
-srccontainerchecksum c1b19d536554d994ad24c3eaf82199f0239994e8960a5a3c03e4379b709eedc5acafd27a9da40fc3b7e598bde8d0af6d2504446c31a7b7ef31d07cb8ce4dd03d
-srcfiles size=16
+srccontainersize 21020
+srccontainerchecksum 35805bde4c06f9589467808497de577b58e8eef5f788671c0a9ccf2603d21873d71d980b07f1acc411d7eaeb9bb7868a6bfe562055be030d802fa88fbc16c183
+srcfiles size=18
RELOC/source/latex/euclideangeometry/euclideangeometry.dtx
runfiles size=4
RELOC/tex/latex/euclideangeometry/euclideangeometry.sty
catalogue-ctan /macros/latex/contrib/euclideangeometry
catalogue-license lppl1.3c
catalogue-topics graphics maths
-catalogue-version 0.1.7
+catalogue-version 0.1.8
name euenc
category Package
@@ -146261,6 +146233,927 @@ catalogue-ctan /language/japanese/jlreq
catalogue-license bsd2
catalogue-topics japanese font-cjk class
+name jlreq-deluxe
+category Package
+revision 54894
+shortdesc Multi-weight Japanese font support for the jlreq class
+relocated 1
+longdesc This package provides multi-weight Japanese font support for
+longdesc the jlreq class.
+containersize 294656
+containerchecksum 7815e330fc99040428acfd3374cb5afa9cba46c1e8280b188dd048d5c1b21a5f8684980272a022c5682af5097c328292847da015b20a1132d725ebbc389fe35b
+doccontainersize 61780
+doccontainerchecksum a6827015a219918b7a57b41b4e9b223da755abe95bec8140f8ae9cdbec3f4d55cf7796326568bf0aac64242f351f8076e9203ef8fd18ad228b586cbf177cef99
+docfiles size=18
+ RELOC/doc/platex/jlreq-deluxe/README-ja.md details="Readme (Japanese)"
+ RELOC/doc/platex/jlreq-deluxe/README.md details="Readme (English)"
+ RELOC/doc/platex/jlreq-deluxe/jlreq-deluxe.pdf details="Package documentation" language="ja"
+ RELOC/doc/platex/jlreq-deluxe/jlreq-deluxe.tex
+runfiles size=95201
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--expminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--nmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upexpminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bjlreq--upnmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--expminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--nmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upexpminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/bzjlreq--upnmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--expminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--nmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upexpminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/jlreq--upnmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--expminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--nmlminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upexpminrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgotheb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgotheb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothebn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothebn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlmgothrn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminb-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminb-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminbn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminbn-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminl-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminl-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminln-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminln-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminr-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminr-v.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminrn-h.tfm
+ RELOC/fonts/tfm/public/jlreq-deluxe/zjlreq--upnmlminrn-v.tfm
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--expminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--nmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upexpminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bjlreq--upnmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--expminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--nmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upexpminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/bzjlreq--upnmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--expminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--nmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upexpminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/jlreq--upnmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--expminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--nmlminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upexpminrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgotheb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgotheb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothebn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothebn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlmgothrn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminb-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminb-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminbn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminbn-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminl-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminl-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminln-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminln-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminr-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminr-v.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminrn-h.vf
+ RELOC/fonts/vf/public/jlreq-deluxe/zjlreq--upnmlminrn-v.vf
+ RELOC/tex/platex/jlreq-deluxe/jlreq-deluxe.sty
+catalogue-also jlreq
+catalogue-contact-repository https://github.com/h20y6m/jlreq-deluxe
+catalogue-ctan /language/japanese/jlreq-deluxe
+catalogue-license mit
+catalogue-topics font-cjk font-use japanese expl3
+catalogue-version 0.3.1
+
name jmb
category Package
revision 52718
@@ -153499,22 +154392,22 @@ catalogue-version 1.6
name kvmap
category Package
-revision 54585
+revision 54898
shortdesc Create Karnaugh maps with LaTeX
relocated 1
longdesc This LaTeX package allows the creation of (even large) Karnaugh
longdesc maps. It provides a tabular-like input syntax and support for
longdesc drawing bundles (implicants) around adjacent values. It is
longdesc based on an answer at StackExchange.
-containersize 2640
-containerchecksum a23c5fd54e5fcd9fefc7cd46757f267bfe120d3099fbbec77e09a2270297380c1c4ea652ad42ad08c37f496194d0ad70e9effdede8841bc1bc786a2d61a2e91b
-doccontainersize 105648
-doccontainerchecksum 2e207ad3d0517ed2c927eabbb63b236afc084a4952c48f3ed0ba7ceb21621366d3ee54881dbbe372caf7de04a657b1d766d7448565b7d3dfca9a8d62ff4d9178
+containersize 2672
+containerchecksum c06d637d368d78999735782ae577ddcb6bab594a764520e231644e5b745bbb4356b01d5c283a719a637eab3397c219e2e0d7fff8bd3bf1d8c1bd2c102139f5d0
+doccontainersize 106456
+doccontainerchecksum 6744a2d00d17376fa4f524b9c6ffd4225b81aaca694caa647d7a50f035fc5458f48e4c9c3eb796f6f770981d9d8cfe7bca5c296941b7329bdcf92d545f0f2e9b
docfiles size=28
RELOC/doc/latex/kvmap/README.md details="Readme"
RELOC/doc/latex/kvmap/kvmap.pdf details="Package documentation"
-srccontainersize 8608
-srccontainerchecksum 1fd2ec484460c42d06beee10fd4cae49bd257737005241e2fc9919f9f96a8ca51665eebe16b35ee282ab6b37d0f4f152cadbc4044a56059bb65dc3ef7526ec5a
+srccontainersize 8660
+srccontainerchecksum d42b8f7734a3f336de40df52e8492dcf2f7f0f4e2151901baee69654560e517ce773eb909807475fe5f01b90f09a427e4001f260da14a898929d7f719b1d4138
srcfiles size=9
RELOC/source/latex/kvmap/kvmap.dtx
RELOC/source/latex/kvmap/kvmap.ins
@@ -153526,7 +154419,7 @@ catalogue-contact-home https://gitlab.com/benfrank/kvmap
catalogue-ctan /macros/latex/contrib/kvmap
catalogue-license lppl1.3c
catalogue-topics maths engineering
-catalogue-version 0.3.3
+catalogue-version 0.3.4
name kvoptions
category Package
@@ -222687,7 +223580,7 @@ catalogue-version 1.0
name optex
category Package
-revision 54650
+revision 54893
shortdesc LuaTeX format based on Plain TeX and OPmac
longdesc OpTeX is a LuaTeX format based on Plain TeX macros with power
longdesc from OPmac (fonts selection system, colors, external graphics,
@@ -222701,11 +223594,11 @@ depend luatex
depend optex.ARCH
depend rsfs
execute AddFormat name=optex engine=luatex patterns=hyphen-lan.opm options="optex.ini" fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs
-containersize 143676
-containerchecksum 96255a71dc15915d5d21255812034c023f86332450c89ff3e1978773c6cc568baf93273af8c920734a33ed7ed00d4e0fe23f9b7f6f270965d7a5d179e5aceaa9
-doccontainersize 778892
-doccontainerchecksum 45a8032723b304e30ace6a6bbe57647f373472a232b5b17775525effd2b14629ba898e829c4f1b94e6ea26395dfb68c799743ebd94aab4784f02834f08ccdc20
-docfiles size=214
+containersize 161268
+containerchecksum 296c854bbf883a1e3d51411758618b3a728f32e195a6d5cdc8bd458402270123841fe18f097f41a236048e62fb3090d7613e1205c7f38624559bfe8456f1365d
+doccontainersize 1728160
+doccontainerchecksum 7139e9b048ae7605e35d93a145de5c00c918066fd2500ff71b37c073b1b5b5639159c2be955908fa0f4d5ceab2738c1af65c36b1389e76d797bb0911787fe81c
+docfiles size=455
texmf-dist/doc/luatex/optex/README details="Readme"
texmf-dist/doc/luatex/optex/op-demo.tex
texmf-dist/doc/luatex/optex/op-letter.tex
@@ -222713,16 +223606,19 @@ docfiles size=214
texmf-dist/doc/luatex/optex/op-slides.tex
texmf-dist/doc/luatex/optex/optex-doc.pdf
texmf-dist/doc/luatex/optex/optex-doc.tex
+ texmf-dist/doc/luatex/optex/optex-techdoc.tex
+ texmf-dist/doc/luatex/optex/optex-userdoc.tex
texmf-dist/doc/luatex/optex/slides-bg.png
texmf-dist/doc/man/man1/optex.1
texmf-dist/doc/man/man1/optex.man1.pdf
-runfiles size=240
+runfiles size=260
texmf-dist/tex/luatex/optex/alloc.opm
- texmf-dist/tex/luatex/optex/basics-macros.opm
+ texmf-dist/tex/luatex/optex/basic-macros.opm
texmf-dist/tex/luatex/optex/bib-iso690.opm
texmf-dist/tex/luatex/optex/bib-simple.opm
texmf-dist/tex/luatex/optex/cite-bib.opm
texmf-dist/tex/luatex/optex/colors.opm
+ texmf-dist/tex/luatex/optex/doc.opm
texmf-dist/tex/luatex/optex/f-adventor.opm
texmf-dist/tex/luatex/optex/f-antt.opm
texmf-dist/tex/luatex/optex/f-baskerville.opm
@@ -222747,6 +223643,11 @@ runfiles size=240
texmf-dist/tex/luatex/optex/fonts-resize.opm
texmf-dist/tex/luatex/optex/fonts-select.opm
texmf-dist/tex/luatex/optex/graphics.opm
+ texmf-dist/tex/luatex/optex/hi-syntax.opm
+ texmf-dist/tex/luatex/optex/hisyntax-c.opm
+ texmf-dist/tex/luatex/optex/hisyntax-html.opm
+ texmf-dist/tex/luatex/optex/hisyntax-python.opm
+ texmf-dist/tex/luatex/optex/hisyntax-tex.opm
texmf-dist/tex/luatex/optex/hyperlinks.opm
texmf-dist/tex/luatex/optex/hyphen-lan.opm
texmf-dist/tex/luatex/optex/if-macros.opm
@@ -222787,7 +223688,7 @@ catalogue-contact-home http://petr.olsak.net/optex
catalogue-ctan /macros/luatex/optex
catalogue-license pd
catalogue-topics format luatex
-catalogue-version 0.08
+catalogue-version 0.10
name optex.aarch64-linux
category Package
@@ -247137,7 +248038,7 @@ catalogue-version 1.1b
name pxchfon
category Package
-revision 53629
+revision 54895
shortdesc Japanese font setup for pLaTeX and upLaTeX
relocated 1
longdesc This package enables users to declare in their document which
@@ -247150,11 +248051,11 @@ longdesc for each new font. This package also supports setup for the
longdesc fonts used in the japanese-otf package. System requirements:
longdesc TeX format: LaTeX. TeX engine: pTeX or upTeX. DVIware:
longdesc dvipdfmx. Prerequisite packages: atbegshi.
-containersize 18932
-containerchecksum 2c81f0ce0c4f5762805cb86e6bf9a3965887e9beb5bdf7292d1a5a274d7728becc580afe0893621bba8e5c477da32936607e0b3fb5d3563f9c6f9ce640ab8859
-doccontainersize 366000
-doccontainerchecksum 3284966056d60f10b9f6636714fd64c580ffc53c03aaaf225e59df2574642a7c8d28f8ce44eb46ba0a5c809476a2bac4891ec0589c87c37f9a2fed9f412a20cd
-docfiles size=114
+containersize 19012
+containerchecksum 7c746a1ffca171b7c1ff245b110869ded747a09a8750a153f3939b645e0bba797a0c90d6a41473196b19bc52557de3337c24d9fd6198cbd1c677cb540ee07a80
+doccontainersize 312784
+doccontainerchecksum 7d5d30b32c2aafa42af1ab3e7563f56fe1fcd1fd6aa7a1d6e267e7625fdc4a410fe06af490e99716d5d01ef17a8245f2e9538542bac5b08811ffdb715789d99c
+docfiles size=101
RELOC/doc/platex/pxchfon/LICENSE
RELOC/doc/platex/pxchfon/README-ja.md details="Readme" language="ja"
RELOC/doc/platex/pxchfon/README.md details="Readme"
@@ -247259,7 +248160,7 @@ catalogue-contact-repository https://github.com/zr-tex8r/PXchfon
catalogue-ctan /language/japanese/pxchfon
catalogue-license mit
catalogue-topics japanese font-supp
-catalogue-version 1.7b
+catalogue-version 1.7c
name pxcjkcat
category Package
@@ -266179,7 +267080,7 @@ catalogue-version 2.7
name sourcesanspro
category Package
-revision 54512
+revision 54892
shortdesc Use SourceSansPro with TeX(-alike) systems
relocated 1
longdesc The font is an open-source Sans-Serif development from Adobe.
@@ -266187,87 +267088,70 @@ longdesc The package provides fonts (in both Adobe Type 1 and OpenType
longdesc formats) and macros supporting their use in LaTeX (Type 1) and
longdesc XeLaTeX/LuaLaTeX (OTF).
execute addMap SourceSansPro.map
-containersize 3464200
-containerchecksum 04ee030649a9d72897543a18e232719bf6b64d10c89d9fd8dd4635528394f87fd2ef0f7e79b907239655c36568edfb3362897e5d9f6a9272e6bbf9836438f846
-doccontainersize 495828
-doccontainerchecksum beef7a76b4e67d50aed12798aac2362a7771c401a0f00dfe5a98d90ab5bcbeceddd22a0f8e44d3faf53e231c52ffd9fe24d38c84a96090c2adf56d27034f65a7
-docfiles size=228
+containersize 5153396
+containerchecksum 0511dcf736273d80f7143c9dad96dd9f631b016183b4078243ed061d35889fea62e50c5f48e9842ffae7b654fd2e08a21d1c46403e56349c0b515ff2eb62e164
+doccontainersize 671484
+doccontainerchecksum 174def8872588c27b8f90b3c384ee356aec43e4e42014bb1c02d648d8b309dfa8fb9cea03f65fa9bd86dc3ff1e64483f1312dbaca6e212f65d2d379a1d9935e3
+docfiles size=327
RELOC/doc/latex/sourcesanspro/LICENSE.txt
RELOC/doc/latex/sourcesanspro/LPPL.txt
+ RELOC/doc/latex/sourcesanspro/README.md details="Readme"
RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.pdf
RELOC/doc/latex/sourcesanspro/sourcesanspro-otf-specimen.tex
RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.pdf
RELOC/doc/latex/sourcesanspro/sourcesanspro-type1-specimen.tex
RELOC/doc/latex/sourcesanspro/sourcesanspro.pdf details="Package documentation"
RELOC/doc/latex/sourcesanspro/sourcesanspro.tex
-runfiles size=3883
- RELOC/fonts/enc/dvips/sourcesanspro/a_2cvp4u.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_2dtrh6.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_2jmt2m.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_2n3jyq.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_3rlax2.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_3vq5rq.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_4jf6oe.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_5mnkjz.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_5tbsmu.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_6bttxp.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_7ajhns.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_b457hn.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_buvplz.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_cerb3o.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_cvynlr.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_cxftuq.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_debg3j.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_el7rh7.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_elrf5h.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_ev2kyj.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_fbyskd.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_floqlo.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_fva737.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_gc2pqo.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_ggs4wk.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_gsofwu.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_gw3vm7.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_ifkpwm.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_j24bgz.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_jpwolx.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_k74yek.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_kksgzp.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_ko3vnf.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_mf2mhr.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_mhce32.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_myad3x.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_n5gv3r.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_n5mfkj.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_nlm4w5.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_nxh7ce.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_p2xsve.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_p5cgg3.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_pcov5a.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_psnyba.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_pwnihc.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_qujrng.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_r6twhl.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_rseom6.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_rsnzt5.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_s26mqm.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_s4juqt.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_sd7igg.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_tczf5d.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_tnsd2h.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_tophx4.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_tzjlps.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_umlpmm.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_uvtzcn.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_v4sjy4.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_v537dd.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_vx5ywn.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_w2dgod.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_wdghyr.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_wn63nt.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_x5hjjp.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_xfkmtv.enc
- RELOC/fonts/enc/dvips/sourcesanspro/a_yugc2g.enc
+runfiles size=4747
+ RELOC/fonts/enc/dvips/sourcesanspro/a_3x2gk5.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_3yibv2.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_46wjfg.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_4blavb.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_4hbp34.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_4jropk.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_5ponh6.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_65vrnz.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_6qpf2n.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_77nslr.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_7n4q7u.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ahahpn.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_bkdqh2.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_c3pynx.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_cgcyrm.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_cqavns.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_dbwo4p.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ea4zg5.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_emkxm5.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ercdtc.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_f2tdxs.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_fbyhkd.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ghwomg.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_gpgjtc.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_gvn2fe.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_i5t6gn.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ivdnq2.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_kjpvhx.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ktnhmk.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_lhxooi.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_li5oiy.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_msbdn3.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_nxd2w7.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_o3uzeo.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_oazma5.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_oph6lb.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ordpq2.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_p7zagl.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_q6ppsi.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_qthovn.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_sj7g2w.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_svsr4s.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_t773hb.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ufai4b.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_vauq2g.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_wp5x3v.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_ywoy3g.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_zphccl.enc
+ RELOC/fonts/enc/dvips/sourcesanspro/a_zypyw7.enc
RELOC/fonts/map/dvips/sourcesanspro/SourceSansPro.map
RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-Black.otf
RELOC/fonts/opentype/adobe/sourcesanspro/SourceSansPro-BlackIt.otf
@@ -267725,8 +268609,8 @@ runfiles size=3883
RELOC/tex/latex/sourcesanspro/sourcesanspro.sty
catalogue-ctan /fonts/sourcesanspro
catalogue-license ofl lppl1.3
-catalogue-topics font-sans font-type1 font-otf font-t1enc
-catalogue-version 2.6
+catalogue-topics font font-sans font-proportional font-type1 font-otf font-supp font-t1enc
+catalogue-version 2.8
name sourceserifpro
category Package
@@ -287571,15 +288455,15 @@ docfiles size=592
name texlive-docindex
category TLCore
-revision 54869
+revision 54880
shortdesc top-level TeX Live doc.html, etc.
longdesc These files are regenerated as needed, which is often, so we
longdesc make them a separate package. See the tl-update-auto script for
longdesc the process.
containersize 388
-containerchecksum 74b269c82e5f17c399d24aeac7a484e3f3cc1a41cae92af56088c4d029432a25c3266fae2ba3d4efa119c3316bb8c3335013b53fb542d6b0a2087613223571fe
-doccontainersize 161440
-doccontainerchecksum 36a8dff5d9656b263c940c4d90055c972bd916f7521709c39808b4e9692c00347d6562aa4cf97be39d906811031fbec4cbdaea870c0acfa93b946eccabc9d1dd
+containerchecksum 1729a164dc9b6f26d8fa640b9aa9669b08d94be9400bd84e9ddabeb871ead028428f32c7f57671225f539057b08a770c4e9ff49972687e04067dcfc85b2acf41
+doccontainersize 161512
+doccontainerchecksum 7ce7cecb92ed771988424b113dc93a640b78b7aa54c36fb2b584cdda284a6dbb48147a92d32569e02edc1edebfb78501da49bb9173baae01abd145f3ee174fb7
docfiles size=324
doc.html
@@ -301497,7 +302381,7 @@ catalogue-topics french-doc translation
name translations
category Package
-revision 53962
+revision 54899
shortdesc Internationalisation of LaTeX2e packages
relocated 1
longdesc This package (once part of the exsheets package), provides a
@@ -301509,11 +302393,11 @@ longdesc Italian, Spanish, Catalan, Turkish, Croatian, Hungarian, Danish
longdesc and Portuguese from babel or polyglossia if either is in use in
longdesc the document. (Additional languages from the multilingual
longdesc packages may be possible: ask the author.)
-containersize 12052
-containerchecksum c4f55be467d87f49a0e65729769846afbffcca6e8b3611897d185ddccfbde7773d7c1e7591d4e67d234c2eb025a6e8774b22478e35ad83a550bec2854253cb7a
-doccontainersize 503920
-doccontainerchecksum e964c0af6f855b32a3ded46616325876f3a132db9b6afb1d885730d05d958750eb2014291eef21949a11e4850b91e84b02f45bd7d4d86ac3069ef32960ab7243
-docfiles size=132
+containersize 12216
+containerchecksum 239d6d84d73f3a7801eaa1a42a306507b6eb677ce42f615133c6f32bbfffbee2cd3fc8f3832193b51ccaa2ed3653415cbd533f1d2697d88a077b4e9b63a799ad
+doccontainersize 506928
+doccontainerchecksum 26bca81f6ec6fcf6247445bd9bf5a7bf80eb3f18db63f71da0e3e4deee65d95aa3183ce5eecb973aedca4c83bea661d111914f37dec30bf816620fb9f7911145
+docfiles size=133
RELOC/doc/latex/translations/README details="Readme"
RELOC/doc/latex/translations/translations_en.pdf details="Package documentation (English)" language="en"
RELOC/doc/latex/translations/translations_en.tex
@@ -301531,7 +302415,7 @@ catalogue-contact-repository https://github.com/cgnieder/translations/
catalogue-ctan /macros/latex/contrib/translations
catalogue-license lppl1.3
catalogue-topics multilingual package-supp
-catalogue-version 1.8
+catalogue-version 1.8a
name translator
category Package
@@ -320471,24 +321355,24 @@ catalogue-version 22.8
name xepersian-hm
category Package
-revision 54816
+revision 54900
shortdesc Fixes kashida feature in xepersian package
relocated 1
longdesc The kashida feature in xepersian has problems with some fonts
longdesc such as the HM Series fonts and the XB Series fonts. This
longdesc package fixes these problems. The package requires xepersian
longdesc and l3keys2e.
-containersize 4100
-containerchecksum 5863fb4a2c349941b4fc7928ed5610af6952a4b47363b118ff76551f18103e82f7f7654eaadb0ab44fc198946b3829bd10fbd83f304080856d7261f25a315ca0
-doccontainersize 140752
-doccontainerchecksum 31585c269821c1bd2fe06049797e791753d782472f51c1af106bd2d2606ff6b5931e3323d6141bfa86ccb33c08ec3d6da6bc784384c8eb14f0588085a4322231
-docfiles size=38
+containersize 4348
+containerchecksum 856ea3f1e563ae0dfe288e1b0193c83e897e8c123d08c5362ec9dbf5b153966b5f9c49dd83e709b2316e1d91e1a2425066437289e3bb003409302f845b8b8b32
+doccontainersize 151552
+doccontainerchecksum 2d3b3d87b47ed2d17abb4230947f8ef095eb174806fc4adc17a5143987099dd006f4bfc0d990bf6b05771fc606527dcc4f3fbac6394e275765065cebea3d6381
+docfiles size=41
RELOC/doc/xelatex/xepersian-hm/README.txt details="Readme"
RELOC/doc/xelatex/xepersian-hm/kashida-example.pdf details="Example of use" language="fa"
RELOC/doc/xelatex/xepersian-hm/kashida-example.tex
RELOC/doc/xelatex/xepersian-hm/xepersian-hm.pdf details="Package documentation"
-srccontainersize 6080
-srccontainerchecksum 56e6a26fdfb52232534f0782d033ce8fe70f8c5805d20769ccd4118a25cb7c212be9d83736c5eaff6d27b12f2cb086e1f41ec5c060d2661bffe0999ebac180a0
+srccontainersize 6492
+srccontainerchecksum f586206ec9a38fc7571829878ec2b8aacc7e2e71a6717c3bb2ddec37d9978d26c73baa97bd54ce253180cda7e4b73f239bc46cb4df1ee45ff9a95f598f90313a
srcfiles size=8
RELOC/source/xelatex/xepersian-hm/xepersian-hm.dtx
RELOC/source/xelatex/xepersian-hm/xepersian-hm.ins
@@ -320498,7 +321382,7 @@ runfiles size=6
catalogue-ctan /macros/xetex/latex/xepersian-hm
catalogue-license lppl1.3c
catalogue-topics persian xetex expl3
-catalogue-version 0.5a
+catalogue-version 0.5b
name xesearch
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index ffac512a9e..0e596e9d0c 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-6b6f394b032f95ad3d4f78fdd79a7559 texlive.tlpdb
+e765d93f00b9969348e1f96ab58f35b8 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 0a701fee52..defafa4056 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-38b477dd031cee8d9d9aaae5c9684122bf5ac262e791b47e5bcfbd2b63cc2ceb94a8287f4868403a5a2579bc49773bb9dd1a398fb7757a0f23ad4d6869da0e87 texlive.tlpdb
+999a25b71f3a00c5e612e7022080e64e3bccd03866a0ce58ca2dde194a877c7140550de9d4c1ac165f2992bdad2db39c725c8ed351249095cce3bf140e641527 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 487f7bafc1..a561de97cd 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,10 +1,10 @@
-----BEGIN PGP SIGNATURE-----
-iQEcBAEBCgAGBQJepM4FAAoJEEzhh34ZQ4xwvLAH/3by7NJVR+k8yh+nS0KqUoFa
-9zf6wzoC8JEG5Wwxi1OCBXbn2Aeff7xo1aAeiecZ8FbqMMoHhwscfjdj8sF2Zexf
-LW+lGvdAr002V8gX5+64Zfo5jBzlMcDEIoNggqgRgNAFWUIuhqz8+00R20J6r0xM
-uDAwU180PQ++/RW+QA67RJn3HqrB/sEC75etu5A3cuoJtreJtZLZYk6hZhR8YGrZ
-y6NQFNEgT0NyXcYRnFODBwfg3uPMVeqyZLFslMY9xgHWI+kRuqEKuowV4i8VdZFr
-pBJGTlaDUKZ7CHmG/xK72ISBWRFGC9pqOQ4L115rvJ4MO+YfTGOmXr36d9TJ46w=
-=47t2
+iQEcBAEBCgAGBQJeph+/AAoJEEzhh34ZQ4xw2CgH/ia4I2LrEqhdbXC3FyYaM4a0
+8Ckw13/7qX8/kfeoMO87z+hcWaNTO8qqF8ySlxx8qawSjJGuv8Fh40WizX+0cPAx
+k1/wvjpAbVUO1vlnLmoN/EUDfpBFP8iRM1ipjUBs4HD4J2TyHYVH3zLyTTrH2m2P
+htueP86hLhSWTCONbFqTKa4S6kBQ9I+b9wGP88PXgJVIh/87GKjrjMXlMnLHSOaG
+L/y/YLq758RPGp2GJGbAJ39ONIUyXIPpHUgWRj+nSdvKz9f/cCGe9PuoL0D10mGx
+xYUyhphntb2LakrAM/8ypbSD5MoY/VSEjTRSbeVO5nU8S8jbclj1Li04ficy2JA=
+=5hoU
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 40ef3f3210..fb198f6633 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/files.csv.lzma b/systems/win32/miktex/tm/packages/files.csv.lzma
index d0bcdfff0a..704a0639b6 100644
--- a/systems/win32/miktex/tm/packages/files.csv.lzma
+++ b/systems/win32/miktex/tm/packages/files.csv.lzma
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini
index 5b9a9c4321..f1c7048708 100644
--- a/systems/win32/miktex/tm/packages/next/pr.ini
+++ b/systems/win32/miktex/tm/packages/next/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1587845716
+date=1587932085
lastupd=miktex-arctrl-bin-2.9 miktex-arctrl-bin-x64-2.9 miktex-asymptote-bin-2.9 miktex-asymptote-bin-x64-2.9 miktex-autosp-bin-2.9 miktex-autosp-bin-x64-2.9 miktex-axohelp-bin-2.9 miktex-axohelp-bin-x64-2.9 miktex-bibarts-bin-2.9 miktex-bibarts-bin-x64-2.9 miktex-bibtex-bin-2.9 miktex-bibtex-bin-x64-2.9 miktex-bibtex8bit-bin-2.9 miktex-bibtex8bit-bin-x64-2.9 miktex-bzip2-bin-2.9 miktex-bzip2-bin-x64-2.9 miktex-cairo-bin-2.9 miktex-cairo-bin-x64-2.9 miktex-chktex-bin-2.9 miktex-chktex-bin-x64-2.9
-lstdigest=9f393ae37e8a2315cade150916d40a40
+lstdigest=d30375490d575f082dcfc8b913049163
numpkg=3898
relstate=next
-version=7420
+version=7421
diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini
index c86d573c07..8294e9029e 100644
--- a/systems/win32/miktex/tm/packages/pr.ini
+++ b/systems/win32/miktex/tm/packages/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1587845522
+date=1587931915
lastupd=changelog circuitikz embedfile garamond-libre pxjahyper willowtreebook arara emojicite epigraph-keys picture tpic2pdftex lacheck parsa tikzducks bearwear boxedminipage koma-script miktex-luatex-bin-2.9 miktex-luatex-bin-x64-2.9 miktex-runtime-bin-2.9
-lstdigest=58e9e3d91ae5fd3e686aa4b29bbf7bdd
+lstdigest=cb96b55f5ac04ea88e45222354c2c099
numpkg=3898
relstate=stable
-version=7420
+version=7421
diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog
index c1b7f377d6..90a246d2a4 100644
--- a/systems/win32/w32tex/ChangeLog
+++ b/systems/win32/w32tex/ChangeLog
@@ -1,5 +1,72 @@
W32TeX (x86 & x64) ChangeLog
+[2020/04/26]
+(01) aleph-w32.tar.xz
+(02) context.tar.xz
+(03) cweb-w32.tar.xz
+(04) dvi2ps-w32.tar.xz
+(05) dvi2tty-w32.tar.xz
+(06) dvipdfm-w32.tar.xz
+(07) dvipsk-w32.tar.xz
+(08) dvitools-w32.tar.xz
+(09) gregorio-w32.tar.xz
+(10) jtex-w32.tar.xz
+(11) lcdf-typetools-w32.tar.xz
+(12) luajittex-dev-w32.tar.xz
+(13) luajittex-exp-w32.tar.xz
+(14) luajittex-w32.tar.xz
+(15) luatex-dev-w32.tar.xz
+(16) luatex-exp-w32.tar.xz
+(17) luatex-w32.tar.xz
+(18) makeindex-w32.tar.xz
+(19) mftools.tar.xz
+(20) mftrace-w32.tar.xz
+(21) omegaj-w32.tar.xz
+(22) pdftex-w32.tar.xz
+(23) pstoedit-w32.tar.xz
+(24) psutils-w32.tar.xz
+(25) ptex-ng-w32.tar.xz
+(26) ptex-w32.tar.xz
+(27) tex4htk-w32.tar.xz
+(28) ttf2pk-w32.tar.xz
+(29) ttf2pt1-w32.tar.xz
+(30) uptex-w32.tar.xz
+(31) web2c-w32.tar.xz
+(32) xetex-w32.tar.xz
+(33) win64/aleph-w64.tar.xz
+(34) win64/context-w64.tar.xz
+(35) win64/cweb-w64.tar.xz
+(36) win64/dvi2ps-w64.tar.xz
+(37) win64/dvi2tty-w64.tar.xz
+(38) win64/dvipdfm-w64.tar.xz
+(39) win64/dvipsk-w64.tar.xz
+(40) win64/dvitools-w64.tar.xz
+(41) win64/gregorio-w64.tar.xz
+(42) win64/jtex-w64.tar.xz
+(43) win64/lcdf-typetools-w64.tar.xz
+(44) win64/luajittex-dev-w64.tar.xz
+(45) win64/luajittex-exp-w64.tar.xz
+(46) win64/luajittex-w64.tar.xz
+(47) win64/luatex-dev-w64.tar.xz
+(48) win64/luatex-exp-w64.tar.xz
+(49) win64/luatex-w64.tar.xz
+(50) win64/makeindex-w64.tar.xz
+(51) win64/mftools-w64.tar.xz
+(52) win64/mftrace-w64.tar.xz
+(53) win64/omegaj-w64.tar.xz
+(54) win64/pdftex-w64.tar.xz
+(55) win64/pstoedit-w64.tar.xz
+(56) win64/psutils-w64.tar.xz
+(57) win64/ptex-ng-w64.tar.xz
+(58) win64/ptex-w64.tar.xz
+(59) win64/tex4htk-w64.tar.xz
+(60) win64/ttf2pk-w64.tar.xz
+(61) win64/ttf2pt1-w64.tar.xz
+(62) win64/uptex-w64.tar.xz
+(63) win64/web2c-w64.tar.xz
+(64) win64/xetex-w64.tar.xz
+ Update kpathsea.
+
[2020/04/25]
(01) cjkzr.tar.xz
Update pxjahyper.