-
Notifications
You must be signed in to change notification settings - Fork 1
/
age_loglikelihood.eps
1341 lines (1300 loc) · 19.7 KB
/
age_loglikelihood.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
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 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc. Version 7.8.0.347 (R2009a). Operating System: Linux 2.6.32-33-generic #72-Ubuntu SMP Fri Jul 29 21:07:13 UTC 2011 x86_64.
%%Title: /home/john/Documents/dartel/slides/age_loglikelihood.eps
%%CreationDate: 11/01/2011 19:23:49
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Extensions: CMYK
%%Pages: 1
%%BoundingBox: 39 195 550 607
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup 3 mul string
currentfile exch readhexstring pop
dup 0 3 index getinterval /rbmap xdef
dup 2 index dup getinterval /gbmap xdef
1 index dup 2 mul exch getinterval /bbmap xdef pop pop}bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
rbmap gbmap bbmap true 3 colorimage gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 39 195 550 607
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0216 7344 csm
255 55 6134 4945 MR c np
85 dict begin %Colortable dictionary
/c0 { 0.000000 0.000000 0.000000 sr} bdef
/c1 { 1.000000 1.000000 1.000000 sr} bdef
/c2 { 0.900000 0.000000 0.000000 sr} bdef
/c3 { 0.000000 0.820000 0.000000 sr} bdef
/c4 { 0.000000 0.000000 0.800000 sr} bdef
/c5 { 0.910000 0.820000 0.320000 sr} bdef
/c6 { 1.000000 0.260000 0.820000 sr} bdef
/c7 { 0.000000 0.820000 0.820000 sr} bdef
c0
1 j
1 sg
0 0 6913 5186 PR
6 w
0 4226 5356 0 0 -4226 899 4615 4 MP
PP
-5356 0 0 4226 5356 0 0 -4226 899 4615 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 4615 mt 6255 4615 L
899 389 mt 6255 389 L
899 4615 mt 899 389 L
6255 4615 mt 6255 389 L
899 4615 mt 6255 4615 L
899 4615 mt 899 389 L
899 4615 mt 899 4561 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /ISOLatin1Encoding 120 FMSR
866 4760 mt
(0) s
1434 4615 mt 1434 4561 L
1434 389 mt 1434 442 L
1401 4760 mt
(2) s
1970 4615 mt 1970 4561 L
1970 389 mt 1970 442 L
1937 4760 mt
(4) s
2505 4615 mt 2505 4561 L
2505 389 mt 2505 442 L
2472 4760 mt
(6) s
3041 4615 mt 3041 4561 L
3041 389 mt 3041 442 L
3008 4760 mt
(8) s
3577 4615 mt 3577 4561 L
3577 389 mt 3577 442 L
3511 4760 mt
(10) s
4112 4615 mt 4112 4561 L
4112 389 mt 4112 442 L
4046 4760 mt
(12) s
4648 4615 mt 4648 4561 L
4648 389 mt 4648 442 L
4582 4760 mt
(14) s
5183 4615 mt 5183 4561 L
5183 389 mt 5183 442 L
5117 4760 mt
(16) s
5719 4615 mt 5719 4561 L
5719 389 mt 5719 442 L
5653 4760 mt
(18) s
6255 4615 mt 6255 4561 L
6255 389 mt 6255 442 L
6189 4760 mt
(20) s
899 4615 mt 952 4615 L
6255 4615 mt 6201 4615 L
528 4659 mt
(-2020) s
899 4192 mt 952 4192 L
6255 4192 mt 6201 4192 L
528 4236 mt
(-2000) s
899 3769 mt 952 3769 L
6255 3769 mt 6201 3769 L
528 3813 mt
(-1980) s
899 3347 mt 952 3347 L
6255 3347 mt 6201 3347 L
528 3391 mt
(-1960) s
899 2924 mt 952 2924 L
6255 2924 mt 6201 2924 L
528 2968 mt
(-1940) s
899 2502 mt 952 2502 L
6255 2502 mt 6201 2502 L
528 2546 mt
(-1920) s
899 2079 mt 952 2079 L
6255 2079 mt 6201 2079 L
528 2123 mt
(-1900) s
899 1656 mt 952 1656 L
6255 1656 mt 6201 1656 L
528 1700 mt
(-1880) s
899 1234 mt 952 1234 L
6255 1234 mt 6201 1234 L
528 1278 mt
(-1860) s
899 811 mt 952 811 L
6255 811 mt 6201 811 L
528 855 mt
(-1840) s
899 389 mt 952 389 L
6255 389 mt 6201 389 L
528 433 mt
(-1820) s
899 4615 mt 6255 4615 L
899 389 mt 6255 389 L
899 4615 mt 899 389 L
6255 4615 mt 6255 389 L
gs 899 389 5357 4227 MR c np
/c8 { 0.000000 0.000000 1.000000 sr} bdef
c8
268 58 268 61 268 64 268 70 267 76 268 82 268 91 268 98
268 105 267 111 268 117 268 122 268 127 268 131 267 135 268 137
268 131 268 115 268 91 267 86 899 2022 21 MP stroke
gr
c8
gs 814 1937 5527 2179 MR c np
0 j
0 -66 -66 0 0 66 66 0 866 1989 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 1133 2075 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 1401 2166 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 1669 2281 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 1937 2412 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 2205 2549 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 2472 2684 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 2740 2815 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 3008 2942 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 3276 3064 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 3544 3181 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 3811 3292 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 4079 3397 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 4347 3495 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 4615 3586 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 4883 3668 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 5150 3744 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 5418 3814 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 5686 3878 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 5954 3939 5 MP
1 sg
gs
PP
gr
c8
DP
0 -66 -66 0 0 66 66 0 6222 3997 5 MP
1 sg
gs
PP
gr
c8
DP
gr
gs 899 389 5357 4227 MR c np
/c9 { 0.000000 0.500000 0.000000 sr} bdef
c9
268 63 268 66 268 71 268 76 267 83 268 91 268 98 268 106
268 114 267 119 268 125 268 131 268 136 268 141 267 148 268 151
268 148 268 137 268 120 267 95 899 1711 21 MP stroke
gr
c9
gs 814 1626 5527 2390 MR c np
0 j
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 859 1698 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 1126 1793 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 1394 1913 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 1662 2050 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 1930 2198 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 2198 2349 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 2465 2497 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 2733 2638 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 3001 2774 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 3269 2905 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 3537 3030 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 3804 3149 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 4072 3263 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 4340 3369 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 4608 3467 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 4876 3558 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 5143 3641 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 5411 3717 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 5679 3788 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 5947 3854 11 MP
1 sg
gs
PP
gr
c9
DP
-24 -18 9 -28 -25 17 -24 -17 9 28 -24 18 30 0 9 29
10 -29 30 0 6215 3917 11 MP
1 sg
gs
PP
gr
c9
DP
gr
gs 899 389 5357 4227 MR c np
/c10 { 1.000000 0.000000 0.000000 sr} bdef
c10
268 65 268 60 268 56 268 52 267 46 268 41 268 33 268 21
268 8 267 -12 268 -34 268 -63 268 -95 268 -127 267 -162 268 -255
268 -365 268 -437 268 -476 267 -572 899 4580 21 MP stroke
gr
c10
gs 814 1897 5527 2769 MR c np
0 j
-48 83 -48 -83 96 0 851 4608 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 1118 4036 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 1386 3560 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 1654 3123 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 1922 2758 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 2190 2503 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 2457 2341 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 2725 2214 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 2993 2119 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 3261 2056 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 3529 2022 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 3796 2010 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 4064 2018 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 4332 2039 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 4600 2072 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 4868 2113 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 5135 2159 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 5403 2211 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 5671 2267 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 5939 2327 4 MP
0 sg
gs
PP
gr
c10
DP
-48 83 -48 -83 96 0 6207 2392 4 MP
0 sg
gs
PP
gr
c10
DP
gr
gs 899 389 5357 4227 MR c np
/c11 { 0.000000 0.750000 0.750000 sr} bdef
c11
268 59 268 65 268 75 268 84 267 94 268 104 268 110 268 111
268 106 267 93 268 76 268 53 268 28 268 -28 267 -153 268 -301
268 -456 268 -588 268 -730 267 -902 899 4202 21 MP stroke
gr
c11
gs 814 959 5527 3329 MR c np
0 j
48 83 -96 0 48 -83 899 4257 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 1166 3355 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 1434 2625 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 1702 2037 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 1970 1581 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 2238 1280 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 2505 1127 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 2773 1099 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 3041 1127 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 3309 1180 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 3577 1256 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 3844 1349 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 4112 1455 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 4380 1566 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 4648 1676 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 4916 1780 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 5183 1874 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 5451 1958 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 5719 2033 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 5987 2098 4 MP
0 sg
gs
PP
gr
c11
DP
48 83 -96 0 48 -83 6255 2157 4 MP
0 sg
gs
PP
gr
c11
DP
gr
gs 899 389 5357 4227 MR c np
/c12 { 0.750000 0.000000 0.750000 sr} bdef
c12
268 106 268 109 268 110 268 112 267 113 268 112 268 112 268 111
268 110 267 108 268 104 268 102 268 97 268 92 267 81 268 12
268 -121 268 -266 268 -446 267 -676 899 4441 21 MP stroke
gr
c12
gs 814 2847 5527 1762 MR c np
0 j
42 55 -42 55 -42 -55 42 -55 899 4496 5 MP
0 sg
gs
PP
gr
c12
DP
42 55 -42 55 -42 -55 42 -55 1166 3820 5 MP
0 sg
gs
PP
gr
c12
DP
42 55 -42 55 -42 -55 42 -55 1434 3374 5 MP
0 sg
gs
PP
gr
c12
DP
42 55 -42 55 -42 -55 42 -55 1702 3108 5 MP
0 sg
gs
PP
gr
c12
DP
42 55 -42 55 -42 -55 42 -55 1970 2987 5 MP
0 sg
gs
PP
gr