-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserguide.ps
14072 lines (13905 loc) · 760 KB
/
userguide.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-2.0
%%Creator: dvips(k) 5.86 Copyright 1999 Radical Eye Software
%%Title: userguide.dvi
%%Pages: 111
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentFonts: Courier-Bold Times-Roman Times-Bold
%%EndComments
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips userguide -o
%DVIPSParameters: dpi=600, compressed
%DVIPSSource: TeX output 2005.04.08:0958
%%BeginProcSet: texc.pro
%!
/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
N}B/A{dup}B/TR{translate}N/isls false N/vsize 11 72 mul N/hsize 8.5 72
mul N/landplus90{false}def/@rigin{isls{[0 landplus90{1 -1}{-1 1}ifelse 0
0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{
landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize
mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[
matrix currentmatrix{A A round sub abs 0.00001 lt{round}if}forall round
exch round exch]setmatrix}N/@landscape{/isls true N}B/@manualfeed{
statusdict/manualfeed true put}B/@copies{/#copies X}B/FMat[1 0 0 -1 0 0]
N/FBB[0 0 0 0]N/nn 0 N/IEn 0 N/ctr 0 N/df-tail{/nn 8 dict N nn begin
/FontType 3 N/FontMatrix fntrx N/FontBBox FBB N string/base X array
/BitMaps X/BuildChar{CharBuilder}N/Encoding IEn N end A{/foo setfont}2
array copy cvx N load 0 nn put/ctr 0 N[}B/sf 0 N/df{/sf 1 N/fntrx FMat N
df-tail}B/dfs{div/sf X/fntrx[sf 0 0 sf neg 0 0]N df-tail}B/E{pop nn A
definefont setfont}B/Cw{Cd A length 5 sub get}B/Ch{Cd A length 4 sub get
}B/Cx{128 Cd A length 3 sub get sub}B/Cy{Cd A length 2 sub get 127 sub}
B/Cdx{Cd A length 1 sub get}B/Ci{Cd A type/stringtype ne{ctr get/ctr ctr
1 add N}if}B/id 0 N/rw 0 N/rc 0 N/gp 0 N/cp 0 N/G 0 N/CharBuilder{save 3
1 roll S A/base get 2 index get S/BitMaps get S get/Cd X pop/ctr 0 N Cdx
0 Cx Cy Ch sub Cx Cw add Cy setcachedevice Cw Ch true[1 0 0 -1 -.1 Cx
sub Cy .1 sub]/id Ci N/rw Cw 7 add 8 idiv string N/rc 0 N/gp 0 N/cp 0 N{
rc 0 ne{rc 1 sub/rc X rw}{G}ifelse}imagemask restore}B/G{{id gp get/gp
gp 1 add N A 18 mod S 18 idiv pl S get exec}loop}B/adv{cp add/cp X}B
/chg{rw cp id gp 4 index getinterval putinterval A gp add/gp X adv}B/nd{
/cp 0 N rw exit}B/lsh{rw cp 2 copy get A 0 eq{pop 1}{A 255 eq{pop 254}{
A A add 255 and S 1 and or}ifelse}ifelse put 1 adv}B/rsh{rw cp 2 copy
get A 0 eq{pop 128}{A 255 eq{pop 127}{A 2 idiv S 128 and or}ifelse}
ifelse put 1 adv}B/clr{rw cp 2 index string putinterval adv}B/set{rw cp
fillstr 0 4 index getinterval putinterval adv}B/fillstr 18 string 0 1 17
{2 copy 255 put pop}for N/pl[{adv 1 chg}{adv 1 chg nd}{1 add chg}{1 add
chg nd}{adv lsh}{adv lsh nd}{adv rsh}{adv rsh nd}{1 add adv}{/rc X nd}{
1 add set}{1 add clr}{adv 2 chg}{adv 2 chg nd}{pop nd}]A{bind pop}
forall N/D{/cc X A type/stringtype ne{]}if nn/base get cc ctr put nn
/BitMaps get S ctr S sf 1 ne{A A length 1 sub A 2 index S get sf div put
}if put/ctr ctr 1 add N}B/I{cc 1 add D}B/bop{userdict/bop-hook known{
bop-hook}if/SI save N @rigin 0 0 moveto/V matrix currentmatrix A 1 get A
mul exch 0 get A mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N/eop{
SI restore userdict/eop-hook known{eop-hook}if showpage}N/@start{
userdict/start-hook known{start-hook}if pop/VResolution X/Resolution X
1000 div/DVImag X/IEn 256 array N 2 string 0 1 255{IEn S A 360 add 36 4
index cvrs cvn put}for pop 65781.76 div/vsize X 65781.76 div/hsize X}N
/p{show}N/RMat[1 0 0 -1 0 0]N/BDot 260 string N/Rx 0 N/Ry 0 N/V{}B/RV/v{
/Ry X/Rx X V}B statusdict begin/product where{pop false[(Display)(NeXT)
(LaserWriter 16/600)]{A length product length le{A length product exch 0
exch getinterval eq{pop true exit}if}{pop}ifelse}forall}{false}ifelse
end{{gsave TR -.1 .1 TR 1 1 scale Rx Ry false RMat{BDot}imagemask
grestore}}{{gsave TR -.1 .1 TR Rx Ry scale 1 1 false RMat{BDot}
imagemask grestore}}ifelse B/QV{gsave newpath transform round exch round
exch itransform moveto Rx 0 rlineto 0 Ry neg rlineto Rx neg 0 rlineto
fill grestore}B/a{moveto}B/delta 0 N/tail{A/delta X 0 rmoveto}B/M{S p
delta add tail}B/b{S p tail}B/c{-4 M}B/d{-3 M}B/e{-2 M}B/f{-1 M}B/g{0 M}
B/h{1 M}B/i{2 M}B/j{3 M}B/k{4 M}B/w{0 rmoveto}B/l{p -4 w}B/m{p -3 w}B/n{
p -2 w}B/o{p -1 w}B/q{p 1 w}B/r{p 2 w}B/s{p 3 w}B/t{p 4 w}B/x{0 S
rmoveto}B/y{3 2 roll p a}B/bos{/SS save N}B/eos{SS restore}B end
%%EndProcSet
%%BeginProcSet: texnansi.enc
% @psencodingfile{
% author = "Y&Y, Inc.",
% version = "1.1",
% date = "1 December 1996",
% filename = "texnansi.enc",
% email = "help@YandY.com",
% address = "45 Walden Street // Concord, MA 01742, USA",
% codetable = "ISO/ASCII",
% checksum = "xx",
% docstring = "Encoding for fonts in Adobe Type 1 format for use with TeX."
% }
%
% The idea is to have all 228 characters normally included in Type 1 text
% fonts (plus a few more) available for typesetting. This is effectively
% the character set in Adobe Standard Encoding, ISO Latin 1, plus a few more.
%
% Character code assignments were made as follows:
%
% (1) The character layout largely matches `ASCII' in the 32 -- 126 range,
% except for `circumflex' in 94 and `tilde' in 126, to match `TeX text'
% (`asciicircumflex' and `asciitilde' appear in 158 and 142 instead).
%
% (2) The character layout matches `Windows ANSI' in almost all places,
% except for `quoteright' in 39 and `quoteleft' in 96 to match ASCII
% (`quotesingle' and `grave' appear in 129 and 18 instead).
%
% (3) The character layout matches `TeX typewriter' used by CM text fonts
% in most places (except for discordant positions such as hungarumlaut
% (instead of braceright), dotaccent (instead of underscore) etc.
%
% (4) Remaining characters are assigned arbitrarily to the `control character'
% range (0 -- 31), avoiding 0, 9, 10 and 13 in case we meet dumb software
% - similarly one should really avoid 127 and 128 if possible.
% In addition, the 8 open slots in Windows ANSI between 128 and 159 are used.
%
% (5) Y&Y Lucida Bright includes some extra ligatures and such; ff, ffi, ffl,
% and `dotlessj,' these are included 11 -- 15, and 17.
%
% (6) Hyphen appears both at 45 and 173 for compatibility with both ASCII
% and Windows ANSI.
%
% (7) It doesn't really matter where ligatures appear (both real, such as ffi,
% and pseudo such as ---) since these should not be accessed directly, only
% via ligature information in the TFM file.
%
% SAMPLE USAGE (in `psfonts.map' file for DVIPS):
%
% lbr LucidaBright "TeXnANSIEncoding ReEncodeFont" <texnansi.enc <lbr.pfb
%
% This tells DVIPS that the font called `lbr' in TeX has PostScript
% FontName `LucidaBright.' It also asks DVIPS to expand the file `lbr.pfb'
% into PFA form, to include the attached `texnansi.enc' encoding vector,
% and to then actually reencode the font based on that encoding vector.
%
% Revised 1996 June 1 by adding second position for `fl' to avoid Acrobat bug.
% Revised 1996 June 1 by adding second position for `fraction' for same reason.
% Revised 1997 Oct 1 by adding cwm (used in boundary char TFM code)
% Revised 1998 Mar 1 by adding Unicode for Euro character
%
/TeXnANSIEncoding [
/.notdef % 0
/Euro % /Uni20AC 1
/.notdef % 2
/.notdef % 3
/fraction % 4
/dotaccent % 5
/hungarumlaut % 6
/ogonek % 7
/fl % 8
/.notdef % /fraction % 9 not used (see 4), backward compatability only
/cwm % 10 not used, except boundary char internally maybe
/ff % 11
/fi % 12
/.notdef % /fl % 13 not used (see 8), backward compatability only
/ffi % 14
/ffl % 15
/dotlessi % 16
/dotlessj % 17
/grave % 18
/acute % 19
/caron % 20
/breve % 21
/macron % 22
/ring % 23
/cedilla % 24
/germandbls % 25
/ae % 26
/oe % 27
/oslash % 28
/AE % 29
/OE % 30
/Oslash % 31
/space % 32 % /suppress in TeX text
/exclam % 33
/quotedbl % 34 % /quotedblright in TeX text
/numbersign % 35
/dollar % 36
/percent % 37
/ampersand % 38
/quoteright % 39 % /quotesingle in ANSI
/parenleft % 40
/parenright % 41
/asterisk % 42
/plus % 43
/comma % 44
/hyphen % 45
/period % 46
/slash % 47
/zero % 48
/one % 49
/two % 50
/three % 51
/four % 52
/five % 53
/six % 54
/seven % 55
/eight % 56
/nine % 57
/colon % 58
/semicolon % 59
/less % 60 % /exclamdown in Tex text
/equal % 61
/greater % 62 % /questiondown in TeX text
/question % 63
/at % 64
/A % 65
/B % 66
/C % 67
/D % 68
/E % 69
/F % 70
/G % 71
/H % 72
/I % 73
/J % 74
/K % 75
/L % 76
/M % 77
/N % 78
/O % 79
/P % 80
/Q % 81
/R % 82
/S % 83
/T % 84
/U % 85
/V % 86
/W % 87
/X % 88
/Y % 89
/Z % 90
/bracketleft % 91
/backslash % 92 % /quotedblleft in TeX text
/bracketright % 93
/circumflex % 94 % /asciicircum in ASCII
/underscore % 95 % /dotaccent in TeX text
/quoteleft % 96 % /grave accent in ANSI
/a % 97
/b % 98
/c % 99
/d % 100
/e % 101
/f % 102
/g % 103
/h % 104
/i % 105
/j % 106
/k % 107
/l % 108
/m % 109
/n % 110
/o % 111
/p % 112
/q % 113
/r % 114
/s % 115
/t % 116
/u % 117
/v % 118
/w % 119
/x % 120
/y % 121
/z % 122
/braceleft % 123 % /endash in TeX text
/bar % 124 % /emdash in TeX test
/braceright % 125 % /hungarumlaut in TeX text
/tilde % 126 % /asciitilde in ASCII
/dieresis % 127 not used (see 168), use higher up instead
/Lslash % 128 this position is unfortunate, but now too late to fix
/quotesingle % 129
/quotesinglbase % 130
/florin % 131
/quotedblbase % 132
/ellipsis % 133
/dagger % 134
/daggerdbl % 135
/circumflex % 136
/perthousand % 137
/Scaron % 138
/guilsinglleft % 139
/OE % 140
/Zcaron % 141
/asciicircum % 142
/minus % 143
/lslash % 144
/quoteleft % 145
/quoteright % 146
/quotedblleft % 147
/quotedblright % 148
/bullet % 149
/endash % 150
/emdash % 151
/tilde % 152
/trademark % 153
/scaron % 154
/guilsinglright % 155
/oe % 156
/zcaron % 157
/asciitilde % 158
/Ydieresis % 159
/nbspace % 160 % /space (no break space)
/exclamdown % 161
/cent % 162
/sterling % 163
/currency % 164
/yen % 165
/brokenbar % 166
/section % 167
/dieresis % 168
/copyright % 169
/ordfeminine % 170
/guillemotleft % 171
/logicalnot % 172
/sfthyphen % 173 % /hyphen (hanging hyphen)
/registered % 174
/macron % 175
/degree % 176
/plusminus % 177
/twosuperior % 178
/threesuperior % 179
/acute % 180
/mu % 181
/paragraph % 182
/periodcentered % 183
/cedilla % 184
/onesuperior % 185
/ordmasculine % 186
/guillemotright % 187
/onequarter % 188
/onehalf % 189
/threequarters % 190
/questiondown % 191
/Agrave % 192
/Aacute % 193
/Acircumflex % 194
/Atilde % 195
/Adieresis % 196
/Aring % 197
/AE % 198
/Ccedilla % 199
/Egrave % 200
/Eacute % 201
/Ecircumflex % 202
/Edieresis % 203
/Igrave % 204
/Iacute % 205
/Icircumflex % 206
/Idieresis % 207
/Eth % 208
/Ntilde % 209
/Ograve % 210
/Oacute % 211
/Ocircumflex % 212
/Otilde % 213
/Odieresis % 214
/multiply % 215 % OE in T1
/Oslash % 216
/Ugrave % 217
/Uacute % 218
/Ucircumflex % 219
/Udieresis % 220
/Yacute % 221
/Thorn % 222
/germandbls % 223
/agrave % 224
/aacute % 225
/acircumflex % 226
/atilde % 227
/adieresis % 228
/aring % 229
/ae % 230
/ccedilla % 231
/egrave % 232
/eacute % 233
/ecircumflex % 234
/edieresis % 235
/igrave % 236
/iacute % 237
/icircumflex % 238
/idieresis % 239
/eth % 240
/ntilde % 241
/ograve % 242
/oacute % 243
/ocircumflex % 244
/otilde % 245
/odieresis % 246
/divide % 247 % oe in T1
/oslash % 248
/ugrave % 249
/uacute % 250
/ucircumflex % 251
/udieresis % 252
/yacute % 253
/thorn % 254
/ydieresis % 255 % germandbls in T1
] def
%%EndProcSet
%%BeginProcSet: 8r.enc
% @@psencodingfile@{
% author = "S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry",
% version = "0.6",
% date = "22 June 1996",
% filename = "8r.enc",
% email = "kb@@mail.tug.org",
% address = "135 Center Hill Rd. // Plymouth, MA 02360",
% codetable = "ISO/ASCII",
% checksum = "119 662 4424",
% docstring = "Encoding for TrueType or Type 1 fonts to be used with TeX."
% @}
%
% Idea is to have all the characters normally included in Type 1 fonts
% available for typesetting. This is effectively the characters in Adobe
% Standard Encoding + ISO Latin 1 + extra characters from Lucida.
%
% Character code assignments were made as follows:
%
% (1) the Windows ANSI characters are almost all in their Windows ANSI
% positions, because some Windows users cannot easily reencode the
% fonts, and it makes no difference on other systems. The only Windows
% ANSI characters not available are those that make no sense for
% typesetting -- rubout (127 decimal), nobreakspace (160), softhyphen
% (173). quotesingle and grave are moved just because it's such an
% irritation not having them in TeX positions.
%
% (2) Remaining characters are assigned arbitrarily to the lower part
% of the range, avoiding 0, 10 and 13 in case we meet dumb software.
%
% (3) Y&Y Lucida Bright includes some extra text characters; in the
% hopes that other PostScript fonts, perhaps created for public
% consumption, will include them, they are included starting at 0x12.
%
% (4) Remaining positions left undefined are for use in (hopefully)
% upward-compatible revisions, if someday more characters are generally
% available.
%
% (5) hyphen appears twice for compatibility with both ASCII and Windows.
%
/TeXBase1Encoding [
% 0x00 (encoded characters from Adobe Standard not in Windows 3.1)
/.notdef /dotaccent /fi /fl
/fraction /hungarumlaut /Lslash /lslash
/ogonek /ring /.notdef
/breve /minus /.notdef
% These are the only two remaining unencoded characters, so may as
% well include them.
/Zcaron /zcaron
% 0x10
/caron /dotlessi
% (unusual TeX characters available in, e.g., Lucida Bright)
/dotlessj /ff /ffi /ffl
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
% very contentious; it's so painful not having quoteleft and quoteright
% at 96 and 145 that we move the things normally found there down to here.
/grave /quotesingle
% 0x20 (ASCII begins)
/space /exclam /quotedbl /numbersign
/dollar /percent /ampersand /quoteright
/parenleft /parenright /asterisk /plus /comma /hyphen /period /slash
% 0x30
/zero /one /two /three /four /five /six /seven
/eight /nine /colon /semicolon /less /equal /greater /question
% 0x40
/at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O
% 0x50
/P /Q /R /S /T /U /V /W
/X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
% 0x60
/quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o
% 0x70
/p /q /r /s /t /u /v /w
/x /y /z /braceleft /bar /braceright /asciitilde
/.notdef % rubout; ASCII ends
% 0x80
/.notdef /.notdef /quotesinglbase /florin
/quotedblbase /ellipsis /dagger /daggerdbl
/circumflex /perthousand /Scaron /guilsinglleft
/OE /.notdef /.notdef /.notdef
% 0x90
/.notdef /.notdef /.notdef /quotedblleft
/quotedblright /bullet /endash /emdash
/tilde /trademark /scaron /guilsinglright
/oe /.notdef /.notdef /Ydieresis
% 0xA0
/.notdef % nobreakspace
/exclamdown /cent /sterling
/currency /yen /brokenbar /section
/dieresis /copyright /ordfeminine /guillemotleft
/logicalnot
/hyphen % Y&Y (also at 45); Windows' softhyphen
/registered
/macron
% 0xD0
/degree /plusminus /twosuperior /threesuperior
/acute /mu /paragraph /periodcentered
/cedilla /onesuperior /ordmasculine /guillemotright
/onequarter /onehalf /threequarters /questiondown
% 0xC0
/Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
/Egrave /Eacute /Ecircumflex /Edieresis
/Igrave /Iacute /Icircumflex /Idieresis
% 0xD0
/Eth /Ntilde /Ograve /Oacute
/Ocircumflex /Otilde /Odieresis /multiply
/Oslash /Ugrave /Uacute /Ucircumflex
/Udieresis /Yacute /Thorn /germandbls
% 0xE0
/agrave /aacute /acircumflex /atilde
/adieresis /aring /ae /ccedilla
/egrave /eacute /ecircumflex /edieresis
/igrave /iacute /icircumflex /idieresis
% 0xF0
/eth /ntilde /ograve /oacute
/ocircumflex /otilde /odieresis /divide
/oslash /ugrave /uacute /ucircumflex
/udieresis /yacute /thorn /ydieresis
] def
%%EndProcSet
%%BeginProcSet: tx8r.enc
% 8r.enc (0.6, 1-jul-98, by S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry) renamed
/TeXBase1Encoding [
/.notdef
/dotaccent
/fi
/fl
/fraction
/hungarumlaut
/Lslash
/lslash
/ogonek
/ring
/.notdef
/breve
/minus
/.notdef
/Zcaron
/zcaron
/caron
/dotlessi
/dotlessj
/ff
/ffi
/ffl
/.notdef
/.notdef
/.notdef
/.notdef
/.notdef
/.notdef
/.notdef
/.notdef
/grave
/quotesingle
/space
/exclam
/quotedbl
/numbersign
/dollar
/percent
/ampersand
/quoteright
/parenleft
/parenright
/asterisk
/plus
/comma
/hyphen
/period
/slash
/zero
/one
/two
/three
/four
/five
/six
/seven
/eight
/nine
/colon
/semicolon
/less
/equal
/greater
/question
/at
/A
/B
/C
/D
/E
/F
/G
/H
/I
/J
/K
/L
/M
/N
/O
/P
/Q
/R
/S
/T
/U
/V
/W
/X
/Y
/Z
/bracketleft
/backslash
/bracketright
/asciicircum
/underscore
/quoteleft
/a
/b
/c
/d
/e
/f
/g
/h
/i
/j
/k
/l
/m
/n
/o
/p
/q
/r
/s
/t
/u
/v
/w
/x
/y
/z
/braceleft
/bar
/braceright
/asciitilde
/.notdef
/.notdef
/.notdef
/quotesinglbase
/florin
/quotedblbase
/ellipsis
/dagger
/daggerdbl
/circumflex
/perthousand
/Scaron
/guilsinglleft
/OE
/.notdef
/.notdef
/.notdef
/.notdef
/.notdef
/.notdef
/quotedblleft
/quotedblright
/bullet
/endash
/emdash
/tilde
/trademark
/scaron
/guilsinglright
/oe
/.notdef
/.notdef
/Ydieresis
/.notdef
/exclamdown
/cent
/sterling
/currency
/yen
/brokenbar
/section
/dieresis
/copyright
/ordfeminine
/guillemotleft
/logicalnot
/hyphen
/registered
/macron
/degree
/plusminus
/twosuperior
/threesuperior
/acute
/mu
/paragraph
/periodcentered
/cedilla
/onesuperior
/ordmasculine
/guillemotright
/onequarter
/onehalf
/threequarters
/questiondown
/Agrave
/Aacute
/Acircumflex
/Atilde
/Adieresis
/Aring
/AE
/Ccedilla
/Egrave
/Eacute
/Ecircumflex
/Edieresis
/Igrave
/Iacute
/Icircumflex
/Idieresis
/Eth
/Ntilde
/Ograve
/Oacute
/Ocircumflex
/Otilde
/Odieresis
/multiply
/Oslash
/Ugrave
/Uacute
/Ucircumflex
/Udieresis
/Yacute
/Thorn
/germandbls
/agrave
/aacute
/acircumflex
/atilde
/adieresis
/aring
/ae
/ccedilla
/egrave
/eacute
/ecircumflex
/edieresis
/igrave
/iacute
/icircumflex
/idieresis
/eth
/ntilde
/ograve
/oacute
/ocircumflex
/otilde
/odieresis
/divide
/oslash
/ugrave
/uacute
/ucircumflex
/udieresis
/yacute
/thorn
/ydieresis
] def
%%EndProcSet
%%BeginProcSet: special.pro
%!
TeXDict begin/SDict 200 dict N SDict begin/@SpecialDefaults{/hs 612 N
/vs 792 N/ho 0 N/vo 0 N/hsc 1 N/vsc 1 N/ang 0 N/CLIP 0 N/rwiSeen false N
/rhiSeen false N/letter{}N/note{}N/a4{}N/legal{}N}B/@scaleunit 100 N
/@hscale{@scaleunit div/hsc X}B/@vscale{@scaleunit div/vsc X}B/@hsize{
/hs X/CLIP 1 N}B/@vsize{/vs X/CLIP 1 N}B/@clip{/CLIP 2 N}B/@hoffset{/ho
X}B/@voffset{/vo X}B/@angle{/ang X}B/@rwi{10 div/rwi X/rwiSeen true N}B
/@rhi{10 div/rhi X/rhiSeen true N}B/@llx{/llx X}B/@lly{/lly X}B/@urx{
/urx X}B/@ury{/ury X}B/magscale true def end/@MacSetUp{userdict/md known
{userdict/md get type/dicttype eq{userdict begin md length 10 add md
maxlength ge{/md md dup length 20 add dict copy def}if end md begin
/letter{}N/note{}N/legal{}N/od{txpose 1 0 mtx defaultmatrix dtransform S
atan/pa X newpath clippath mark{transform{itransform moveto}}{transform{
itransform lineto}}{6 -2 roll transform 6 -2 roll transform 6 -2 roll
transform{itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll
curveto}}{{closepath}}pathforall newpath counttomark array astore/gc xdf
pop ct 39 0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}
if}N/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1
-1 scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3
get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip
yflip not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub
neg 0 TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{
noflips{TR pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop
90 rotate 1 -1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get
neg sub neg TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr
1 get neg sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr
2 get ppr 0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4
-1 roll add 2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S
TR}if}N/cp{pop pop showpage pm restore}N end}if}if}N/normalscale{
Resolution 72 div VResolution 72 div neg scale magscale{DVImag dup scale
}if 0 setgray}N/psfts{S 65781.76 div N}N/startTexFig{/psf$SavedState
save N userdict maxlength dict begin/magscale true def normalscale
currentpoint TR/psf$ury psfts/psf$urx psfts/psf$lly psfts/psf$llx psfts
/psf$y psfts/psf$x psfts currentpoint/psf$cy X/psf$cx X/psf$sx psf$x
psf$urx psf$llx sub div N/psf$sy psf$y psf$ury psf$lly sub div N psf$sx
psf$sy scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub
TR/showpage{}N/erasepage{}N/copypage{}N/p 3 def @MacSetUp}N/doclip{
psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2
roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath
moveto}N/endTexFig{end psf$SavedState restore}N/@beginspecial{SDict
begin/SpecialSave save N gsave normalscale currentpoint TR
@SpecialDefaults count/ocount X/dcount countdictstack N}N/@setspecial{
CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto
closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx
sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR
}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse
CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury
lineto closepath clip}if/showpage{}N/erasepage{}N/copypage{}N newpath}N
/@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{end}
repeat grestore SpecialSave restore end}N/@defspecial{SDict begin}N
/@fedspecial{end}B/li{lineto}B/rl{rlineto}B/rc{rcurveto}B/np{/SaveX
currentpoint/SaveY X N 1 setlinecap newpath}N/st{stroke SaveX SaveY
moveto}N/fil{fill SaveX SaveY moveto}N/ellipse{/endangle X/startangle X
/yrad X/xrad X/savematrix matrix currentmatrix N TR xrad yrad scale 0 0
1 startangle endangle arc savematrix setmatrix}N end
%%EndProcSet
TeXDict begin 39158280 55380996 1000 600 600 (userguide.dvi)
@start
%DVIPSBitmapFont: Fa cmmi9 9 2
/Fa 2 63 df<171C177EEE01FEEE07FCEE1FF0EE7FC0923801FF00ED07FCED1FF0ED7FC0
4A48C7FCEC07FCEC1FF0EC7FC04948C8FCEB07FCEB1FF0EB7FC04848C9FCEA07FCEA1FF0
EA7FC048CAFCA2EA7FC0EA1FF0EA07FCEA01FF38007FC0EB1FF0EB07FCEB01FF9038007F
C0EC1FF0EC07FCEC01FF9138007FC0ED1FF0ED07FCED01FF9238007FC0EE1FF0EE07FCEE
01FEEE007E171C2F2E7AA93C>60 D<127012FCB4FCEA7FC0EA1FF0EA07FCEA01FF38007F
C0EB1FF0EB07FCEB01FF9038007FC0EC1FF0EC07FCEC01FF9138007FC0ED1FF0ED07FCED
01FF9238007FC0EE1FF0EE07FCEE01FEA2EE07FCEE1FF0EE7FC0923801FF00ED07FCED1F
F0ED7FC04A48C7FCEC07FCEC1FF0EC7FC04948C8FCEB07FCEB1FF0EB7FC04848C9FCEA07
FCEA1FF0EA7FC048CAFC12FC12702F2E7AA93C>62 D E
%EndDVIPSBitmapFont
%DVIPSBitmapFont: Fb cmtt8 5 73
/Fb 73 123 df<127012F8AE12701200A4127012F8A312700519789816>33
D<1238127C127EA2123E120EA3121E121C123C12F812F012E0070E799816>39
D<13E012011203EA0780EA0F00121E5A123812781270A212F05AA87E1270A21278123812
3C7E7EEA0780EA03E0120112000B20799C16>I<126012F012787E7E7EEA0780120313C0
1201A213E01200A8120113C0A2120313801207EA0F00121E5A5A5A12600B207D9C16>I<
EA0380A4EAE38EEAFBBEEAFFFEEA3FF8EA0FE0A2EA3FF8EAFFFEEAFBBEEAE38EEA0380A4
0F127D9516>I<123C127E127FA3123F120F120E121E127C12F81270080C798516>44
D<EA7FFFB51280A26C130011047E8E16>I<127812FCA412780606788516>I<1303EB0780
130FA2EB1F00A2133EA2133C137CA25BA2485AA2485AA2485AA2485AA248C7FCA2121E12
3EA25AA25AA25A126011207E9C16>I<EA03E0EA0FF8487EEA1E3CEA380EEA780FEA7007
A238E00380A8EAF00700701300A2EA780FEA3C1E6C5AEA1FFC6C5AEA03E011197E9816>
I<12035A5AA25AB4FCA212F71207AEEAFFF8A30D197B9816>I<EA07F0EA1FFC487EEA7C
1FEAF00714801303A21200A2130714005B131E5B5B5BEA03E0485A485A381E0380123CEA
7FFFB5FC7E11197E9816>I<EA0FF0EA1FFC487EEA781E7F7F123012005B133EEA07FCA2
7FEA001F130714801303126012F013071400EAF81FEA7FFE6C5AEA0FF011197E9816>I<
127812FCA412781200A6127812FCA412780612789116>58 D<123C127EA4123C1200A612
38127C127EA3123E120E121E123C127812F012600718799116>I<1303EB0F80131FEB7F
0013FEEA03F8485AEA0FC0EA3F8048C7FC12FCA2127F6C7EEA0FC0EA07F06C7EEA00FE13
7FEB1F80130FEB030011167E9716>I<387FFFC0B512E0A26C13C0C8FCA4387FFFC0B512
E0A26C13C0130C7F9216>I<126012F87E127F6C7EEA0FE06C7EEA01F8EA00FE137FEB1F
80A2EB7F0013FEEA01F8EA07F0485AEA3F8048C7FC12FC5A126011167E9716>I<EA1FF8
EA3FFE487E38F00F801303130738601F00EA007E5BEA01F0485A5BA45BC8FCA4EA038048
7EA36C5A11197E9816>I<13E0487EA213B0A2EA03B8A31318EA071CA4EA0E0EA3EA0FFE
A2487EEA1C07A3387E0FC038FF1FE0387E0FC013197F9816>65 D<EA7FF8EAFFFE6C7EEA
1C0714801303A4EB0700EA1FFF5BA2EA1C1FEB038014C01301A41303EB0780EA7FFFB512
00EA7FFC12197F9816>I<3803F380EA07FF5AEA1E1FEA3C07EA78031270A200F0C7FC5A
A77E38700380A21278EA3C07381E1F00EA0FFE6C5AEA03F011197E9816>I<EAFFF013FC
7FEA381E7FEB07801303A214C01301A8EB0380A21307EB0F005BEAFFFE5B13F012197F98
16>I<387FFFC0B5FC7EEA1C01A490C7FCA2131CA2EA1FFCA3EA1C1CA290C7FC14E0A5EA
7FFFB5FC7E13197F9816>I<387FFFE0B5FC7EEA1C00A41400A2131CA2EA1FFCA3EA1C1C
A290C7FCA6EA7F80487E6C5A13197F9816>I<3803F380EA07FF5AEA1E1FEA3C07EA7803
1270A200F0C7FC5AA4EB1FC014E014C038F00380127013071278EA3C0FEA1E1FEA0FFFEA
07FBEA03F313197F9816>I<387F07F038FF8FF8387F07F0381C01C0A7EA1FFFA3EA1C01
A9387F07F038FF8FF8387F07F01519809816>I<EA7FFCEAFFFEEA7FFCEA0380B3EA7FFC
EAFFFEEA7FFC0F197D9816>I<48B4FC4813806C1300EA001CB0126012F0137CB45A6C5A
EA1FC011197E9816>I<B47E7F5B001CC7FCAE144014E0A4B5FCA313197F9816>76
D<38FC07E0EAFE0FA2383A0B80EA3B1BA413BBA2EA39B3A413F3EA38E3A21303A538FE0F
E0A313197F9816>I<387E07F038FF0FF8387F07F0381D81C0A313C1121C13E1A2136113
71A313311339A21319131D130DA3EA7F07EAFF87EA7F031519809816>I<EA1FFC487E48
7EEA780F38F00780EAE003AEEAF007A238780F00EA7FFF6C5A6C5A11197E9816>I<EA7F
F8EAFFFE6C7E381C0F80130314C01301A313031480130F381FFF005B13F8001CC7FCA712
7F487E6CC7FC12197F9816>I<EA1FFC487E487EEA780F38F00780EAE003AD13E312E1EA
F0F738787F00EA7FFF6C5A6C5AEA001C131E130E130F7FA2111F7E9816>I<EA7FF0EAFF
FC6C7EEA1C0FEB07801303A41307EB0F00EA1FFE5B7FEA1C1F1307A414101438A2007F13
F838FF83F0387F01E01519809816>I<EA0FF748B4FC5AEA781F487E487EA290C7FC7E12
78EA3F80EA1FF86C7EC67E130FEB07801303A2126012E0130738F80F00EAFFFE5BEAEFF8
11197E9816>I<387FFFE0B5FCA2EAE0E0A400001300AFEA07FC487E6C5A13197F9816>I<
387F07F038FF8FF8387F07F0381C01C0B0EA1E03000E1380EA0F8F3807FF006C5AEA00F8
1519809816>I<38FE0FE0A338380380EA3C07001C1300A3EA1E0FEA0E0EA46C5AA4EA03
1813B8A3EA01B013F0A26C5A13197F9816>I<387E03F038FF07F8387E03F0383800E0A4
381C01C0A3137113F9A213D9A2000C1380A3EA0DDD138DA3EA0F8F000713001307151980
9816>I<387F1F80EB3FC0EB1F80380E1E00131C12075BEA03B813F012015B120012017F
120313B81207131C120FEA0E0EA2487E387E0FC038FF1FE0387E0FC013197F9816>I<38
FE0FE0A3381C0700A2EA0E0EA26C5AA3EA03B8A2EA01F0A26C5AA8EA03F8487E6C5A1319
7F9816>I<EAFFF0A3EAE000B3A8EAFFF0A30C20789C16>91 D<EAFFF0A3EA0070B3A8EA
FFF0A30C207F9C16>93 D<1207EA1FC0EA7FF0EAFDF8EAF078EA40100D067C9816>I<EA
7FFFB51280A26C130011047E7F16>I<EA1FE0EA3FF8487EEA783CEA301EEA000EEA03FE
121F123FEA7E0E12F012E0A2EAF01EEA783E387FFFE0EA3FF7EA0FE313127E9116>97
D<12FCA3121CA413FCEA1FFE7FEB8780381E03C01301001C13E01300A4EA1E0114C01303
381F8F80EBFF005BEA0CF813197F9816>I<EA03F8EA0FFCEA1FFEEA3E1EEA780CEA7000
12F05AA47EEA70071278EA3E1FEA1FFEEA0FFCEA03F010127D9116>I<133FA31307A4EA
03F7EA0FFF5AEA3E1FEA780F1270EAF00712E0A46C5A1270EA781F6C5A381FFFE07EEA07
E713197F9816>I<EA03F0EA0FFC487EEA3E1FEA780700701380EAF003B5FCA300E0C7FC
7E387003801278EA3E0F381FFF006C5AEA03F811127E9116>I<137FEBFF805AEA03C7EB
83001380A2EA7FFFB5FCA2EA0380ACEA7FFCA311197F9816>I<3803E7C0380FFFE05A38
1E3CC0383C1E00EA380EA3EA3C1E6C5AEA1FFC485AEA3BE00038C7FC123CEA1FFE487E48
1380387803C038F001E0EAE000A3EAF001387C07C0383FFF806C1300EA07FC131C7F9116
>I<12FCA3121CA413FCEA1FFEA2138FEA1E07A2121CA938FF8FE0139F138F13197F9816>
I<1207EA0F80A3EA0700C7FCA3EAFF80A31203ACEAFFFC13FE13FC0F1A7C9916>I<1370
13F8A313701300A3EA0FF8121F120FEA0038B3EA6078EAF0F0EAFFE0EA7FC0EA3F800D23
7E9916>I<127E12FE127E120EA4EB3FE0137F133FEB0F00131E5B5B5BEA0FF8A213BC13
1EEA0E0E130FEB0780387F87F0EAFFCFEA7F871419809816>I<EA7FC012FF127F1201B3
EA7FFFB512806C130011197E9816>I<38FBC78038FFEFC0EBFFE0EA3E7CEA3C78A2EA38
70A938FE7CF8A31512809116>I<EAFCFCB47EA2EA1F8FEA1E07A2121CA938FF8FE0139F
138F13127F9116>I<EA03E0EA0FF8487EEA3C1E487EEA700738E00380A5EAF007007013
00EA780FEA3C1EEA1FFC6C5AEA03E011127E9116>I<EAFCFCB47E7F381F8780381E03C0
1301001C13E01300A4EA1E0114C01303381F8F80EBFF005BEA1CF890C7FCA6B47EA3131B
7F9116>I<3803F380EA0FFF5AEA3E1FEA780FEA7007EAF00312E0A4EAF0071270EA780F
EA3E1FEA1FFFEA0FFBEA03F3EA0003A6EB1FF0A3141B7F9116>I<387F0FC038FF3FE0EA
7F7FEA07F9EBE0C0EBC0005BA290C7FCA7EA7FF8487E6C5A13127F9116>I<EA1FFC123F
127FEAF03CEAE01CA2EAF800EA7FC0EA3FF8EA0FFCEA007EEA600E12E012F0EAF83EEAFF
FC13F8EAEFE00F127D9116>I<12035AA4EA7FFFB5FCA20007C7FCA75BEB0380A3138738
03FF006C5A6C5A11177F9616>I<EAFC3FA3EA1C07AA5B5B381FFFE07EEA07F713127F91
16>I<387F1FC038FF9FE0387F1FC0381C0700A2EA0E0EA36C5AA4EA03B8A3EA01F0A26C
5A13127F9116>I<38FF1FE0A338380380A4EA39F3A20019130013B3A3EA1BBB131BEA1F
1FEA0F1EEA0E0E13127F9116>I<387F1FC0133F131F380F1E006C5AEA03B813F012016C
5A12017FEA03B8EA073C131CEA0E0E387F1FC038FF3FE0387F1FC013127F9116>I<387F
1FC038FF9FE0387F1FC0381C0700120E130EA212075BA2EA039CA21398EA01B8A213F012
00A25BA3485A1279EA7B80127F90C7FC123C131B7F9116>I<383FFFC05AA238700780EB
0F00131EC65A13F8485A485A485A48C7FC381E01C0123C1278B5FCA312127F9116>I
E
%EndDVIPSBitmapFont
%DVIPSBitmapFont: Fc cmmi7 7 1
/Fc 1 106 df<130E131F5BA2133E131C90C7FCA7EA03E0487EEA0C78EA187C1230A212
605B12C0A2EA01F0A3485AA2485AA2EBC180EA0F81A2381F0300A213066C5A131CEA07F0
6C5A11287DA617>105 D E
%EndDVIPSBitmapFont
%DVIPSBitmapFont: Fd cmmi12 12 2
/Fd 2 111 df<01F8D903FCEC7F80D803FED91FFF903803FFE0D8071F903B7C0FC00F81
F83E0E0F80E007E01C00FC001C9026C3C0030178137C271807C700D9F0E0137E02CE9026
01F1C0133E003801DCDAFB80133F003001D892C7FCD90FF814FF0070495C0060495CA200
E04949485CD8C01F187E4A5C1200040715FE013F6091C75BA2040F14014960017E5D1903
041F5D13FE494B130762043F160E0001060F130C4992C713C0191F4CED801C00031A1849
027E1638F2003004FE167000071A60494A16E0F201C0030192380F0380000FF18700494A
EC03FED80380D90070EC00F84F2D7DAB55>109 D<01F8EB03FCD803FEEB1FFFD8071F90
387C0FC03B0E0F80E007E03A0C07C3C003001CD9C7007F001801CE1301003801DC800030
13D8EB0FF800705B00605BA200E0491303D8C01F5D5C12001607013F5D91C7FCA2160F49
5D137E161F5F13FE49143F94C7FC187000014B136049147E16FE4C13E0000317C0491501
04F81380170300071700495D170EEE781C000FED7C3849EC1FF0D80380EC07C0342D7DAB
3A>I E
%EndDVIPSBitmapFont
%DVIPSBitmapFont: Fe cmtt12 12 20
/Fe 20 119 df<91391FE00780DAFFFC13C00103EBFF0F010F148F4914FF5B90387FF81F
9038FFC00748497E4848487E497F485A167F485A49143F121F5B003F151F5BA2127F90C8
EA0F8093C7FCA25A5AAD7E7EA36DEC0F80003FED1FC0A27F121F7F000F153F6D15806C7E
167F6C6CECFF007F3A01FF8003FE6C6D485A90397FF81FF86DB55A6D5C6D5C010391C7FC
010013FCEC1FE02A3F7CBD33>67 D<91387F803C903901FFF03E0107EBFC7E011F13FE49
EBFFFE5B9038FFE07F48EB803FEC000FEA03FC00071407491303485A491301121F5B123F
491300A2127F90C8FC167C93C7FCA25A5AA992387FFFC092B512E0A37E6C6E13C0923800
FE00A36D1301123FA27F121F6D1303120F7F6C6C1307A26C6C130F6C6C131F9038FF803F
6CEBE0FF6DB5FC7F6D13FE010713F80101EBF07C9026007F80C7FC2B3F7CBD33>71
D<003FB612804815C0B712E0A26C15C06C1580260003F8C7FCB3B3AD003FB612804815C0
B712E0A26C15C06C1580233D78BC33>73 D<D83FF8EC1FFC486CEC3FFE486CEC7FFFA200
7F16FE6C6CECFFFC000716E001EF14F7EC8001A39039E7C003E7A3ECE007A201E314C7A2
ECF00FA201E11487ECF81FA201E01407A2ECFC3FA2EC7C3E157E147EEC3E7CA3EC1E78EC
1FF8A2EC0FF0A3EC07E0EC03C091C7FCAED83FFCEC3FFC486CEC7FFEB591B5FCA26C48EC
7FFE6C48EC3FFC303D7FBC33>77 D<003FB712F84816FCB8FCA43AFE000FE001A8007CED
00F8C71500B3B3A40107B512C049804980A26D5C6D5C2E3D7EBC33>84
D<D87FFF903803FFF8B56C4813FCA46C496C13F8D807F09038003F806D147F00031600A3
6D5C00015DA46C6C495AA46D13036D5CA3EC8007013F5CA3ECC00F011F5CA46D6C485AA4
6D6C485AA4010391C7FC6E5AA30101137EA2ECFCFEA201005BA5EC7FF8A46E5AA26E5A6E
5A2E3E7EBC33>86 D<EB1FFC90B57E000314E048804814FC48809038F007FFEBE0016E7F
153F6C48806C48131FC87F150FA5EC0FFF49B5FC131F137F48B6FC0007140F4813C0381F
FC00EA3FF0EA7FC05B48C7FC5AA56C141F7E6D137FD83FE0497ED9F807EBFFF06CB712F8
7E6C14F36C14C1C69138003FF0D91FF090C7FC2D2E7BAC33>97 D<ECFFF0010713FE011F
EBFF804914C04914E048B612F048EBC01F9038FE000F485A485A4848EB07E049EB03C048
4890C7FC5BA2127F90C9FCA25A5AA97E7EA27F003FEC01F06DEB03F86C7E6D13076C6C14
F06C6C130F01FFEB1FE06CEBE07F6C90B512C06C1580013F14006D13FC01075B010013C0
252E79AC33>99 D<ECFF80010713F0011F13FC497F90B6FC48158048018013C03A07FE00
3FE001F8EB0FF048481307484814F8491303003F15FC491301127F90C7FC16FE15005A5A
B7FCA516FC48C9FC7E7EA36C7E167C6C6C14FE7F6C7E6D13016C6CEB03FC6CB4130F6C90
38C03FF86C90B512F06D14E06D14C0010F1400010313FC9038007FE0272E7BAC33>101
D<ED3FE0913801FFFC020713FE141F4A13FF5CECFFC015004948137E4A133C010314005C
A8003FB612F84815FCB7FCA36C15F8260003F8C7FCB3AD003FB612804815C0A46C158028
3E7DBD33>I<D901FEEB1FE0903A0FFFC0FFF0013F01F313F84990B512FC90B7FC5A4801
0313E12607FC00EB80F849017F1360484890383FC00049131FA2001F8149130FA66D131F
000F5DA26D133F6C6C495A6D13FF2603FF0390C7FCECFFFE485C5D5DD80FCF13C0D981FE
C8FC0180C9FCA27FA26C7E7F90B512FC6CECFFC06C15F0000715FC4815FF4816809038E0
000748489038007FC090C8EA1FE048150F007E150700FE16F0481503A56C1507007E16E0
007F150F6C6CEC1FC001E0147FD81FF8903801FF80270FFF801F13006C90B55A6C5DC615
F0013F14C0010F91C7FC010013F02E447DAB33>I<14E0EB03F8A2497EA36D5AA2EB00E0
91C8FCAA383FFFF8487FA47EEA0001B3AD007FB612C0B712E016F0A216E06C15C0243E78
BD33>105 D<383FFFFC487FB5FCA27E7EC7FCB3B3AD003FB612F84815FCB712FEA26C15
FC6C15F8273D7ABC33>108 D<02FC137E3B7FC3FF01FF80D8FFEF01877F90B500CF7F15