summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/ptexdir/tests
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-02-25 19:22:25 +0000
committerKarl Berry <karl@freefriends.org>2021-02-25 19:22:25 +0000
commitad547a6b5986815fda458221149728d9d9ab1d87 (patch)
tree16296910eb3eca724371474ea9aea3994dc69614 /Build/source/texk/web2c/ptexdir/tests
parent947b43de3dd21d58ccc2ffadefc4441ea1c2a813 (diff)
restore Build,TODO from r57911
git-svn-id: svn://tug.org/texlive/trunk@57915 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/ptexdir/tests')
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/control-symbol.tex101
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/disp_jfm.tex23
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/disp_unbox.tex23
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/endlinechar.tex53
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/free_ixsp.tex53
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/free_pena.tex52
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/goth10.tfmbin0 -> 1196 bytes
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/inhibitglue.tex220
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/inhibitglue_extensions.tex50
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/kinsoku_table.tex46
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/let_char_token.tex11
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/min10.pl392
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/min10.tfmbin0 -> 1196 bytes
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/nissya.bst2197
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/nissya_bib.aux60
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/postpena.tex15
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/pver1.tex2
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/pver2.tex13
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/sample.bib131
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/sample.dvibin0 -> 5696 bytes
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/samplea.typ2825
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/skipjfmp.pl159
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/skipjfmp.tex33
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/skipjfmp.tfmbin0 -> 632 bytes
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/tmin10.pl285
-rw-r--r--Build/source/texk/web2c/ptexdir/tests/tmin10.tfmbin0 -> 856 bytes
26 files changed, 6744 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/ptexdir/tests/control-symbol.tex b/Build/source/texk/web2c/ptexdir/tests/control-symbol.tex
new file mode 100644
index 00000000000..a935e97cc74
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/control-symbol.tex
@@ -0,0 +1,101 @@
+\scrollmode
+% plain TeX ソース
+\def\+{A}
+\def\+{A}
+\def\X{\+}
+\def\Y{\+}
+
+\message{■control symbol}
+% 記号類扱いの単文字命令 → control symbol
+% (この時の和文文字の挙動が tex-jp-build#37 の問題)
+\ifx\kanjiskip\undefined
+ \catcode`\+=12
+ \catcode`\+=12
+\else
+ \catcode`\+=12
+ \kcatcode`+=18
+\fi
+\show\X\relax\message{(\meaning\X)}
+\show\Y\relax\message{(\meaning\Y)}
+
+\message{■control word}
+% 普通の文字扱いの単文字命令 → control word
+\ifx\kanjiskip\undefined
+ \catcode`\+=11
+ \catcode`\+=11
+\else
+ \catcode`\+=11
+ \kcatcode`+=17
+\fi
+\show\X\relax\message{(\meaning\X)}
+\show\Y\relax\message{(\meaning\Y)}
+
+\message{■control word}
+% 複数文字命令 → control word
+\def\ABC{A}
+\def\あいう{A}
+\def\X{\ABC}
+\def\Y{\あいう}
+\show\X\relax\message{(\meaning\X)}
+\show\Y\relax\message{(\meaning\Y)}
+
+% csname
+\ifx\protected\undefined\else
+\catcode`\:=12
+\ifx\kanjiskip\undefined\else
+\kcatcode`!=18
+\fi
+\message{■csname}
+\protected\expandafter\def\csname :AB\endcsname{A}
+\protected\expandafter\def\csname !あい\endcsname{A}
+\edef\X{\csname :AB\endcsname}
+\edef\Y{\csname !あい\endcsname}
+\show\X\relax\message{(\meaning\X)}
+\show\Y\relax\message{(\meaning\Y)}
+
+\protected\expandafter\def\csname AB:\endcsname{A}
+\protected\expandafter\def\csname あい!\endcsname{A}
+\edef\X{\csname AB:\endcsname}
+\edef\Y{\csname あい!\endcsname}
+\show\X\relax\message{(\meaning\X)}
+\show\Y\relax\message{(\meaning\Y)}
+
+\ifx\ucs\undefined\else
+\message{■not_cjk}
+\kcatcode`ア=15
+\kcatcode`!=15
+\catcode"8A=12\relax
+\protected\expandafter\def\csname ア\endcsname{A}
+\protected\expandafter\def\csname !\endcsname{A}
+\edef\X{\csname ア\endcsname}
+\edef\Y{\csname !\endcsname}
+\show\X\relax\message{(\meaning\X)}
+\show\Y\relax\message{(\meaning\Y)}
+\fi
+\fi
+
+\message{■行末の和文コントロールシンボル}
+
+
+\kcatcode`】=18
+
+\def\】{◆}
+\def\@{◆}
+
+1. \】◇,\@◇
+
+2. \】%
+◇, \@%
+◇
+
+3. \】
+◇, \@
+◇
+
+4. \】 ◇, \@ ◇
+
+
+
+\end
+
+
diff --git a/Build/source/texk/web2c/ptexdir/tests/disp_jfm.tex b/Build/source/texk/web2c/ptexdir/tests/disp_jfm.tex
new file mode 100644
index 00000000000..989bf30df65
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/disp_jfm.tex
@@ -0,0 +1,23 @@
+%% plain pTeX
+\tracingonline1
+\showboxdepth10000
+\showboxbreadth10000
+
+\def\ADJUST{\ybaselineshift3pt\relax}
+
+% disp_node should not create JFM glue
+\setbox0=\vbox{%
+\ADJUST
+\noindent 「あA\par
+\noindent 「あA」\par
+\noindent 「あA\par
+\noindent いEお()\par
+\noindent ・えE\par
+\noindent ・うE}\showbox0 \box0
+
+% disp_node should not create JFM glue
+\ybaselineshift2pt
+\xkanjiskip2pt
+\setbox6=\vbox{あA\hbox{(あ)}A\par}\showbox6 \box6
+
+\end
diff --git a/Build/source/texk/web2c/ptexdir/tests/disp_unbox.tex b/Build/source/texk/web2c/ptexdir/tests/disp_unbox.tex
new file mode 100644
index 00000000000..885cbb28a02
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/disp_unbox.tex
@@ -0,0 +1,23 @@
+\ybaselineshift10pt
+\parindent5pt
+\showboxbreadth10000
+\showboxdepth10000
+\tracingonline1
+\setbox0=\vbox{\hsize=40pt%
+ {\ybaselineshift0pt oお\par fiか\par
+ \global\setbox4=\lastbox\unskip\unskip
+ \global\setbox5=\lastbox\unskip\unskip
+ }
+ \leavevmode\hbox{}いi\par uう\par えe\par
+ \setbox1=\lastbox\unskip\unskip
+ \setbox2=\lastbox\unskip\unskip
+ \setbox3=\lastbox\unskip\unskip
+
+ \hsize=200pt
+ \leavevmode\unhcopy3\unhcopy1\unhcopy4\unhcopy5\unhcopy2
+
+ %\showbox1\showbox2\showbox3\showbox4\showbox5
+}\unvbox0
+
+\end
+
diff --git a/Build/source/texk/web2c/ptexdir/tests/endlinechar.tex b/Build/source/texk/web2c/ptexdir/tests/endlinechar.tex
new file mode 100644
index 00000000000..ef59b1fc886
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/endlinechar.tex
@@ -0,0 +1,53 @@
+\font\x=ecrm1000 \x
+\parindent0pt\noautoxspacing
+\output{\shipout\box255}
+\def\あ{ア}
+\def\,{イ}
+
+1a\,
+% --> 1aイ
+
+2a\あ
+% --> 2aア
+
+\endlinechar=-1\relax
+
+3a\,
+% --> 3aイ
+% previous pTeX, upTeX: Undefined cs.
+
+4a\あ
+% --> 4aア
+% prev. pTeX: Undefined cs.
+
+5a,
+% prev. upTeX: byte-seq.
+
+6aあ
+% prev. upTeX: byte-seq.
+
+7a\^^e3^^81^^82b\^^e3^^81^^82
+% 2回エラーが出るが,これは正しい.
+
+% upTeX only tests
+\ifx\enablecjktoken\undefined
+\else
+ \catcode"E3=11\relax
+ \catcode"81=11\relax
+ \catcode"82=11\relax
+ 8a\^^e3^^81^^82
+ % --> 8aア
+ \kcatcode`あ=15\relax
+ 9a\あ
+ % == 9a\^^e3^^81^^82. --> 9aア
+ \def\^^e3^^81^^82{ウ}
+ 10a\あ b\あ
+ % == 10a\^^e3^^81^^82 b\^^e3^^81^^82. --> 10aウbウ
+ \kcatcode12354=16\relax
+ 11a\あ b\あ
+ % == 10a\^^e3^^81^^82 b\^^e3^^81^^82. --> 11aウbウ
+\fi
+
+\bye
+
+
diff --git a/Build/source/texk/web2c/ptexdir/tests/free_ixsp.tex b/Build/source/texk/web2c/ptexdir/tests/free_ixsp.tex
new file mode 100644
index 00000000000..9a3b2766415
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/free_ixsp.tex
@@ -0,0 +1,53 @@
+%#!eptex -ini -etex
+\let\dump\relax
+\batchmode
+\input plain
+
+\errorstopmode
+\catcode`@=11
+\newcount\@tempcnta
+\newcount\@tempcntb
+\newcount\@tempcntc
+\mathchardef\LIM=256
+
+\def\MYCHAR#1{%
+ \@tempcntc=\numexpr7*#1+"101\relax
+ \@tempcnta=\@tempcntc\divide\@tempcnta 94
+ \@tempcntb=\numexpr\@tempcntc-94*\@tempcnta+1\relax
+ \ifnum\@tempcntb<0\advance\@tempcntb94 \advance\@tempcnta-1\fi
+ \advance\@tempcnta18 % 18区以降
+ \CNTA=\kuten\numexpr"100*\@tempcnta+\@tempcntb\relax
+}
+
+\newcount\CNT\newcount\CNTA
+\CNT=0
+\loop
+ \MYCHAR\CNT
+ \message{\the\CNT.}
+ \inhibitxspcode\CNTA=1\relax
+ \advance\CNT1\relax
+ \ifnum\CNT<\LIM
+\repeat
+
+\newcount\CNTB
+
+\loop
+ \MYCHAR\CNTB
+ \global\inhibitxspcode\CNTA=3
+{%
+\CNT=0
+\loop
+ \MYCHAR\CNT
+ \count@=\numexpr 1-\inhibitxspcode\CNTA\relax
+ \ifnum\count@=0\else\ifnum\CNTB=\CNT\else
+ \errmessage{<\the\CNTB, \the\CNT, \the\inhibitxspcode\CNTA>}\fi\fi
+ \advance\CNT1\relax
+ \ifnum\CNT<\LIM
+\repeat
+}
+ \MYCHAR\CNTB
+ \global\inhibitxspcode\CNTA=1\relax
+ \advance\CNTB1\relax
+ \ifnum\CNTB<\LIM
+\repeat
+\bye
diff --git a/Build/source/texk/web2c/ptexdir/tests/free_pena.tex b/Build/source/texk/web2c/ptexdir/tests/free_pena.tex
new file mode 100644
index 00000000000..184720a80a2
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/free_pena.tex
@@ -0,0 +1,52 @@
+%#!eptex -ini -etex
+\let\dump\relax
+\batchmode
+\input plain
+
+\errorstopmode
+\catcode`@=11
+\newcount\@tempcnta
+\newcount\@tempcntb
+\newcount\@tempcntc
+\mathchardef\LIM=256
+
+\def\MYCHAR#1{%
+ \@tempcntc=\numexpr7*#1+"101\relax
+ \@tempcnta=\@tempcntc\divide\@tempcnta 94
+ \@tempcntb=\numexpr\@tempcntc-94*\@tempcnta+1\relax
+ \ifnum\@tempcntb<0\advance\@tempcntb94 \advance\@tempcnta-1\fi
+ \advance\@tempcnta18 % 18区以降
+ \CNTA=\kuten\numexpr"100*\@tempcnta+\@tempcntb\relax
+}
+
+\newcount\CNT\newcount\CNTA
+\CNT=0
+\loop
+ \MYCHAR\CNT
+ \message{\the\CNT.}
+ \prebreakpenalty\CNTA=\numexpr\CNT+1\relax
+ \advance\CNT1\relax
+ \ifnum\CNT<\LIM
+\repeat
+
+\newcount\CNTB
+
+\loop
+ \MYCHAR\CNTB
+ \global\prebreakpenalty\CNTA=0
+{%
+\CNT=0
+\loop
+ \MYCHAR\CNT
+ \count@=\numexpr -\CNT-1+\prebreakpenalty\CNTA\relax
+ \ifnum\count@=0\else\ifnum\CNTB=\CNT\else\errmessage{<\the\CNTB, \the\CNT>}\fi\fi
+ \advance\CNT1\relax
+ \ifnum\CNT<\LIM
+\repeat
+}
+ \MYCHAR\CNTB
+ \global\prebreakpenalty\CNTA=\numexpr\CNTB+1\relax
+ \advance\CNTB1\relax
+ \ifnum\CNTB<\LIM
+\repeat
+\bye
diff --git a/Build/source/texk/web2c/ptexdir/tests/goth10.tfm b/Build/source/texk/web2c/ptexdir/tests/goth10.tfm
new file mode 100644
index 00000000000..92b72a3fa22
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/goth10.tfm
Binary files differ
diff --git a/Build/source/texk/web2c/ptexdir/tests/inhibitglue.tex b/Build/source/texk/web2c/ptexdir/tests/inhibitglue.tex
new file mode 100644
index 00000000000..2c76a9782a8
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/inhibitglue.tex
@@ -0,0 +1,220 @@
+%#!ptex2pdf -e inhibitglue.tex
+\parindent0pt
+\def\head#1{\par\noindent{\tentt ■\string#1}\par}
+\noautospacing \noautoxspacing
+
+%%% unexpandable tokens with non-discardable nodes
+
+\head{\null}
+あ)\inhibitglue (あ\par % ベタ
+あ)\null\inhibitglue (あ\par % 二分
+あ)\inhibitglue\null (あ\par % 二分
+あ)\null\inhibitglue\null (あ\par % 全角【TL17二分】
+あ)\null (あ\par % 全角
+
+\head{\unbox}
+\def\unbox{\unhcopy200 }
+\setbox200=\hbox{}
+あ)\inhibitglue (あ\par % ベタ
+あ)\unbox\inhibitglue (あ\par % 二分
+あ)\inhibitglue\unbox (あ\par % ベタ【TL17二分】
+あ)\unbox\inhibitglue\unbox (あ\par % 二分
+あ)\unbox (あ\par % 全角
+\setbox200=\hbox{漢}
+あ)\inhibitglue (あ\par % ベタ
+あ)\unbox\inhibitglue (あ\par % 前二分
+あ)\inhibitglue\unbox (あ\par % 後二分
+あ)\unbox\inhibitglue\unbox (あ\par % 前後二分【TL17前二分】
+あ)\unbox (あ\par % 前後二分
+
+\head{\vrule}
+あ)\inhibitglue (あ\par % ベタ
+あ)\vrule\inhibitglue (あ\par % 二分
+あ)\inhibitglue\vrule (あ\par % 二分
+あ)\vrule\inhibitglue\vrule (あ\par % 全角【TL17二分】
+あ)\vrule (あ\par % 全角
+
+\head{\discretionary}
+\def\disc{\discretionary{}{}{}}
+あ)\inhibitglue (あ\par % ベタ
+あ)\disc\inhibitglue (あ\par % 二分
+あ)\inhibitglue\disc (あ\par % 二分
+あ)\disc\inhibitglue\disc (あ\par % 全角【TL17二分】
+あ)\disc (あ\par % 全角
+
+\head{\special}
+\def\spec{\special{}}
+あ)\inhibitglue (あ\par % ベタ
+あ)\spec\inhibitglue (あ\par % 二分
+あ)\inhibitglue\spec (あ\par % 二分
+あ)\spec\inhibitglue\spec (あ\par % 全角【TL17二分】
+あ)\spec (あ\par % 全角
+
+\head{\write-1}
+\def\tlog{\write-1{}}
+あ)\inhibitglue (あ\par % ベタ
+あ)\tlog\inhibitglue (あ\par % 二分
+あ)\inhibitglue\tlog (あ\par % 二分
+あ)\tlog\inhibitglue\tlog (あ\par % 全角【TL17二分】
+あ)\tlog (あ\par % 全角
+
+\head{\insert}
+\def\ins{\insert201{}}
+あ)\inhibitglue (あ\par % ベタ
+あ)\inhibitglue\ins (あ\par % 二分
+あ)\ins\inhibitglue (あ\par % 二分
+あ)\ins\inhibitglue\ins (あ\par % 全角【TL17二分】
+あ)\ins (あ\par % 全角
+
+\head{\mark}
+\def\mrk{\mark{}}
+あ)\inhibitglue (あ\par % ベタ
+あ)\inhibitglue\mrk (あ\par % 二分
+あ)\mrk\inhibitglue (あ\par % 二分
+あ)\mrk\inhibitglue\mrk (あ\par % 全角【TL17二分】
+あ)\mrk (あ\par % 全角
+
+\head{\vadjust}
+\def\adj{\vadjust{}}
+あ)\inhibitglue (あ\par % ベタ
+あ)\inhibitglue\adj (あ\par % 二分
+あ)\adj\inhibitglue (あ\par % 二分
+あ)\adj\inhibitglue\adj (あ\par % 全角【TL17二分】
+あ)\adj (あ\par % 全角
+
+\head{\math}
+\def\math{$ $}
+あ)\inhibitglue (あ\par % ベタ
+あ)\inhibitglue\math (あ\par % 二分
+あ)\math\inhibitglue (あ\par % 二分
+あ)\math\inhibitglue\math (あ\par % 全角【TL17二分】
+あ)\math (あ\par % 全角
+
+%%% unexpandable tokens with discardable nodes (glue, kern, penalty)
+
+\head{\hskip0pt}
+\def\zskip{\hskip0pt}
+あ)\inhibitglue (あ\par % ベタ
+あ)\zskip\inhibitglue (あ\par % 二分
+あ)\inhibitglue\zskip (あ\par % 二分
+あ)\zskip\inhibitglue\zskip (あ\par % 全角
+あ)\zskip (あ\par % 全角
+
+\head{\kern0pt}
+\def\zkern{\kern0pt}
+あ)\inhibitglue (あ\par % ベタ
+あ)\zkern\inhibitglue (あ\par % 二分
+あ)\inhibitglue\zkern (あ\par % 二分
+あ)\zkern\inhibitglue\zkern (あ\par % 全角
+あ)\zkern (あ\par % 全角
+
+\head{\penalty10000}
+\def\zpena{\penalty10000 }
+あ)\inhibitglue (あ\par % ベタ
+あ)\zpena\inhibitglue (あ\par % 二分
+あ)\inhibitglue\zpena (あ\par % 二分
+あ)\zpena\inhibitglue\zpena (あ\par % 全角【TL17二分】
+あ)\zpena (あ\par % 全角
+
+%%% unexpandable tokens
+
+\head{\relax}
+あ)\inhibitglue (あ\par % ベタ
+あ)\relax\inhibitglue (あ\par % 二分
+あ)\inhibitglue\relax (あ\par % ベタ【TL17二分】
+あ)\relax\inhibitglue\relax (あ\par % 二分
+あ)\relax (あ\par % 全角
+ああ\inhibitglue\relax (あ\par % ベタ【TL17二分】
+ああ\relax\inhibitglue (あ\par % ベタ
+あ)\relax\inhibitglue ああ\par % 二分
+あ)\inhibitglue\relax ああ\par % ベタ
+
+\head{\ignorespaces}
+\let\ignsp=\ignorespaces
+あ)\inhibitglue (あ\par % ベタ
+あ)\ignsp\inhibitglue (あ\par % 二分
+あ)\inhibitglue\ignsp (あ\par % ベタ【TL17二分】
+あ)\ignsp\inhibitglue\ignsp (あ\par % 二分
+あ)\ignsp (あ\par % 全角
+
+\head{\spacefactor1000}
+\def\spf{\spacefactor1000 }
+あ)\inhibitglue (あ\par % ベタ
+あ)\spf\inhibitglue (あ\par % 二分
+あ)\inhibitglue\spf (あ\par % ベタ【TL17二分】
+あ)\spf\inhibitglue\spf (あ\par % 二分
+あ)\spf (あ\par % 全角
+
+\head{\let}
+\def\letab{\let\a\b}
+あ)\inhibitglue (あ\par % ベタ
+あ)\letab\inhibitglue (あ\par % 二分
+あ)\inhibitglue\letab (あ\par % ベタ【TL17二分】
+あ)\letab\inhibitglue\letab (あ\par % 二分
+あ)\letab (あ\par % 全角
+
+%%% grouping
+
+\head{\group}
+あ)(あ\par % 一括
+あ){}(あ\par % 別々
+あ){}\inhibitglue (あ\par % 左
+あ)\inhibitglue {}(あ\par % なし【TL17右】
+あ){}\inhibitglue{}(あ\par % 左
+あ){\inhibitglue }(あ\par % 左
+あ)\inhibitglue (あ\par % なし
+あ)・あ\par % 一括
+あ){}・あ\par % 別々
+あ){}\inhibitglue ・あ\par % 左
+あ)\inhibitglue {}・あ\par % なし【TL17右】
+あ){}\inhibitglue{}・あ\par % 左
+あ){\inhibitglue }・あ\par % 左
+あ)\inhibitglue ・あ\par % なし
+あ・(あ\par % 一括
+あ・{}(あ\par % 別々
+あ・{}\inhibitglue (あ\par % 左
+あ・\inhibitglue {}(あ\par % なし【TL17右】
+あ・{}\inhibitglue{}(あ\par % 左
+あ・{\inhibitglue }(あ\par % 左
+あ・\inhibitglue (あ\par % なし
+
+
+\head{\inhibitglue\ at 内側リスト}
+あ\inhibitglue\setbox0=\vbox{『}(\par % ベタ【TL17二分】
+あ\setbox0=\hbox{\inhibitglue}(\par % 二分【TL17ベタ】
+)\setbox0=\hbox{\inhibitglue}(\par % 全角【TL17二分】
+
+あ\setbox0=\vbox{\hsize10zw「}(い\box0\par % (前:二分,「前:二分
+あ\setbox0=\vbox{\hsize10zw「\inhibitglue}(い\box0\par % (前:二分,「前:二分
+あ\inhibitglue\setbox0=\vbox{\hsize10zw「}(い\box0\par % (前:ベタ【TL17二分】,「前:二分
+あ\setbox0=\vbox{\hsize10zw\leavevmode\inhibitglue 「}(い\box0\par % (前:二分,「前:ベタ
+
+
+%%% \unskip vs \inhibitglue (e-pTeX \lastnodesubtype is required)
+\ifx\lastnodesubtype\undefined \expandafter\end \fi
+
+\head{\inhibitglue\ test}
+\setbox200=\hbox{)\hskip10pt\unskip
+ \xdef\gluetype{\the\lastnodetype}%
+ \xdef\jfmgluesubtype{\the\lastnodesubtype}}
+\protected\def\removejfmglue{%
+ \ifnum\lastnodetype=\gluetype\relax
+ \ifnum\lastnodesubtype=\jfmgluesubtype\relax
+ \unskip
+ \fi
+ \fi}
+
+あ)\inhibitglue あ\par % 消える
+あ)\relax\inhibitglue あ\par % 消えない
+あ)\relax\removejfmglue あ\par % 消える【新設】
+%% for tabular environment
+あ)\hskip20pt\unskip\unskip あ\par % 消える
+あ)\hskip20pt\unskip\inhibitglue あ\par % 消えない
+あ)\hskip20pt\unskip\removejfmglue あ\par % 消える【新設】
+
+
+%% reset \inhibitglue at char_node
+\vrule\inhibitglue ;あ( % ;前ベタ,;後四分
+
+
+\bye
diff --git a/Build/source/texk/web2c/ptexdir/tests/inhibitglue_extensions.tex b/Build/source/texk/web2c/ptexdir/tests/inhibitglue_extensions.tex
new file mode 100644
index 00000000000..b4942bd2df6
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/inhibitglue_extensions.tex
@@ -0,0 +1,50 @@
+\documentclass{jsarticle}
+\usepackage[deluxe]{otf}
+\begin{document}
+\def\cs#1{\texttt{\textbackslash #1}}
+\immediate\openout15="\jobname.hoge"\immediate\closeout15
+
+\tracingonline1\showboxdepth100\showboxbreadth10000
+あい\inhibitglue(あ)
+
+あい\inhibitglue\openout14="\jobname-P.out"
+(あ\cs{openout}←whatsit作る
+
+あい\inhibitglue\write14{う}(あ\cs{write}←whatsit作る
+
+あい\inhibitglue\closeout14(あ\cs{closeout}←whatsit作る
+
+あい\inhibitglue\special{A}(あ\cs{special}←whatsit作る
+
+あい\inhibitglue\immediate(あ\cs{immediate}
+
+あい\inhibitglue\immediate\openout14="\jobname-I.out"
+(あ\cs{immediate}\cs{openout}
+
+あい\inhibitglue\immediate\write14{え}(あ\cs{immediate}\cs{write}
+
+あい\inhibitglue\immediate\closeout14(あ\cs{immediate}\cs{closeout}
+
+あい\inhibitglue\immediate\special{A}(あ\cs{immediate}\cs{special}$^*$
+
+あい\inhibitglue\pdfsavepos(あ\cs{pdfsavepos}←whatsit作る
+
+あい\inhibitglue\immediate\pdfsavepos(あ\cs{immediate}\cs{pdfsavepos}$^*$
+
+あい\inhibitglue\read16to\CS (あ\cs{read}
+
+あい\inhibitglue\openin1="\jobname.aux"
+(あ\cs{openin}\closein1
+
+あい\inhibitglue\setlanguage1(あ\cs{setlanguage}←whatsit作る
+
+
+あい\inhibitglue\textbf{(う)}
+
+あい\inhibitglue\textsf{(う)}
+
+あい\inhibitglue\textsf{(う)}
+
+$^*$: \cs{immediate}は効力なし
+\end{document}
+
diff --git a/Build/source/texk/web2c/ptexdir/tests/kinsoku_table.tex b/Build/source/texk/web2c/ptexdir/tests/kinsoku_table.tex
new file mode 100644
index 00000000000..bece61cd0c6
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/kinsoku_table.tex
@@ -0,0 +1,46 @@
+%#!uptex
+\newcount\fuga\newcount\dflt
+\iffalse
+ \global\let\prebreakpenalty=\inhibitxspcode
+ \fuga="30D3 \dflt=3
+\else
+ \fuga="3090 \dflt=0
+\fi
+
+\scrollmode
+\newcount\hoge\hoge="3000
+\loop\ifnum\hoge<\fuga
+ \message{\the\hoge}\prebreakpenalty\hoge=2
+ \advance\hoge 1\relax \repeat
+
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000>}% 2, D
+{
+ \prebreakpenalty"3001=\dflt\relax
+ \global\prebreakpenalty"4000=1\relax% error
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000>}% D, D
+}
+
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000>}% 2, D
+
+{
+ \global\prebreakpenalty"3001=\dflt\relax
+ \prebreakpenalty"4000=1\relax% no error
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000>}% D, 1
+}
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000>}% D, D
+
+\prebreakpenalty"4000=1\relax% no error
+
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000,
+ \the\prebreakpenalty"3549>}% D, 1, D
+
+\prebreakpenalty"4000=\dflt\relax
+
+\prebreakpenalty"3549=1\relax% no error
+
+\message{<\the\prebreakpenalty"3001, \the\prebreakpenalty"4000,
+ \the\prebreakpenalty"3549>}% D, D, 1
+
+
+\end
+
diff --git a/Build/source/texk/web2c/ptexdir/tests/let_char_token.tex b/Build/source/texk/web2c/ptexdir/tests/let_char_token.tex
new file mode 100644
index 00000000000..2d39d0e3809
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/let_char_token.tex
@@ -0,0 +1,11 @@
+%#!ptex
+\newcount\x
+\scrollmode
+\def\T#1{\x=`#1 \message{\the\x}}
+\def\漢{}
+\def\aaa{西}\T{\aaa}% err
+\def\AAA{s}\T{\AAA} % err
+\let\ccc=西\relax\T{\ccc} % err
+\T~ \T\a \T{漢}
+\T\漢 % err
+\end
diff --git a/Build/source/texk/web2c/ptexdir/tests/min10.pl b/Build/source/texk/web2c/ptexdir/tests/min10.pl
new file mode 100644
index 00000000000..88d17dc482b
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/min10.pl
@@ -0,0 +1,392 @@
+(COMMENT THIS IS A KANJI FORMAT FILE)
+(FAMILY MINCHO)
+(FACE F MRR)
+(CODINGSCHEME TEX KANJI TEXT)
+(DESIGNSIZE R 10.0)
+(COMMENT DESIGNSIZE IS IN POINTS)
+(COMMENT OTHER SIZES ARE MULTIPLES OF DESIGNSIZE)
+(CHECKSUM O 35147750366)
+(FONTDIMEN
+ (SLANT R 0.0)
+ (SPACE R 0.0)
+ (STRETCH R 0.091641)
+ (SHRINK R 0.0)
+ (XHEIGHT R 0.916443)
+ (QUAD R 0.962216)
+ (EXTRASPACE R 0.229101)
+ (EXTRASTRETCH R 0.183283)
+ (EXTRASHRINK R 0.114551)
+ )
+(GLUEKERN
+ (LABEL O 0)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (STOP)
+ (LABEL O 7)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.048114)
+ (KRN O 11 R -0.048114)
+ (STOP)
+ (LABEL O 12)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.096228)
+ (KRN O 11 R -0.096228)
+ (STOP)
+ (LABEL O 13)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.144327)
+ (KRN O 11 R -0.144327)
+ (STOP)
+ (LABEL O 14)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.192441)
+ (KRN O 11 R -0.192441)
+ (STOP)
+ (LABEL O 2)
+ (LABEL O 10)
+ (GLUE O 0 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 5 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ (STOP)
+ (LABEL O 4)
+ (GLUE O 0 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 7 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 12 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 13 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 14 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 5 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 3 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 11 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 1 R 0.3042755 R 0.0 R 0.3042755)
+ (STOP)
+ (LABEL O 5)
+ (GLUE O 0 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 5 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 3 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 11 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 1 R 0.229101 R 0.0 R 0.229101)
+ (STOP)
+ (LABEL O 3)
+ (GLUE O 0 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 7 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 12 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 13 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 14 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 11 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 1 R 0.107391 R 0.0 R 0.107391)
+ (STOP)
+ (LABEL O 6)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.0 R 0.458203 R 0.0)
+ (STOP)
+ (LABEL O 1)
+ (LABEL O 11)
+ (GLUE O 0 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 2 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 4 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 5 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 3 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 11 R 0.0 R 0.458203 R 0.0)
+ (GLUE O 1 R 0.0 R 0.458203 R 0.0)
+ (STOP)
+ )
+(CHARSINTYPE O 1
+ J 214B J 214D J 214F J 2151 J 2153 J 2155 J 2157 J 2159 J 215B
+ )
+(CHARSINTYPE O 2
+ J 212B J 212C
+ )
+(CHARSINTYPE O 3
+ J 2136 J 2137 J 2139 J 2168 J 2169 J 216A J 2170 J 2171 J 2172 J 2421
+ J 2423 J 2425 J 2427 J 2429 J 2443 J 2463 J 2465 J 2467 J 246E J 2521
+ J 2523 J 2525 J 2527 J 2529 J 2543 J 2563 J 2565 J 2567 J 256E J 2575
+ J 2576
+ )
+(CHARSINTYPE O 4
+ J 2126 J 2127 J 2128 J 212A J 212D J 212E J 213E J 2142 J 2143 J 2146
+ J 2147
+ )
+(CHARSINTYPE O 5
+ J 2129 J 212F J 2130 J 2133 J 2135 J 2148 J 2149 J 216B J 216C J 216D
+ J 2178
+ )
+(CHARSINTYPE O 6
+ J 214A J 214C J 214E J 2150 J 2152 J 2154 J 2156 J 2158 J 215A
+ )
+(CHARSINTYPE O 7
+ J 2426 J 242F J 2430 J 2431 J 2432 J 2439 J 243A J 246A J 2546 J 2547
+ J 2564
+ )
+(CHARSINTYPE O 10
+ J 2124 J 2125
+ )
+(CHARSINTYPE O 11
+ J 2122 J 2123
+ )
+(CHARSINTYPE O 12
+ J 2522 J 2524 J 2526 J 252A J 2531 J 2532 J 2535 J 2536 J 253D J 253E
+ J 2541 J 2542 J 2544 J 2545 J 2548 J 2549 J 254A J 2555 J 2556 J 2557
+ J 255F J 2561 J 2569 J 256A J 256F J 2572
+ )
+(CHARSINTYPE O 13
+ J 252F J 2530 J 253F J 2540
+ )
+(CHARSINTYPE O 14
+ J 254E
+ )
+(TYPE O 0
+ (CHARWD R 0.962216)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ )
+ )
+(TYPE O 1
+ (CHARWD R 0.504013)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 2 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 4 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 5 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 3 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 11 R 0.0 R 0.458203 R 0.0)
+ (GLUE O 1 R 0.0 R 0.458203 R 0.0)
+ )
+ )
+(TYPE O 2
+ (CHARWD R 0.353665)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 5 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ )
+ )
+(TYPE O 3
+ (CHARWD R 0.747434)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 7 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 12 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 13 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 14 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 11 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 1 R 0.107391 R 0.0 R 0.107391)
+ )
+ )
+(TYPE O 4
+ (CHARWD R 0.353665)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 7 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 12 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 13 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 14 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 5 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 3 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 11 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 1 R 0.3042755 R 0.0 R 0.3042755)
+ )
+ )
+(TYPE O 5
+ (CHARWD R 0.504013)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 5 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 3 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 11 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 1 R 0.229101 R 0.0 R 0.229101)
+ )
+ )
+(TYPE O 6
+ (CHARWD R 0.504013)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.0 R 0.458203 R 0.0)
+ )
+ )
+(TYPE O 7
+ (CHARWD R 0.962216)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.048114)
+ (KRN O 11 R -0.048114)
+ )
+ )
+(TYPE O 10
+ (CHARWD R 0.353665)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.608551 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 2 R 0.0 R 0.3042755 R 0.0)
+ (GLUE O 4 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 5 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.229101 R 0.229101 R 0.229101)
+ )
+ )
+(TYPE O 11
+ (CHARWD R 0.504013)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 0 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 7 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 12 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 13 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 14 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 10 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 2 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 4 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 5 R 0.229101 R 0.229101 R 0.229101)
+ (GLUE O 3 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (GLUE O 11 R 0.0 R 0.458203 R 0.0)
+ (GLUE O 1 R 0.0 R 0.458203 R 0.0)
+ )
+ )
+(TYPE O 12
+ (CHARWD R 0.962216)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.096228)
+ (KRN O 11 R -0.096228)
+ )
+ )
+(TYPE O 13
+ (CHARWD R 0.962216)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.144327)
+ (KRN O 11 R -0.144327)
+ )
+ )
+(TYPE O 14
+ (CHARWD R 0.962216)
+ (CHARHT R 0.777588)
+ (CHARDP R 0.138855)
+ (COMMENT
+ (GLUE O 4 R 0.3042755 R 0.0 R 0.3042755)
+ (GLUE O 5 R 0.229101 R 0.0 R 0.229101)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 6 R 0.458203 R 0.0 R 0.229101)
+ (KRN O 10 R -0.192441)
+ (KRN O 11 R -0.192441)
+ )
+ )
diff --git a/Build/source/texk/web2c/ptexdir/tests/min10.tfm b/Build/source/texk/web2c/ptexdir/tests/min10.tfm
new file mode 100644
index 00000000000..1bf04b7ac32
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/min10.tfm
Binary files differ
diff --git a/Build/source/texk/web2c/ptexdir/tests/nissya.bst b/Build/source/texk/web2c/ptexdir/tests/nissya.bst
new file mode 100644
index 00000000000..b2b1d420b5e
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/nissya.bst
@@ -0,0 +1,2197 @@
+%-----------------------------------------------------------------------------%
+% nissya.bst: 『社会学評論』用 BibTeX style file.
+%
+% 飯田修さんによって作成された jpolisci.bst ファイルが、武田史郎さんによって経
+% 済学用に書き換えられ、さらにそれを樋口耕一が『社会学評論』用に書き換えたのが
+% このファイルです。
+%
+% 使い方などは、同梱の説明書(PDF)をまずご覧下さい。
+%
+% なお、どうしても文献リストに「編」ではなく「編著」と出力したい場合は、文献DB
+% を作成する際、「editor」フィールドと「hentyo」フィールドに同じ名前を入力して
+% 下さい。
+%
+% 以下は元の jecon.bst のヘッダー部分です.
+%-----------------------------------------------------------------------------%
+%
+% jecon.bst: 経済学用 BibTeX style file.
+%
+% これは,飯田修さんによって作成された jpolisci.bst ファイルを経済学用に
+% 武田史郎 <zbc08106@park.zero.ad.jp> が改変したものです.
+%
+% First-written: <2002/11/03>
+% Time-stamp: <2003-01-03 21:52:21 Shiro Takeda>
+% Version 1.4
+% $Id: nissya.bst,v 1.31 2005/02/18 19:23:10 ko-ichi Exp $
+%
+% 元の jpolisci.bst の著作権は飯田さんにあります.
+% ぼくが改変した部分の著作権はどうでもいいです.好きなように扱ってくださ
+% い.
+%
+% オリジナルの jpolisci.bst は,
+% <http://www.bol.ucla.edu/~oiida/jpolisci/> で入手することができます.
+%
+% ぼくが改変した部分は主にプログラム中のコメント行の部分です.コメント行
+% の部分 (とその周り) を見れば,どう変えたかわかると思います.
+%
+% コメント,要望は Shiro Takeda <zbc08106@park.zero.ad.jp> まで.
+%
+% 以下は元の jpolisci.bst のヘッダー部分です.
+%
+% JPOLISCI: a bibliography style for papers in political sicence
+% and other fields that cite Japanese literature.
+% Vertical writing (tate-gaki) compatible.
+
+ % Version 20000910 for JBibTeX versions 0.30 or later,
+ % and pLaTeX2e or later.
+ % Copyright (C) 2000, all rights reserved.
+ %
+ % This file was derived from jbtxbst.doc.
+ %
+ % Copying of this file is authorized only if either
+ % (1) you make absolutely no changes to your copy, including name, or
+ % (2) if you do make changes, you name it something other than
+ % jbtxbst.doc, jplain.bst, junsrt.bst, jalpha.bst, jabbrv.bst,
+ % tipsj.bst, jipsj.bst, tieice.bst, jname.bst, jorsj.bst, jglsj.bst,
+ % seg.bst, jpolisci.bst.
+ %
+ % This restriction helps ensure that all standard styles are identical.
+ % The file jbtxbst.doc has the documentation for this style.
+ %
+
+ % Author:
+ %
+ % 飯田修 Osamu Iida
+ % email: oiida@newmail.net
+ % URL : http://www.bol.ucla.edu/~oiida/jpolisci/ (in Japanese)
+ %
+ % Bug reports, technical suggestions and any other comments
+ % will be appreciated.
+ %
+
+ % Acknowledgement:
+ %
+ % The following files were referred to while creating this file:
+ %
+ % jglsj.bst (by 千葉智章 Tomoaki Chiba)
+ % Function "format.lab.name" in jpolisci.bst derived from
+ % it with small modifications only. The author appreciates it.
+ %
+ % seg.bst (by Martin Karrenbach)
+ % A method for making two sorts of labels is based on this
+ % file's feats.
+ %
+ % jalpha.bst (by 松井正一 Shoichi Matsui)
+ % jpolisci.bst principally owes its functionality to it.
+ %
+ % 藤田眞作『続 LaTeX2e 階梯・縦組編』(アジソン・ウェスレイ、1998 年)。
+ %
+ % Friends in BBSes at IR-web <http://pws.prserv.net/oi/ -- now
+ % obsolete> and KH's Web Site <http://home.att.ne.jp/wind/polisci/>
+ % gave me titles of Japanese political science journals which are
+ % included in MACROs.
+
+ % This file is distributed with absolutely no warranty.
+ % The author doesn't assume any kind of responsibility for
+ % any inconvenience caused by using this file.
+
+ % Last modified: 2000/12/05
+
+%------------------%
+% 下準備・・・ %
+%------------------%
+
+ENTRY { address author booktitle chapter edition editor howpublished
+ institution journal key month note number organization pages publisher
+ school series title type volume year yomi jauthor jkanyaku jtitle
+ jpublisher jyear hentyo}
+
+ { is.kanji.entry field.used is.honyaku }
+
+ { label label2 label3 label4 label.pure extra.label sort.label extra.label.bysame }
+
+
+INTEGERS { output.state before.all mid.sentence after.sentence after.block }
+
+FUNCTION {not}
+{ { #0 }
+ { #1 }
+ if$
+}
+
+FUNCTION {and}
+{ 'skip$
+ { pop$ #0 }
+ if$
+}
+
+FUNCTION {or}
+{ { pop$ #1 }
+ 'skip$
+ if$
+}
+
+FUNCTION {init.state.consts}
+{ #0 'before.all :=
+ #1 'mid.sentence :=
+ #2 'after.sentence :=
+ #3 'after.block :=
+}
+
+STRINGS { s t u str.p.start str.p.end str.a str.b str.c str.last.author}
+
+FUNCTION {add.kanji.period}
+{
+ add.period$ duplicate$
+ #-1 #1 substring$ "." =
+ {#-2 global.max$ substring$ "." *}
+ 'skip$
+ if$
+}
+
+%----------------%
+% 出力系関数 %
+%----------------%
+
+FUNCTION {output.bibitem}
+{ newline$
+ "\nissyaitem[" write$
+ label3 write$
+ "]{" write$
+ label.pure write$
+ "}{" write$
+ label2 write$
+ "}{" write$
+ label4 write$
+ "}{" write$
+ label write$
+ "}{" write$
+ cite$ write$
+ "}" write$
+ newline$
+ ""
+ before.all 'output.state :=
+}
+
+FUNCTION {output.nonnull}
+{ 's :=
+ output.state mid.sentence =
+ {
+ is.kanji.entry
+ { write$ }
+% { " " * write$ }
+ { "" * write$ }
+ if$
+ }
+ {
+ output.state after.block =
+ {
+ is.kanji.entry
+ {add.kanji.period write$}
+ {add.period$ write$}
+ if$
+ "" write$
+ }
+ {
+ output.state before.all =
+ 'write$
+ {
+ is.kanji.entry
+ { add.kanji.period write$ }
+ { add.period$ " " * write$ }
+ if$
+ }
+ if$
+ }
+ if$
+ mid.sentence 'output.state :=
+ }
+ if$
+ s
+}
+
+FUNCTION {output}
+{ duplicate$ empty$
+ 'pop$
+ 'output.nonnull
+ if$
+}
+
+FUNCTION {output.check}
+{ 't :=
+ duplicate$ empty$
+ { pop$ "empty " t * " in " * cite$ * warning$ }
+ 'output.nonnull
+ if$
+}
+
+FUNCTION {fin.entry}
+{
+ is.kanji.entry
+ {is.honyaku
+ 'skip$
+ {add.kanji.period}
+ if$}
+ {is.honyaku
+ 'skip$
+ {add.period$}
+ if$}
+ if$
+ write$
+ newline$
+}
+
+FUNCTION {new.block}
+{ output.state before.all =
+ 'skip$
+ { after.block 'output.state := }
+ if$
+}
+
+FUNCTION {new.sentence}
+{ output.state after.block =
+ 'skip$
+ { output.state before.all =
+ 'skip$
+ { after.sentence 'output.state := }
+ if$
+ }
+ if$
+}
+
+FUNCTION {new.block.checka}
+{ empty$
+ 'skip$
+ 'new.block
+ if$
+}
+
+FUNCTION {new.block.checkb}
+{ empty$
+ swap$ empty$
+ and
+ 'skip$
+ 'new.block
+ if$
+}
+
+FUNCTION {new.sentence.checka}
+{ empty$
+ 'skip$
+ 'new.sentence
+ if$
+}
+
+FUNCTION {new.sentence.checkb}
+{ empty$
+ swap$ empty$
+ and
+ 'skip$
+ 'new.sentence
+ if$
+}
+
+FUNCTION {field.or.null}
+{ duplicate$ empty$
+ { pop$ "" }
+ 'skip$
+ if$
+}
+
+FUNCTION {emphasize}
+{ duplicate$ empty$
+ { pop$ "" }
+% { duplicate$ is.kanji.str$
+ { duplicate$ is.kanji.str$ is.kanji.entry or
+ { "『" swap$ * "』" * }
+ {
+% add.period$
+ "{\em " swap$ * ",} " *
+ }
+ if$
+ }
+ if$
+}
+
+%--------------------------%
+% 著者名を整形する関数 %
+%--------------------------%
+
+INTEGERS { nameptr namesleft numnames }
+FUNCTION {format.names}
+{ 's :=
+ #1 'nameptr :=
+ s num.names$ 'numnames :=
+ numnames 'namesleft :=
+
+ { namesleft #0 > }
+ {
+ s nameptr "{ff}{ll}" format.name$ is.kanji.str$
+ {s nameptr "{ff}{ll}" format.name$ 't :=}
+ { nameptr #1 >
+%%% { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=}
+%%% { s nameptr "{ll,}{~ff}{~vv}{, jj}" format.name$ 't :=}
+ { s nameptr "{f.~}{v~}{ll}{, jj}" format.name$ 't :=}
+ { s nameptr "{ll}{,~f.}{v}{, jj}" format.name$ 't :=}
+ if$
+ }
+ if$
+
+ nameptr #1 >
+ { namesleft #1 >
+ { s is.kanji.str$
+ { "・" * t * }
+ { ", " * t * }
+ if$
+ }
+ {
+ t "others" =
+ {
+ s is.kanji.str$
+ { "ほか" * }
+ { " et~al." *}
+ if$
+ }
+ {
+ s is.kanji.str$
+ {"・" * t * }
+ {
+ numnames #2 =
+ { " \& " * }
+ { ", \& " *}
+ if$
+ t *
+ }
+ if$
+ }
+ if$
+ }
+ if$
+ }
+ 't
+ if$
+ nameptr #1 + 'nameptr :=
+ namesleft #1 - 'namesleft :=
+ }
+ while$
+}
+FUNCTION {format.names.ed}
+{ 's :=
+ #1 'nameptr :=
+ s num.names$ 'numnames :=
+ numnames 'namesleft :=
+
+ { namesleft #0 > }
+ {
+ s nameptr "{ff}{ll}" format.name$ is.kanji.str$
+ {s nameptr "{ff}{ll}" format.name$ 't :=}
+%%% { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=}
+ { s nameptr "{f.~}{v~}{ll}{, jj}" format.name$ 't :=}
+ if$
+ nameptr #1 >
+ { namesleft #1 >
+ { s is.kanji.str$
+ { "・" * t * }
+ { ", " * t * }
+ if$
+ }
+ {
+ t "others" =
+ {
+ s is.kanji.str$
+ { "ほか" * }
+ { " et~al." *}
+ if$
+ }
+ {
+ s is.kanji.str$
+ {"・" * t * }
+ {
+ numnames #2 =
+ { " \& " * }
+ { ", \& " *}
+ if$
+ t *
+ }
+ if$
+ }
+ if$
+ }
+ if$
+ }
+ 't
+ if$
+ nameptr #1 + 'nameptr :=
+ namesleft #1 - 'namesleft :=
+ }
+ while$
+}
+
+FUNCTION {format.authors}
+{ author empty$
+ { "" }
+ {
+ extra.label.bysame "bysame" =
+ {"\bysame "}
+ { author format.names }
+ if$
+ }
+ if$
+}
+
+INTEGERS {bysame.check}
+FUNCTION {format.editors}
+{ editor empty$
+ { "" }
+ {
+ #0 'bysame.check :=
+ type$ "incollection" =
+ type$ "inbook" =
+ or
+ { editor format.names.ed }
+ {
+ extra.label.bysame "bysame" =
+ {
+ #1 'bysame.check :=
+ "\bysame "
+ }
+ { editor format.names }
+ if$
+ }
+ if$
+
+ hentyo empty$
+ {"編" 't :=}
+ {
+ editor hentyo =
+ {"編著" 't :=}
+ {"編" 't :=}
+ if$
+ }
+ if$
+
+ #1 bysame.check =
+ { "" *}
+ {
+ editor num.names$ #1 >
+ {
+ editor is.kanji.str$
+ {t * }
+ { " eds." * }
+ if$
+ }
+ {
+ editor is.kanji.str$
+ {t *}
+ { " ed." * }
+ if$
+ }
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+%----------------------%
+% その他の整形関数 %
+%----------------------%
+
+
+FUNCTION {format.title}
+{ title empty$
+ { "" }
+ { title is.kanji.str$
+ { "「" title * "」" * }
+ { " ``" title * ",'' " * }
+% title add.period$
+% " ``" swap$ * "'' " *
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.misc.title}
+{ title empty$
+ { "" }
+ { title is.kanji.str$
+ { "「" title * "」" * }
+ { " ``" title * ",'' " *
+ }
+ if$
+ }
+ if$
+}
+
+INTEGERS { start.or.end }
+FUNCTION {n.dashify}
+{
+ 't :=
+ ""
+ % 初ページ, 終ページの初期化
+ #0 'start.or.end :=
+ "" 'str.p.start :=
+ "" 'str.p.end :=
+ % 初ページ, 終ページの取得
+ { t empty$ not }
+ { t #1 #1 substring$ "-" =
+ {
+ #1 'start.or.end :=
+ t #2 global.max$ substring$ 't :=
+ }
+ { start.or.end
+ {
+ str.p.end t #1 #1 substring$ * 'str.p.end :=
+ t #2 global.max$ substring$ 't :=
+ }
+ {
+ str.p.start t #1 #1 substring$ * 'str.p.start :=
+ t #2 global.max$ substring$ 't :=
+ }
+ if$
+ }
+ if$
+ }
+ while$
+% str.p.start * "--" * str.p.end * % そのまま書き出す場合
+ % ページ数の記載を省略(後ろのページ数は前のページ数と異なる桁だけ表記)
+ str.p.start text.length$ str.p.end text.length$ =
+ {
+ str.p.start 'str.a :=
+ str.p.end 'str.b :=
+ { str.a empty$ not }
+ { str.a #1 #1 substring$ str.b #1 #1 substring$ =
+ {
+ str.a #2 global.max$ substring$ 'str.a :=
+ str.b #2 global.max$ substring$ 'str.b :=
+ }
+ {
+ str.b 'str.p.end :=
+ "" 'str.a :=
+ }
+ if$
+ }
+ while$
+ }
+ { skip$ }
+ if$
+ start.or.end #1 =
+ {str.p.start * "--" * str.p.end *}
+ { str.p.start * }
+ if$
+}
+
+FUNCTION {format.date}
+{ year empty$
+ { month empty$
+ { "" }
+ { "there's a month but no year or yyear in " cite$ * warning$
+ }
+ if$
+ }
+ { is.kanji.entry
+ { extra.label empty$
+ { ", ~" year * extra.label * ", " * }
+ { ", ~" year * "" * extra.label * ", " * }
+% { " (\kanji " year * extra.label * ") " * }
+% { " (\kanji " year * "\rensuji{" * extra.label * "}) " * }
+ if$
+ }
+ { ",\hspace{.3em}" year * extra.label * ", " * }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.btitle}
+{ title emphasize
+}
+
+FUNCTION {tie.or.space.connect}
+{ duplicate$ text.length$ #3 <
+ { "~" }
+ { " " }
+ if$
+ swap$ * *
+}
+
+FUNCTION {either.or.check}
+{ empty$ 'pop$
+ {"can't use both " swap$ * " fields in " * cite$ * warning$ }
+ if$
+}
+
+FUNCTION {format.bvolume}
+{ volume empty$
+ { "" }
+ { volume is.kanji.str$
+ { "第" volume * "巻, " *}
+ { is.kanji.entry
+ {"第 " volume * "巻, " *}
+% {"第\kanji " volume * "巻、" *}
+ {"Vol." volume tie.or.space.connect}
+ if$
+ }
+ if$
+ series empty$
+ 'skip$
+ { series is.kanji.str$
+ { series ", " * swap$ * }
+ { " of " * series emphasize * }
+ if$
+ }
+ if$
+ "volume and number" number either.or.check
+ }
+ if$
+}
+
+FUNCTION {format.number.series}
+{ volume empty$
+ { number empty$
+ { series field.or.null }
+ { number is.kanji.str$
+ { " 第" number * "号, " * }
+ {"No." number tie.or.space.connect}
+ if$
+ series empty$
+ { "there's a number but no series in " cite$ * warning$ }
+ { series is.kanji.str$
+ { series ", " * swap$ * }
+ { " in " * series * }
+ if$
+ }
+ if$
+ }
+ if$
+ }
+ { "" }
+ if$
+}
+
+FUNCTION {format.edition}
+{ edition empty$
+ { "" }
+ { edition is.kanji.str$
+ { ", 第" edition * "版" * }
+% { "、第" edition * "版、" * }
+ { is.kanji.entry
+ {", 第" edition * "版" *}
+% {"、第" edition * "版、" *}
+ { output.state mid.sentence =
+ { edition "l" change.case$ ". edition" * }
+ { edition "t" change.case$ ". edition" * }
+ if$
+ }
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+INTEGERS { multiresult }
+
+FUNCTION {multi.page.check}
+{ 't :=
+ #0 'multiresult :=
+ { multiresult not
+ t empty$ not
+ and
+ }
+ { t #1 #1 substring$
+ duplicate$ "-" =
+ swap$ duplicate$ "," =
+ swap$ "+" =
+ or or
+ { #1 'multiresult := }
+ { t #2 global.max$ substring$ 't := }
+ if$
+ }
+ while$
+ multiresult
+}
+
+FUNCTION {format.pages}
+{ pages empty$
+ { "" }
+ { pages is.kanji.str$
+% { pages "頁" * }
+ { pages "" * }
+ { is.kanji.entry
+ { pages multi.page.check
+% { "" pages n.dashify * "頁" * }
+ { "" pages n.dashify * "" * }
+% { "" pages n.dashify * "頁" * }
+ { "" pages n.dashify * "" * }
+ if$
+ }
+ { pages multi.page.check
+% { "pp." pages n.dashify tie.or.space.connect }
+ { "" pages n.dashify tie.or.space.connect }
+% { "p." pages tie.or.space.connect }
+ { "" pages tie.or.space.connect }
+ if$
+ }
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.vol.num.pages}
+{ volume empty$
+ {"" *}
+ { "" volume * }
+ if$
+ number empty$
+ {"" *}
+ { "(" * number * ")" * }
+ if$
+ pages empty$
+ 'skip$
+ { duplicate$ empty$
+ { pop$ format.pages }
+ {
+% is.kanji.entry
+% {":" * format.pages *}
+% {
+ ": " * format.pages *
+% }
+% if$
+ }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.chapter.pages}
+{ chapter empty$
+ 'format.pages
+ { type empty$
+ { chapter is.kanji.str$
+ { "" }
+ { is.kanji.entry
+ {"章"}
+ {"ch."}
+ if$
+ }
+ if$
+ }
+ { type "l" change.case$ }
+ if$
+ chapter is.kanji.str$ not is.kanji.entry and
+ {"第 " chapter * swap$ *}
+% {"第\kanji " chapter * swap$ *}
+ { chapter is.kanji.str$ is.kanji.entry and
+ {"第" chapter * "章" * * }
+ {chapter tie.or.space.connect}
+ if$
+ }
+ if$
+ pages empty$
+ 'skip$
+ { is.kanji.entry
+ { ", " * format.pages * }
+ { ", " * format.pages * }
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.in.ed.booktitle}
+{ booktitle empty$
+ { "" }
+ { editor empty$
+ { booktitle is.kanji.str$
+ { " " booktitle emphasize * }
+ { " " booktitle emphasize * }
+ if$
+ }
+ { booktitle is.kanji.str$
+ { "" format.editors * booktitle emphasize * }
+ { " " format.editors * ", " * booktitle emphasize * }
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+FUNCTION {format.address}
+{ address empty$
+ { "" }
+ { is.kanji.entry
+ { address ":" * }
+ { address ": " * }
+ if$
+ }
+ if$
+}
+
+FUNCTION {empty.misc.check}
+{ author empty$ title empty$ howpublished empty$
+ month empty$ year empty$ note empty$
+ and and and and and
+ key empty$ not and
+ { "all relevant fields are empty in " cite$ * warning$ }
+ 'skip$
+ if$
+}
+
+FUNCTION {format.thesis.type}
+{ type empty$
+ 'skip$
+ { pop$
+ type "t" change.case$
+ }
+ if$
+}
+
+FUNCTION {format.tr.number}
+{ type empty$
+ { "Technical Report" }
+ 'type
+ if$
+ number empty$
+ { "t" change.case$ }
+ { number tie.or.space.connect }
+ if$
+}
+
+FUNCTION {format.article.crossref}
+{ key empty$
+ { journal empty$
+ { "need key or journal for " cite$ * " to crossref " * crossref *
+ warning$
+ ""
+ }
+ { title is.kanji.str$
+ { "『" journal * "』" * }
+ { " {\em " journal * "\/} " * }
+ if$
+ }
+ if$
+ }
+ { title is.kanji.str$
+ { " " key * }
+ { " " key * }
+ if$
+ }
+ if$
+ " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.crossref.editor}
+{ editor format.names.ed }
+
+FUNCTION {format.book.crossref}
+{ volume empty$
+ { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
+ title is.kanji.str$
+ {" "} {" "} if$
+ }
+ { volume is.kanji.str$
+ { volume }
+ { is.kanji.entry
+ {"第 " volume * "巻" *}
+% {"第\kanji " volume * "巻" *}
+ {"Vol." volume tie.or.space.connect " of " * }
+ if$
+ }
+ if$
+ }
+ if$
+ editor empty$
+ editor field.or.null author field.or.null =
+ or
+ { key empty$
+ { series empty$
+ { "need editor, key, or series for " cite$ * " to crossref " *
+ crossref * warning$
+ "" *
+ }
+ { series is.kanji.str$
+ { "『" series * "』, " * swap$ * }
+ { "{\em " * series * "\/} " * }
+ if$
+ }
+ if$
+ }
+ { key * }
+ if$
+ }
+ { format.crossref.editor * }
+ if$
+ " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.incoll.inproc.crossref}
+{ editor empty$
+ editor field.or.null author field.or.null =
+ or
+ { key empty$
+ { booktitle empty$
+ { "need editor, key, or booktitle for " cite$ * " to crossref " *
+ crossref * warning$
+ ""
+ }
+ { booktitle is.kanji.str$
+ { booktitle emphasize }
+ {" {\em " booktitle * "\/} " * }
+ if$
+ }
+ if$
+ }
+ { "" key * }
+ if$
+ }
+ {
+ "" format.crossref.editor *
+ is.kanji.entry
+ {
+ hentyo empty$
+ { "編 " * }
+ { "編著 " * }
+ if$
+ }
+ {
+ editor num.names$ #1 >
+ {" eds., " *}
+ {" ed., " *}
+ if$
+ }
+ if$
+ booktitle is.kanji.str$
+ { booktitle emphasize * ", " *}
+ {
+ " {\em " *
+ booktitle *
+ "},\/ " *
+ }
+% {" {\em " booktitle * "\/} " * }
+ if$
+ address empty$
+ {"" *}
+ {address * ": " *}
+ if$
+ publisher empty$
+ {"" * }
+ {publisher *}
+ if$
+ is.kanji.entry
+ {", ~" *}
+ {", " * }
+ if$
+ }
+ if$
+% " \cite{" * crossref * "}" *
+}
+
+FUNCTION {format.in.period}
+{ is.kanji.entry
+ { ", ~" * }
+ { ", " * }
+ if$
+}
+
+FUNCTION {format.hoyakusho}
+{
+ jauthor empty$ % is.honyaku変数のセット
+ jkanyaku empty$ % fin.entry時にこの変数を参照し、
+ jtitle empty$ % ピリオドを付与を制御
+ jpublisher empty$
+ jyear empty$
+ and and and and
+ 'skip$
+ { #1 'is.honyaku := }
+ if$
+
+ jauthor empty$
+ jkanyaku empty$
+ jtitle empty$
+ jpublisher empty$
+ jyear empty$
+ and and and and
+ { "" }
+ { add.period$
+ jyear empty$
+ { "(" * }
+ { "(=" * jyear * ", " * }
+ if$
+ jauthor empty$
+ { jkanyaku empty$
+ { "" * }
+ { jkanyaku format.names
+ "監訳" *
+ }
+ if$
+ }
+ { jauthor format.names
+ "訳" *
+ }
+ if$
+ jtitle empty$
+ { "" * }
+ { jtitle emphasize * }
+ if$
+ jpublisher empty$
+ { "" * }
+ { jpublisher * }
+ if$
+% jyear empty$
+% { "" * }
+% { jyear is.kanji.str$
+% { jyear * "年" * }
+% { "" * jyear * "年" * }
+% if$
+% }
+% if$
+% add.kanji.period
+% "(=" swap$ * ")" *
+% add.kanji.period
+ ".~)" *
+ }
+ if$
+}
+
+FUNCTION {format.book.pages}
+{ pages empty$
+ { "" }
+ { pages is.kanji.str$
+ { pages "" * }
+ { is.kanji.entry
+ { " " pages * }
+ { "" pages *}
+ if$
+ }
+ if$
+ }
+ if$
+}
+
+FUNCTION {article}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date "year" output.check
+ format.title "title" output.check
+ crossref missing$
+ { journal emphasize "journal" output.check
+ format.vol.num.pages output
+ }
+ { format.article.crossref output.nonnull
+ format.pages output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+%--------------------------------%
+% 文献タイプ名と同名の関数群 %
+%--------------------------------%
+
+FUNCTION {book}
+{ output.bibitem
+ author empty$
+ { format.editors "author and editor" output.check }
+ { format.authors output.nonnull
+ crossref missing$
+ { "author and editor" editor either.or.check }
+ 'skip$
+ if$
+ }
+ if$
+
+ format.date "year" output.check
+ format.btitle "title" output.check
+ crossref missing$
+ { format.bvolume output
+ format.number.series output
+ format.address output
+ publisher "publisher" output.check
+ }
+ { format.book.crossref output.nonnull
+ }
+ if$
+ format.edition output
+ format.book.pages output
+ format.hoyakusho output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {booklet}
+{ output.bibitem
+ format.authors output
+ format.date output
+ format.misc.title "title" output.check
+ howpublished output
+ address output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {inbook}
+{ output.bibitem
+ author empty$
+ { format.editors "author and editor" output.check }
+ { format.authors output.nonnull
+ crossref missing$
+ { "author and editor" editor either.or.check }
+ 'skip$
+ if$
+ }
+ if$
+ format.date "year" output.check
+ format.btitle "title" output.check
+ crossref missing$
+ { format.bvolume output
+ format.chapter.pages "chapter and pages" output.check
+ format.number.series output
+ format.address output
+ publisher "publisher" output.check
+ }
+ { format.chapter.pages "chapter and pages" output.check
+ format.book.crossref output.nonnull
+ }
+ if$
+ format.edition output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {incollection}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date "year" output.check
+ format.title "title" output.check
+ crossref missing$
+ { format.in.ed.booktitle "booktitle" output.check
+ format.bvolume output
+ format.number.series output
+ format.address output
+ publisher empty$
+ { ", ~" }
+ { publisher format.in.period }
+ if$
+ output.nonnull
+ format.edition output
+ format.chapter.pages output
+ }
+ { format.incoll.inproc.crossref output.nonnull
+ format.chapter.pages output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {inproceedings}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date "year" output.check
+ format.title "title" output.check
+ crossref missing$
+ { format.in.ed.booktitle "booktitle" output.check
+ format.bvolume output
+ format.number.series output
+ address empty$
+ { organization publisher new.sentence.checkb
+ organization output
+ publisher output
+ }
+ { address output.nonnull
+ organization output
+ publisher output
+ }
+ if$
+ }
+ { format.incoll.inproc.crossref output.nonnull
+ format.pages output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {conference} { inproceedings }
+
+FUNCTION {manual}
+{ output.bibitem
+ author empty$
+ { organization empty$
+ 'skip$
+ { organization output.nonnull
+ address output
+ }
+ if$
+ }
+ { format.authors output.nonnull }
+ if$
+ format.date output
+ format.btitle "title" output.check
+ author empty$
+ { organization empty$
+ { address new.block.checka
+ address output
+ }
+ 'skip$
+ if$
+ }
+ { organization address new.block.checkb
+ organization output
+ address output
+ }
+ if$
+ format.edition output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {mastersthesis}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date "year" output.check
+ format.title "title" output.check
+% "Master's thesis" format.thesis.type output.nonnull
+ school "school" output.check
+ school is.kanji.str$
+ {"修士論文" format.thesis.type output.nonnull}
+ {"Master's thesis" format.thesis.type output.nonnull}
+ if$
+ address output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {phdthesis}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date "year" output.check
+ format.title "title" output.check
+% format.phd
+% format.thesis.type output.nonnull
+ school "school" output.check
+ school is.kanji.str$
+ {"博士論文" format.thesis.type output.nonnull}
+ {"Ph.D. dissertation" format.thesis.type output.nonnull}
+ if$
+ address output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {misc}
+{ output.bibitem
+ format.authors output
+ format.date output
+ format.misc.title output
+ howpublished output
+% new.block
+ note output
+ fin.entry
+ empty.misc.check
+}
+
+FUNCTION {proceedings}
+{ output.bibitem
+ editor empty$
+ { organization output }
+ { format.editors output.nonnull }
+ if$
+ format.date "year" output.check
+ format.btitle "title" output.check
+ format.bvolume output
+ format.number.series output
+ address empty$
+ { editor empty$
+ { publisher new.sentence.checka }
+ { organization publisher new.sentence.checkb
+ organization output
+ }
+ if$
+ publisher output
+ }
+ { format.address output.nonnull
+ editor empty$
+ 'skip$
+ { organization output }
+ if$
+ publisher output
+ }
+ if$
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {techreport}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date "year" output.check
+ format.title "title" output.check
+ format.tr.number output.nonnull
+ institution "institution" output.check
+ address output
+ new.block
+ note output
+ fin.entry
+}
+
+FUNCTION {unpublished}
+{ output.bibitem
+ format.authors "author" output.check
+ format.date output
+ format.title "title" output.check
+ note "note" output.check
+ fin.entry
+}
+
+FUNCTION {default.type} { misc }
+
+MACRO {jan} {"January"}
+
+MACRO {feb} {"February"}
+
+MACRO {mar} {"March"}
+
+MACRO {apr} {"April"}
+
+MACRO {may} {"May"}
+
+MACRO {jun} {"June"}
+
+MACRO {jul} {"July"}
+
+MACRO {aug} {"August"}
+
+MACRO {sep} {"September"}
+
+MACRO {oct} {"October"}
+
+MACRO {nov} {"November"}
+
+MACRO {dec} {"December"}
+
+READ
+
+FUNCTION {set.is.kanji.entry}
+{
+ author field.or.null is.kanji.str$
+ title field.or.null is.kanji.str$ or
+ editor field.or.null is.kanji.str$ or
+ journal field.or.null is.kanji.str$ or
+ booktitle field.or.null is.kanji.str$ or
+ series field.or.null is.kanji.str$ or
+ 'is.kanji.entry :=
+}
+
+ITERATE {set.is.kanji.entry}
+
+INTEGERS { author.field editor.field organization.field title.field key.field }
+
+FUNCTION {init.field.constants}
+{ #0 'author.field :=
+ #1 'editor.field :=
+ #2 'organization.field :=
+ #3 'title.field :=
+ #4 'key.field :=
+}
+
+EXECUTE {init.field.constants}
+
+FUNCTION {sortify}
+{ purify$
+ "l" change.case$
+}
+
+INTEGERS { len }
+
+FUNCTION {chop.word}
+{ 's :=
+ 'len :=
+ s #1 len substring$ =
+ { s len #1 + global.max$ substring$ }
+ 's
+ if$
+}
+
+INTEGERS { et.al.char.used }
+
+FUNCTION {initialize.et.al.char.used}
+{ #0 'et.al.char.used :=
+}
+
+EXECUTE {initialize.et.al.char.used}
+
+%----------------------------%
+% 著者名ラベルの整形関数 %
+%----------------------------%
+
+FUNCTION {format.lab.names}
+{ 's :=
+ s num.names$ 'numnames :=
+ numnames #2 > % 3人以上の場合
+ { s is.kanji.str$
+ { s #1 "{ff}" format.name$ 't :=
+ t empty$
+ { s #1 "{ll}" format.name$}
+ { s #1 "{ff}" format.name$}
+ if$
+ "ほか" * }
+ { s #1 "{ll}" format.name$
+ " et~al." * }
+ if$
+ }
+ { numnames #2 = % 2人の場合
+ { s is.kanji.str$ % 漢字著者の場合
+ { s #1 "{ff}{vv}{ll}{jj}" format.name$ 't := % 1人め
+ t is.kanji.str$
+ {
+ s #1 "{ff}" format.name$ 't :=
+ t empty$
+ { s #1 "{ll}" format.name$}
+ { s #1 "{ff}" format.name$}
+ if$
+ }
+ { s #1 "{ll}" format.name$}
+ if$
+ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =% 2人目
+ {"ほか" *}
+ { "・" *
+ s #2 "{ff}{vv}{ll}{jj}" format.name$ 't :=
+ t is.kanji.str$
+ {
+ s #2 "{ff}" format.name$ 't :=
+ t empty$
+ { s #2 "{ll}" format.name$ *}
+ { s #2 "{ff}" format.name$ *}
+ if$
+ }
+ {s #2 "{ll}" format.name$ *}
+ if$
+ }
+ if$
+ }
+ { s #1 "{ll}" format.name$
+ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+ { " et~al." * }
+ { " \& " *
+ s #2 "{ll}" format.name$ *}
+ if$
+ }
+ if$
+ }
+ { s is.kanji.str$
+ { s #1 "{ff}" format.name$ 't :=
+ t empty$
+ { s #1 "{ll}" format.name$}
+ { s #1 "{ff}" format.name$}
+ if$
+ }
+ { s #1 "{ll}" format.name$ }
+ if$
+ }
+ if$
+ }
+ if$
+ author empty$
+ {
+ is.kanji.entry
+ {"編" * }
+ { numnames #1 >
+ {" eds." *}
+ {" ed." *}
+ if$
+ }
+ if$
+ }
+ 'skip$
+ if$
+}
+
+FUNCTION {format.lab.names.full}
+{ 's :=
+ "" 't :=
+ s num.names$ 'numnames :=
+ numnames #2 >
+ {
+ s is.kanji.str$
+ {
+ s #1 "{ff}{ll}" format.name$
+ "ほか" *
+ }
+ {
+ s #1 "{ll,}{~f.}{v}{, jj}" format.name$
+ " et~al." *
+ }
+ if$
+ }
+ {
+ numnames #2 =
+ {
+ s is.kanji.str$
+ {
+ s #1 "{ff}{ll}" format.name$
+ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+ { "ほか" * }
+ {
+ "・" *
+ s #2 "{ff}{ll}" format.name$ *
+ }
+ if$
+ }
+ {
+ s #1 "{ll,}{~f.}{v}{, jj}" format.name$
+ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+ {
+ " et~al." *
+ }
+ {
+ " \& " *
+ s #2 "{ll,}{~f.}{v}{, jj}" format.name$ *
+ }
+ if$
+ }
+ if$
+ }
+ {
+ s is.kanji.str$
+ { s #1 "{ff}{ll}" format.name$ }
+ { s #1 "{ll,}{~f.}{v}{, jj}" format.name$ }
+ if$
+ }
+ if$
+ }
+ if$
+ author empty$
+ {
+ is.kanji.entry
+ {"編" * }
+ { numnames #1 >
+ {" eds." *}
+ {" ed." *}
+ if$
+ }
+ if$
+ }
+ 'skip$
+ if$
+}
+
+INTEGERS {is.making.pure}
+STRINGS {hoka.kh}
+FUNCTION {format.lab.names.full.ff}
+{'s :=
+ "" 't :=
+ is.making.pure #2 =
+ {"" 'hoka.kh :=}
+ {
+ s is.kanji.str$
+ {"ほか" 'hoka.kh :=}
+ {" et~al." 'hoka.kh :=}
+ if$
+ }
+ if$
+ s num.names$ 'numnames :=
+ numnames #2 >
+ {
+ s is.kanji.str$
+ {
+ s #1 "{ff}{ll}" format.name$
+ hoka.kh *
+ }
+ {
+%%% s #1 "{ff~}{vv~}{ll}{, jj}" format.name$
+ s #1 "{f.~}{v~}{ll}{, jj}" format.name$
+ hoka.kh *
+ }
+ if$
+ }
+ {
+ numnames #2 =
+ {
+ s is.kanji.str$
+ {
+ s #1 "{ff}{ll}" format.name$
+ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+ { t hoka.kh * 't :=}
+ {
+ t "・" * 't :=
+ t s #2 "{ff}{ll}" format.name$ * 't :=
+ }
+ if$
+ t *
+ }
+ {
+%%% s #1 "{ff~}{vv~}{ll}{, jj}" format.name$
+ s #1 "{f.~}{v~}{ll}{, jj}" format.name$
+ s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
+ {
+ hoka.kh *
+ }
+ {
+ " \& " *
+%%% s #2 "{ff~}{vv~}{ll}{, jj}" format.name$ *
+ s #2 "{f.~}{v~}{ll}{, jj}" format.name$ *
+ }
+ if$
+ }
+ if$
+ }
+ {
+ s is.kanji.str$
+ { s #1 "{ff}{ll}" format.name$ }
+%%% { s #1 "{ff~}{vv~}{ll}{, jj}" format.name$ }
+ { s #1 "{f.~}{v~}{ll}{, jj}" format.name$ }
+ if$
+ }
+ if$
+ }
+ if$
+
+ is.making.pure #2 =
+ 'skip$
+ {
+ author empty$
+ {
+ is.kanji.entry
+ {"編" * }
+ { numnames #1 >
+ {" eds." *}
+ {" ed." *}
+ if$
+ }
+ if$
+ }
+ 'skip$
+ if$
+ }
+ if$
+
+}
+
+FUNCTION {author.key.label}
+{ author empty$
+ { key empty$
+ { cite$ #1 #3 substring$ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { author format.lab.names }
+ if$
+}
+
+FUNCTION {author.key.label.full}
+{
+ author empty$
+ {
+ key empty$
+ { cite$ #1 #3 substring$ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { author format.lab.names.full }
+ if$
+}
+
+FUNCTION {author.key.label.full.ff}
+{
+ author empty$
+ {
+ key empty$
+ { cite$ #1 #3 substring$ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { author format.lab.names.full.ff }
+ if$
+}
+
+FUNCTION {author.editor.key.label}
+{ author empty$
+ { editor empty$
+ { key empty$
+ { cite$ #1 #3 substring$ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { editor format.lab.names }
+ if$
+ }
+ { author format.lab.names }
+ if$
+}
+
+FUNCTION {author.editor.key.label.full}
+{ author empty$
+ { editor empty$
+ { key empty$
+ { cite$ #1 #3 substring$ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { editor format.lab.names.full }
+ if$
+ }
+ { author format.lab.names.full }
+ if$
+}
+
+FUNCTION {author.editor.key.label.full.ff}
+{ author empty$
+ { editor empty$
+ { key empty$
+ { cite$ #1 #3 substring$ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { editor format.lab.names.full.ff }
+ if$
+ }
+ { author format.lab.names.full.ff }
+ if$
+}
+
+
+FUNCTION {author.key.organization.label}
+{ author empty$
+ { key empty$
+ { organization empty$
+ { cite$ #1 #3 substring$ }
+ { "The " #4 organization chop.word #3 text.prefix$ }
+ if$
+ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { author format.lab.names }
+ if$
+}
+
+FUNCTION {editor.key.organization.label}
+{ editor empty$
+ { key empty$
+ { organization empty$
+ { cite$ #1 #3 substring$ }
+ { "The " #4 organization chop.word #3 text.prefix$ }
+ if$
+ }
+ { key #3 text.prefix$ }
+ if$
+ }
+ { editor format.lab.names }
+ if$
+}
+
+FUNCTION {calc.label}
+{ type$ "book" =
+ type$ "inbook" =
+ or
+ 'author.editor.key.label
+ { type$ "proceedings" =
+ 'editor.key.organization.label
+ { type$ "manual" =
+ 'author.key.organization.label
+ 'author.key.label
+ if$
+ }
+ if$
+ }
+ if$
+ duplicate$
+ "" swap$ *
+ "" year *
+ 'label :=
+ % 翻訳書対策
+ jyear empty$
+ 'skip$
+ {
+ label "=" jyear * * 'label :=
+ }
+ if$
+ pop$
+}
+
+FUNCTION {calc.label2}
+{
+ type$ "book" =
+ type$ "inbook" =
+ or
+ 'author.editor.key.label.full
+ {
+ type$ "proceedings" =
+ 'editor.key.organization.label
+ { type$ "manual" =
+ 'author.key.organization.label
+ 'author.key.label.full
+ if$
+ }
+ if$
+ }
+ if$
+ duplicate$
+ "" swap$ *
+ 'label2 :=
+ sortify label sortify label2 * 'sort.label :=
+ pop$
+}
+
+FUNCTION {calc.label3}
+{ type$ "book" =
+ type$ "inbook" =
+ or
+ 'author.editor.key.label
+ { type$ "proceedings" =
+ 'editor.key.organization.label
+ { type$ "manual" =
+ 'author.key.organization.label
+ 'author.key.label
+ if$
+ }
+ if$
+ }
+ if$
+ duplicate$
+ "" swap$ *
+ 'label3 :=
+ pop$
+}
+
+FUNCTION {calc.label4}
+{
+ type$ "book" =
+ type$ "inbook" =
+ or
+ 'author.editor.key.label.full.ff
+ {
+ type$ "proceedings" =
+ 'editor.key.organization.label
+ { type$ "manual" =
+ 'author.key.organization.label
+ 'author.key.label.full.ff
+ if$
+ }
+ if$
+ }
+ if$
+ duplicate$
+ "" swap$ *
+ 'label4 :=
+ label4 purify$ 'label.pure :=
+ pop$
+}
+
+FUNCTION {calc.label.pure}
+{
+ #2 'is.making.pure :=
+ type$ "book" =
+ type$ "inbook" =
+ or
+ 'author.editor.key.label.full.ff
+ {
+ type$ "proceedings" =
+ 'editor.key.organization.label
+ { type$ "manual" =
+ 'author.key.organization.label
+ 'author.key.label.full.ff
+ if$
+ }
+ if$
+ }
+ if$
+ duplicate$
+ "" swap$ *
+ 't :=
+ t purify$ 'label.pure :=
+ pop$
+ #1 'is.making.pure :=
+}
+
+FUNCTION {sort.format.names}
+{
+ 's :=
+ yomi empty$
+ 'skip$
+ { yomi 's := }
+ if$
+ ""
+ #1 'nameptr :=
+ s num.names$ 'numnames :=
+ numnames 'namesleft :=
+ { namesleft #0 > }
+ {
+ nameptr #1 >
+ { ", " * }
+ 'skip$
+ if$
+ s nameptr "{vv{ } }{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't :=
+ nameptr numnames = t "others" = and
+ { s is.kanji.str$
+ {"ほか" * }
+ {" et~al." *}
+ if$
+ }
+ { t sortify * }
+ if$
+ nameptr #1 + 'nameptr :=
+ namesleft #1 - 'namesleft :=
+ }
+ while$
+}
+
+FUNCTION {sort.format.title}
+{ 't :=
+ "A " #2
+ "An " #3
+ "The " #4 t chop.word
+ chop.word
+ chop.word
+ sortify
+ #1 global.max$ substring$
+}
+
+FUNCTION {author.sort}
+{ author empty$
+ { key empty$
+ { "to sort, need author or key in " cite$ * warning$ "" }
+ { key sortify }
+ if$
+ }
+ { author sort.format.names }
+ if$
+}
+
+FUNCTION {author.editor.sort}
+{ author empty$
+ { editor empty$
+ { key empty$
+ { "to sort, need author, editor, or key in " cite$ * warning$
+ ""
+ }
+ { key sortify }
+ if$
+ }
+ { editor sort.format.names }
+ if$
+ }
+ { author sort.format.names }
+ if$
+}
+
+FUNCTION {author.organization.sort}
+{ author empty$
+ { organization empty$
+ { key empty$
+ { "to sort, need author, organization, or key in " cite$ * warning$
+ ""
+ }
+ { key sortify }
+ if$
+ }
+ { "The " #4 organization chop.word sortify }
+ if$
+ }
+ { author sort.format.names }
+ if$
+}
+
+FUNCTION {editor.organization.sort}
+{ editor empty$
+ { organization empty$
+ { key empty$
+ { "to sort, need editor, organization, or key in " cite$ * warning$
+ ""
+ }
+ { key sortify }
+ if$
+ }
+ { "The " #4 organization chop.word sortify }
+ if$
+ }
+ { editor sort.format.names }
+ if$
+}
+
+FUNCTION {presort}
+{ calc.label
+ type$ "book" =
+ type$ "inbook" =
+ or
+ 'author.editor.sort
+ {
+ type$ "proceedings" =
+ 'editor.organization.sort
+ {
+ type$ "manual" =
+ 'author.organization.sort
+ 'author.sort
+ if$
+ }
+ if$
+ }
+ if$
+ 't :=
+ pop$
+ author empty$
+ {t " 2 " * 't :=}
+ {t " 1 " * 't :=}
+ if$
+ t " " * 't :=
+ t year field.or.null sortify * 't :=
+ t " " * 't :=
+ t title field.or.null sort.format.title * 't :=
+ t 'sort.key$ :=
+}
+
+FUNCTION {presort2}
+{ calc.label2 }
+
+FUNCTION {presort3}
+{ calc.label3 }
+
+FUNCTION {presort4}
+{ calc.label4 }
+
+FUNCTION {presort5}
+{ calc.label.pure }
+
+ITERATE {presort}
+ITERATE {presort2}
+ITERATE {presort3}
+ITERATE {presort4}
+ITERATE {presort5}
+
+SORT
+
+STRINGS { longest.label last.sort.label next.extra prev.author this.author}
+
+INTEGERS { longest.label.width last.extra.num }
+
+FUNCTION {initialize.longest.label}
+{ "" 'longest.label :=
+ #0 int.to.chr$ 'last.sort.label :=
+ "" 'next.extra :=
+ #0 'longest.label.width :=
+ #0 'last.extra.num :=
+ "" 'this.author :=
+}
+
+% sort.labelが前回のものと同一であれば、extra.labelをセット
+% authorが前回のものと同一であれば、extra.label.bysameをセット
+
+FUNCTION {forward.pass}
+{ last.sort.label sort.label =
+ { last.extra.num #1 + 'last.extra.num :=
+ last.extra.num int.to.chr$ 'extra.label :=
+ }
+ { "a" chr.to.int$ 'last.extra.num :=
+ "" 'extra.label :=
+ sort.label 'last.sort.label :=
+ }
+ if$
+
+ author empty$
+ { editor empty$
+ { "" }
+ 'format.editors
+ if$
+ }
+ 'format.authors
+ if$
+ 'this.author :=
+
+% format.names 'this.author :=
+ this.author prev.author =
+ { "bysame" 'extra.label.bysame := }
+ { this.author "" =
+ { "abcxyz" }
+ 'this.author
+ if$
+ 'prev.author :=
+ }
+ if$
+}
+
+FUNCTION {reverse.pass}
+{ next.extra "b" =
+ { "a" 'extra.label := }
+ 'skip$
+ if$
+ extra.label empty$ not
+ { label "" * extra.label * "" * }
+ { label extra.label * "" * }
+ if$
+ "" field.or.null *
+ 'label :=
+ label width$ longest.label.width >
+ { label 'longest.label :=
+ label width$ 'longest.label.width :=
+ }
+ 'skip$
+ if$
+ extra.label 'next.extra :=
+}
+
+EXECUTE {initialize.longest.label}
+
+ITERATE {forward.pass}
+
+REVERSE {reverse.pass}
+
+FUNCTION{punctuation}
+{
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" write$ newline$
+ "%" write$ newline$
+ "% This bbl file is created through nissya.bst" write$ newline$
+ "% nissya.bst is available at" write$ newline$
+ "% <http://hey.to/KO-ichi>" write$ newline$
+ "%" write$ newline$
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" write$ newline$
+ newline$
+}
+
+EXECUTE {punctuation}
+
+FUNCTION {begin.bib}
+{ et.al.char.used
+ { "\newcommand{\etalchar}[1]{$^{#1}$}" write$ newline$ }
+ 'skip$
+ if$
+ preamble$ empty$
+ 'skip$
+ { preamble$ write$ newline$ }
+ if$
+ "\ifx\undefined\bysame" write$ newline$
+ "\newcommand{\bysame}{\rule[.5ex]{4zw}{.15pt}}"
+ write$ newline$
+ "\fi" write$ newline$
+ newline$
+ "\begin{thebibliography}{xx}" write$ newline$
+}
+
+EXECUTE {begin.bib}
+
+EXECUTE {init.state.consts}
+
+ITERATE {call.type$}
+
+FUNCTION {end.bib}
+{ newline$
+ "\end{thebibliography}" write$ newline$
+}
+
+EXECUTE {end.bib}
diff --git a/Build/source/texk/web2c/ptexdir/tests/nissya_bib.aux b/Build/source/texk/web2c/ptexdir/tests/nissya_bib.aux
new file mode 100644
index 00000000000..5e75effada0
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/nissya_bib.aux
@@ -0,0 +1,60 @@
+\relax
+\bibstyle{nissya}
+\@writefile{toc}{\contentsline {section}{\numberline {1}使い方}{1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}概略}{1}}
+\citation{gms1}
+\citation{gms1}
+\citation{hgc1}
+\citation{hgc1}
+\citation{gms1}
+\citation{cmcjdb44}
+\citation{hgc3}
+\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}スタイルオプション: long}{2}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}引用・参照コマンド}{2}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.3.1}著者名(出版年)}{2}}
+\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces 「著者名(出版年)」形式: citetコマンド}}{2}}
+\newlabel{citet}{{1}{2}}
+\citation{hgc1}
+\citation{kh2003}
+\citation{nsi2003}
+\citation{kwbt99}
+\citation{gms1}
+\citation{hgc1}
+\citation{cmcjdb44}
+\citation{kwbt1}
+\citation{hgc1}
+\citation{hgc3}
+\citation{kwbt99}
+\citation{fschr92j}
+\citation{nsi2003}
+\citation{fschr92j}
+\citation{kwbt}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.3.2}(著者名 出版年)}{3}}
+\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces (著者名 出版年)形式: citepコマンド}}{3}}
+\newlabel{citep}{{2}{3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.3.3}出版年のみ}{3}}
+\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces 出版年のみ: citeyearコマンド}}{3}}
+\newlabel{citeyear}{{3}{3}}
+\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.3.4}引用・参照しないもの}{4}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {1.4}自動作成される文献リスト}{4}}
+\@writefile{toc}{\contentsline {section}{\numberline {2}ご使用にあたって}{4}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}既知の問題点}{4}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}更新履歴}{4}}
+\citation{netville2}
+\citation{Lonkila1995}
+\citation{jsrstyle}
+\bibdata{sample.bib}
+\bibcite{fschr92j}{{1}{1992=2000}{{Fischer}}{{Fischer,~C.~S.}}{{C.~S. Fischer}}{{C S Fischer}}}
+\bibcite{gms1}{{2}{1973}{{Granovetter}}{{Granovetter,~M.~S.}}{{M.~S. Granovetter}}{{M S Granovetter}}}
+\bibcite{hgc1}{{3}{2001}{{樋口}}{{樋口耕一}}{{樋口耕一}}{{樋口耕一}}}
+\bibcite{hgc3}{{4}{2003}{{樋口}}{{樋口耕一}}{{樋口耕一}}{{樋口耕一}}}
+\bibcite{kwbt1}{{5}{2001a}{{川端}}{{川端亮}}{{川端亮}}{{川端亮}}}
+\bibcite{kwbt}{{6}{2001b}{{川端}}{{川端亮}}{{川端亮}}{{川端亮}}}
+\bibcite{kwbt99}{{7}{1999}{{川端編}}{{川端亮編}}{{川端亮編}}{{川端亮}}}
+\bibcite{kh2003}{{8}{2003}{{川端・樋口}}{{川端亮・樋口耕一}}{{川端亮・樋口耕一}}{{川端亮・樋口耕一}}}
+\bibcite{Lonkila1995}{{9}{1995}{{Lonkila}}{{Lonkila,~M.}}{{M.~Lonkila}}{{M Lonkila}}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}著作権}{5}}
+\bibcite{nsi2003}{{10}{2003}{{直井ほか}}{{直井優ほか}}{{直井優ほか}}{{直井優}}}
+\bibcite{jsrstyle}{{11}{1999}{{日本社会学会編集委員会}}{{日本社会学会編集委員会}}{{日本社会学会編集委員会}}{{日本社会学会編集委員会}}}
+\bibcite{cmcjdb44}{{12}{1998}{{Wellman}}{{Wellman,~B.}}{{B.~Wellman}}{{B Wellman}}}
+\bibcite{netville2}{{13}{1999}{{Wellman \& Hampton}}{{Wellman,~B. \& Hampton,~K.~N.}}{{B.~Wellman \& K.~N. Hampton}}{{B Wellman K N Hampton}}}
diff --git a/Build/source/texk/web2c/ptexdir/tests/postpena.tex b/Build/source/texk/web2c/ptexdir/tests/postpena.tex
new file mode 100644
index 00000000000..74f93a1f071
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/postpena.tex
@@ -0,0 +1,15 @@
+%% plain pTeX
+\postbreakpenalty`#=200
+\postbreakpenalty`a=200
+\showboxdepth10000
+\showboxbreadth10000
+\tracingonline1
+\setbox0=\hbox{#」「\penalty-1000\showlists}
+% # と 」 の間:\penalty10200 (合算)
+
+\setbox0=\hbox{#\unpenalty 」a\relax あ\showlists}
+% # と 」 の間:\penalty10000 (prebreakpenalty of '」')
+% a と あ の間:\penalty200 (postbreakpenalty of 'a')
+
+
+\bye
diff --git a/Build/source/texk/web2c/ptexdir/tests/pver1.tex b/Build/source/texk/web2c/ptexdir/tests/pver1.tex
new file mode 100644
index 00000000000..c891f1f6609
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/pver1.tex
@@ -0,0 +1,2 @@
+% for INITEX
+\relax\end
diff --git a/Build/source/texk/web2c/ptexdir/tests/pver2.tex b/Build/source/texk/web2c/ptexdir/tests/pver2.tex
new file mode 100644
index 00000000000..fdbc3e5055a
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/pver2.tex
@@ -0,0 +1,13 @@
+% for INITEX
+\catcode`\{=1
+\catcode`\}=2
+\def\space{ }
+\edef\NAME{Engine \ifx\eTeXversion\undefined\else e-\fi
+ \ifx\enablecjktoken\undefined\else u\fi
+ pTeX p\the\ptexversion.\the\ptexminorversion\ptexrevision
+ \ifx\enablecjktoken\undefined\else -u\the\uptexversion\uptexrevision\fi
+ \ifx\epTeXversion\undefined\else -\the\epTeXversion
+ -\the\eTeXversion\eTeXrevision\fi
+ \space (dummy)}
+\write16{\NAME}
+\relax\end
diff --git a/Build/source/texk/web2c/ptexdir/tests/sample.bib b/Build/source/texk/web2c/ptexdir/tests/sample.bib
new file mode 100644
index 00000000000..35e5aca87b2
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/sample.bib
@@ -0,0 +1,131 @@
+@Article{nsi2003,
+ journal = {大阪大学大学院人間科学研究科紀要},
+ author = {直井 優 and 菅野 剛 and 岩渕 亜希子},
+ yomi = {naoiatsushisuganotsuyoshiiwabuchiakiko},
+ title = {情報化社会に関する全国調査(JIS2001)の概要},
+ year = {2003},
+ volume = {29},
+ pages = {23-66}
+}
+
+@Article{kh2003,
+ journal = {大阪大学大学院人間科学研究科紀要},
+ author = {川端 亮 and 樋口 耕一},
+ yomi = {kawabataakirahiguchikouichi},
+ title = {インターネットに対する人々の意識 ---自由回答の分析から},
+ year = {2003},
+ volume = {29},
+ pages = {163-181}
+}
+
+@Book{fschr92j,
+ author = {Fischer, Claude S.},
+ title = {America Calling: A Social History of the Telephone to 1940},
+ publisher = {University of California Press },
+ address = {California},
+ year = 1992,
+ jauthor = {吉見 俊哉 and 松田 美佐 and 片岡 みい子},
+ jtitle = {電話するアメリカ},
+ jpublisher = {NTT出版},
+ jyear = 2000
+}
+
+@Article{kwbt1,
+ yomi = {kawabataakira},
+ author = {川端 亮},
+ year = {2001},
+ title = {コンピュータ・コーディングによる宗教的ライフヒストリーの記述},
+ journal = {宗教と社会},
+ volume = {7},
+ pages = {133-154},
+}
+
+@Article{kwbt,
+ yomi = {kawabataakira},
+ author = {川端 亮},
+ year = {2001},
+ title = {コンピューターを用いた自由回答のコーティング},
+ journal = {社会情報},
+ publisher = {札幌学院大学社会情報学部},
+ volume = {10},
+ number = {1},
+ pages = {135-148},
+}
+
+@Book{kwbt99,
+ yomi = {kawabataakira},
+ hentyo = {川端 亮},
+ editor = {川端 亮},
+ year = 1999,
+ title = {非定型データのコーディング・システムとその利用},
+ booktitle = {非定型データのコーディング・システムとその利用},
+ publisher = {平成8年度〜10年度科学研究費補助金(基盤研究(A)(1))(課題番号 08551003)研究成果報告書,\hspace{.6em}大阪大学},
+}
+
+@Article{netville2,
+ author = {Wellman, B. and Hampton, K. N.},
+ year = {1999},
+ title = {Living Networked On and Offline},
+ journal = {Contemporary Sociology},
+ volume = {28},
+ number = {6},
+ pages = {648-655},
+}
+
+@Article{gms1,
+ author = {Granovetter, M. S.},
+ year = {1973},
+ title = {The Strength of Weak Ties},
+ journal = {American Journal of Sociology},
+ volume = {78},
+ pages = {1360-1380},
+}
+
+@Article{hgc1,
+ yomi = {higuchikouichi},
+ author = {樋口 耕一},
+ year = {2001},
+ title = {電子コミュニティにおけるメディア特性の影響 ---同期メディアと非同期メディア},
+ journal = {年報人間科学},
+ volume = {22},
+ pages = {91-106},
+}
+
+@Article{cmcjdb44,
+ author = {Wellman, B.},
+ year = {1998},
+ title = {A Computer Network is a Social Network},
+ journal = {SIGGROUP Bulletin},
+ volume = {19},
+ number = {3},
+ pages = {41-48},
+}
+
+@Article{hgc3,
+ yomi = {higuchikouichi},
+ author = {樋口 耕一},
+ year = {2003},
+ title = {コンピュータ・コーディングの実践},
+ journal = {年報人間科学},
+ volume = {24},
+ pages = {193-214},
+}
+
+@Incollection{Lonkila1995,
+ author = {Lonkila, M.},
+ year = 1995,
+ title = {Grounded Theory as an Emerging Paradigm for Computer-Assisted Qualitative Data Analysis},
+ editor = {Kelle, U.},
+ booktitle = {Computer-Aided Qualitative Analysis},
+ address = {London},
+ publisher = {Sage},
+ pages = {41-51},
+}
+
+@Misc{jsrstyle,
+ author = {日本社会学会編集委員会},
+ yomi = {nihonsyakaigakkaihennsyuiinkai},
+ year = {1999},
+ title = {社会学評論スタイルガイド},
+ note = {( http://wwwsoc.nii.ac.jp/jss/\\JSRstyle/JSRstyle.html \ 2003.6.27)}
+} \ No newline at end of file
diff --git a/Build/source/texk/web2c/ptexdir/tests/sample.dvi b/Build/source/texk/web2c/ptexdir/tests/sample.dvi
new file mode 100644
index 00000000000..a69226cdc12
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/sample.dvi
Binary files differ
diff --git a/Build/source/texk/web2c/ptexdir/tests/samplea.typ b/Build/source/texk/web2c/ptexdir/tests/samplea.typ
new file mode 100644
index 00000000000..b9e82ecb798
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/samplea.typ
@@ -0,0 +1,2825 @@
+Options selected:
+ Starting page = *
+ Maximum number of pages = 1000000
+ Output level = 4 (the works)
+ Resolution = 300.00000000 pixels per inch
+numerator/denominator=25400000/473628672
+magnification=1000; 0.00006334 pixels per DVI unit
+' TeX output 2010.04.30:1631'
+Postamble starts at byte 5116.
+maxv=43382189, maxh=26485116, maxstackdepth=17, totalpages=1
+pTeX DVI (id=3)
+Font 70: cmbsy8---loaded at size 524288 DVI units
+Font 69: cmbx8---loaded at size 524288 DVI units
+Font 62: cmsy8---loaded at size 524288 DVI units
+Font 60: cmmi8---loaded at size 524288 DVI units
+Font 58: cmti8---loaded at size 524288 DVI units
+Font 57: cmr8---loaded at size 524288 DVI units
+Font 54: cmss10---loaded at size 655360 DVI units
+Font 53: cmsl10---loaded at size 655360 DVI units
+Font 52: cmtt10---loaded at size 655360 DVI units
+Font 51: cmcsc10---loaded at size 655360 DVI units
+Font 50: cmti10---loaded at size 655360 DVI units
+Font 49: cmbx10---loaded at size 655360 DVI units
+Font 48: cmbx12 scaled 1200---loaded at size 943718 DVI units
+ (this font is magnified 120%)
+Font 47: goth10 scaled 1440 (JFM)---loaded at size 943718 DVI units
+ (this font is magnified 144%)
+Font 44: cmsy10 scaled 1200---loaded at size 786432 DVI units
+ (this font is magnified 120%)
+Font 41: cmmi12---loaded at size 786432 DVI units
+Font 38: cmr12---loaded at size 786432 DVI units
+Font 36: cmbx12 scaled 1728---loaded at size 1359217 DVI units
+ (this font is magnified 173%)
+Font 35: goth10 scaled 2074 (JFM)---loaded at size 1359217 DVI units
+ (this font is magnified 207%)
+Font 22: goth10 scaled 1200 (JFM)---loaded at size 786432 DVI units
+ (this font is magnified 120%)
+Font 15: min10 (JFM)---loaded at size 655360 DVI units
+Font 14: tmin10 (JFM tate)---loaded at size 655360 DVI units
+Font 7: cmr10---loaded at size 655360 DVI units
+Font 6: cmr7---loaded at size 458752 DVI units
+Font 0: cmex10---loaded at size 655360 DVI units
+
+42: beginning of page 1
+87: down4 43382189 {160} v:=0+43382189=43382189, vv:=2748
+92: push {141}
+level 0:(h=0,v=43382189,w=0,x=0,y=0,z=0,d=0,hh=0,vv=2748)
+93: down4 -46384800 {160} v:=43382189-46384800=-3002611, vv:=-190
+98: down4 44418720 {160} v:=-3002611+44418720=41416109, vv:=2623
+103: push {141}
+level 1:(h=0,v=41416109,w=0,x=0,y=0,z=0,d=0,hh=0,vv=2623)
+104: down4 -41723410 {160} v:=41416109-41723410=-307301, vv:=-19
+109: push {141}
+level 2:(h=0,v=-307301,w=0,x=0,y=0,z=0,d=0,hh=0,vv=-19)
+110: right3 2725612 {145} h:=0+2725612=2725612, hh:=173
+[ ]
+114: fntdef1 35 {243}: goth10
+136: fntnum35 {206} current font is goth10
+137: set2 9506 {129}("2522) type=10 h:=2725612+1307860=4033472, hh:=256
+140: set2 9529 {129}("2539) type=0 h:=4033472+1307860=5341332, hh:=339
+143: set2 9517 {129}("252D) type=0 h:=5341332+1307860=6649192, hh:=422
+146: set2 8508 {129}("213C) type=0 h:=6649192+1307860=7957052, hh:=505
+149: set2 18044 {129}("467C) type=0 h:=7957052+1307860=9264912, hh:=588
+152: set2 19292 {129}("4B5C) type=0 h:=9264912+1307860=10572772, hh:=671
+155: set2 14444 {129}("386C) type=0 h:=10572772+1307860=11880632, hh:=754
+158: w3 157649 {150} h:=11880632+157649=12038281, hh:=764
+[アスキー日本語]
+162: fntdef1 36 {243}: cmbx12
+184: fntnum36 {207} current font is cmbx12
+185: setchar76 ("4C) h:=12038281+918730=12957011, hh:=822
+[L]
+186: push {141}
+level 3:(h=12957011,v=-307301,w=157649,x=0,y=0,z=0,d=0,hh=822,vv=-19)
+187: down3 -285079 {159} v:=-307301-285079=-592380, vv:=-37
+191: push {141}
+level 4:(h=12957011,v=-592380,w=157649,x=0,y=0,z=0,d=0,hh=822,vv=-37)
+192: right3 -550483 {145} h:=12957011-550483=12406528, hh:=787
+196: fntdef1 48 {243}: cmbx12
+218: fntnum48 {219} current font is cmbx12
+219: setchar65 ("41) h:=12406528+801724=13208252, hh:=838
+[A]
+220: pop {142}
+level 4:(h=12957011,v=-592380,w=157649,x=0,y=0,z=0,d=0,hh=822,vv=-37)
+221: pop {142}
+level 3:(h=12957011,v=-307301,w=157649,x=0,y=0,z=0,d=0,hh=822,vv=-19)
+222: right2 21883 {144} h:=12957011+21883=12978894, hh:=823
+225: fntnum36 {207} current font is cmbx12
+226: setchar84 ("54) h:=12978894+1063460=14042354, hh:=890
+[T]
+227: push {141}
+level 3:(h=14042354,v=-307301,w=157649,x=0,y=0,z=0,d=0,hh=890,vv=-19)
+228: right3 -254907 {145} h:=14042354-254907=13787447, hh:=874
+232: down3 302047 {159} v:=-307301+302047=-5254, vv:=0
+236: setchar69 ("45) h:=13787447+1003681=14791128, hh:=938
+[E]
+237: pop {142}
+level 3:(h=14042354,v=-307301,w=157649,x=0,y=0,z=0,d=0,hh=890,vv=-19)
+238: right3 557635 {145} h:=14042354+557635=14599989, hh:=925
+242: setchar88 ("58) h:=14599989+1154706=15754695, hh:=998
+243: w0 157649 {147} h:=15754695+157649=15912344, hh:=1008
+[ X]
+244: fntnum35 {206} current font is goth10
+245: set2 9525 {129}("2535) type=10 h:=15912344+1307860=17220204, hh:=1091
+248: set2 9587 {129}("2573) type=0 h:=17220204+1307860=18528064, hh:=1174
+251: set2 9559 {129}("2557) type=10 h:=18528064+1307860=19835924, hh:=1257
+254: set2 9579 {129}("256B) type=0 h:=19835924+1307860=21143784, hh:=1340
+257: set2 15696 {129}("3D50) type=0 h:=21143784+1307860=22451644, hh:=1423
+260: set2 20047 {129}("4E4F) type=0 h:=22451644+1307860=23759504, hh:=1506
+[サンプル出力]
+263: pop {142}
+level 2:(h=0,v=-307301,w=0,x=0,y=0,z=0,d=0,hh=0,vv=-19)
+264: down3 1143874 {159} v:=-307301+1143874=836573, vv:=53
+268: putrule {137} height 186467, width 26485116 (12x1678 pixels)
+277: down3 864455 {159} v:=836573+864455=1701028, vv:=108
+281: push {141}
+level 2:(h=0,v=1701028,w=0,x=0,y=0,z=0,d=0,hh=0,vv=108)
+282: push {141}
+level 3:(h=0,v=1701028,w=0,x=0,y=0,z=0,d=0,hh=0,vv=108)
+283: right4 12869623 {146} h:=0+12869623=12869623, hh:=815
+[ ]
+288: down3 372935 {159} v:=1701028+372935=2073963, vv:=132
+292: setrule {132} height 745870, width 745871 (48x48 pixels)
+ h:=12869623+745871=13615494, hh:=863
+301: pop {142}
+level 3:(h=0,v=1701028,w=0,x=0,y=0,z=0,d=0,hh=0,vv=108)
+302: pop {142}
+level 2:(h=0,v=1701028,w=0,x=0,y=0,z=0,d=0,hh=0,vv=108)
+303: down3 1474560 {159} v:=1701028+1474560=3175588, vv:=201
+307: push {141}
+level 2:(h=0,v=3175588,w=0,x=0,y=0,z=0,d=0,hh=0,vv=201)
+308: right3 630598 {145} h:=0+630598=630598, hh:=40
+[ ]
+312: fntdef1 15 {243}: min10
+333: fntnum15 {186} current font is min10
+334: set2 9267 {129}("2433) type=0 h:=630598+630598=1261196, hh:=80
+337: w2 11159 {149} h:=1261196+11159=1272355, hh:=81
+340: set2 9324 {129}("246C) type=0 h:=1272355+630598=1902953, hh:=121
+343: w0 11159 {147} h:=1902953+11159=1914112, hh:=122
+344: set2 9295 {129}("244F) type=0 h:=1914112+630598=2544710, hh:=162
+347: w3 185546 {150} h:=2544710+185546=2730256, hh:=173
+[これは ]
+351: fntdef1 49 {243}: cmbx10
+373: fntnum49 {220} current font is cmbx10
+374: setchar84 ("54) h:=2730256+524285=3254541, hh:=206
+[T]
+375: push {141}
+level 3:(h=3254541,v=3175588,w=185546,x=0,y=0,z=0,d=0,hh=206,vv=201)
+376: right3 -125636 {145} h:=3254541-125636=3128905, hh:=198
+380: down3 145635 {159} v:=3175588+145635=3321223, vv:=210
+384: setchar69 ("45) h:=3128905+495158=3624063, hh:=229
+[E]
+385: pop {142}
+level 3:(h=3254541,v=3175588,w=185546,x=0,y=0,z=0,d=0,hh=206,vv=201)
+386: right3 275315 {145} h:=3254541+275315=3529856, hh:=224
+390: setchar88 ("58) h:=3529856+569796=4099652, hh:=260
+391: w0 185546 {147} h:=4099652+185546=4285198, hh:=271
+[ X ]
+392: fntnum15 {186} current font is min10
+393: set2 9294 {129}("244E) type=0 h:=4285198+630598=4915796, hh:=311
+396: w2 11159 {149} h:=4915796+11159=4926955, hh:=312
+399: set2 9307 {129}("245B) type=0 h:=4926955+630598=5557553, hh:=352
+402: w0 11159 {147} h:=5557553+11159=5568712, hh:=353
+403: set2 9331 {129}("2473) type=0 h:=5568712+630598=6199310, hh:=393
+406: w0 11159 {147} h:=6199310+11159=6210469, hh:=394
+407: set2 9294 {129}("244E) type=0 h:=6210469+630598=6841067, hh:=434
+410: w0 11159 {147} h:=6841067+11159=6852226, hh:=435
+411: set2 12396 {129}("306C) type=0 h:=6852226+630598=7482824, hh:=475
+414: w0 11159 {147} h:=7482824+11159=7493983, hh:=476
+415: set2 20067 {129}("4E63) type=0 h:=7493983+630598=8124581, hh:=516
+418: w0 11159 {147} h:=8124581+11159=8135740, hh:=517
+419: set2 9287 {129}("2447) type=0 h:=8135740+630598=8766338, hh:=557
+422: w0 11159 {147} h:=8766338+11159=8777497, hh:=558
+423: set2 9273 {129}("2439) type=7 h:=8777497+630598=9408095, hh:=598
+426: right2 -31532 {144} h:=9408095-31532=9376563, hh:=596
+429: set2 8483 {129}("2123) type=9 h:=9376563+330310=9706873, hh:=617
+432: x3 300288 {155} h:=9706873+300288=10007161, hh:=634
+436: set2 9281 {129}("2441) type=0 h:=10007161+630598=10637759, hh:=674
+439: w3 70380 {150} h:=10637759+70380=10708139, hh:=678
+443: set2 9319 {129}("2467) type=3 h:=10708139+489838=11197977, hh:=709
+446: right2 11158 {144} h:=11197977+11158=11209135, hh:=710
+449: set2 9283 {129}("2443) type=3 h:=11209135+489838=11698973, hh:=741
+452: w0 70380 {147} h:=11698973+70380=11769353, hh:=745
+453: set2 9288 {129}("2448) type=0 h:=11769353+630598=12399951, hh:=785
+456: w2 11159 {149} h:=12399951+11159=12411110, hh:=786
+459: set2 24111 {129}("5E2F) type=0 h:=12411110+630598=13041708, hh:=826
+462: w0 11159 {147} h:=13041708+11159=13052867, hh:=827
+463: set2 19822 {129}("4D6E) type=0 h:=13052867+630598=13683465, hh:=867
+466: w0 11159 {147} h:=13683465+11159=13694624, hh:=868
+467: set2 9279 {129}("243F) type=0 h:=13694624+630598=14325222, hh:=908
+470: w0 11159 {147} h:=14325222+11159=14336381, hh:=909
+471: set2 19000 {129}("4A38) type=0 h:=14336381+630598=14966979, hh:=949
+474: w0 11159 {147} h:=14966979+11159=14978138, hh:=950
+475: set2 15729 {129}("3D71) type=0 h:=14978138+630598=15608736, hh:=990
+478: w0 11159 {147} h:=15608736+11159=15619895, hh:=991
+479: set2 9330 {129}("2472) type=0 h:=15619895+630598=16250493, hh:=1031
+482: w0 11159 {147} h:=16250493+11159=16261652, hh:=1032
+483: set2 14958 {129}("3A6E) type=0 h:=16261652+630598=16892250, hh:=1072
+486: w3 70380 {150} h:=16892250+70380=16962630, hh:=1076
+490: set2 9283 {129}("2443) type=3 h:=16962630+489838=17452468, hh:=1107
+493: w0 70380 {147} h:=17452468+70380=17522848, hh:=1111
+494: set2 9286 {129}("2446) type=0 h:=17522848+630598=18153446, hh:=1151
+497: w2 11159 {149} h:=18153446+11159=18164605, hh:=1152
+500: set2 9311 {129}("245F) type=0 h:=18164605+630598=18795203, hh:=1192
+503: w0 11159 {147} h:=18795203+11159=18806362, hh:=1193
+504: set2 9279 {129}("243F) type=0 h:=18806362+630598=19436960, hh:=1233
+507: w0 11159 {147} h:=19436960+11159=19448119, hh:=1234
+508: set2 9252 {129}("2424) type=0 h:=19448119+630598=20078717, hh:=1274
+511: w0 11159 {147} h:=20078717+11159=20089876, hh:=1275
+512: set2 15230 {129}("3B7E) type=0 h:=20089876+630598=20720474, hh:=1314
+515: w0 11159 {147} h:=20720474+11159=20731633, hh:=1315
+516: set2 9316 {129}("2464) type=0 h:=20731633+630598=21362231, hh:=1355
+519: w0 11159 {147} h:=21362231+11159=21373390, hh:=1356
+520: set2 8482 {129}("2122) type=9 h:=21373390+330310=21703700, hh:=1377
+523: x0 300288 {152} h:=21703700+300288=22003988, hh:=1394
+524: set2 16205 {129}("3F4D) type=0 h:=22003988+630598=22634586, hh:=1434
+527: w0 11159 {147} h:=22634586+11159=22645745, hh:=1435
+528: set2 9288 {129}("2448) type=0 h:=22645745+630598=23276343, hh:=1475
+531: w0 11159 {147} h:=23276343+11159=23287502, hh:=1476
+532: set2 9295 {129}("244F) type=0 h:=23287502+630598=23918100, hh:=1516
+535: w0 11159 {147} h:=23918100+11159=23929259, hh:=1517
+536: set2 12396 {129}("306C) type=0 h:=23929259+630598=24559857, hh:=1557
+539: w0 11159 {147} h:=24559857+11159=24571016, hh:=1558
+540: set2 19491 {129}("4C23) type=0 h:=24571016+630598=25201614, hh:=1598
+543: w0 11159 {147} h:=25201614+11159=25212773, hh:=1599
+544: set2 12387 {129}("3063) type=0 h:=25212773+630598=25843371, hh:=1639
+547: w0 11159 {147} h:=25843371+11159=25854530, hh:=1640
+548: set2 9254 {129}("2426) type=7 h:=25854530+630598=26485128, hh:=1680
+[のほんの一例です。 ちょっと洒落た文書を作ってみたい時や、 人とは一味違う]
+551: pop {142}
+level 2:(h=0,v=3175588,w=0,x=0,y=0,z=0,d=0,hh=0,vv=201)
+552: y3 983040 {164} v:=3175588+983040=4158628, vv:=263
+556: push {141}
+level 2:(h=0,v=4158628,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=263)
+557: set2 19000 {129}("4A38) type=0 h:=0+630598=630598, hh:=40
+560: w2 10789 {149} h:=630598+10789=641387, hh:=41
+563: set2 15729 {129}("3D71) type=0 h:=641387+630598=1271985, hh:=81
+566: w0 10789 {147} h:=1271985+10789=1282774, hh:=82
+567: set2 9330 {129}("2472) type=0 h:=1282774+630598=1913372, hh:=122
+570: w0 10789 {147} h:=1913372+10789=1924161, hh:=123
+571: set2 14958 {129}("3A6E) type=0 h:=1924161+630598=2554759, hh:=163
+574: w3 70380 {150} h:=2554759+70380=2625139, hh:=167
+578: set2 9283 {129}("2443) type=3 h:=2625139+489838=3114977, hh:=198
+581: w0 70380 {147} h:=3114977+70380=3185357, hh:=202
+582: set2 9286 {129}("2446) type=0 h:=3185357+630598=3815955, hh:=242
+585: w2 10789 {149} h:=3815955+10789=3826744, hh:=243
+588: set2 9311 {129}("245F) type=0 h:=3826744+630598=4457342, hh:=283
+591: w0 10789 {147} h:=4457342+10789=4468131, hh:=284
+592: set2 9279 {129}("243F) type=0 h:=4468131+630598=5098729, hh:=324
+595: w0 10789 {147} h:=5098729+10789=5109518, hh:=325
+596: set2 9252 {129}("2424) type=0 h:=5109518+630598=5740116, hh:=365
+599: w0 10789 {147} h:=5740116+10789=5750905, hh:=366
+600: set2 9288 {129}("2448) type=0 h:=5750905+630598=6381503, hh:=406
+603: w0 10789 {147} h:=6381503+10789=6392292, hh:=407
+604: set2 9252 {129}("2424) type=0 h:=6392292+630598=7022890, hh:=447
+607: w3 70380 {150} h:=7022890+70380=7093270, hh:=451
+611: set2 9283 {129}("2443) type=3 h:=7093270+489838=7583108, hh:=482
+614: w0 70380 {147} h:=7583108+70380=7653488, hh:=486
+615: set2 9279 {129}("243F) type=0 h:=7653488+630598=8284086, hh:=526
+618: w2 10789 {149} h:=8284086+10789=8294875, hh:=527
+621: set2 19799 {129}("4D57) type=0 h:=8294875+630598=8925473, hh:=567
+624: w0 10789 {147} h:=8925473+10789=8936262, hh:=568
+625: set2 13665 {129}("3561) type=0 h:=8936262+630598=9566860, hh:=608
+628: w0 10789 {147} h:=9566860+10789=9577649, hh:=609
+629: set2 9291 {129}("244B) type=0 h:=9577649+630598=10208247, hh:=649
+632: w0 10789 {147} h:=10208247+10789=10219036, hh:=649
+633: set2 17786 {129}("457A) type=0 h:=10219036+630598=10849634, hh:=689
+636: w0 10789 {147} h:=10849634+10789=10860423, hh:=690
+637: set2 9256 {129}("2428) type=0 h:=10860423+630598=11491021, hh:=730
+640: w0 10789 {147} h:=11491021+10789=11501810, hh:=731
+641: set2 9286 {129}("2446) type=0 h:=11501810+630598=12132408, hh:=770
+644: w0 10789 {147} h:=12132408+10789=12143197, hh:=771
+645: set2 9263 {129}("242F) type=7 h:=12143197+630598=12773795, hh:=811
+648: w0 10789 {147} h:=12773795+10789=12784584, hh:=812
+649: set2 9324 {129}("246C) type=0 h:=12784584+630598=13415182, hh:=852
+652: w0 10789 {147} h:=13415182+10789=13425971, hh:=852
+653: set2 9323 {129}("246B) type=0 h:=13425971+630598=14056569, hh:=892
+656: w0 10789 {147} h:=14056569+10789=14067358, hh:=893
+657: set2 9280 {129}("2440) type=0 h:=14067358+630598=14697956, hh:=933
+660: w0 10789 {147} h:=14697956+10789=14708745, hh:=934
+661: set2 9265 {129}("2431) type=7 h:=14708745+630598=15339343, hh:=974
+664: w0 10789 {147} h:=15339343+10789=15350132, hh:=974
+665: set2 9294 {129}("244E) type=0 h:=15350132+630598=15980730, hh:=1014
+668: w0 10789 {147} h:=15980730+10789=15991519, hh:=1015
+669: set2 18237 {129}("473D) type=0 h:=15991519+630598=16622117, hh:=1055
+672: w0 10789 {147} h:=16622117+10789=16632906, hh:=1056
+673: set2 20047 {129}("4E4F) type=0 h:=16632906+630598=17263504, hh:=1095
+676: w0 10789 {147} h:=17263504+10789=17274293, hh:=1096
+677: set2 9330 {129}("2472) type=0 h:=17274293+630598=17904891, hh:=1136
+680: w0 10789 {147} h:=17904891+10789=17915680, hh:=1137
+681: set2 15677 {129}("3D3D) type=0 h:=17915680+630598=18546278, hh:=1177
+684: w0 10789 {147} h:=18546278+10789=18557067, hh:=1177
+685: set2 18988 {129}("4A2C) type=0 h:=18557067+630598=19187665, hh:=1217
+688: w0 10789 {147} h:=19187665+10789=19198454, hh:=1218
+689: set2 9291 {129}("244B) type=0 h:=19198454+630598=19829052, hh:=1258
+[文書を作ってみたいといった要求に答えてくれるだけの能力を十分に]
+692: push {141}
+level 3:(h=19829052,v=4158628,w=10789,x=0,y=983040,z=0,d=0,hh=1258,vv=263)
+693: right3 224277 {145} h:=19829052+224277=20053329, hh:=1270
+[ ]
+697: down3 -227432 {159} v:=4158628-227432=3931196, vv:=249
+701: fntdef1 7 {243}: cmr10
+722: fntnum7 {178} current font is cmr10
+723: setchar95 ("5F) h:=20053329+182045=20235374, hh:=1282
+[_]
+724: pop {142}
+level 3:(h=19829052,v=4158628,w=10789,x=0,y=983040,z=0,d=0,hh=1258,vv=263)
+725: fntnum15 {186} current font is min10
+726: set2 18539 {129}("486B) type=0 h:=19829052+630598=20459650, hh:=1298
+[秘]
+729: push {141}
+level 3:(h=20459650,v=4158628,w=10789,x=0,y=983040,z=0,d=0,hh=1298,vv=263)
+730: right3 224277 {145} h:=20459650+224277=20683927, hh:=1310
+[ ]
+734: down3 -227432 {159} v:=4158628-227432=3931196, vv:=249
+738: fntnum7 {178} current font is cmr10
+739: setchar95 ("5F) h:=20683927+182045=20865972, hh:=1322
+[_]
+740: pop {142}
+level 3:(h=20459650,v=4158628,w=10789,x=0,y=983040,z=0,d=0,hh=1298,vv=263)
+741: fntnum15 {186} current font is min10
+742: set2 9313 {129}("2461) type=0 h:=20459650+630598=21090248, hh:=1338
+[め]
+745: push {141}
+level 3:(h=21090248,v=4158628,w=10789,x=0,y=983040,z=0,d=0,hh=1338,vv=263)
+746: right3 224277 {145} h:=21090248+224277=21314525, hh:=1350
+[ ]
+750: down3 -227432 {159} v:=4158628-227432=3931196, vv:=249
+754: fntnum7 {178} current font is cmr10
+755: setchar95 ("5F) h:=21314525+182045=21496570, hh:=1362
+[_]
+756: pop {142}
+level 3:(h=21090248,v=4158628,w=10789,x=0,y=983040,z=0,d=0,hh=1338,vv=263)
+757: fntnum15 {186} current font is min10
+758: set2 9286 {129}("2446) type=0 h:=21090248+630598=21720846, hh:=1378
+761: w0 10789 {147} h:=21720846+10789=21731635, hh:=1378
+762: set2 9252 {129}("2424) type=0 h:=21731635+630598=22362233, hh:=1418
+765: w0 10789 {147} h:=22362233+10789=22373022, hh:=1419
+766: set2 9310 {129}("245E) type=0 h:=22373022+630598=23003620, hh:=1459
+769: w0 10789 {147} h:=23003620+10789=23014409, hh:=1460
+770: set2 9273 {129}("2439) type=7 h:=23014409+630598=23645007, hh:=1500
+773: right2 -31532 {144} h:=23645007-31532=23613475, hh:=1498
+776: set2 8483 {129}("2123) type=9 h:=23613475+330310=23943785, hh:=1519
+779: right3 300288 {145} h:=23943785+300288=24244073, hh:=1536
+[ています。 ]
+783: fntnum7 {178} current font is cmr10
+784: setchar92 ("5C) h:=24244073+327681=24571754, hh:=1557
+[\]
+785: fntnum15 {186} current font is min10
+786: set2 16205 {129}("3F4D) type=0 h:=24571754+630598=25202352, hh:=1597
+789: w0 10789 {147} h:=25202352+10789=25213141, hh:=1598
+790: set2 9294 {129}("244E) type=0 h:=25213141+630598=25843739, hh:=1638
+793: w0 10789 {147} h:=25843739+10789=25854528, hh:=1639
+794: set2 19548 {129}("4C5C) type=0 h:=25854528+630598=26485126, hh:=1679
+[人の目]
+797: pop {142}
+level 2:(h=0,v=4158628,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=263)
+798: y0 983040 {161} v:=4158628+983040=5141668, vv:=326
+799: push {141}
+level 2:(h=0,v=5141668,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=326)
+800: set2 9330 {129}("2472) type=0 h:=0+630598=630598, hh:=40
+803: w2 -3122 {149} h:=630598-3122=627476, hh:=40
+806: set2 12410 {129}("307A) type=0 h:=627476+630598=1258074, hh:=80
+809: w0 -3122 {147} h:=1258074-3122=1254952, hh:=80
+810: set2 9261 {129}("242D) type=0 h:=1254952+630598=1885550, hh:=120
+813: w0 -3122 {147} h:=1885550-3122=1882428, hh:=120
+814: set2 18773 {129}("4955) type=0 h:=1882428+630598=2513026, hh:=160
+817: w0 -3122 {147} h:=2513026-3122=2509904, hh:=160
+818: set2 9265 {129}("2431) type=7 h:=2509904+630598=3140502, hh:=200
+821: w0 -3122 {147} h:=3140502-3122=3137380, hh:=200
+822: set2 9323 {129}("246B) type=0 h:=3137380+630598=3767978, hh:=240
+825: w0 -3122 {147} h:=3767978-3122=3764856, hh:=240
+826: set2 18558 {129}("487E) type=0 h:=3764856+630598=4395454, hh:=280
+829: w0 -3122 {147} h:=4395454-3122=4392332, hh:=280
+830: set2 9271 {129}("2437) type=0 h:=4392332+630598=5022930, hh:=320
+833: w0 -3122 {147} h:=5022930-3122=5019808, hh:=320
+834: set2 9252 {129}("2424) type=0 h:=5019808+630598=5650406, hh:=360
+837: w0 -3122 {147} h:=5650406-3122=5647284, hh:=360
+838: set2 19000 {129}("4A38) type=0 h:=5647284+630598=6277882, hh:=400
+841: w0 -3122 {147} h:=6277882-3122=6274760, hh:=399
+842: set2 15729 {129}("3D71) type=0 h:=6274760+630598=6905358, hh:=439
+[を引き付ける美しい文書]
+845: fntnum7 {178} current font is cmr10
+846: setchar34 ("22) h:=6905358+327681=7233039, hh:=460
+847: right3 151405 {145} h:=7233039+151405=7384444, hh:=468
+[" ]
+851: fntnum15 {186} current font is min10
+852: set2 9330 {129}("2472) type=0 h:=7384444+630598=8015042, hh:=508
+855: w0 -3122 {147} h:=8015042-3122=8011920, hh:=508
+856: set2 14958 {129}("3A6E) type=0 h:=8011920+630598=8642518, hh:=548
+859: w0 -3122 {147} h:=8642518-3122=8639396, hh:=548
+860: set2 9323 {129}("246B) type=0 h:=8639396+630598=9269994, hh:=588
+863: w0 -3122 {147} h:=9269994-3122=9266872, hh:=588
+864: set2 9279 {129}("243F) type=0 h:=9266872+630598=9897470, hh:=628
+867: w0 -3122 {147} h:=9897470-3122=9894348, hh:=628
+868: set2 9313 {129}("2461) type=0 h:=9894348+630598=10524946, hh:=668
+871: w0 -3122 {147} h:=10524946-3122=10521824, hh:=668
+872: set2 9294 {129}("244E) type=0 h:=10521824+630598=11152422, hh:=708
+875: w0 -3122 {147} h:=11152422-3122=11149300, hh:=708
+876: set2 13601 {129}("3521) type=0 h:=11149300+630598=11779898, hh:=748
+879: w0 -3122 {147} h:=11779898-3122=11776776, hh:=748
+880: set2 18237 {129}("473D) type=0 h:=11776776+630598=12407374, hh:=788
+883: w0 -3122 {147} h:=12407374-3122=12404252, hh:=788
+884: set2 9295 {129}("244F) type=0 h:=12404252+630598=13034850, hh:=828
+887: w0 -3122 {147} h:=13034850-3122=13031728, hh:=827
+888: set2 15677 {129}("3D3D) type=0 h:=13031728+630598=13662326, hh:=867
+891: w0 -3122 {147} h:=13662326-3122=13659204, hh:=867
+892: set2 18035 {129}("4673) type=0 h:=13659204+630598=14289802, hh:=907
+895: w0 -3122 {147} h:=14289802-3122=14286680, hh:=907
+896: set2 18988 {129}("4A2C) type=0 h:=14286680+630598=14917278, hh:=947
+899: w0 -3122 {147} h:=14917278-3122=14914156, hh:=947
+900: set2 9291 {129}("244B) type=0 h:=14914156+630598=15544754, hh:=987
+903: w0 -3122 {147} h:=15544754-3122=15541632, hh:=986
+904: set2 15229 {129}("3B7D) type=0 h:=15541632+630598=16172230, hh:=1026
+907: w3 63675 {150} h:=16172230+63675=16235905, hh:=1030
+911: set2 9283 {129}("2443) type=3 h:=16235905+489838=16725743, hh:=1061
+914: w0 63675 {147} h:=16725743+63675=16789418, hh:=1065
+915: set2 9286 {129}("2446) type=0 h:=16789418+630598=17420016, hh:=1105
+918: w2 -3122 {149} h:=17420016-3122=17416894, hh:=1105
+921: set2 9252 {129}("2424) type=0 h:=17416894+630598=18047492, hh:=1145
+924: w0 -3122 {147} h:=18047492-3122=18044370, hh:=1145
+925: set2 9310 {129}("245E) type=0 h:=18044370+630598=18674968, hh:=1185
+928: w0 -3122 {147} h:=18674968-3122=18671846, hh:=1185
+929: set2 9273 {129}("2439) type=7 h:=18671846+630598=19302444, hh:=1225
+932: right2 -31532 {144} h:=19302444-31532=19270912, hh:=1223
+935: set2 8483 {129}("2123) type=9 h:=19270912+330310=19601222, hh:=1244
+938: right3 285984 {145} h:=19601222+285984=19887206, hh:=1260
+942: set2 9557 {129}("2555) type=10 h:=19887206+630598=20517804, hh:=1300
+945: w3 63675 {150} h:=20517804+63675=20581479, hh:=1304
+949: set2 9513 {129}("2529) type=3 h:=20581479+489838=21071317, hh:=1335
+952: w0 63675 {147} h:=21071317+63675=21134992, hh:=1339
+953: set2 9587 {129}("2573) type=0 h:=21134992+630598=21765590, hh:=1379
+956: w2 -3122 {149} h:=21765590-3122=21762468, hh:=1379
+959: set2 9544 {129}("2548) type=10 h:=21762468+630598=22393066, hh:=1419
+962: w0 -3122 {147} h:=22393066-3122=22389944, hh:=1419
+963: set2 9314 {129}("2462) type=0 h:=22389944+630598=23020542, hh:=1459
+966: w0 -3122 {147} h:=23020542-3122=23017420, hh:=1459
+967: set2 12836 {129}("3224) type=0 h:=23017420+630598=23648018, hh:=1499
+970: w0 -3122 {147} h:=23648018-3122=23644896, hh:=1499
+971: set2 19000 {129}("4A38) type=0 h:=23644896+630598=24275494, hh:=1539
+974: w0 -3122 {147} h:=24275494-3122=24272372, hh:=1539
+975: set2 9290 {129}("244A) type=0 h:=24272372+630598=24902970, hh:=1579
+978: w0 -3122 {147} h:=24902970-3122=24899848, hh:=1579
+979: set2 9321 {129}("2469) type=0 h:=24899848+630598=25530446, hh:=1619
+982: w0 -3122 {147} h:=25530446-3122=25527324, hh:=1619
+983: set2 9296 {129}("2450) type=0 h:=25527324+630598=26157922, hh:=1659
+986: w0 -3122 {147} h:=26157922-3122=26154800, hh:=1659
+987: set2 8482 {129}("2122) type=9 h:=26154800+330310=26485110, hh:=1680
+[を作るための機能は十二分に持っています。 フォントも欧文ならば、]
+990: pop {142}
+level 2:(h=0,v=5141668,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=326)
+991: y0 983040 {161} v:=5141668+983040=6124708, vv:=388
+992: push {141}
+level 2:(h=0,v=6124708,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=388)
+993: fntnum7 {178} current font is cmr10
+994: setchar82 ("52) h:=0+482418=482418, hh:=31
+995: setchar111 ("6F) h:=482418+327681=810099, hh:=52
+996: setchar109 ("6D) h:=810099+546135=1356234, hh:=87
+997: setchar97 ("61) h:=1356234+327681=1683915, hh:=108
+998: setchar110 ("6E) h:=1683915+364090=2048005, hh:=131
+[Roman]
+999: fntnum15 {186} current font is min10
+1000: set2 8482 {129}("2122) type=9 h:=2048005+330310=2378315, hh:=152
+1003: w3 274308 {150} h:=2378315+274308=2652623, hh:=168
+[、 ]
+1007: fntdef1 50 {243}: cmti10
+1029: fntnum50 {221} current font is cmti10
+1030: setchar73 ("49) h:=2652623+252676=2905299, hh:=184
+1031: setchar116 ("74) h:=2905299+217723=3123022, hh:=198
+1032: setchar97 ("61) h:=3123022+334960=3457982, hh:=219
+1033: setchar108 ("6C) h:=3457982+167480=3625462, hh:=230
+1034: setchar105 ("69) h:=3625462+200976=3826438, hh:=243
+1035: setchar99 ("63) h:=3826438+301463=4127901, hh:=262
+[Italic]
+1036: fntnum15 {186} current font is min10
+1037: set2 8482 {129}("2122) type=9 h:=4127901+330310=4458211, hh:=283
+1040: w0 274308 {147} h:=4458211+274308=4732519, hh:=300
+[、 ]
+1041: fntdef1 51 {243}: cmcsc10
+1064: fntnum51 {222} current font is cmcsc10
+1065: setchar83 ("53) h:=4732519+400493=5133012, hh:=325
+1066: setchar109 ("6D) h:=5133012+489333=5622345, hh:=356
+1067: setchar97 ("61) h:=5622345+401953=6024298, hh:=381
+1068: setchar108 ("6C) h:=6024298+336416=6360714, hh:=402
+1069: setchar108 ("6C) h:=6360714+336416=6697130, hh:=423
+1070: right3 234348 {145} h:=6697130+234348=6931478, hh:=439
+1074: setchar67 ("43) h:=6931478+515181=7446659, hh:=472
+1075: setchar97 ("61) h:=7446659+401953=7848612, hh:=497
+1076: setchar112 ("70) h:=7848612+365543=8214155, hh:=520
+1077: setchar115 ("73) h:=8214155+300008=8514163, hh:=539
+[Small Caps]
+1078: fntnum15 {186} current font is min10
+1079: set2 8482 {129}("2122) type=9 h:=8514163+330310=8844473, hh:=560
+1082: w0 274308 {147} h:=8844473+274308=9118781, hh:=578
+[、 ]
+1083: fntdef1 52 {243}: cmtt10
+1105: fntnum52 {223} current font is cmtt10
+1106: setchar84 ("54) h:=9118781+344061=9462842, hh:=600
+1107: setchar121 ("79) h:=9462842+344061=9806903, hh:=622
+1108: setchar112 ("70) h:=9806903+344061=10150964, hh:=644
+1109: setchar101 ("65) h:=10150964+344061=10495025, hh:=666
+1110: setchar119 ("77) h:=10495025+344061=10839086, hh:=688
+1111: setchar114 ("72) h:=10839086+344061=11183147, hh:=710
+1112: setchar105 ("69) h:=11183147+344061=11527208, hh:=732
+1113: setchar116 ("74) h:=11527208+344061=11871269, hh:=754
+1114: setchar101 ("65) h:=11871269+344061=12215330, hh:=776
+1115: setchar114 ("72) h:=12215330+344061=12559391, hh:=798
+[Typewriter]
+1116: fntnum15 {186} current font is min10
+1117: set2 8482 {129}("2122) type=9 h:=12559391+330310=12889701, hh:=818
+1120: w0 274308 {147} h:=12889701+274308=13164009, hh:=834
+[、 ]
+1121: fntnum49 {220} current font is cmbx10
+1122: setchar66 ("42) h:=13164009+536118=13700127, hh:=868
+1123: setchar111 ("6F) h:=13700127+376830=14076957, hh:=892
+1124: setchar108 ("6C) h:=14076957+209350=14286307, hh:=905
+1125: setchar100 ("64) h:=14286307+418700=14705007, hh:=932
+[Bold]
+1126: fntnum15 {186} current font is min10
+1127: set2 8482 {129}("2122) type=9 h:=14705007+330310=15035317, hh:=953
+1130: w0 274308 {147} h:=15035317+274308=15309625, hh:=970
+[、 ]
+1131: fntdef1 53 {243}: cmsl10
+1153: fntnum53 {224} current font is cmsl10
+1154: setchar83 ("53) h:=15309625+364090=15673715, hh:=993
+1155: setchar108 ("6C) h:=15673715+182045=15855760, hh:=1005
+1156: setchar97 ("61) h:=15855760+327681=16183441, hh:=1026
+1157: setchar110 ("6E) h:=16183441+364090=16547531, hh:=1049
+1158: right2 -18205 {144} h:=16547531-18205=16529326, hh:=1048
+1161: setchar116 ("74) h:=16529326+254863=16784189, hh:=1064
+1162: setchar101 ("65) h:=16784189+291271=17075460, hh:=1082
+1163: setchar100 ("64) h:=17075460+364090=17439550, hh:=1105
+[Slanted]
+1164: fntnum15 {186} current font is min10
+1165: set2 8482 {129}("2122) type=9 h:=17439550+330310=17769860, hh:=1126
+1168: right3 274307 {145} h:=17769860+274307=18044167, hh:=1143
+[、 ]
+1172: fntdef1 54 {243}: cmss10
+1194: fntnum54 {225} current font is cmss10
+1195: setchar83 ("53) h:=18044167+364090=18408257, hh:=1166
+1196: setchar97 ("61) h:=18408257+314938=18723195, hh:=1186
+1197: setchar110 ("6E) h:=18723195+338603=19061798, hh:=1207
+1198: setchar115 ("73) h:=19061798+251221=19313019, hh:=1223
+1199: right3 205853 {145} h:=19313019+205853=19518872, hh:=1236
+1203: setchar83 ("53) h:=19518872+364090=19882962, hh:=1259
+1204: setchar101 ("65) h:=19882962+291271=20174233, hh:=1277
+1205: setchar114 ("72) h:=20174233+223916=20398149, hh:=1291
+1206: setchar105 ("69) h:=20398149+156558=20554707, hh:=1301
+1207: setchar102 ("66) h:=20554707+200250=20754957, hh:=1314
+1208: right3 146309 {145} h:=20754957+146309=20901266, hh:=1324
+[Sans Serif ]
+1212: fntnum15 {186} current font is min10
+1213: set2 9290 {129}("244A) type=0 h:=20901266+630598=21531864, hh:=1364
+1216: w2 -5670 {149} h:=21531864-5670=21526194, hh:=1364
+1219: set2 9289 {129}("2449) type=0 h:=21526194+630598=22156792, hh:=1404
+1222: w0 -5670 {147} h:=22156792-5670=22151122, hh:=1404
+1223: set2 16959 {129}("423F) type=0 h:=22151122+630598=22781720, hh:=1444
+1226: w0 -5670 {147} h:=22781720-5670=22776050, hh:=1444
+1227: set2 19789 {129}("4D4D) type=0 h:=22776050+630598=23406648, hh:=1484
+1230: w0 -5670 {147} h:=23406648-5670=23400978, hh:=1484
+1231: set2 9287 {129}("2447) type=0 h:=23400978+630598=24031576, hh:=1524
+1234: w0 -5670 {147} h:=24031576-5670=24025906, hh:=1524
+1235: set2 9273 {129}("2439) type=7 h:=24025906+630598=24656504, hh:=1564
+1238: right2 -31532 {144} h:=24656504-31532=24624972, hh:=1562
+1241: set2 8483 {129}("2123) type=9 h:=24624972+330310=24955282, hh:=1583
+1244: right3 274308 {145} h:=24955282+274308=25229590, hh:=1598
+1248: set2 9506 {129}("2522) type=10 h:=25229590+630598=25860188, hh:=1638
+1251: w0 -5670 {147} h:=25860188-5670=25854518, hh:=1638
+1252: set2 9529 {129}("2539) type=0 h:=25854518+630598=26485116, hh:=1678
+[など多様です。 アス]
+1255: pop {142}
+level 2:(h=0,v=6124708,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=388)
+1256: y0 983040 {161} v:=6124708+983040=7107748, vv:=450
+1257: push {141}
+level 2:(h=0,v=7107748,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=450)
+1258: set2 9517 {129}("252D) type=0 h:=0+630598=630598, hh:=40
+1261: w2 -2089 {149} h:=630598-2089=628509, hh:=40
+1264: set2 8508 {129}("213C) type=0 h:=628509+630598=1259107, hh:=80
+1267: w0 -2089 {147} h:=1259107-2089=1257018, hh:=80
+1268: set2 18044 {129}("467C) type=0 h:=1257018+630598=1887616, hh:=120
+1271: w0 -2089 {147} h:=1887616-2089=1885527, hh:=120
+1272: set2 19292 {129}("4B5C) type=0 h:=1885527+630598=2516125, hh:=160
+1275: w0 -2089 {147} h:=2516125-2089=2514036, hh:=160
+1276: set2 14444 {129}("386C) type=0 h:=2514036+630598=3144634, hh:=200
+1279: right3 153472 {145} h:=3144634+153472=3298106, hh:=209
+[キー日本語 ]
+1283: fntnum7 {178} current font is cmr10
+1284: setchar76 ("4C) h:=3298106+409601=3707707, hh:=235
+[L]
+1285: push {141}
+level 3:(h=3707707,v=7107748,w=-2089,x=0,y=983040,z=0,d=0,hh=235,vv=450)
+1286: down3 -134347 {159} v:=7107748-134347=6973401, vv:=441
+1290: push {141}
+level 4:(h=3707707,v=6973401,w=-2089,x=0,y=983040,z=0,d=0,hh=235,vv=441)
+1291: right3 -235930 {145} h:=3707707-235930=3471777, hh:=220
+1295: fntdef1 6 {243}: cmr7
+1315: fntnum6 {177} current font is cmr7
+1316: setchar65 ("41) h:=3471777+386847=3858624, hh:=245
+[A]
+1317: pop {142}
+level 4:(h=3707707,v=6973401,w=-2089,x=0,y=983040,z=0,d=0,hh=235,vv=441)
+1318: pop {142}
+level 3:(h=3707707,v=7107748,w=-2089,x=0,y=983040,z=0,d=0,hh=235,vv=450)
+1319: right3 52617 {145} h:=3707707+52617=3760324, hh:=238
+1323: fntnum7 {178} current font is cmr10
+1324: setchar84 ("54) h:=3760324+473316=4233640, hh:=268
+[T]
+1325: push {141}
+level 3:(h=4233640,v=7107748,w=-2089,x=0,y=983040,z=0,d=0,hh=268,vv=450)
+1326: right3 -109250 {145} h:=4233640-109250=4124390, hh:=261
+1330: down3 141084 {159} v:=7107748+141084=7248832, vv:=459
+1334: setchar69 ("45) h:=4124390+446010=4570400, hh:=289
+[E]
+1335: pop {142}
+level 3:(h=4233640,v=7107748,w=-2089,x=0,y=983040,z=0,d=0,hh=268,vv=450)
+1336: right3 254840 {145} h:=4233640+254840=4488480, hh:=284
+1340: setchar88 ("58) h:=4488480+491521=4980001, hh:=315
+1341: right3 153471 {145} h:=4980001+153471=5133472, hh:=325
+[ X ]
+1345: fntnum15 {186} current font is min10
+1346: set2 9295 {129}("244F) type=0 h:=5133472+630598=5764070, hh:=365
+1349: w0 -2089 {147} h:=5764070-2089=5761981, hh:=365
+1350: set2 9279 {129}("243F) type=0 h:=5761981+630598=6392579, hh:=405
+1353: right3 65894 {145} h:=6392579+65894=6458473, hh:=409
+1357: set2 9283 {129}("2443) type=3 h:=6458473+489838=6948311, hh:=440
+1360: right3 65893 {145} h:=6948311+65893=7014204, hh:=444
+1364: set2 9279 {129}("243F) type=0 h:=7014204+630598=7644802, hh:=484
+1367: w0 -2089 {147} h:=7644802-2089=7642713, hh:=484
+1368: set2 12396 {129}("306C) type=0 h:=7642713+630598=8273311, hh:=524
+1371: w0 -2089 {147} h:=8273311-2089=8271222, hh:=524
+1372: set2 19303 {129}("4B67) type=0 h:=8271222+630598=8901820, hh:=564
+1375: w0 -2089 {147} h:=8901820-2089=8899731, hh:=564
+1376: set2 9294 {129}("244E) type=0 h:=8899731+630598=9530329, hh:=604
+1379: w0 -2089 {147} h:=9530329-2089=9528240, hh:=604
+1380: set2 15466 {129}("3C6A) type=0 h:=9528240+630598=10158838, hh:=644
+1383: w0 -2089 {147} h:=10158838-2089=10156749, hh:=644
+1384: set2 15206 {129}("3B66) type=0 h:=10156749+630598=10787347, hh:=684
+1387: w0 -2089 {147} h:=10787347-2089=10785258, hh:=684
+1388: set2 9259 {129}("242B) type=0 h:=10785258+630598=11415856, hh:=724
+1391: w0 -2089 {147} h:=11415856-2089=11413767, hh:=724
+1392: set2 9321 {129}("2469) type=0 h:=11413767+630598=12044365, hh:=764
+1395: right2 -2088 {144} h:=12044365-2088=12042277, hh:=764
+1398: set2 8482 {129}("2122) type=9 h:=12042277+330310=12372587, hh:=785
+1401: right3 290717 {145} h:=12372587+290717=12663304, hh:=802
+1405: set2 16244 {129}("3F74) type=0 h:=12663304+630598=13293902, hh:=842
+1408: w0 -2089 {147} h:=13293902-2089=13291813, hh:=842
+1409: set2 18740 {129}("4934) type=0 h:=13291813+630598=13922411, hh:=882
+1412: w0 -2089 {147} h:=13922411-2089=13920322, hh:=882
+1413: set2 9562 {129}("255A) type=0 h:=13920322+630598=14550920, hh:=922
+1416: w0 -2089 {147} h:=14550920-2089=14548831, hh:=922
+1417: set2 8508 {129}("213C) type=0 h:=14548831+630598=15179429, hh:=962
+1420: w0 -2089 {147} h:=15179429-2089=15177340, hh:=962
+1421: set2 9528 {129}("2538) type=0 h:=15177340+630598=15807938, hh:=1002
+1424: w0 -2089 {147} h:=15807938-2089=15805849, hh:=1002
+1425: set2 9291 {129}("244B) type=0 h:=15805849+630598=16436447, hh:=1042
+1428: w0 -2089 {147} h:=16436447-2089=16434358, hh:=1042
+1429: set2 9258 {129}("242A) type=0 h:=16434358+630598=17064956, hh:=1082
+1432: w0 -2089 {147} h:=17064956-2089=17062867, hh:=1082
+1433: set2 9320 {129}("2468) type=0 h:=17062867+630598=17693465, hh:=1122
+1436: w0 -2089 {147} h:=17693465-2089=17691376, hh:=1122
+1437: set2 9302 {129}("2456) type=0 h:=17691376+630598=18321974, hh:=1162
+1440: w0 -2089 {147} h:=18321974-2089=18319885, hh:=1162
+1441: set2 20288 {129}("4F40) type=0 h:=18319885+630598=18950483, hh:=1202
+1444: w0 -2089 {147} h:=18950483-2089=18948394, hh:=1202
+1445: set2 19000 {129}("4A38) type=0 h:=18948394+630598=19578992, hh:=1242
+1448: w0 -2089 {147} h:=19578992-2089=19576903, hh:=1242
+1449: set2 9316 {129}("2464) type=0 h:=19576903+630598=20207501, hh:=1282
+1452: w0 -2089 {147} h:=20207501-2089=20205412, hh:=1282
+1453: set2 13627 {129}("353B) type=0 h:=20205412+630598=20836010, hh:=1322
+1456: w0 -2089 {147} h:=20836010-2089=20833921, hh:=1322
+1457: set2 15697 {129}("3D51) type=0 h:=20833921+630598=21464519, hh:=1362
+1460: w0 -2089 {147} h:=21464519-2089=21462430, hh:=1361
+1461: set2 19000 {129}("4A38) type=0 h:=21462430+630598=22093028, hh:=1401
+1464: w0 -2089 {147} h:=22093028-2089=22090939, hh:=1401
+1465: set2 15729 {129}("3D71) type=0 h:=22090939+630598=22721537, hh:=1441
+1468: w0 -2089 {147} h:=22721537-2089=22719448, hh:=1441
+1469: set2 9310 {129}("245E) type=0 h:=22719448+630598=23350046, hh:=1481
+1472: w0 -2089 {147} h:=23350046-2089=23347957, hh:=1481
+1473: set2 9287 {129}("2447) type=0 h:=23347957+630598=23978555, hh:=1521
+1476: w0 -2089 {147} h:=23978555-2089=23976466, hh:=1521
+1477: set2 8482 {129}("2122) type=9 h:=23976466+330310=24306776, hh:=1542
+1480: right3 290718 {145} h:=24306776+290718=24597494, hh:=1558
+1484: set2 9277 {129}("243D) type=0 h:=24597494+630598=25228092, hh:=1598
+1487: w0 -2089 {147} h:=25228092-2089=25226003, hh:=1598
+1488: set2 9324 {129}("246C) type=0 h:=25226003+630598=25856601, hh:=1638
+1491: w0 -2089 {147} h:=25856601-2089=25854512, hh:=1638
+1492: set2 9321 {129}("2469) type=0 h:=25854512+630598=26485110, hh:=1678
+[はたった一枚の手紙から、 数百ページにおよぶ論文や技術文書まで、 それら]
+1495: pop {142}
+level 2:(h=0,v=7107748,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=450)
+1496: y0 983040 {161} v:=7107748+983040=8090788, vv:=512
+1497: push {141}
+level 2:(h=0,v=8090788,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=512)
+1498: set2 9273 {129}("2439) type=7 h:=0+630598=630598, hh:=40
+1501: set2 9305 {129}("2459) type=0 h:=630598+630598=1261196, hh:=80
+1504: set2 9286 {129}("2446) type=0 h:=1261196+630598=1891794, hh:=120
+1507: set2 9330 {129}("2472) type=0 h:=1891794+630598=2522392, hh:=160
+1510: set2 13360 {129}("3430) type=0 h:=2522392+630598=3152990, hh:=200
+1513: set2 16692 {129}("4134) type=0 h:=3152990+630598=3783588, hh:=240
+1516: set2 9291 {129}("244B) type=0 h:=3783588+630598=4414186, hh:=280
+1519: set2 9515 {129}("252B) type=0 h:=4414186+630598=5044784, hh:=320
+1522: set2 9552 {129}("2550) type=0 h:=5044784+630598=5675382, hh:=360
+1525: set2 8508 {129}("213C) type=0 h:=5675382+630598=6305980, hh:=400
+1528: set2 9252 {129}("2424) type=0 h:=6305980+630598=6936578, hh:=440
+1531: set2 9279 {129}("243F) type=0 h:=6936578+630598=7567176, hh:=480
+1534: set2 9271 {129}("2437) type=0 h:=7567176+630598=8197774, hh:=520
+1537: set2 9310 {129}("245E) type=0 h:=8197774+630598=8828372, hh:=560
+1540: set2 9273 {129}("2439) type=7 h:=8828372+630598=9458970, hh:=600
+1543: right2 -31532 {144} h:=9458970-31532=9427438, hh:=598
+1546: set2 8483 {129}("2123) type=9 h:=9427438+330310=9757748, hh:=619
+[すべてを完全にカバーいたします。]
+1549: pop {142}
+level 2:(h=0,v=8090788,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=512)
+1550: down3 903646 {159} v:=8090788+903646=8994434, vv:=570
+1554: putrule {137} height 26214, width 26485116 (2x1678 pixels)
+1563: down3 4602788 {159} v:=8994434+4602788=13597222, vv:=861
+1567: push {141}
+level 2:(h=0,v=13597222,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=861)
+1568: push {141}
+level 3:(h=0,v=13597222,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=861)
+1569: right3 3412158 {145} h:=0+3412158=3412158, hh:=216
+[ ]
+1573: down3 -3947428 {159} v:=13597222-3947428=9649794, vv:=611
+1577: dir 1 {255}
+1579: down4 -19660800 {160} h:=3412158+19660800=23072958, hh:=1461
+1584: push {141}
+level 4:(h=23072958,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1461,vv=611)
+1585: fntdef1 14 {243}: tmin10
+1607: fntnum14 {185} current font is tmin10
+1608: set2 17969 {129}("4631) type=0 v:=9649794+630598=10280392, vv:=651
+1611: set2 9272 {129}("2438) type=0 v:=10280392+630598=10910990, vv:=691
+1614: set2 9314 {129}("2462) type=0 v:=10910990+630598=11541588, vv:=731
+1617: set2 9294 {129}("244E) type=0 v:=11541588+630598=12172186, vv:=771
+1620: set2 9330 {129}("2472) type=0 v:=12172186+630598=12802784, vv:=811
+1623: set2 15684 {129}("3D44) type=0 v:=12802784+630598=13433382, vv:=851
+1626: set2 15729 {129}("3D71) type=0 v:=13433382+630598=14063980, vv:=891
+1629: set2 9261 {129}("242D) type=0 v:=14063980+630598=14694578, vv:=931
+1632: set2 9291 {129}("244B) type=0 v:=14694578+630598=15325176, vv:=971
+1635: set2 9271 {129}("2437) type=0 v:=15325176+630598=15955774, vv:=1011
+1638: set2 9286 {129}("2446) type=0 v:=15955774+630598=16586372, vv:=1051
+1641: set2 15696 {129}("3D50) type=0 v:=16586372+630598=17216970, vv:=1091
+[同じものを縦書きにして出]
+1644: pop {142}
+level 4:(h=23072958,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1461,vv=611)
+1645: y0 983040 {161} h:=23072958-983040=22089918, hh:=1399
+1646: push {141}
+level 4:(h=22089918,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1399,vv=611)
+1647: set2 20047 {129}("4E4F) type=0 v:=9649794+630598=10280392, vv:=651
+1650: set2 9271 {129}("2437) type=0 v:=10280392+630598=10910990, vv:=691
+1653: set2 9286 {129}("2446) type=0 v:=10910990+630598=11541588, vv:=731
+1656: set2 9311 {129}("245F) type=0 v:=11541588+630598=12172186, vv:=771
+1659: set2 9310 {129}("245E) type=0 v:=12172186+630598=12802784, vv:=811
+1662: set2 9271 {129}("2437) type=0 v:=12802784+630598=13433382, vv:=851
+1665: w3 70380 {150} v:=13433382+70380=13503762, vv:=855
+1669: set2 9319 {129}("2467) type=3 v:=13503762+489838=13993600, vv:=886
+1672: w0 70380 {147} v:=13993600+70380=14063980, vv:=890
+1673: set2 9254 {129}("2426) type=0 v:=14063980+630598=14694578, vv:=930
+1676: set2 8483 {129}("2123) type=2 v:=14694578+315298=15009876, vv:=950
+[力してみましょう。]
+1679: pop {142}
+level 4:(h=22089918,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1399,vv=611)
+1680: y0 983040 {161} h:=22089918-983040=21106878, hh:=1337
+1681: push {141}
+level 4:(h=21106878,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1337,vv=611)
+1682: set2 9267 {129}("2433) type=0 v:=9649794+630598=10280392, vv:=651
+1685: w2 17258 {149} v:=10280392+17258=10297650, vv:=652
+1688: set2 9324 {129}("246C) type=0 v:=10297650+630598=10928248, vv:=692
+1691: w0 17258 {147} v:=10928248+17258=10945506, vv:=693
+1692: set2 9295 {129}("244F) type=0 v:=10945506+630598=11576104, vv:=733
+1695: w3 200795 {150} v:=11576104+200795=11776899, vv:=746
+[これは ]
+1699: down3 141888 {159} h:=21106878-141888=20964990, hh:=1328
+1703: fntnum49 {220} current font is cmbx10
+1704: setchar84 ("54) v:=11776899+524285=12301184, vv:=779
+[T]
+1705: push {141}
+level 5:(h=20964990,v=12301184,w=200795,x=0,y=983040,z=0,d=1,hh=1328,vv=779)
+1706: right3 -125636 {145} v:=12301184-125636=12175548, vv:=771
+1710: down3 145635 {159} h:=20964990-145635=20819355, hh:=1319
+1714: setchar69 ("45) v:=12175548+495158=12670706, vv:=802
+[E]
+1715: pop {142}
+level 5:(h=20964990,v=12301184,w=200795,x=0,y=983040,z=0,d=1,hh=1328,vv=779)
+1716: right3 275315 {145} v:=12301184+275315=12576499, vv:=797
+1720: setchar88 ("58) v:=12576499+569796=13146295, vv:=833
+1721: w0 200795 {147} v:=13146295+200795=13347090, vv:=845
+[ X ]
+1722: down3 -141888 {159} h:=20964990+141888=21106878, hh:=1337
+1726: fntnum14 {185} current font is tmin10
+1727: set2 9294 {129}("244E) type=0 v:=13347090+630598=13977688, vv:=885
+1730: w2 17258 {149} v:=13977688+17258=13994946, vv:=886
+1733: set2 9307 {129}("245B) type=0 v:=13994946+630598=14625544, vv:=926
+1736: w0 17258 {147} v:=14625544+17258=14642802, vv:=927
+1737: set2 9331 {129}("2473) type=0 v:=14642802+630598=15273400, vv:=967
+1740: w0 17258 {147} v:=15273400+17258=15290658, vv:=968
+1741: set2 9294 {129}("244E) type=0 v:=15290658+630598=15921256, vv:=1008
+1744: w0 17258 {147} v:=15921256+17258=15938514, vv:=1009
+1745: set2 12396 {129}("306C) type=0 v:=15938514+630598=16569112, vv:=1049
+1748: w0 17258 {147} v:=16569112+17258=16586370, vv:=1050
+1749: set2 20067 {129}("4E63) type=0 v:=16586370+630598=17216968, vv:=1090
+[のほんの一例]
+1752: pop {142}
+level 4:(h=21106878,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1337,vv=611)
+1753: y0 983040 {161} h:=21106878-983040=20123838, hh:=1275
+1754: push {141}
+level 4:(h=20123838,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1275,vv=611)
+1755: set2 9287 {129}("2447) type=0 v:=9649794+630598=10280392, vv:=651
+1758: x2 6651 {154} v:=10280392+6651=10287043, vv:=651
+1761: set2 9273 {129}("2439) type=0 v:=10287043+630598=10917641, vv:=691
+1764: set2 8483 {129}("2123) type=2 v:=10917641+315298=11232939, vv:=711
+1767: right3 345774 {145} v:=11232939+345774=11578713, vv:=733
+1771: set2 9281 {129}("2441) type=0 v:=11578713+630598=12209311, vv:=773
+1774: w3 70380 {150} v:=12209311+70380=12279691, vv:=777
+1778: set2 9319 {129}("2467) type=3 v:=12279691+489838=12769529, vv:=808
+1781: w0 70380 {147} v:=12769529+70380=12839909, vv:=812
+1782: set2 9283 {129}("2443) type=3 v:=12839909+489838=13329747, vv:=843
+1785: w0 70380 {147} v:=13329747+70380=13400127, vv:=847
+1786: set2 9288 {129}("2448) type=0 v:=13400127+630598=14030725, vv:=887
+1789: x0 6651 {152} v:=14030725+6651=14037376, vv:=887
+1790: set2 24111 {129}("5E2F) type=0 v:=14037376+630598=14667974, vv:=927
+1793: x0 6651 {152} v:=14667974+6651=14674625, vv:=928
+1794: set2 19822 {129}("4D6E) type=0 v:=14674625+630598=15305223, vv:=968
+1797: x0 6651 {152} v:=15305223+6651=15311874, vv:=968
+1798: set2 9279 {129}("243F) type=0 v:=15311874+630598=15942472, vv:=1008
+1801: x0 6651 {152} v:=15942472+6651=15949123, vv:=1008
+1802: set2 19000 {129}("4A38) type=0 v:=15949123+630598=16579721, vv:=1048
+1805: x0 6651 {152} v:=16579721+6651=16586372, vv:=1049
+1806: set2 15729 {129}("3D71) type=0 v:=16586372+630598=17216970, vv:=1089
+[です。 ちょっと洒落た文書]
+1809: pop {142}
+level 4:(h=20123838,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1275,vv=611)
+1810: y0 983040 {161} h:=20123838-983040=19140798, hh:=1212
+1811: push {141}
+level 4:(h=19140798,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1212,vv=611)
+1812: set2 9330 {129}("2472) type=0 v:=9649794+630598=10280392, vv:=651
+1815: x2 -28771 {154} v:=10280392-28771=10251621, vv:=649
+1818: set2 14958 {129}("3A6E) type=0 v:=10251621+630598=10882219, vv:=689
+1821: w2 8585 {149} v:=10882219+8585=10890804, vv:=690
+1824: set2 9283 {129}("2443) type=3 v:=10890804+489838=11380642, vv:=721
+1827: w0 8585 {147} v:=11380642+8585=11389227, vv:=722
+1828: set2 9286 {129}("2446) type=0 v:=11389227+630598=12019825, vv:=762
+1831: x0 -28771 {152} v:=12019825-28771=11991054, vv:=760
+1832: set2 9311 {129}("245F) type=0 v:=11991054+630598=12621652, vv:=800
+1835: x0 -28771 {152} v:=12621652-28771=12592881, vv:=798
+1836: set2 9279 {129}("243F) type=0 v:=12592881+630598=13223479, vv:=838
+1839: x0 -28771 {152} v:=13223479-28771=13194708, vv:=836
+1840: set2 9252 {129}("2424) type=0 v:=13194708+630598=13825306, vv:=876
+1843: x0 -28771 {152} v:=13825306-28771=13796535, vv:=874
+1844: set2 15230 {129}("3B7E) type=0 v:=13796535+630598=14427133, vv:=914
+1847: x0 -28771 {152} v:=14427133-28771=14398362, vv:=912
+1848: set2 9316 {129}("2464) type=0 v:=14398362+630598=15028960, vv:=952
+1851: set2 8482 {129}("2122) type=2 v:=15028960+315298=15344258, vv:=972
+1854: right3 38460 {145} v:=15344258+38460=15382718, vv:=974
+1858: set2 16205 {129}("3F4D) type=0 v:=15382718+630598=16013316, vv:=1014
+1861: x0 -28771 {152} v:=16013316-28771=15984545, vv:=1012
+1862: set2 9288 {129}("2448) type=0 v:=15984545+630598=16615143, vv:=1052
+1865: x0 -28771 {152} v:=16615143-28771=16586372, vv:=1050
+1866: set2 9295 {129}("244F) type=0 v:=16586372+630598=17216970, vv:=1090
+[を作ってみたい時や、人とは]
+1869: pop {142}
+level 4:(h=19140798,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1212,vv=611)
+1870: y0 983040 {161} h:=19140798-983040=18157758, hh:=1150
+1871: push {141}
+level 4:(h=18157758,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1150,vv=611)
+1872: set2 12396 {129}("306C) type=0 v:=9649794+630598=10280392, vv:=651
+1875: set2 19491 {129}("4C23) type=0 v:=10280392+630598=10910990, vv:=691
+1878: set2 12387 {129}("3063) type=0 v:=10910990+630598=11541588, vv:=731
+1881: set2 9254 {129}("2426) type=0 v:=11541588+630598=12172186, vv:=771
+1884: set2 19000 {129}("4A38) type=0 v:=12172186+630598=12802784, vv:=811
+1887: set2 15729 {129}("3D71) type=0 v:=12802784+630598=13433382, vv:=851
+1890: set2 9330 {129}("2472) type=0 v:=13433382+630598=14063980, vv:=891
+1893: set2 14958 {129}("3A6E) type=0 v:=14063980+630598=14694578, vv:=931
+1896: w3 70380 {150} v:=14694578+70380=14764958, vv:=935
+1900: set2 9283 {129}("2443) type=3 v:=14764958+489838=15254796, vv:=966
+1903: w0 70380 {147} v:=15254796+70380=15325176, vv:=970
+1904: set2 9286 {129}("2446) type=0 v:=15325176+630598=15955774, vv:=1010
+1907: set2 9311 {129}("245F) type=0 v:=15955774+630598=16586372, vv:=1050
+1910: set2 9279 {129}("243F) type=0 v:=16586372+630598=17216970, vv:=1090
+[一味違う文書を作ってみた]
+1913: pop {142}
+level 4:(h=18157758,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1150,vv=611)
+1914: y0 983040 {161} h:=18157758-983040=17174718, hh:=1088
+1915: push {141}
+level 4:(h=17174718,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1088,vv=611)
+1916: set2 9252 {129}("2424) type=0 v:=9649794+630598=10280392, vv:=651
+1919: set2 9288 {129}("2448) type=0 v:=10280392+630598=10910990, vv:=691
+1922: set2 9252 {129}("2424) type=0 v:=10910990+630598=11541588, vv:=731
+1925: w3 70380 {150} v:=11541588+70380=11611968, vv:=735
+1929: set2 9283 {129}("2443) type=3 v:=11611968+489838=12101806, vv:=766
+1932: w0 70380 {147} v:=12101806+70380=12172186, vv:=770
+1933: set2 9279 {129}("243F) type=0 v:=12172186+630598=12802784, vv:=810
+1936: set2 19799 {129}("4D57) type=0 v:=12802784+630598=13433382, vv:=850
+1939: set2 13665 {129}("3561) type=0 v:=13433382+630598=14063980, vv:=890
+1942: set2 9291 {129}("244B) type=0 v:=14063980+630598=14694578, vv:=930
+1945: set2 17786 {129}("457A) type=0 v:=14694578+630598=15325176, vv:=970
+1948: set2 9256 {129}("2428) type=0 v:=15325176+630598=15955774, vv:=1010
+1951: set2 9286 {129}("2446) type=0 v:=15955774+630598=16586372, vv:=1050
+1954: set2 9263 {129}("242F) type=0 v:=16586372+630598=17216970, vv:=1090
+[いといった要求に答えてく]
+1957: pop {142}
+level 4:(h=17174718,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1088,vv=611)
+1958: y0 983040 {161} h:=17174718-983040=16191678, hh:=1026
+1959: push {141}
+level 4:(h=16191678,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=611)
+1960: set2 9324 {129}("246C) type=0 v:=9649794+630598=10280392, vv:=651
+1963: set2 9323 {129}("246B) type=0 v:=10280392+630598=10910990, vv:=691
+1966: set2 9280 {129}("2440) type=0 v:=10910990+630598=11541588, vv:=731
+1969: set2 9265 {129}("2431) type=0 v:=11541588+630598=12172186, vv:=771
+1972: set2 9294 {129}("244E) type=0 v:=12172186+630598=12802784, vv:=811
+1975: set2 18237 {129}("473D) type=0 v:=12802784+630598=13433382, vv:=851
+1978: set2 20047 {129}("4E4F) type=0 v:=13433382+630598=14063980, vv:=891
+1981: set2 9330 {129}("2472) type=0 v:=14063980+630598=14694578, vv:=931
+1984: set2 15677 {129}("3D3D) type=0 v:=14694578+630598=15325176, vv:=971
+1987: set2 18988 {129}("4A2C) type=0 v:=15325176+630598=15955774, vv:=1011
+1990: set2 9291 {129}("244B) type=0 v:=15955774+630598=16586372, vv:=1051
+[れるだけの能力を十分に]
+1993: push {141}
+level 5:(h=16191678,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=1051)
+1994: push {141}
+level 6:(h=16191678,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=1051)
+1995: down3 -465455 {159} h:=16191678+465455=16657133, hh:=1055
+1999: push {141}
+level 7:(h=16657133,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1055,vv=1051)
+2000: right3 383483 {145} v:=16586372+383483=16969855, vv:=1075
+[ ]
+2004: down3 165155 {159} h:=16657133-165155=16491978, hh:=1045
+2008: dir 0 {255}
+2010: fntnum15 {186} current font is min10
+2011: set2 8482 {129}("2122) type=9 h:=16491978+330310=16822288, hh:=1066
+[、]
+2014: pop {142}
+level 7:(h=16657133,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1055,vv=1051)
+2015: down3 465455 {159} h:=16657133-465455=16191678, hh:=1026
+2019: push {141}
+level 7:(h=16191678,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=1051)
+2020: fntnum14 {185} current font is tmin10
+2021: set2 8481 {129}("2121) type=0 v:=16586372+630598=17216970, vv:=1091
+[ ]
+2024: pop {142}
+level 7:(h=16191678,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=1051)
+2025: pop {142}
+level 6:(h=16191678,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=1051)
+2026: pop {142}
+level 5:(h=16191678,v=16586372,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=1051)
+2027: set2 18539 {129}("486B) type=0 v:=16586372+630598=17216970, vv:=1091
+[秘]
+2030: pop {142}
+level 4:(h=16191678,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=1026,vv=611)
+2031: y0 983040 {161} h:=16191678-983040=15208638, hh:=963
+2032: push {141}
+level 4:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2033: push {141}
+level 5:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2034: push {141}
+level 6:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2035: down3 -465455 {159} h:=15208638+465455=15674093, hh:=992
+2039: push {141}
+level 7:(h=15674093,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=992,vv=611)
+2040: right3 383483 {145} v:=9649794+383483=10033277, vv:=636
+[ ]
+2044: down3 165155 {159} h:=15674093-165155=15508938, hh:=982
+2048: dir 0 {255}
+2050: fntnum15 {186} current font is min10
+2051: set2 8482 {129}("2122) type=9 h:=15508938+330310=15839248, hh:=1003
+[、]
+2054: pop {142}
+level 7:(h=15674093,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=992,vv=611)
+2055: down3 465455 {159} h:=15674093-465455=15208638, hh:=963
+2059: push {141}
+level 7:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2060: fntnum14 {185} current font is tmin10
+2061: set2 8481 {129}("2121) type=0 v:=9649794+630598=10280392, vv:=651
+[ ]
+2064: pop {142}
+level 7:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2065: pop {142}
+level 6:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2066: pop {142}
+level 5:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2067: set2 9313 {129}("2461) type=0 v:=9649794+630598=10280392, vv:=651
+[め]
+2070: push {141}
+level 5:(h=15208638,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=651)
+2071: push {141}
+level 6:(h=15208638,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=651)
+2072: down3 -465455 {159} h:=15208638+465455=15674093, hh:=992
+2076: push {141}
+level 7:(h=15674093,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=992,vv=651)
+2077: right3 383483 {145} v:=10280392+383483=10663875, vv:=675
+[ ]
+2081: down3 165155 {159} h:=15674093-165155=15508938, hh:=982
+2085: dir 0 {255}
+2087: fntnum15 {186} current font is min10
+2088: set2 8482 {129}("2122) type=9 h:=15508938+330310=15839248, hh:=1003
+[、]
+2091: pop {142}
+level 7:(h=15674093,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=992,vv=651)
+2092: down3 465455 {159} h:=15674093-465455=15208638, hh:=963
+2096: push {141}
+level 7:(h=15208638,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=651)
+2097: fntnum14 {185} current font is tmin10
+2098: set2 8481 {129}("2121) type=0 v:=10280392+630598=10910990, vv:=691
+[ ]
+2101: pop {142}
+level 7:(h=15208638,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=651)
+2102: pop {142}
+level 6:(h=15208638,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=651)
+2103: pop {142}
+level 5:(h=15208638,v=10280392,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=651)
+2104: set2 9286 {129}("2446) type=0 v:=10280392+630598=10910990, vv:=691
+2107: w2 -17892 {149} v:=10910990-17892=10893098, vv:=690
+2110: set2 9252 {129}("2424) type=0 v:=10893098+630598=11523696, vv:=730
+2113: w0 -17892 {147} v:=11523696-17892=11505804, vv:=729
+2114: set2 9310 {129}("245E) type=0 v:=11505804+630598=12136402, vv:=769
+2117: w0 -17892 {147} v:=12136402-17892=12118510, vv:=768
+2118: set2 9273 {129}("2439) type=0 v:=12118510+630598=12749108, vv:=808
+2121: set2 8483 {129}("2123) type=2 v:=12749108+315298=13064406, vv:=828
+2124: right3 143138 {145} v:=13064406+143138=13207544, vv:=837
+2128: set2 8534 {129}("2156) type=6 v:=13207544+315298=13522842, vv:=857
+2131: set2 16205 {129}("3F4D) type=0 v:=13522842+630598=14153440, vv:=897
+2134: w0 -17892 {147} v:=14153440-17892=14135548, vv:=896
+2135: set2 9294 {129}("244E) type=0 v:=14135548+630598=14766146, vv:=936
+2138: w0 -17892 {147} v:=14766146-17892=14748254, vv:=935
+2139: set2 19548 {129}("4C5C) type=0 v:=14748254+630598=15378852, vv:=975
+2142: w0 -17892 {147} v:=15378852-17892=15360960, vv:=974
+2143: set2 9330 {129}("2472) type=0 v:=15360960+630598=15991558, vv:=1014
+2146: w0 -17892 {147} v:=15991558-17892=15973666, vv:=1013
+2147: set2 12410 {129}("307A) type=0 v:=15973666+630598=16604264, vv:=1053
+2150: w0 -17892 {147} v:=16604264-17892=16586372, vv:=1052
+2151: set2 9261 {129}("242D) type=0 v:=16586372+630598=17216970, vv:=1092
+[ています。 「人の目を引き]
+2154: pop {142}
+level 4:(h=15208638,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=963,vv=611)
+2155: y0 983040 {161} h:=15208638-983040=14225598, hh:=901
+2156: push {141}
+level 4:(h=14225598,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=901,vv=611)
+2157: set2 18773 {129}("4955) type=0 v:=9649794+630598=10280392, vv:=651
+2160: w2 -32137 {149} v:=10280392-32137=10248255, vv:=649
+2163: set2 9265 {129}("2431) type=0 v:=10248255+630598=10878853, vv:=689
+2166: w0 -32137 {147} v:=10878853-32137=10846716, vv:=687
+2167: set2 9323 {129}("246B) type=0 v:=10846716+630598=11477314, vv:=727
+2170: w0 -32137 {147} v:=11477314-32137=11445177, vv:=725
+2171: set2 18558 {129}("487E) type=0 v:=11445177+630598=12075775, vv:=765
+2174: w0 -32137 {147} v:=12075775-32137=12043638, vv:=763
+2175: set2 9271 {129}("2437) type=0 v:=12043638+630598=12674236, vv:=803
+2178: w0 -32137 {147} v:=12674236-32137=12642099, vv:=801
+2179: set2 9252 {129}("2424) type=0 v:=12642099+630598=13272697, vv:=841
+2182: w0 -32137 {147} v:=13272697-32137=13240560, vv:=839
+2183: set2 19000 {129}("4A38) type=0 v:=13240560+630598=13871158, vv:=879
+2186: w0 -32137 {147} v:=13871158-32137=13839021, vv:=877
+2187: set2 15729 {129}("3D71) type=0 v:=13839021+630598=14469619, vv:=917
+2190: set2 8535 {129}("2157) type=8 v:=14469619+315298=14784917, vv:=937
+2193: right2 6072 {144} v:=14784917+6072=14790989, vv:=937
+2196: set2 9330 {129}("2472) type=0 v:=14790989+630598=15421587, vv:=977
+2199: w0 -32137 {147} v:=15421587-32137=15389450, vv:=975
+2200: set2 14958 {129}("3A6E) type=0 v:=15389450+630598=16020048, vv:=1015
+2203: w0 -32137 {147} v:=16020048-32137=15987911, vv:=1013
+2204: set2 9323 {129}("246B) type=0 v:=15987911+630598=16618509, vv:=1053
+2207: w0 -32137 {147} v:=16618509-32137=16586372, vv:=1051
+2208: set2 9279 {129}("243F) type=0 v:=16586372+630598=17216970, vv:=1091
+[付ける美しい文書」を作るた]
+2211: pop {142}
+level 4:(h=14225598,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=901,vv=611)
+2212: y0 983040 {161} h:=14225598-983040=13242558, hh:=839
+2213: push {141}
+level 4:(h=13242558,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=839,vv=611)
+2214: set2 9313 {129}("2461) type=0 v:=9649794+630598=10280392, vv:=651
+2217: set2 9294 {129}("244E) type=0 v:=10280392+630598=10910990, vv:=691
+2220: set2 13601 {129}("3521) type=0 v:=10910990+630598=11541588, vv:=731
+2223: set2 18237 {129}("473D) type=0 v:=11541588+630598=12172186, vv:=771
+2226: set2 9295 {129}("244F) type=0 v:=12172186+630598=12802784, vv:=811
+2229: set2 15677 {129}("3D3D) type=0 v:=12802784+630598=13433382, vv:=851
+2232: set2 18035 {129}("4673) type=0 v:=13433382+630598=14063980, vv:=891
+2235: set2 18988 {129}("4A2C) type=0 v:=14063980+630598=14694578, vv:=931
+2238: set2 9291 {129}("244B) type=0 v:=14694578+630598=15325176, vv:=971
+2241: set2 15229 {129}("3B7D) type=0 v:=15325176+630598=15955774, vv:=1011
+2244: w3 70380 {150} v:=15955774+70380=16026154, vv:=1015
+2248: set2 9283 {129}("2443) type=3 v:=16026154+489838=16515992, vv:=1046
+2251: w0 70380 {147} v:=16515992+70380=16586372, vv:=1050
+2252: set2 9286 {129}("2446) type=0 v:=16586372+630598=17216970, vv:=1090
+[めの機能は十二分に持って]
+2255: pop {142}
+level 4:(h=13242558,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=839,vv=611)
+2256: y0 983040 {161} h:=13242558-983040=12259518, hh:=777
+2257: push {141}
+level 4:(h=12259518,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=777,vv=611)
+2258: set2 9252 {129}("2424) type=0 v:=9649794+630598=10280392, vv:=651
+2261: w2 -28771 {149} v:=10280392-28771=10251621, vv:=649
+2264: set2 9310 {129}("245E) type=0 v:=10251621+630598=10882219, vv:=689
+2267: w0 -28771 {147} v:=10882219-28771=10853448, vv:=687
+2268: set2 9273 {129}("2439) type=0 v:=10853448+630598=11484046, vv:=727
+2271: set2 8483 {129}("2123) type=2 v:=11484046+315298=11799344, vv:=747
+2274: right3 38460 {145} v:=11799344+38460=11837804, vv:=749
+2278: set2 9557 {129}("2555) type=0 v:=11837804+630598=12468402, vv:=789
+2281: w2 8585 {149} v:=12468402+8585=12476987, vv:=790
+2284: set2 9513 {129}("2529) type=3 v:=12476987+489838=12966825, vv:=821
+2287: w0 8585 {147} v:=12966825+8585=12975410, vv:=822
+2288: set2 9587 {129}("2573) type=0 v:=12975410+630598=13606008, vv:=862
+2291: w2 -28771 {149} v:=13606008-28771=13577237, vv:=860
+2294: set2 9544 {129}("2548) type=0 v:=13577237+630598=14207835, vv:=900
+2297: w0 -28771 {147} v:=14207835-28771=14179064, vv:=898
+2298: set2 9314 {129}("2462) type=0 v:=14179064+630598=14809662, vv:=938
+2301: w0 -28771 {147} v:=14809662-28771=14780891, vv:=936
+2302: set2 12836 {129}("3224) type=0 v:=14780891+630598=15411489, vv:=976
+2305: w0 -28771 {147} v:=15411489-28771=15382718, vv:=974
+2306: set2 19000 {129}("4A38) type=0 v:=15382718+630598=16013316, vv:=1014
+2309: w0 -28771 {147} v:=16013316-28771=15984545, vv:=1012
+2310: set2 9290 {129}("244A) type=0 v:=15984545+630598=16615143, vv:=1052
+2313: w0 -28771 {147} v:=16615143-28771=16586372, vv:=1050
+2314: set2 9321 {129}("2469) type=0 v:=16586372+630598=17216970, vv:=1090
+[います。フォントも欧文なら]
+2317: pop {142}
+level 4:(h=12259518,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=777,vv=611)
+2318: y0 983040 {161} h:=12259518-983040=11276478, hh:=714
+2319: push {141}
+level 4:(h=11276478,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=714,vv=611)
+2320: set2 9296 {129}("2450) type=0 v:=9649794+630598=10280392, vv:=651
+2323: set2 8482 {129}("2122) type=2 v:=10280392+315298=10595690, vv:=671
+2326: w3 167597 {150} v:=10595690+167597=10763287, vv:=682
+[ば、 ]
+2330: y3 141888 {164} h:=11276478-141888=11134590, hh:=705
+2334: fntnum7 {178} current font is cmr10
+2335: setchar82 ("52) v:=10763287+482418=11245705, vv:=713
+2336: setchar111 ("6F) v:=11245705+327681=11573386, vv:=734
+2337: setchar109 ("6D) v:=11573386+546135=12119521, vv:=769
+2338: setchar97 ("61) v:=12119521+327681=12447202, vv:=790
+2339: setchar110 ("6E) v:=12447202+364090=12811292, vv:=813
+[Roman]
+2340: z3 -141888 {169} h:=11134590+141888=11276478, hh:=714
+2344: fntnum14 {185} current font is tmin10
+2345: set2 8482 {129}("2122) type=2 v:=12811292+315298=13126590, vv:=833
+2348: right3 167596 {145} v:=13126590+167596=13294186, vv:=842
+[、 ]
+2352: y0 141888 {161} h:=11276478-141888=11134590, hh:=705
+2353: fntnum50 {221} current font is cmti10
+2354: setchar73 ("49) v:=13294186+252676=13546862, vv:=858
+2355: setchar116 ("74) v:=13546862+217723=13764585, vv:=872
+2356: setchar97 ("61) v:=13764585+334960=14099545, vv:=893
+2357: setchar108 ("6C) v:=14099545+167480=14267025, vv:=904
+2358: setchar105 ("69) v:=14267025+200976=14468001, vv:=917
+2359: setchar99 ("63) v:=14468001+301463=14769464, vv:=936
+[Italic]
+2360: z0 -141888 {166} h:=11134590+141888=11276478, hh:=714
+2361: fntnum14 {185} current font is tmin10
+2362: set2 8482 {129}("2122) type=2 v:=14769464+315298=15084762, vv:=956
+2365: w0 167597 {147} v:=15084762+167597=15252359, vv:=966
+[、 ]
+2366: y0 141888 {161} h:=11276478-141888=11134590, hh:=705
+2367: fntnum51 {222} current font is cmcsc10
+2368: setchar83 ("53) v:=15252359+400493=15652852, vv:=991
+2369: setchar109 ("6D) v:=15652852+489333=16142185, vv:=1022
+2370: setchar97 ("61) v:=16142185+401953=16544138, vv:=1047
+2371: setchar108 ("6C) v:=16544138+336416=16880554, vv:=1068
+2372: setchar108 ("6C) v:=16880554+336416=17216970, vv:=1089
+[Small]
+2373: pop {142}
+level 4:(h=11276478,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=714,vv=611)
+2374: y0 983040 {161} h:=11276478-983040=10293438, hh:=652
+2375: push {141}
+level 4:(h=10293438,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=652,vv=611)
+2376: y3 141888 {164} h:=10293438-141888=10151550, hh:=643
+2380: setchar67 ("43) v:=9649794+515181=10164975, vv:=644
+2381: setchar97 ("61) v:=10164975+401953=10566928, vv:=669
+2382: setchar112 ("70) v:=10566928+365543=10932471, vv:=692
+2383: setchar115 ("73) v:=10932471+300008=11232479, vv:=711
+[Caps]
+2384: z3 -141888 {169} h:=10151550+141888=10293438, hh:=652
+2388: fntnum14 {185} current font is tmin10
+2389: set2 8482 {129}("2122) type=2 v:=11232479+315298=11547777, vv:=731
+2392: right2 28494 {144} v:=11547777+28494=11576271, vv:=733
+[、]
+2395: y0 141888 {161} h:=10293438-141888=10151550, hh:=643
+2396: fntnum52 {223} current font is cmtt10
+2397: setchar84 ("54) v:=11576271+344061=11920332, vv:=755
+2398: setchar121 ("79) v:=11920332+344061=12264393, vv:=777
+2399: setchar112 ("70) v:=12264393+344061=12608454, vv:=799
+2400: setchar101 ("65) v:=12608454+344061=12952515, vv:=821
+2401: setchar119 ("77) v:=12952515+344061=13296576, vv:=843
+2402: setchar114 ("72) v:=13296576+344061=13640637, vv:=865
+2403: setchar105 ("69) v:=13640637+344061=13984698, vv:=887
+2404: setchar116 ("74) v:=13984698+344061=14328759, vv:=909
+2405: setchar101 ("65) v:=14328759+344061=14672820, vv:=931
+2406: setchar114 ("72) v:=14672820+344061=15016881, vv:=953
+[Typewriter]
+2407: z0 -141888 {166} h:=10151550+141888=10293438, hh:=652
+2408: fntnum14 {185} current font is tmin10
+2409: set2 8482 {129}("2122) type=2 v:=15016881+315298=15332179, vv:=973
+2412: right2 28495 {144} v:=15332179+28495=15360674, vv:=975
+[、]
+2415: y0 141888 {161} h:=10293438-141888=10151550, hh:=643
+2416: fntnum49 {220} current font is cmbx10
+2417: setchar66 ("42) v:=15360674+536118=15896792, vv:=1009
+2418: setchar111 ("6F) v:=15896792+376830=16273622, vv:=1033
+2419: setchar108 ("6C) v:=16273622+209350=16482972, vv:=1046
+2420: setchar100 ("64) v:=16482972+418700=16901672, vv:=1073
+[Bold]
+2421: z0 -141888 {166} h:=10151550+141888=10293438, hh:=652
+2422: fntnum14 {185} current font is tmin10
+2423: set2 8482 {129}("2122) type=2 v:=16901672+315298=17216970, vv:=1093
+[、]
+2426: pop {142}
+level 4:(h=10293438,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=652,vv=611)
+2427: y0 983040 {161} h:=10293438-983040=9310398, hh:=590
+2428: push {141}
+level 4:(h=9310398,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=590,vv=611)
+2429: y3 141888 {164} h:=9310398-141888=9168510, hh:=581
+2433: fntnum53 {224} current font is cmsl10
+2434: setchar83 ("53) v:=9649794+364090=10013884, vv:=634
+2435: setchar108 ("6C) v:=10013884+182045=10195929, vv:=646
+2436: setchar97 ("61) v:=10195929+327681=10523610, vv:=667
+2437: setchar110 ("6E) v:=10523610+364090=10887700, vv:=690
+2438: right2 -18205 {144} v:=10887700-18205=10869495, vv:=689
+2441: setchar116 ("74) v:=10869495+254863=11124358, vv:=705
+2442: setchar101 ("65) v:=11124358+291271=11415629, vv:=723
+2443: setchar100 ("64) v:=11415629+364090=11779719, vv:=746
+[Slanted]
+2444: z3 -141888 {169} h:=9168510+141888=9310398, hh:=590
+2448: fntnum14 {185} current font is tmin10
+2449: set2 8482 {129}("2122) type=2 v:=11779719+315298=12095017, vv:=766
+2452: right3 326995 {145} v:=12095017+326995=12422012, vv:=787
+[、 ]
+2456: y0 141888 {161} h:=9310398-141888=9168510, hh:=581
+2457: fntnum54 {225} current font is cmss10
+2458: setchar83 ("53) v:=12422012+364090=12786102, vv:=810
+2459: setchar97 ("61) v:=12786102+314938=13101040, vv:=830
+2460: setchar110 ("6E) v:=13101040+338603=13439643, vv:=851
+2461: setchar115 ("73) v:=13439643+251221=13690864, vv:=867
+2462: right3 229090 {145} v:=13690864+229090=13919954, vv:=882
+2466: setchar83 ("53) v:=13919954+364090=14284044, vv:=905
+2467: setchar101 ("65) v:=14284044+291271=14575315, vv:=923
+2468: setchar114 ("72) v:=14575315+223916=14799231, vv:=937
+2469: setchar105 ("69) v:=14799231+156558=14955789, vv:=947
+2470: setchar102 ("66) v:=14955789+200250=15156039, vv:=960
+2471: right3 164031 {145} v:=15156039+164031=15320070, vv:=970
+[Sans Serif ]
+2475: z0 -141888 {166} h:=9168510+141888=9310398, hh:=590
+2476: fntnum14 {185} current font is tmin10
+2477: set2 9290 {129}("244A) type=0 v:=15320070+630598=15950668, vv:=1010
+2480: w2 2553 {149} v:=15950668+2553=15953221, vv:=1010
+2483: set2 9289 {129}("2449) type=0 v:=15953221+630598=16583819, vv:=1050
+2486: w0 2553 {147} v:=16583819+2553=16586372, vv:=1050
+2487: set2 16959 {129}("423F) type=0 v:=16586372+630598=17216970, vv:=1090
+[など多]
+2490: pop {142}
+level 4:(h=9310398,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=590,vv=611)
+2491: y0 983040 {161} h:=9310398-983040=8327358, hh:=527
+2492: push {141}
+level 4:(h=8327358,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=527,vv=611)
+2493: set2 19789 {129}("4D4D) type=0 v:=9649794+630598=10280392, vv:=651
+2496: w3 50119 {150} v:=10280392+50119=10330511, vv:=654
+2500: set2 9287 {129}("2447) type=0 v:=10330511+630598=10961109, vv:=694
+2503: w0 50119 {147} v:=10961109+50119=11011228, vv:=697
+2504: set2 9273 {129}("2439) type=0 v:=11011228+630598=11641826, vv:=737
+2507: set2 8483 {129}("2123) type=2 v:=11641826+315298=11957124, vv:=757
+2510: right3 544948 {145} v:=11957124+544948=12502072, vv:=792
+2514: set2 9506 {129}("2522) type=0 v:=12502072+630598=13132670, vv:=832
+2517: w0 50119 {147} v:=13132670+50119=13182789, vv:=835
+2518: set2 9529 {129}("2539) type=0 v:=13182789+630598=13813387, vv:=875
+2521: w0 50119 {147} v:=13813387+50119=13863506, vv:=878
+2522: set2 9517 {129}("252D) type=0 v:=13863506+630598=14494104, vv:=918
+2525: w0 50119 {147} v:=14494104+50119=14544223, vv:=921
+2526: set2 8508 {129}("213C) type=0 v:=14544223+630598=15174821, vv:=961
+2529: w0 50119 {147} v:=15174821+50119=15224940, vv:=964
+2530: set2 18044 {129}("467C) type=0 v:=15224940+630598=15855538, vv:=1004
+2533: w0 50119 {147} v:=15855538+50119=15905657, vv:=1007
+2534: set2 19292 {129}("4B5C) type=0 v:=15905657+630598=16536255, vv:=1047
+2537: w0 50119 {147} v:=16536255+50119=16586374, vv:=1050
+2538: set2 14444 {129}("386C) type=0 v:=16586374+630598=17216972, vv:=1090
+[様です。 アスキー日本語]
+2541: pop {142}
+level 4:(h=8327358,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=527,vv=611)
+2542: y0 983040 {161} h:=8327358-983040=7344318, hh:=465
+2543: push {141}
+level 4:(h=7344318,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=465,vv=611)
+2544: down3 141888 {159} h:=7344318-141888=7202430, hh:=456
+2548: fntnum7 {178} current font is cmr10
+2549: setchar76 ("4C) v:=9649794+409601=10059395, vv:=637
+[L]
+2550: push {141}
+level 5:(h=7202430,v=10059395,w=0,x=0,y=983040,z=0,d=1,hh=456,vv=637)
+2551: down3 -291088 {159} h:=7202430+291088=7493518, hh:=474
+2555: push {141}
+level 6:(h=7493518,v=10059395,w=0,x=0,y=983040,z=0,d=1,hh=474,vv=637)
+2556: right3 -235930 {145} v:=10059395-235930=9823465, vv:=622
+2560: down3 156741 {159} h:=7493518-156741=7336777, hh:=464
+2564: fntnum6 {177} current font is cmr7
+2565: setchar65 ("41) v:=9823465+386847=10210312, vv:=647
+[A]
+2566: pop {142}
+level 6:(h=7493518,v=10059395,w=0,x=0,y=983040,z=0,d=1,hh=474,vv=637)
+2567: pop {142}
+level 5:(h=7202430,v=10059395,w=0,x=0,y=983040,z=0,d=1,hh=456,vv=637)
+2568: right3 52617 {145} v:=10059395+52617=10112012, vv:=640
+2572: fntnum7 {178} current font is cmr10
+2573: setchar84 ("54) v:=10112012+473316=10585328, vv:=670
+[T]
+2574: push {141}
+level 5:(h=7202430,v=10585328,w=0,x=0,y=983040,z=0,d=1,hh=456,vv=670)
+2575: right3 -109250 {145} v:=10585328-109250=10476078, vv:=663
+2579: down3 141084 {159} h:=7202430-141084=7061346, hh:=447
+2583: setchar69 ("45) v:=10476078+446010=10922088, vv:=691
+[E]
+2584: pop {142}
+level 5:(h=7202430,v=10585328,w=0,x=0,y=983040,z=0,d=1,hh=456,vv=670)
+2585: right3 254840 {145} v:=10585328+254840=10840168, vv:=687
+2589: setchar88 ("58) v:=10840168+491521=11331689, vv:=718
+2590: right3 173017 {145} v:=11331689+173017=11504706, vv:=729
+[ X ]
+2594: down3 -141888 {159} h:=7202430+141888=7344318, hh:=465
+2598: fntnum14 {185} current font is tmin10
+2599: set2 9295 {129}("244F) type=0 v:=11504706+630598=12135304, vv:=769
+2602: x2 6147 {154} v:=12135304+6147=12141451, vv:=769
+2605: set2 9279 {129}("243F) type=0 v:=12141451+630598=12772049, vv:=809
+2608: w3 70380 {150} v:=12772049+70380=12842429, vv:=813
+2612: set2 9283 {129}("2443) type=3 v:=12842429+489838=13332267, vv:=844
+2615: w0 70380 {147} v:=13332267+70380=13402647, vv:=848
+2616: set2 9279 {129}("243F) type=0 v:=13402647+630598=14033245, vv:=888
+2619: x0 6147 {152} v:=14033245+6147=14039392, vv:=888
+2620: set2 12396 {129}("306C) type=0 v:=14039392+630598=14669990, vv:=928
+2623: x0 6147 {152} v:=14669990+6147=14676137, vv:=928
+2624: set2 19303 {129}("4B67) type=0 v:=14676137+630598=15306735, vv:=968
+2627: x0 6147 {152} v:=15306735+6147=15312882, vv:=968
+2628: set2 9294 {129}("244E) type=0 v:=15312882+630598=15943480, vv:=1008
+2631: x0 6147 {152} v:=15943480+6147=15949627, vv:=1008
+2632: set2 15466 {129}("3C6A) type=0 v:=15949627+630598=16580225, vv:=1048
+2635: x0 6147 {152} v:=16580225+6147=16586372, vv:=1049
+2636: set2 15206 {129}("3B66) type=0 v:=16586372+630598=17216970, vv:=1089
+[はたった一枚の手紙]
+2639: pop {142}
+level 4:(h=7344318,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=465,vv=611)
+2640: y0 983040 {161} h:=7344318-983040=6361278, hh:=403
+2641: push {141}
+level 4:(h=6361278,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=403,vv=611)
+2642: set2 9259 {129}("242B) type=0 v:=9649794+630598=10280392, vv:=651
+2645: set2 9321 {129}("2469) type=0 v:=10280392+630598=10910990, vv:=691
+2648: set2 8482 {129}("2122) type=2 v:=10910990+315298=11226288, vv:=711
+2651: right3 315299 {145} v:=11226288+315299=11541587, vv:=731
+2655: set2 16244 {129}("3F74) type=0 v:=11541587+630598=12172185, vv:=771
+2658: set2 18740 {129}("4934) type=0 v:=12172185+630598=12802783, vv:=811
+2661: set2 9562 {129}("255A) type=0 v:=12802783+630598=13433381, vv:=851
+2664: set2 8508 {129}("213C) type=0 v:=13433381+630598=14063979, vv:=891
+2667: set2 9528 {129}("2538) type=0 v:=14063979+630598=14694577, vv:=931
+2670: set2 9291 {129}("244B) type=0 v:=14694577+630598=15325175, vv:=971
+2673: set2 9258 {129}("242A) type=0 v:=15325175+630598=15955773, vv:=1011
+2676: set2 9320 {129}("2468) type=0 v:=15955773+630598=16586371, vv:=1051
+2679: set2 9302 {129}("2456) type=0 v:=16586371+630598=17216969, vv:=1091
+[から、 数百ページにおよぶ]
+2682: pop {142}
+level 4:(h=6361278,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=403,vv=611)
+2683: y0 983040 {161} h:=6361278-983040=5378238, hh:=341
+2684: push {141}
+level 4:(h=5378238,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=341,vv=611)
+2685: set2 20288 {129}("4F40) type=0 v:=9649794+630598=10280392, vv:=651
+2688: set2 19000 {129}("4A38) type=0 v:=10280392+630598=10910990, vv:=691
+2691: set2 9316 {129}("2464) type=0 v:=10910990+630598=11541588, vv:=731
+2694: set2 13627 {129}("353B) type=0 v:=11541588+630598=12172186, vv:=771
+2697: set2 15697 {129}("3D51) type=0 v:=12172186+630598=12802784, vv:=811
+2700: set2 19000 {129}("4A38) type=0 v:=12802784+630598=13433382, vv:=851
+2703: set2 15729 {129}("3D71) type=0 v:=13433382+630598=14063980, vv:=891
+2706: set2 9310 {129}("245E) type=0 v:=14063980+630598=14694578, vv:=931
+2709: set2 9287 {129}("2447) type=0 v:=14694578+630598=15325176, vv:=971
+2712: set2 8482 {129}("2122) type=2 v:=15325176+315298=15640474, vv:=991
+2715: right3 315299 {145} v:=15640474+315299=15955773, vv:=1011
+2719: set2 9277 {129}("243D) type=0 v:=15955773+630598=16586371, vv:=1051
+2722: set2 9324 {129}("246C) type=0 v:=16586371+630598=17216969, vv:=1091
+[論文や技術文書まで、 それ]
+2725: pop {142}
+level 4:(h=5378238,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=341,vv=611)
+2726: y0 983040 {161} h:=5378238-983040=4395198, hh:=278
+2727: push {141}
+level 4:(h=4395198,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=278,vv=611)
+2728: set2 9321 {129}("2469) type=0 v:=9649794+630598=10280392, vv:=651
+2731: set2 9273 {129}("2439) type=0 v:=10280392+630598=10910990, vv:=691
+2734: set2 9305 {129}("2459) type=0 v:=10910990+630598=11541588, vv:=731
+2737: set2 9286 {129}("2446) type=0 v:=11541588+630598=12172186, vv:=771
+2740: set2 9330 {129}("2472) type=0 v:=12172186+630598=12802784, vv:=811
+2743: set2 13360 {129}("3430) type=0 v:=12802784+630598=13433382, vv:=851
+2746: set2 16692 {129}("4134) type=0 v:=13433382+630598=14063980, vv:=891
+2749: set2 9291 {129}("244B) type=0 v:=14063980+630598=14694578, vv:=931
+2752: set2 9515 {129}("252B) type=0 v:=14694578+630598=15325176, vv:=971
+2755: set2 9552 {129}("2550) type=0 v:=15325176+630598=15955774, vv:=1011
+2758: set2 8508 {129}("213C) type=0 v:=15955774+630598=16586372, vv:=1051
+2761: set2 9252 {129}("2424) type=0 v:=16586372+630598=17216970, vv:=1091
+[らすべてを完全にカバーい]
+2764: pop {142}
+level 4:(h=4395198,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=278,vv=611)
+2765: y0 983040 {161} h:=4395198-983040=3412158, hh:=216
+2766: push {141}
+level 4:(h=3412158,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=216,vv=611)
+2767: set2 9279 {129}("243F) type=0 v:=9649794+630598=10280392, vv:=651
+2770: set2 9271 {129}("2437) type=0 v:=10280392+630598=10910990, vv:=691
+2773: set2 9310 {129}("245E) type=0 v:=10910990+630598=11541588, vv:=731
+2776: set2 9273 {129}("2439) type=0 v:=11541588+630598=12172186, vv:=771
+2779: set2 8483 {129}("2123) type=2 v:=12172186+315298=12487484, vv:=791
+[たします。]
+2782: pop {142}
+level 4:(h=3412158,v=9649794,w=0,x=0,y=983040,z=0,d=1,hh=216,vv=611)
+2783: pop {142}
+level 3:(h=0,v=13597222,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=861)
+2784: pop {142}
+level 2:(h=0,v=13597222,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=861)
+2785: down3 5087754 {159} v:=13597222+5087754=18684976, vv:=1184
+2789: putrule {137} height 26214, width 26485116 (2x1678 pixels)
+2798: down4 10911045 {160} v:=18684976+10911045=29596021, vv:=1875
+2803: push {141}
+level 2:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2804: push {141}
+level 3:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2805: push {141}
+level 4:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2806: push {141}
+level 5:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2807: push {141}
+level 6:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2808: push {141}
+level 7:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2809: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2810: right3 4732172 {145} h:=0+4732172=4732172, hh:=300
+[ ]
+2814: down3 -2703772 {159} v:=29596021-2703772=26892249, vv:=1703
+2818: setrule {132} height 186466, width 13985025 (12x886 pixels)
+ h:=4732172+13985025=18717197, hh:=1186
+2827: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2828: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2829: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2830: down3 -2987895 {159} v:=29596021-2987895=26608126, vv:=1685
+2834: push {141}
+level 10:(h=0,v=26608126,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1685)
+2835: right4 11417350 {146} h:=0+11417350=11417350, hh:=723
+[ ]
+2840: fntdef1 58 {243}: cmti8
+2861: fntnum58 {229} current font is cmti8
+2862: setchar110 ("6E) h:=11417350+316394=11733744, hh:=743
+2863: setchar101 ("65) h:=11733744+258868=11992612, hh:=759
+2864: setchar116 ("74) h:=11992612+186961=12179573, hh:=771
+2865: setchar119 ("77) h:=12179573+373920=12553493, hh:=795
+2866: setchar111 ("6F) h:=12553493+287631=12841124, hh:=813
+2867: setchar114 ("72) h:=12841124+237296=13078420, hh:=828
+2868: setchar107 ("6B) h:=13078420+258868=13337288, hh:=844
+[network]
+2869: pop {142}
+level 10:(h=0,v=26608126,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1685)
+2870: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2871: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2872: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2873: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2874: right3 6951130 {145} h:=0+6951130=6951130, hh:=440
+[ ]
+2878: down3 -2797005 {159} v:=29596021-2797005=26799016, vv:=1697
+2882: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=6951130+37293=6988423, hh:=443
+2891: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2892: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2893: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2894: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2895: right4 10866937 {146} h:=0+10866937=10866937, hh:=688
+[ ]
+2900: down3 -2797005 {159} v:=29596021-2797005=26799016, vv:=1697
+2904: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=10866937+37293=10904230, hh:=691
+2913: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2914: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2915: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2916: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2917: right4 14036876 {146} h:=0+14036876=14036876, hh:=889
+[ ]
+2922: down3 -2797005 {159} v:=29596021-2797005=26799016, vv:=1697
+2926: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=14036876+37293=14074169, hh:=892
+2935: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2936: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2937: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2938: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2939: right4 17393282 {146} h:=0+17393282=17393282, hh:=1102
+[ ]
+2944: down3 -2797005 {159} v:=29596021-2797005=26799016, vv:=1697
+2948: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=17393282+37293=17430575, hh:=1105
+2957: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2958: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2959: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2960: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2961: right4 12358673 {146} h:=0+12358673=12358673, hh:=783
+[ ]
+2966: down3 -1491736 {159} v:=29596021-1491736=28104285, vv:=1780
+2970: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=12358673+37293=12395966, hh:=786
+2979: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2980: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2981: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2982: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2983: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+2984: right3 4881346 {145} h:=0+4881346=4881346, hh:=309
+[ ]
+2988: down3 -5594010 {159} v:=29596021-5594010=24002011, vv:=1520
+2992: putrule {137} height 37293, width 4176860 (3x265 pixels)
+3001: down3 1491736 {159} v:=24002011+1491736=25493747, vv:=1615
+3005: push {141}
+level 11:(h=4881346,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=309,vv=1615)
+3006: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=4881346+37293=4918639, hh:=312
+3015: push {141}
+level 12:(h=4918639,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1615)
+3016: down3 -614796 {159} v:=25493747-614796=24878951, vv:=1576
+3020: push {141}
+level 13:(h=4918639,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1576)
+3021: right3 840251 {145} h:=4918639+840251=5758890, hh:=365
+[ ]
+3025: fntdef1 57 {243}: cmr8
+3045: fntnum57 {228} current font is cmr8
+3046: setchar88 ("58) h:=5758890+417252=6176142, hh:=391
+3047: right3 185688 {145} h:=6176142+185688=6361830, hh:=403
+3051: setchar76 ("4C) h:=6361830+347892=6709722, hh:=425
+3052: setchar105 ("69) h:=6709722+154740=6864462, hh:=435
+3053: setchar98 ("62) h:=6864462+309480=7173942, hh:=455
+3054: setchar114 ("72) h:=7173942+217091=7391033, hh:=469
+3055: setchar97 ("61) h:=7391033+278532=7669565, hh:=487
+3056: setchar114 ("72) h:=7669565+217091=7886656, hh:=501
+3057: setchar121 ("79) h:=7886656+294006=8180662, hh:=520
+[X Library]
+3058: pop {142}
+level 13:(h=4918639,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1576)
+3059: pop {142}
+level 12:(h=4918639,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1615)
+3060: right3 4102274 {145} h:=4918639+4102274=9020913, hh:=571
+[ ]
+3064: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=9020913+37293=9058206, hh:=574
+3073: pop {142}
+level 11:(h=4881346,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=309,vv=1615)
+3074: down3 37293 {159} v:=25493747+37293=25531040, vv:=1617
+3078: putrule {137} height 37293, width 4176860 (3x265 pixels)
+3087: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3088: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3089: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3090: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3091: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3092: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3093: right3 4880567 {145} h:=0+4880567=4880567, hh:=309
+[ ]
+3097: down4 -8577482 {160} v:=29596021-8577482=21018539, vv:=1331
+3102: putrule {137} height 37293, width 4176860 (3x265 pixels)
+3111: down3 2983472 {159} v:=21018539+2983472=24002011, vv:=1520
+3115: push {141}
+level 11:(h=4880567,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=309,vv=1520)
+3116: setrule {132} height 2983472, width 37293 (189x3 pixels)
+ h:=4880567+37293=4917860, hh:=312
+3125: push {141}
+level 12:(h=4917860,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1520)
+3126: down3 -751907 {159} v:=24002011-751907=23250104, vv:=1473
+3130: push {141}
+level 13:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3131: push {141}
+level 14:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3132: down3 -1217513 {159} v:=23250104-1217513=22032591, vv:=1396
+3136: push {141}
+level 15:(h=4917860,v=22032591,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1396)
+3137: push {141}
+level 16:(h=4917860,v=22032591,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1396)
+3138: right3 1074182 {145} h:=4917860+1074182=5992042, hh:=380
+3142: setchar71 ("47) h:=5992042+437004=6429046, hh:=408
+3143: setchar114 ("72) h:=6429046+217091=6646137, hh:=422
+3144: setchar97 ("61) h:=6646137+278532=6924669, hh:=440
+3145: setchar112 ("70) h:=6924669+309480=7234149, hh:=460
+3146: setchar104 ("68) h:=7234149+309480=7543629, hh:=480
+3147: setchar105 ("69) h:=7543629+154740=7698369, hh:=490
+3148: setchar99 ("63) h:=7698369+247584=7945953, hh:=505
+[ Graphic]
+3149: pop {142}
+level 16:(h=4917860,v=22032591,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1396)
+3150: pop {142}
+level 15:(h=4917860,v=22032591,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1396)
+3151: down3 656816 {159} v:=22032591+656816=22689407, vv:=1437
+3155: push {141}
+level 15:(h=4917860,v=22689407,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1437)
+3156: push {141}
+level 16:(h=4917860,v=22689407,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1437)
+3157: right3 979699 {145} h:=4917860+979699=5897559, hh:=374
+3161: setchar70 ("46) h:=5897559+363366=6260925, hh:=397
+3162: right3 -46422 {145} h:=6260925-46422=6214503, hh:=394
+3166: setchar117 ("75) h:=6214503+309480=6523983, hh:=414
+3167: setchar110 ("6E) h:=6523983+309480=6833463, hh:=434
+3168: setchar99 ("63) h:=6833463+247584=7081047, hh:=450
+3169: setchar116 ("74) h:=7081047+216636=7297683, hh:=464
+3170: setchar105 ("69) h:=7297683+154740=7452423, hh:=474
+3171: setchar111 ("6F) h:=7452423+278532=7730955, hh:=492
+3172: setchar110 ("6E) h:=7730955+309480=8040435, hh:=511
+[ Function]
+3173: pop {142}
+level 16:(h=4917860,v=22689407,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1437)
+3174: pop {142}
+level 15:(h=4917860,v=22689407,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1437)
+3175: down3 560697 {159} v:=22689407+560697=23250104, vv:=1473
+3179: push {141}
+level 15:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3180: push {141}
+level 16:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3181: right3 1141721 {145} h:=4917860+1141721=6059581, hh:=384
+3185: setchar76 ("4C) h:=6059581+347892=6407473, hh:=406
+3186: setchar105 ("69) h:=6407473+154740=6562213, hh:=416
+3187: setchar98 ("62) h:=6562213+309480=6871693, hh:=436
+3188: setchar114 ("72) h:=6871693+217091=7088784, hh:=450
+3189: setchar97 ("61) h:=7088784+278532=7367316, hh:=468
+3190: setchar114 ("72) h:=7367316+217091=7584407, hh:=482
+3191: setchar121 ("79) h:=7584407+294006=7878413, hh:=501
+[ Library]
+3192: pop {142}
+level 16:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3193: pop {142}
+level 15:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3194: pop {142}
+level 14:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3195: pop {142}
+level 13:(h=4917860,v=23250104,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1473)
+3196: pop {142}
+level 12:(h=4917860,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1520)
+3197: right3 4102274 {145} h:=4917860+4102274=9020134, hh:=571
+[ ]
+3201: setrule {132} height 2983472, width 37293 (189x3 pixels)
+ h:=9020134+37293=9057427, hh:=574
+3210: pop {142}
+level 11:(h=4880567,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=309,vv=1520)
+3211: down3 37293 {159} v:=24002011+37293=24039304, vv:=1522
+3215: putrule {137} height 37293, width 4176860 (3x265 pixels)
+3224: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3225: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3226: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3227: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3228: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3229: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3230: right3 4881346 {145} h:=0+4881346=4881346, hh:=309
+[ ]
+3234: down4 -9696284 {160} v:=29596021-9696284=19899737, vv:=1260
+3239: putrule {137} height 37293, width 4176860 (3x265 pixels)
+3248: down3 1118802 {159} v:=19899737+1118802=21018539, vv:=1331
+3252: push {141}
+level 11:(h=4881346,v=21018539,w=0,x=0,y=983040,z=0,d=0,hh=309,vv=1331)
+3253: setrule {132} height 1118802, width 37293 (71x3 pixels)
+ h:=4881346+37293=4918639, hh:=312
+3262: push {141}
+level 12:(h=4918639,v=21018539,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1331)
+3263: down3 -428329 {159} v:=21018539-428329=20590210, vv:=1304
+3267: push {141}
+level 13:(h=4918639,v=20590210,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1304)
+3268: right3 635539 {145} h:=4918639+635539=5554178, hh:=352
+3272: setchar65 ("41) h:=5554178+417252=5971430, hh:=378
+3273: setchar112 ("70) h:=5971430+309480=6280910, hh:=398
+3274: setchar112 ("70) h:=6280910+309480=6590390, hh:=418
+3275: setchar108 ("6C) h:=6590390+154740=6745130, hh:=428
+3276: setchar105 ("69) h:=6745130+154740=6899870, hh:=438
+3277: setchar99 ("63) h:=6899870+247584=7147454, hh:=454
+3278: setchar97 ("61) h:=7147454+278532=7425986, hh:=472
+3279: setchar116 ("74) h:=7425986+216636=7642622, hh:=486
+3280: setchar105 ("69) h:=7642622+154740=7797362, hh:=496
+3281: setchar111 ("6F) h:=7797362+278532=8075894, hh:=514
+3282: setchar110 ("6E) h:=8075894+309480=8385374, hh:=533
+[ Application]
+3283: pop {142}
+level 13:(h=4918639,v=20590210,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1304)
+3284: pop {142}
+level 12:(h=4918639,v=21018539,w=0,x=0,y=983040,z=0,d=0,hh=312,vv=1331)
+3285: right3 4102274 {145} h:=4918639+4102274=9020913, hh:=571
+[ ]
+3289: setrule {132} height 1118802, width 37293 (71x3 pixels)
+ h:=9020913+37293=9058206, hh:=574
+3298: pop {142}
+level 11:(h=4881346,v=21018539,w=0,x=0,y=983040,z=0,d=0,hh=309,vv=1331)
+3299: down3 37293 {159} v:=21018539+37293=21055832, vv:=1333
+3303: putrule {137} height 37293, width 4176860 (3x265 pixels)
+3312: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3313: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3314: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3315: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3316: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3317: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3318: right4 9355775 {146} h:=0+9355775=9355775, hh:=593
+[ ]
+3323: down3 -5594010 {159} v:=29596021-5594010=24002011, vv:=1520
+3327: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3336: down3 1491736 {159} v:=24002011+1491736=25493747, vv:=1615
+3340: push {141}
+level 11:(h=9355775,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=593,vv=1615)
+3341: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=9355775+37293=9393068, hh:=596
+3350: push {141}
+level 12:(h=9393068,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1615)
+3351: down3 -614796 {159} v:=25493747-614796=24878951, vv:=1576
+3355: push {141}
+level 13:(h=9393068,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1576)
+3356: right3 187617 {145} h:=9393068+187617=9580685, hh:=607
+3360: setchar88 ("58) h:=9580685+417252=9997937, hh:=633
+3361: right3 185688 {145} h:=9997937+185688=10183625, hh:=645
+3365: setchar76 ("4C) h:=10183625+347892=10531517, hh:=667
+3366: setchar105 ("69) h:=10531517+154740=10686257, hh:=677
+3367: setchar98 ("62) h:=10686257+309480=10995737, hh:=697
+3368: setchar114 ("72) h:=10995737+217091=11212828, hh:=711
+3369: setchar97 ("61) h:=11212828+278532=11491360, hh:=729
+3370: setchar114 ("72) h:=11491360+217091=11708451, hh:=743
+3371: setchar121 ("79) h:=11708451+294006=12002457, hh:=762
+[ X Library]
+3372: pop {142}
+level 13:(h=9393068,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1576)
+3373: pop {142}
+level 12:(h=9393068,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1615)
+3374: right3 2797005 {145} h:=9393068+2797005=12190073, hh:=772
+[ ]
+3378: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=12190073+37293=12227366, hh:=775
+3387: pop {142}
+level 11:(h=9355775,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=593,vv=1615)
+3388: down3 37293 {159} v:=25493747+37293=25531040, vv:=1617
+3392: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3401: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3402: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3403: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3404: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3405: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3406: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3407: right4 9356554 {146} h:=0+9356554=9356554, hh:=593
+[ ]
+3412: down3 -7085746 {159} v:=29596021-7085746=22510275, vv:=1426
+3416: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3425: down3 1491736 {159} v:=22510275+1491736=24002011, vv:=1520
+3429: push {141}
+level 11:(h=9356554,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=593,vv=1520)
+3430: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=9356554+37293=9393847, hh:=596
+3439: push {141}
+level 12:(h=9393847,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1520)
+3440: down3 -566736 {159} v:=24002011-566736=23435275, vv:=1484
+3444: push {141}
+level 13:(h=9393847,v=23435275,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1484)
+3445: right3 339353 {145} h:=9393847+339353=9733200, hh:=617
+3449: setchar88 ("58) h:=9733200+417252=10150452, hh:=643
+3450: setchar84 ("54) h:=10150452+402324=10552776, hh:=668
+3451: setchar69 ("45) h:=10552776+378840=10931616, hh:=692
+3452: setchar82 ("52) h:=10931616+409788=11341404, hh:=718
+3453: setchar77 ("4D) h:=11341404+510096=11851500, hh:=750
+[ XTERM]
+3454: pop {142}
+level 13:(h=9393847,v=23435275,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1484)
+3455: pop {142}
+level 12:(h=9393847,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1520)
+3456: right3 2797005 {145} h:=9393847+2797005=12190852, hh:=772
+[ ]
+3460: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=12190852+37293=12228145, hh:=775
+3469: pop {142}
+level 11:(h=9356554,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=593,vv=1520)
+3470: down3 37293 {159} v:=24002011+37293=24039304, vv:=1522
+3474: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3483: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3484: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3485: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3486: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3487: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3488: right4 10866937 {146} h:=0+10866937=10866937, hh:=688
+[ ]
+3493: down3 -7085746 {159} v:=29596021-7085746=22510275, vv:=1426
+3497: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=10866937+37293=10904230, hh:=691
+3506: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3507: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3508: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3509: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3510: down3 -7203559 {159} v:=29596021-7203559=22392462, vv:=1418
+3514: push {141}
+level 10:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3515: push {141}
+level 11:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3516: down3 -621032 {159} v:=22392462-621032=21771430, vv:=1379
+3520: push {141}
+level 12:(h=0,v=21771430,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1379)
+3521: push {141}
+level 13:(h=0,v=21771430,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1379)
+3522: right4 11363912 {146} h:=0+11363912=11363912, hh:=720
+[ ]
+3527: fntnum58 {229} current font is cmti8
+3528: setchar112 ("70) h:=11363912+287631=11651543, hh:=738
+3529: setchar115 ("73) h:=11651543+230105=11881648, hh:=753
+3530: setchar101 ("65) h:=11881648+258868=12140516, hh:=769
+3531: setchar117 ("75) h:=12140516+302013=12442529, hh:=788
+3532: setchar100 ("64) h:=12442529+287631=12730160, hh:=806
+3533: setchar111 ("6F) h:=12730160+287631=13017791, hh:=824
+[pseudo]
+3534: pop {142}
+level 13:(h=0,v=21771430,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1379)
+3535: pop {142}
+level 12:(h=0,v=21771430,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1379)
+3536: down3 621032 {159} v:=21771430+621032=22392462, vv:=1418
+3540: push {141}
+level 12:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3541: push {141}
+level 13:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3542: right4 11363912 {146} h:=0+11363912=11363912, hh:=720
+3547: setchar116 ("74) h:=11363912+186961=11550873, hh:=732
+3548: setchar116 ("74) h:=11550873+186961=11737834, hh:=744
+3549: setchar121 ("79) h:=11737834+273250=12011084, hh:=761
+[ tty]
+3550: pop {142}
+level 13:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3551: pop {142}
+level 12:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3552: pop {142}
+level 11:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3553: pop {142}
+level 10:(h=0,v=22392462,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1418)
+3554: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3555: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3556: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3557: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3558: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3559: right4 9356554 {146} h:=0+9356554=9356554, hh:=593
+[ ]
+3564: down4 -9696284 {160} v:=29596021-9696284=19899737, vv:=1260
+3569: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3578: down3 1305269 {159} v:=19899737+1305269=21205006, vv:=1343
+3582: push {141}
+level 11:(h=9356554,v=21205006,w=0,x=0,y=983040,z=0,d=0,hh=593,vv=1343)
+3583: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=9356554+37293=9393847, hh:=596
+3592: push {141}
+level 12:(h=9393847,v=21205006,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1343)
+3593: down3 -521562 {159} v:=21205006-521562=20683444, vv:=1310
+3597: push {141}
+level 13:(h=9393847,v=20683444,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1310)
+3598: right2 -17096 {144} h:=9393847-17096=9376751, hh:=595
+3601: fntnum57 {228} current font is cmr8
+3602: setchar65 ("41) h:=9376751+417252=9794003, hh:=621
+3603: setchar112 ("70) h:=9794003+309480=10103483, hh:=641
+3604: setchar112 ("70) h:=10103483+309480=10412963, hh:=661
+3605: setchar108 ("6C) h:=10412963+154740=10567703, hh:=671
+3606: setchar105 ("69) h:=10567703+154740=10722443, hh:=681
+3607: setchar99 ("63) h:=10722443+247584=10970027, hh:=697
+3608: setchar97 ("61) h:=10970027+278532=11248559, hh:=714
+3609: setchar116 ("74) h:=11248559+216636=11465195, hh:=728
+3610: setchar105 ("69) h:=11465195+154740=11619935, hh:=738
+3611: setchar111 ("6F) h:=11619935+278532=11898467, hh:=756
+3612: setchar110 ("6E) h:=11898467+309480=12207947, hh:=775
+[Application]
+3613: pop {142}
+level 13:(h=9393847,v=20683444,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1310)
+3614: pop {142}
+level 12:(h=9393847,v=21205006,w=0,x=0,y=983040,z=0,d=0,hh=596,vv=1343)
+3615: right3 2797005 {145} h:=9393847+2797005=12190852, hh:=772
+[ ]
+3619: setrule {132} height 1305269, width 37293 (83x3 pixels)
+ h:=12190852+37293=12228145, hh:=775
+3628: pop {142}
+level 11:(h=9356554,v=21205006,w=0,x=0,y=983040,z=0,d=0,hh=593,vv=1343)
+3629: down3 37293 {159} v:=21205006+37293=21242299, vv:=1345
+3633: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3642: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3643: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3644: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3645: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3646: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3647: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3648: right4 12526493 {146} h:=0+12526493=12526493, hh:=793
+[ ]
+3653: down3 -5594010 {159} v:=29596021-5594010=24002011, vv:=1520
+3657: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3666: down3 1491736 {159} v:=24002011+1491736=25493747, vv:=1615
+3670: push {141}
+level 11:(h=12526493,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=793,vv=1615)
+3671: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=12526493+37293=12563786, hh:=796
+3680: push {141}
+level 12:(h=12563786,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1615)
+3681: down3 -614796 {159} v:=25493747-614796=24878951, vv:=1576
+3685: push {141}
+level 13:(h=12563786,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1576)
+3686: right3 187617 {145} h:=12563786+187617=12751403, hh:=808
+3690: setchar88 ("58) h:=12751403+417252=13168655, hh:=834
+3691: right3 185688 {145} h:=13168655+185688=13354343, hh:=846
+3695: setchar76 ("4C) h:=13354343+347892=13702235, hh:=868
+3696: setchar105 ("69) h:=13702235+154740=13856975, hh:=878
+3697: setchar98 ("62) h:=13856975+309480=14166455, hh:=898
+3698: setchar114 ("72) h:=14166455+217091=14383546, hh:=912
+3699: setchar97 ("61) h:=14383546+278532=14662078, hh:=930
+3700: setchar114 ("72) h:=14662078+217091=14879169, hh:=944
+3701: setchar121 ("79) h:=14879169+294006=15173175, hh:=963
+[ X Library]
+3702: pop {142}
+level 13:(h=12563786,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1576)
+3703: pop {142}
+level 12:(h=12563786,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1615)
+3704: right3 2797005 {145} h:=12563786+2797005=15360791, hh:=973
+[ ]
+3708: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=15360791+37293=15398084, hh:=976
+3717: pop {142}
+level 11:(h=12526493,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=793,vv=1615)
+3718: down3 37293 {159} v:=25493747+37293=25531040, vv:=1617
+3722: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3731: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3732: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3733: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3734: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3735: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3736: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3737: right4 12526493 {146} h:=0+12526493=12526493, hh:=793
+[ ]
+3742: down3 -7085746 {159} v:=29596021-7085746=22510275, vv:=1426
+3746: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3755: down3 1491736 {159} v:=22510275+1491736=24002011, vv:=1520
+3759: push {141}
+level 11:(h=12526493,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=793,vv=1520)
+3760: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=12526493+37293=12563786, hh:=796
+3769: push {141}
+level 12:(h=12563786,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1520)
+3770: down3 -337360 {159} v:=24002011-337360=23664651, vv:=1499
+3774: push {141}
+level 13:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3775: push {141}
+level 14:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3776: down3 -554871 {159} v:=23664651-554871=23109780, vv:=1464
+3780: push {141}
+level 15:(h=12563786,v=23109780,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1464)
+3781: push {141}
+level 16:(h=12563786,v=23109780,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1464)
+3782: right3 392966 {145} h:=12563786+392966=12956752, hh:=821
+3786: setchar87 ("57) h:=12956752+571992=13528744, hh:=857
+3787: setchar105 ("69) h:=13528744+154740=13683484, hh:=867
+3788: setchar110 ("6E) h:=13683484+309480=13992964, hh:=887
+3789: setchar100 ("64) h:=13992964+309480=14302444, hh:=907
+3790: setchar111 ("6F) h:=14302444+278532=14580976, hh:=925
+3791: right2 -15474 {144} h:=14580976-15474=14565502, hh:=924
+3794: setchar119 ("77) h:=14565502+402324=14967826, hh:=949
+[ Window]
+3795: pop {142}
+level 16:(h=12563786,v=23109780,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1464)
+3796: pop {142}
+level 15:(h=12563786,v=23109780,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1464)
+3797: down3 554871 {159} v:=23109780+554871=23664651, vv:=1499
+3801: push {141}
+level 15:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3802: push {141}
+level 16:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3803: right3 338579 {145} h:=12563786+338579=12902365, hh:=817
+3807: setchar77 ("4D) h:=12902365+510096=13412461, hh:=849
+3808: setchar97 ("61) h:=13412461+278532=13690993, hh:=867
+3809: setchar110 ("6E) h:=13690993+309480=14000473, hh:=887
+3810: setchar97 ("61) h:=14000473+278532=14279005, hh:=905
+3811: setchar103 ("67) h:=14279005+278532=14557537, hh:=923
+3812: setchar101 ("65) h:=14557537+247584=14805121, hh:=939
+3813: setchar114 ("72) h:=14805121+217091=15022212, hh:=953
+[ Manager]
+3814: pop {142}
+level 16:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3815: pop {142}
+level 15:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3816: pop {142}
+level 14:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3817: pop {142}
+level 13:(h=12563786,v=23664651,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1499)
+3818: pop {142}
+level 12:(h=12563786,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=796,vv=1520)
+3819: right3 2797005 {145} h:=12563786+2797005=15360791, hh:=973
+[ ]
+3823: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=15360791+37293=15398084, hh:=976
+3832: pop {142}
+level 11:(h=12526493,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=793,vv=1520)
+3833: down3 37293 {159} v:=24002011+37293=24039304, vv:=1522
+3837: putrule {137} height 37293, width 2871591 (3x182 pixels)
+3846: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3847: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3848: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3849: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3850: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3851: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3852: right4 15696432 {146} h:=0+15696432=15696432, hh:=994
+[ ]
+3857: down3 -5594010 {159} v:=29596021-5594010=24002011, vv:=1520
+3861: putrule {137} height 37293, width 3617459 (3x230 pixels)
+3870: down3 1491736 {159} v:=24002011+1491736=25493747, vv:=1615
+3874: push {141}
+level 11:(h=15696432,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=994,vv=1615)
+3875: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=15696432+37293=15733725, hh:=997
+3884: push {141}
+level 12:(h=15733725,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1615)
+3885: down3 -614796 {159} v:=25493747-614796=24878951, vv:=1576
+3889: push {141}
+level 13:(h=15733725,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1576)
+3890: right3 560551 {145} h:=15733725+560551=16294276, hh:=1032
+3894: setchar88 ("58) h:=16294276+417252=16711528, hh:=1058
+3895: right3 185688 {145} h:=16711528+185688=16897216, hh:=1070
+3899: setchar76 ("4C) h:=16897216+347892=17245108, hh:=1092
+3900: setchar105 ("69) h:=17245108+154740=17399848, hh:=1102
+3901: setchar98 ("62) h:=17399848+309480=17709328, hh:=1122
+3902: setchar114 ("72) h:=17709328+217091=17926419, hh:=1136
+3903: setchar97 ("61) h:=17926419+278532=18204951, hh:=1154
+3904: setchar114 ("72) h:=18204951+217091=18422042, hh:=1168
+3905: setchar121 ("79) h:=18422042+294006=18716048, hh:=1187
+[ X Library]
+3906: pop {142}
+level 13:(h=15733725,v=24878951,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1576)
+3907: pop {142}
+level 12:(h=15733725,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1615)
+3908: right3 3542873 {145} h:=15733725+3542873=19276598, hh:=1221
+[ ]
+3912: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=19276598+37293=19313891, hh:=1224
+3921: pop {142}
+level 11:(h=15696432,v=25493747,w=0,x=0,y=983040,z=0,d=0,hh=994,vv=1615)
+3922: down3 37293 {159} v:=25493747+37293=25531040, vv:=1617
+3926: putrule {137} height 37293, width 3617459 (3x230 pixels)
+3935: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3936: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3937: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3938: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3939: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3940: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+3941: right4 15696432 {146} h:=0+15696432=15696432, hh:=994
+[ ]
+3946: down3 -7085746 {159} v:=29596021-7085746=22510275, vv:=1426
+3950: putrule {137} height 37293, width 3617459 (3x230 pixels)
+3959: down3 1491736 {159} v:=22510275+1491736=24002011, vv:=1520
+3963: push {141}
+level 11:(h=15696432,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=994,vv=1520)
+3964: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=15696432+37293=15733725, hh:=997
+3973: push {141}
+level 12:(h=15733725,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1520)
+3974: down3 -614796 {159} v:=24002011-614796=23387215, vv:=1481
+3978: push {141}
+level 13:(h=15733725,v=23387215,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1481)
+3979: right3 212113 {145} h:=15733725+212113=15945838, hh:=1010
+3983: setchar84 ("54) h:=15945838+402324=16348162, hh:=1035
+3984: right3 -46422 {145} h:=16348162-46422=16301740, hh:=1032
+3988: setchar101 ("65) h:=16301740+247584=16549324, hh:=1048
+3989: setchar120 ("78) h:=16549324+294006=16843330, hh:=1067
+3990: setchar116 ("74) h:=16843330+216636=17059966, hh:=1081
+3991: right3 185688 {145} h:=17059966+185688=17245654, hh:=1092
+3995: setchar76 ("4C) h:=17245654+347892=17593546, hh:=1114
+3996: setchar105 ("69) h:=17593546+154740=17748286, hh:=1124
+3997: setchar98 ("62) h:=17748286+309480=18057766, hh:=1144
+3998: setchar114 ("72) h:=18057766+217091=18274857, hh:=1158
+3999: setchar97 ("61) h:=18274857+278532=18553389, hh:=1176
+4000: setchar114 ("72) h:=18553389+217091=18770480, hh:=1190
+4001: setchar121 ("79) h:=18770480+294006=19064486, hh:=1209
+[ Text Library]
+4002: pop {142}
+level 13:(h=15733725,v=23387215,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1481)
+4003: pop {142}
+level 12:(h=15733725,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1520)
+4004: right3 3542873 {145} h:=15733725+3542873=19276598, hh:=1221
+[ ]
+4008: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=19276598+37293=19313891, hh:=1224
+4017: pop {142}
+level 11:(h=15696432,v=24002011,w=0,x=0,y=983040,z=0,d=0,hh=994,vv=1520)
+4018: down3 37293 {159} v:=24002011+37293=24039304, vv:=1522
+4022: putrule {137} height 37293, width 3617459 (3x230 pixels)
+4031: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4032: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4033: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4034: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4035: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4036: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4037: right4 15696432 {146} h:=0+15696432=15696432, hh:=994
+[ ]
+4042: down4 -8577482 {160} v:=29596021-8577482=21018539, vv:=1331
+4047: putrule {137} height 37293, width 3617459 (3x230 pixels)
+4056: down3 1491736 {159} v:=21018539+1491736=22510275, vv:=1426
+4060: push {141}
+level 11:(h=15696432,v=22510275,w=0,x=0,y=983040,z=0,d=0,hh=994,vv=1426)
+4061: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=15696432+37293=15733725, hh:=997
+4070: push {141}
+level 12:(h=15733725,v=22510275,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1426)
+4071: down3 -563823 {159} v:=22510275-563823=21946452, vv:=1390
+4075: push {141}
+level 13:(h=15733725,v=21946452,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1390)
+4076: right3 343869 {145} h:=15733725+343869=16077594, hh:=1018
+4080: setchar84 ("54) h:=16077594+402324=16479918, hh:=1043
+4081: right3 -46422 {145} h:=16479918-46422=16433496, hh:=1040
+4085: setchar101 ("65) h:=16433496+247584=16681080, hh:=1056
+4086: setchar120 ("78) h:=16681080+294006=16975086, hh:=1075
+4087: setchar116 ("74) h:=16975086+216636=17191722, hh:=1089
+4088: right3 185688 {145} h:=17191722+185688=17377410, hh:=1101
+4092: setchar69 ("45) h:=17377410+378840=17756250, hh:=1125
+4093: setchar100 ("64) h:=17756250+309480=18065730, hh:=1145
+4094: setchar105 ("69) h:=18065730+154740=18220470, hh:=1155
+4095: setchar116 ("74) h:=18220470+216636=18437106, hh:=1169
+4096: setchar111 ("6F) h:=18437106+278532=18715638, hh:=1187
+4097: setchar114 ("72) h:=18715638+217091=18932729, hh:=1201
+[ Text Editor]
+4098: pop {142}
+level 13:(h=15733725,v=21946452,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1390)
+4099: pop {142}
+level 12:(h=15733725,v=22510275,w=0,x=0,y=983040,z=0,d=0,hh=997,vv=1426)
+4100: right3 3542873 {145} h:=15733725+3542873=19276598, hh:=1221
+[ ]
+4104: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=19276598+37293=19313891, hh:=1224
+4113: pop {142}
+level 11:(h=15696432,v=22510275,w=0,x=0,y=983040,z=0,d=0,hh=994,vv=1426)
+4114: down3 37293 {159} v:=22510275+37293=22547568, vv:=1428
+4118: putrule {137} height 37293, width 3617459 (3x230 pixels)
+4127: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4128: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4129: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4130: push {141}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4131: push {141}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4132: push {141}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4133: right4 10475356 {146} h:=0+10475356=10475356, hh:=664
+[ ]
+4138: down3 -1491736 {159} v:=29596021-1491736=28104285, vv:=1780
+4142: putrule {137} height 37293, width 3803926 (3x241 pixels)
+4151: down3 1491736 {159} v:=28104285+1491736=29596021, vv:=1875
+4155: push {141}
+level 11:(h=10475356,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=664,vv=1875)
+4156: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=10475356+37293=10512649, hh:=667
+4165: push {141}
+level 12:(h=10512649,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=667,vv=1875)
+4166: down3 -566736 {159} v:=29596021-566736=29029285, vv:=1839
+4170: push {141}
+level 13:(h=10512649,v=29029285,w=0,x=0,y=983040,z=0,d=0,hh=667,vv=1839)
+4171: right3 804519 {145} h:=10512649+804519=11317168, hh:=717
+4175: setchar88 ("58) h:=11317168+417252=11734420, hh:=743
+4176: right3 185688 {145} h:=11734420+185688=11920108, hh:=755
+4180: setchar83 ("53) h:=11920108+309480=12229588, hh:=775
+4181: setchar101 ("65) h:=12229588+247584=12477172, hh:=791
+4182: setchar114 ("72) h:=12477172+217091=12694263, hh:=805
+4183: setchar118 ("76) h:=12694263+294006=12988269, hh:=824
+4184: right2 -15474 {144} h:=12988269-15474=12972795, hh:=823
+4187: setchar101 ("65) h:=12972795+247584=13220379, hh:=839
+4188: setchar114 ("72) h:=13220379+217091=13437470, hh:=853
+[ X Server]
+4189: pop {142}
+level 13:(h=10512649,v=29029285,w=0,x=0,y=983040,z=0,d=0,hh=667,vv=1839)
+4190: pop {142}
+level 12:(h=10512649,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=667,vv=1875)
+4191: right3 3729340 {145} h:=10512649+3729340=14241989, hh:=902
+[ ]
+4195: setrule {132} height 1491736, width 37293 (95x3 pixels)
+ h:=14241989+37293=14279282, hh:=905
+4204: pop {142}
+level 11:(h=10475356,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=664,vv=1875)
+4205: down3 37293 {159} v:=29596021+37293=29633314, vv:=1877
+4209: putrule {137} height 37293, width 3803926 (3x241 pixels)
+4218: pop {142}
+level 10:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4219: pop {142}
+level 9:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4220: pop {142}
+level 8:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4221: pop {142}
+level 7:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4222: pop {142}
+level 6:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4223: pop {142}
+level 5:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4224: pop {142}
+level 4:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4225: pop {142}
+level 3:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4226: pop {142}
+level 2:(h=0,v=29596021,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=1875)
+4227: down3 655360 {159} v:=29596021+655360=30251381, vv:=1916
+4231: down3 1876188 {159} v:=30251381+1876188=32127569, vv:=2035
+4235: push {141}
+level 2:(h=0,v=32127569,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2035)
+4236: right3 2775454 {145} h:=0+2775454=2775454, hh:=176
+[ ]
+4240: fntdef1 41 {243}: cmmi12
+4262: fntnum41 {212} current font is cmmi12
+4263: setchar117 ("75) h:=2775454+438267=3213721, hh:=204
+[u]
+4264: fntdef1 38 {243}: cmr12
+4285: fntnum38 {209} current font is cmr12
+4286: setchar40 ("28) h:=3213721+299460=3513181, hh:=223
+[(]
+4287: fntnum41 {212} current font is cmmi12
+4288: setchar120 ("78) h:=3513181+437586=3950767, hh:=251
+4289: setchar59 ("3B) h:=3950767+213900=4164667, hh:=265
+4290: w3 131070 {150} h:=4164667+131070=4295737, hh:=273
+4294: setchar116 ("74) h:=4295737+278070=4573807, hh:=291
+[x;t]
+4295: fntnum38 {209} current font is cmr12
+4296: setchar41 ("29) h:=4573807+299460=4873267, hh:=310
+4297: right3 218450 {145} h:=4873267+218450=5091717, hh:=323
+4301: setchar61 ("3D) h:=5091717+598920=5690637, hh:=361
+[) =]
+4302: push {141}
+level 3:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4303: push {141}
+level 4:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4304: push {141}
+level 5:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4305: down3 -532027 {159} v:=32127569-532027=31595542, vv:=2001
+4309: push {141}
+level 6:(h=5690637,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2001)
+4310: right3 366543 {145} h:=5690637+366543=6057180, hh:=384
+4314: setchar50 ("32) h:=6057180+385020=6442200, hh:=408
+[ 2]
+4315: pop {142}
+level 6:(h=5690637,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2001)
+4316: right3 297093 {145} h:=5690637+297093=5987730, hh:=379
+[ ]
+4320: down3 348525 {159} v:=31595542+348525=31944067, vv:=2023
+4324: putrule {137} height 26213, width 523919 (2x34 pixels)
+4333: down3 722955 {159} v:=31944067+722955=32667022, vv:=2069
+4337: push {141}
+level 6:(h=5987730,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=379,vv=2069)
+4338: fntnum41 {212} current font is cmmi12
+4339: setchar76 ("4C) h:=5987730+523919=6511649, hh:=412
+[L]
+4340: pop {142}
+level 6:(h=5987730,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=379,vv=2069)
+4341: pop {142}
+level 5:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4342: pop {142}
+level 4:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4343: pop {142}
+level 3:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4344: push {141}
+level 3:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4345: down3 -851971 {159} v:=32127569-851971=31275598, vv:=1981
+4349: push {141}
+level 4:(h=5690637,v=31275598,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=1981)
+4350: right3 1225510 {145} h:=5690637+1225510=6916147, hh:=438
+[ ]
+4354: fntdef1 62 {243}: cmsy8
+4375: fntnum62 {233} current font is cmsy8
+4376: setchar49 ("31) h:=6916147+557064=7473211, hh:=473
+[1]
+4377: pop {142}
+level 4:(h=5690637,v=31275598,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=1981)
+4378: down3 851971 {159} v:=31275598+851971=32127569, vv:=2035
+4382: push {141}
+level 4:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4383: push {141}
+level 5:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4384: right3 1030725 {145} h:=5690637+1030725=6721362, hh:=426
+[ ]
+4388: down3 -655364 {159} v:=32127569-655364=31472205, vv:=1993
+4392: fntdef1 0 {243}: cmex10
+4414: fntnum0 {171} current font is cmex10
+4415: setchar88 ("58) h:=6721362+946633=7667995, hh:=486
+[X]
+4416: pop {142}
+level 5:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4417: pop {142}
+level 4:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4418: down3 774785 {159} v:=32127569+774785=32902354, vv:=2084
+4422: push {141}
+level 4:(h=5690637,v=32902354,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2084)
+4423: right3 1364776 {145} h:=5690637+1364776=7055413, hh:=447
+[ ]
+4427: fntnum57 {228} current font is cmr8
+4428: setchar49 ("31) h:=7055413+278532=7333945, hh:=465
+[1]
+4429: pop {142}
+level 4:(h=5690637,v=32902354,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2084)
+4430: pop {142}
+level 3:(h=5690637,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=361,vv=2035)
+4431: right3 2108428 {145} h:=5690637+2108428=7799065, hh:=494
+[ ]
+4435: fntnum41 {212} current font is cmmi12
+4436: setchar101 ("65) h:=7799065+356895=8155960, hh:=517
+4437: setchar120 ("78) h:=8155960+437586=8593546, hh:=545
+4438: setchar112 ("70) h:=8593546+386477=8980023, hh:=569
+[exp]
+4439: push {141}
+level 3:(h=8980023,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=569,vv=2035)
+4440: push {141}
+level 4:(h=8980023,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=569,vv=2035)
+4441: push {141}
+level 5:(h=8980023,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=569,vv=2035)
+4442: w0 131070 {147} h:=8980023+131070=9111093, hh:=577
+4443: down3 -956834 {159} v:=32127569-956834=31170735, vv:=1974
+4447: fntnum0 {171} current font is cmex10
+4448: setchar18 ("12) h:=9111093+482420=9593513, hh:=608
+4449: pop {142}
+level 5:(h=8980023,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=569,vv=2035)
+4450: pop {142}
+level 4:(h=8980023,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=569,vv=2035)
+4451: pop {142}
+level 3:(h=8980023,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=569,vv=2035)
+4452: right3 613490 {145} h:=8980023+613490=9593513, hh:=608
+[ ]
+4456: fntdef1 44 {243}: cmsy10
+4478: fntnum44 {215} current font is cmsy10
+4479: setchar0 ("0) h:=9593513+611671=10205184, hh:=647
+4480: push {141}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4481: push {141}
+level 4:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4482: push {141}
+level 5:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4483: down3 -532027 {159} v:=32127569-532027=31595542, vv:=2001
+4487: push {141}
+level 6:(h=10205184,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2001)
+4488: right3 78643 {145} h:=10205184+78643=10283827, hh:=652
+4492: fntnum41 {212} current font is cmmi12
+4493: setchar117 ("75) h:=10283827+438267=10722094, hh:=680
+[u]
+4494: push {141}
+level 7:(h=10722094,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=680,vv=2001)
+4495: down3 -285390 {159} v:=31595542-285390=31310152, vv:=1983
+4499: fntnum57 {228} current font is cmr8
+4500: setchar50 ("32) h:=10722094+278532=11000626, hh:=698
+[2]
+4501: pop {142}
+level 7:(h=10722094,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=680,vv=2001)
+4502: right3 311300 {145} h:=10722094+311300=11033394, hh:=699
+[ ]
+4506: fntnum41 {212} current font is cmmi12
+4507: setchar25 ("19) h:=11033394+436812=11470206, hh:=727
+4508: push {141}
+level 7:(h=11470206,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=727,vv=2001)
+4509: right2 28217 {144} h:=11470206+28217=11498423, hh:=729
+4512: down3 -285390 {159} v:=31595542-285390=31310152, vv:=1983
+4516: fntnum57 {228} current font is cmr8
+4517: setchar50 ("32) h:=11498423+278532=11776955, hh:=747
+[2]
+4518: pop {142}
+level 7:(h=11470206,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=727,vv=2001)
+4519: right3 339517 {145} h:=11470206+339517=11809723, hh:=748
+[ ]
+4523: fntnum41 {212} current font is cmmi12
+4524: setchar107 ("6B) h:=11809723+400494=12210217, hh:=773
+4525: right2 26397 {144} h:=12210217+26397=12236614, hh:=775
+4528: setchar116 ("74) h:=12236614+278070=12514684, hh:=793
+[kt]
+4529: pop {142}
+level 6:(h=10205184,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2001)
+4530: right3 78643 {145} h:=10205184+78643=10283827, hh:=652
+4534: down3 348525 {159} v:=31595542+348525=31944067, vv:=2023
+4538: putrule {137} height 26213, width 2230857 (2x142 pixels)
+4547: down3 722955 {159} v:=31944067+722955=32667022, vv:=2069
+4551: push {141}
+level 6:(h=10283827,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=652,vv=2069)
+4552: right3 697819 {145} h:=10283827+697819=10981646, hh:=696
+4556: setchar76 ("4C) h:=10981646+523919=11505565, hh:=729
+[ L]
+4557: push {141}
+level 7:(h=11505565,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=729,vv=2069)
+4558: down3 -227191 {159} v:=32667022-227191=32439831, vv:=2055
+4562: fntnum57 {228} current font is cmr8
+4563: setchar50 ("32) h:=11505565+278532=11784097, hh:=747
+[2]
+4564: pop {142}
+level 7:(h=11505565,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=729,vv=2069)
+4565: pop {142}
+level 6:(h=10283827,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=652,vv=2069)
+4566: pop {142}
+level 5:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4567: pop {142}
+level 4:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4568: pop {142}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4569: push {141}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4570: push {141}
+level 4:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4571: push {141}
+level 5:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4572: right3 2388143 {145} h:=10205184+2388143=12593327, hh:=798
+[ ]
+4576: down3 -956834 {159} v:=32127569-956834=31170735, vv:=1974
+4580: fntnum0 {171} current font is cmex10
+4581: setchar19 ("13) h:=12593327+482420=13075747, hh:=829
+4582: pop {142}
+level 5:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4583: pop {142}
+level 4:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4584: pop {142}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4585: push {141}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4586: right3 3001633 {145} h:=10205184+3001633=13206817, hh:=837
+[ ]
+4590: fntnum38 {209} current font is cmr12
+4591: setchar115 ("73) h:=13206817+303738=13510555, hh:=856
+4592: setchar105 ("69) h:=13510555+213900=13724455, hh:=870
+4593: setchar110 ("6E) h:=13724455+427800=14152255, hh:=897
+[sin]
+4594: pop {142}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4595: push {141}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4596: push {141}
+level 4:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4597: push {141}
+level 5:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4598: down3 -532027 {159} v:=32127569-532027=31595542, vv:=2001
+4602: push {141}
+level 6:(h=10205184,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2001)
+4603: right3 4156784 {145} h:=10205184+4156784=14361968, hh:=910
+[ ]
+4607: fntnum41 {212} current font is cmmi12
+4608: setchar110 ("6E) h:=14361968+459657=14821625, hh:=939
+[n]
+4609: setchar25 ("19) h:=14821625+436812=15258437, hh:=967
+4610: right2 28217 {144} h:=15258437+28217=15286654, hh:=969
+4613: setchar120 ("78) h:=15286654+437586=15724240, hh:=997
+[x]
+4614: pop {142}
+level 6:(h=10205184,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2001)
+4615: right3 4156784 {145} h:=10205184+4156784=14361968, hh:=910
+[ ]
+4619: down3 348525 {159} v:=31595542+348525=31944067, vv:=2023
+4623: putrule {137} height 26213, width 1362272 (2x87 pixels)
+4632: down3 722955 {159} v:=31944067+722955=32667022, vv:=2069
+4636: push {141}
+level 6:(h=14361968,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=910,vv=2069)
+4637: right3 419177 {145} h:=14361968+419177=14781145, hh:=936
+4641: setchar76 ("4C) h:=14781145+523919=15305064, hh:=969
+[ L]
+4642: pop {142}
+level 6:(h=14361968,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=910,vv=2069)
+4643: pop {142}
+level 5:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4644: pop {142}
+level 4:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4645: pop {142}
+level 3:(h=10205184,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=647,vv=2035)
+4646: right3 5772459 {145} h:=10205184+5772459=15977643, hh:=1012
+[ ]
+4650: fntnum44 {215} current font is cmsy10
+4651: setchar2 ("2) h:=15977643+611671=16589314, hh:=1051
+4652: push {141}
+level 3:(h=16589314,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=2035)
+4653: right3 174760 {145} h:=16589314+174760=16764074, hh:=1062
+[ ]
+4657: down3 -924793 {159} v:=32127569-924793=31202776, vv:=1976
+4661: fntnum0 {171} current font is cmex10
+4662: setchar90 ("5A) h:=16764074+364090=17128164, hh:=1085
+[Z]
+4663: pop {142}
+level 3:(h=16589314,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=2035)
+4664: push {141}
+level 3:(h=16589314,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=2035)
+4665: down3 -717262 {159} v:=32127569-717262=31410307, vv:=1990
+4669: push {141}
+level 4:(h=16589314,v=31410307,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=1990)
+4670: right3 830121 {145} h:=16589314+830121=17419435, hh:=1103
+[ ]
+4674: fntdef1 60 {243}: cmmi8
+4695: fntnum60 {231} current font is cmmi8
+4696: setchar76 ("4C) h:=17419435+378840=17798275, hh:=1127
+[L]
+4697: pop {142}
+level 4:(h=16589314,v=31410307,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=1990)
+4698: down3 1281608 {159} v:=31410307+1281608=32691915, vv:=2071
+4702: push {141}
+level 4:(h=16589314,v=32691915,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=2071)
+4703: right3 538850 {145} h:=16589314+538850=17128164, hh:=1085
+[ ]
+4707: fntnum57 {228} current font is cmr8
+4708: setchar48 ("30) h:=17128164+278532=17406696, hh:=1103
+[0]
+4709: pop {142}
+level 4:(h=16589314,v=32691915,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=2071)
+4710: pop {142}
+level 3:(h=16589314,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1051,vv=2035)
+4711: right3 1372799 {145} h:=16589314+1372799=17962113, hh:=1138
+[ ]
+4715: fntnum41 {212} current font is cmmi12
+4716: setchar102 ("66) h:=17962113+379560=18341673, hh:=1162
+4717: right3 83967 {145} h:=18341673+83967=18425640, hh:=1167
+[f]
+4721: fntnum38 {209} current font is cmr12
+4722: setchar40 ("28) h:=18425640+299460=18725100, hh:=1186
+[(]
+4723: fntnum41 {212} current font is cmmi12
+4724: setchar120 ("78) h:=18725100+437586=19162686, hh:=1214
+[x]
+4725: push {141}
+level 3:(h=19162686,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1214,vv=2035)
+4726: down3 -324711 {159} v:=32127569-324711=31802858, vv:=2014
+4730: fntnum62 {233} current font is cmsy8
+4731: setchar48 ("30) h:=19162686+151097=19313783, hh:=1224
+[0]
+4732: pop {142}
+level 3:(h=19162686,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1214,vv=2035)
+4733: right3 183865 {145} h:=19162686+183865=19346551, hh:=1225
+[ ]
+4737: fntnum38 {209} current font is cmr12
+4738: setchar41 ("29) h:=19346551+299460=19646011, hh:=1244
+[)]
+4739: push {141}
+level 3:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4740: w0 131070 {147} h:=19646011+131070=19777081, hh:=1252
+4741: setchar115 ("73) h:=19777081+303738=20080819, hh:=1271
+4742: setchar105 ("69) h:=20080819+213900=20294719, hh:=1285
+4743: setchar110 ("6E) h:=20294719+427800=20722519, hh:=1312
+[sin]
+4744: pop {142}
+level 3:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4745: push {141}
+level 3:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4746: push {141}
+level 4:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4747: push {141}
+level 5:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4748: down3 -532027 {159} v:=32127569-532027=31595542, vv:=2001
+4752: push {141}
+level 6:(h=19646011,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2001)
+4753: right3 1286221 {145} h:=19646011+1286221=20932232, hh:=1326
+[ ]
+4757: fntnum41 {212} current font is cmmi12
+4758: setchar110 ("6E) h:=20932232+459657=21391889, hh:=1355
+[n]
+4759: setchar25 ("19) h:=21391889+436812=21828701, hh:=1383
+4760: right2 28217 {144} h:=21828701+28217=21856918, hh:=1385
+4763: setchar120 ("78) h:=21856918+437586=22294504, hh:=1413
+[x]
+4764: push {141}
+level 7:(h=22294504,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=1413,vv=2001)
+4765: down3 -285390 {159} v:=31595542-285390=31310152, vv:=1983
+4769: fntnum62 {233} current font is cmsy8
+4770: setchar48 ("30) h:=22294504+151097=22445601, hh:=1423
+[0]
+4771: pop {142}
+level 7:(h=22294504,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=1413,vv=2001)
+4772: pop {142}
+level 6:(h=19646011,v=31595542,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2001)
+4773: right3 1286221 {145} h:=19646011+1286221=20932232, hh:=1326
+[ ]
+4777: down3 348525 {159} v:=31595542+348525=31944067, vv:=2023
+4781: putrule {137} height 26213, width 1546137 (2x98 pixels)
+4790: down3 722955 {159} v:=31944067+722955=32667022, vv:=2069
+4794: push {141}
+level 6:(h=20932232,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=1326,vv=2069)
+4795: right3 511109 {145} h:=20932232+511109=21443341, hh:=1358
+[ ]
+4799: fntnum41 {212} current font is cmmi12
+4800: setchar76 ("4C) h:=21443341+523919=21967260, hh:=1391
+[L]
+4801: pop {142}
+level 6:(h=20932232,v=32667022,w=131070,x=0,y=983040,z=0,d=0,hh=1326,vv=2069)
+4802: pop {142}
+level 5:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4803: pop {142}
+level 4:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4804: pop {142}
+level 3:(h=19646011,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1244,vv=2035)
+4805: right3 3042071 {145} h:=19646011+3042071=22688082, hh:=1437
+4809: setchar100 ("64) h:=22688082+400130=23088212, hh:=1462
+4810: setchar120 ("78) h:=23088212+437586=23525798, hh:=1490
+[ dx]
+4811: push {141}
+level 3:(h=23525798,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1490,vv=2035)
+4812: down3 -324711 {159} v:=32127569-324711=31802858, vv:=2014
+4816: fntnum62 {233} current font is cmsy8
+4817: setchar48 ("30) h:=23525798+151097=23676895, hh:=1500
+[0]
+4818: pop {142}
+level 3:(h=23525798,v=32127569,w=131070,x=0,y=983040,z=0,d=0,hh=1490,vv=2035)
+4819: pop {142}
+level 2:(h=0,v=32127569,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2035)
+4820: down3 1638400 {159} v:=32127569+1638400=33765969, vv:=2139
+4824: down3 1769472 {159} v:=33765969+1769472=35535441, vv:=2251
+4828: push {141}
+level 2:(h=0,v=35535441,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2251)
+4829: right4 11729124 {146} h:=0+11729124=11729124, hh:=743
+[ ]
+4834: fntdef1 22 {243}: goth10
+4856: fntnum22 {193} current font is goth10
+4857: set2 9506 {129}("2522) type=10 h:=11729124+756717=12485841, hh:=791
+4860: set2 9529 {129}("2539) type=0 h:=12485841+756717=13242558, hh:=839
+4863: set2 9517 {129}("252D) type=0 h:=13242558+756717=13999275, hh:=887
+4866: set2 8508 {129}("213C) type=0 h:=13999275+756717=14755992, hh:=935
+[アスキー]
+4869: pop {142}
+level 2:(h=0,v=35535441,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2251)
+4870: down3 1376256 {159} v:=35535441+1376256=36911697, vv:=2338
+4874: push {141}
+level 2:(h=0,v=36911697,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2338)
+4875: right4 10504896 {146} h:=0+10504896=10504896, hh:=665
+[ ]
+4880: fntdef1 47 {243}: goth10
+4902: fntnum47 {218} current font is goth10
+4903: set2 18044 {129}("467C) type=0 h:=10504896+908060=11412956, hh:=723
+4906: set2 19292 {129}("4B5C) type=0 h:=11412956+908060=12321016, hh:=781
+4909: set2 14444 {129}("386C) type=0 h:=12321016+908060=13229076, hh:=839
+4912: right3 157649 {145} h:=13229076+157649=13386725, hh:=848
+[日本語 ]
+4916: fntnum48 {219} current font is cmbx12
+4917: setchar76 ("4C) h:=13386725+637883=14024608, hh:=888
+[L]
+4918: push {141}
+level 3:(h=14024608,v=36911697,w=0,x=0,y=983040,z=0,d=0,hh=888,vv=2338)
+4919: down3 -197845 {159} v:=36911697-197845=36713852, vv:=2325
+4923: push {141}
+level 4:(h=14024608,v=36713852,w=0,x=0,y=983040,z=0,d=0,hh=888,vv=2325)
+4924: right3 -382206 {145} h:=14024608-382206=13642402, hh:=864
+4928: fntnum49 {220} current font is cmbx10
+4929: setchar65 ("41) h:=13642402+569796=14212198, hh:=900
+[A]
+4930: pop {142}
+level 4:(h=14024608,v=36713852,w=0,x=0,y=983040,z=0,d=0,hh=888,vv=2325)
+4931: pop {142}
+level 3:(h=14024608,v=36911697,w=0,x=0,y=983040,z=0,d=0,hh=888,vv=2338)
+4932: right2 28345 {144} h:=14024608+28345=14052953, hh:=890
+4935: fntnum48 {219} current font is cmbx12
+4936: setchar84 ("54) h:=14052953+738371=14791324, hh:=937
+[T]
+4937: push {141}
+level 3:(h=14791324,v=36911697,w=0,x=0,y=983040,z=0,d=0,hh=937,vv=2338)
+4938: right3 -176984 {145} h:=14791324-176984=14614340, hh:=926
+4942: down3 209714 {159} v:=36911697+209714=37121411, vv:=2351
+4946: setchar69 ("45) h:=14614340+696866=15311206, hh:=970
+[E]
+4947: pop {142}
+level 3:(h=14791324,v=36911697,w=0,x=0,y=983040,z=0,d=0,hh=937,vv=2338)
+4948: right3 387172 {145} h:=14791324+387172=15178496, hh:=961
+4952: setchar88 ("58) h:=15178496+801724=15980220, hh:=1012
+[ X]
+4953: pop {142}
+level 2:(h=0,v=36911697,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2338)
+4954: down3 1310720 {159} v:=36911697+1310720=38222417, vv:=2421
+4958: push {141}
+level 2:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4959: push {141}
+level 3:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4960: push {141}
+level 4:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4961: push {141}
+level 5:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4962: push {141}
+level 6:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4963: right3 7647652 {145} h:=0+7647652=7647652, hh:=484
+[ ]
+4967: down2 -16312 {158} v:=38222417-16312=38206105, vv:=2420
+4970: fntdef1 69 {243}: cmbx8
+4991: fnt1 69 {235} current font is cmbx8
+4993: setchar99 ("63) h:=7647652+285448=7933100, hh:=502
+[c]
+4994: pop {142}
+level 6:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4995: pop {142}
+level 5:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4996: pop {142}
+level 4:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4997: push {141}
+level 4:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4998: push {141}
+level 5:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+4999: right3 7469247 {145} h:=0+7469247=7469247, hh:=473
+[ ]
+5003: fntdef1 70 {243}: cmbsy8
+5025: fnt1 70 {235} current font is cmbsy8
+5027: setchar13 ("D) h:=7469247+642258=8111505, hh:=514
+5028: pop {142}
+level 5:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+5029: pop {142}
+level 4:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+5030: pop {142}
+level 3:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+5031: right3 8325591 {145} h:=0+8325591=8325591, hh:=527
+[ ]
+5035: fnt1 69 {235} current font is cmbx8
+5037: setchar67 ("43) h:=8325591+463853=8789444, hh:=556
+5038: setchar111 ("6F) h:=8789444+321129=9110573, hh:=576
+5039: setchar112 ("70) h:=9110573+356810=9467383, hh:=599
+5040: w2 -17841 {149} h:=9467383-17841=9449542, hh:=598
+5043: setchar121 ("79) h:=9449542+338970=9788512, hh:=619
+5044: setchar114 ("72) h:=9788512+265423=10053935, hh:=636
+5045: setchar105 ("69) h:=10053935+178405=10232340, hh:=647
+5046: setchar103 ("67) h:=10232340+321129=10553469, hh:=667
+5047: setchar104 ("68) h:=10553469+356810=10910279, hh:=690
+5048: w0 -17841 {147} h:=10910279-17841=10892438, hh:=689
+5049: setchar116 ("74) h:=10892438+249767=11142205, hh:=705
+5050: w3 214086 {150} h:=11142205+214086=11356291, hh:=719
+5054: setchar49 ("31) h:=11356291+321129=11677420, hh:=739
+5055: setchar57 ("39) h:=11677420+321129=11998549, hh:=759
+5056: setchar57 ("39) h:=11998549+321129=12319678, hh:=779
+5057: setchar52 ("34) h:=12319678+321129=12640807, hh:=799
+5058: w0 214086 {147} h:=12640807+214086=12854893, hh:=814
+5059: setchar98 ("62) h:=12854893+356810=13211703, hh:=837
+5060: right2 -17841 {144} h:=13211703-17841=13193862, hh:=836
+5063: setchar121 ("79) h:=13193862+338970=13532832, hh:=857
+5064: w0 214086 {147} h:=13532832+214086=13746918, hh:=871
+5065: setchar65 ("41) h:=13746918+483513=14230431, hh:=902
+5066: setchar83 ("53) h:=14230431+356810=14587241, hh:=925
+5067: setchar67 ("43) h:=14587241+463853=15051094, hh:=954
+5068: setchar73 ("49) h:=15051094+240663=15291757, hh:=969
+5069: x2 17841 {154} h:=15291757+17841=15309598, hh:=970
+5072: setchar73 ("49) h:=15309598+240663=15550261, hh:=985
+5073: w0 214086 {147} h:=15550261+214086=15764347, hh:=999
+5074: setchar99 ("63) h:=15764347+285448=16049795, hh:=1017
+5075: setchar111 ("6F) h:=16049795+321129=16370924, hh:=1037
+5076: setchar114 ("72) h:=16370924+265423=16636347, hh:=1054
+5077: setchar112 ("70) h:=16636347+356810=16993157, hh:=1077
+5078: x0 17841 {152} h:=16993157+17841=17010998, hh:=1078
+5079: setchar111 ("6F) h:=17010998+321129=17332127, hh:=1098
+5080: setchar114 ("72) h:=17332127+265423=17597550, hh:=1115
+5081: setchar97 ("61) h:=17597550+312209=17909759, hh:=1135
+5082: setchar116 ("74) h:=17909759+249767=18159526, hh:=1151
+5083: setchar105 ("69) h:=18159526+178405=18337931, hh:=1162
+5084: setchar111 ("6F) h:=18337931+321129=18659060, hh:=1182
+5085: setchar110 ("6E) h:=18659060+356810=19015870, hh:=1205
+[Copyright 1994 by ASCII corporation]
+5086: pop {142}
+level 2:(h=0,v=38222417,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2421)
+5087: down3 2129920 {159} v:=38222417+2129920=40352337, vv:=2556
+5091: push {141}
+level 2:(h=0,v=40352337,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2556)
+5092: push {141}
+level 3:(h=0,v=40352337,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2556)
+5093: right4 12869623 {146} h:=0+12869623=12869623, hh:=815
+[ ]
+5098: down3 372935 {159} v:=40352337+372935=40725272, vv:=2580
+5102: setrule {132} height 745870, width 745871 (48x48 pixels)
+ h:=12869623+745871=13615494, hh:=863
+5111: pop {142}
+level 3:(h=0,v=40352337,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2556)
+5112: pop {142}
+level 2:(h=0,v=40352337,w=0,x=0,y=983040,z=0,d=0,hh=0,vv=2556)
+5113: pop {142}
+level 1:(h=0,v=41416109,w=0,x=0,y=0,z=0,d=0,hh=0,vv=2623)
+5114: pop {142}
+level 0:(h=0,v=43382189,w=0,x=0,y=0,z=0,d=0,hh=0,vv=2748)
+5115: eop {140}
diff --git a/Build/source/texk/web2c/ptexdir/tests/skipjfmp.pl b/Build/source/texk/web2c/ptexdir/tests/skipjfmp.pl
new file mode 100644
index 00000000000..3d5f0bff790
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/skipjfmp.pl
@@ -0,0 +1,159 @@
+(COMMENT THIS IS A KANJI FORMAT FILE)
+(FAMILY JFM SKIP)
+(FACE F MRR)
+(CODINGSCHEME TEX KANJI TEXT)
+(DESIGNSIZE R 10.0)
+(COMMENT DESIGNSIZE IS IN POINTS)
+(COMMENT OTHER SIZES ARE MULTIPLES OF DESIGNSIZE)
+(CHECKSUM O 0)
+(FONTDIMEN
+ (SLANT R 0.0)
+ (SPACE R 0.0)
+ (STRETCH R 0.1)
+ (SHRINK R 0.0)
+ (XHEIGHT R 1.0)
+ (QUAD R 1.0)
+ (EXTRASPACE R 0.25)
+ (EXTRASTRETCH R 0.2)
+ (EXTRASHRINK R 0.125)
+ )
+(GLUEKERN
+ (LABEL O 0)
+ (GLUE O 1 R 0.5 R 0.0 R 0.0)
+ (GLUE O 2 R 0.5 R 0.0 R 0.01)
+ (GLUE O 6 R 0.5 R 0.0 R 0.02)
+ (GLUE O 3 R 0.25 R 0.0 R 0.03)
+ (GLUE O 4 R 0.25 R 0.0 R 0.04)
+ (STOP)
+ (LABEL O 1)
+ (GLUE O 4 R 0.25 R 0.0 R 0.05)
+ (SKIP D 19)
+ (LABEL O 2)
+ (GLUE O 3 R 0.25 R 0.0 R 0.06)
+ (SKIP D 16)
+ (LABEL O 3)
+ (GLUE O 1 R 0.25 R 0.0 R 0.07)
+ (GLUE O 2 R 0.25 R 0.0 R 0.08)
+ (GLUE O 6 R 0.25 R 0.0 R 0.09)
+ (GLUE O 0 R 0.25 R 0.0 R 0.1)
+ (SKIP D 4)
+ (LABEL O 4)
+ (GLUE O 0 R 0.25 R 0.0 R 0.11)
+ (GLUE O 1 R 0.25 R 0.0 R 0.12)
+ (GLUE O 2 R 0.25 R 0.0 R 0.13)
+ (GLUE O 6 R 0.25 R 0.0 R 0.14)
+ (GLUE O 3 R 0.5 R 0.0 R 0.15)
+ (GLUE O 4 R 0.5 R 0.0 R 0.16)
+ (GLUE O 5 R 0.25 R 0.0 R 0.17)
+ (STOP)
+ (LABEL O 5)
+ (KRN O 5 R 0.0)
+ (GLUE O 1 R 0.5 R 0.0 R 0.18)
+ (GLUE O 2 R 0.5 R 0.0 R 0.19)
+ (GLUE O 6 R 0.5 R 0.0 R 0.2)
+ (GLUE O 3 R 0.25 R 0.0 R 0.21)
+ (GLUE O 4 R 0.25 R 0.0 R 0.22)
+ (STOP)
+ (LABEL O 6)
+ (GLUE O 4 R 0.25 R 0.0 R 0.23)
+ (GLUE O 3 R 0.25 R 0.0 R 0.24)
+ (STOP)
+ )
+(CHARSINTYPE O 1
+ J 214A
+ )
+(CHARSINTYPE O 2
+ J 2156
+ )
+(CHARSINTYPE O 3
+ J 2127
+ )
+(CHARSINTYPE O 4
+ J 2128
+ )
+(CHARSINTYPE O 5
+ J 2144
+ )
+(CHARSINTYPE O 6
+ J 215A
+ )
+(TYPE O 0
+ (CHARWD R 1.0)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (GLUE O 1 R 0.5 R 0.0 R 0.0)
+ (GLUE O 2 R 0.5 R 0.0 R 0.01)
+ (GLUE O 6 R 0.5 R 0.0 R 0.02)
+ (GLUE O 3 R 0.25 R 0.0 R 0.03)
+ (GLUE O 4 R 0.25 R 0.0 R 0.04)
+ )
+ )
+(TYPE O 1
+ (CHARWD R 0.5)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (GLUE O 4 R 0.25 R 0.0 R 0.05)
+ (GLUE O 3 R 0.25 R 0.0 R 0.24)
+ )
+ )
+(TYPE O 2
+ (CHARWD R 0.5)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (GLUE O 3 R 0.25 R 0.0 R 0.06)
+ (GLUE O 4 R 0.25 R 0.0 R 0.22)
+ )
+ )
+(TYPE O 3
+ (CHARWD R 0.5)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (GLUE O 1 R 0.25 R 0.0 R 0.07)
+ (GLUE O 2 R 0.25 R 0.0 R 0.08)
+ (GLUE O 6 R 0.25 R 0.0 R 0.09)
+ (GLUE O 0 R 0.25 R 0.0 R 0.1)
+ (GLUE O 3 R 0.5 R 0.0 R 0.15)
+ (GLUE O 4 R 0.5 R 0.0 R 0.16)
+ (GLUE O 5 R 0.25 R 0.0 R 0.17)
+ )
+ )
+(TYPE O 4
+ (CHARWD R 0.5)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (GLUE O 0 R 0.25 R 0.0 R 0.11)
+ (GLUE O 1 R 0.25 R 0.0 R 0.12)
+ (GLUE O 2 R 0.25 R 0.0 R 0.13)
+ (GLUE O 6 R 0.25 R 0.0 R 0.14)
+ (GLUE O 3 R 0.5 R 0.0 R 0.15)
+ (GLUE O 4 R 0.5 R 0.0 R 0.16)
+ (GLUE O 5 R 0.25 R 0.0 R 0.17)
+ )
+ )
+(TYPE O 5
+ (CHARWD R 1.0)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (KRN O 5 R 0.0)
+ (GLUE O 1 R 0.5 R 0.0 R 0.18)
+ (GLUE O 2 R 0.5 R 0.0 R 0.19)
+ (GLUE O 6 R 0.5 R 0.0 R 0.2)
+ (GLUE O 3 R 0.25 R 0.0 R 0.21)
+ (GLUE O 4 R 0.25 R 0.0 R 0.22)
+ )
+ )
+(TYPE O 6
+ (CHARWD R 0.5)
+ (CHARHT R 0.88)
+ (CHARDP R 0.12)
+ (COMMENT
+ (GLUE O 4 R 0.25 R 0.0 R 0.23)
+ (GLUE O 3 R 0.25 R 0.0 R 0.24)
+ )
+ )
diff --git a/Build/source/texk/web2c/ptexdir/tests/skipjfmp.tex b/Build/source/texk/web2c/ptexdir/tests/skipjfmp.tex
new file mode 100644
index 00000000000..274c5729bc9
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/skipjfmp.tex
@@ -0,0 +1,33 @@
+\prebreakpenalty`…=0
+\postbreakpenalty`「=0
+\postbreakpenalty`【=0
+\postbreakpenalty`(=0
+\postbreakpenalty`:=0
+\postbreakpenalty`;=0
+
+\tracingonline1
+\showboxdepth10000
+\showboxbreadth10000
+
+\font\x=jis\x
+\setbox0=\hbox{あ…あ「あ【あ(あ:あ;あ}\showbox0
+\box0
+
+\font\y=skipjfmp at 9.62216pt\y
+\setbox2=\hbox{あ…あ「あ【あ(あ:あ;あ}\showbox2
+\box2
+
+\newfam\mx
+\newfam\my
+\textfont\mx=\x \scriptfont\mx=\x \scriptscriptfont\mx=\x
+\textfont\my=\y \scriptfont\my=\y \scriptscriptfont\my=\y
+
+\jfam\mx
+\setbox4=\hbox{$あ…あ「あ【あ(あ:あ;あ$}\showbox4
+\box4
+
+\jfam\my
+\setbox6=\hbox{$あ…あ「あ【あ(あ:あ;あ$}\showbox6
+\box6
+
+\bye
diff --git a/Build/source/texk/web2c/ptexdir/tests/skipjfmp.tfm b/Build/source/texk/web2c/ptexdir/tests/skipjfmp.tfm
new file mode 100644
index 00000000000..1b6c4f18d07
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/skipjfmp.tfm
Binary files differ
diff --git a/Build/source/texk/web2c/ptexdir/tests/tmin10.pl b/Build/source/texk/web2c/ptexdir/tests/tmin10.pl
new file mode 100644
index 00000000000..52a18cf5fbc
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/tmin10.pl
@@ -0,0 +1,285 @@
+(COMMENT THIS IS A KANJI FORMAT FILE)
+(DIRECTION TATE)
+(FAMILY MINCHO)
+(FACE F MRR)
+(CODINGSCHEME JIS X0208)
+(DESIGNSIZE R 10.0)
+(COMMENT DESIGNSIZE IS IN POINTS)
+(COMMENT OTHER SIZES ARE MULTIPLES OF DESIGNSIZE)
+(CHECKSUM O 35147750366)
+(FONTDIMEN
+ (SLANT R 0.0)
+ (SPACE R 0.0)
+ (STRETCH R 0.091641)
+ (SHRINK R 0.0)
+ (XHEIGHT R 0.916443)
+ (QUAD R 0.962216)
+ (EXTRASPACE R 0.229101)
+ (EXTRASTRETCH R 0.183283)
+ (EXTRASHRINK R 0.114551)
+ )
+(GLUEKERN
+ (LABEL O 0)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 1)
+ (GLUE O 0 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 2)
+ (GLUE O 0 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 3)
+ (GLUE O 0 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 4)
+ (GLUE O 0 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 7 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 5)
+ (GLUE O 0 R 0.0 R 0.0 R 0.0)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.0 R 0.0 R 0.0)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 6)
+ (GLUE O 0 R 0.0 R 0.0 R 0.0)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.0 R 0.0 R 0.0)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.0 R 0.0 R 0.0)
+ (GLUE O 7 R 0.240554 R 0.0 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ (LABEL O 7)
+ (GLUE O 0 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 1 R 0.240554 R 0.0 R 0.240554)
+ (GLUE O 2 R 0.240554 R 0.0 R 0.240554)
+ (GLUE O 3 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 4 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 5 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 6 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 7 R 0.0 R 0.183283 R 0.0)
+ (GLUE O 10 R 0.240554 R 0.0 R 0.240554)
+ (STOP)
+ (LABEL O 10)
+ (GLUE O 0 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ (STOP)
+ )
+(CHARSINTYPE O 1
+ J 2124 J 2125
+ )
+(CHARSINTYPE O 2
+ J 2122 J 2123
+ )
+(CHARSINTYPE O 3
+ J 2133 J 2134 J 2135 J 2136 J 2137 J 2139 J 2421 J 2423 J 2425 J 2427
+ J 2429 J 2443 J 2463 J 2465 J 2467 J 246E J 2521 J 2523 J 2525 J 2527
+ J 2529 J 2543 J 2563 J 2565 J 2567 J 256E J 2575 J 2576
+ )
+(CHARSINTYPE O 4
+ J 2129 J 212A
+ )
+(CHARSINTYPE O 5
+ J 213D J 2144 J 2145
+ )
+(CHARSINTYPE O 6
+ J 2146 J 2148 J 214A J 214C J 214E J 2150 J 2152 J 2154 J 2156 J 2158
+ J 215A
+ )
+(CHARSINTYPE O 7
+ J 2126 J 213E J 2142 J 2143
+ )
+(CHARSINTYPE O 10
+ J 2147 J 2149 J 214B J 214D J 214F J 2151 J 2153 J 2155 J 2157 J 2159
+ J 215B
+ )
+(TYPE O 0
+ (CHARWD R 0.962216)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 1
+ (CHARWD R 0.481108)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 2
+ (CHARWD R 0.481108)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 3
+ (CHARWD R 0.747434)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.107391 R 0.0 R 0.107391)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 4
+ (CHARWD R 0.962216)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 7 R 0.962216 R 0.0 R 0.481108)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 5
+ (CHARWD R 0.962216)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.0 R 0.0 R 0.0)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.0 R 0.0 R 0.0)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 6
+ (CHARWD R 0.481108)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.0 R 0.0 R 0.0)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.0 R 0.0 R 0.0)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.0 R 0.0 R 0.0)
+ (GLUE O 6 R 0.0 R 0.0 R 0.0)
+ (GLUE O 7 R 0.240554 R 0.0 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
+(TYPE O 7
+ (CHARWD R 0.481108)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 1 R 0.240554 R 0.0 R 0.240554)
+ (GLUE O 2 R 0.240554 R 0.0 R 0.240554)
+ (GLUE O 3 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 4 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 5 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 6 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 7 R 0.0 R 0.183283 R 0.0)
+ (GLUE O 10 R 0.240554 R 0.0 R 0.240554)
+ )
+ )
+(TYPE O 10
+ (CHARWD R 0.481108)
+ (CHARHT R 0.458221)
+ (CHARDP R 0.458221)
+ (COMMENT
+ (GLUE O 0 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 1 R 0.0 R 0.0 R 0.0)
+ (GLUE O 2 R 0.0 R 0.0 R 0.0)
+ (GLUE O 3 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 4 R 0.0 R 0.0 R 0.0)
+ (GLUE O 5 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 6 R 0.481108 R 0.183283 R 0.481108)
+ (GLUE O 7 R 0.240554 R 0.183283 R 0.240554)
+ (GLUE O 10 R 0.0 R 0.0 R 0.0)
+ )
+ )
diff --git a/Build/source/texk/web2c/ptexdir/tests/tmin10.tfm b/Build/source/texk/web2c/ptexdir/tests/tmin10.tfm
new file mode 100644
index 00000000000..a54690f5656
--- /dev/null
+++ b/Build/source/texk/web2c/ptexdir/tests/tmin10.tfm
Binary files differ