-
Notifications
You must be signed in to change notification settings - Fork 3.3k
8000
37
10000
/
Copy pathdiagram1.eps
1511 lines (1511 loc) · 45.4 KB
/
diagram1.eps
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
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-3.0 EPSF-3.0
%Produced by poppler pdftops version: 0.20.5 (http://poppler.freedesktop.org)
%%Creator: David M. Jones
%%LanguageLevel: 2
%%DocumentSuppliedResources: (atend)
%%BoundingBox: 137 493 324 667
%%HiResBoundingBox: 137.564 493.748 323.524 666.999
%%DocumentSuppliedResources: (atend)
%%EndComments
%%BeginProlog
%%BeginResource: procset xpdf 3.00 0
%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC
/xpdf 75 dict def xpdf begin
% PDF special state
/pdfDictSize 15 def
/pdfSetup {
/setpagedevice where {
pop 2 dict begin
/Policies 1 dict dup begin /PageSize 6 def end def
{ /Duplex true def } if
currentdict end setpagedevice
} {
pop
} ifelse
} def
/pdfSetupPaper {
2 array astore
/setpagedevice where {
pop 2 dict begin
/PageSize exch def
/ImagingBBox null def
currentdict end setpagedevice
} {
pop
} ifelse
} def
/pdfStartPage {
pdfDictSize dict begin
/pdfFillCS [] def
/pdfFillXform {} def
/pdfStrokeCS [] def
/pdfStrokeXform {} def
/pdfFill [0] def
/pdfStroke [0] def
/pdfFillOP false def
/pdfStrokeOP false def
/pdfLastFill false def
/pdfLastStroke false def
/pdfTextMat [1 0 0 1 0 0] def
/pdfFontSize 0 def
/pdfCharSpacing 0 def
/pdfTextRender 0 def
/pdfPatternCS false def
/pdfTextRise 0 def
/pdfWordSpacing 0 def
/pdfHorizScaling 1 def
/pdfTextClipPath [] def
} def
/pdfEndPage { end } def
% PDF color state
/cs { /pdfFillXform exch def dup /pdfFillCS exch def
setcolorspace } def
/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def
setcolorspace } def
/sc { pdfLastFill not { pdfFillCS setcolorspace } if
dup /pdfFill exch def aload pop pdfFillXform setcolor
/pdfLastFill true def /pdfLastStroke false def } def
/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if
dup /pdfStroke exch def aload pop pdfStrokeXform setcolor
/pdfLastStroke true def /pdfLastFill false def } def
/op { /pdfFillOP exch def
pdfLastFill { pdfFillOP setoverprint } if } def
/OP { /pdfStrokeOP exch def
pdfLastStroke { pdfStrokeOP setoverprint } if } def
/fCol {
pdfLastFill not {
pdfFillCS setcolorspace
pdfFill aload pop pdfFillXform setcolor
pdfFillOP setoverprint
/pdfLastFill true def /pdfLastStroke false def
} if
} def
/sCol {
pdfLastStroke not {
pdfStrokeCS setcolorspace
pdfStroke aload pop pdfStrokeXform setcolor
pdfStrokeOP setoverprint
/pdfLastStroke true def /pdfLastFill false def
} if
} def
% build a font
/pdfMakeFont {
4 3 roll findfont
4 2 roll matrix scale makefont
dup length dict begin
{ 1 index /FID ne { def } { pop pop } ifelse } forall
/Encoding exch def
currentdict
end
definefont pop
} def
/pdfMakeFont16 {
exch findfont
dup length dict begin
{ 1 index /FID ne { def } { pop pop } ifelse } forall
/WMode exch def
currentdict
end
definefont pop
} def
% graphics state operators
/q { gsave pdfDictSize dict begin } def
/Q {
end grestore
/pdfLastFill where {
pop
pdfLastFill {
pdfFillOP setoverprint
} {
pdfStrokeOP setoverprint
} ifelse
} if
} def
/cm { concat } def
/d { setdash } def
/i { setflat } def
/j { setlinejoin } def
/J { setlinecap } def
/M { setmiterlimit } def
/w { setlinewidth } def
% path segment operators
/m { moveto } def
/l { lineto } def
/c { curveto } def
/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
neg 0 rlineto closepath } def
/h { closepath } def
% path painting operators
/S { sCol stroke } def
/Sf { fCol stroke } def
/f { fCol fill } def
/f* { fCol eofill } def
% clipping operators
/W { clip newpath } def
/W* { eoclip newpath } def
/Ws { strokepath clip newpath } def
% text state operators
/Tc { /pdfCharSpacing exch def } def
/Tf { dup /pdfFontSize exch def
dup pdfHorizScaling mul exch matrix scale
pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put
exch findfont exch makefont setfont } def
/Tr { /pdfTextRender exch def } def
/Tp { /pdfPatternCS exch def } def
/Ts { /pdfTextRise exch def } def
/Tw { /pdfWordSpacing exch def } def
/Tz { /pdfHorizScaling exch def } def
% text positioning operators
/Td { pdfTextMat transform moveto } def
/Tm { /pdfTextMat exch def } def
% text string operators
/xyshow where {
pop
/xyshow2 {
dup length array
0 2 2 index length 1 sub {
2 index 1 index 2 copy get 3 1 roll 1 add get
pdfTextMat dtransform
4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put
} for
exch pop
xyshow
} def
}{
/xyshow2 {
currentfont /FontType get 0 eq {
0 2 3 index length 1 sub {
currentpoint 4 index 3 index 2 getinterval show moveto
2 copy get 2 index 3 2 roll 1 add get
pdfTextMat dtransform rmoveto
} for
} {
0 1 3 index length 1 sub {
currentpoint 4 index 3 index 1 getinterval show moveto
2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
pdfTextMat dtransform rmoveto
} for
} ifelse
pop pop
} def
} ifelse
/cshow where {
pop
/xycp {
0 3 2 roll
{
pop pop currentpoint 3 2 roll
1 string dup 0 4 3 roll put false charpath moveto
2 copy get 2 index 2 index 1 add get
pdfTextMat dtransform rmoveto
2 add
} exch cshow
pop pop
} def
}{
/xycp {
currentfont /FontType get 0 eq {
0 2 3 index length 1 sub {
currentpoint 4 index 3 index 2 getinterval false charpath moveto
2 copy get 2 index 3 2 roll 1 add get
pdfTextMat dtransform rmoveto
} for
} {
0 1 3 index length 1 sub {
currentpoint 4 index 3 index 1 getinterval false charpath moveto
2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
pdfTextMat dtransform rmoveto
} for
} ifelse
pop pop
} def
} ifelse
/Tj {
fCol
0 pdfTextRise pdfT
A3D4
extMat dtransform rmoveto
currentpoint 4 2 roll
pdfTextRender 1 and 0 eq {
2 copy xyshow2
} if
pdfTextRender 3 and dup 1 eq exch 2 eq or {
3 index 3 index moveto
2 copy
currentfont /FontType get 3 eq { fCol } { sCol } ifelse
xycp currentpoint stroke moveto
} if
pdfTextRender 4 and 0 ne {
4 2 roll moveto xycp
/pdfTextClipPath [ pdfTextClipPath aload pop
{/moveto cvx}
{/lineto cvx}
{/curveto cvx}
{/closepath cvx}
pathforall ] def
currentpoint newpath moveto
} {
pop pop pop pop
} ifelse
0 pdfTextRise neg pdfTextMat dtransform rmoveto
} def
/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0
pdfTextMat dtransform rmoveto } def
/TJmV { 0.001 mul pdfFontSize mul neg 0 exch
pdfTextMat dtransform rmoveto } def
/Tclip { pdfTextClipPath cvx exec clip newpath
/pdfTextClipPath [] def } def
/Tclip* { pdfTextClipPath cvx exec eoclip newpath
/pdfTextClipPath [] def } def
% Level 2/3 image operators
/pdfImBuf 100 string def
/pdfImStr {
2 copy exch length lt {
2 copy get exch 1 add exch
} {
()
} ifelse
} def
/skipEOD {
{ currentfile pdfImBuf readline
not { pop exit } if
(%-EOD-) eq { exit } if } loop
} def
/pdfIm { image skipEOD } def
/pdfImM { fCol imagemask skipEOD } def
/pr { 2 index 2 index 3 2 roll putinterval 4 add } def
/pdfImClip {
gsave
0 2 4 index length 1 sub {
dup 4 index exch 2 copy
get 5 index div put
1 add 3 index exch 2 copy
get 3 index div put
} for
pop pop rectclip
} def
/pdfImClipEnd { grestore } def
% shading operators
/colordelta {
false 0 1 3 index length 1 sub {
dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt {
pop true
} if
} for
exch pop exch pop
} def
/funcCol { func n array astore } def
/funcSH {
dup 0 eq {
true
} {
dup 6 eq {
false
} {
4 index 4 index funcCol dup
6 index 4 index funcCol dup
3 1 roll colordelta 3 1 roll
5 index 5 index funcCol dup
3 1 roll colordelta 3 1 roll
6 index 8 index funcCol dup
3 1 roll colordelta 3 1 roll
colordelta or or or
} ifelse
} ifelse
{
1 add
4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch
6 index 6 index 4 index 4 index 4 index funcSH
2 index 6 index 6 index 4 index 4 index funcSH
6 index 2 index 4 index 6 index 4 index funcSH
5 3 roll 3 2 roll funcSH pop pop
} {
pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul
funcCol sc
dup 4 index exch mat transform m
3 index 3 index mat transform l
1 index 3 index mat transform l
mat transform l pop pop h f*
} ifelse
} def
/axialCol {
dup 0 lt {
pop t0
} {
dup 1 gt {
pop t1
} {
dt mul t0 add
} ifelse
} ifelse
func n array astore
} def
/axialSH {
dup 0 eq {
true
} {
dup 8 eq {
false
} {
2 index axialCol 2 index axialCol colordelta
} ifelse
} ifelse
{
1 add 3 1 roll 2 copy add 0.5 mul
dup 4 3 roll exch 4 index axialSH
exch 3 2 roll axialSH
} {
pop 2 copy add 0.5 mul
axialCol sc
exch dup dx mul x0 add exch dy mul y0 add
3 2 roll dup dx mul x0 add exch dy mul y0 add
dx abs dy abs ge {
2 copy yMin sub dy mul dx div add yMin m
yMax sub dy mul dx div add yMax l
2 copy yMax sub dy mul dx div add yMax l
yMin sub dy mul dx div add yMin l
h f*
} {
exch 2 copy xMin sub dx mul dy div add xMin exch m
xMax sub dx mul dy div add xMax exch l
exch 2 copy xMax sub dx mul dy div add xMax exch l
xMin sub dx mul dy div add xMin exch l
h f*
} ifelse
} ifelse
} def
/radialCol {
dup t0 lt {
pop t0
} {
dup t1 gt {
pop t1
} if
} ifelse
func n array astore
} def
/radialSH {
dup 0 eq {
true
} {
dup 8 eq {
false
} {
2 index dt mul t0 add radialCol
2 index dt mul t0 add radialCol colordelta
} ifelse
} ifelse
{
1 add 3 1 roll 2 copy add 0.5 mul
dup 4 3 roll exch 4 index radialSH
exch 3 2 roll radialSH
} {
pop 2 copy add 0.5 mul dt mul t0 add
radialCol sc
encl {
exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
0 360 arc h
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
360 0 arcn h f
} {
2 copy
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a1 a2 arcn
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a2 a1 arcn h
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a1 a2 arc
dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
a2 a1 arc h f
} ifelse
} ifelse
} def
end
%%EndResource
%%EndProlog
%%BeginSetup
xpdf begin
%%BeginResource: font CMMI12
%!FontType1-1.0: CMMI12
12 dict begin
/FontInfo 10 dict dup begin
/Notice (Copyright \(c\) 1997, 2009 American Mathematical Society \(<htt\
p://www.ams.org>\), with Reserved Font Name CMMI12.) readonly def
/FullName (CMMI12) readonly def
/FamilyName (Computer Modern) readonly def
/isFixedPitch false def
/ItalicAngle 0 def
/UnderlinePosition 0 def
/UnderlineThickness 0 def
end readonly def
/FontName /CMMI12 def
/PaintType 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] readonly def
/FontBBox [0 -204 546 704] readonly def
/StrokeWidth 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 58 /period put
dup 97 /a put
dup 98 /b put
dup 99 /c put
dup 100 /d put
dup 101 /e put
dup 102 /f put
dup 116 /t put
readonly def
currentdict end
currentfile eexec
5AA4F71255501637F1A431BAB555283D093E1B588B45B0281559110D21315C62
BD638C6B34BA54AA75227715D9947EBCD51A104CAEA657499E94138F5645BF68
368BB1B1EC8E4776F067FFF2CE9B89FB7E63A7DB304498C1036D399C47A4CB79
BD517EDB02BEB90195FD7DDAF3E839BCE2DB156D9337DBB2305A465B3E0FFB97
1985C79DC71C47E26F9F0F042B2CDEE97B679358059256FB93D662D43C7ECB5B
1A564DFCECB963478373C69F52172F071E0AA6082A3E10D9E1CE2851CFA210EE
7BD5FCB1AAE15E89D1FB339D587D218B89C18A32F47C7451A80CB1FC07CF5EF6
F95CB8F8CEBD4396C74A303DCB3A46C281B472F99892DCADA5FC6E4C2524AE72
569652A7D664B73CC839B5405D299F805DA5E9FE5C41F969093CFD7B26C9805B
6EC2DA5C4EA81C285458F5CCCDC02F82AC0E127BDB8F9E0A94383740D13431F8
554EF5B7648E7C56F5F38740D67CB57E0007961013F2F16CDB5BA3F5C1414F66
AECF5AFFA42AA51168B07908FD53D54A2CFEF17624741ECA22F762668577928E
A61319574763F67164F0656C3172F6B7853344123F91691E52FD4E723417D9F3
EB642901FCED7D6296C8BE8E67EEB272C0883222A18070B29E8CDBBA4AE45FD6
58950268EA2474D8E6742EFE7A032BD82D7F945D326FD51CDC5688FC3A629F2E
874E6E2EC5DA77BE1D3005300E284AAC1517A1718F8989913EDB8C4BF8212A44
BC78EEC4AE5743D973236B8397C80482AA90F2ED9CC0A96970254E87107A5881
4DC8E0E0D1005E02BA9CCAAF1D6F2C1F2FD3DC2956F047BB8426C153D4CAC113
58242E93414C3E1AB8E0D07A86A990D37202174417C6A139C8FA24147CC6453A
5D8D4E4D10A97A3BC7B3D73F78AF4625C41D92064F33FCA97768B196AC1A44A2
368F1D48A3F92D5A2FA6C815D9E1F9CA27AA86FF4F581171041D2C47353C9A94
68A59ADFA999091DDE80B09F1DC5734CA7122A87B0D26AC3F79B574579D1CEFD
6489E20204DEFB7735B5415FB7322340EE68BD07946352AB1395C409981CEE57
E0154B00DF552A70D300D55ECC7C1F5E2792FCD6699B8D75BC1C56F313E898C2
8D0BAE6CFC412F45EDAF422C91E5DB1036AC38B7E1B03A59DB240E5162B6B89B
9C83F5DA3E8D30247347B1A4F842BCFD0659EDE35B8B559996882FAFB0225B64
EB7BC323D47D127207514FA3EFC89FD323BF575BC1BC198DAD6970E6F9827E24
C4E762921A04C7DA30E1FCA11DDCFAD89B4DC31A12AA448A3F23C05AB75B4BB4
17693FDF3D14039717150215EA2B0A9C9C4B4AFC9856D39CF4D5844625035E66
7334A02D76EC50B77326F8E97604ECAE8AD8E1143BB9F432C3D1CC427FA024E4
149557455DDA3F00340743F0E835ABFAF04D7735605EB102C8E470F93F196557
3552821889A92C5AE1F4095F8B6A85F6D6BF26CB459485C01C300116DB226B0E
EE0155D763924377C2319DD3131AFF08B3558C8D0AC7832F9D0B5BBB3AC0082A
81956733F3EE24F99C968993FF315141470E3544287E4133EC0D54D91464FAEE
00C02B444F8C4C7F0153D9C1571F0C4AA21F6EF627F940300D96C9F6E2A1F114
636DB886F46C90698EAC3108370CB2F2906B579F4827B4DD0F2153FDE914047C
42E015052B10B83CAA88443E51433AD90A43F0870968BE080CAB899323193AFA
06C0A7838834A3CCCBAA073D8DD436ABA471E4E8FCE8F8FD5710B94AC6A174A6
E713428FCF025D7D8A1ABD5A9E93348137C1B2E1F09F3DA5A7F9274E338D8A9B
7603F5BFB1B5B7CE1A625147324486178FA6E7C431AE2169682DFD7AD4A48A03
599ECAB94296D776EC31517B2FD201296F9908D650CB9B7E39D5CA381A0CB511
4715545156EDA21835921A909B37C268B0DDCD2D5B925DFC31526FDF72E39AA7
22194898ABC7208E41F965D5E72D30558EE37A93DB259EDC111C2A6F4D1CEDB2
DF0F5F5FC70C03E8AFCBC2FDAA034DEE2607C4530BFEF80134E27CE5872EAF52
CE20115060B5859EC45512CFC604A190F76CAFE3FF51A937A226EC09A1D1A4FB
0E90D0D3EBA6B735E0B249EF8A8401153283275D9C47E6CBA812FBB5A48D32E7
0ABE432DF21A109C49E3053F80F45B79105423D0DA1536F8769FDEA57F055F5C
BE29F1A75AF8D34568F3D1BA79BCE3B30E12DA2D0D235D2CA1A6EAFC503A038D
48C93A23FB40E35A54A291AC408FAEC4FA0E55F709FBDCC295042B3D3EE78210
FE8672F6D23375281AEBE5BA8898AABBC706C55B73BCE086572A897E40144768
E1F8792FB56357F243D9BDB26411CED8067B643C42547877258A7FAE7F213BA3
5E8224F0F7B1FD76F1458F7B211FBDEBCE719D41B9DF0F18EA16F80F27676E77
E92A7C5A45064CCD32B58395C1B6E2902EFAB1B034527630F5E0ACC2A4C81DE3
421D2D9EA4B11295DB3ECF6013F58B77E9C0A57728CB2C28BCC1BD8103B435D8
692EF8F92835FE370A5491F91EE156B7A39366D7C7ECAD22AE4F9CEE3B8FE06C
DF5E847DBEAD533D5C7171D7E9BE5B0AB30B018BE4C18DAF1ACB5BFF20041D39
81DD2506040BDB939E98165AA00D658D5C96B484626AE961A90E6473124519FB
557B66CA60BD
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndResource
/F14_0 /CMMI12 1 1
[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
/zero/one/two/three/four/five/six/seven
/eight/nine/period/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
/grave/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/bullet
/Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
/circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet
/bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
/tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis
/space/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]
pdfMakeFont
%%BeginResource: font CMMI8
%!FontType1-1.0: CMMI8
12 dict begin
/FontInfo 10 dict dup begin
/Notice (Copyright \(c\) 1997, 2009 American Mathematical Society \(<htt\
p://www.ams.org>\), with Reserved Font Name CMMI8.) readonly def
/FullName (CMMI8) readonly def
/FamilyName (Computer Modern) readonly def
/isFixedPitch false def
/ItalicAngle 0 def
/UnderlinePosition 0 def
/UnderlineThickness 0 def
end readonly def
/FontName /CMMI8 def
/PaintType 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] readonly def
/FontBBox [0 -10 612 694] readonly def
/StrokeWidth 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 107 /k put
dup 110 /n put
readonly def
currentdict end
currentfile eexec
5AA4F71255501637F1A431BAB555283D093E1B588B45B0281559110D21315C62
BD638C6B34BA54AA75227715D9947EBCD51A104CAEA657499E94138F5645BF68
368BB1B1EC8E4776F067FFF2CE9B89FB7E63A7DB304498C1036D399C47A4CB79
BD517EDB02BEB90195FD7DDAF3E839BCE2DB156D9337DBB2305A465B3E0FFB97
1985C79DC71C47E26F9F0F042B2CDEE97B679358059256FB93D662D43C7ECB5B
1A564DFCECB963478373C69F52172F071E0AA6082A3E10D9E1CE2851CFA210EE
7BD5FCB1AAE15E89D1FB339D587D218B89C18A32F47C7451A80CB1FC07CF5EF6
F95CB8F8CEBD4396C74A303DCB3A46C281B472F99892DCADA5FC6E4C2524AE72
569652A7D664B73CC839B5405D299F805DA5E9FE5C41F969093CFD7B26C9805B
6EC2DA5C4EA81C285458F5CCCDC02F82AC0E127BDB8F9E0A9438374180EE4DCE
8014999CC474C91251388D7AAF628FB0AB6943557193BDE6CBE0E8F18A07FF02
D0DF5DC716318021B927A6320F085D48DC863C5D1B25E98A998C8AC3D2B73A91
189CAF9B0FC8C0DD526722FCF411133BE754436712416AE8092316BF51E21622
CDDC52AB0EF3A8B9E8FF715097067B9E56CC048835212CAE24ACCDEA79098FC7
66A40BDF7255C59A5E7C66654C28E4505D3BD3C8A0C4CD722FB4B16832A714E2
38D279138B615D0360C4AF39353BA9BB87830AEC1D0493163FCEC39AE7F0DAEC
48889E9027D44179DBD95FE06CF82B3C30F6C642CACFF4C3F8C5453221A9A0FF
214F5F6AB6A0DE299C667B39C9A7F56DD3E7429DF3DF793D918A8FB22FF001A7
535D656EB7B0F1784753C9D764108488F95D8E26B5D304E386558AC614B3BB6B
8C4C585CED2915C510F38FCA2CC563B60BF041DB9AD0D55A2A1A5B2E8A89155A
D1D1AECDB26376427C60FBEBD0FF4A94097BF78A2240D57BA205FC1D3AD01D7F
569D102E98437AA4B10F027A9844184587304DE3DD05B3D6502ACBE3742F0A81
11113243EA8B82CAAA372D339EE1AC33710E74E2277A3D5DFA4A552120C248F5
7A540FEBEFA822D186EA567A40036DEDB2D8EB4C64BEC0BF2694059576A8C567
7765C0B93F06140642943DA6CC1D31E435D401E9EE7BC1DDAFC53846A29CB6FA
C49311B5BF4061D57E8F5F23F6B2B9C610FE5621EA1204F86F341120B932DE8A
2F414488EB37CEAA2356B96288E1EC3A59ABCE3493ED57A118CECBA0AE8B0E15
BA536E88DB19C149C0A9415A497BFD5C8255D71FCA19A8D03BB30BDAC6EC9549
B0A99C9C303DF63D63A05758963A2D996C80F44E9DE00FB3F44F97C0408C3FBF
7DBCD9C1BE4BBA25B6E03EC074B477FCB767BC9DC99AF25EE529EC6217E157ED
8149F2E82DAA69CEA7FA92274A46EA7763C1D08014D36885BF86A0B438BBBB93
6E54675C57B8D8FD05478E97709FCA46185FD849A41113FD13932D2801802415
F75BF27FBCDD049867
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndResource
/F16_0 /CMMI8 1 1
[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/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
/grave/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/bullet
/Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
/circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet
/bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
/tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis
/space/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]
pdfMakeFont
%%BeginResource: font CMTT12
%!FontType1-1.0: CMTT12
12 dict begin
/FontInfo 10 dict dup begin
/Notice (Copyright \(c\) 1997, 2009 American Mathematical Society \(<htt\
p://www.ams.org>\), with Reserved Font Name CMTT12.) readonly def
/FullName (CMTT12) readonly def
/FamilyName (Computer Modern) readonly def
/isFixedPitch false def
/ItalicAngle 0 def
/UnderlinePosition 0 def
/UnderlineThickness 0 def
end readonly def
/FontName /CMTT12 def
/PaintType 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] readonly def
/FontBBox [-1 -228 514 611] readonly def
/StrokeWidth 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 77 /M put
dup 97 /a put
dup 109 /m put
dup 112 /p put
dup 115 /s put
dup 121 /y put
readonly def
currentdict end
currentfile eexec
5AA4F71255501637F1A431BAB555283D093E1B588B45B0281559110D21315C62
BD638C6B34BA54AA75227715D9947EBCD51A104CAEA657499E94138F5645BF68
368BB1B1EC8E4776F067FFF2CE9B89FB7E63A7DB304498C1036D399C47A4CB79
BD517EDB02BEB90195FD7DDAF3E839BCE2DB156D9337DBB2305A465B3E0FFB97
1985C79DC71C47E26F9F0F042B2CDEE97B679358059256FB93D662D43C7ECB5B
1A564DFCECB963478373C69F52172F071E0AA6082A3E10D9E1CE2851CFA210EE
7BD5FCB1AAE15E89D1FB339D587D218B89C18A32F47C7451A80CB1FC07CF5EF5
C87FC601478E048A65FDB8CF6A4240645FD265FB82C05AFFF54C48AE783CAFCF
CF75BC614949BCA601CDEB0178B882E3E983195FDE43F74231BAAFBB279DED30
075881065FCC6343B30AC02304F381F12E5F8CAF505852162346F46A57B54B60
B707EBD82636A9F4C63322A372C4DFFE8418433B3C3B1621C06F85B7FD771526
B06D00591FEBF28BC9BA5964D6FC039DC10CA7E9B87A1A6769D2AC95E788DC89
0CAC1A67A873BDEB2B41F207AA5EAD12C7458158A867300A595D9C75E18308AF
7C7C264C50985F365E86BFCB07B1FD7736A1F43D645A2A0ED0ADB51AFED2805E
9A0C8E4DF13605AA73D74338F6864F009C2CB266DA9BCCB51EFACD65515D3C6E
158C5A16DF2E87CBB63285B79A94C9D281DC92DF10E81EC2CA46FB57DEF4081E
731D83B4E58F5063B9BB2DEB908C3F484878BB38D3D1915C387DE6B59D74DB79
2D53102238A7D11DB3301700749177C22609C0A9ED8B175159C2DFDF873BD382
C98EF175B4C77373012EB26F32FA15B57563F038F42CC5ED50EAE14431BE9EB8
B206C4F22EB9BBC9EEF777CF8382D1370B4596B2A072B61496FFB65E22795F8F
1B48D08A6DFCECEC33ADF934187F6814CBCB026013E9123A8EBED66B675D08BA
AAC074E356C21B82FB418619C83476FA4B90F569EAAE285F98E598C279123CC4
3694B0043E3A0D61FC6A5EBE9B06D83F52FC73520550DE4110D51A9CACA6CDAC
80EABB620B4A8827FC05FEA770984676A47B3FEE74DF7C4B626D55A7D53A71B5
E64581F7611988F20977858408D91D165A4EC2E4B93DC1A69950B3E16977B0DF
459476E7DA080719040141F72D40577B9007FDD868DC59BDA1FD629972360433
C7C302F78ED877E15C788BF28B591D9F7F5B4F23A880FBF2B3F79721C9D74FA0
1609BE4D073291B813436D16E8F25C44882EA791E85A35DEBBE63B8F62093B41
496AB9E66F906078BBA809DC154CB56CEC4B3773BDE10A8F7A22B3FC0793A5B8
17DAD1E2FB01CC2D4313C916E1918168DE7987F2E242B85DD73268ED7B257CF4
AB66CD751EBF700EF1C69A6E1E850DDCCC440E1FF18D42FCBC54B31322748B29
326FC8D87259B6232454F015523703C486B6745965501D8DA281E3498E621787
253FD001819E8BD733B35606CB027323C622704CD151875AF355FA632E5FABFA
A3D01FC20412CE629443AD7E1A7910685E7C56DE73FBA30CCB346D390A154962
D3933BCE0BD7157CD9E0E678D5B0DDB5D59A6E0AA4FD065611D1ED1F473C7013
6BD6ABBA76897EC61F57383D2DB98CEF5B247AA31021D8CB67A971BABA58AB21
CA8EBEAEE172944FBAAFD9C101BBD5C73F1964DCAF18862C644C5CF394F812E1
4F23D9D1F6AB18CB953184F7DC023CCD9A5EBB37C0ADBE65C54C3FEC2A052D74
0E943AE1A17C8A820A69D20EE03C1D977854798ABAD8DF231502673BD4166C5E
9F12965731389398AFF7C897E0938BA25420ABA53DBA9FD404FF4CA547EC049F
D314033376E2D2D9A5149CCD944F95A951194BB2ACFF892A8F3CD66B22A6C494
B67E97B81FA6BC39F8E0E467DDA02763D2C4E59695F1D7778298172EAFD247B4
0520D1F1236DB241C5DA994A75900D7D4A5DFB81999324D640BC5FBF264F7B9E
7D67878486F10170D14CD2806172BEDAA57E601374FAD9D4002109A119C66FAD
26C29C0C8928391D88AD458CBC3E9422B8C9256E4012D25C30F7717D1684B9D6
8AA9F55E582FA719BD351E8ADA164159483E1B71E63C7065A9541CE55C5768F3
6C6F66091167C538472A06377834263AD63EA03FC713227D55AD82B8244FAC6C
919DD64F53059325E0EDFD74B7F14AEE027AE98EA75C63809DD19B7CFFDF7156
69C6894AAF387F99A73072F531CEDA4349292166F2F7C472FE3EED52EE4FDD34
4355A14F40D55950AE4F79A79C982719836DE7B0E62FDB
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndResource
/F8_0 /CMTT12 1 1
[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/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
/grave/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/bullet
/Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
/circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet
/bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
/tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis
/space/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]
pdfMakeFont
%%BeginResource: font CMEX10
%!FontType1-1.0: CMEX10
12 dict begin
/FontInfo 10 dict dup begin
/Notice (Copyright \(c\) 1997, 2009 American Mathematical Society \(<htt\
p://www.ams.org>\), with Reserved Font Name CMEX10.) readonly def
/FullName (CMEX10) readonly def
/FamilyName (Computer Modern) readonly def
/isFixedPitch false def
/ItalicAngle 0 def
/UnderlinePosition 0 def
/UnderlineThickness 0 def
end readonly def
/FontName /CMEX10 def
/PaintType 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] readonly def
/FontBBox [0 -1760 659 40] readonly def
/StrokeWidth 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 50 /bracketlefttp put
dup 51 /bracketrighttp put
dup 52 /bracketleftbt put
dup 53 /bracketrightbt put
dup 54 /bracketleftex put
dup 55 /bracketrightex put
readonly def
currentdict end
currentfile eexec
5AA4F71255501637F1A431BAB555283D093E1B588B45B0281559110D21315C62
BD638C6B34BA54AA75227715D9947EBCD51A104CAEA657499E94138F5645BF68
368BB1B1EC8E4776F067FFF2CE9B89FB7E63A7DB304498C1036D399C47A4CB79
BD517EDB02BEB90195FD7DDAF3E839BCE2DB156D9337DBB2305A465B3E0FFB97
1985C79DC71C47E26F9F0F042B2CDEE97B679358059256FB93D662D43C7ECB5B
1A564DFCECB963478373C69F52172F071E0AA6082A3E10D9E1CE2851CFA210EE
7BD5FCB1AAE15E89D1FB339D587D218B89C18A32F47C7451A80CB1FC07CF5EF6
F88E0EEDCEC117F47331582B284EFD293832F1E76DEBD75D6F0A97DBD8069165
0089C16EE84B8D38202565E2C8CB90418069398CB8BF65B84E0C5EA652EC3CA4
8DD518AE213F41B9BD6A1357D8129E946E4D9D82D6C1AD2CFD36161FB9A5E663
0919C0D7688B53A31CDE97B0DAFE2986E037411E06F2FB90E98996FE8855DF2F
941DFB981689246E2ADC3D5BEE0A94D5B2EB390E861407D2CCB3C07D5FC548B4
E4C4C52E987F28C7FEE1C98B8887BC4486FCEE4C2E5DAAC892CA1989DC79CA88
825DCC68A218D50560B71ABAAA18A270AF7D7AB8AF81FC773BB6349A3C30FC48
E2FB48B9B013E4F6BB8CE8B78BA3186A7813E69ECB2B9ABCEF88CCE4CF08D4A0
704518CB7310CA9EEF44016620B3B20ACA07A4FB27F21D88C9A5B89B8080C574
9DD91A069098221C61AC885B6073F949CA90DF88A9549FAC88340D544F2B336F
DF3C7C0CA0B26B0714B00E567E3927A1A5E22E27AA842ACCC3BCA011AEEC2082
A4578032FCE0FC55B5C439824440EC79FEC3BCBE55F98E92C2F3063B076D8C24
17E28464FC83564B1D1C668A26818122745C80745240196B9DCFED07E2D08E05
C276E1E9E38CDD459B6F27BC25BAA1E2159D4258941AE28CE51E1364C46B0BEF
9D8575FBBFEFEAA3ECB89E18044E6333E37C0B3F61ECA7FEF57B0BA1DA049AB1
79CCD63E822CD5AF93D38CD6807CA92CA6AB8065659966EF11C9F1E0FB5535D0
7E1D03BC5BCDD45B416E268C656F1E1248E527A449737C8597B7CA6A7EEFC308
E15024295157B776B6472C94803E64C8B41EEC49322643E3868538F03E5C14DD
DC51BA02E22DFEB3301BE9E4C577F9C9D01233CA3A398F23070C4101F04B4CEB
DE679738F86AFDA5F09665FFEA943DF5982B5C8221A7299C5B58984161CAB7A0
929D4E3DCB7259431B595831529971EBEB2AA6BF30D28A8B79DFB09B9CD00244
EB89F071D33A6E0812B6EF97FFF3DD8AE97CAF182F0CA6C80F02DD9612531E7E
48234937E79B99D8B3
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndResource
/F10_0 /CMEX10 1 1
[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
/zero/one/bracketlefttp/bracketrighttp/bracketleftbt/bracketrightbt/bracketleftex/bracketrightex
/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
/grave/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/bullet
/Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
/circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet
/bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
/tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis
/space/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]
pdfMakeFont
%%BeginResource: font CMR12
%!FontType1-1.0: CMR12
12 dict begin
/FontInfo 10 dict dup begin
/Notice (Copyright \(c\) 1997, 2009 American Mathematical Society \(<htt\
p://www.ams.org>\), with Reserved Font Name CMR12.) readonly def
/FullName (CMR12) readonly def
/FamilyName (Computer Modern) readonly def
/isFixedPitch false def
/ItalicAngle 0 def
/UnderlinePosition 0 def
/UnderlineThickness 0 def
end readonly def
/FontName /CMR12 def
/PaintType 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] readonly def
/FontBBox [0 -21 707 665] readonly def
/StrokeWidth 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 48 /zero put
dup 49 /one put
dup 50 /two put
dup 53 /five put
dup 54 /six put
dup 61 /equal put
readonly def
currentdict end
currentfile eexec
5AA4F71255501637F1A431BAB555283D093E1B588B45B0281559110D21315C62
BD638C6B34BA54AA75227715D9947EBCD51A104CAEA657499E94138F5645BF68
368BB1B1EC8E4776F067FFF2CE9B89FB7E63A7DB304498C1036D399C47A4CB79
BD517EDB02BEB90195FD7DDAF3E839BCE2DB156D9337DBB2305A465B3E0FFB97
1985C79DC71C47E26F9F0F042B2CDEE97B679358059256FB93D662D43C7ECB5B
1A564DFCECB963478373C69F52172F071E0AA6082A3E10D9E1CE2851CFA210EE
7BD5FCB1AAE15E89D1FB339D587D218B89C18A32F47C7451A80CB1FC07CF5EF6
F95CB8F8CEBD4396C74A37E2724CD63F484F47C6447F507C11793B061A71C2EB
7D651F93505835EBF9032E361AE5C694F562A11D768CB4FB2540B4281CECEE7D
3A31CE697DC0DEFB6C96B38A970EDFE1B25B852DF4F12D7FA0932E9DE6181BBE
DCD1306A9EB0AFEF37E8FCBE25FB1A843A2D67AB2CEB0D8AAC217FEAE0C1F3A9
6EA27594AD85747780D7B015C4E8064EEDC329E82E9BF096E7CE83A8493E591B
ED192F9E0BBC812B8A27B7C34952D4D896884F29DFEB260C2011D64976AA6C23
D88031A87163AEA47F67081581428A42683A212E29286B84C4E76EACE716A90E
A0296D9F095CD13C3BA73C86D6AED40FFFB4B88178EFFBDC89D52F7A7122DC0E
03D199FFAA722173EEA39D5516C76EC53871C25FAE371FA7E84D76E66BCB70A5
4D8BE6ED61BACA2A22949D94CFD9B75EF9F9AF0BF9AAA2DFEC4A7CE8B35787F8
4276C2E69D1AB7ADB8F8F0C45184AEC59E8B1C9326C2299617716812799F777B
255043AB534E879ACA7F55D66B79D12C56F8F3455858B76B881290A2381F1224
BD1F1ABF1DDFC5B4E8FCEBCA3233FB8DC0654D3B2C9C31B0E02982650894AB4D
51C6F659633416C50F299B9799453E362B6770CB0B553B08DF1FDA6C935E6B85
DEB520BC52790A2E2E6A80D90A0E2F427F0A0FB41507BC28BCA01F90ABEB1049
39DD2AECD868A66D3B2D59F06FD18169EC36C38FB7BC5ABC193EE948433D12DD
56473D348761EBF20B751BC29303B41017C1330AB6F885CC6A18346E717C29B6
C9D7C10485D1E9556AC37EE31103E6AA96456370D73502D453E80B74314C9636
3AD91FBD8F0E4897EFACF4F426A7D3BB82121E080CD73872BD87ADDEB92ABA5C
547FD04D297D67A5A59388F44DD6796B4D320895C4E0ED06559C5D8213393D99
794B06DFD552DFCEAA4831B98FAD4CD884F919A0E8E02113DCE9A70E91BECD7D
24F3B378FE4E30008130E8487218C33CB215640763E054A38BB560EB6DC3D38C
A0B68A6C234EAED3B8AA453C22384D862FE42672B9F0710DD0B6B030F3486713
4B91FADD192768986667442EFA11B178EEE8D8E757A2B7F5AE27CA7D76A8C5C8
1AA2EC48167BE060D437CA2BFEDAC70F5A8BD68F3AFC0F8A7FDC2386F0797D6B
D664515F806C0C08E2B41D447F046C7B7F4E64416876F0785E9EA6699E1F1069
296E7474AD364292B42E0D5B2E58FDAF9EFE24CF680B91A1B5CDD6420FB7011F
2EADCB85ACEF78BAF6F3C471DF70E48657E3E1CBE5C5602290FA4561A26043C1
EEE34A30E99955EED3BA513731B3877D6A19948C4D5B7BD1F31256AB70D424DE
6B8C76893FDD7F0F3140B60DB599AB40FF242CD953C04DD41A6E2AEA779C8859
A1D879D6F9DEF77F0208AFFC2500A10963775B018CDBC1CD8D0533334E0ADB2A
7DB9E472C9376756641CF62D9EA6892F4DD468E9C400FA7506813C579F5CC268
939024CAFB1A1F3B69BCE2D640EC3C45129E43E51AC321278CE00D4EB2E0804C
7E1F241D3BCB7F48CFB51AD6805276A65B0D491F8D809A411869B22C306C5E4C
78B9114E283BC822B7D03AD66954693C3A21341F032EC5E20386D419270D4EEF
FEE368F7B8ACE8FB407C22A27BBBA2C25004A73210C526EBF4ED5A9614EBF00D
0AD9AAF4C0D30A96F097A5D340C628A26DD767984E99499CAD4411318E3CFCC5
C7FCE10A9EB624D16093848A44F1565CA0DA259988CCA1C45E951CC614EA9003
41CED0FFA434C112B5810F
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
%%EndResource
/F12_0 /CMR12 1 1
[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
/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
/grave/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/bullet
/Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
/circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet
/bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
/tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis
/space/exclamdown/cent/sterling/currency/yen/brokenbar/section
/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered