Projects



Android: systemarchitektur_einfach.eps

File systemarchitektur_einfach.eps, 92.1 KB (added by 7dibbern, 12 years ago)
Line 
1%!PS-Adobe-3.0 EPSF-3.0
2%%BoundingBox: 0 0 624 228
3%%Creator: FreeHEP Graphics2D Driver
4%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753
5%%For:
6%%Title:
7%%CreationDate: Mittwoch, 20. Juni 2012 02:15 Uhr MESZ
8%%LanguageLevel: 3
9%%EndComments
10%%BeginProlog
11100 dict dup begin
12
13%
14% File: org/freehep/graphicsio.ps/PSProlog.txt
15% Author: Charles Loomis
16%
17
18% Redefinitions which save some space in the output file.  These are also
19% the same as the PDF operators.
20/q {gsave} def
21/Q {grestore} def
22
23/n {newpath} def
24/m {moveto} def
25/l {lineto} def
26/c {curveto} def
27/h {closepath} def
28
29/re {4 -2 roll moveto
30     dup 0 exch rlineto exch 0 rlineto
31     neg 0 exch rlineto closepath} def
32
33/f {fill} def
34/f* {eofill} def
35/F {gsave vg&FC fill grestore} def
36/F* {gsave vg&FC eofill grestore} def
37
38/s {closepath stroke} def
39/S {stroke} def
40
41/b {closepath gsave vg&FC fill grestore
42    gsave stroke grestore newpath} def
43/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
44/b* {closepath gsave vg&FC eofill grestore
45    gsave stroke grestore newpath} def
46/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
47
48/g {1 array astore /vg&fcolor exch def} def
49/G {setgray} def
50/k {4 array astore /vg&fcolor exch def} def
51/K {setcmykcolor} def
52/rg {3 array astore /vg&fcolor exch def} def
53/RG {setrgbcolor} def
54
55% Initialize the fill color.
560 0 0 rg
57
58/vg&FC {mark vg&fcolor aload pop
59        counttomark 1 eq {G} if
60        counttomark 3 eq {RG} if
61        counttomark 4 eq {K} if
62        cleartomark } def
63
64/vg&DFC {/vg&fcolor exch def} def
65
66/vg&C {mark exch aload pop
67       counttomark 1 eq {G} if
68       counttomark 3 eq {RG} if
69       counttomark 4 eq {K} if
70       cleartomark } def
71
72/w {setlinewidth} def
73/j {setlinejoin} def
74/J {setlinecap} def
75/M {setmiterlimit} def
76/d {setdash} def
77/i {setflat} def
78
79/W {clip} def
80/W* {eoclip} def
81
82% Setup the default graphics state.
83% (black; 1 pt. linewidth; miter join; butt-ends; solid)
84/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
85
86% Emulation of the rectangle operators for PostScript implementations
87% which do not implement all Level 2 features.  This is an INCOMPLETE
88% emulation; only the "x y width height rect..." form is emulated.
89/*rf {gsave newpath re fill grestore} def
90/*rs {gsave newpath re stroke grestore} def
91/*rc {newpath re clip} def
92/rf  /rectfill where {pop /rectfill}{/*rf} ifelse load def
93/rs  /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
94/rc  /rectclip where {pop /rectclip}{/*rc} ifelse load def
95
96% Emulation of the selectfont operator.  This includes a 20% increase in
97% the fontsize which is necessary to get sizes similar to the Java fonts.
98/*sf {exch findfont exch
99      dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
100/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
101
102% Special version of stroke which allows the dash pattern to continue
103% across path segments.  (This may be needed for PostScript although
104% modern printers seem to do this correctly.)
105/vg&stroke {
106  currentdash pop length 0 eq
107  {stroke}
108  {
109    currentdash /vg&doffset exch def pop
110    flattenpath
111    {m vg&resetdash}
112    {2 copy
113     currentpoint
114     3 -1 roll sub dup mul
115     3 1 roll sub dup mul
116     add sqrt
117     3 1 roll l
118     currentdash 3 -1 roll add setdash}
119     {}
120     {h vg&resetdash}
121     pathforall
122     stroke
123     vg&resetdash
124  } ifelse
125} def
126/vg&resetdash {currentdash pop vg&doffset setdash} def
127
128% Initialize variables for safety.
129/delta 0 def
130/xv 0 def  /yv 0 def  /width 0 def  /height 0 def
131
132% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
133/pw 595 def  /ph 791  def  /po true def /ftp false def
134
135% Initialize margins to 20 points.
136/ml 20 def  /mr 20 def  /mt 20 def  /mb 20 def
137
138% Temporary matrices.
139/smatrix 0 def  /nmatrix 0 def
140
141% set page size (usage: <page width><page height> setpagesize)
142/setpagesize {/ph exch def /pw exch def} def
143
144% set page orientation (usage: portrait or landscape)
145/portrait {/po true def} def
146/landscape {/po false def} def
147
148% force natural size for image (usage: naturalsize)
149/naturalsize {/ftp false def} def
150
151% resize image to fill page (usage: fittopage)
152/fittopage {/ftp true def} def
153
154% set margins of the page (usage: <left><bottom><top><right> setmargins)
155/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
156
157% set the graphic's size (usage: <width><height> setsize)
158/setsize {/gh exch def /gw exch def} def
159
160% set the graphic's origin (usage: <x0><y0> setorigin)
161/setorigin {/gy exch def /gx exch def} def
162
163% calculate image center
164/imagecenter {pw ml sub mr sub 2 div ml add
165              ph mt sub mb sub 2 div mb add} def
166
167% calculate the necessary scaling
168/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
169             po {gh}{gw} ifelse ph mt sub mb sub div
170             2 copy lt {exch} if pop
171             ftp not {1 2 copy lt {exch} if pop} if
172             1 exch div /sfactor exch def
173             /gw gw sfactor mul def /gh gh sfactor mul def} def
174
175% calculate image origin
176/imageorigin {pw ml sub mr sub 2 div ml add
177              po {gw}{gh} ifelse 2 div sub
178              ph mt sub mb sub 2 div mb add
179              po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
180
181% calculate the clipping origin
182/cliporigin  {pw ml sub mr sub 2 div ml add
183              po {gw}{gh} ifelse 2 div sub floor
184              ph mt sub mb sub 2 div mb add
185              po {gh}{gw} ifelse 2 div sub floor} def
186
187% Set the clipping region to the bounding box.
188/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
189                          po {gh}{gw} ifelse 1 add rc} def
190
191% set the base transformation matrix (usage: setbasematrix)
192/setbasematrix {imageorigin translate
193                po {0}{90} ifelse rotate
194                sfactor sfactor neg scale
195                /defaultmatrix matrix currentmatrix def} def
196
197% The lower-right bias in drawing 1 pt. wide lines.
198/bias  {q 0.5 0.5 translate} def
199/unbias {Q} def
200
201% Define the composite fonts used to print Unicode strings.
202% Undefine particular values in an encoding array.
203/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
204/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
205
206% usage: key encoding basefontname vg&newbasefont font
207/vg&newbasefont {
208findfont dup length dict copy
209  begin
210    currentdict /FID undef
211    /Encoding exch def
212    dup /FontName exch def
213    currentdict
214  end
215definefont
216} def
217
218% usage: key encoding basefontname vg&newskewedbasefont font
219/vg&newskewedbasefont {
220findfont dup length dict copy
221  begin
222    currentdict /FID undef
223    /Encoding exch def
224    dup /FontName exch def
225    exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
226    currentdict
227  end
228definefont
229} def
230
231% usage: basekey suffix vg&nconcat name
232/vg&nconcat {
233  2 {dup length string cvs exch} repeat
234  dup length 3 -1 roll dup length 3 -1 roll add string
235  dup 0 4 -1 roll dup length 5 1 roll putinterval
236  dup 4 -2 roll exch putinterval cvn
237} def
238
239%usage: fontname vg&skewmatrix matrix
240/vg&skewmatrix {
241findfont dup /FontInfo known
242  {
243    /FontInfo get dup /ItalicAngle known
244    {
245      [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
246    }
247    {pop matrix} ifelse
248  }
249  {pop matrix} ifelse
250} def
251
252% usage: newfontname basefontname vg&newcompositefont --
253/vg&newcompositefont {
254/vg&fstyle exch def
255/vg&bfont exch def
256/vg&fname exch def
257<<
258/FontStyleBits vg&fstyle
259/FontType 0
260/FontMatrix matrix
261/FontName vg&fname
262/FMapType 2
263/Encoding [ 0 1 255 {pop 6} for ]
264          dup 16#00 0 put % Latin
265          dup 16#03 1 put % Greek
266          dup 16#20 2 put % Punctuation
267          dup 16#21 3 put % Arrows
268          dup 16#22 4 put % MathOps
269          dup 16#27 5 put % Dingbats
270
271/FDepVector [
272vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
273vg&bfont vg&newbasefont
274
275vg&bfont vg&skewmatrix
276vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
277/Symbol vg&newskewedbasefont
278
279vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
280vg&bfont vg&newbasefont
281
282/Arrows-UC findfont
283/MathOps-UC findfont
284/Dingbats-UC findfont
285/Undefined-UC findfont ]
286>>
287vg&fname exch definefont pop
288} def
289
290% Null encoding vector (all elements set to .notdef)
291/NullEncoding [ 256 {/.notdef} repeat ] def
292
293% Unicode Latin encoding (unicode codes \u0000-\u00ff)
294/UCLatinEncoding
295  ISOLatin1Encoding dup length array copy
296  dup 16#60 /grave put
297  [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
298    16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
299  ] vg&undef
300  def
301
302% Unicode Greek encoding (unicode codes \u0370-\u03ff)
303/UCGreekEncoding
304  NullEncoding dup length array copy
305  << 16#91 /Alpha    16#92 /Beta      16#93 /Gamma    16#94 /Delta
306     16#95 /Epsilon  16#96 /Zeta      16#97 /Eta      16#98 /Theta
307     16#99 /Iota     16#9a /Kappa     16#9b /Lambda   16#9c /Mu
308     16#9d /Nu       16#9e /Xi        16#9f /Omicron  16#a0 /Pi
309     16#a1 /Rho      16#a3 /Sigma     16#a4 /Tau      16#a5 /Upsilon
310     16#a6 /Phi      16#a7 /Chi       16#a8 /Psi      16#a9 /Omega
311     16#b1 /alpha    16#b2 /beta      16#b3 /gamma    16#b4 /delta
312     16#b5 /epsilon  16#b6 /zeta      16#b7 /eta      16#b8 /theta
313     16#b9 /iota     16#ba /kappa     16#bb /lambda   16#bc /mu
314     16#bd /nu       16#be /xi        16#bf /omicron  16#c0 /pi
315     16#c1 /rho      16#c2 /sigma1    16#c3 /sigma    16#c4 /tau
316     16#c5 /upsilon  16#c6 /phi1      16#c7 /chi      16#c8 /psi
317     16#c9 /omega    16#7e /semicolon 16#87 /dotmath  16#d1 /theta1
318     16#d2 /Upsilon1 16#d5 /phi       16#d6 /omega1
319  >> vg&redef
320  def
321
322% Unicode punctuation encoding (unicode codes \u2000-\u206f)
323/UCPunctuationEncoding
324  NullEncoding dup length array copy
325  << 16#10 /hyphen          16#11 /hyphen              16#12 /endash
326     16#13 /emdash          16#18 /quoteleft           16#19 /quoteright
327     16#1a /quotesinglbase  16#1b /quotesingle         16#1c /quotedblleft
328     16#1d /quotedblright   16#1e /quotedblbase        16#1f /quotedbl
329     16#20 /dagger          16#21 /daggerdbl           16#22 /bullet
330     16#24 /period          16#26 /ellipsis            16#27 /periodcentered
331     16#30 /perthousand     16#44 /fraction
332     16#70 /zerosuperior    16#74 /foursuperior        16#75 /fivesuperior
333     16#76 /sixsuperior     16#77 /sevensuperior       16#78 /eightsuperior
334     16#79 /ninesuperior    16#7b /hyphensuperior      16#7d /parenleftsuperior
335     16#7e /parenrightsuperior
336     16#80 /zeroinferior    16#84 /fourinferior        16#85 /fiveinferior
337     16#81 /oneinferior     16#82 /twoinferior         16#83 /threeinferior
338     16#86 /sixinferior     16#87 /seveninferior       16#88 /eightinferior
339     16#89 /nineinferior    16#8b /hypheninferior      16#8d /parenleftinferior
340     16#8e /parenrightinferior
341  >> vg&redef
342  def
343
344% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
345/UCMathOpsEncoding
346  NullEncoding dup length array copy
347  << 16#00 /universal       16#02 /partialdiff         16#03 /existential
348     16#05 /emptyset        16#06 /Delta               16#07 /gradient
349     16#08 /element         16#09 /notelement          16#0b /suchthat
350     16#0f /product         16#11 /summation           16#12 /minus
351     16#15 /fraction        16#17 /asteriskmath        16#19 /bullet
352     16#1a /radical         16#1d /proportional        16#1e /infinity
353     16#20 /angle           16#23 /bar                 16#27 /logicaland
354     16#28 /logicalor       16#29 /intersection        16#2a /union
355     16#2b /integral        16#34 /therefore           16#36 /colon
356     16#3c /similar         16#45 /congruent           16#48 /approxequal
357     16#60 /notequal        16#61 /equivalence         16#64 /lessequal
358     16#65 /greaterequal    16#82 /propersubset        16#83 /propersuperset
359     16#86 /reflexsubset    16#87 /reflexsuperset      16#95 /circleplus
360     16#97 /circlemultiply  16#a5 /perpendicular       16#03 /existential
361     16#c0 /logicaland      16#c1 /logicalor           16#c2 /intersection
362     16#c3 /union           16#c4 /diamond             16#c5 /dotmath
363  >> vg&redef
364  def
365
366% Unicode arrows encoding (unicode codes \u2190-\u21ff)
367% Also includes those "Letterlike" unicode characters
368% which are available in the symbol font. (unicode codes \u2100-\u214f)
369/UCArrowsEncoding
370  NullEncoding dup length array copy
371  << 16#11 /Ifraktur        16#1c /Rfraktur            16#22 /trademarkserif
372     16#35 /aleph
373     16#90 /arrowleft       16#91 /arrowup             16#92 /arrowright
374     16#93 /arrowdown       16#94 /arrowboth           16#d0 /arrowdblleft
375     16#d1 /arrowdblup      16#d2 /arrowdblright       16#d3 /arrowdbldown
376     16#d4 /arrowdblboth
377  >> vg&redef
378  def
379
380/ZapfDingbats findfont /Encoding get
381dup length array copy /UCDingbatsEncoding exch def
38216#20 1 16#7f {
383  dup 16#20 sub exch
384  UCDingbatsEncoding exch get
385  UCDingbatsEncoding 3 1 roll put
386} for
38716#a0 1 16#ff {
388  dup 16#40 sub exch
389  UCDingbatsEncoding exch get
390  UCDingbatsEncoding 3 1 roll put
391} for
392UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
393[ 16#00  16#05 16#0a 16#0b  16#28 16#4c 16#4e  16#53 16#54 16#55  16#57 16#5f
394  16#60  16#68 16#69 16#6a  16#6b 16#6c 16#6d  16#6e 16#6f 16#70  16#71 16#72
395  16#73  16#74 16#75 16#95  16#96 16#97 16#b0  16#bf
396] vg&undef pop
397
398% Define the base fonts which don't change.
399/Undefined-UC NullEncoding       /Helvetica    vg&newbasefont pop
400/MathOps-UC   UCMathOpsEncoding  /Symbol       vg&newbasefont pop
401/Arrows-UC    UCArrowsEncoding   /Symbol       vg&newbasefont pop
402/Dingbats-UC  UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
403
404% Make the SansSerif composite fonts.
405/SansSerif /Helvetica 16#00 vg&newcompositefont
406/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
407/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
408/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
409
410% Make the Serif composite fonts.
411/Serif /Times-Roman 16#00 vg&newcompositefont
412/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
413/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
414/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
415
416% Make the Monospaced composite fonts.
417/Monospaced /Courier 16#00 vg&newcompositefont
418/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
419/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
420/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
421
422% Make the Dialog composite fonts.
423/Dialog /Helvetica 16#00 vg&newcompositefont
424/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
425/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
426/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
427
428% Make the DialogInput composite fonts.
429/DialogInput /Courier 16#00 vg&newcompositefont
430/DialogInput-Bold /Courier-Bold 16#01 vg&newcompositefont
431/DialogInput-Italic /Courier-Oblique 16#02 vg&newcompositefont
432/DialogInput-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
433
434% Make the Typewriter composite fonts (JDK 1.1 only).
435/Typewriter /Courier 16#00 vg&newcompositefont
436/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
437/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
438/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
439
440
441/cfontH {
442 dup /fontsize exch def /SansSerif exch sf
443 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
444} def
445/cfontHB {
446  dup /fontsize exch def /SansSerif-Bold exch sf
447 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
448} def
449/cfontHI {
450 dup /fontsize exch def /SansSerif-Italic exch sf
451 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
452} def
453/cfontHBI {
454 dup /fontsize exch def /SansSerif-BoldItalic exch sf
455 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
456} def
457
458/cfontT {
459 dup /fontsize exch def /Serif exch sf
460 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
461} def
462/cfontTB {
463 dup /fontsize exch def /Serif-Bold exch sf
464 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
465} def
466/cfontTI {
467 dup /fontsize exch def /Serif-Italic exch sf
468 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
469} def
470/cfontTBI {
471 dup /fontsize exch def /Serif-BoldItalic exch sf
472 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
473} def
474
475/cfontC {
476 dup /fontsize exch def /Typewriter exch sf
477 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
478} def
479/cfontCB {
480 dup /fontsize exch def /Typewriter-Bold exch sf
481 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
482} def
483/cfontCI {
484 dup /fontsize exch def /Typewriter-Italic exch sf
485 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
486} def
487/cfontCBI {
488 dup /fontsize exch def /Typewriter-BoldItalic exch sf
489 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
490} def
491
492% Darken or lighten the current color.
493/darken {0.7 exch exp 3 copy
494         q 4 -1 roll vg&C
495         currentrgbcolor 3 {4 -2 roll mul} repeat
496         3 array astore Q} def
497
498/displayColorMap
499<< /Cr   [1.00 0.00 0.00]       /Cg     [0.00 1.00 0.00]
500   /Cb   [0.00 0.00 1.00]       /Cc     [1.00 0.00 0.00 0.00]
501   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
502   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
503   /Cw   [1   ]                 /Cgrl   [0.75]
504   /Cgr  [0.50]                 /Cgrd   [0.25]
505   /Ck   [0   ]
506   /CGr  [1.00 0.00 0.00]       /CGg    [0.00 1.00 0.00]
507   /CGb  [0.00 0.00 1.00]       /CGc    [1.00 0.00 0.00 0.00]
508   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
509   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
510   /CGw  [1   ]                 /CGgrl  [0.75]
511   /CGgr [0.50]                 /CGgrd  [0.25]
512   /CGk  [0   ]
513   /CIr  [1.00 0.00 0.00]       /CIg    [0.00 1.00 0.00]
514   /CIb  [0.00 0.00 1.00]       /CIc    [1.00 0.00 0.00 0.00]
515   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
516   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
517   /CIw  [1   ]                 /CIgrl  [0.75]
518   /CIgr [0.50]                 /CIgrd  [0.25]
519   /CIk  [0   ]
520>> def
521
522/printColorMap
523<< /Cr   [1.00 0.33 0.33]       /Cg     [0.33 1.00 0.33]
524   /Cb   [0.33 0.33 1.00]       /Cc     [1.00 0.00 0.00 0.00]
525   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
526   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
527   /Cw   [1   ]                 /Cgrl   [0.75]
528   /Cgr  [0.50]                 /Cgrd   [0.25]
529   /Ck   [0   ]
530   /CGr  [1.00 0.33 0.33]       /CGg    [0.33 1.00 0.33]
531   /CGb  [0.33 0.33 1.00]       /CGc    [1.00 0.00 0.00 0.00]
532   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
533   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
534   /CGw  [1   ]                 /CGgrl  [0.75]
535   /CGgr [0.50]                 /CGgrd  [0.25]
536   /CGk  [0   ]
537   /CIr  [1.00 0.33 0.33]       /CIg    [0.33 1.00 0.33]
538   /CIb  [0.33 0.33 1.00]       /CIc    [1.00 0.00 0.00 0.00]
539   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
540   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
541   /CIw  [1   ]                 /CIgrl  [0.75]
542   /CIgr [0.50]                 /CIgrd  [0.25]
543   /CIk  [0   ]
544>> def
545
546/grayColorMap
547<< /Cr   [0   ]                 /Cg     [0   ]
548   /Cb   [0   ]                 /Cc     [0   ]
549   /Cm   [0   ]                 /Cy     [0   ]
550   /Co   [0   ]                 /Cp     [0   ]
551   /Cw   [0   ]                 /Cgrl   [0   ]
552   /Cgr  [0   ]                 /Cgrd   [0   ]
553   /Ck   [0   ]
554   /CGr  [0.75]                 /CGg    [1   ]
555   /CGb  [0.50]                 /CGc    [0.75]
556   /CGm  [0.50]                 /CGy    [1   ]
557   /CGo  [0.75]                 /CGp    [1   ]
558   /CGw  [0   ]                 /CGgrl  [0.25]
559   /CGgr [0.50]                 /CGgrd  [0.75]
560   /CGk  [1   ]
561   /CIr  [1   ]                 /CIg    [1   ]
562   /CIb  [1   ]                 /CIc    [1   ]
563   /CIm  [1   ]                 /CIy    [1   ]
564   /CIo  [1   ]                 /CIp    [1   ]
565   /CIw  [1   ]                 /CIgrl  [1   ]
566   /CIgr [1   ]                 /CIgrd  [1   ]
567   /CIk  [1   ]
568>> def
569
570/bwColorMap
571<< /Cr   [0   ]                 /Cg     [0   ]
572   /Cb   [0   ]                 /Cc     [0   ]
573   /Cm   [0   ]                 /Cy     [0   ]
574   /Co   [0   ]                 /Cp     [0   ]
575   /Cw   [0   ]                 /Cgrl   [0   ]
576   /Cgr  [0   ]                 /Cgrd   [0   ]
577   /Ck   [0   ]
578   /CGr  [1   ]                 /CGg    [1   ]
579   /CGb  [1   ]                 /CGc    [1   ]
580   /CGm  [1   ]                 /CGy    [1   ]
581   /CGo  [1   ]                 /CGp    [1   ]
582   /CGw  [0   ]                 /CGgrl  [1   ]
583   /CGgr [1   ]                 /CGgrd  [1   ]
584   /CGk  [1   ]
585   /CIr  [1   ]                 /CIg    [1   ]
586   /CIb  [1   ]                 /CIc    [1   ]
587   /CIm  [1   ]                 /CIy    [1   ]
588   /CIo  [1   ]                 /CIp    [1   ]
589   /CIw  [1   ]                 /CIgrl  [1   ]
590   /CIgr [1   ]                 /CIgrd  [1   ]
591   /CIk  [1   ]
592>> def
593
594%
595% The following routines handle the alignment of and printing of
596% tagged strings.
597%
598
599% Predefine the bounding box values.
600/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
601
602% This routine pops the first unicode character off of a string and returns
603% the remainder of the string, the character code of first character,
604% and a "true" if the string was non-zero length.
605% <string>      popfirst <remaining string> <true>
606% <null string> popfirst <false>
607/popfirst {
608  dup length 1 gt
609    {dup 0 get /vg&fbyte exch def
610     dup 1 get /vg&cbyte exch def
611     dup length 2 sub 2 exch getinterval true}
612    {pop false} ifelse
613} def
614
615% This routine shows a single unicode character given the font and
616% character codes.
617% <font code> <char code> unicharshow --
618/unicharshow {
619  2 string
620  dup 0 5 -1 roll put
621  dup 1 4 -1 roll put
622  internalshow
623} def
624
625% This is an internal routine to alternate between determining the
626% bounding box for stringsize and showing the string for recshow.
627% <string> internalshow --
628/internalshow {show} def
629
630% This is an internal routine to alternate between determining the
631% bounding box for stringsize and stroking various ornaments.
632% <string> internalstroke --
633/internalstroke {S} def
634
635% Sets up internalshow to use the null device to determine string size.
636% -- nullinternalshow --
637/nullinternalshow {/internalshow {false charpath flattenpath
638                                  pathbbox updatebbox} def} def
639
640% Sets up internalstroke to use the null device to determine string size.
641% -- nullinternalstroke --
642/nullinternalstroke {
643 /internalstroke {flattenpath pathbbox updatebbox} def} def
644
645% This routine tests to see if the character code matches the first
646% character of a string.
647% <char code> <string> testchar <char code> <true or false>
648/testchar {exch dup 3 -1 roll 0 get eq} def
649
650% Raise the text baseline for superscripts.
651% -- raise --
652/raise {
653  0 fontsize 2 div rmoveto
654  /fontsize fontsize 2 mul 3 div def
655  currentfont /FontName get fontsize sf
656} def
657
658% Un-raise the text baseline for superscripts.
659% -- unraise --
660/unraise {
661  /fontsize fontsize 1.5 mul def
662  0 fontsize 2 div neg rmoveto
663} def
664
665% Lower the text baseline for subscripts.
666% -- lower --
667/lower {
668  0 fontsize 3 div neg rmoveto
669  /fontsize fontsize 2 mul 3 div def
670  currentfont /FontName get fontsize sf
671} def
672
673% Un-lower the text baseline for subscripts.
674% -- unlower --
675/unlower {
676  /fontsize fontsize 1.5 mul def
677  0 fontsize 3 div rmoveto
678} def
679
680% Compare the top two elements on the stack and leave only the
681% larger one.
682/maxval {2 copy gt {pop} {exch pop} ifelse} def
683
684% Tokenize a string.  Do not use the usual PostScript token because
685% parentheses will not be interpreted correctly because of rescanning
686% of the string.
687/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
6880 2 vg&string length 2 sub {
689  dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
690  dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
691  /vg&level exch vg&level add def
692  vg&level 0 eq {/vg&index exch def exit} if pop
693} for
694vg&index 0 ge {
695  vg&string vg&index 2 add dup vg&string length exch sub getinterval
696  vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
697  true}
698{false} ifelse
699} bind def
700
701% Recursively show an unicode string.
702% <string> recshow --
703/recshow {
704  popfirst
705  {
706    % Test to see if this is a string attribute.
707    vg&fbyte 16#f0 and 16#e0 eq
708    {
709      q
710
711      % Font style.
712      currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
713      vg&cbyte or vg&fontstyles exch get fontsize exch exec
714
715      vg&token pop recshow currentpoint Q m recshow
716    }
717    {
718      vg&fbyte 16#F8 and 16#F0 eq {
719
720        % Superscript and/or subscript.
721        vg&cbyte 16#00 eq {
722          vg&token pop exch vg&token pop 3 -1 roll
723          q raise recshow unraise currentpoint pop Q exch
724          q lower recshow unlower currentpoint pop Q
725          maxval currentpoint exch pop m recshow } if
726
727        % Strikeout.
728        vg&cbyte 16#01 eq {
729          vg&token pop currentpoint 3 -1 roll recshow
730          q 0 J vg&underline vg&uthick w
731          currentpoint 4 -2 roll fontsize 3 div add moveto
732          fontsize 3 div add lineto internalstroke Q
733          recshow} if
734
735        % Underline.
736        vg&cbyte 16#02 eq {
737          vg&token pop currentpoint 3 -1 roll recshow
738          q 0 J vg&underline vg&uthick w
739          currentpoint 4 -2 roll vg&uoffset add moveto
740          vg&uoffset add lineto internalstroke Q
741          recshow} if
742
743        % Dashed underline.
744        vg&cbyte 16#03 eq {
745          vg&token pop currentpoint 3 -1 roll recshow
746          q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
747          vg&underline vg&uthick w
748          currentpoint 4 -2 roll vg&uoffset add moveto
749          vg&uoffset add lineto internalstroke Q
750          recshow} if
751
752        % Dotted underline.
753        vg&cbyte 16#04 eq {
754          vg&token pop currentpoint 3 -1 roll recshow
755          q 1 J [ 0 vg&uthick 3 mul] 0 d
756          vg&underline vg&uthick w
757          currentpoint 4 -2 roll vg&uoffset add moveto
758          vg&uoffset add lineto internalstroke Q
759          recshow} if
760
761        % Thick underline.
762        vg&cbyte 16#05 eq {
763          vg&token pop currentpoint 3 -1 roll recshow
764          q 0 J vg&underline vg&uthick 2 mul w
765          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
766          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
767          recshow} if
768
769        % Gray thick underline.
770        vg&cbyte 16#06 eq {
771          vg&token pop currentpoint 3 -1 roll recshow
772          q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
773          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
774          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
775          recshow} if
776
777        % Overbar.
778        vg&cbyte 16#07 eq {
779          vg&token pop dup stringsize relative 4 1 roll pop pop exch
780          3 -1 roll recshow
781          q 0 J vg&underline vg&uthick w
782          vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
783          recshow} if
784      }
785      {
786        vg&fbyte vg&cbyte unicharshow recshow
787      } ifelse
788    } ifelse
789  } if
790} def
791
792% Get the underline position and thickness from the current font.
793/vg&underline {
794
795currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
796dup dup /FontInfo known {
797  /FontInfo get dup
798  dup /UnderlinePosition known {
799    /UnderlinePosition get /vg&uoffset exch def
800  }
801  {
802    pop /vg&uoffset 0 def
803  } ifelse
804  dup /UnderlineThickness known {
805    /UnderlineThickness get /vg&uthick exch def
806  }
807  {
808    pop /vg&uthick 0 def
809  } ifelse
810}
811{
812  pop /vg&uoffset 0 def /vg&uthick 0 def
813} ifelse
814/FontMatrix get
815currentfont dup /FontType get 0 eq
816{/FontMatrix get matrix concatmatrix}{pop} ifelse
817dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
8180 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
819} def
820
821% Make a frame with the coordinates on the stack.
822% <llx> <lly> <urx> <ury> frame --
823/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
824
825% Resets the accumulated bounding box to a degenerate box at the
826% current point.
827% -- resetbbox --
828/resetbbox {
829  currentpoint 2 copy
830  /bbury exch def
831  /bburx exch def
832  /bblly exch def
833  /bbllx exch def
834} def
835
836% Update the accumulated bounding box.
837% <llx'> <lly'> <urx'> <ury'> updatebbox --
838/updatebbox {
839  dup bbury gt {/bbury exch def} {pop} ifelse
840  dup bburx gt {/bburx exch def} {pop} ifelse
841  dup bblly lt {/bblly exch def} {pop} ifelse
842  dup bbllx lt {/bbllx exch def} {pop} ifelse
843} def
844
845% Set the bounding box to the values on the stack.
846% <llx'> <lly'> <urx'> <ury'> updatebbox --
847/restorebbox {
848  /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
849} def
850
851% Push the accumulated bounding box onto the stack.
852% -- pushbbox <llx> <lly> <urx> <ury>
853/pushbbox {bbllx bblly bburx bbury} def
854
855% Make the relative bounding box relative to the currentpoint.
856% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
857/inflate {
858  2 {fontsize 0.2 mul add 4 1 roll} repeat
859  2 {fontsize 0.2 mul sub 4 1 roll} repeat
860} def
861
862% Make the relative bounding box relative to the currentpoint.
863% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
864/relative {
865  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
866  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
867} def
868
869% Returns the size of a string appropriate for recshow.
870% <string> stringsize <llx> <lly> <urx> <ury>
871/stringsize {
872  pushbbox /internalshow load /internalstroke load 7 -1 roll
873  q
874  nulldevice 0 0 m
875  nullinternalshow nullinternalstroke
876  resetbbox
877  recshow
878  /internalstroke exch def /internalshow exch def
879  pushbbox 8 -4 roll restorebbox
880  Q
881} def
882
883% Calculate values for string positioning.
884/calcval {4 copy
885  3 -1 roll sub /widy exch def sub neg /widx exch def
886  pop pop /dy exch def /dx exch def} def
887
888% Utilities to position a string.
889% First letter (U=upper, C=center, B=baseline, L=lower)
890% Second letter (L=left, C=center, R=right)
891/align [
892{calcval dx neg widy dy add neg rmoveto} % UL
893{calcval dx neg widy 2 div dy add neg rmoveto} % CL
894{calcval dx neg 0 rmoveto} % BL
895{calcval dx neg dy neg rmoveto} % LL
896{calcval widx dx add neg widy dy add neg rmoveto} % UR
897{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
898{calcval widx dx add neg 0 rmoveto} % BR
899{calcval widx dx add neg dy neg rmoveto} % LR
900{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
901{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
902{calcval widx 2 div dx add neg 0 rmoveto} % BC
903{calcval widx 2 div dx add neg dy neg rmoveto} % LC
904] def
905
906/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
907         q inflate relative frame exch exec Q recshow Q} def
908
909end /procDict exch def
910%%EndProlog
911
912%%BeginSetup
913save
914procDict begin
915printColorMap begin
916624 228 setpagesize
9170 0 0 0 setmargins
9180 0 setorigin
919624 228 setsize
920fittopage
921portrait
922imagescale
923cliptobounds
924setbasematrix
925/Helvetica 10 sf
926defaultGraphicsState
927%%EndSetup
928
9290.00000 0.00000 0.00000 RG
930[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
931cliprestore
9321.00000 1.00000 1.00000 RG
933newpath
9340.00000 0.00000 m
935624.000 0.00000 l
936624.000 228.000 l
9370.00000 228.000 l
9380.00000 0.00000 l
939h
940f
9410.00000 0.00000 0.00000 RG
9420.00000 0.00000 0.00000 RG
943[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
944cliprestore
9451.00000 1.00000 1.00000 RG
946newpath
9470.00000 0.00000 m
948624.000 0.00000 l
949624.000 228.000 l
9500.00000 228.000 l
9510.00000 0.00000 l
952h
953f
9540.00000 0.00000 0.00000 RG
955[ 1.00000 0.00000 0.00000 1.00000 -68.0000 -92.0000 ] concat
95668 92 624 228 rc
9570 J
9582 j
9592 J
9600 j
96110.0000 M
962newpath
963434.000 102.000 m
964682.000 102.000 l
965682.000 310.000 l
966434.000 310.000 l
967434.000 102.000 l
968h
969S
9700 J
9712 j
9722 J
9730 j
97410.0000 M
9750 J
9762 j
9772 J
9780 j
97910.0000 M
980newpath
981456.000 229.000 m
982636.000 229.000 l
983636.000 275.000 l
984456.000 275.000 l
985456.000 229.000 l
986h
987S
9880 J
9892 j
9902 J
9910 j
99210.0000 M
993[ 1.00000 0.00000 0.00000 1.00000 514.000 244.000 ] concat
994newpath
9956.56250 4.40625 m
9967.70312 4.40625 l
9977.70312 9.37500 l
9987.70312 10.2396 7.60417 10.9245 7.40625 11.4297  c
9997.20833 11.9349 6.85417 12.3464 6.34375 12.6641  c
10005.83333 12.9818 5.16667 13.1406 4.34375 13.1406  c
10013.54167 13.1406 2.88281 13.0026 2.36719 12.7266  c
10021.85156 12.4505 1.48438 12.0495 1.26562 11.5234  c
10031.04688 10.9974 .937500 10.2812 .937500 9.37500  c
1004.937500 4.40625 l
10052.07812 4.40625 l
10062.07812 9.35938 l
10072.07812 10.1094 2.14844 10.6615 2.28906 11.0156  c
10082.42969 11.3698 2.66927 11.6432 3.00781 11.8359  c
10093.34635 12.0286 3.76042 12.1250 4.25000 12.1250  c
10105.08333 12.1250 5.67708 11.9349 6.03125 11.5547  c
10116.38542 11.1745 6.56250 10.4427 6.56250 9.35938  c
10126.56250 4.40625 l
1013h
10149.04102 11.1406 m
101510.0723 10.9844 l
101610.1348 11.4010 10.2988 11.7188 10.5645 11.9375  c
101710.8301 12.1562 11.2077 12.2656 11.6973 12.2656  c
101812.1764 12.2656 12.5332 12.1693 12.7676 11.9766  c
101913.0020 11.7839 13.1191 11.5521 13.1191 11.2812  c
102013.1191 11.0417 13.0150 10.8542 12.8066 10.7188  c
102112.6608 10.6250 12.3014 10.5052 11.7285 10.3594  c
102210.9577 10.1615 10.4238 9.99219 10.1270 9.85156  c
10239.83008 9.71094 9.60352 9.51562 9.44727 9.26562  c
10249.29102 9.01562 9.21289 8.73438 9.21289 8.42188  c
10259.21289 8.15104 9.27539 7.89583 9.40039 7.65625  c
10269.52539 7.41667 9.69727 7.21875 9.91602 7.06250  c
102710.0827 6.94792 10.3066 6.84896 10.5879 6.76562  c
102810.8691 6.68229 11.1764 6.64062 11.5098 6.64062  c
102911.9889 6.64062 12.4134 6.71094 12.7832 6.85156  c
103013.1530 6.99219 13.4264 7.18229 13.6035 7.42188  c
103113.7806 7.66146 13.9004 7.97917 13.9629 8.37500  c
103212.9316 8.51562 l
103312.8900 8.20312 12.7572 7.95573 12.5332 7.77344  c
103412.3092 7.59115 11.9889 7.50000 11.5723 7.50000  c
103511.0931 7.50000 10.7493 7.58073 10.5410 7.74219  c
103610.3327 7.90365 10.2285 8.09375 10.2285 8.31250  c
103710.2285 8.44792 10.2702 8.56771 10.3535 8.67188  c
103810.4473 8.78646 10.5827 8.88021 10.7598 8.95312  c
103910.8639 8.99479 11.1764 9.08333 11.6973 9.21875  c
104012.4473 9.42708 12.9681 9.59375 13.2598 9.71875  c
104113.5514 9.84375 13.7806 10.0260 13.9473 10.2656  c
104214.1139 10.5052 14.1973 10.8073 14.1973 11.1719  c
104314.1973 11.5260 14.0957 11.8568 13.8926 12.1641  c
104413.6895 12.4714 13.3952 12.7109 13.0098 12.8828  c
104512.6243 13.0547 12.1868 13.1406 11.6973 13.1406  c
104610.8848 13.1406 10.2676 12.9714 9.84570 12.6328  c
10479.42383 12.2943 9.15560 11.7969 9.04102 11.1406  c
1048h
104919.7129 11.0000 m
105020.8066 11.1250 l
105120.6400 11.7604 20.3223 12.2552 19.8535 12.6094  c
105219.3848 12.9635 18.7910 13.1406 18.0723 13.1406  c
105317.1660 13.1406 16.4447 12.8594 15.9082 12.2969  c
105415.3717 11.7344 15.1035 10.9479 15.1035 9.93750  c
105515.1035 8.89583 15.3743 8.08594 15.9160 7.50781  c
105616.4577 6.92969 17.1556 6.64062 18.0098 6.64062  c
105718.8431 6.64062 19.5228 6.92188 20.0488 7.48438  c
105820.5749 8.04688 20.8379 8.84375 20.8379 9.87500  c
105920.8379 9.93750 20.8379 10.0312 20.8379 10.1562  c
106016.1973 10.1562 l
106116.2389 10.8438 16.4316 11.3672 16.7754 11.7266  c
106217.1191 12.0859 17.5514 12.2656 18.0723 12.2656  c
106318.4577 12.2656 18.7884 12.1641 19.0645 11.9609  c
106419.3405 11.7578 19.5566 11.4375 19.7129 11.0000  c
1065h
106616.2598 9.29688 m
106719.7285 9.29688 l
106819.6868 8.76562 19.5566 8.36979 19.3379 8.10938  c
106918.9941 7.70312 18.5566 7.50000 18.0254 7.50000  c
107017.5358 7.50000 17.1270 7.66146 16.7988 7.98438  c
107116.4707 8.30729 16.2910 8.74479 16.2598 9.29688  c
1072h
107322.1211 13.0000 m
107422.1211 6.78125 l
107523.0742 6.78125 l
107623.0742 7.71875 l
107723.3138 7.28125 23.5352 6.99219 23.7383 6.85156  c
107823.9414 6.71094 24.1680 6.64062 24.4180 6.64062  c
107924.7721 6.64062 25.1315 6.75000 25.4961 6.96875  c
108025.1367 7.95312 l
108124.8763 7.79688 24.6211 7.71875 24.3711 7.71875  c
108224.1315 7.71875 23.9206 7.78906 23.7383 7.92969  c
108323.5560 8.07031 23.4284 8.26562 23.3555 8.51562  c
108423.2305 8.89062 23.1680 9.29688 23.1680 9.73438  c
108523.1680 13.0000 l
108622.1211 13.0000 l
1087h
108828.6543 13.0000 m
108931.9512 4.40625 l
109033.1699 4.40625 l
109136.6855 13.0000 l
109235.4043 13.0000 l
109334.3887 10.3906 l
109430.8105 10.3906 l
109529.8574 13.0000 l
109628.6543 13.0000 l
1097h
109831.1387 9.46875 m
109934.0449 9.46875 l
110033.1543 7.09375 l
110132.8730 6.37500 32.6699 5.78125 32.5449 5.31250  c
110232.4303 5.86458 32.2741 6.41146 32.0762 6.95312  c
110331.1387 9.46875 l
1104h
110541.5332 10.7188 m
110642.5645 10.8594 l
110742.4499 11.5677 42.1582 12.1250 41.6895 12.5312  c
110841.2207 12.9375 40.6478 13.1406 39.9707 13.1406  c
110939.1165 13.1406 38.4316 12.8620 37.9160 12.3047  c
111037.4004 11.7474 37.1426 10.9479 37.1426 9.90625  c
111137.1426 9.23958 37.2546 8.65365 37.4785 8.14844  c
111237.7025 7.64323 38.0410 7.26562 38.4941 7.01562  c
111338.9473 6.76562 39.4447 6.64062 39.9863 6.64062  c
111440.6530 6.64062 41.2025 6.80990 41.6348 7.14844  c
111542.0671 7.48698 42.3457 7.97396 42.4707 8.60938  c
111641.4395 8.76562 l
111741.3457 8.34896 41.1738 8.03385 40.9238 7.82031  c
111840.6738 7.60677 40.3717 7.50000 40.0176 7.50000  c
111939.4863 7.50000 39.0540 7.69010 38.7207 8.07031  c
112038.3874 8.45052 38.2207 9.05208 38.2207 9.87500  c
112138.2207 10.7188 38.3822 11.3281 38.7051 11.7031  c
112239.0280 12.0781 39.4447 12.2656 39.9551 12.2656  c
112340.3717 12.2656 40.7181 12.1406 40.9941 11.8906  c
112441.2702 11.6406 41.4499 11.2500 41.5332 10.7188  c
1125h
112645.7676 12.0625 m
112745.9238 12.9844 l
112845.6217 13.0469 45.3561 13.0781 45.1270 13.0781  c
112944.7415 13.0781 44.4447 13.0182 44.2363 12.8984  c
113044.0280 12.7786 43.8796 12.6198 43.7910 12.4219  c
113143.7025 12.2240 43.6582 11.8073 43.6582 11.1719  c
113243.6582 7.59375 l
113342.8926 7.59375 l
113442.8926 6.78125 l
113543.6582 6.78125 l
113643.6582 5.23438 l
113744.7051 4.60938 l
113844.7051 6.78125 l
113945.7676 6.78125 l
114045.7676 7.59375 l
114144.7051 7.59375 l
114244.7051 11.2344 l
114344.7051 11.5365 44.7233 11.7292 44.7598 11.8125  c
114444.7962 11.8958 44.8561 11.9635 44.9395 12.0156  c
114545.0228 12.0677 45.1426 12.0938 45.2988 12.0938  c
114645.4238 12.0938 45.5801 12.0833 45.7676 12.0625  c
1147h
114846.8047 5.62500 m
114946.8047 4.40625 l
115047.8672 4.40625 l
115147.8672 5.62500 l
115246.8047 5.62500 l
1153h
115446.8047 13.0000 m
115546.8047 6.78125 l
115647.8672 6.78125 l
115747.8672 13.0000 l
115846.8047 13.0000 l
1159h
116051.1895 13.0000 m
116148.8301 6.78125 l
116249.9395 6.78125 l
116351.2832 10.5000 l
116451.4186 10.9062 51.5488 11.3229 51.6738 11.7500  c
116551.7676 11.4271 51.8978 11.0365 52.0645 10.5781  c
116653.4551 6.78125 l
116754.5332 6.78125 l
116852.1738 13.0000 l
116951.1895 13.0000 l
1170h
117155.4707 5.62500 m
117255.4707 4.40625 l
117356.5332 4.40625 l
117456.5332 5.62500 l
117555.4707 5.62500 l
1176h
117755.4707 13.0000 m
117855.4707 6.78125 l
117956.5332 6.78125 l
118056.5332 13.0000 l
118155.4707 13.0000 l
1182h
118360.4336 12.0625 m
118460.5898 12.9844 l
118560.2878 13.0469 60.0221 13.0781 59.7930 13.0781  c
118659.4076 13.0781 59.1107 13.0182 58.9023 12.8984  c
118758.6940 12.7786 58.5456 12.6198 58.4570 12.4219  c
118858.3685 12.2240 58.3242 11.8073 58.3242 11.1719  c
118958.3242 7.59375 l
119057.5586 7.59375 l
119157.5586 6.78125 l
119258.3242 6.78125 l
119358.3242 5.23438 l
119459.3711 4.60938 l
119559.3711 6.78125 l
119660.4336 6.78125 l
119760.4336 7.59375 l
119859.3711 7.59375 l
119959.3711 11.2344 l
120059.3711 11.5365 59.3893 11.7292 59.4258 11.8125  c
120159.4622 11.8958 59.5221 11.9635 59.6055 12.0156  c
120259.6888 12.0677 59.8086 12.0938 59.9648 12.0938  c
120360.0898 12.0938 60.2461 12.0833 60.4336 12.0625  c
1204h
120561.4238 15.3906 m
120661.2988 14.4062 l
120761.5280 14.4688 61.7311 14.5000 61.9082 14.5000  c
120862.1374 14.5000 62.3223 14.4609 62.4629 14.3828  c
120962.6035 14.3047 62.7207 14.1979 62.8145 14.0625  c
121062.8770 13.9479 62.9863 13.6823 63.1426 13.2656  c
121163.1530 13.2135 63.1842 13.1302 63.2363 13.0156  c
121260.8613 6.78125 l
121362.0020 6.78125 l
121463.2988 10.3750 l
121563.4655 10.8333 63.6165 11.3177 63.7520 11.8281  c
121663.8770 11.3385 64.0228 10.8646 64.1895 10.4062  c
121765.5176 6.78125 l
121866.5645 6.78125 l
121964.2051 13.1094 l
122063.9447 13.7865 63.7467 14.2552 63.6113 14.5156  c
122163.4238 14.8698 63.2077 15.1276 62.9629 15.2891  c
122262.7181 15.4505 62.4290 15.5312 62.0957 15.5312  c
122361.8978 15.5312 61.6738 15.4844 61.4238 15.3906  c
1224h
1225f
1226[ 1.00000 0.00000 0.00000 1.00000 -514.000 -244.000 ] concat
12270 J
12282 j
12292 J
12300 j
123110.0000 M
1232newpath
1233455.000 157.000 m
1234635.000 157.000 l
1235635.000 195.000 l
1236455.000 195.000 l
1237455.000 157.000 l
1238h
1239S
12400 J
12412 j
12422 J
12430 j
124410.0000 M
1245[ 1.00000 0.00000 0.00000 1.00000 507.000 168.000 ] concat
1246newpath
1247.937500 13.0000 m
1248.937500 4.40625 l
12494.75000 4.40625 l
12505.52083 4.40625 6.10417 4.48438 6.50000 4.64062  c
12516.89583 4.79688 7.21354 5.07031 7.45312 5.46094  c
12527.69271 5.85156 7.81250 6.28125 7.81250 6.75000  c
12537.81250 7.36458 7.61458 7.88021 7.21875 8.29688  c
12546.82292 8.71354 6.21354 8.97917 5.39062 9.09375  c
12555.69271 9.23958 5.92188 9.38021 6.07812 9.51562  c
12566.41146 9.81771 6.72396 10.1979 7.01562 10.6562  c
12578.51562 13.0000 l
12587.07812 13.0000 l
12595.95312 11.2188 l
12605.61979 10.6979 5.34635 10.3021 5.13281 10.0312  c
12614.91927 9.76042 4.72656 9.57031 4.55469 9.46094  c
12624.38281 9.35156 4.20833 9.27083 4.03125 9.21875  c
12633.90625 9.19792 3.69792 9.18750 3.40625 9.18750  c
12642.07812 9.18750 l
12652.07812 13.0000 l
1266.937500 13.0000 l
1267h
12682.07812 8.20312 m
12694.53125 8.20312 l
12705.04167 8.20312 5.44531 8.14844 5.74219 8.03906  c
12716.03906 7.92969 6.26302 7.75781 6.41406 7.52344  c
12726.56510 7.28906 6.64062 7.03125 6.64062 6.75000  c
12736.64062 6.34375 6.49219 6.01042 6.19531 5.75000  c
12745.89844 5.48958 5.43229 5.35938 4.79688 5.35938  c
12752.07812 5.35938 l
12762.07812 8.20312 l
1277h
127813.7129 11.0000 m
127914.8066 11.1250 l
128014.6400 11.7604 14.3223 12.2552 13.8535 12.6094  c
128113.3848 12.9635 12.7910 13.1406 12.0723 13.1406  c
128211.1660 13.1406 10.4447 12.8594 9.90820 12.2969  c
12839.37174 11.7344 9.10352 10.9479 9.10352 9.93750  c
12849.10352 8.89583 9.37435 8.08594 9.91602 7.50781  c
128510.4577 6.92969 11.1556 6.64062 12.0098 6.64062  c
128612.8431 6.64062 13.5228 6.92188 14.0488 7.48438  c
128714.5749 8.04688 14.8379 8.84375 14.8379 9.87500  c
128814.8379 9.93750 14.8379 10.0312 14.8379 10.1562  c
128910.1973 10.1562 l
129010.2389 10.8438 10.4316 11.3672 10.7754 11.7266  c
129111.1191 12.0859 11.5514 12.2656 12.0723 12.2656  c
129212.4577 12.2656 12.7884 12.1641 13.0645 11.9609  c
129313.3405 11.7578 13.5566 11.4375 13.7129 11.0000  c
1294h
129510.2598 9.29688 m
129613.7285 9.29688 l
129713.6868 8.76562 13.5566 8.36979 13.3379 8.10938  c
129812.9941 7.70312 12.5566 7.50000 12.0254 7.50000  c
129911.5358 7.50000 11.1270 7.66146 10.7988 7.98438  c
130010.4707 8.30729 10.2910 8.74479 10.2598 9.29688  c
1301h
130216.1367 13.0000 m
130316.1367 6.78125 l
130417.0742 6.78125 l
130517.0742 7.65625 l
130617.5326 6.97917 18.1940 6.64062 19.0586 6.64062  c
130719.4336 6.64062 19.7799 6.70833 20.0977 6.84375  c
130820.4154 6.97917 20.6523 7.15625 20.8086 7.37500  c
130920.9648 7.59375 21.0742 7.84896 21.1367 8.14062  c
131021.1680 8.33854 21.1836 8.68229 21.1836 9.17188  c
131121.1836 13.0000 l
131220.1367 13.0000 l
131320.1367 9.21875 l
131420.1367 8.78125 20.0951 8.45833 20.0117 8.25000  c
131519.9284 8.04167 19.7826 7.87240 19.5742 7.74219  c
131619.3659 7.61198 19.1211 7.54688 18.8398 7.54688  c
131718.3919 7.54688 18.0039 7.69010 17.6758 7.97656  c
131817.3477 8.26302 17.1836 8.80208 17.1836 9.59375  c
131917.1836 13.0000 l
132016.1367 13.0000 l
1321h
132227.0605 11.0000 m
132328.1543 11.1250 l
132427.9876 11.7604 27.6699 12.2552 27.2012 12.6094  c
132526.7324 12.9635 26.1387 13.1406 25.4199 13.1406  c
132624.5137 13.1406 23.7923 12.8594 23.2559 12.2969  c
132722.7194 11.7344 22.4512 10.9479 22.4512 9.93750  c
132822.4512 8.89583 22.7220 8.08594 23.2637 7.50781  c
132923.8053 6.92969 24.5033 6.64062 25.3574 6.64062  c
133026.1908 6.64062 26.8704 6.92188 27.3965 7.48438  c
133127.9225 8.04688 28.1855 8.84375 28.1855 9.87500  c
133228.1855 9.93750 28.1855 10.0312 28.1855 10.1562  c
133323.5449 10.1562 l
133423.5866 10.8438 23.7793 11.3672 24.1230 11.7266  c
133524.4668 12.0859 24.8991 12.2656 25.4199 12.2656  c
133625.8053 12.2656 26.1361 12.1641 26.4121 11.9609  c
133726.6882 11.7578 26.9043 11.4375 27.0605 11.0000  c
1338h
133923.6074 9.29688 m
134027.0762 9.29688 l
134127.0345 8.76562 26.9043 8.36979 26.6855 8.10938  c
134226.3418 7.70312 25.9043 7.50000 25.3730 7.50000  c
134324.8835 7.50000 24.4746 7.66146 24.1465 7.98438  c
134423.8184 8.30729 23.6387 8.74479 23.6074 9.29688  c
1345h
134630.6250 13.0000 m
134728.7188 6.78125 l
134829.8125 6.78125 l
134930.7969 10.3750 l
135031.1719 11.7031 l
135131.1927 11.6406 31.3021 11.2135 31.5000 10.4219  c
135232.4844 6.78125 l
135333.5625 6.78125 l
135434.5000 10.3906 l
135534.8125 11.5781 l
135635.1719 10.3750 l
135736.2344 6.78125 l
135837.2656 6.78125 l
135935.3125 13.0000 l
136034.2188 13.0000 l
136133.2344 9.26562 l
136232.9844 8.21875 l
136331.7344 13.0000 l
136430.6250 13.0000 l
1365h
136640.6719 13.0000 m
136743.9688 4.40625 l
136845.1875 4.40625 l
136948.7031 13.0000 l
137047.4219 13.0000 l
137146.4062 10.3906 l
137242.8281 10.3906 l
137341.8750 13.0000 l
137440.6719 13.0000 l
1375h
137643.1562 9.46875 m
137746.0625 9.46875 l
137845.1719 7.09375 l
137944.8906 6.37500 44.6875 5.78125 44.5625 5.31250  c
138044.4479 5.86458 44.2917 6.41146 44.0938 6.95312  c
138143.1562 9.46875 l
1382h
138353.5508 10.7188 m
138454.5820 10.8594 l
138554.4674 11.5677 54.1758 12.1250 53.7070 12.5312  c
138653.2383 12.9375 52.6654 13.1406 51.9883 13.1406  c
138751.1341 13.1406 50.4492 12.8620 49.9336 12.3047  c
138849.4180 11.7474 49.1602 10.9479 49.1602 9.90625  c
138949.1602 9.23958 49.2721 8.65365 49.4961 8.14844  c
139049.7201 7.64323 50.0586 7.26562 50.5117 7.01562  c
139150.9648 6.76562 51.4622 6.64062 52.0039 6.64062  c
139252.6706 6.64062 53.2201 6.80990 53.6523 7.14844  c
139354.0846 7.48698 54.3633 7.97396 54.4883 8.60938  c
139453.4570 8.76562 l
139553.3633 8.34896 53.1914 8.03385 52.9414 7.82031  c
139652.6914 7.60677 52.3893 7.50000 52.0352 7.50000  c
139751.5039 7.50000 51.0716 7.69010 50.7383 8.07031  c
139850.4049 8.45052 50.2383 9.05208 50.2383 9.87500  c
139950.2383 10.7188 50.3997 11.3281 50.7227 11.7031  c
140051.0456 12.0781 51.4622 12.2656 51.9727 12.2656  c
140152.3893 12.2656 52.7357 12.1406 53.0117 11.8906  c
140253.2878 11.6406 53.4674 11.2500 53.5508 10.7188  c
1403h
140457.7852 12.0625 m
140557.9414 12.9844 l
140657.6393 13.0469 57.3737 13.0781 57.1445 13.0781  c
140756.7591 13.0781 56.4622 13.0182 56.2539 12.8984  c
140856.0456 12.7786 55.8971 12.6198 55.8086 12.4219  c
140955.7201 12.2240 55.6758 11.8073 55.6758 11.1719  c
141055.6758 7.59375 l
141154.9102 7.59375 l
141254.9102 6.78125 l
141355.6758 6.78125 l
141455.6758 5.23438 l
141556.7227 4.60938 l
141656.7227 6.78125 l
141757.7852 6.78125 l
141857.7852 7.59375 l
141956.7227 7.59375 l
142056.7227 11.2344 l
142156.7227 11.5365 56.7409 11.7292 56.7773 11.8125  c
142256.8138 11.8958 56.8737 11.9635 56.9570 12.0156  c
142357.0404 12.0677 57.1602 12.0938 57.3164 12.0938  c
142457.4414 12.0938 57.5977 12.0833 57.7852 12.0625  c
1425h
142658.8223 5.62500 m
142758.8223 4.40625 l
142859.8848 4.40625 l
142959.8848 5.62500 l
143058.8223 5.62500 l
1431h
143258.8223 13.0000 m
143358.8223 6.78125 l
143459.8848 6.78125 l
143559.8848 13.0000 l
143658.8223 13.0000 l
1437h
143863.2070 13.0000 m
143960.8477 6.78125 l
144061.9570 6.78125 l
144163.3008 10.5000 l
144263.4362 10.9062 63.5664 11.3229 63.6914 11.7500  c
144363.7852 11.4271 63.9154 11.0365 64.0820 10.5781  c
144465.4727 6.78125 l
144566.5508 6.78125 l
144664.1914 13.0000 l
144763.2070 13.0000 l
1448h
144967.4883 5.62500 m
145067.4883 4.40625 l
145168.5508 4.40625 l
145268.5508 5.62500 l
145367.4883 5.62500 l
1454h
145567.4883 13.0000 m
145667.4883 6.78125 l
145768.5508 6.78125 l
145868.5508 13.0000 l
145967.4883 13.0000 l
1460h
146172.4512 12.0625 m
146272.6074 12.9844 l
146372.3053 13.0469 72.0397 13.0781 71.8105 13.0781  c
146471.4251 13.0781 71.1283 13.0182 70.9199 12.8984  c
146570.7116 12.7786 70.5632 12.6198 70.4746 12.4219  c
146670.3861 12.2240 70.3418 11.8073 70.3418 11.1719  c
146770.3418 7.59375 l
146869.5762 7.59375 l
146969.5762 6.78125 l
147070.3418 6.78125 l
147170.3418 5.23438 l
147271.3887 4.60938 l
147371.3887 6.78125 l
147472.4512 6.78125 l
147572.4512 7.59375 l
147671.3887 7.59375 l
147771.3887 11.2344 l
147871.3887 11.5365 71.4069 11.7292 71.4434 11.8125  c
147971.4798 11.8958 71.5397 11.9635 71.6230 12.0156  c
148071.7064 12.0677 71.8262 12.0938 71.9824 12.0938  c
148172.1074 12.0938 72.2637 12.0833 72.4512 12.0625  c
1482h
148373.4414 15.3906 m
148473.3164 14.4062 l
148573.5456 14.4688 73.7487 14.5000 73.9258 14.5000  c
148674.1549 14.5000 74.3398 14.4609 74.4805 14.3828  c
148774.6211 14.3047 74.7383 14.1979 74.8320 14.0625  c
148874.8945 13.9479 75.0039 13.6823 75.1602 13.2656  c
148975.1706 13.2135 75.2018 13.1302 75.2539 13.0156  c
149072.8789 6.78125 l
149174.0195 6.78125 l
149275.3164 10.3750 l
149375.4831 10.8333 75.6341 11.3177 75.7695 11.8281  c
149475.8945 11.3385 76.0404 10.8646 76.2070 10.4062  c
149577.5352 6.78125 l
149678.5820 6.78125 l
149776.2227 13.1094 l
149875.9622 13.7865 75.7643 14.2552 75.6289 14.5156  c
149975.4414 14.8698 75.2253 15.1276 74.9805 15.2891  c
150074.7357 15.4505 74.4466 15.5312 74.1133 15.5312  c
150173.9154 15.5312 73.6914 15.4844 73.4414 15.3906  c
1502h
1503f
1504[ 1.00000 0.00000 0.00000 1.00000 -507.000 -168.000 ] concat
15051.00000 1.00000 1.00000 RG
15060.00000 0.00000 0.00000 RG
15070 J
15082 j
1509newpath
1510545.000 195.000 m
1511545.000 195.000 l
1512545.000 229.000 l
1513S
15142 J
15150 j
151610.0000 M
15171.00000 1.00000 1.00000 RG
1518newpath
1519545.000 195.000 m
1520537.000 207.000 l
1521545.000 207.000 l
1522553.000 207.000 l
1523h
1524f
15250.00000 0.00000 0.00000 RG
1526newpath
1527545.000 195.000 m
1528537.000 207.000 l
1529545.000 207.000 l
1530553.000 207.000 l
1531h
1532S
15330 J
15342 j
15352 J
15360 j
153710.0000 M
1538[ 1.00000 0.00000 0.00000 1.00000 495.000 116.000 ] concat
1539newpath
1540.656250 9.25000 m
1541.656250 8.26562 l
15426.34375 5.85938 l
15436.34375 6.90625 l
15441.82812 8.75000 l
15456.34375 10.6250 l
15466.34375 11.6719 l
1547.656250 9.25000 l
1548h
15497.66406 9.25000 m
15507.66406 8.26562 l
155113.3516 5.85938 l
155213.3516 6.90625 l
15538.83594 8.75000 l
155413.3516 10.6250 l
155513.3516 11.6719 l
15567.66406 9.25000 l
1557h
155814.9531 13.0000 m
155914.9531 4.40625 l
156018.7656 4.40625 l
156119.5365 4.40625 20.1198 4.48438 20.5156 4.64062  c
156220.9115 4.79688 21.2292 5.07031 21.4688 5.46094  c
156321.7083 5.85156 21.8281 6.28125 21.8281 6.75000  c
156421.8281 7.36458 21.6302 7.88021 21.2344 8.29688  c
156520.8385 8.71354 20.2292 8.97917 19.4062 9.09375  c
156619.7083 9.23958 19.9375 9.38021 20.0938 9.51562  c
156720.4271 9.81771 20.7396 10.1979 21.0312 10.6562  c
156822.5312 13.0000 l
156921.0938 13.0000 l
157019.9688 11.2188 l
157119.6354 10.6979 19.3620 10.3021 19.1484 10.0312  c
157218.9349 9.76042 18.7422 9.57031 18.5703 9.46094  c
157318.3984 9.35156 18.2240 9.27083 18.0469 9.21875  c
157417.9219 9.19792 17.7135 9.18750 17.4219 9.18750  c
157516.0938 9.18750 l
157616.0938 13.0000 l
157714.9531 13.0000 l
1578h
157916.0938 8.20312 m
158018.5469 8.20312 l
158119.0573 8.20312 19.4609 8.14844 19.7578 8.03906  c
158220.0547 7.92969 20.2786 7.75781 20.4297 7.52344  c
158320.5807 7.28906 20.6562 7.03125 20.6562 6.75000  c
158420.6562 6.34375 20.5078 6.01042 20.2109 5.75000  c
158519.9141 5.48958 19.4479 5.35938 18.8125 5.35938  c
158616.0938 5.35938 l
158716.0938 8.20312 l
1588h
158927.7285 11.0000 m
159028.8223 11.1250 l
159128.6556 11.7604 28.3379 12.2552 27.8691 12.6094  c
159227.4004 12.9635 26.8066 13.1406 26.0879 13.1406  c
159325.1816 13.1406 24.4603 12.8594 23.9238 12.2969  c
159423.3874 11.7344 23.1191 10.9479 23.1191 9.93750  c
159523.1191 8.89583 23.3900 8.08594 23.9316 7.50781  c
159624.4733 6.92969 25.1712 6.64062 26.0254 6.64062  c
159726.8587 6.64062 27.5384 6.92188 28.0645 7.48438  c
159828.5905 8.04688 28.8535 8.84375 28.8535 9.87500  c
159928.8535 9.93750 28.8535 10.0312 28.8535 10.1562  c
160024.2129 10.1562 l
160124.2546 10.8438 24.4473 11.3672 24.7910 11.7266  c
160225.1348 12.0859 25.5671 12.2656 26.0879 12.2656  c
160326.4733 12.2656 26.8040 12.1641 27.0801 11.9609  c
160427.3561 11.7578 27.5723 11.4375 27.7285 11.0000  c
1605h
160624.2754 9.29688 m
160727.7441 9.29688 l
160827.7025 8.76562 27.5723 8.36979 27.3535 8.10938  c
160927.0098 7.70312 26.5723 7.50000 26.0410 7.50000  c
161025.5514 7.50000 25.1426 7.66146 24.8145 7.98438  c
161124.4863 8.30729 24.3066 8.74479 24.2754 9.29688  c
1612h
161330.1523 13.0000 m
161430.1523 6.78125 l
161531.0898 6.78125 l
161631.0898 7.65625 l
161731.5482 6.97917 32.2096 6.64062 33.0742 6.64062  c
161833.4492 6.64062 33.7956 6.70833 34.1133 6.84375  c
161934.4310 6.97917 34.6680 7.15625 34.8242 7.37500  c
162034.9805 7.59375 35.0898 7.84896 35.1523 8.14062  c
162135.1836 8.33854 35.1992 8.68229 35.1992 9.17188  c
162235.1992 13.0000 l
162334.1523 13.0000 l
162434.1523 9.21875 l
162534.1523 8.78125 34.1107 8.45833 34.0273 8.25000  c
162633.9440 8.04167 33.7982 7.87240 33.5898 7.74219  c
162733.3815 7.61198 33.1367 7.54688 32.8555 7.54688  c
162832.4076 7.54688 32.0195 7.69010 31.6914 7.97656  c
162931.3633 8.26302 31.1992 8.80208 31.1992 9.59375  c
163031.1992 13.0000 l
163130.1523 13.0000 l
1632h
163341.0762 11.0000 m
163442.1699 11.1250 l
163542.0033 11.7604 41.6855 12.2552 41.2168 12.6094  c
163640.7480 12.9635 40.1543 13.1406 39.4355 13.1406  c
163738.5293 13.1406 37.8079 12.8594 37.2715 12.2969  c
163836.7350 11.7344 36.4668 10.9479 36.4668 9.93750  c
163936.4668 8.89583 36.7376 8.08594 37.2793 7.50781  c
164037.8210 6.92969 38.5189 6.64062 39.3730 6.64062  c
164140.2064 6.64062 40.8861 6.92188 41.4121 7.48438  c
164241.9382 8.04688 42.2012 8.84375 42.2012 9.87500  c
164342.2012 9.93750 42.2012 10.0312 42.2012 10.1562  c
164437.5605 10.1562 l
164537.6022 10.8438 37.7949 11.3672 38.1387 11.7266  c
164638.4824 12.0859 38.9147 12.2656 39.4355 12.2656  c
164739.8210 12.2656 40.1517 12.1641 40.4277 11.9609  c
164840.7038 11.7578 40.9199 11.4375 41.0762 11.0000  c
1649h
165037.6230 9.29688 m
165141.0918 9.29688 l
165241.0501 8.76562 40.9199 8.36979 40.7012 8.10938  c
165340.3574 7.70312 39.9199 7.50000 39.3887 7.50000  c
165438.8991 7.50000 38.4902 7.66146 38.1621 7.98438  c
165537.8340 8.30729 37.6543 8.74479 37.6230 9.29688  c
1656h
165744.6406 13.0000 m
165842.7344 6.78125 l
165943.8281 6.78125 l
166044.8125 10.3750 l
166145.1875 11.7031 l
166245.2083 11.6406 45.3177 11.2135 45.5156 10.4219  c
166346.5000 6.78125 l
166447.5781 6.78125 l
166548.5156 10.3906 l
166648.8281 11.5781 l
166749.1875 10.3750 l
166850.2500 6.78125 l
166951.2812 6.78125 l
167049.3281 13.0000 l
167148.2344 13.0000 l
167247.2500 9.26562 l
167347.0000 8.21875 l
167445.7500 13.0000 l
167544.6406 13.0000 l
1676h
167754.6875 13.0000 m
167857.9844 4.40625 l
167959.2031 4.40625 l
168062.7188 13.0000 l
168161.4375 13.0000 l
168260.4219 10.3906 l
168356.8438 10.3906 l
168455.8906 13.0000 l
168554.6875 13.0000 l
1686h
168757.1719 9.46875 m
168860.0781 9.46875 l
168959.1875 7.09375 l
169058.9062 6.37500 58.7031 5.78125 58.5781 5.31250  c
169158.4635 5.86458 58.3073 6.41146 58.1094 6.95312  c
169257.1719 9.46875 l
1693h
169463.5039 15.3906 m
169563.5039 6.78125 l
169664.4570 6.78125 l
169764.4570 7.57812 l
169864.6862 7.26562 64.9440 7.03125 65.2305 6.87500  c
169965.5169 6.71875 65.8633 6.64062 66.2695 6.64062  c
170066.8008 6.64062 67.2695 6.77604 67.6758 7.04688  c
170168.0820 7.31771 68.3867 7.70312 68.5898 8.20312  c
170268.7930 8.70312 68.8945 9.25000 68.8945 9.84375  c
170368.8945 10.4792 68.7826 11.0521 68.5586 11.5625  c
170468.3346 12.0729 68.0039 12.4635 67.5664 12.7344  c
170567.1289 13.0052 66.6706 13.1406 66.1914 13.1406  c
170665.8372 13.1406 65.5195 13.0651 65.2383 12.9141  c
170764.9570 12.7630 64.7279 12.5781 64.5508 12.3594  c
170864.5508 15.3906 l
170963.5039 15.3906 l
1710h
171164.4570 9.92188 m
171264.4570 10.7240 64.6185 11.3151 64.9414 11.6953  c
171365.2643 12.0755 65.6549 12.2656 66.1133 12.2656  c
171466.5820 12.2656 66.9831 12.0677 67.3164 11.6719  c
171567.6497 11.2760 67.8164 10.6615 67.8164 9.82812  c
171667.8164 9.03646 67.6549 8.44531 67.3320 8.05469  c
171767.0091 7.66406 66.6185 7.46875 66.1602 7.46875  c
171865.7122 7.46875 65.3164 7.67708 64.9727 8.09375  c
171964.6289 8.51042 64.4570 9.11979 64.4570 9.92188  c
1720h
172170.1777 15.3906 m
172270.1777 6.78125 l
172371.1309 6.78125 l
172471.1309 7.57812 l
172571.3600 7.26562 71.6178 7.03125 71.9043 6.87500  c
172672.1908 6.71875 72.5371 6.64062 72.9434 6.64062  c
172773.4746 6.64062 73.9434 6.77604 74.3496 7.04688  c
172874.7559 7.31771 75.0605 7.70312 75.2637 8.20312  c
172975.4668 8.70312 75.5684 9.25000 75.5684 9.84375  c
173075.5684 10.4792 75.4564 11.0521 75.2324 11.5625  c
173175.0085 12.0729 74.6777 12.4635 74.2402 12.7344  c
173273.8027 13.0052 73.3444 13.1406 72.8652 13.1406  c
173372.5111 13.1406 72.1934 13.0651 71.9121 12.9141  c
173471.6309 12.7630 71.4017 12.5781 71.2246 12.3594  c
173571.2246 15.3906 l
173670.1777 15.3906 l
1737h
173871.1309 9.92188 m
173971.1309 10.7240 71.2923 11.3151 71.6152 11.6953  c
174071.9382 12.0755 72.3288 12.2656 72.7871 12.2656  c
174173.2559 12.2656 73.6569 12.0677 73.9902 11.6719  c
174274.3236 11.2760 74.4902 10.6615 74.4902 9.82812  c
174374.4902 9.03646 74.3288 8.44531 74.0059 8.05469  c
174473.6829 7.66406 73.2923 7.46875 72.8340 7.46875  c
174572.3861 7.46875 71.9902 7.67708 71.6465 8.09375  c
174671.3027 8.51042 71.1309 9.11979 71.1309 9.92188  c
1747h
174876.8203 13.0000 m
174976.8203 4.40625 l
175077.8828 4.40625 l
175177.8828 13.0000 l
175276.8203 13.0000 l
1753h
175479.5176 5.62500 m
175579.5176 4.40625 l
175680.5801 4.40625 l
175780.5801 5.62500 l
175879.5176 5.62500 l
1759h
176079.5176 13.0000 m
176179.5176 6.78125 l
176280.5801 6.78125 l
176380.5801 13.0000 l
176479.5176 13.0000 l
1765h
176686.2461 10.7188 m
176787.2773 10.8594 l
176887.1628 11.5677 86.8711 12.1250 86.4023 12.5312  c
176985.9336 12.9375 85.3607 13.1406 84.6836 13.1406  c
177083.8294 13.1406 83.1445 12.8620 82.6289 12.3047  c
177182.1133 11.7474 81.8555 10.9479 81.8555 9.90625  c
177281.8555 9.23958 81.9674 8.65365 82.1914 8.14844  c
177382.4154 7.64323 82.7539 7.26562 83.2070 7.01562  c
177483.6602 6.76562 84.1576 6.64062 84.6992 6.64062  c
177585.3659 6.64062 85.9154 6.80990 86.3477 7.14844  c
177686.7799 7.48698 87.0586 7.97396 87.1836 8.60938  c
177786.1523 8.76562 l
177886.0586 8.34896 85.8867 8.03385 85.6367 7.82031  c
177985.3867 7.60677 85.0846 7.50000 84.7305 7.50000  c
178084.1992 7.50000 83.7669 7.69010 83.4336 8.07031  c
178183.1003 8.45052 82.9336 9.05208 82.9336 9.87500  c
178282.9336 10.7188 83.0951 11.3281 83.4180 11.7031  c
178383.7409 12.0781 84.1576 12.2656 84.6680 12.2656  c
178485.0846 12.2656 85.4310 12.1406 85.7070 11.8906  c
178585.9831 11.6406 86.1628 11.2500 86.2461 10.7188  c
1786h
178792.2461 12.2344 m
178891.8503 12.5677 91.4727 12.8021 91.1133 12.9375  c
178990.7539 13.0729 90.3659 13.1406 89.9492 13.1406  c
179089.2617 13.1406 88.7357 12.9740 88.3711 12.6406  c
179188.0065 12.3073 87.8242 11.8802 87.8242 11.3594  c
179287.8242 11.0573 87.8919 10.7786 88.0273 10.5234  c
179388.1628 10.2682 88.3451 10.0651 88.5742 9.91406  c
179488.8034 9.76302 89.0586 9.65104 89.3398 9.57812  c
179589.5378 9.51562 89.8503 9.45833 90.2773 9.40625  c
179691.1211 9.31250 91.7461 9.19271 92.1523 9.04688  c
179792.1523 8.90104 92.1523 8.81250 92.1523 8.78125  c
179892.1523 8.34375 92.0534 8.03646 91.8555 7.85938  c
179991.5846 7.63021 91.1836 7.51562 90.6523 7.51562  c
180090.1628 7.51562 89.7982 7.60156 89.5586 7.77344  c
180189.3190 7.94531 89.1419 8.25000 89.0273 8.68750  c
180287.9961 8.54688 l
180388.0898 8.10938 88.2461 7.75521 88.4648 7.48438  c
180488.6836 7.21354 88.9961 7.00521 89.4023 6.85938  c
180589.8086 6.71354 90.2773 6.64062 90.8086 6.64062  c
180691.3398 6.64062 91.7721 6.70312 92.1055 6.82812  c
180792.4388 6.95312 92.6836 7.10938 92.8398 7.29688  c
180892.9961 7.48438 93.1055 7.72396 93.1680 8.01562  c
180993.1992 8.19271 93.2148 8.51562 93.2148 8.98438  c
181093.2148 10.3906 l
181193.2148 11.3698 93.2383 11.9896 93.2852 12.2500  c
181293.3320 12.5104 93.4232 12.7604 93.5586 13.0000  c
181392.4492 13.0000 l
181492.3451 12.7812 92.2773 12.5260 92.2461 12.2344  c
1815h
181692.1523 9.87500 m
181791.7669 10.0312 91.1940 10.1667 90.4336 10.2812  c
181889.9961 10.3438 89.6888 10.4141 89.5117 10.4922  c
181989.3346 10.5703 89.1966 10.6823 89.0977 10.8281  c
182088.9987 10.9740 88.9492 11.1406 88.9492 11.3281  c
182188.9492 11.6094 89.0560 11.8438 89.2695 12.0312  c
182289.4831 12.2188 89.7930 12.3125 90.1992 12.3125  c
182390.6055 12.3125 90.9674 12.2240 91.2852 12.0469  c
182491.6029 11.8698 91.8346 11.6250 91.9805 11.3125  c
182592.0951 11.0729 92.1523 10.7240 92.1523 10.2656  c
182692.1523 9.87500 l
1827h
182897.1543 12.0625 m
182997.3105 12.9844 l
183097.0085 13.0469 96.7428 13.0781 96.5137 13.0781  c
183196.1283 13.0781 95.8314 13.0182 95.6230 12.8984  c
183295.4147 12.7786 95.2663 12.6198 95.1777 12.4219  c
183395.0892 12.2240 95.0449 11.8073 95.0449 11.1719  c
183495.0449 7.59375 l
183594.2793 7.59375 l
183694.2793 6.78125 l
183795.0449 6.78125 l
183895.0449 5.23438 l
183996.0918 4.60938 l
184096.0918 6.78125 l
184197.1543 6.78125 l
184297.1543 7.59375 l
184396.0918 7.59375 l
184496.0918 11.2344 l
184596.0918 11.5365 96.1100 11.7292 96.1465 11.8125  c
184696.1829 11.8958 96.2428 11.9635 96.3262 12.0156  c
184796.4095 12.0677 96.5293 12.0938 96.6855 12.0938  c
184896.8105 12.0938 96.9668 12.0833 97.1543 12.0625  c
1849h
185098.1914 5.62500 m
185198.1914 4.40625 l
185299.2539 4.40625 l
185399.2539 5.62500 l
185498.1914 5.62500 l
1855h
185698.1914 13.0000 m
185798.1914 6.78125 l
185899.2539 6.78125 l
185999.2539 13.0000 l
186098.1914 13.0000 l
1861h
1862100.467 9.89062 m
1863100.467 8.73438 100.785 7.88021 101.420 7.32812  c
1864101.951 6.86979 102.602 6.64062 103.373 6.64062  c
1865104.227 6.64062 104.928 6.91927 105.475 7.47656  c
1866106.021 8.03385 106.295 8.80729 106.295 9.79688  c
1867106.295 10.5990 106.175 11.2292 105.936 11.6875  c
1868105.696 12.1458 105.344 12.5026 104.881 12.7578  c
1869104.417 13.0130 103.915 13.1406 103.373 13.1406  c
1870102.508 13.1406 101.808 12.8620 101.271 12.3047  c
1871100.735 11.7474 100.467 10.9427 100.467 9.89062  c
1872h
1873101.545 9.89062 m
1874101.545 10.6823 101.719 11.2760 102.068 11.6719  c
1875102.417 12.0677 102.852 12.2656 103.373 12.2656  c
1876103.904 12.2656 104.342 12.0677 104.686 11.6719  c
1877105.029 11.2760 105.201 10.6719 105.201 9.85938  c
1878105.201 9.08854 105.027 8.50521 104.678 8.10938  c
1879104.329 7.71354 103.894 7.51562 103.373 7.51562  c
1880102.852 7.51562 102.417 7.71094 102.068 8.10156  c
1881101.719 8.49219 101.545 9.08854 101.545 9.89062  c
1882h
1883107.531 13.0000 m
1884107.531 6.78125 l
1885108.469 6.78125 l
1886108.469 7.65625 l
1887108.927 6.97917 109.589 6.64062 110.453 6.64062  c
1888110.828 6.64062 111.174 6.70833 111.492 6.84375  c
1889111.810 6.97917 112.047 7.15625 112.203 7.37500  c
1890112.359 7.59375 112.469 7.84896 112.531 8.14062  c
1891112.562 8.33854 112.578 8.68229 112.578 9.17188  c
1892112.578 13.0000 l
1893111.531 13.0000 l
1894111.531 9.21875 l
1895111.531 8.78125 111.490 8.45833 111.406 8.25000  c
1896111.323 8.04167 111.177 7.87240 110.969 7.74219  c
1897110.760 7.61198 110.516 7.54688 110.234 7.54688  c
1898109.786 7.54688 109.398 7.69010 109.070 7.97656  c
1899108.742 8.26302 108.578 8.80208 108.578 9.59375  c
1900108.578 13.0000 l
1901107.531 13.0000 l
1902h
1903119.752 9.25000 m
1904114.064 11.6719 l
1905114.064 10.6250 l
1906118.564 8.75000 l
1907114.064 6.90625 l
1908114.064 5.85938 l
1909119.752 8.26562 l
1910119.752 9.25000 l
1911h
1912126.760 9.25000 m
1913121.072 11.6719 l
1914121.072 10.6250 l
1915125.572 8.75000 l
1916121.072 6.90625 l
1917121.072 5.85938 l
1918126.760 8.26562 l
1919126.760 9.25000 l
1920h
1921f
1922[ 1.00000 0.00000 0.00000 1.00000 -495.000 -116.000 ] concat
19230 J
19242 j
19252 J
19260 j
192710.0000 M
1928newpath
192978.0000 102.000 m
1930309.000 102.000 l
1931309.000 310.000 l
193278.0000 310.000 l
193378.0000 102.000 l
1934h
1935S
19360 J
19372 j
19382 J
19390 j
194010.0000 M
19410 J
19422 j
19432 J
19440 j
194510.0000 M
1946newpath
1947110.000 230.000 m
1948290.000 230.000 l
1949290.000 276.000 l
1950110.000 276.000 l
1951110.000 230.000 l
1952h
1953S
19540 J
19552 j
19562 J
19570 j
195810.0000 M
1959[ 1.00000 0.00000 0.00000 1.00000 168.000 245.000 ] concat
1960newpath
19616.56250 4.40625 m
19627.70312 4.40625 l
19637.70312 9.37500 l
19647.70312 10.2396 7.60417 10.9245 7.40625 11.4297  c
19657.20833 11.9349 6.85417 12.3464 6.34375 12.6641  c
19665.83333 12.9818 5.16667 13.1406 4.34375 13.1406  c
19673.54167 13.1406 2.88281 13.0026 2.36719 12.7266  c
19681.85156 12.4505 1.48438 12.0495 1.26562 11.5234  c
19691.04688 10.9974 .937500 10.2812 .937500 9.37500  c
1970.937500 4.40625 l
19712.07812 4.40625 l
19722.07812 9.35938 l
19732.07812 10.1094 2.14844 10.6615 2.28906 11.0156  c
19742.42969 11.3698 2.66927 11.6432 3.00781 11.8359  c
19753.34635 12.0286 3.76042 12.1250 4.25000 12.1250  c
19765.08333 12.1250 5.67708 11.9349 6.03125 11.5547  c
19776.38542 11.1745 6.56250 10.4427 6.56250 9.35938  c
19786.56250 4.40625 l
1979h
19809.04102 11.1406 m
198110.0723 10.9844 l
198210.1348 11.4010 10.2988 11.7188 10.5645 11.9375  c
198310.8301 12.1562 11.2077 12.2656 11.6973 12.2656  c
198412.1764 12.2656 12.5332 12.1693 12.7676 11.9766  c
198513.0020 11.7839 13.1191 11.5521 13.1191 11.2812  c
198613.1191 11.0417 13.0150 10.8542 12.8066 10.7188  c
198712.6608 10.6250 12.3014 10.5052 11.7285 10.3594  c
198810.9577 10.1615 10.4238 9.99219 10.1270 9.85156  c
19899.83008 9.71094 9.60352 9.51562 9.44727 9.26562  c
19909.29102 9.01562 9.21289 8.73438 9.21289 8.42188  c
19919.21289 8.15104 9.27539 7.89583 9.40039 7.65625  c
19929.52539 7.41667 9.69727 7.21875 9.91602 7.06250  c
199310.0827 6.94792 10.3066 6.84896 10.5879 6.76562  c
199410.8691 6.68229 11.1764 6.64062 11.5098 6.64062  c
199511.9889 6.64062 12.4134 6.71094 12.7832 6.85156  c
199613.1530 6.99219 13.4264 7.18229 13.6035 7.42188  c
199713.7806 7.66146 13.9004 7.97917 13.9629 8.37500  c
199812.9316 8.51562 l
199912.8900 8.20312 12.7572 7.95573 12.5332 7.77344  c
200012.3092 7.59115 11.9889 7.50000 11.5723 7.50000  c
200111.0931 7.50000 10.7493 7.58073 10.5410 7.74219  c
200210.3327 7.90365 10.2285 8.09375 10.2285 8.31250  c
200310.2285 8.44792 10.2702 8.56771 10.3535 8.67188  c
200410.4473 8.78646 10.5827 8.88021 10.7598 8.95312  c
200510.8639 8.99479 11.1764 9.08333 11.6973 9.21875  c
200612.4473 9.42708 12.9681 9.59375 13.2598 9.71875  c
200713.5514 9.84375 13.7806 10.0260 13.9473 10.2656  c
200814.1139 10.5052 14.1973 10.8073 14.1973 11.1719  c
200914.1973 11.5260 14.0957 11.8568 13.8926 12.1641  c
201013.6895 12.4714 13.3952 12.7109 13.0098 12.8828  c
201112.6243 13.0547 12.1868 13.1406 11.6973 13.1406  c
201210.8848 13.1406 10.2676 12.9714 9.84570 12.6328  c
20139.42383 12.2943 9.15560 11.7969 9.04102 11.1406  c
2014h
201519.7129 11.0000 m
201620.8066 11.1250 l
201720.6400 11.7604 20.3223 12.2552 19.8535 12.6094  c
201819.3848 12.9635 18.7910 13.1406 18.0723 13.1406  c
201917.1660 13.1406 16.4447 12.8594 15.9082 12.2969  c
202015.3717 11.7344 15.1035 10.9479 15.1035 9.93750  c
202115.1035 8.89583 15.3743 8.08594 15.9160 7.50781  c
202216.4577 6.92969 17.1556 6.64062 18.0098 6.64062  c
202318.8431 6.64062 19.5228 6.92188 20.0488 7.48438  c
202420.5749 8.04688 20.8379 8.84375 20.8379 9.87500  c
202520.8379 9.93750 20.8379 10.0312 20.8379 10.1562  c
202616.1973 10.1562 l
202716.2389 10.8438 16.4316 11.3672 16.7754 11.7266  c
202817.1191 12.0859 17.5514 12.2656 18.0723 12.2656  c
202918.4577 12.2656 18.7884 12.1641 19.0645 11.9609  c
203019.3405 11.7578 19.5566 11.4375 19.7129 11.0000  c
2031h
203216.2598 9.29688 m
203319.7285 9.29688 l
203419.6868 8.76562 19.5566 8.36979 19.3379 8.10938  c
203518.9941 7.70312 18.5566 7.50000 18.0254 7.50000  c
203617.5358 7.50000 17.1270 7.66146 16.7988 7.98438  c
203716.4707 8.30729 16.2910 8.74479 16.2598 9.29688  c
2038h
203922.1211 13.0000 m
204022.1211 6.78125 l
204123.0742 6.78125 l
204223.0742 7.71875 l
204323.3138 7.28125 23.5352 6.99219 23.7383 6.85156  c
204423.9414 6.71094 24.1680 6.64062 24.4180 6.64062  c
204524.7721 6.64062 25.1315 6.75000 25.4961 6.96875  c
204625.1367 7.95312 l
204724.8763 7.79688 24.6211 7.71875 24.3711 7.71875  c
204824.1315 7.71875 23.9206 7.78906 23.7383 7.92969  c
204923.5560 8.07031 23.4284 8.26562 23.3555 8.51562  c
205023.2305 8.89062 23.1680 9.29688 23.1680 9.73438  c
205123.1680 13.0000 l
205222.1211 13.0000 l
2053h
205428.6543 13.0000 m
205531.9512 4.40625 l
205633.1699 4.40625 l
205736.6855 13.0000 l
205835.4043 13.0000 l
205934.3887 10.3906 l
206030.8105 10.3906 l
206129.8574 13.0000 l
206228.6543 13.0000 l
2063h
206431.1387 9.46875 m
206534.0449 9.46875 l
206633.1543 7.09375 l
206732.8730 6.37500 32.6699 5.78125 32.5449 5.31250  c
206832.4303 5.86458 32.2741 6.41146 32.0762 6.95312  c
206931.1387 9.46875 l
2070h
207141.5332 10.7188 m
207242.5645 10.8594 l
207342.4499 11.5677 42.1582 12.1250 41.6895 12.5312  c
207441.2207 12.9375 40.6478 13.1406 39.9707 13.1406  c
207539.1165 13.1406 38.4316 12.8620 37.9160 12.3047  c
207637.4004 11.7474 37.1426 10.9479 37.1426 9.90625  c
207737.1426 9.23958 37.2546 8.65365 37.4785 8.14844  c
207837.7025 7.64323 38.0410 7.26562 38.4941 7.01562  c
207938.9473 6.76562 39.4447 6.64062 39.9863 6.64062  c
208040.6530 6.64062 41.2025 6.80990 41.6348 7.14844  c
208142.0671 7.48698 42.3457 7.97396 42.4707 8.60938  c
208241.4395 8.76562 l
208341.3457 8.34896 41.1738 8.03385 40.9238 7.82031  c
208440.6738 7.60677 40.3717 7.50000 40.0176 7.50000  c
208539.4863 7.50000 39.0540 7.69010 38.7207 8.07031  c
208638.3874 8.45052 38.2207 9.05208 38.2207 9.87500  c
208738.2207 10.7188 38.3822 11.3281 38.7051 11.7031  c
208839.0280 12.0781 39.4447 12.2656 39.9551 12.2656  c
208940.3717 12.2656 40.7181 12.1406 40.9941 11.8906  c
209041.2702 11.6406 41.4499 11.2500 41.5332 10.7188  c
2091h
209245.7676 12.0625 m
209345.9238 12.9844 l
209445.6217 13.0469 45.3561 13.0781 45.1270 13.0781  c
209544.7415 13.0781 44.4447 13.0182 44.2363 12.8984  c
209644.0280 12.7786 43.8796 12.6198 43.7910 12.4219  c
209743.7025 12.2240 43.6582 11.8073 43.6582 11.1719  c
209843.6582 7.59375 l
209942.8926 7.59375 l
210042.8926 6.78125 l
210143.6582 6.78125 l
210243.6582 5.23438 l
210344.7051 4.60938 l
210444.7051 6.78125 l
210545.7676 6.78125 l
210645.7676 7.59375 l
210744.7051 7.59375 l
210844.7051 11.2344 l
210944.7051 11.5365 44.7233 11.7292 44.7598 11.8125  c
211044.7962 11.8958 44.8561 11.9635 44.9395 12.0156  c
211145.0228 12.0677 45.1426 12.0938 45.2988 12.0938  c
211245.4238 12.0938 45.5801 12.0833 45.7676 12.0625  c
2113h
211446.8047 5.62500 m
211546.8047 4.40625 l
211647.8672 4.40625 l
211747.8672 5.62500 l
211846.8047 5.62500 l
2119h
212046.8047 13.0000 m
212146.8047 6.78125 l
212247.8672 6.78125 l
212347.8672 13.0000 l
212446.8047 13.0000 l
2125h
212651.1895 13.0000 m
212748.8301 6.78125 l
212849.9395 6.78125 l
212951.2832 10.5000 l
213051.4186 10.9062 51.5488 11.3229 51.6738 11.7500  c
213151.7676 11.4271 51.8978 11.0365 52.0645 10.5781  c
213253.4551 6.78125 l
213354.5332 6.78125 l
213452.1738 13.0000 l
213551.1895 13.0000 l
2136h
213755.4707 5.62500 m
213855.4707 4.40625 l
213956.5332 4.40625 l
214056.5332 5.62500 l
214155.4707 5.62500 l
2142h
214355.4707 13.0000 m
214455.4707 6.78125 l
214556.5332 6.78125 l
214656.5332 13.0000 l
214755.4707 13.0000 l
2148h
214960.4336 12.0625 m
215060.5898 12.9844 l
215160.2878 13.0469 60.0221 13.0781 59.7930 13.0781  c
215259.4076 13.0781 59.1107 13.0182 58.9023 12.8984  c
215358.6940 12.7786 58.5456 12.6198 58.4570 12.4219  c
215458.3685 12.2240 58.3242 11.8073 58.3242 11.1719  c
215558.3242 7.59375 l
215657.5586 7.59375 l
215757.5586 6.78125 l
215858.3242 6.78125 l
215958.3242 5.23438 l
216059.3711 4.60938 l
216159.3711 6.78125 l
216260.4336 6.78125 l
216360.4336 7.59375 l
216459.3711 7.59375 l
216559.3711 11.2344 l
216659.3711 11.5365 59.3893 11.7292 59.4258 11.8125  c
216759.4622 11.8958 59.5221 11.9635 59.6055 12.0156  c
216859.6888 12.0677 59.8086 12.0938 59.9648 12.0938  c
216960.0898 12.0938 60.2461 12.0833 60.4336 12.0625  c
2170h
217161.4238 15.3906 m
217261.2988 14.4062 l
217361.5280 14.4688 61.7311 14.5000 61.9082 14.5000  c
217462.1374 14.5000 62.3223 14.4609 62.4629 14.3828  c
217562.6035 14.3047 62.7207 14.1979 62.8145 14.0625  c
217662.8770 13.9479 62.9863 13.6823 63.1426 13.2656  c
217763.1530 13.2135 63.1842 13.1302 63.2363 13.0156  c
217860.8613 6.78125 l
217962.0020 6.78125 l
218063.2988 10.3750 l
218163.4655 10.8333 63.6165 11.3177 63.7520 11.8281  c
218263.8770 11.3385 64.0228 10.8646 64.1895 10.4062  c
218365.5176 6.78125 l
218466.5645 6.78125 l
218564.2051 13.1094 l
218663.9447 13.7865 63.7467 14.2552 63.6113 14.5156  c
218763.4238 14.8698 63.2077 15.1276 62.9629 15.2891  c
218862.7181 15.4505 62.4290 15.5312 62.0957 15.5312  c
218961.8978 15.5312 61.6738 15.4844 61.4238 15.3906  c
2190h
2191f
2192[ 1.00000 0.00000 0.00000 1.00000 -168.000 -245.000 ] concat
21930 J
21942 j
21952 J
21960 j
219710.0000 M
2198newpath
2199109.000 158.000 m
2200289.000 158.000 l
2201289.000 196.000 l
2202109.000 196.000 l
2203109.000 158.000 l
2204h
2205S
22060 J
22072 j
22082 J
22090 j
221010.0000 M
2211[ 1.00000 0.00000 0.00000 1.00000 161.000 169.000 ] concat
2212newpath
2213.937500 13.0000 m
2214.937500 4.40625 l
22154.75000 4.40625 l
22165.52083 4.40625 6.10417 4.48438 6.50000 4.64062  c
22176.89583 4.79688 7.21354 5.07031 7.45312 5.46094  c
22187.69271 5.85156 7.81250 6.28125 7.81250 6.75000  c
22197.81250 7.36458 7.61458 7.88021 7.21875 8.29688  c
22206.82292 8.71354 6.21354 8.97917 5.39062 9.09375  c
22215.69271 9.23958 5.92188 9.38021 6.07812 9.51562  c
22226.41146 9.81771 6.72396 10.1979 7.01562 10.6562  c
22238.51562 13.0000 l
22247.07812 13.0000 l
22255.95312 11.2188 l
22265.61979 10.6979 5.34635 10.3021 5.13281 10.0312  c
22274.91927 9.76042 4.72656 9.57031 4.55469 9.46094  c
22284.38281 9.35156 4.20833 9.27083 4.03125 9.21875  c
22293.90625 9.19792 3.69792 9.18750 3.40625 9.18750  c
22302.07812 9.18750 l
22312.07812 13.0000 l
2232.937500 13.0000 l
2233h
22342.07812 8.20312 m
22354.53125 8.20312 l
22365.04167 8.20312 5.44531 8.14844 5.74219 8.03906  c
22376.03906 7.92969 6.26302 7.75781 6.41406 7.52344  c
22386.56510 7.28906 6.64062 7.03125 6.64062 6.75000  c
22396.64062 6.34375 6.49219 6.01042 6.19531 5.75000  c
22405.89844 5.48958 5.43229 5.35938 4.79688 5.35938  c
22412.07812 5.35938 l
22422.07812 8.20312 l
2243h
224413.7129 11.0000 m
224514.8066 11.1250 l
224614.6400 11.7604 14.3223 12.2552 13.8535 12.6094  c
224713.3848 12.9635 12.7910 13.1406 12.0723 13.1406  c
224811.1660 13.1406 10.4447 12.8594 9.90820 12.2969  c
22499.37174 11.7344 9.10352 10.9479 9.10352 9.93750  c
22509.10352 8.89583 9.37435 8.08594 9.91602 7.50781  c
225110.4577 6.92969 11.1556 6.64062 12.0098 6.64062  c
225212.8431 6.64062 13.5228 6.92188 14.0488 7.48438  c
225314.5749 8.04688 14.8379 8.84375 14.8379 9.87500  c
225414.8379 9.93750 14.8379 10.0312 14.8379 10.1562  c
225510.1973 10.1562 l
225610.2389 10.8438 10.4316 11.3672 10.7754 11.7266  c
225711.1191 12.0859 11.5514 12.2656 12.0723 12.2656  c
225812.4577 12.2656 12.7884 12.1641 13.0645 11.9609  c
225913.3405 11.7578 13.5566 11.4375 13.7129 11.0000  c
2260h
226110.2598 9.29688 m
226213.7285 9.29688 l
226313.6868 8.76562 13.5566 8.36979 13.3379 8.10938  c
226412.9941 7.70312 12.5566 7.50000 12.0254 7.50000  c
226511.5358 7.50000 11.1270 7.66146 10.7988 7.98438  c
226610.4707 8.30729 10.2910 8.74479 10.2598 9.29688  c
2267h
226816.1367 13.0000 m
226916.1367 6.78125 l
227017.0742 6.78125 l
227117.0742 7.65625 l
227217.5326 6.97917 18.1940 6.64062 19.0586 6.64062  c
227319.4336 6.64062 19.7799 6.70833 20.0977 6.84375  c
227420.4154 6.97917 20.6523 7.15625 20.8086 7.37500  c
227520.9648 7.59375 21.0742 7.84896 21.1367 8.14062  c
227621.1680 8.33854 21.1836 8.68229 21.1836 9.17188  c
227721.1836 13.0000 l
227820.1367 13.0000 l
227920.1367 9.21875 l
228020.1367 8.78125 20.0951 8.45833 20.0117 8.25000  c
228119.9284 8.04167 19.7826 7.87240 19.5742 7.74219  c
228219.3659 7.61198 19.1211 7.54688 18.8398 7.54688  c
228318.3919 7.54688 18.0039 7.69010 17.6758 7.97656  c
228417.3477 8.26302 17.1836 8.80208 17.1836 9.59375  c
228517.1836 13.0000 l
228616.1367 13.0000 l
2287h
228827.0605 11.0000 m
228928.1543 11.1250 l
229027.9876 11.7604 27.6699 12.2552 27.2012 12.6094  c
229126.7324 12.9635 26.1387 13.1406 25.4199 13.1406  c
229224.5137 13.1406 23.7923 12.8594 23.2559 12.2969  c
229322.7194 11.7344 22.4512 10.9479 22.4512 9.93750  c
229422.4512 8.89583 22.7220 8.08594 23.2637 7.50781  c
229523.8053 6.92969 24.5033 6.64062 25.3574 6.64062  c
229626.1908 6.64062 26.8704 6.92188 27.3965 7.48438  c
229727.9225 8.04688 28.1855 8.84375 28.1855 9.87500  c
229828.1855 9.93750 28.1855 10.0312 28.1855 10.1562  c
229923.5449 10.1562 l
230023.5866 10.8438 23.7793 11.3672 24.1230 11.7266  c
230124.4668 12.0859 24.8991 12.2656 25.4199 12.2656  c
230225.8053 12.2656 26.1361 12.1641 26.4121 11.9609  c
230326.6882 11.7578 26.9043 11.4375 27.0605 11.0000  c
2304h
230523.6074 9.29688 m
230627.0762 9.29688 l
230727.0345 8.76562 26.9043 8.36979 26.6855 8.10938  c
230826.3418 7.70312 25.9043 7.50000 25.3730 7.50000  c
230924.8835 7.50000 24.4746 7.66146 24.1465 7.98438  c
231023.8184 8.30729 23.6387 8.74479 23.6074 9.29688  c
2311h
231230.6250 13.0000 m
231328.7188 6.78125 l
231429.8125 6.78125 l
231530.7969 10.3750 l
231631.1719 11.7031 l
231731.1927 11.6406 31.3021 11.2135 31.5000 10.4219  c
231832.4844 6.78125 l
231933.5625 6.78125 l
232034.5000 10.3906 l
232134.8125 11.5781 l
232235.1719 10.3750 l
232336.2344 6.78125 l
232437.2656 6.78125 l
232535.3125 13.0000 l
232634.2188 13.0000 l
232733.2344 9.26562 l
232832.9844 8.21875 l
232931.7344 13.0000 l
233030.6250 13.0000 l
2331h
233240.6719 13.0000 m
233343.9688 4.40625 l
233445.1875 4.40625 l
233548.7031 13.0000 l
233647.4219 13.0000 l
233746.4062 10.3906 l
233842.8281 10.3906 l
233941.8750 13.0000 l
234040.6719 13.0000 l
2341h
234243.1562 9.46875 m
234346.0625 9.46875 l
234445.1719 7.09375 l
234544.8906 6.37500 44.6875 5.78125 44.5625 5.31250  c
234644.4479 5.86458 44.2917 6.41146 44.0938 6.95312  c
234743.1562 9.46875 l
2348h
234953.5508 10.7188 m
235054.5820 10.8594 l
235154.4674 11.5677 54.1758 12.1250 53.7070 12.5312  c
235253.2383 12.9375 52.6654 13.1406 51.9883 13.1406  c
235351.1341 13.1406 50.4492 12.8620 49.9336 12.3047  c
235449.4180 11.7474 49.1602 10.9479 49.1602 9.90625  c
235549.1602 9.23958 49.2721 8.65365 49.4961 8.14844  c
235649.7201 7.64323 50.0586 7.26562 50.5117 7.01562  c
235750.9648 6.76562 51.4622 6.64062 52.0039 6.64062  c
235852.6706 6.64062 53.2201 6.80990 53.6523 7.14844  c
235954.0846 7.48698 54.3633 7.97396 54.4883 8.60938  c
236053.4570 8.76562 l
236153.3633 8.34896 53.1914 8.03385 52.9414 7.82031  c
236252.6914 7.60677 52.3893 7.50000 52.0352 7.50000  c
236351.5039 7.50000 51.0716 7.69010 50.7383 8.07031  c
236450.4049 8.45052 50.2383 9.05208 50.2383 9.87500  c
236550.2383 10.7188 50.3997 11.3281 50.7227 11.7031  c
236651.0456 12.0781 51.4622 12.2656 51.9727 12.2656  c
236752.3893 12.2656 52.7357 12.1406 53.0117 11.8906  c
236853.2878 11.6406 53.4674 11.2500 53.5508 10.7188  c
2369h
237057.7852 12.0625 m
237157.9414 12.9844 l
237257.6393 13.0469 57.3737 13.0781 57.1445 13.0781  c
237356.7591 13.0781 56.4622 13.0182 56.2539 12.8984  c
237456.0456 12.7786 55.8971 12.6198 55.8086 12.4219  c
237555.7201 12.2240 55.6758 11.8073 55.6758 11.1719  c
237655.6758 7.59375 l
237754.9102 7.59375 l
237854.9102 6.78125 l
237955.6758 6.78125 l
238055.6758 5.23438 l
238156.7227 4.60938 l
238256.7227 6.78125 l
238357.7852 6.78125 l
238457.7852 7.59375 l
238556.7227 7.59375 l
238656.7227 11.2344 l
238756.7227 11.5365 56.7409 11.7292 56.7773 11.8125  c
238856.8138 11.8958 56.8737 11.9635 56.9570 12.0156  c
238957.0404 12.0677 57.1602 12.0938 57.3164 12.0938  c
239057.4414 12.0938 57.5977 12.0833 57.7852 12.0625  c
2391h
239258.8223 5.62500 m
239358.8223 4.40625 l
239459.8848 4.40625 l
239559.8848 5.62500 l
239658.8223 5.62500 l
2397h
239858.8223 13.0000 m
239958.8223 6.78125 l
240059.8848 6.78125 l
240159.8848 13.0000 l
240258.8223 13.0000 l
2403h
240463.2070 13.0000 m
240560.8477 6.78125 l
240661.9570 6.78125 l
240763.3008 10.5000 l
240863.4362 10.9062 63.5664 11.3229 63.6914 11.7500  c
240963.7852 11.4271 63.9154 11.0365 64.0820 10.5781  c
241065.4727 6.78125 l
241166.5508 6.78125 l
241264.1914 13.0000 l
241363.2070 13.0000 l
2414h
241567.4883 5.62500 m
241667.4883 4.40625 l
241768.5508 4.40625 l
241868.5508 5.62500 l
241967.4883 5.62500 l
2420h
242167.4883 13.0000 m
242267.4883 6.78125 l
242368.5508 6.78125 l
242468.5508 13.0000 l
242567.4883 13.0000 l
2426h
242772.4512 12.0625 m
242872.6074 12.9844 l
242972.3053 13.0469 72.0397 13.0781 71.8105 13.0781  c
243071.4251 13.0781 71.1283 13.0182 70.9199 12.8984  c
243170.7116 12.7786 70.5632 12.6198 70.4746 12.4219  c
243270.3861 12.2240 70.3418 11.8073 70.3418 11.1719  c
243370.3418 7.59375 l
243469.5762 7.59375 l
243569.5762 6.78125 l
243670.3418 6.78125 l
243770.3418 5.23438 l
243871.3887 4.60938 l
243971.3887 6.78125 l
244072.4512 6.78125 l
244172.4512 7.59375 l
244271.3887 7.59375 l
244371.3887 11.2344 l
244471.3887 11.5365 71.4069 11.7292 71.4434 11.8125  c
244571.4798 11.8958 71.5397 11.9635 71.6230 12.0156  c
244671.7064 12.0677 71.8262 12.0938 71.9824 12.0938  c
244772.1074 12.0938 72.2637 12.0833 72.4512 12.0625  c
2448h
244973.4414 15.3906 m
245073.3164 14.4062 l
245173.5456 14.4688 73.7487 14.5000 73.9258 14.5000  c
245274.1549 14.5000 74.3398 14.4609 74.4805 14.3828  c
245374.6211 14.3047 74.7383 14.1979 74.8320 14.0625  c
245474.8945 13.9479 75.0039 13.6823 75.1602 13.2656  c
245575.1706 13.2135 75.2018 13.1302 75.2539 13.0156  c
245672.8789 6.78125 l
245774.0195 6.78125 l
245875.3164 10.3750 l
245975.4831 10.8333 75.6341 11.3177 75.7695 11.8281  c
246075.8945 11.3385 76.0404 10.8646 76.2070 10.4062  c
246177.5352 6.78125 l
246278.5820 6.78125 l
246376.2227 13.1094 l
246475.9622 13.7865 75.7643 14.2552 75.6289 14.5156  c
246575.4414 14.8698 75.2253 15.1276 74.9805 15.2891  c
246674.7357 15.4505 74.4466 15.5312 74.1133 15.5312  c
246773.9154 15.5312 73.6914 15.4844 73.4414 15.3906  c
2468h
2469f
2470[ 1.00000 0.00000 0.00000 1.00000 -161.000 -169.000 ] concat
24711.00000 1.00000 1.00000 RG
24720.00000 0.00000 0.00000 RG
24730 J
24742 j
2475newpath
2476199.000 196.000 m
2477199.000 196.000 l
2478199.000 230.000 l
2479S
24802 J
24810 j
248210.0000 M
24831.00000 1.00000 1.00000 RG
2484newpath
2485199.000 196.000 m
2486191.000 208.000 l
2487199.000 208.000 l
2488207.000 208.000 l
2489h
2490f
24910.00000 0.00000 0.00000 RG
2492newpath
2493199.000 196.000 m
2494191.000 208.000 l
2495199.000 208.000 l
2496207.000 208.000 l
2497h
2498S
24990 J
25002 j
25012 J
25020 j
250310.0000 M
2504[ 1.00000 0.00000 0.00000 1.00000 130.000 116.000 ] concat
2505newpath
2506.656250 9.25000 m
2507.656250 8.26562 l
25086.34375 5.85938 l
25096.34375 6.90625 l
25101.82812 8.75000 l
25116.34375 10.6250 l
25126.34375 11.6719 l
2513.656250 9.25000 l
2514h
25157.66406 9.25000 m
25167.66406 8.26562 l
251713.3516 5.85938 l
251813.3516 6.90625 l
25198.83594 8.75000 l
252013.3516 10.6250 l
252113.3516 11.6719 l
25227.66406 9.25000 l
2523h
252414.9531 13.0000 m
252514.9531 4.40625 l
252618.7656 4.40625 l
252719.5365 4.40625 20.1198 4.48438 20.5156 4.64062  c
252820.9115 4.79688 21.2292 5.07031 21.4688 5.46094  c
252921.7083 5.85156 21.8281 6.28125 21.8281 6.75000  c
253021.8281 7.36458 21.6302 7.88021 21.2344 8.29688  c
253120.8385 8.71354 20.2292 8.97917 19.4062 9.09375  c
253219.7083 9.23958 19.9375 9.38021 20.0938 9.51562  c
253320.4271 9.81771 20.7396 10.1979 21.0312 10.6562  c
253422.5312 13.0000 l
253521.0938 13.0000 l
253619.9688 11.2188 l
253719.6354 10.6979 19.3620 10.3021 19.1484 10.0312  c
253818.9349 9.76042 18.7422 9.57031 18.5703 9.46094  c
253918.3984 9.35156 18.2240 9.27083 18.0469 9.21875  c
254017.9219 9.19792 17.7135 9.18750 17.4219 9.18750  c
254116.0938 9.18750 l
254216.0938 13.0000 l
254314.9531 13.0000 l
2544h
254516.0938 8.20312 m
254618.5469 8.20312 l
254719.0573 8.20312 19.4609 8.14844 19.7578 8.03906  c
254820.0547 7.92969 20.2786 7.75781 20.4297 7.52344  c
254920.5807 7.28906 20.6562 7.03125 20.6562 6.75000  c
255020.6562 6.34375 20.5078 6.01042 20.2109 5.75000  c
255119.9141 5.48958 19.4479 5.35938 18.8125 5.35938  c
255216.0938 5.35938 l
255316.0938 8.20312 l
2554h
255527.7285 11.0000 m
255628.8223 11.1250 l
255728.6556 11.7604 28.3379 12.2552 27.8691 12.6094  c
255827.4004 12.9635 26.8066 13.1406 26.0879 13.1406  c
255925.1816 13.1406 24.4603 12.8594 23.9238 12.2969  c
256023.3874 11.7344 23.1191 10.9479 23.1191 9.93750  c
256123.1191 8.89583 23.3900 8.08594 23.9316 7.50781  c
256224.4733 6.92969 25.1712 6.64062 26.0254 6.64062  c
256326.8587 6.64062 27.5384 6.92188 28.0645 7.48438  c
256428.5905 8.04688 28.8535 8.84375 28.8535 9.87500  c
256528.8535 9.93750 28.8535 10.0312 28.8535 10.1562  c
256624.2129 10.1562 l
256724.2546 10.8438 24.4473 11.3672 24.7910 11.7266  c
256825.1348 12.0859 25.5671 12.2656 26.0879 12.2656  c
256926.4733 12.2656 26.8040 12.1641 27.0801 11.9609  c
257027.3561 11.7578 27.5723 11.4375 27.7285 11.0000  c
2571h
257224.2754 9.29688 m
257327.7441 9.29688 l
257427.7025 8.76562 27.5723 8.36979 27.3535 8.10938  c
257527.0098 7.70312 26.5723 7.50000 26.0410 7.50000  c
257625.5514 7.50000 25.1426 7.66146 24.8145 7.98438  c
257724.4863 8.30729 24.3066 8.74479 24.2754 9.29688  c
2578h
257930.1523 13.0000 m
258030.1523 6.78125 l
258131.0898 6.78125 l
258231.0898 7.65625 l
258331.5482 6.97917 32.2096 6.64062 33.0742 6.64062  c
258433.4492 6.64062 33.7956 6.70833 34.1133 6.84375  c
258534.4310 6.97917 34.6680 7.15625 34.8242 7.37500  c
258634.9805 7.59375 35.0898 7.84896 35.1523 8.14062  c
258735.1836 8.33854 35.1992 8.68229 35.1992 9.17188  c
258835.1992 13.0000 l
258934.1523 13.0000 l
259034.1523 9.21875 l
259134.1523 8.78125 34.1107 8.45833 34.0273 8.25000  c
259233.9440 8.04167 33.7982 7.87240 33.5898 7.74219  c
259333.3815 7.61198 33.1367 7.54688 32.8555 7.54688  c
259432.4076 7.54688 32.0195 7.69010 31.6914 7.97656  c
259531.3633 8.26302 31.1992 8.80208 31.1992 9.59375  c
259631.1992 13.0000 l
259730.1523 13.0000 l
2598h
259941.0762 11.0000 m
260042.1699 11.1250 l
260142.0033 11.7604 41.6855 12.2552 41.2168 12.6094  c
260240.7480 12.9635 40.1543 13.1406 39.4355 13.1406  c
260338.5293 13.1406 37.8079 12.8594 37.2715 12.2969  c
260436.7350 11.7344 36.4668 10.9479 36.4668 9.93750  c
260536.4668 8.89583 36.7376 8.08594 37.2793 7.50781  c
260637.8210 6.92969 38.5189 6.64062 39.3730 6.64062  c
260740.2064 6.64062 40.8861 6.92188 41.4121 7.48438  c
260841.9382 8.04688 42.2012 8.84375 42.2012 9.87500  c
260942.2012 9.93750 42.2012 10.0312 42.2012 10.1562  c
261037.5605 10.1562 l
261137.6022 10.8438 37.7949 11.3672 38.1387 11.7266  c
261238.4824 12.0859 38.9147 12.2656 39.4355 12.2656  c
261339.8210 12.2656 40.1517 12.1641 40.4277 11.9609  c
261440.7038 11.7578 40.9199 11.4375 41.0762 11.0000  c
2615h
261637.6230 9.29688 m
261741.0918 9.29688 l
261841.0501 8.76562 40.9199 8.36979 40.7012 8.10938  c
261940.3574 7.70312 39.9199 7.50000 39.3887 7.50000  c
262038.8991 7.50000 38.4902 7.66146 38.1621 7.98438  c
262137.8340 8.30729 37.6543 8.74479 37.6230 9.29688  c
2622h
262344.6406 13.0000 m
262442.7344 6.78125 l
262543.8281 6.78125 l
262644.8125 10.3750 l
262745.1875 11.7031 l
262845.2083 11.6406 45.3177 11.2135 45.5156 10.4219  c
262946.5000 6.78125 l
263047.5781 6.78125 l
263148.5156 10.3906 l
263248.8281 11.5781 l
263349.1875 10.3750 l
263450.2500 6.78125 l
263551.2812 6.78125 l
263649.3281 13.0000 l
263748.2344 13.0000 l
263847.2500 9.26562 l
263947.0000 8.21875 l
264045.7500 13.0000 l
264144.6406 13.0000 l
2642h
264354.6875 13.0000 m
264457.9844 4.40625 l
264559.2031 4.40625 l
264662.7188 13.0000 l
264761.4375 13.0000 l
264860.4219 10.3906 l
264956.8438 10.3906 l
265055.8906 13.0000 l
265154.6875 13.0000 l
2652h
265357.1719 9.46875 m
265460.0781 9.46875 l
265559.1875 7.09375 l
265658.9062 6.37500 58.7031 5.78125 58.5781 5.31250  c
265758.4635 5.86458 58.3073 6.41146 58.1094 6.95312  c
265857.1719 9.46875 l
2659h
266063.5039 15.3906 m
266163.5039 6.78125 l
266264.4570 6.78125 l
266364.4570 7.57812 l
266464.6862 7.26562 64.9440 7.03125 65.2305 6.87500  c
266565.5169 6.71875 65.8633 6.64062 66.2695 6.64062  c
266666.8008 6.64062 67.2695 6.77604 67.6758 7.04688  c
266768.0820 7.31771 68.3867 7.70312 68.5898 8.20312  c
266868.7930 8.70312 68.8945 9.25000 68.8945 9.84375  c
266968.8945 10.4792 68.7826 11.0521 68.5586 11.5625  c
267068.3346 12.0729 68.0039 12.4635 67.5664 12.7344  c
267167.1289 13.0052 66.6706 13.1406 66.1914 13.1406  c
267265.8372 13.1406 65.5195 13.0651 65.2383 12.9141  c
267364.9570 12.7630 64.7279 12.5781 64.5508 12.3594  c
267464.5508 15.3906 l
267563.5039 15.3906 l
2676h
267764.4570 9.92188 m
267864.4570 10.7240 64.6185 11.3151 64.9414 11.6953  c
267965.2643 12.0755 65.6549 12.2656 66.1133 12.2656  c
268066.5820 12.2656 66.9831 12.0677 67.3164 11.6719  c
268167.6497 11.2760 67.8164 10.6615 67.8164 9.82812  c
268267.8164 9.03646 67.6549 8.44531 67.3320 8.05469  c
268367.0091 7.66406 66.6185 7.46875 66.1602 7.46875  c
268465.7122 7.46875 65.3164 7.67708 64.9727 8.09375  c
268564.6289 8.51042 64.4570 9.11979 64.4570 9.92188  c
2686h
268770.1777 15.3906 m
268870.1777 6.78125 l
268971.1309 6.78125 l
269071.1309 7.57812 l
269171.3600 7.26562 71.6178 7.03125 71.9043 6.87500  c
269272.1908 6.71875 72.5371 6.64062 72.9434 6.64062  c
269373.4746 6.64062 73.9434 6.77604 74.3496 7.04688  c
269474.7559 7.31771 75.0605 7.70312 75.2637 8.20312  c
269575.4668 8.70312 75.5684 9.25000 75.5684 9.84375  c
269675.5684 10.4792 75.4564 11.0521 75.2324 11.5625  c
269775.0085 12.0729 74.6777 12.4635 74.2402 12.7344  c
269873.8027 13.0052 73.3444 13.1406 72.8652 13.1406  c
269972.5111 13.1406 72.1934 13.0651 71.9121 12.9141  c
270071.6309 12.7630 71.4017 12.5781 71.2246 12.3594  c
270171.2246 15.3906 l
270270.1777 15.3906 l
2703h
270471.1309 9.92188 m
270571.1309 10.7240 71.2923 11.3151 71.6152 11.6953  c
270671.9382 12.0755 72.3288 12.2656 72.7871 12.2656  c
270773.2559 12.2656 73.6569 12.0677 73.9902 11.6719  c
270874.3236 11.2760 74.4902 10.6615 74.4902 9.82812  c
270974.4902 9.03646 74.3288 8.44531 74.0059 8.05469  c
271073.6829 7.66406 73.2923 7.46875 72.8340 7.46875  c
271172.3861 7.46875 71.9902 7.67708 71.6465 8.09375  c
271271.3027 8.51042 71.1309 9.11979 71.1309 9.92188  c
2713h
271476.8203 13.0000 m
271576.8203 4.40625 l
271677.8828 4.40625 l
271777.8828 13.0000 l
271876.8203 13.0000 l
2719h
272079.5176 5.62500 m
272179.5176 4.40625 l
272280.5801 4.40625 l
272380.5801 5.62500 l
272479.5176 5.62500 l
2725h
272679.5176 13.0000 m
272779.5176 6.78125 l
272880.5801 6.78125 l
272980.5801 13.0000 l
273079.5176 13.0000 l
2731h
273286.2461 10.7188 m
273387.2773 10.8594 l
273487.1628 11.5677 86.8711 12.1250 86.4023 12.5312  c
273585.9336 12.9375 85.3607 13.1406 84.6836 13.1406  c
273683.8294 13.1406 83.1445 12.8620 82.6289 12.3047  c
273782.1133 11.7474 81.8555 10.9479 81.8555 9.90625  c
273881.8555 9.23958 81.9674 8.65365 82.1914 8.14844  c
273982.4154 7.64323 82.7539 7.26562 83.2070 7.01562  c
274083.6602 6.76562 84.1576 6.64062 84.6992 6.64062  c
274185.3659 6.64062 85.9154 6.80990 86.3477 7.14844  c
274286.7799 7.48698 87.0586 7.97396 87.1836 8.60938  c
274386.1523 8.76562 l
274486.0586 8.34896 85.8867 8.03385 85.6367 7.82031  c
274585.3867 7.60677 85.0846 7.50000 84.7305 7.50000  c
274684.1992 7.50000 83.7669 7.69010 83.4336 8.07031  c
274783.1003 8.45052 82.9336 9.05208 82.9336 9.87500  c
274882.9336 10.7188 83.0951 11.3281 83.4180 11.7031  c
274983.7409 12.0781 84.1576 12.2656 84.6680 12.2656  c
275085.0846 12.2656 85.4310 12.1406 85.7070 11.8906  c
275185.9831 11.6406 86.1628 11.2500 86.2461 10.7188  c
2752h
275392.2461 12.2344 m
275491.8503 12.5677 91.4727 12.8021 91.1133 12.9375  c
275590.7539 13.0729 90.3659 13.1406 89.9492 13.1406  c
275689.2617 13.1406 88.7357 12.9740 88.3711 12.6406  c
275788.0065 12.3073 87.8242 11.8802 87.8242 11.3594  c
275887.8242 11.0573 87.8919 10.7786 88.0273 10.5234  c
275988.1628 10.2682 88.3451 10.0651 88.5742 9.91406  c
276088.8034 9.76302 89.0586 9.65104 89.3398 9.57812  c
276189.5378 9.51562 89.8503 9.45833 90.2773 9.40625  c
276291.1211 9.31250 91.7461 9.19271 92.1523 9.04688  c
276392.1523 8.90104 92.1523 8.81250 92.1523 8.78125  c
276492.1523 8.34375 92.0534 8.03646 91.8555 7.85938  c
276591.5846 7.63021 91.1836 7.51562 90.6523 7.51562  c
276690.1628 7.51562 89.7982 7.60156 89.5586 7.77344  c
276789.3190 7.94531 89.1419 8.25000 89.0273 8.68750  c
276887.9961 8.54688 l
276988.0898 8.10938 88.2461 7.75521 88.4648 7.48438  c
277088.6836 7.21354 88.9961 7.00521 89.4023 6.85938  c
277189.8086 6.71354 90.2773 6.64062 90.8086 6.64062  c
277291.3398 6.64062 91.7721 6.70312 92.1055 6.82812  c
277392.4388 6.95312 92.6836 7.10938 92.8398 7.29688  c
277492.9961 7.48438 93.1055 7.72396 93.1680 8.01562  c
277593.1992 8.19271 93.2148 8.51562 93.2148 8.98438  c
277693.2148 10.3906 l
277793.2148 11.3698 93.2383 11.9896 93.2852 12.2500  c
277893.3320 12.5104 93.4232 12.7604 93.5586 13.0000  c
277992.4492 13.0000 l
278092.3451 12.7812 92.2773 12.5260 92.2461 12.2344  c
2781h
278292.1523 9.87500 m
278391.7669 10.0312 91.1940 10.1667 90.4336 10.2812  c
278489.9961 10.3438 89.6888 10.4141 89.5117 10.4922  c
278589.3346 10.5703 89.1966 10.6823 89.0977 10.8281  c
278688.9987 10.9740 88.9492 11.1406 88.9492 11.3281  c
278788.9492 11.6094 89.0560 11.8438 89.2695 12.0312  c
278889.4831 12.2188 89.7930 12.3125 90.1992 12.3125  c
278990.6055 12.3125 90.9674 12.2240 91.2852 12.0469  c
279091.6029 11.8698 91.8346 11.6250 91.9805 11.3125  c
279192.0951 11.0729 92.1523 10.7240 92.1523 10.2656  c
279292.1523 9.87500 l
2793h
279497.1543 12.0625 m
279597.3105 12.9844 l
279697.0085 13.0469 96.7428 13.0781 96.5137 13.0781  c
279796.1283 13.0781 95.8314 13.0182 95.6230 12.8984  c
279895.4147 12.7786 95.2663 12.6198 95.1777 12.4219  c
279995.0892 12.2240 95.0449 11.8073 95.0449 11.1719  c
280095.0449 7.59375 l
280194.2793 7.59375 l
280294.2793 6.78125 l
280395.0449 6.78125 l
280495.0449 5.23438 l
280596.0918 4.60938 l
280696.0918 6.78125 l
280797.1543 6.78125 l
280897.1543 7.59375 l
280996.0918 7.59375 l
281096.0918 11.2344 l
281196.0918 11.5365 96.1100 11.7292 96.1465 11.8125  c
281296.1829 11.8958 96.2428 11.9635 96.3262 12.0156  c
281396.4095 12.0677 96.5293 12.0938 96.6855 12.0938  c
281496.8105 12.0938 96.9668 12.0833 97.1543 12.0625  c
2815h
281698.1914 5.62500 m
281798.1914 4.40625 l
281899.2539 4.40625 l
281999.2539 5.62500 l
282098.1914 5.62500 l
2821h
282298.1914 13.0000 m
282398.1914 6.78125 l
282499.2539 6.78125 l
282599.2539 13.0000 l
282698.1914 13.0000 l
2827h
2828100.467 9.89062 m
2829100.467 8.73438 100.785 7.88021 101.420 7.32812  c
2830101.951 6.86979 102.602 6.64062 103.373 6.64062  c
2831104.227 6.64062 104.928 6.91927 105.475 7.47656  c
2832106.021 8.03385 106.295 8.80729 106.295 9.79688  c
2833106.295 10.5990 106.175 11.2292 105.936 11.6875  c
2834105.696 12.1458 105.344 12.5026 104.881 12.7578  c
2835104.417 13.0130 103.915 13.1406 103.373 13.1406  c
2836102.508 13.1406 101.808 12.8620 101.271 12.3047  c
2837100.735 11.7474 100.467 10.9427 100.467 9.89062  c
2838h
2839101.545 9.89062 m
2840101.545 10.6823 101.719 11.2760 102.068 11.6719  c
2841102.417 12.0677 102.852 12.2656 103.373 12.2656  c
2842103.904 12.2656 104.342 12.0677 104.686 11.6719  c
2843105.029 11.2760 105.201 10.6719 105.201 9.85938  c
2844105.201 9.08854 105.027 8.50521 104.678 8.10938  c
2845104.329 7.71354 103.894 7.51562 103.373 7.51562  c
2846102.852 7.51562 102.417 7.71094 102.068 8.10156  c
2847101.719 8.49219 101.545 9.08854 101.545 9.89062  c
2848h
2849107.531 13.0000 m
2850107.531 6.78125 l
2851108.469 6.78125 l
2852108.469 7.65625 l
2853108.927 6.97917 109.589 6.64062 110.453 6.64062  c
2854110.828 6.64062 111.174 6.70833 111.492 6.84375  c
2855111.810 6.97917 112.047 7.15625 112.203 7.37500  c
2856112.359 7.59375 112.469 7.84896 112.531 8.14062  c
2857112.562 8.33854 112.578 8.68229 112.578 9.17188  c
2858112.578 13.0000 l
2859111.531 13.0000 l
2860111.531 9.21875 l
2861111.531 8.78125 111.490 8.45833 111.406 8.25000  c
2862111.323 8.04167 111.177 7.87240 110.969 7.74219  c
2863110.760 7.61198 110.516 7.54688 110.234 7.54688  c
2864109.786 7.54688 109.398 7.69010 109.070 7.97656  c
2865108.742 8.26302 108.578 8.80208 108.578 9.59375  c
2866108.578 13.0000 l
2867107.531 13.0000 l
2868h
2869119.752 9.25000 m
2870114.064 11.6719 l
2871114.064 10.6250 l
2872118.564 8.75000 l
2873114.064 6.90625 l
2874114.064 5.85938 l
2875119.752 8.26562 l
2876119.752 9.25000 l
2877h
2878126.760 9.25000 m
2879121.072 11.6719 l
2880121.072 10.6250 l
2881125.572 8.75000 l
2882121.072 6.90625 l
2883121.072 5.85938 l
2884126.760 8.26562 l
2885126.760 9.25000 l
2886h
2887f
2888[ 1.00000 0.00000 0.00000 1.00000 -130.000 -116.000 ] concat
2889[ 1.00000 0.00000 0.00000 1.00000 350.000 201.000 ] concat
2890newpath
28916.70312 19.0000 m
28925.12500 19.0000 l
28935.12500 8.92188 l
28944.73958 9.28646 4.23958 9.64844 3.62500 10.0078  c
28953.01042 10.3672 2.45312 10.6406 1.95312 10.8281  c
28961.95312 9.29688 l
28972.83854 8.88021 3.61458 8.37500 4.28125 7.78125  c
28984.94792 7.18750 5.41667 6.61458 5.68750 6.06250  c
28996.70312 6.06250 l
29006.70312 19.0000 l
2901h
290216.6523 19.0000 m
290316.6523 17.2031 l
290418.4492 17.2031 l
290518.4492 19.0000 l
290616.6523 19.0000 l
2907h
290821.6533 19.0000 m
290921.6533 17.2031 l
291023.4502 17.2031 l
291123.4502 19.0000 l
291221.6533 19.0000 l
2913h
291426.6543 19.0000 m
291526.6543 17.2031 l
291628.4512 17.2031 l
291728.4512 19.0000 l
291826.6543 19.0000 l
2919h
292036.2031 19.0000 m
292136.2031 9.67188 l
292237.6250 9.67188 l
292337.6250 11.0000 l
292438.3125 9.96875 39.3021 9.45312 40.5938 9.45312  c
292541.1562 9.45312 41.6745 9.55469 42.1484 9.75781  c
292642.6224 9.96094 42.9766 10.2266 43.2109 10.5547  c
292743.4453 10.8828 43.6094 11.2708 43.7031 11.7188  c
292843.7552 12.0104 43.7812 12.5260 43.7812 13.2656  c
292943.7812 19.0000 l
293042.2031 19.0000 l
293142.2031 13.3281 l
293242.2031 12.6823 42.1432 12.1979 42.0234 11.8750  c
293341.9036 11.5521 41.6849 11.2969 41.3672 11.1094  c
293441.0495 10.9219 40.6823 10.8281 40.2656 10.8281  c
293539.5885 10.8281 39.0052 11.0417 38.5156 11.4688  c
293638.0260 11.8958 37.7812 12.7083 37.7812 13.9062  c
293737.7812 19.0000 l
293836.2031 19.0000 l
2939h
2940f
2941[ 1.00000 0.00000 0.00000 1.00000 -350.000 -201.000 ] concat
2942
2943%%Trailer
2944%%EOF