makefile fix and table with results so far added to ex3
[tt2015.git] / a3 / lts-jtorx.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%BoundingBox: 0 0 382 619
3 %%Creator: yExport 1.5
4 %%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753
5 %%For:
6 %%Title:
7 %%CreationDate: Sunday, December 20, 2015 6:43:05 PM CET
8 %%LanguageLevel: 3
9 %%EndComments
10 %%BeginProlog
11 100 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.
56 0 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 {
208 findfont dup length dict copy
209 begin
210 currentdict /FID undef
211 /Encoding exch def
212 dup /FontName exch def
213 currentdict
214 end
215 definefont
216 } def
217
218 % usage: key encoding basefontname vg&newskewedbasefont font
219 /vg&newskewedbasefont {
220 findfont 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
228 definefont
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 {
241 findfont 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 [
272 vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
273 vg&bfont vg&newbasefont
274
275 vg&bfont vg&skewmatrix
276 vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
277 /Symbol vg&newskewedbasefont
278
279 vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
280 vg&bfont vg&newbasefont
281
282 /Arrows-UC findfont
283 /MathOps-UC findfont
284 /Dingbats-UC findfont
285 /Undefined-UC findfont ]
286 >>
287 vg&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
381 dup length array copy /UCDingbatsEncoding exch def
382 16#20 1 16#7f {
383 dup 16#20 sub exch
384 UCDingbatsEncoding exch get
385 UCDingbatsEncoding 3 1 roll put
386 } for
387 16#a0 1 16#ff {
388 dup 16#40 sub exch
389 UCDingbatsEncoding exch get
390 UCDingbatsEncoding 3 1 roll put
391 } for
392 UCDingbatsEncoding [ 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
688 0 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
694 vg&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
795 currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
796 dup 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
815 currentfont dup /FontType get 0 eq
816 {/FontMatrix get matrix concatmatrix}{pop} ifelse
817 dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
818 0 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
909 end /procDict exch def
910 %%EndProlog
911
912 %%BeginSetup
913 save
914 procDict begin
915 printColorMap begin
916 382 619 setpagesize
917 0 0 0 0 setmargins
918 0 0 setorigin
919 382 619 setsize
920 naturalsize
921 portrait
922 imagescale
923 cliptobounds
924 setbasematrix
925 /Helvetica 10 sf
926 defaultGraphicsState
927 %%EndSetup
928
929 0.00000 0.00000 0.00000 RG
930 [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
931 cliprestore
932 1.00000 1.00000 1.00000 RG
933 newpath
934 0.00000 0.00000 m
935 382.000 0.00000 l
936 382.000 619.000 l
937 0.00000 619.000 l
938 0.00000 0.00000 l
939 h
940 f
941 0.00000 0.00000 0.00000 RG
942 0.00000 0.00000 0.00000 RG
943 [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
944 cliprestore
945 1.00000 1.00000 1.00000 RG
946 newpath
947 0.00000 0.00000 m
948 382.000 0.00000 l
949 382.000 619.000 l
950 0.00000 619.000 l
951 0.00000 0.00000 l
952 h
953 f
954 0.00000 0.00000 0.00000 RG
955 0 0 382 619 rc
956 q
957 [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] concat
958 [ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] concat
959 1.00000 1.00000 1.00000 RG
960 newpath
961 38.0000 -398.000 m
962 420.000 -398.000 l
963 420.000 221.000 l
964 38.0000 221.000 l
965 38.0000 -398.000 l
966 h
967 f
968 0.00000 0.00000 0.00000 RG
969 [ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] defaultmatrix matrix concatmatrix setmatrix
970 [ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] defaultmatrix matrix concatmatrix setmatrix
971 [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
972 [ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] defaultmatrix matrix concatmatrix setmatrix
973 1.00000 .800000 0.00000 RG
974 newpath
975 375.000 -314.500 m
976 405.000 -314.500 l
977 405.000 -284.500 l
978 375.000 -284.500 l
979 375.000 -314.500 l
980 h
981 f
982 0.00000 0.00000 0.00000 RG
983 0 J
984 1.45000 M
985 newpath
986 387.667 -296.346 m
987 389.604 -296.346 l
988 389.604 -303.018 l
989 387.495 -302.596 l
990 387.495 -303.674 l
991 389.589 -304.096 l
992 390.776 -304.096 l
993 390.776 -296.346 l
994 392.714 -296.346 l
995 392.714 -295.346 l
996 387.667 -295.346 l
997 387.667 -296.346 l
998 h
999 f
1000 2 J
1001 10.0000 M
1002 1.00000 .800000 0.00000 RG
1003 0 J
1004 1.45000 M
1005 0.00000 0.00000 0.00000 RG
1006 newpath
1007 375.000 -314.500 m
1008 405.000 -314.500 l
1009 405.000 -284.500 l
1010 375.000 -284.500 l
1011 375.000 -314.500 l
1012 h
1013 S
1014 2 J
1015 10.0000 M
1016 1.00000 .800000 0.00000 RG
1017 newpath
1018 243.500 -314.500 m
1019 304.500 -314.500 l
1020 304.500 -284.500 l
1021 243.500 -284.500 l
1022 243.500 -314.500 l
1023 h
1024 f
1025 0.00000 0.00000 0.00000 RG
1026 0 J
1027 1.45000 M
1028 newpath
1029 257.189 -304.096 m
1030 258.377 -304.096 l
1031 258.377 -296.346 l
1032 262.643 -296.346 l
1033 262.643 -295.346 l
1034 257.189 -295.346 l
1035 257.189 -304.096 l
1036 h
1037 263.828 -301.908 m
1038 264.906 -301.908 l
1039 264.906 -295.346 l
1040 263.828 -295.346 l
1041 263.828 -301.908 l
1042 h
1043 263.828 -304.471 m
1044 264.906 -304.471 l
1045 264.906 -303.096 l
1046 263.828 -303.096 l
1047 263.828 -304.471 l
1048 h
1049 271.350 -301.721 m
1050 271.350 -300.689 l
1051 271.048 -300.846 270.732 -300.963 270.404 -301.041 c
1052 270.076 -301.119 269.735 -301.158 269.381 -301.158 c
1053 268.850 -301.158 268.449 -301.077 268.178 -300.916 c
1054 267.907 -300.755 267.771 -300.507 267.771 -300.174 c
1055 267.771 -299.924 267.868 -299.729 268.061 -299.588 c
1056 268.253 -299.447 268.641 -299.314 269.225 -299.189 c
1057 269.584 -299.096 l
1058 270.355 -298.939 270.902 -298.710 271.225 -298.408 c
1059 271.548 -298.106 271.709 -297.689 271.709 -297.158 c
1060 271.709 -296.544 271.467 -296.059 270.982 -295.705 c
1061 270.498 -295.351 269.834 -295.174 268.990 -295.174 c
1062 268.636 -295.174 268.269 -295.208 267.889 -295.275 c
1063 267.508 -295.343 267.110 -295.445 266.693 -295.580 c
1064 266.693 -296.705 l
1065 267.089 -296.497 267.480 -296.340 267.865 -296.236 c
1066 268.251 -296.132 268.636 -296.080 269.021 -296.080 c
1067 269.521 -296.080 269.910 -296.166 270.186 -296.338 c
1068 270.462 -296.510 270.600 -296.757 270.600 -297.080 c
1069 270.600 -297.372 270.501 -297.596 270.303 -297.752 c
1070 270.105 -297.908 269.673 -298.059 269.006 -298.205 c
1071 268.631 -298.283 l
1072 267.964 -298.429 267.482 -298.648 267.186 -298.939 c
1073 266.889 -299.231 266.740 -299.627 266.740 -300.127 c
1074 266.740 -300.752 266.959 -301.231 267.396 -301.564 c
1075 267.834 -301.898 268.454 -302.064 269.256 -302.064 c
1076 269.652 -302.064 270.027 -302.036 270.381 -301.979 c
1077 270.735 -301.921 271.058 -301.835 271.350 -301.721 c
1078 h
1079 274.492 -303.768 m
1080 274.492 -301.908 l
1081 276.711 -301.908 l
1082 276.711 -301.064 l
1083 274.492 -301.064 l
1084 274.492 -297.502 l
1085 274.492 -296.971 274.565 -296.630 274.711 -296.479 c
1086 274.857 -296.327 275.154 -296.252 275.602 -296.252 c
1087 276.711 -296.252 l
1088 276.711 -295.346 l
1089 275.602 -295.346 l
1090 274.768 -295.346 274.193 -295.502 273.875 -295.814 c
1091 273.557 -296.127 273.398 -296.689 273.398 -297.502 c
1092 273.398 -301.064 l
1093 272.617 -301.064 l
1094 272.617 -301.908 l
1095 273.398 -301.908 l
1096 273.398 -303.768 l
1097 274.492 -303.768 l
1098 h
1099 283.744 -298.893 m
1100 283.744 -298.377 l
1101 278.775 -298.377 l
1102 278.827 -297.627 279.054 -297.059 279.455 -296.674 c
1103 279.856 -296.288 280.411 -296.096 281.119 -296.096 c
1104 281.536 -296.096 281.939 -296.145 282.330 -296.244 c
1105 282.721 -296.343 283.109 -296.497 283.494 -296.705 c
1106 283.494 -295.674 l
1107 283.098 -295.518 282.697 -295.395 282.291 -295.307 c
1108 281.885 -295.218 281.473 -295.174 281.057 -295.174 c
1109 280.015 -295.174 279.187 -295.479 278.572 -296.088 c
1110 277.958 -296.697 277.650 -297.523 277.650 -298.564 c
1111 277.650 -299.637 277.942 -300.489 278.525 -301.119 c
1112 279.109 -301.749 279.890 -302.064 280.869 -302.064 c
1113 281.755 -302.064 282.455 -301.781 282.971 -301.213 c
1114 283.486 -300.645 283.744 -299.872 283.744 -298.893 c
1115 h
1116 282.666 -299.221 m
1117 282.656 -299.804 282.489 -300.273 282.166 -300.627 c
1118 281.843 -300.981 281.416 -301.158 280.885 -301.158 c
1119 280.281 -301.158 279.799 -300.986 279.439 -300.643 c
1120 279.080 -300.299 278.874 -299.820 278.822 -299.205 c
1121 282.666 -299.221 l
1122 h
1123 290.971 -299.314 m
1124 290.971 -295.346 l
1125 289.893 -295.346 l
1126 289.893 -299.268 l
1127 289.893 -299.893 289.770 -300.359 289.525 -300.666 c
1128 289.281 -300.973 288.919 -301.127 288.439 -301.127 c
1129 287.856 -301.127 287.395 -300.942 287.057 -300.572 c
1130 286.718 -300.202 286.549 -299.695 286.549 -299.049 c
1131 286.549 -295.346 l
1132 285.471 -295.346 l
1133 285.471 -301.908 l
1134 286.549 -301.908 l
1135 286.549 -300.893 l
1136 286.809 -301.288 287.114 -301.583 287.463 -301.775 c
1137 287.812 -301.968 288.215 -302.064 288.674 -302.064 c
1138 289.424 -302.064 289.994 -301.833 290.385 -301.369 c
1139 290.775 -300.906 290.971 -300.221 290.971 -299.314 c
1140 h
1141 f
1142 2 J
1143 10.0000 M
1144 1.00000 .800000 0.00000 RG
1145 0 J
1146 1.45000 M
1147 0.00000 0.00000 0.00000 RG
1148 newpath
1149 243.500 -314.500 m
1150 304.500 -314.500 l
1151 304.500 -284.500 l
1152 243.500 -284.500 l
1153 243.500 -314.500 l
1154 h
1155 S
1156 2 J
1157 10.0000 M
1158 1.00000 .800000 0.00000 RG
1159 newpath
1160 53.0000 -314.500 m
1161 120.000 -314.500 l
1162 120.000 -284.500 l
1163 53.0000 -284.500 l
1164 53.0000 -314.500 l
1165 h
1166 f
1167 0.00000 0.00000 0.00000 RG
1168 0 J
1169 1.45000 M
1170 newpath
1171 63.4932 -301.799 m
1172 63.4932 -300.643 l
1173 63.0452 -300.851 62.6208 -301.010 62.2197 -301.119 c
1174 61.8187 -301.229 61.4359 -301.283 61.0713 -301.283 c
1175 60.4255 -301.283 59.9281 -301.158 59.5791 -300.908 c
1176 59.2301 -300.658 59.0557 -300.299 59.0557 -299.830 c
1177 59.0557 -299.445 59.1702 -299.153 59.3994 -298.955 c
1178 59.6286 -298.757 60.0713 -298.601 60.7275 -298.486 c
1179 61.4307 -298.330 l
1180 62.3161 -298.163 62.9697 -297.869 63.3916 -297.447 c
1181 63.8135 -297.025 64.0244 -296.460 64.0244 -295.752 c
1182 64.0244 -294.898 63.7406 -294.252 63.1729 -293.814 c
1183 62.6051 -293.377 61.7692 -293.158 60.6650 -293.158 c
1184 60.2588 -293.158 59.8213 -293.205 59.3525 -293.299 c
1185 58.8838 -293.393 58.3994 -293.533 57.8994 -293.721 c
1186 57.8994 -294.939 l
1187 58.3786 -294.669 58.8499 -294.465 59.3135 -294.330 c
1188 59.7770 -294.195 60.2275 -294.127 60.6650 -294.127 c
1189 61.3421 -294.127 61.8656 -294.260 62.2354 -294.525 c
1190 62.6051 -294.791 62.7900 -295.169 62.7900 -295.658 c
1191 62.7900 -296.085 62.6572 -296.421 62.3916 -296.666 c
1192 62.1260 -296.911 61.6911 -297.090 61.0869 -297.205 c
1193 60.3682 -297.346 l
1194 59.4827 -297.523 58.8447 -297.799 58.4541 -298.174 c
1195 58.0635 -298.549 57.8682 -299.070 57.8682 -299.736 c
1196 57.8682 -300.518 58.1390 -301.130 58.6807 -301.572 c
1197 59.2223 -302.015 59.9723 -302.236 60.9307 -302.236 c
1198 61.3473 -302.236 61.7666 -302.200 62.1885 -302.127 c
1199 62.6104 -302.054 63.0452 -301.945 63.4932 -301.799 c
1200 h
1201 68.5479 -292.721 m
1202 68.2458 -291.939 67.9489 -291.429 67.6572 -291.189 c
1203 67.3656 -290.950 66.9801 -290.830 66.5010 -290.830 c
1204 65.6416 -290.830 l
1205 65.6416 -291.736 l
1206 66.2666 -291.736 l
1207 66.5687 -291.736 66.8005 -291.807 66.9619 -291.947 c
1208 67.1234 -292.088 67.3031 -292.419 67.5010 -292.939 c
1209 67.7041 -293.439 l
1210 65.0479 -299.893 l
1211 66.1885 -299.893 l
1212 68.2354 -294.768 l
1213 70.2979 -299.893 l
1214 71.4385 -299.893 l
1215 68.5479 -292.721 l
1216 h
1217 78.3838 -297.299 m
1218 78.3838 -293.330 l
1219 77.3057 -293.330 l
1220 77.3057 -297.252 l
1221 77.3057 -297.877 77.1833 -298.343 76.9385 -298.650 c
1222 76.6937 -298.958 76.3317 -299.111 75.8525 -299.111 c
1223 75.2692 -299.111 74.8083 -298.926 74.4697 -298.557 c
1224 74.1312 -298.187 73.9619 -297.679 73.9619 -297.033 c
1225 73.9619 -293.330 l
1226 72.8838 -293.330 l
1227 72.8838 -299.893 l
1228 73.9619 -299.893 l
1229 73.9619 -298.877 l
1230 74.2223 -299.273 74.5270 -299.567 74.8760 -299.760 c
1231 75.2249 -299.952 75.6286 -300.049 76.0869 -300.049 c
1232 76.8369 -300.049 77.4072 -299.817 77.7979 -299.354 c
1233 78.1885 -298.890 78.3838 -298.205 78.3838 -297.299 c
1234 h
1235 88.5381 -297.439 m
1236 88.7881 -297.346 89.0329 -297.158 89.2725 -296.877 c
1237 89.5120 -296.596 89.7568 -296.210 90.0068 -295.721 c
1238 91.2100 -293.330 l
1239 89.9287 -293.330 l
1240 88.8193 -295.580 l
1241 88.5277 -296.163 88.2464 -296.551 87.9756 -296.744 c
1242 87.7048 -296.937 87.3350 -297.033 86.8662 -297.033 c
1243 85.5693 -297.033 l
1244 85.5693 -293.330 l
1245 84.3818 -293.330 l
1246 84.3818 -302.080 l
1247 87.0537 -302.080 l
1248 88.0537 -302.080 88.8011 -301.872 89.2959 -301.455 c
1249 89.7907 -301.038 90.0381 -300.408 90.0381 -299.564 c
1250 90.0381 -299.012 89.9105 -298.554 89.6553 -298.189 c
1251 89.4001 -297.825 89.0277 -297.575 88.5381 -297.439 c
1252 h
1253 85.5693 -301.111 m
1254 85.5693 -298.002 l
1255 87.0537 -298.002 l
1256 87.6266 -298.002 88.0589 -298.135 88.3506 -298.400 c
1257 88.6423 -298.666 88.7881 -299.054 88.7881 -299.564 c
1258 88.7881 -300.075 88.6423 -300.460 88.3506 -300.721 c
1259 88.0589 -300.981 87.6266 -301.111 87.0537 -301.111 c
1260 85.5693 -301.111 l
1261 h
1262 98.2979 -296.877 m
1263 98.2979 -296.361 l
1264 93.3291 -296.361 l
1265 93.3812 -295.611 93.6077 -295.044 94.0088 -294.658 c
1266 94.4098 -294.273 94.9645 -294.080 95.6729 -294.080 c
1267 96.0895 -294.080 96.4932 -294.130 96.8838 -294.229 c
1268 97.2744 -294.327 97.6624 -294.481 98.0479 -294.689 c
1269 98.0479 -293.658 l
1270 97.6520 -293.502 97.2510 -293.380 96.8447 -293.291 c
1271 96.4385 -293.202 96.0270 -293.158 95.6104 -293.158 c
1272 94.5687 -293.158 93.7406 -293.463 93.1260 -294.072 c
1273 92.5114 -294.682 92.2041 -295.507 92.2041 -296.549 c
1274 92.2041 -297.622 92.4958 -298.473 93.0791 -299.104 c
1275 93.6624 -299.734 94.4437 -300.049 95.4229 -300.049 c
1276 96.3083 -300.049 97.0088 -299.765 97.5244 -299.197 c
1277 98.0400 -298.630 98.2979 -297.856 98.2979 -296.877 c
1278 h
1279 97.2197 -297.205 m
1280 97.2093 -297.788 97.0426 -298.257 96.7197 -298.611 c
1281 96.3968 -298.965 95.9697 -299.143 95.4385 -299.143 c
1282 94.8343 -299.143 94.3525 -298.971 93.9932 -298.627 c
1283 93.6338 -298.283 93.4281 -297.804 93.3760 -297.189 c
1284 97.2197 -297.205 l
1285 h
1286 104.790 -299.643 m
1287 104.790 -298.627 l
1288 104.478 -298.804 104.170 -298.934 103.868 -299.018 c
1289 103.566 -299.101 103.259 -299.143 102.946 -299.143 c
1290 102.238 -299.143 101.691 -298.921 101.306 -298.479 c
1291 100.920 -298.036 100.728 -297.413 100.728 -296.611 c
1292 100.728 -295.809 100.920 -295.187 101.306 -294.744 c
1293 101.691 -294.301 102.238 -294.080 102.946 -294.080 c
1294 103.259 -294.080 103.566 -294.122 103.868 -294.205 c
1295 104.170 -294.288 104.478 -294.413 104.790 -294.580 c
1296 104.790 -293.580 l
1297 104.488 -293.445 104.175 -293.340 103.853 -293.268 c
1298 103.530 -293.195 103.186 -293.158 102.821 -293.158 c
1299 101.832 -293.158 101.045 -293.468 100.462 -294.088 c
1300 99.8786 -294.708 99.5869 -295.549 99.5869 -296.611 c
1301 99.5869 -297.674 99.8812 -298.512 100.470 -299.127 c
1302 101.058 -299.742 101.868 -300.049 102.899 -300.049 c
1303 103.222 -300.049 103.543 -300.015 103.860 -299.947 c
1304 104.178 -299.880 104.488 -299.778 104.790 -299.643 c
1305 h
1306 105.888 -299.893 m
1307 107.028 -299.893 l
1308 109.075 -294.393 l
1309 111.138 -299.893 l
1310 112.278 -299.893 l
1311 109.810 -293.330 l
1312 108.341 -293.330 l
1313 105.888 -299.893 l
1314 h
1315 114.786 -302.080 m
1316 114.786 -298.830 l
1317 113.786 -298.830 l
1318 113.786 -302.080 l
1319 114.786 -302.080 l
1320 h
1321 f
1322 2 J
1323 10.0000 M
1324 1.00000 .800000 0.00000 RG
1325 0 J
1326 1.45000 M
1327 0.00000 0.00000 0.00000 RG
1328 newpath
1329 53.0000 -314.500 m
1330 120.000 -314.500 l
1331 120.000 -284.500 l
1332 53.0000 -284.500 l
1333 53.0000 -314.500 l
1334 h
1335 S
1336 2 J
1337 10.0000 M
1338 1.00000 .800000 0.00000 RG
1339 newpath
1340 243.500 -157.500 m
1341 317.500 -157.500 l
1342 317.500 -127.500 l
1343 243.500 -127.500 l
1344 243.500 -157.500 l
1345 h
1346 f
1347 0.00000 0.00000 0.00000 RG
1348 0 J
1349 1.45000 M
1350 newpath
1351 259.143 -146.814 m
1352 259.143 -145.658 l
1353 258.695 -145.867 258.270 -146.025 257.869 -146.135 c
1354 257.468 -146.244 257.085 -146.299 256.721 -146.299 c
1355 256.075 -146.299 255.577 -146.174 255.229 -145.924 c
1356 254.880 -145.674 254.705 -145.314 254.705 -144.846 c
1357 254.705 -144.460 254.820 -144.169 255.049 -143.971 c
1358 255.278 -143.773 255.721 -143.617 256.377 -143.502 c
1359 257.080 -143.346 l
1360 257.965 -143.179 258.619 -142.885 259.041 -142.463 c
1361 259.463 -142.041 259.674 -141.476 259.674 -140.768 c
1362 259.674 -139.913 259.390 -139.268 258.822 -138.830 c
1363 258.255 -138.393 257.419 -138.174 256.314 -138.174 c
1364 255.908 -138.174 255.471 -138.221 255.002 -138.314 c
1365 254.533 -138.408 254.049 -138.549 253.549 -138.736 c
1366 253.549 -139.955 l
1367 254.028 -139.684 254.499 -139.481 254.963 -139.346 c
1368 255.426 -139.210 255.877 -139.143 256.314 -139.143 c
1369 256.992 -139.143 257.515 -139.275 257.885 -139.541 c
1370 258.255 -139.807 258.439 -140.184 258.439 -140.674 c
1371 258.439 -141.101 258.307 -141.437 258.041 -141.682 c
1372 257.775 -141.926 257.340 -142.106 256.736 -142.221 c
1373 256.018 -142.361 l
1374 255.132 -142.538 254.494 -142.814 254.104 -143.189 c
1375 253.713 -143.564 253.518 -144.085 253.518 -144.752 c
1376 253.518 -145.533 253.788 -146.145 254.330 -146.588 c
1377 254.872 -147.031 255.622 -147.252 256.580 -147.252 c
1378 256.997 -147.252 257.416 -147.215 257.838 -147.143 c
1379 258.260 -147.070 258.695 -146.960 259.143 -146.814 c
1380 h
1381 264.197 -137.736 m
1382 263.895 -136.955 263.598 -136.445 263.307 -136.205 c
1383 263.015 -135.965 262.630 -135.846 262.150 -135.846 c
1384 261.291 -135.846 l
1385 261.291 -136.752 l
1386 261.916 -136.752 l
1387 262.218 -136.752 262.450 -136.822 262.611 -136.963 c
1388 262.773 -137.104 262.952 -137.434 263.150 -137.955 c
1389 263.354 -138.455 l
1390 260.697 -144.908 l
1391 261.838 -144.908 l
1392 263.885 -139.783 l
1393 265.947 -144.908 l
1394 267.088 -144.908 l
1395 264.197 -137.736 l
1396 h
1397 274.033 -142.314 m
1398 274.033 -138.346 l
1399 272.955 -138.346 l
1400 272.955 -142.268 l
1401 272.955 -142.893 272.833 -143.359 272.588 -143.666 c
1402 272.343 -143.973 271.981 -144.127 271.502 -144.127 c
1403 270.919 -144.127 270.458 -143.942 270.119 -143.572 c
1404 269.781 -143.202 269.611 -142.695 269.611 -142.049 c
1405 269.611 -138.346 l
1406 268.533 -138.346 l
1407 268.533 -144.908 l
1408 269.611 -144.908 l
1409 269.611 -143.893 l
1410 269.872 -144.288 270.176 -144.583 270.525 -144.775 c
1411 270.874 -144.968 271.278 -145.064 271.736 -145.064 c
1412 272.486 -145.064 273.057 -144.833 273.447 -144.369 c
1413 273.838 -143.906 274.033 -143.221 274.033 -142.314 c
1414 h
1415 284.188 -142.455 m
1416 284.438 -142.361 284.682 -142.174 284.922 -141.893 c
1417 285.161 -141.611 285.406 -141.226 285.656 -140.736 c
1418 286.859 -138.346 l
1419 285.578 -138.346 l
1420 284.469 -140.596 l
1421 284.177 -141.179 283.896 -141.567 283.625 -141.760 c
1422 283.354 -141.952 282.984 -142.049 282.516 -142.049 c
1423 281.219 -142.049 l
1424 281.219 -138.346 l
1425 280.031 -138.346 l
1426 280.031 -147.096 l
1427 282.703 -147.096 l
1428 283.703 -147.096 284.451 -146.887 284.945 -146.471 c
1429 285.440 -146.054 285.688 -145.424 285.688 -144.580 c
1430 285.688 -144.028 285.560 -143.570 285.305 -143.205 c
1431 285.049 -142.840 284.677 -142.590 284.188 -142.455 c
1432 h
1433 281.219 -146.127 m
1434 281.219 -143.018 l
1435 282.703 -143.018 l
1436 283.276 -143.018 283.708 -143.150 284.000 -143.416 c
1437 284.292 -143.682 284.438 -144.070 284.438 -144.580 c
1438 284.438 -145.090 284.292 -145.476 284.000 -145.736 c
1439 283.708 -145.997 283.276 -146.127 282.703 -146.127 c
1440 281.219 -146.127 l
1441 h
1442 293.947 -141.893 m
1443 293.947 -141.377 l
1444 288.979 -141.377 l
1445 289.031 -140.627 289.257 -140.059 289.658 -139.674 c
1446 290.059 -139.288 290.614 -139.096 291.322 -139.096 c
1447 291.739 -139.096 292.143 -139.145 292.533 -139.244 c
1448 292.924 -139.343 293.312 -139.497 293.697 -139.705 c
1449 293.697 -138.674 l
1450 293.301 -138.518 292.900 -138.395 292.494 -138.307 c
1451 292.088 -138.218 291.676 -138.174 291.260 -138.174 c
1452 290.218 -138.174 289.390 -138.479 288.775 -139.088 c
1453 288.161 -139.697 287.854 -140.523 287.854 -141.564 c
1454 287.854 -142.637 288.145 -143.489 288.729 -144.119 c
1455 289.312 -144.749 290.093 -145.064 291.072 -145.064 c
1456 291.958 -145.064 292.658 -144.781 293.174 -144.213 c
1457 293.689 -143.645 293.947 -142.872 293.947 -141.893 c
1458 h
1459 292.869 -142.221 m
1460 292.859 -142.804 292.692 -143.273 292.369 -143.627 c
1461 292.046 -143.981 291.619 -144.158 291.088 -144.158 c
1462 290.484 -144.158 290.002 -143.986 289.643 -143.643 c
1463 289.283 -143.299 289.077 -142.820 289.025 -142.205 c
1464 292.869 -142.221 l
1465 h
1466 300.439 -144.658 m
1467 300.439 -143.643 l
1468 300.127 -143.820 299.820 -143.950 299.518 -144.033 c
1469 299.215 -144.117 298.908 -144.158 298.596 -144.158 c
1470 297.887 -144.158 297.340 -143.937 296.955 -143.494 c
1471 296.570 -143.051 296.377 -142.429 296.377 -141.627 c
1472 296.377 -140.825 296.570 -140.202 296.955 -139.760 c
1473 297.340 -139.317 297.887 -139.096 298.596 -139.096 c
1474 298.908 -139.096 299.215 -139.137 299.518 -139.221 c
1475 299.820 -139.304 300.127 -139.429 300.439 -139.596 c
1476 300.439 -138.596 l
1477 300.137 -138.460 299.825 -138.356 299.502 -138.283 c
1478 299.179 -138.210 298.835 -138.174 298.471 -138.174 c
1479 297.481 -138.174 296.695 -138.484 296.111 -139.104 c
1480 295.528 -139.723 295.236 -140.564 295.236 -141.627 c
1481 295.236 -142.689 295.531 -143.528 296.119 -144.143 c
1482 296.708 -144.757 297.518 -145.064 298.549 -145.064 c
1483 298.872 -145.064 299.192 -145.031 299.510 -144.963 c
1484 299.827 -144.895 300.137 -144.794 300.439 -144.658 c
1485 h
1486 301.537 -144.908 m
1487 302.678 -144.908 l
1488 304.725 -139.408 l
1489 306.787 -144.908 l
1490 307.928 -144.908 l
1491 305.459 -138.346 l
1492 303.990 -138.346 l
1493 301.537 -144.908 l
1494 h
1495 f
1496 2 J
1497 10.0000 M
1498 1.00000 .800000 0.00000 RG
1499 0 J
1500 1.45000 M
1501 0.00000 0.00000 0.00000 RG
1502 newpath
1503 243.500 -157.500 m
1504 317.500 -157.500 l
1505 317.500 -127.500 l
1506 243.500 -127.500 l
1507 243.500 -157.500 l
1508 h
1509 S
1510 2 J
1511 10.0000 M
1512 1.00000 .800000 0.00000 RG
1513 newpath
1514 243.500 -71.5000 m
1515 324.500 -71.5000 l
1516 324.500 -41.5000 l
1517 243.500 -41.5000 l
1518 243.500 -71.5000 l
1519 h
1520 f
1521 0.00000 0.00000 0.00000 RG
1522 0 J
1523 1.45000 M
1524 newpath
1525 250.654 -61.0957 m
1526 256.186 -61.0957 l
1527 256.186 -60.0957 l
1528 251.842 -60.0957 l
1529 251.842 -57.5020 l
1530 256.014 -57.5020 l
1531 256.014 -56.5176 l
1532 251.842 -56.5176 l
1533 251.842 -53.3457 l
1534 256.295 -53.3457 l
1535 256.295 -52.3457 l
1536 250.654 -52.3457 l
1537 250.654 -61.0957 l
1538 h
1539 262.377 -58.7207 m
1540 262.377 -57.6895 l
1541 262.075 -57.8457 261.760 -57.9629 261.432 -58.0410 c
1542 261.104 -58.1191 260.762 -58.1582 260.408 -58.1582 c
1543 259.877 -58.1582 259.476 -58.0775 259.205 -57.9160 c
1544 258.934 -57.7546 258.799 -57.5072 258.799 -57.1738 c
1545 258.799 -56.9238 258.895 -56.7285 259.088 -56.5879 c
1546 259.281 -56.4473 259.669 -56.3145 260.252 -56.1895 c
1547 260.611 -56.0957 l
1548 261.382 -55.9395 261.929 -55.7103 262.252 -55.4082 c
1549 262.575 -55.1061 262.736 -54.6895 262.736 -54.1582 c
1550 262.736 -53.5436 262.494 -53.0592 262.010 -52.7051 c
1551 261.525 -52.3509 260.861 -52.1738 260.018 -52.1738 c
1552 259.663 -52.1738 259.296 -52.2077 258.916 -52.2754 c
1553 258.536 -52.3431 258.137 -52.4447 257.721 -52.5801 c
1554 257.721 -53.7051 l
1555 258.117 -53.4967 258.507 -53.3405 258.893 -53.2363 c
1556 259.278 -53.1322 259.663 -53.0801 260.049 -53.0801 c
1557 260.549 -53.0801 260.937 -53.1660 261.213 -53.3379 c
1558 261.489 -53.5098 261.627 -53.7572 261.627 -54.0801 c
1559 261.627 -54.3717 261.528 -54.5957 261.330 -54.7520 c
1560 261.132 -54.9082 260.700 -55.0592 260.033 -55.2051 c
1561 259.658 -55.2832 l
1562 258.992 -55.4290 258.510 -55.6478 258.213 -55.9395 c
1563 257.916 -56.2311 257.768 -56.6270 257.768 -57.1270 c
1564 257.768 -57.7520 257.986 -58.2311 258.424 -58.5645 c
1565 258.861 -58.8978 259.481 -59.0645 260.283 -59.0645 c
1566 260.679 -59.0645 261.054 -59.0358 261.408 -58.9785 c
1567 261.762 -58.9212 262.085 -58.8353 262.377 -58.7207 c
1568 h
1569 265.520 -60.7676 m
1570 265.520 -58.9082 l
1571 267.738 -58.9082 l
1572 267.738 -58.0645 l
1573 265.520 -58.0645 l
1574 265.520 -54.5020 l
1575 265.520 -53.9707 265.592 -53.6296 265.738 -53.4785 c
1576 265.884 -53.3275 266.181 -53.2520 266.629 -53.2520 c
1577 267.738 -53.2520 l
1578 267.738 -52.3457 l
1579 266.629 -52.3457 l
1580 265.796 -52.3457 265.220 -52.5020 264.902 -52.8145 c
1581 264.585 -53.1270 264.426 -53.6895 264.426 -54.5020 c
1582 264.426 -58.0645 l
1583 263.645 -58.0645 l
1584 263.645 -58.9082 l
1585 264.426 -58.9082 l
1586 264.426 -60.7676 l
1587 265.520 -60.7676 l
1588 h
1589 272.131 -55.6426 m
1590 271.266 -55.6426 270.665 -55.5436 270.326 -55.3457 c
1591 269.988 -55.1478 269.818 -54.8092 269.818 -54.3301 c
1592 269.818 -53.9447 269.946 -53.6400 270.201 -53.4160 c
1593 270.456 -53.1921 270.798 -53.0801 271.225 -53.0801 c
1594 271.829 -53.0801 272.311 -53.2910 272.670 -53.7129 c
1595 273.029 -54.1348 273.209 -54.6999 273.209 -55.4082 c
1596 273.209 -55.6426 l
1597 272.131 -55.6426 l
1598 h
1599 274.287 -56.0957 m
1600 274.287 -52.3457 l
1601 273.209 -52.3457 l
1602 273.209 -53.3457 l
1603 272.959 -52.9499 272.652 -52.6556 272.287 -52.4629 c
1604 271.923 -52.2702 271.475 -52.1738 270.943 -52.1738 c
1605 270.266 -52.1738 269.730 -52.3639 269.334 -52.7441 c
1606 268.938 -53.1243 268.740 -53.6270 268.740 -54.2520 c
1607 268.740 -54.9915 268.988 -55.5488 269.482 -55.9238 c
1608 269.977 -56.2988 270.714 -56.4863 271.693 -56.4863 c
1609 273.209 -56.4863 l
1610 273.209 -56.5957 l
1611 273.209 -57.0957 273.045 -57.4811 272.717 -57.7520 c
1612 272.389 -58.0228 271.933 -58.1582 271.350 -58.1582 c
1613 270.975 -58.1582 270.607 -58.1113 270.248 -58.0176 c
1614 269.889 -57.9238 269.548 -57.7884 269.225 -57.6113 c
1615 269.225 -58.6113 l
1616 269.620 -58.7676 270.003 -58.8822 270.373 -58.9551 c
1617 270.743 -59.0280 271.105 -59.0645 271.459 -59.0645 c
1618 272.407 -59.0645 273.115 -58.8197 273.584 -58.3301 c
1619 274.053 -57.8405 274.287 -57.0957 274.287 -56.0957 c
1620 h
1621 281.219 -55.6270 m
1622 281.219 -56.4186 281.055 -57.0384 280.727 -57.4863 c
1623 280.398 -57.9342 279.953 -58.1582 279.391 -58.1582 c
1624 278.818 -58.1582 278.367 -57.9342 278.039 -57.4863 c
1625 277.711 -57.0384 277.547 -56.4186 277.547 -55.6270 c
1626 277.547 -54.8353 277.711 -54.2129 278.039 -53.7598 c
1627 278.367 -53.3066 278.818 -53.0801 279.391 -53.0801 c
1628 279.953 -53.0801 280.398 -53.3066 280.727 -53.7598 c
1629 281.055 -54.2129 281.219 -54.8353 281.219 -55.6270 c
1630 h
1631 277.547 -57.9082 m
1632 277.776 -58.3040 278.062 -58.5957 278.406 -58.7832 c
1633 278.750 -58.9707 279.161 -59.0645 279.641 -59.0645 c
1634 280.443 -59.0645 281.094 -58.7493 281.594 -58.1191 c
1635 282.094 -57.4889 282.344 -56.6582 282.344 -55.6270 c
1636 282.344 -54.5957 282.094 -53.7624 281.594 -53.1270 c
1637 281.094 -52.4915 280.443 -52.1738 279.641 -52.1738 c
1638 279.161 -52.1738 278.750 -52.2702 278.406 -52.4629 c
1639 278.062 -52.6556 277.776 -52.9447 277.547 -53.3301 c
1640 277.547 -52.3457 l
1641 276.469 -52.3457 l
1642 276.469 -61.4707 l
1643 277.547 -61.4707 l
1644 277.547 -57.9082 l
1645 h
1646 284.117 -61.4707 m
1647 285.195 -61.4707 l
1648 285.195 -52.3457 l
1649 284.117 -52.3457 l
1650 284.117 -61.4707 l
1651 h
1652 287.451 -58.9082 m
1653 288.529 -58.9082 l
1654 288.529 -52.3457 l
1655 287.451 -52.3457 l
1656 287.451 -58.9082 l
1657 h
1658 287.451 -61.4707 m
1659 288.529 -61.4707 l
1660 288.529 -60.0957 l
1661 287.451 -60.0957 l
1662 287.451 -61.4707 l
1663 h
1664 294.973 -58.7207 m
1665 294.973 -57.6895 l
1666 294.671 -57.8457 294.355 -57.9629 294.027 -58.0410 c
1667 293.699 -58.1191 293.358 -58.1582 293.004 -58.1582 c
1668 292.473 -58.1582 292.072 -58.0775 291.801 -57.9160 c
1669 291.530 -57.7546 291.395 -57.5072 291.395 -57.1738 c
1670 291.395 -56.9238 291.491 -56.7285 291.684 -56.5879 c
1671 291.876 -56.4473 292.264 -56.3145 292.848 -56.1895 c
1672 293.207 -56.0957 l
1673 293.978 -55.9395 294.525 -55.7103 294.848 -55.4082 c
1674 295.171 -55.1061 295.332 -54.6895 295.332 -54.1582 c
1675 295.332 -53.5436 295.090 -53.0592 294.605 -52.7051 c
1676 294.121 -52.3509 293.457 -52.1738 292.613 -52.1738 c
1677 292.259 -52.1738 291.892 -52.2077 291.512 -52.2754 c
1678 291.132 -52.3431 290.733 -52.4447 290.316 -52.5801 c
1679 290.316 -53.7051 l
1680 290.712 -53.4967 291.103 -53.3405 291.488 -53.2363 c
1681 291.874 -53.1322 292.259 -53.0801 292.645 -53.0801 c
1682 293.145 -53.0801 293.533 -53.1660 293.809 -53.3379 c
1683 294.085 -53.5098 294.223 -53.7572 294.223 -54.0801 c
1684 294.223 -54.3717 294.124 -54.5957 293.926 -54.7520 c
1685 293.728 -54.9082 293.296 -55.0592 292.629 -55.2051 c
1686 292.254 -55.2832 l
1687 291.587 -55.4290 291.105 -55.6478 290.809 -55.9395 c
1688 290.512 -56.2311 290.363 -56.6270 290.363 -57.1270 c
1689 290.363 -57.7520 290.582 -58.2311 291.020 -58.5645 c
1690 291.457 -58.8978 292.077 -59.0645 292.879 -59.0645 c
1691 293.275 -59.0645 293.650 -59.0358 294.004 -58.9785 c
1692 294.358 -58.9212 294.681 -58.8353 294.973 -58.7207 c
1693 h
1694 302.506 -56.3145 m
1695 302.506 -52.3457 l
1696 301.428 -52.3457 l
1697 301.428 -56.2676 l
1698 301.428 -56.8926 301.305 -57.3587 301.061 -57.6660 c
1699 300.816 -57.9733 300.454 -58.1270 299.975 -58.1270 c
1700 299.391 -58.1270 298.930 -57.9421 298.592 -57.5723 c
1701 298.253 -57.2025 298.084 -56.6947 298.084 -56.0488 c
1702 298.084 -52.3457 l
1703 297.006 -52.3457 l
1704 297.006 -61.4707 l
1705 298.084 -61.4707 l
1706 298.084 -57.8926 l
1707 298.344 -58.2884 298.649 -58.5827 298.998 -58.7754 c
1708 299.347 -58.9681 299.751 -59.0645 300.209 -59.0645 c
1709 300.959 -59.0645 301.529 -58.8327 301.920 -58.3691 c
1710 302.311 -57.9056 302.506 -57.2207 302.506 -56.3145 c
1711 h
1712 310.268 -55.8926 m
1713 310.268 -55.3770 l
1714 305.299 -55.3770 l
1715 305.351 -54.6270 305.577 -54.0592 305.979 -53.6738 c
1716 306.380 -53.2884 306.934 -53.0957 307.643 -53.0957 c
1717 308.059 -53.0957 308.463 -53.1452 308.854 -53.2441 c
1718 309.244 -53.3431 309.632 -53.4967 310.018 -53.7051 c
1719 310.018 -52.6738 l
1720 309.622 -52.5176 309.221 -52.3952 308.814 -52.3066 c
1721 308.408 -52.2181 307.997 -52.1738 307.580 -52.1738 c
1722 306.538 -52.1738 305.710 -52.4785 305.096 -53.0879 c
1723 304.481 -53.6973 304.174 -54.5228 304.174 -55.5645 c
1724 304.174 -56.6374 304.465 -57.4889 305.049 -58.1191 c
1725 305.632 -58.7493 306.413 -59.0645 307.393 -59.0645 c
1726 308.278 -59.0645 308.979 -58.7806 309.494 -58.2129 c
1727 310.010 -57.6452 310.268 -56.8717 310.268 -55.8926 c
1728 h
1729 309.189 -56.2207 m
1730 309.179 -56.8040 309.012 -57.2728 308.689 -57.6270 c
1731 308.367 -57.9811 307.939 -58.1582 307.408 -58.1582 c
1732 306.804 -58.1582 306.322 -57.9863 305.963 -57.6426 c
1733 305.604 -57.2988 305.398 -56.8197 305.346 -56.2051 c
1734 309.189 -56.2207 l
1735 h
1736 316.354 -57.9082 m
1737 316.354 -61.4707 l
1738 317.432 -61.4707 l
1739 317.432 -52.3457 l
1740 316.354 -52.3457 l
1741 316.354 -53.3301 l
1742 316.124 -52.9447 315.838 -52.6556 315.494 -52.4629 c
1743 315.150 -52.2702 314.734 -52.1738 314.244 -52.1738 c
1744 313.452 -52.1738 312.807 -52.4915 312.307 -53.1270 c
1745 311.807 -53.7624 311.557 -54.5957 311.557 -55.6270 c
1746 311.557 -56.6582 311.807 -57.4889 312.307 -58.1191 c
1747 312.807 -58.7493 313.452 -59.0645 314.244 -59.0645 c
1748 314.734 -59.0645 315.150 -58.9707 315.494 -58.7832 c
1749 315.838 -58.5957 316.124 -58.3040 316.354 -57.9082 c
1750 h
1751 312.682 -55.6270 m
1752 312.682 -54.8353 312.843 -54.2129 313.166 -53.7598 c
1753 313.489 -53.3066 313.937 -53.0801 314.510 -53.0801 c
1754 315.083 -53.0801 315.533 -53.3066 315.861 -53.7598 c
1755 316.189 -54.2129 316.354 -54.8353 316.354 -55.6270 c
1756 316.354 -56.4186 316.189 -57.0384 315.861 -57.4863 c
1757 315.533 -57.9342 315.083 -58.1582 314.510 -58.1582 c
1758 313.937 -58.1582 313.489 -57.9342 313.166 -57.4863 c
1759 312.843 -57.0384 312.682 -56.4186 312.682 -55.6270 c
1760 h
1761 f
1762 2 J
1763 10.0000 M
1764 1.00000 .800000 0.00000 RG
1765 0 J
1766 1.45000 M
1767 0.00000 0.00000 0.00000 RG
1768 newpath
1769 243.500 -71.5000 m
1770 324.500 -71.5000 l
1771 324.500 -41.5000 l
1772 243.500 -41.5000 l
1773 243.500 -71.5000 l
1774 h
1775 S
1776 2 J
1777 10.0000 M
1778 1.00000 .800000 0.00000 RG
1779 newpath
1780 247.000 95.0000 m
1781 321.000 95.0000 l
1782 321.000 125.000 l
1783 247.000 125.000 l
1784 247.000 95.0000 l
1785 h
1786 f
1787 0.00000 0.00000 0.00000 RG
1788 0 J
1789 1.45000 M
1790 newpath
1791 261.761 106.076 m
1792 261.761 107.326 l
1793 261.354 106.951 260.927 106.673 260.479 106.490 c
1794 260.032 106.308 259.552 106.217 259.042 106.217 c
1795 258.042 106.217 257.276 106.524 256.745 107.139 c
1796 256.214 107.753 255.948 108.639 255.948 109.795 c
1797 255.948 110.941 256.214 111.821 256.745 112.436 c
1798 257.276 113.050 258.042 113.357 259.042 113.357 c
1799 259.552 113.357 260.032 113.264 260.479 113.076 c
1800 260.927 112.889 261.354 112.613 261.761 112.248 c
1801 261.761 113.482 l
1802 261.344 113.764 260.904 113.975 260.440 114.115 c
1803 259.977 114.256 259.490 114.326 258.979 114.326 c
1804 257.646 114.326 256.599 113.920 255.839 113.107 c
1805 255.078 112.295 254.698 111.191 254.698 109.795 c
1806 254.698 108.389 255.078 107.279 255.839 106.467 c
1807 256.599 105.654 257.646 105.248 258.979 105.248 c
1808 259.500 105.248 259.993 105.318 260.456 105.459 c
1809 260.920 105.600 261.354 105.805 261.761 106.076 c
1810 h
1811 263.530 105.029 m
1812 264.608 105.029 l
1813 264.608 114.154 l
1814 263.530 114.154 l
1815 263.530 105.029 l
1816 h
1817 269.411 108.342 m
1818 268.838 108.342 268.382 108.568 268.044 109.021 c
1819 267.705 109.475 267.536 110.092 267.536 110.873 c
1820 267.536 111.665 267.703 112.285 268.036 112.732 c
1821 268.369 113.180 268.828 113.404 269.411 113.404 c
1822 269.984 113.404 270.440 113.178 270.778 112.725 c
1823 271.117 112.271 271.286 111.654 271.286 110.873 c
1824 271.286 110.102 271.117 109.488 270.778 109.029 c
1825 270.440 108.571 269.984 108.342 269.411 108.342 c
1826 h
1827 269.411 107.436 m
1828 270.349 107.436 271.086 107.740 271.622 108.350 c
1829 272.159 108.959 272.427 109.800 272.427 110.873 c
1830 272.427 111.946 272.159 112.790 271.622 113.404 c
1831 271.086 114.019 270.349 114.326 269.411 114.326 c
1832 268.474 114.326 267.737 114.019 267.200 113.404 c
1833 266.664 112.790 266.396 111.946 266.396 110.873 c
1834 266.396 109.800 266.664 108.959 267.200 108.350 c
1835 267.737 107.740 268.474 107.436 269.411 107.436 c
1836 h
1837 278.394 107.779 m
1838 278.394 108.811 l
1839 278.091 108.654 277.776 108.537 277.448 108.459 c
1840 277.120 108.381 276.779 108.342 276.425 108.342 c
1841 275.894 108.342 275.493 108.423 275.222 108.584 c
1842 274.951 108.745 274.815 108.993 274.815 109.326 c
1843 274.815 109.576 274.912 109.771 275.104 109.912 c
1844 275.297 110.053 275.685 110.186 276.269 110.311 c
1845 276.628 110.404 l
1846 277.399 110.561 277.946 110.790 278.269 111.092 c
1847 278.591 111.394 278.753 111.811 278.753 112.342 c
1848 278.753 112.956 278.511 113.441 278.026 113.795 c
1849 277.542 114.149 276.878 114.326 276.034 114.326 c
1850 275.680 114.326 275.313 114.292 274.933 114.225 c
1851 274.552 114.157 274.154 114.055 273.737 113.920 c
1852 273.737 112.795 l
1853 274.133 113.003 274.524 113.160 274.909 113.264 c
1854 275.295 113.368 275.680 113.420 276.065 113.420 c
1855 276.565 113.420 276.953 113.334 277.229 113.162 c
1856 277.506 112.990 277.644 112.743 277.644 112.420 c
1857 277.644 112.128 277.545 111.904 277.347 111.748 c
1858 277.149 111.592 276.716 111.441 276.050 111.295 c
1859 275.675 111.217 l
1860 275.008 111.071 274.526 110.852 274.229 110.561 c
1861 273.933 110.269 273.784 109.873 273.784 109.373 c
1862 273.784 108.748 274.003 108.269 274.440 107.936 c
1863 274.878 107.602 275.498 107.436 276.300 107.436 c
1864 276.696 107.436 277.071 107.464 277.425 107.521 c
1865 277.779 107.579 278.102 107.665 278.394 107.779 c
1866 h
1867 286.083 110.607 m
1868 286.083 111.123 l
1869 281.114 111.123 l
1870 281.166 111.873 281.393 112.441 281.794 112.826 c
1871 282.195 113.212 282.750 113.404 283.458 113.404 c
1872 283.875 113.404 284.278 113.355 284.669 113.256 c
1873 285.060 113.157 285.448 113.003 285.833 112.795 c
1874 285.833 113.826 l
1875 285.437 113.982 285.036 114.105 284.630 114.193 c
1876 284.224 114.282 283.812 114.326 283.396 114.326 c
1877 282.354 114.326 281.526 114.021 280.911 113.412 c
1878 280.297 112.803 279.989 111.977 279.989 110.936 c
1879 279.989 109.863 280.281 109.011 280.864 108.381 c
1880 281.448 107.751 282.229 107.436 283.208 107.436 c
1881 284.093 107.436 284.794 107.719 285.310 108.287 c
1882 285.825 108.855 286.083 109.628 286.083 110.607 c
1883 h
1884 285.005 110.279 m
1885 284.994 109.696 284.828 109.227 284.505 108.873 c
1886 284.182 108.519 283.755 108.342 283.224 108.342 c
1887 282.619 108.342 282.138 108.514 281.778 108.857 c
1888 281.419 109.201 281.213 109.680 281.161 110.295 c
1889 285.005 110.279 l
1890 h
1891 287.122 105.404 m
1892 288.310 105.404 l
1893 290.153 112.795 l
1894 291.981 105.404 l
1895 293.310 105.404 l
1896 295.153 112.795 l
1897 296.981 105.404 l
1898 298.185 105.404 l
1899 295.997 114.154 l
1900 294.497 114.154 l
1901 292.653 106.561 l
1902 290.794 114.154 l
1903 289.310 114.154 l
1904 287.122 105.404 l
1905 h
1906 302.690 110.857 m
1907 301.826 110.857 301.224 110.956 300.886 111.154 c
1908 300.547 111.352 300.378 111.691 300.378 112.170 c
1909 300.378 112.555 300.506 112.860 300.761 113.084 c
1910 301.016 113.308 301.357 113.420 301.784 113.420 c
1911 302.388 113.420 302.870 113.209 303.229 112.787 c
1912 303.589 112.365 303.769 111.800 303.769 111.092 c
1913 303.769 110.857 l
1914 302.690 110.857 l
1915 h
1916 304.847 110.404 m
1917 304.847 114.154 l
1918 303.769 114.154 l
1919 303.769 113.154 l
1920 303.519 113.550 303.211 113.844 302.847 114.037 c
1921 302.482 114.230 302.034 114.326 301.503 114.326 c
1922 300.826 114.326 300.289 114.136 299.894 113.756 c
1923 299.498 113.376 299.300 112.873 299.300 112.248 c
1924 299.300 111.508 299.547 110.951 300.042 110.576 c
1925 300.537 110.201 301.274 110.014 302.253 110.014 c
1926 303.769 110.014 l
1927 303.769 109.904 l
1928 303.769 109.404 303.604 109.019 303.276 108.748 c
1929 302.948 108.477 302.493 108.342 301.909 108.342 c
1930 301.534 108.342 301.167 108.389 300.808 108.482 c
1931 300.448 108.576 300.107 108.712 299.784 108.889 c
1932 299.784 107.889 l
1933 300.180 107.732 300.563 107.618 300.933 107.545 c
1934 301.302 107.472 301.664 107.436 302.019 107.436 c
1935 302.966 107.436 303.675 107.680 304.144 108.170 c
1936 304.612 108.660 304.847 109.404 304.847 110.404 c
1937 h
1938 307.060 107.592 m
1939 308.138 107.592 l
1940 308.138 114.154 l
1941 307.060 114.154 l
1942 307.060 107.592 l
1943 h
1944 307.060 105.029 m
1945 308.138 105.029 l
1946 308.138 106.404 l
1947 307.060 106.404 l
1948 307.060 105.029 l
1949 h
1950 311.472 105.732 m
1951 311.472 107.592 l
1952 313.690 107.592 l
1953 313.690 108.436 l
1954 311.472 108.436 l
1955 311.472 111.998 l
1956 311.472 112.529 311.545 112.870 311.690 113.021 c
1957 311.836 113.173 312.133 113.248 312.581 113.248 c
1958 313.690 113.248 l
1959 313.690 114.154 l
1960 312.581 114.154 l
1961 311.748 114.154 311.172 113.998 310.854 113.686 c
1962 310.537 113.373 310.378 112.811 310.378 111.998 c
1963 310.378 108.436 l
1964 309.597 108.436 l
1965 309.597 107.592 l
1966 310.378 107.592 l
1967 310.378 105.732 l
1968 311.472 105.732 l
1969 h
1970 f
1971 2 J
1972 10.0000 M
1973 1.00000 .800000 0.00000 RG
1974 0 J
1975 1.45000 M
1976 0.00000 0.00000 0.00000 RG
1977 newpath
1978 247.000 95.0000 m
1979 321.000 95.0000 l
1980 321.000 125.000 l
1981 247.000 125.000 l
1982 247.000 95.0000 l
1983 h
1984 S
1985 2 J
1986 10.0000 M
1987 1.00000 .800000 0.00000 RG
1988 newpath
1989 258.000 175.500 m
1990 317.000 175.500 l
1991 317.000 205.500 l
1992 258.000 205.500 l
1993 258.000 175.500 l
1994 h
1995 f
1996 0.00000 0.00000 0.00000 RG
1997 0 J
1998 1.45000 M
1999 newpath
2000 263.389 185.904 m
2001 264.576 185.904 l
2002 264.576 193.654 l
2003 268.842 193.654 l
2004 268.842 194.654 l
2005 263.389 194.654 l
2006 263.389 185.904 l
2007 h
2008 273.012 191.357 m
2009 272.147 191.357 271.546 191.456 271.207 191.654 c
2010 270.868 191.852 270.699 192.191 270.699 192.670 c
2011 270.699 193.055 270.827 193.360 271.082 193.584 c
2012 271.337 193.808 271.678 193.920 272.105 193.920 c
2013 272.710 193.920 273.191 193.709 273.551 193.287 c
2014 273.910 192.865 274.090 192.300 274.090 191.592 c
2015 274.090 191.357 l
2016 273.012 191.357 l
2017 h
2018 275.168 190.904 m
2019 275.168 194.654 l
2020 274.090 194.654 l
2021 274.090 193.654 l
2022 273.840 194.050 273.533 194.344 273.168 194.537 c
2023 272.803 194.730 272.355 194.826 271.824 194.826 c
2024 271.147 194.826 270.611 194.636 270.215 194.256 c
2025 269.819 193.876 269.621 193.373 269.621 192.748 c
2026 269.621 192.008 269.868 191.451 270.363 191.076 c
2027 270.858 190.701 271.595 190.514 272.574 190.514 c
2028 274.090 190.514 l
2029 274.090 190.404 l
2030 274.090 189.904 273.926 189.519 273.598 189.248 c
2031 273.270 188.977 272.814 188.842 272.230 188.842 c
2032 271.855 188.842 271.488 188.889 271.129 188.982 c
2033 270.770 189.076 270.428 189.212 270.105 189.389 c
2034 270.105 188.389 l
2035 270.501 188.232 270.884 188.118 271.254 188.045 c
2036 271.624 187.972 271.986 187.936 272.340 187.936 c
2037 273.288 187.936 273.996 188.180 274.465 188.670 c
2038 274.934 189.160 275.168 189.904 275.168 190.904 c
2039 h
2040 281.568 188.279 m
2041 281.568 189.311 l
2042 281.266 189.154 280.951 189.037 280.623 188.959 c
2043 280.295 188.881 279.954 188.842 279.600 188.842 c
2044 279.068 188.842 278.667 188.923 278.396 189.084 c
2045 278.126 189.245 277.990 189.493 277.990 189.826 c
2046 277.990 190.076 278.087 190.271 278.279 190.412 c
2047 278.472 190.553 278.860 190.686 279.443 190.811 c
2048 279.803 190.904 l
2049 280.574 191.061 281.120 191.290 281.443 191.592 c
2050 281.766 191.894 281.928 192.311 281.928 192.842 c
2051 281.928 193.456 281.686 193.941 281.201 194.295 c
2052 280.717 194.649 280.053 194.826 279.209 194.826 c
2053 278.855 194.826 278.488 194.792 278.107 194.725 c
2054 277.727 194.657 277.329 194.555 276.912 194.420 c
2055 276.912 193.295 l
2056 277.308 193.503 277.699 193.660 278.084 193.764 c
2057 278.469 193.868 278.855 193.920 279.240 193.920 c
2058 279.740 193.920 280.128 193.834 280.404 193.662 c
2059 280.680 193.490 280.818 193.243 280.818 192.920 c
2060 280.818 192.628 280.719 192.404 280.521 192.248 c
2061 280.324 192.092 279.891 191.941 279.225 191.795 c
2062 278.850 191.717 l
2063 278.183 191.571 277.701 191.352 277.404 191.061 c
2064 277.107 190.769 276.959 190.373 276.959 189.873 c
2065 276.959 189.248 277.178 188.769 277.615 188.436 c
2066 278.053 188.102 278.673 187.936 279.475 187.936 c
2067 279.870 187.936 280.245 187.964 280.600 188.021 c
2068 280.954 188.079 281.277 188.165 281.568 188.279 c
2069 h
2070 284.711 186.232 m
2071 284.711 188.092 l
2072 286.930 188.092 l
2073 286.930 188.936 l
2074 284.711 188.936 l
2075 284.711 192.498 l
2076 284.711 193.029 284.784 193.370 284.930 193.521 c
2077 285.076 193.673 285.372 193.748 285.820 193.748 c
2078 286.930 193.748 l
2079 286.930 194.654 l
2080 285.820 194.654 l
2081 284.987 194.654 284.411 194.498 284.094 194.186 c
2082 283.776 193.873 283.617 193.311 283.617 192.498 c
2083 283.617 188.936 l
2084 282.836 188.936 l
2085 282.836 188.092 l
2086 283.617 188.092 l
2087 283.617 186.232 l
2088 284.711 186.232 l
2089 h
2090 295.137 187.076 m
2091 293.527 191.420 l
2092 296.746 191.420 l
2093 295.137 187.076 l
2094 h
2095 294.465 185.904 m
2096 295.809 185.904 l
2097 299.137 194.654 l
2098 297.902 194.654 l
2099 297.105 192.404 l
2100 293.168 192.404 l
2101 292.371 194.654 l
2102 291.121 194.654 l
2103 294.465 185.904 l
2104 h
2105 305.096 188.342 m
2106 305.096 189.357 l
2107 304.783 189.180 304.476 189.050 304.174 188.967 c
2108 303.872 188.883 303.564 188.842 303.252 188.842 c
2109 302.544 188.842 301.997 189.063 301.611 189.506 c
2110 301.226 189.949 301.033 190.571 301.033 191.373 c
2111 301.033 192.175 301.226 192.798 301.611 193.240 c
2112 301.997 193.683 302.544 193.904 303.252 193.904 c
2113 303.564 193.904 303.872 193.863 304.174 193.779 c
2114 304.476 193.696 304.783 193.571 305.096 193.404 c
2115 305.096 194.404 l
2116 304.794 194.540 304.481 194.644 304.158 194.717 c
2117 303.835 194.790 303.492 194.826 303.127 194.826 c
2118 302.137 194.826 301.351 194.516 300.768 193.896 c
2119 300.184 193.277 299.893 192.436 299.893 191.373 c
2120 299.893 190.311 300.187 189.472 300.775 188.857 c
2121 301.364 188.243 302.174 187.936 303.205 187.936 c
2122 303.528 187.936 303.848 187.969 304.166 188.037 c
2123 304.484 188.105 304.794 188.206 305.096 188.342 c
2124 h
2125 306.928 185.529 m
2126 308.006 185.529 l
2127 308.006 190.920 l
2128 311.225 188.092 l
2129 312.600 188.092 l
2130 309.115 191.154 l
2131 312.756 194.654 l
2132 311.350 194.654 l
2133 308.006 191.451 l
2134 308.006 194.654 l
2135 306.928 194.654 l
2136 306.928 185.529 l
2137 h
2138 f
2139 2 J
2140 10.0000 M
2141 1.00000 .800000 0.00000 RG
2142 0 J
2143 1.45000 M
2144 0.00000 0.00000 0.00000 RG
2145 newpath
2146 258.000 175.500 m
2147 317.000 175.500 l
2148 317.000 205.500 l
2149 258.000 205.500 l
2150 258.000 175.500 l
2151 h
2152 S
2153 2 J
2154 10.0000 M
2155 1.00000 .800000 0.00000 RG
2156 newpath
2157 245.000 -229.000 m
2158 303.000 -229.000 l
2159 303.000 -199.000 l
2160 245.000 -199.000 l
2161 245.000 -229.000 l
2162 h
2163 f
2164 0.00000 0.00000 0.00000 RG
2165 0 J
2166 1.45000 M
2167 newpath
2168 251.046 -218.314 m
2169 251.046 -217.158 l
2170 250.598 -217.367 250.174 -217.525 249.772 -217.635 c
2171 249.371 -217.744 248.989 -217.799 248.624 -217.799 c
2172 247.978 -217.799 247.481 -217.674 247.132 -217.424 c
2173 246.783 -217.174 246.608 -216.814 246.608 -216.346 c
2174 246.608 -215.960 246.723 -215.669 246.952 -215.471 c
2175 247.181 -215.273 247.624 -215.117 248.280 -215.002 c
2176 248.983 -214.846 l
2177 249.869 -214.679 250.522 -214.385 250.944 -213.963 c
2178 251.366 -213.541 251.577 -212.976 251.577 -212.268 c
2179 251.577 -211.413 251.293 -210.768 250.726 -210.330 c
2180 250.158 -209.893 249.322 -209.674 248.218 -209.674 c
2181 247.812 -209.674 247.374 -209.721 246.905 -209.814 c
2182 246.437 -209.908 245.952 -210.049 245.452 -210.236 c
2183 245.452 -211.455 l
2184 245.931 -211.184 246.403 -210.981 246.866 -210.846 c
2185 247.330 -210.710 247.780 -210.643 248.218 -210.643 c
2186 248.895 -210.643 249.418 -210.775 249.788 -211.041 c
2187 250.158 -211.307 250.343 -211.684 250.343 -212.174 c
2188 250.343 -212.601 250.210 -212.937 249.944 -213.182 c
2189 249.679 -213.426 249.244 -213.606 248.640 -213.721 c
2190 247.921 -213.861 l
2191 247.035 -214.038 246.397 -214.314 246.007 -214.689 c
2192 245.616 -215.064 245.421 -215.585 245.421 -216.252 c
2193 245.421 -217.033 245.692 -217.645 246.233 -218.088 c
2194 246.775 -218.531 247.525 -218.752 248.483 -218.752 c
2195 248.900 -218.752 249.319 -218.715 249.741 -218.643 c
2196 250.163 -218.570 250.598 -218.460 251.046 -218.314 c
2197 h
2198 256.101 -209.236 m
2199 255.799 -208.455 255.502 -207.945 255.210 -207.705 c
2200 254.918 -207.465 254.533 -207.346 254.054 -207.346 c
2201 253.194 -207.346 l
2202 253.194 -208.252 l
2203 253.819 -208.252 l
2204 254.121 -208.252 254.353 -208.322 254.515 -208.463 c
2205 254.676 -208.604 254.856 -208.934 255.054 -209.455 c
2206 255.257 -209.955 l
2207 252.601 -216.408 l
2208 253.741 -216.408 l
2209 255.788 -211.283 l
2210 257.851 -216.408 l
2211 258.991 -216.408 l
2212 256.101 -209.236 l
2213 h
2214 265.937 -213.814 m
2215 265.937 -209.846 l
2216 264.858 -209.846 l
2217 264.858 -213.768 l
2218 264.858 -214.393 264.736 -214.859 264.491 -215.166 c
2219 264.246 -215.473 263.884 -215.627 263.405 -215.627 c
2220 262.822 -215.627 262.361 -215.442 262.022 -215.072 c
2221 261.684 -214.702 261.515 -214.195 261.515 -213.549 c
2222 261.515 -209.846 l
2223 260.437 -209.846 l
2224 260.437 -216.408 l
2225 261.515 -216.408 l
2226 261.515 -215.393 l
2227 261.775 -215.788 262.080 -216.083 262.429 -216.275 c
2228 262.778 -216.468 263.181 -216.564 263.640 -216.564 c
2229 264.390 -216.564 264.960 -216.333 265.351 -215.869 c
2230 265.741 -215.406 265.937 -214.721 265.937 -213.814 c
2231 h
2232 275.700 -215.408 m
2233 275.575 -215.471 275.442 -215.520 275.302 -215.557 c
2234 275.161 -215.593 275.002 -215.611 274.825 -215.611 c
2235 274.221 -215.611 273.755 -215.413 273.427 -215.018 c
2236 273.099 -214.622 272.935 -214.049 272.935 -213.299 c
2237 272.935 -209.846 l
2238 271.856 -209.846 l
2239 271.856 -216.408 l
2240 272.935 -216.408 l
2241 272.935 -215.393 l
2242 273.164 -215.788 273.461 -216.083 273.825 -216.275 c
2243 274.190 -216.468 274.632 -216.564 275.153 -216.564 c
2244 275.226 -216.564 275.307 -216.559 275.396 -216.549 c
2245 275.484 -216.538 275.580 -216.523 275.685 -216.502 c
2246 275.700 -215.408 l
2247 h
2248 282.446 -213.393 m
2249 282.446 -212.877 l
2250 277.478 -212.877 l
2251 277.530 -212.127 277.756 -211.559 278.157 -211.174 c
2252 278.558 -210.788 279.113 -210.596 279.821 -210.596 c
2253 280.238 -210.596 280.642 -210.645 281.032 -210.744 c
2254 281.423 -210.843 281.811 -210.997 282.196 -211.205 c
2255 282.196 -210.174 l
2256 281.800 -210.018 281.399 -209.895 280.993 -209.807 c
2257 280.587 -209.718 280.175 -209.674 279.759 -209.674 c
2258 278.717 -209.674 277.889 -209.979 277.274 -210.588 c
2259 276.660 -211.197 276.353 -212.023 276.353 -213.064 c
2260 276.353 -214.137 276.644 -214.989 277.228 -215.619 c
2261 277.811 -216.249 278.592 -216.564 279.571 -216.564 c
2262 280.457 -216.564 281.157 -216.281 281.673 -215.713 c
2263 282.188 -215.145 282.446 -214.372 282.446 -213.393 c
2264 h
2265 281.368 -213.721 m
2266 281.358 -214.304 281.191 -214.773 280.868 -215.127 c
2267 280.545 -215.481 280.118 -215.658 279.587 -215.658 c
2268 278.983 -215.658 278.501 -215.486 278.142 -215.143 c
2269 277.782 -214.799 277.576 -214.320 277.524 -213.705 c
2270 281.368 -213.721 l
2271 h
2272 288.938 -216.158 m
2273 288.938 -215.143 l
2274 288.626 -215.320 288.319 -215.450 288.017 -215.533 c
2275 287.715 -215.617 287.407 -215.658 287.095 -215.658 c
2276 286.386 -215.658 285.840 -215.437 285.454 -214.994 c
2277 285.069 -214.551 284.876 -213.929 284.876 -213.127 c
2278 284.876 -212.325 285.069 -211.702 285.454 -211.260 c
2279 285.840 -210.817 286.386 -210.596 287.095 -210.596 c
2280 287.407 -210.596 287.715 -210.637 288.017 -210.721 c
2281 288.319 -210.804 288.626 -210.929 288.938 -211.096 c
2282 288.938 -210.096 l
2283 288.636 -209.960 288.324 -209.856 288.001 -209.783 c
2284 287.678 -209.710 287.334 -209.674 286.970 -209.674 c
2285 285.980 -209.674 285.194 -209.984 284.610 -210.604 c
2286 284.027 -211.223 283.735 -212.064 283.735 -213.127 c
2287 283.735 -214.189 284.030 -215.028 284.618 -215.643 c
2288 285.207 -216.257 286.017 -216.564 287.048 -216.564 c
2289 287.371 -216.564 287.691 -216.531 288.009 -216.463 c
2290 288.326 -216.395 288.636 -216.294 288.938 -216.158 c
2291 h
2292 290.036 -216.408 m
2293 291.177 -216.408 l
2294 293.224 -210.908 l
2295 295.286 -216.408 l
2296 296.427 -216.408 l
2297 293.958 -209.846 l
2298 292.489 -209.846 l
2299 290.036 -216.408 l
2300 h
2301 298.935 -218.596 m
2302 298.935 -215.346 l
2303 297.935 -215.346 l
2304 297.935 -218.596 l
2305 298.935 -218.596 l
2306 h
2307 302.233 -218.596 m
2308 302.233 -215.346 l
2309 301.233 -215.346 l
2310 301.233 -218.596 l
2311 302.233 -218.596 l
2312 h
2313 f
2314 2 J
2315 10.0000 M
2316 1.00000 .800000 0.00000 RG
2317 0 J
2318 1.45000 M
2319 0.00000 0.00000 0.00000 RG
2320 newpath
2321 245.000 -229.000 m
2322 303.000 -229.000 l
2323 303.000 -199.000 l
2324 245.000 -199.000 l
2325 245.000 -229.000 l
2326 h
2327 S
2328 2 J
2329 10.0000 M
2330 1.00000 .800000 0.00000 RG
2331 newpath
2332 112.000 6.00000 m
2333 142.000 6.00000 l
2334 142.000 36.0000 l
2335 112.000 36.0000 l
2336 112.000 6.00000 l
2337 h
2338 f
2339 0.00000 0.00000 0.00000 RG
2340 0 J
2341 1.45000 M
2342 newpath
2343 115.033 17.3730 m
2344 115.033 24.1855 l
2345 116.471 24.1855 l
2346 117.679 24.1855 118.562 23.9121 119.119 23.3652 c
2347 119.676 22.8184 119.955 21.9512 119.955 20.7637 c
2348 119.955 19.5970 119.676 18.7402 119.119 18.1934 c
2349 118.562 17.6465 117.679 17.3730 116.471 17.3730 c
2350 115.033 17.3730 l
2351 h
2352 113.846 16.4043 m
2353 116.283 16.4043 l
2354 117.981 16.4043 119.226 16.7559 120.018 17.4590 c
2355 120.809 18.1621 121.205 19.2637 121.205 20.7637 c
2356 121.205 22.2741 120.807 23.3835 120.010 24.0918 c
2357 119.213 24.8001 117.971 25.1543 116.283 25.1543 c
2358 113.846 25.1543 l
2359 113.846 16.4043 l
2360 h
2361 126.023 21.8574 m
2362 125.159 21.8574 124.557 21.9564 124.219 22.1543 c
2363 123.880 22.3522 123.711 22.6908 123.711 23.1699 c
2364 123.711 23.5553 123.839 23.8600 124.094 24.0840 c
2365 124.349 24.3079 124.690 24.4199 125.117 24.4199 c
2366 125.721 24.4199 126.203 24.2090 126.562 23.7871 c
2367 126.922 23.3652 127.102 22.8001 127.102 22.0918 c
2368 127.102 21.8574 l
2369 126.023 21.8574 l
2370 h
2371 128.180 21.4043 m
2372 128.180 25.1543 l
2373 127.102 25.1543 l
2374 127.102 24.1543 l
2375 126.852 24.5501 126.544 24.8444 126.180 25.0371 c
2376 125.815 25.2298 125.367 25.3262 124.836 25.3262 c
2377 124.159 25.3262 123.622 25.1361 123.227 24.7559 c
2378 122.831 24.3757 122.633 23.8730 122.633 23.2480 c
2379 122.633 22.5085 122.880 21.9512 123.375 21.5762 c
2380 123.870 21.2012 124.607 21.0137 125.586 21.0137 c
2381 127.102 21.0137 l
2382 127.102 20.9043 l
2383 127.102 20.4043 126.938 20.0189 126.609 19.7480 c
2384 126.281 19.4772 125.826 19.3418 125.242 19.3418 c
2385 124.867 19.3418 124.500 19.3887 124.141 19.4824 c
2386 123.781 19.5762 123.440 19.7116 123.117 19.8887 c
2387 123.117 18.8887 l
2388 123.513 18.7324 123.896 18.6178 124.266 18.5449 c
2389 124.635 18.4720 124.997 18.4355 125.352 18.4355 c
2390 126.299 18.4355 127.008 18.6803 127.477 19.1699 c
2391 127.945 19.6595 128.180 20.4043 128.180 21.4043 c
2392 h
2393 131.471 16.7324 m
2394 131.471 18.5918 l
2395 133.689 18.5918 l
2396 133.689 19.4355 l
2397 131.471 19.4355 l
2398 131.471 22.9980 l
2399 131.471 23.5293 131.544 23.8704 131.689 24.0215 c
2400 131.835 24.1725 132.132 24.2480 132.580 24.2480 c
2401 133.689 24.2480 l
2402 133.689 25.1543 l
2403 132.580 25.1543 l
2404 131.747 25.1543 131.171 24.9980 130.854 24.6855 c
2405 130.536 24.3730 130.377 23.8105 130.377 22.9980 c
2406 130.377 19.4355 l
2407 129.596 19.4355 l
2408 129.596 18.5918 l
2409 130.377 18.5918 l
2410 130.377 16.7324 l
2411 131.471 16.7324 l
2412 h
2413 138.082 21.8574 m
2414 137.217 21.8574 136.616 21.9564 136.277 22.1543 c
2415 135.939 22.3522 135.770 22.6908 135.770 23.1699 c
2416 135.770 23.5553 135.897 23.8600 136.152 24.0840 c
2417 136.408 24.3079 136.749 24.4199 137.176 24.4199 c
2418 137.780 24.4199 138.262 24.2090 138.621 23.7871 c
2419 138.980 23.3652 139.160 22.8001 139.160 22.0918 c
2420 139.160 21.8574 l
2421 138.082 21.8574 l
2422 h
2423 140.238 21.4043 m
2424 140.238 25.1543 l
2425 139.160 25.1543 l
2426 139.160 24.1543 l
2427 138.910 24.5501 138.603 24.8444 138.238 25.0371 c
2428 137.874 25.2298 137.426 25.3262 136.895 25.3262 c
2429 136.217 25.3262 135.681 25.1361 135.285 24.7559 c
2430 134.889 24.3757 134.691 23.8730 134.691 23.2480 c
2431 134.691 22.5085 134.939 21.9512 135.434 21.5762 c
2432 135.928 21.2012 136.665 21.0137 137.645 21.0137 c
2433 139.160 21.0137 l
2434 139.160 20.9043 l
2435 139.160 20.4043 138.996 20.0189 138.668 19.7480 c
2436 138.340 19.4772 137.884 19.3418 137.301 19.3418 c
2437 136.926 19.3418 136.559 19.3887 136.199 19.4824 c
2438 135.840 19.5762 135.499 19.7116 135.176 19.8887 c
2439 135.176 18.8887 l
2440 135.572 18.7324 135.954 18.6178 136.324 18.5449 c
2441 136.694 18.4720 137.056 18.4355 137.410 18.4355 c
2442 138.358 18.4355 139.066 18.6803 139.535 19.1699 c
2443 140.004 19.6595 140.238 20.4043 140.238 21.4043 c
2444 h
2445 f
2446 2 J
2447 10.0000 M
2448 1.00000 .800000 0.00000 RG
2449 0 J
2450 1.45000 M
2451 0.00000 0.00000 0.00000 RG
2452 newpath
2453 112.000 6.00000 m
2454 142.000 6.00000 l
2455 142.000 36.0000 l
2456 112.000 36.0000 l
2457 112.000 6.00000 l
2458 h
2459 S
2460 2 J
2461 10.0000 M
2462 0 J
2463 1.45000 M
2464 newpath
2465 375.000 -299.795 m
2466 332.000 -300.640 l
2467 312.498 -300.256 l
2468 S
2469 newpath
2470 304.500 -300.099 m
2471 316.596 -295.336 l
2472 313.498 -300.276 l
2473 316.399 -305.334 l
2474 h
2475 f
2476 1.00000 1.00000 1.00000 RG
2477 newpath
2478 319.583 -309.413 m
2479 365.917 -309.413 l
2480 365.917 -291.444 l
2481 319.583 -291.444 l
2482 319.583 -309.413 l
2483 h
2484 f
2485 0.00000 0.00000 0.00000 RG
2486 newpath
2487 322.755 -305.024 m
2488 323.942 -305.024 l
2489 323.942 -297.274 l
2490 328.208 -297.274 l
2491 328.208 -296.274 l
2492 322.755 -296.274 l
2493 322.755 -305.024 l
2494 h
2495 329.394 -302.837 m
2496 330.472 -302.837 l
2497 330.472 -296.274 l
2498 329.394 -296.274 l
2499 329.394 -302.837 l
2500 h
2501 329.394 -305.399 m
2502 330.472 -305.399 l
2503 330.472 -304.024 l
2504 329.394 -304.024 l
2505 329.394 -305.399 l
2506 h
2507 336.915 -302.649 m
2508 336.915 -301.618 l
2509 336.613 -301.774 336.298 -301.891 335.970 -301.969 c
2510 335.642 -302.048 335.300 -302.087 334.946 -302.087 c
2511 334.415 -302.087 334.014 -302.006 333.743 -301.844 c
2512 333.472 -301.683 333.337 -301.436 333.337 -301.102 c
2513 333.337 -300.852 333.433 -300.657 333.626 -300.516 c
2514 333.819 -300.376 334.207 -300.243 334.790 -300.118 c
2515 335.149 -300.024 l
2516 335.920 -299.868 336.467 -299.639 336.790 -299.337 c
2517 337.113 -299.034 337.274 -298.618 337.274 -298.087 c
2518 337.274 -297.472 337.032 -296.988 336.548 -296.633 c
2519 336.063 -296.279 335.399 -296.102 334.556 -296.102 c
2520 334.201 -296.102 333.834 -296.136 333.454 -296.204 c
2521 333.074 -296.271 332.675 -296.373 332.259 -296.508 c
2522 332.259 -297.633 l
2523 332.655 -297.425 333.045 -297.269 333.431 -297.165 c
2524 333.816 -297.061 334.201 -297.008 334.587 -297.008 c
2525 335.087 -297.008 335.475 -297.094 335.751 -297.266 c
2526 336.027 -297.438 336.165 -297.686 336.165 -298.008 c
2527 336.165 -298.300 336.066 -298.524 335.868 -298.680 c
2528 335.670 -298.837 335.238 -298.988 334.571 -299.133 c
2529 334.196 -299.212 l
2530 333.530 -299.357 333.048 -299.576 332.751 -299.868 c
2531 332.454 -300.159 332.306 -300.555 332.306 -301.055 c
2532 332.306 -301.680 332.524 -302.159 332.962 -302.493 c
2533 333.399 -302.826 334.019 -302.993 334.821 -302.993 c
2534 335.217 -302.993 335.592 -302.964 335.946 -302.907 c
2535 336.300 -302.850 336.623 -302.764 336.915 -302.649 c
2536 h
2537 340.058 -304.696 m
2538 340.058 -302.837 l
2539 342.276 -302.837 l
2540 342.276 -301.993 l
2541 340.058 -301.993 l
2542 340.058 -298.430 l
2543 340.058 -297.899 340.131 -297.558 340.276 -297.407 c
2544 340.422 -297.256 340.719 -297.180 341.167 -297.180 c
2545 342.276 -297.180 l
2546 342.276 -296.274 l
2547 341.167 -296.274 l
2548 340.334 -296.274 339.758 -296.430 339.440 -296.743 c
2549 339.123 -297.055 338.964 -297.618 338.964 -298.430 c
2550 338.964 -301.993 l
2551 338.183 -301.993 l
2552 338.183 -302.837 l
2553 338.964 -302.837 l
2554 338.964 -304.696 l
2555 340.058 -304.696 l
2556 h
2557 349.310 -299.821 m
2558 349.310 -299.305 l
2559 344.341 -299.305 l
2560 344.393 -298.555 344.619 -297.988 345.021 -297.602 c
2561 345.422 -297.217 345.976 -297.024 346.685 -297.024 c
2562 347.101 -297.024 347.505 -297.074 347.896 -297.173 c
2563 348.286 -297.271 348.674 -297.425 349.060 -297.633 c
2564 349.060 -296.602 l
2565 348.664 -296.446 348.263 -296.324 347.856 -296.235 c
2566 347.450 -296.146 347.039 -296.102 346.622 -296.102 c
2567 345.580 -296.102 344.752 -296.407 344.138 -297.016 c
2568 343.523 -297.626 343.216 -298.451 343.216 -299.493 c
2569 343.216 -300.566 343.507 -301.417 344.091 -302.048 c
2570 344.674 -302.678 345.455 -302.993 346.435 -302.993 c
2571 347.320 -302.993 348.021 -302.709 348.536 -302.141 c
2572 349.052 -301.574 349.310 -300.800 349.310 -299.821 c
2573 h
2574 348.231 -300.149 m
2575 348.221 -300.732 348.054 -301.201 347.731 -301.555 c
2576 347.409 -301.909 346.981 -302.087 346.450 -302.087 c
2577 345.846 -302.087 345.364 -301.915 345.005 -301.571 c
2578 344.646 -301.227 344.440 -300.748 344.388 -300.133 c
2579 348.231 -300.149 l
2580 h
2581 356.536 -300.243 m
2582 356.536 -296.274 l
2583 355.458 -296.274 l
2584 355.458 -300.196 l
2585 355.458 -300.821 355.336 -301.287 355.091 -301.594 c
2586 354.846 -301.902 354.484 -302.055 354.005 -302.055 c
2587 353.422 -302.055 352.961 -301.870 352.622 -301.501 c
2588 352.284 -301.131 352.114 -300.623 352.114 -299.977 c
2589 352.114 -296.274 l
2590 351.036 -296.274 l
2591 351.036 -302.837 l
2592 352.114 -302.837 l
2593 352.114 -301.821 l
2594 352.375 -302.217 352.679 -302.511 353.028 -302.704 c
2595 353.377 -302.896 353.781 -302.993 354.239 -302.993 c
2596 354.989 -302.993 355.560 -302.761 355.950 -302.298 c
2597 356.341 -301.834 356.536 -301.149 356.536 -300.243 c
2598 h
2599 359.845 -297.758 m
2600 361.032 -297.758 l
2601 361.032 -296.274 l
2602 359.845 -296.274 l
2603 359.845 -297.758 l
2604 h
2605 361.001 -298.618 m
2606 359.876 -298.618 l
2607 359.876 -299.524 l
2608 359.876 -299.920 359.931 -300.245 360.040 -300.501 c
2609 360.149 -300.756 360.381 -301.050 360.735 -301.383 c
2610 361.251 -301.899 l
2611 361.480 -302.107 361.644 -302.305 361.743 -302.493 c
2612 361.842 -302.680 361.892 -302.868 361.892 -303.055 c
2613 361.892 -303.399 361.764 -303.680 361.509 -303.899 c
2614 361.254 -304.118 360.912 -304.227 360.485 -304.227 c
2615 360.183 -304.227 359.858 -304.157 359.509 -304.016 c
2616 359.160 -303.876 358.793 -303.675 358.407 -303.415 c
2617 358.407 -304.524 l
2618 358.772 -304.743 359.144 -304.907 359.524 -305.016 c
2619 359.905 -305.126 360.293 -305.180 360.688 -305.180 c
2620 361.407 -305.180 361.985 -304.990 362.423 -304.610 c
2621 362.860 -304.230 363.079 -303.732 363.079 -303.118 c
2622 363.079 -302.816 363.009 -302.532 362.868 -302.266 c
2623 362.728 -302.001 362.480 -301.701 362.126 -301.368 c
2624 361.610 -300.852 l
2625 361.433 -300.675 361.306 -300.534 361.228 -300.430 c
2626 361.149 -300.326 361.095 -300.222 361.063 -300.118 c
2627 361.043 -300.045 361.027 -299.949 361.017 -299.829 c
2628 361.006 -299.709 361.001 -299.550 361.001 -299.352 c
2629 361.001 -298.618 l
2630 h
2631 f
2632 2 J
2633 10.0000 M
2634 0 J
2635 1.45000 M
2636 newpath
2637 243.467 -286.856 m
2638 227.125 -281.679 l
2639 203.688 -277.223 l
2640 180.250 -275.738 l
2641 156.812 -277.223 l
2642 133.375 -281.679 l
2643 127.589 -283.512 l
2644 S
2645 newpath
2646 119.963 -285.928 m
2647 129.892 -277.537 l
2648 128.542 -283.210 l
2649 132.912 -287.070 l
2650 h
2651 f
2652 1.00000 1.00000 1.00000 RG
2653 newpath
2654 163.104 -284.723 m
2655 197.396 -284.723 l
2656 197.396 -266.754 l
2657 163.104 -266.754 l
2658 163.104 -284.723 l
2659 h
2660 f
2661 0.00000 0.00000 0.00000 RG
2662 newpath
2663 171.525 -280.053 m
2664 171.525 -278.896 l
2665 171.077 -279.105 170.653 -279.264 170.252 -279.373 c
2666 169.851 -279.482 169.468 -279.537 169.104 -279.537 c
2667 168.458 -279.537 167.960 -279.412 167.611 -279.162 c
2668 167.262 -278.912 167.088 -278.553 167.088 -278.084 c
2669 167.088 -277.699 167.202 -277.407 167.432 -277.209 c
2670 167.661 -277.011 168.104 -276.855 168.760 -276.740 c
2671 169.463 -276.584 l
2672 170.348 -276.417 171.002 -276.123 171.424 -275.701 c
2673 171.846 -275.279 172.057 -274.714 172.057 -274.006 c
2674 172.057 -273.152 171.773 -272.506 171.205 -272.068 c
2675 170.637 -271.631 169.801 -271.412 168.697 -271.412 c
2676 168.291 -271.412 167.854 -271.459 167.385 -271.553 c
2677 166.916 -271.646 166.432 -271.787 165.932 -271.975 c
2678 165.932 -273.193 l
2679 166.411 -272.922 166.882 -272.719 167.346 -272.584 c
2680 167.809 -272.449 168.260 -272.381 168.697 -272.381 c
2681 169.374 -272.381 169.898 -272.514 170.268 -272.779 c
2682 170.637 -273.045 170.822 -273.422 170.822 -273.912 c
2683 170.822 -274.339 170.689 -274.675 170.424 -274.920 c
2684 170.158 -275.165 169.723 -275.344 169.119 -275.459 c
2685 168.400 -275.600 l
2686 167.515 -275.777 166.877 -276.053 166.486 -276.428 c
2687 166.096 -276.803 165.900 -277.324 165.900 -277.990 c
2688 165.900 -278.771 166.171 -279.383 166.713 -279.826 c
2689 167.255 -280.269 168.005 -280.490 168.963 -280.490 c
2690 169.380 -280.490 169.799 -280.454 170.221 -280.381 c
2691 170.643 -280.308 171.077 -280.199 171.525 -280.053 c
2692 h
2693 172.689 -280.334 m
2694 173.971 -280.334 l
2695 176.393 -276.740 l
2696 178.799 -280.334 l
2697 180.080 -280.334 l
2698 176.986 -275.756 l
2699 176.986 -271.584 l
2700 175.799 -271.584 l
2701 175.799 -275.756 l
2702 172.689 -280.334 l
2703 h
2704 181.223 -280.334 m
2705 182.816 -280.334 l
2706 186.707 -273.021 l
2707 186.707 -280.334 l
2708 187.848 -280.334 l
2709 187.848 -271.584 l
2710 186.254 -271.584 l
2711 182.379 -278.896 l
2712 182.379 -271.584 l
2713 181.223 -271.584 l
2714 181.223 -280.334 l
2715 h
2716 191.324 -273.068 m
2717 192.512 -273.068 l
2718 192.512 -271.584 l
2719 191.324 -271.584 l
2720 191.324 -273.068 l
2721 h
2722 192.480 -273.928 m
2723 191.355 -273.928 l
2724 191.355 -274.834 l
2725 191.355 -275.230 191.410 -275.555 191.520 -275.811 c
2726 191.629 -276.066 191.861 -276.360 192.215 -276.693 c
2727 192.730 -277.209 l
2728 192.960 -277.417 193.124 -277.615 193.223 -277.803 c
2729 193.322 -277.990 193.371 -278.178 193.371 -278.365 c
2730 193.371 -278.709 193.243 -278.990 192.988 -279.209 c
2731 192.733 -279.428 192.392 -279.537 191.965 -279.537 c
2732 191.663 -279.537 191.337 -279.467 190.988 -279.326 c
2733 190.639 -279.186 190.272 -278.985 189.887 -278.725 c
2734 189.887 -279.834 l
2735 190.251 -280.053 190.624 -280.217 191.004 -280.326 c
2736 191.384 -280.436 191.772 -280.490 192.168 -280.490 c
2737 192.887 -280.490 193.465 -280.300 193.902 -279.920 c
2738 194.340 -279.540 194.559 -279.042 194.559 -278.428 c
2739 194.559 -278.126 194.488 -277.842 194.348 -277.576 c
2740 194.207 -277.311 193.960 -277.011 193.605 -276.678 c
2741 193.090 -276.162 l
2742 192.913 -275.985 192.785 -275.844 192.707 -275.740 c
2743 192.629 -275.636 192.574 -275.532 192.543 -275.428 c
2744 192.522 -275.355 192.507 -275.258 192.496 -275.139 c
2745 192.486 -275.019 192.480 -274.860 192.480 -274.662 c
2746 192.480 -273.928 l
2747 h
2748 f
2749 2 J
2750 10.0000 M
2751 0 J
2752 1.45000 M
2753 newpath
2754 119.963 -311.571 m
2755 133.375 -315.350 l
2756 156.812 -319.313 l
2757 180.250 -320.634 l
2758 203.688 -319.313 l
2759 227.125 -315.350 l
2760 235.767 -312.915 l
2761 S
2762 newpath
2763 243.467 -310.745 m
2764 233.273 -318.813 l
2765 234.805 -313.186 l
2766 230.561 -309.187 l
2767 h
2768 f
2769 1.00000 1.00000 1.00000 RG
2770 newpath
2771 164.202 -329.618 m
2772 196.298 -329.618 l
2773 196.298 -311.649 l
2774 164.202 -311.649 l
2775 164.202 -329.618 l
2776 h
2777 f
2778 0.00000 0.00000 0.00000 RG
2779 newpath
2780 171.530 -320.589 m
2781 171.780 -320.495 172.025 -320.308 172.265 -320.026 c
2782 172.504 -319.745 172.749 -319.360 172.999 -318.870 c
2783 174.202 -316.479 l
2784 172.921 -316.479 l
2785 171.812 -318.729 l
2786 171.520 -319.313 171.239 -319.701 170.968 -319.893 c
2787 170.697 -320.086 170.327 -320.183 169.858 -320.183 c
2788 168.562 -320.183 l
2789 168.562 -316.479 l
2790 167.374 -316.479 l
2791 167.374 -325.229 l
2792 170.046 -325.229 l
2793 171.046 -325.229 171.793 -325.021 172.288 -324.604 c
2794 172.783 -324.188 173.030 -323.558 173.030 -322.714 c
2795 173.030 -322.162 172.903 -321.703 172.647 -321.339 c
2796 172.392 -320.974 172.020 -320.724 171.530 -320.589 c
2797 h
2798 168.562 -324.261 m
2799 168.562 -321.151 l
2800 170.046 -321.151 l
2801 170.619 -321.151 171.051 -321.284 171.343 -321.550 c
2802 171.634 -321.815 171.780 -322.203 171.780 -322.714 c
2803 171.780 -323.224 171.634 -323.610 171.343 -323.870 c
2804 171.051 -324.130 170.619 -324.261 170.046 -324.261 c
2805 168.562 -324.261 l
2806 h
2807 180.962 -324.948 m
2808 180.962 -323.792 l
2809 180.514 -324.000 180.090 -324.159 179.688 -324.268 c
2810 179.287 -324.378 178.905 -324.433 178.540 -324.433 c
2811 177.894 -324.433 177.397 -324.308 177.048 -324.058 c
2812 176.699 -323.808 176.524 -323.448 176.524 -322.979 c
2813 176.524 -322.594 176.639 -322.302 176.868 -322.104 c
2814 177.097 -321.906 177.540 -321.750 178.196 -321.636 c
2815 178.899 -321.479 l
2816 179.785 -321.313 180.438 -321.018 180.860 -320.597 c
2817 181.282 -320.175 181.493 -319.610 181.493 -318.901 c
2818 181.493 -318.047 181.209 -317.401 180.642 -316.964 c
2819 180.074 -316.526 179.238 -316.308 178.134 -316.308 c
2820 177.728 -316.308 177.290 -316.354 176.821 -316.448 c
2821 176.353 -316.542 175.868 -316.683 175.368 -316.870 c
2822 175.368 -318.089 l
2823 175.847 -317.818 176.319 -317.615 176.782 -317.479 c
2824 177.246 -317.344 177.696 -317.276 178.134 -317.276 c
2825 178.811 -317.276 179.334 -317.409 179.704 -317.675 c
2826 180.074 -317.940 180.259 -318.318 180.259 -318.808 c
2827 180.259 -319.235 180.126 -319.571 179.860 -319.815 c
2828 179.595 -320.060 179.160 -320.240 178.556 -320.354 c
2829 177.837 -320.495 l
2830 176.951 -320.672 176.313 -320.948 175.923 -321.323 c
2831 175.532 -321.698 175.337 -322.219 175.337 -322.886 c
2832 175.337 -323.667 175.608 -324.279 176.149 -324.722 c
2833 176.691 -325.164 177.441 -325.386 178.399 -325.386 c
2834 178.816 -325.386 179.235 -325.349 179.657 -325.276 c
2835 180.079 -325.203 180.514 -325.094 180.962 -324.948 c
2836 h
2837 182.126 -325.229 m
2838 189.517 -325.229 l
2839 189.517 -324.229 l
2840 186.423 -324.229 l
2841 186.423 -316.479 l
2842 185.235 -316.479 l
2843 185.235 -324.229 l
2844 182.126 -324.229 l
2845 182.126 -325.229 l
2846 h
2847 191.300 -317.964 m
2848 192.487 -317.964 l
2849 192.487 -316.479 l
2850 191.300 -316.479 l
2851 191.300 -317.964 l
2852 h
2853 191.300 -325.229 m
2854 192.487 -325.229 l
2855 192.487 -321.386 l
2856 192.378 -319.292 l
2857 191.425 -319.292 l
2858 191.300 -321.386 l
2859 191.300 -325.229 l
2860 h
2861 f
2862 2 J
2863 10.0000 M
2864 0 J
2865 1.45000 M
2866 newpath
2867 96.6920 -314.500 m
2868 98.2188 -316.747 l
2869 109.938 -331.694 l
2870 121.656 -344.342 l
2871 133.375 -354.690 l
2872 145.094 -362.739 l
2873 156.812 -368.488 l
2874 168.531 -371.937 l
2875 180.250 -373.087 l
2876 191.969 -371.937 l
2877 203.688 -368.488 l
2878 215.406 -362.739 l
2879 227.125 -354.690 l
2880 238.844 -344.342 l
2881 250.562 -331.694 l
2882 259.019 -320.908 l
2883 259.075 -320.825 l
2884 S
2885 newpath
2886 263.868 -314.420 m
2887 260.682 -327.024 l
2888 258.476 -321.626 l
2889 252.675 -321.033 l
2890 h
2891 f
2892 1.00000 1.00000 1.00000 RG
2893 newpath
2894 148.663 -382.072 m
2895 211.837 -382.072 l
2896 211.837 -364.103 l
2897 148.663 -364.103 l
2898 148.663 -382.072 l
2899 h
2900 f
2901 0.00000 0.00000 0.00000 RG
2902 newpath
2903 150.632 -377.683 m
2904 158.022 -377.683 l
2905 158.022 -376.683 l
2906 154.929 -376.683 l
2907 154.929 -368.933 l
2908 153.741 -368.933 l
2909 153.741 -376.683 l
2910 150.632 -376.683 l
2911 150.632 -377.683 l
2912 h
2913 159.165 -377.683 m
2914 160.353 -377.683 l
2915 160.353 -368.933 l
2916 159.165 -368.933 l
2917 159.165 -377.683 l
2918 h
2919 162.704 -377.683 m
2920 164.470 -377.683 l
2921 166.704 -371.730 l
2922 168.954 -377.683 l
2923 170.720 -377.683 l
2924 170.720 -368.933 l
2925 169.563 -368.933 l
2926 169.563 -376.620 l
2927 167.298 -370.620 l
2928 166.110 -370.620 l
2929 163.860 -376.620 l
2930 163.860 -368.933 l
2931 162.704 -368.933 l
2932 162.704 -377.683 l
2933 h
2934 173.058 -377.683 m
2935 178.589 -377.683 l
2936 178.589 -376.683 l
2937 174.245 -376.683 l
2938 174.245 -374.089 l
2939 178.417 -374.089 l
2940 178.417 -373.105 l
2941 174.245 -373.105 l
2942 174.245 -369.933 l
2943 178.698 -369.933 l
2944 178.698 -368.933 l
2945 173.058 -368.933 l
2946 173.058 -377.683 l
2947 h
2948 184.202 -376.886 m
2949 183.338 -376.886 182.653 -376.566 182.147 -375.925 c
2950 181.642 -375.284 181.390 -374.407 181.390 -373.292 c
2951 181.390 -372.199 181.642 -371.331 182.147 -370.691 c
2952 182.653 -370.050 183.338 -369.730 184.202 -369.730 c
2953 185.056 -369.730 185.736 -370.050 186.241 -370.691 c
2954 186.746 -371.331 186.999 -372.199 186.999 -373.292 c
2955 186.999 -374.407 186.746 -375.284 186.241 -375.925 c
2956 185.736 -376.566 185.056 -376.886 184.202 -376.886 c
2957 h
2958 184.202 -377.839 m
2959 185.421 -377.839 186.397 -377.428 187.132 -376.605 c
2960 187.866 -375.782 188.233 -374.678 188.233 -373.292 c
2961 188.233 -371.917 187.866 -370.818 187.132 -369.995 c
2962 186.397 -369.172 185.421 -368.761 184.202 -368.761 c
2963 182.973 -368.761 181.989 -369.172 181.249 -369.995 c
2964 180.509 -370.818 180.140 -371.917 180.140 -373.292 c
2965 180.140 -374.678 180.509 -375.782 181.249 -376.605 c
2966 181.989 -377.428 182.973 -377.839 184.202 -377.839 c
2967 h
2968 189.960 -377.683 m
2969 191.147 -377.683 l
2970 191.147 -372.370 l
2971 191.147 -371.433 191.317 -370.758 191.655 -370.347 c
2972 191.994 -369.935 192.543 -369.730 193.304 -369.730 c
2973 194.064 -369.730 194.614 -369.935 194.952 -370.347 c
2974 195.291 -370.758 195.460 -371.433 195.460 -372.370 c
2975 195.460 -377.683 l
2976 196.647 -377.683 l
2977 196.647 -372.214 l
2978 196.647 -371.079 196.366 -370.219 195.804 -369.636 c
2979 195.241 -369.053 194.408 -368.761 193.304 -368.761 c
2980 192.200 -368.761 191.366 -369.053 190.804 -369.636 c
2981 190.241 -370.219 189.960 -371.079 189.960 -372.214 c
2982 189.960 -377.683 l
2983 h
2984 197.665 -377.683 m
2985 205.056 -377.683 l
2986 205.056 -376.683 l
2987 201.962 -376.683 l
2988 201.962 -368.933 l
2989 200.774 -368.933 l
2990 200.774 -376.683 l
2991 197.665 -376.683 l
2992 197.665 -377.683 l
2993 h
2994 206.839 -370.417 m
2995 208.026 -370.417 l
2996 208.026 -368.933 l
2997 206.839 -368.933 l
2998 206.839 -370.417 l
2999 h
3000 206.839 -377.683 m
3001 208.026 -377.683 l
3002 208.026 -373.839 l
3003 207.917 -371.745 l
3004 206.964 -371.745 l
3005 206.839 -373.839 l
3006 206.839 -377.683 l
3007 h
3008 f
3009 2 J
3010 10.0000 M
3011 0 J
3012 1.45000 M
3013 newpath
3014 96.6551 -284.500 m
3015 104.780 -272.498 l
3016 124.766 -247.604 l
3017 146.458 -224.818 l
3018 169.855 -204.139 l
3019 194.958 -185.568 l
3020 221.766 -169.104 l
3021 237.649 -161.108 l
3022 S
3023 newpath
3024 244.795 -157.510 m
3025 236.325 -167.372 l
3026 236.756 -161.557 l
3027 231.828 -158.441 l
3028 h
3029 f
3030 1.00000 1.00000 1.00000 RG
3031 newpath
3032 141.259 -213.123 m
3033 198.451 -213.123 l
3034 198.451 -195.155 l
3035 141.259 -195.155 l
3036 141.259 -213.123 l
3037 h
3038 f
3039 0.00000 0.00000 0.00000 RG
3040 newpath
3041 149.681 -208.454 m
3042 149.681 -207.297 l
3043 149.233 -207.506 148.809 -207.664 148.408 -207.774 c
3044 148.007 -207.883 147.624 -207.938 147.259 -207.938 c
3045 146.613 -207.938 146.116 -207.813 145.767 -207.563 c
3046 145.418 -207.313 145.243 -206.954 145.243 -206.485 c
3047 145.243 -206.099 145.358 -205.808 145.587 -205.610 c
3048 145.816 -205.412 146.259 -205.256 146.915 -205.141 c
3049 147.618 -204.985 l
3050 148.504 -204.818 149.158 -204.524 149.579 -204.102 c
3051 150.001 -203.680 150.212 -203.115 150.212 -202.407 c
3052 150.212 -201.552 149.928 -200.907 149.361 -200.469 c
3053 148.793 -200.032 147.957 -199.813 146.853 -199.813 c
3054 146.447 -199.813 146.009 -199.860 145.540 -199.954 c
3055 145.072 -200.047 144.587 -200.188 144.087 -200.375 c
3056 144.087 -201.594 l
3057 144.566 -201.323 145.038 -201.120 145.501 -200.985 c
3058 145.965 -200.849 146.415 -200.782 146.853 -200.782 c
3059 147.530 -200.782 148.053 -200.914 148.423 -201.180 c
3060 148.793 -201.446 148.978 -201.823 148.978 -202.313 c
3061 148.978 -202.740 148.845 -203.076 148.579 -203.321 c
3062 148.314 -203.566 147.879 -203.745 147.275 -203.860 c
3063 146.556 -204.000 l
3064 145.671 -204.177 145.033 -204.454 144.642 -204.829 c
3065 144.251 -205.204 144.056 -205.724 144.056 -206.391 c
3066 144.056 -207.172 144.327 -207.784 144.868 -208.227 c
3067 145.410 -208.670 146.160 -208.891 147.118 -208.891 c
3068 147.535 -208.891 147.954 -208.855 148.376 -208.782 c
3069 148.798 -208.709 149.233 -208.599 149.681 -208.454 c
3070 h
3071 150.845 -208.735 m
3072 152.126 -208.735 l
3073 154.548 -205.141 l
3074 156.954 -208.735 l
3075 158.236 -208.735 l
3076 155.142 -204.157 l
3077 155.142 -199.985 l
3078 153.954 -199.985 l
3079 153.954 -204.157 l
3080 150.845 -208.735 l
3081 h
3082 159.378 -208.735 m
3083 160.972 -208.735 l
3084 164.863 -201.422 l
3085 164.863 -208.735 l
3086 166.003 -208.735 l
3087 166.003 -199.985 l
3088 164.410 -199.985 l
3089 160.535 -207.297 l
3090 160.535 -199.985 l
3091 159.378 -199.985 l
3092 159.378 -208.735 l
3093 h
3094 171.292 -207.563 m
3095 169.683 -203.219 l
3096 172.902 -203.219 l
3097 171.292 -207.563 l
3098 h
3099 170.620 -208.735 m
3100 171.964 -208.735 l
3101 175.292 -199.985 l
3102 174.058 -199.985 l
3103 173.261 -202.235 l
3104 169.324 -202.235 l
3105 168.527 -199.985 l
3106 167.277 -199.985 l
3107 170.620 -208.735 l
3108 h
3109 183.126 -208.063 m
3110 183.126 -206.813 l
3111 182.720 -207.188 182.293 -207.467 181.845 -207.649 c
3112 181.397 -207.831 180.918 -207.922 180.408 -207.922 c
3113 179.408 -207.922 178.642 -207.615 178.111 -207.000 c
3114 177.579 -206.386 177.314 -205.500 177.314 -204.344 c
3115 177.314 -203.198 177.579 -202.318 178.111 -201.704 c
3116 178.642 -201.089 179.408 -200.782 180.408 -200.782 c
3117 180.918 -200.782 181.397 -200.875 181.845 -201.063 c
3118 182.293 -201.250 182.720 -201.526 183.126 -201.891 c
3119 183.126 -200.657 l
3120 182.710 -200.375 182.270 -200.164 181.806 -200.024 c
3121 181.342 -199.883 180.855 -199.813 180.345 -199.813 c
3122 179.012 -199.813 177.965 -200.219 177.204 -201.032 c
3123 176.444 -201.844 176.064 -202.948 176.064 -204.344 c
3124 176.064 -205.750 176.444 -206.860 177.204 -207.672 c
3125 177.965 -208.485 179.012 -208.891 180.345 -208.891 c
3126 180.866 -208.891 181.358 -208.821 181.822 -208.680 c
3127 182.285 -208.539 182.720 -208.334 183.126 -208.063 c
3128 h
3129 184.943 -208.735 m
3130 186.130 -208.735 l
3131 186.130 -205.032 l
3132 190.052 -208.735 l
3133 191.583 -208.735 l
3134 187.240 -204.657 l
3135 191.896 -199.985 l
3136 190.333 -199.985 l
3137 186.130 -204.204 l
3138 186.130 -199.985 l
3139 184.943 -199.985 l
3140 184.943 -208.735 l
3141 h
3142 193.452 -201.469 m
3143 194.640 -201.469 l
3144 194.640 -199.985 l
3145 193.452 -199.985 l
3146 193.452 -201.469 l
3147 h
3148 193.452 -208.735 m
3149 194.640 -208.735 l
3150 194.640 -204.891 l
3151 194.531 -202.797 l
3152 193.577 -202.797 l
3153 193.452 -204.891 l
3154 193.452 -208.735 l
3155 h
3156 f
3157 2 J
3158 10.0000 M
3159 0 J
3160 1.45000 M
3161 newpath
3162 281.110 -127.500 m
3163 283.064 -79.4934 l
3164 S
3165 newpath
3166 283.390 -71.5000 m
3167 287.897 -83.6934 l
3168 283.024 -80.4926 l
3169 277.906 -83.2868 l
3170 h
3171 f
3172 1.00000 1.00000 1.00000 RG
3173 newpath
3174 264.552 -115.492 m
3175 299.378 -115.492 l
3176 299.378 -97.5234 l
3177 264.552 -97.5234 l
3178 264.552 -115.492 l
3179 h
3180 f
3181 0.00000 0.00000 0.00000 RG
3182 newpath
3183 270.661 -109.932 m
3184 269.052 -105.588 l
3185 272.270 -105.588 l
3186 270.661 -109.932 l
3187 h
3188 269.989 -111.104 m
3189 271.333 -111.104 l
3190 274.661 -102.354 l
3191 273.427 -102.354 l
3192 272.630 -104.604 l
3193 268.692 -104.604 l
3194 267.895 -102.354 l
3195 266.645 -102.354 l
3196 269.989 -111.104 l
3197 h
3198 282.495 -110.432 m
3199 282.495 -109.182 l
3200 282.089 -109.557 281.662 -109.835 281.214 -110.018 c
3201 280.766 -110.200 280.287 -110.291 279.776 -110.291 c
3202 278.776 -110.291 278.011 -109.984 277.479 -109.369 c
3203 276.948 -108.755 276.683 -107.869 276.683 -106.713 c
3204 276.683 -105.567 276.948 -104.687 277.479 -104.072 c
3205 278.011 -103.458 278.776 -103.150 279.776 -103.150 c
3206 280.287 -103.150 280.766 -103.244 281.214 -103.432 c
3207 281.662 -103.619 282.089 -103.895 282.495 -104.260 c
3208 282.495 -103.025 l
3209 282.078 -102.744 281.638 -102.533 281.175 -102.393 c
3210 280.711 -102.252 280.224 -102.182 279.714 -102.182 c
3211 278.381 -102.182 277.334 -102.588 276.573 -103.400 c
3212 275.813 -104.213 275.433 -105.317 275.433 -106.713 c
3213 275.433 -108.119 275.813 -109.229 276.573 -110.041 c
3214 277.334 -110.854 278.381 -111.260 279.714 -111.260 c
3215 280.235 -111.260 280.727 -111.189 281.190 -111.049 c
3216 281.654 -110.908 282.089 -110.702 282.495 -110.432 c
3217 h
3218 284.311 -111.104 m
3219 285.499 -111.104 l
3220 285.499 -107.400 l
3221 289.421 -111.104 l
3222 290.952 -111.104 l
3223 286.608 -107.025 l
3224 291.265 -102.354 l
3225 289.702 -102.354 l
3226 285.499 -106.572 l
3227 285.499 -102.354 l
3228 284.311 -102.354 l
3229 284.311 -111.104 l
3230 h
3231 293.306 -103.838 m
3232 294.493 -103.838 l
3233 294.493 -102.354 l
3234 293.306 -102.354 l
3235 293.306 -103.838 l
3236 h
3237 294.462 -104.697 m
3238 293.337 -104.697 l
3239 293.337 -105.604 l
3240 293.337 -105.999 293.392 -106.325 293.501 -106.580 c
3241 293.610 -106.835 293.842 -107.130 294.196 -107.463 c
3242 294.712 -107.979 l
3243 294.941 -108.187 295.105 -108.385 295.204 -108.572 c
3244 295.303 -108.760 295.353 -108.947 295.353 -109.135 c
3245 295.353 -109.479 295.225 -109.760 294.970 -109.979 c
3246 294.714 -110.197 294.373 -110.307 293.946 -110.307 c
3247 293.644 -110.307 293.319 -110.236 292.970 -110.096 c
3248 292.621 -109.955 292.254 -109.755 291.868 -109.494 c
3249 291.868 -110.604 l
3250 292.233 -110.822 292.605 -110.986 292.985 -111.096 c
3251 293.366 -111.205 293.754 -111.260 294.149 -111.260 c
3252 294.868 -111.260 295.446 -111.070 295.884 -110.689 c
3253 296.321 -110.309 296.540 -109.812 296.540 -109.197 c
3254 296.540 -108.895 296.470 -108.611 296.329 -108.346 c
3255 296.188 -108.080 295.941 -107.781 295.587 -107.447 c
3256 295.071 -106.932 l
3257 294.894 -106.755 294.767 -106.614 294.688 -106.510 c
3258 294.610 -106.406 294.556 -106.301 294.524 -106.197 c
3259 294.504 -106.124 294.488 -106.028 294.478 -105.908 c
3260 294.467 -105.788 294.462 -105.630 294.462 -105.432 c
3261 294.462 -104.697 l
3262 h
3263 f
3264 2 J
3265 10.0000 M
3266 0 J
3267 1.45000 M
3268 newpath
3269 285.266 125.000 m
3270 287.392 150.179 l
3271 287.438 167.500 l
3272 S
3273 newpath
3274 287.460 175.500 m
3275 292.427 163.487 l
3276 287.435 166.500 l
3277 282.427 163.513 l
3278 h
3279 f
3280 1.00000 1.00000 1.00000 RG
3281 newpath
3282 270.758 141.194 m
3283 304.025 141.194 l
3284 304.025 159.163 l
3285 270.758 159.163 l
3286 270.758 141.194 l
3287 h
3288 f
3289 0.00000 0.00000 0.00000 RG
3290 newpath
3291 276.867 146.755 m
3292 275.258 151.099 l
3293 278.477 151.099 l
3294 276.867 146.755 l
3295 h
3296 276.195 145.583 m
3297 277.539 145.583 l
3298 280.867 154.333 l
3299 279.633 154.333 l
3300 278.836 152.083 l
3301 274.898 152.083 l
3302 274.102 154.333 l
3303 272.852 154.333 l
3304 276.195 145.583 l
3305 h
3306 288.701 146.255 m
3307 288.701 147.505 l
3308 288.295 147.130 287.868 146.851 287.420 146.669 c
3309 286.972 146.487 286.493 146.395 285.982 146.395 c
3310 284.982 146.395 284.217 146.703 283.685 147.317 c
3311 283.154 147.932 282.889 148.817 282.889 149.974 c
3312 282.889 151.119 283.154 152.000 283.685 152.614 c
3313 284.217 153.229 284.982 153.536 285.982 153.536 c
3314 286.493 153.536 286.972 153.442 287.420 153.255 c
3315 287.868 153.067 288.295 152.791 288.701 152.427 c
3316 288.701 153.661 l
3317 288.284 153.942 287.844 154.153 287.381 154.294 c
3318 286.917 154.434 286.430 154.505 285.920 154.505 c
3319 284.587 154.505 283.540 154.099 282.779 153.286 c
3320 282.019 152.474 281.639 151.369 281.639 149.974 c
3321 281.639 148.567 282.019 147.458 282.779 146.645 c
3322 283.540 145.833 284.587 145.427 285.920 145.427 c
3323 286.441 145.427 286.933 145.497 287.396 145.638 c
3324 287.860 145.778 288.295 145.984 288.701 146.255 c
3325 h
3326 290.518 145.583 m
3327 291.705 145.583 l
3328 291.705 149.286 l
3329 295.627 145.583 l
3330 297.158 145.583 l
3331 292.814 149.661 l
3332 297.471 154.333 l
3333 295.908 154.333 l
3334 291.705 150.114 l
3335 291.705 154.333 l
3336 290.518 154.333 l
3337 290.518 145.583 l
3338 h
3339 299.027 152.849 m
3340 300.215 152.849 l
3341 300.215 154.333 l
3342 299.027 154.333 l
3343 299.027 152.849 l
3344 h
3345 299.027 145.583 m
3346 300.215 145.583 l
3347 300.215 149.427 l
3348 300.105 151.520 l
3349 299.152 151.520 l
3350 299.027 149.427 l
3351 299.027 145.583 l
3352 h
3353 f
3354 2 J
3355 10.0000 M
3356 0 J
3357 1.45000 M
3358 newpath
3359 297.838 175.500 m
3360 309.033 159.259 l
3361 327.582 128.099 l
3362 343.147 97.0221 l
3363 355.729 66.0272 l
3364 365.328 35.1145 l
3365 371.943 4.28404 l
3366 375.574 -26.4643 l
3367 376.222 -57.1304 l
3368 373.887 -87.7143 l
3369 368.568 -118.216 l
3370 360.265 -148.635 l
3371 348.979 -178.973 l
3372 334.710 -209.228 l
3373 317.457 -239.401 l
3374 297.220 -269.491 l
3375 290.503 -278.173 l
3376 S
3377 newpath
3378 285.607 -284.500 m
3379 288.996 -271.950 l
3380 291.114 -277.382 l
3381 296.905 -278.069 l
3382 h
3383 f
3384 1.00000 1.00000 1.00000 RG
3385 newpath
3386 353.055 -66.1147 m
3387 399.389 -66.1147 l
3388 399.389 -48.1460 l
3389 353.055 -48.1460 l
3390 353.055 -66.1147 l
3391 h
3392 f
3393 0.00000 0.00000 0.00000 RG
3394 newpath
3395 356.227 -61.7261 m
3396 357.415 -61.7261 l
3397 357.415 -53.9761 l
3398 361.680 -53.9761 l
3399 361.680 -52.9761 l
3400 356.227 -52.9761 l
3401 356.227 -61.7261 l
3402 h
3403 362.866 -59.5386 m
3404 363.944 -59.5386 l
3405 363.944 -52.9761 l
3406 362.866 -52.9761 l
3407 362.866 -59.5386 l
3408 h
3409 362.866 -62.1011 m
3410 363.944 -62.1011 l
3411 363.944 -60.7261 l
3412 362.866 -60.7261 l
3413 362.866 -62.1011 l
3414 h
3415 370.387 -59.3511 m
3416 370.387 -58.3198 l
3417 370.085 -58.4761 369.770 -58.5932 369.442 -58.6714 c
3418 369.114 -58.7495 368.773 -58.7886 368.419 -58.7886 c
3419 367.887 -58.7886 367.486 -58.7078 367.215 -58.5464 c
3420 366.945 -58.3849 366.809 -58.1375 366.809 -57.8042 c
3421 366.809 -57.5542 366.905 -57.3589 367.098 -57.2182 c
3422 367.291 -57.0776 367.679 -56.9448 368.262 -56.8198 c
3423 368.622 -56.7261 l
3424 369.392 -56.5698 369.939 -56.3406 370.262 -56.0386 c
3425 370.585 -55.7365 370.747 -55.3198 370.747 -54.7886 c
3426 370.747 -54.1740 370.504 -53.6896 370.020 -53.3354 c
3427 369.536 -52.9813 368.872 -52.8042 368.028 -52.8042 c
3428 367.674 -52.8042 367.307 -52.8380 366.926 -52.9057 c
3429 366.546 -52.9735 366.148 -53.0750 365.731 -53.2104 c
3430 365.731 -54.3354 l
3431 366.127 -54.1271 366.517 -53.9709 366.903 -53.8667 c
3432 367.288 -53.7625 367.674 -53.7104 368.059 -53.7104 c
3433 368.559 -53.7104 368.947 -53.7964 369.223 -53.9682 c
3434 369.499 -54.1401 369.637 -54.3875 369.637 -54.7104 c
3435 369.637 -55.0021 369.538 -55.2261 369.340 -55.3823 c
3436 369.142 -55.5386 368.710 -55.6896 368.044 -55.8354 c
3437 367.669 -55.9136 l
3438 367.002 -56.0594 366.520 -56.2781 366.223 -56.5698 c
3439 365.926 -56.8615 365.778 -57.2573 365.778 -57.7573 c
3440 365.778 -58.3823 365.997 -58.8615 366.434 -59.1948 c
3441 366.872 -59.5281 367.491 -59.6948 368.294 -59.6948 c
3442 368.689 -59.6948 369.064 -59.6662 369.419 -59.6089 c
3443 369.773 -59.5516 370.096 -59.4656 370.387 -59.3511 c
3444 h
3445 373.530 -61.3979 m
3446 373.530 -59.5386 l
3447 375.749 -59.5386 l
3448 375.749 -58.6948 l
3449 373.530 -58.6948 l
3450 373.530 -55.1323 l
3451 373.530 -54.6011 373.603 -54.2599 373.749 -54.1089 c
3452 373.894 -53.9578 374.191 -53.8823 374.639 -53.8823 c
3453 375.749 -53.8823 l
3454 375.749 -52.9761 l
3455 374.639 -52.9761 l
3456 373.806 -52.9761 373.230 -53.1323 372.913 -53.4448 c
3457 372.595 -53.7573 372.436 -54.3198 372.436 -55.1323 c
3458 372.436 -58.6948 l
3459 371.655 -58.6948 l
3460 371.655 -59.5386 l
3461 372.436 -59.5386 l
3462 372.436 -61.3979 l
3463 373.530 -61.3979 l
3464 h
3465 382.782 -56.5229 m
3466 382.782 -56.0073 l
3467 377.813 -56.0073 l
3468 377.865 -55.2573 378.092 -54.6896 378.493 -54.3042 c
3469 378.894 -53.9188 379.448 -53.7261 380.157 -53.7261 c
3470 380.573 -53.7261 380.977 -53.7755 381.368 -53.8745 c
3471 381.758 -53.9735 382.146 -54.1271 382.532 -54.3354 c
3472 382.532 -53.3042 l
3473 382.136 -53.1479 381.735 -53.0255 381.329 -52.9370 c
3474 380.922 -52.8485 380.511 -52.8042 380.094 -52.8042 c
3475 379.053 -52.8042 378.225 -53.1089 377.610 -53.7182 c
3476 376.995 -54.3276 376.688 -55.1531 376.688 -56.1948 c
3477 376.688 -57.2677 376.980 -58.1193 377.563 -58.7495 c
3478 378.146 -59.3797 378.928 -59.6948 379.907 -59.6948 c
3479 380.792 -59.6948 381.493 -59.4110 382.008 -58.8432 c
3480 382.524 -58.2755 382.782 -57.5021 382.782 -56.5229 c
3481 h
3482 381.704 -56.8511 m
3483 381.693 -57.4344 381.527 -57.9031 381.204 -58.2573 c
3484 380.881 -58.6115 380.454 -58.7886 379.922 -58.7886 c
3485 379.318 -58.7886 378.836 -58.6167 378.477 -58.2729 c
3486 378.118 -57.9292 377.912 -57.4500 377.860 -56.8354 c
3487 381.704 -56.8511 l
3488 h
3489 390.008 -56.9448 m
3490 390.008 -52.9761 l
3491 388.930 -52.9761 l
3492 388.930 -56.8979 l
3493 388.930 -57.5229 388.808 -57.9891 388.563 -58.2964 c
3494 388.318 -58.6037 387.956 -58.7573 387.477 -58.7573 c
3495 386.894 -58.7573 386.433 -58.5724 386.094 -58.2026 c
3496 385.756 -57.8328 385.586 -57.3250 385.586 -56.6792 c
3497 385.586 -52.9761 l
3498 384.508 -52.9761 l
3499 384.508 -59.5386 l
3500 385.586 -59.5386 l
3501 385.586 -58.5229 l
3502 385.847 -58.9188 386.152 -59.2130 386.501 -59.4057 c
3503 386.850 -59.5985 387.253 -59.6948 387.711 -59.6948 c
3504 388.461 -59.6948 389.032 -59.4630 389.422 -58.9995 c
3505 389.813 -58.5360 390.008 -57.8511 390.008 -56.9448 c
3506 h
3507 393.317 -54.4604 m
3508 394.504 -54.4604 l
3509 394.504 -52.9761 l
3510 393.317 -52.9761 l
3511 393.317 -54.4604 l
3512 h
3513 394.473 -55.3198 m
3514 393.348 -55.3198 l
3515 393.348 -56.2261 l
3516 393.348 -56.6219 393.403 -56.9474 393.512 -57.2026 c
3517 393.622 -57.4578 393.853 -57.7521 394.208 -58.0854 c
3518 394.723 -58.6011 l
3519 394.952 -58.8094 395.116 -59.0073 395.215 -59.1948 c
3520 395.314 -59.3823 395.364 -59.5698 395.364 -59.7573 c
3521 395.364 -60.1011 395.236 -60.3823 394.981 -60.6011 c
3522 394.726 -60.8198 394.385 -60.9292 393.958 -60.9292 c
3523 393.655 -60.9292 393.330 -60.8589 392.981 -60.7182 c
3524 392.632 -60.5776 392.265 -60.3771 391.879 -60.1167 c
3525 391.879 -61.2261 l
3526 392.244 -61.4448 392.616 -61.6089 392.997 -61.7182 c
3527 393.377 -61.8276 393.765 -61.8823 394.161 -61.8823 c
3528 394.879 -61.8823 395.458 -61.6922 395.895 -61.3120 c
3529 396.333 -60.9318 396.551 -60.4344 396.551 -59.8198 c
3530 396.551 -59.5177 396.481 -59.2339 396.340 -58.9682 c
3531 396.200 -58.7026 395.952 -58.4031 395.598 -58.0698 c
3532 395.083 -57.5542 l
3533 394.905 -57.3771 394.778 -57.2365 394.700 -57.1323 c
3534 394.622 -57.0281 394.567 -56.9240 394.536 -56.8198 c
3535 394.515 -56.7469 394.499 -56.6505 394.489 -56.5307 c
3536 394.478 -56.4110 394.473 -56.2521 394.473 -56.0542 c
3537 394.473 -55.3198 l
3538 h
3539 f
3540 2 J
3541 10.0000 M
3542 0 J
3543 1.45000 M
3544 newpath
3545 281.408 -157.500 m
3546 281.597 -160.622 l
3547 280.879 -178.580 l
3548 279.094 -191.123 l
3549 279.070 -191.220 l
3550 S
3551 newpath
3552 277.682 -199.098 m
3553 274.840 -186.413 l
3554 279.244 -190.235 l
3555 284.688 -188.148 l
3556 h
3557 f
3558 1.00000 1.00000 1.00000 RG
3559 newpath
3560 264.052 -187.564 m
3561 297.706 -187.564 l
3562 297.706 -169.596 l
3563 264.052 -169.596 l
3564 264.052 -187.564 l
3565 h
3566 f
3567 0.00000 0.00000 0.00000 RG
3568 newpath
3569 271.380 -178.535 m
3570 271.630 -178.441 271.875 -178.254 272.115 -177.973 c
3571 272.354 -177.691 272.599 -177.306 272.849 -176.816 c
3572 274.052 -174.426 l
3573 272.771 -174.426 l
3574 271.661 -176.676 l
3575 271.370 -177.259 271.089 -177.647 270.818 -177.840 c
3576 270.547 -178.032 270.177 -178.129 269.708 -178.129 c
3577 268.411 -178.129 l
3578 268.411 -174.426 l
3579 267.224 -174.426 l
3580 267.224 -183.176 l
3581 269.896 -183.176 l
3582 270.896 -183.176 271.643 -182.967 272.138 -182.551 c
3583 272.633 -182.134 272.880 -181.504 272.880 -180.660 c
3584 272.880 -180.108 272.753 -179.650 272.497 -179.285 c
3585 272.242 -178.920 271.870 -178.670 271.380 -178.535 c
3586 h
3587 268.411 -182.207 m
3588 268.411 -179.098 l
3589 269.896 -179.098 l
3590 270.469 -179.098 270.901 -179.230 271.193 -179.496 c
3591 271.484 -179.762 271.630 -180.150 271.630 -180.660 c
3592 271.630 -181.170 271.484 -181.556 271.193 -181.816 c
3593 270.901 -182.077 270.469 -182.207 269.896 -182.207 c
3594 268.411 -182.207 l
3595 h
3596 280.812 -182.894 m
3597 280.812 -181.738 l
3598 280.364 -181.946 279.939 -182.105 279.538 -182.215 c
3599 279.137 -182.324 278.755 -182.379 278.390 -182.379 c
3600 277.744 -182.379 277.247 -182.254 276.898 -182.004 c
3601 276.549 -181.754 276.374 -181.394 276.374 -180.926 c
3602 276.374 -180.540 276.489 -180.249 276.718 -180.051 c
3603 276.947 -179.853 277.390 -179.696 278.046 -179.582 c
3604 278.749 -179.426 l
3605 279.635 -179.259 280.288 -178.965 280.710 -178.543 c
3606 281.132 -178.121 281.343 -177.556 281.343 -176.848 c
3607 281.343 -175.993 281.059 -175.348 280.492 -174.910 c
3608 279.924 -174.473 279.088 -174.254 277.984 -174.254 c
3609 277.577 -174.254 277.140 -174.301 276.671 -174.394 c
3610 276.202 -174.488 275.718 -174.629 275.218 -174.816 c
3611 275.218 -176.035 l
3612 275.697 -175.764 276.169 -175.561 276.632 -175.426 c
3613 277.096 -175.290 277.546 -175.223 277.984 -175.223 c
3614 278.661 -175.223 279.184 -175.355 279.554 -175.621 c
3615 279.924 -175.887 280.109 -176.264 280.109 -176.754 c
3616 280.109 -177.181 279.976 -177.517 279.710 -177.762 c
3617 279.445 -178.006 279.010 -178.186 278.406 -178.301 c
3618 277.687 -178.441 l
3619 276.801 -178.618 276.163 -178.894 275.773 -179.269 c
3620 275.382 -179.644 275.187 -180.165 275.187 -180.832 c
3621 275.187 -181.613 275.458 -182.225 275.999 -182.668 c
3622 276.541 -183.111 277.291 -183.332 278.249 -183.332 c
3623 278.666 -183.332 279.085 -183.295 279.507 -183.223 c
3624 279.929 -183.150 280.364 -183.040 280.812 -182.894 c
3625 h
3626 281.976 -183.176 m
3627 289.367 -183.176 l
3628 289.367 -182.176 l
3629 286.273 -182.176 l
3630 286.273 -174.426 l
3631 285.085 -174.426 l
3632 285.085 -182.176 l
3633 281.976 -182.176 l
3634 281.976 -183.176 l
3635 h
3636 291.634 -175.910 m
3637 292.822 -175.910 l
3638 292.822 -174.426 l
3639 291.634 -174.426 l
3640 291.634 -175.910 l
3641 h
3642 292.790 -176.769 m
3643 291.665 -176.769 l
3644 291.665 -177.676 l
3645 291.665 -178.071 291.720 -178.397 291.829 -178.652 c
3646 291.939 -178.907 292.171 -179.202 292.525 -179.535 c
3647 293.040 -180.051 l
3648 293.270 -180.259 293.434 -180.457 293.533 -180.644 c
3649 293.631 -180.832 293.681 -181.019 293.681 -181.207 c
3650 293.681 -181.551 293.553 -181.832 293.298 -182.051 c
3651 293.043 -182.269 292.702 -182.379 292.275 -182.379 c
3652 291.973 -182.379 291.647 -182.308 291.298 -182.168 c
3653 290.949 -182.027 290.582 -181.827 290.197 -181.566 c
3654 290.197 -182.676 l
3655 290.561 -182.894 290.934 -183.058 291.314 -183.168 c
3656 291.694 -183.277 292.082 -183.332 292.478 -183.332 c
3657 293.197 -183.332 293.775 -183.142 294.212 -182.762 c
3658 294.650 -182.381 294.868 -181.884 294.868 -181.269 c
3659 294.868 -180.967 294.798 -180.683 294.658 -180.418 c
3660 294.517 -180.152 294.270 -179.853 293.915 -179.519 c
3661 293.400 -179.004 l
3662 293.223 -178.827 293.095 -178.686 293.017 -178.582 c
3663 292.939 -178.478 292.884 -178.374 292.853 -178.269 c
3664 292.832 -178.196 292.816 -178.100 292.806 -177.980 c
3665 292.796 -177.861 292.790 -177.702 292.790 -177.504 c
3666 292.790 -176.769 l
3667 h
3668 f
3669 2 J
3670 10.0000 M
3671 0 J
3672 1.45000 M
3673 newpath
3674 274.000 -229.000 m
3675 274.000 -276.500 l
3676 S
3677 newpath
3678 274.000 -284.500 m
3679 269.000 -272.500 l
3680 274.000 -275.500 l
3681 279.000 -272.500 l
3682 h
3683 f
3684 1.00000 1.00000 1.00000 RG
3685 newpath
3686 242.413 -265.734 m
3687 305.587 -265.734 l
3688 305.587 -247.766 l
3689 242.413 -247.766 l
3690 242.413 -265.734 l
3691 h
3692 f
3693 0.00000 0.00000 0.00000 RG
3694 newpath
3695 244.382 -261.346 m
3696 251.772 -261.346 l
3697 251.772 -260.346 l
3698 248.679 -260.346 l
3699 248.679 -252.596 l
3700 247.491 -252.596 l
3701 247.491 -260.346 l
3702 244.382 -260.346 l
3703 244.382 -261.346 l
3704 h
3705 252.915 -261.346 m
3706 254.103 -261.346 l
3707 254.103 -252.596 l
3708 252.915 -252.596 l
3709 252.915 -261.346 l
3710 h
3711 256.454 -261.346 m
3712 258.220 -261.346 l
3713 260.454 -255.393 l
3714 262.704 -261.346 l
3715 264.470 -261.346 l
3716 264.470 -252.596 l
3717 263.313 -252.596 l
3718 263.313 -260.283 l
3719 261.048 -254.283 l
3720 259.860 -254.283 l
3721 257.610 -260.283 l
3722 257.610 -252.596 l
3723 256.454 -252.596 l
3724 256.454 -261.346 l
3725 h
3726 266.808 -261.346 m
3727 272.339 -261.346 l
3728 272.339 -260.346 l
3729 267.995 -260.346 l
3730 267.995 -257.752 l
3731 272.167 -257.752 l
3732 272.167 -256.768 l
3733 267.995 -256.768 l
3734 267.995 -253.596 l
3735 272.448 -253.596 l
3736 272.448 -252.596 l
3737 266.808 -252.596 l
3738 266.808 -261.346 l
3739 h
3740 277.952 -260.549 m
3741 277.088 -260.549 276.403 -260.229 275.897 -259.588 c
3742 275.392 -258.947 275.140 -258.070 275.140 -256.955 c
3743 275.140 -255.861 275.392 -254.994 275.897 -254.354 c
3744 276.403 -253.713 277.088 -253.393 277.952 -253.393 c
3745 278.806 -253.393 279.486 -253.713 279.991 -254.354 c
3746 280.496 -254.994 280.749 -255.861 280.749 -256.955 c
3747 280.749 -258.070 280.496 -258.947 279.991 -259.588 c
3748 279.486 -260.229 278.806 -260.549 277.952 -260.549 c
3749 h
3750 277.952 -261.502 m
3751 279.171 -261.502 280.147 -261.090 280.882 -260.268 c
3752 281.616 -259.445 281.983 -258.340 281.983 -256.955 c
3753 281.983 -255.580 281.616 -254.481 280.882 -253.658 c
3754 280.147 -252.835 279.171 -252.424 277.952 -252.424 c
3755 276.723 -252.424 275.739 -252.835 274.999 -253.658 c
3756 274.259 -254.481 273.890 -255.580 273.890 -256.955 c
3757 273.890 -258.340 274.259 -259.445 274.999 -260.268 c
3758 275.739 -261.090 276.723 -261.502 277.952 -261.502 c
3759 h
3760 283.710 -261.346 m
3761 284.897 -261.346 l
3762 284.897 -256.033 l
3763 284.897 -255.096 285.067 -254.421 285.405 -254.010 c
3764 285.744 -253.598 286.293 -253.393 287.054 -253.393 c
3765 287.814 -253.393 288.364 -253.598 288.702 -254.010 c
3766 289.041 -254.421 289.210 -255.096 289.210 -256.033 c
3767 289.210 -261.346 l
3768 290.397 -261.346 l
3769 290.397 -255.877 l
3770 290.397 -254.742 290.116 -253.882 289.554 -253.299 c
3771 288.991 -252.715 288.158 -252.424 287.054 -252.424 c
3772 285.950 -252.424 285.116 -252.715 284.554 -253.299 c
3773 283.991 -253.882 283.710 -254.742 283.710 -255.877 c
3774 283.710 -261.346 l
3775 h
3776 291.415 -261.346 m
3777 298.806 -261.346 l
3778 298.806 -260.346 l
3779 295.712 -260.346 l
3780 295.712 -252.596 l
3781 294.524 -252.596 l
3782 294.524 -260.346 l
3783 291.415 -260.346 l
3784 291.415 -261.346 l
3785 h
3786 300.589 -254.080 m
3787 301.776 -254.080 l
3788 301.776 -252.596 l
3789 300.589 -252.596 l
3790 300.589 -254.080 l
3791 h
3792 300.589 -261.346 m
3793 301.776 -261.346 l
3794 301.776 -257.502 l
3795 301.667 -255.408 l
3796 300.714 -255.408 l
3797 300.589 -257.502 l
3798 300.589 -261.346 l
3799 h
3800 f
3801 2 J
3802 10.0000 M
3803 1.00000 .800000 0.00000 RG
3804 newpath
3805 247.000 14.5000 m
3806 321.000 14.5000 l
3807 321.000 44.5000 l
3808 247.000 44.5000 l
3809 247.000 14.5000 l
3810 h
3811 f
3812 0.00000 0.00000 0.00000 RG
3813 0 J
3814 1.45000 M
3815 newpath
3816 249.005 24.9043 m
3817 254.536 24.9043 l
3818 254.536 25.9043 l
3819 250.192 25.9043 l
3820 250.192 28.4980 l
3821 254.364 28.4980 l
3822 254.364 29.4824 l
3823 250.192 29.4824 l
3824 250.192 32.6543 l
3825 254.646 32.6543 l
3826 254.646 33.6543 l
3827 249.005 33.6543 l
3828 249.005 24.9043 l
3829 h
3830 260.728 27.2793 m
3831 260.728 28.3105 l
3832 260.425 28.1543 260.110 28.0371 259.782 27.9590 c
3833 259.454 27.8809 259.113 27.8418 258.759 27.8418 c
3834 258.228 27.8418 257.826 27.9225 257.556 28.0840 c
3835 257.285 28.2454 257.149 28.4928 257.149 28.8262 c
3836 257.149 29.0762 257.246 29.2715 257.438 29.4121 c
3837 257.631 29.5527 258.019 29.6855 258.603 29.8105 c
3838 258.962 29.9043 l
3839 259.733 30.0605 260.280 30.2897 260.603 30.5918 c
3840 260.925 30.8939 261.087 31.3105 261.087 31.8418 c
3841 261.087 32.4564 260.845 32.9408 260.360 33.2949 c
3842 259.876 33.6491 259.212 33.8262 258.368 33.8262 c
3843 258.014 33.8262 257.647 33.7923 257.267 33.7246 c
3844 256.886 33.6569 256.488 33.5553 256.071 33.4199 c
3845 256.071 32.2949 l
3846 256.467 32.5033 256.858 32.6595 257.243 32.7637 c
3847 257.629 32.8678 258.014 32.9199 258.399 32.9199 c
3848 258.899 32.9199 259.287 32.8340 259.563 32.6621 c
3849 259.840 32.4902 259.978 32.2428 259.978 31.9199 c
3850 259.978 31.6283 259.879 31.4043 259.681 31.2480 c
3851 259.483 31.0918 259.050 30.9408 258.384 30.7949 c
3852 258.009 30.7168 l
3853 257.342 30.5710 256.860 30.3522 256.563 30.0605 c
3854 256.267 29.7689 256.118 29.3730 256.118 28.8730 c
3855 256.118 28.2480 256.337 27.7689 256.774 27.4355 c
3856 257.212 27.1022 257.832 26.9355 258.634 26.9355 c
3857 259.030 26.9355 259.405 26.9642 259.759 27.0215 c
3858 260.113 27.0788 260.436 27.1647 260.728 27.2793 c
3859 h
3860 263.870 25.2324 m
3861 263.870 27.0918 l
3862 266.089 27.0918 l
3863 266.089 27.9355 l
3864 263.870 27.9355 l
3865 263.870 31.4980 l
3866 263.870 32.0293 263.943 32.3704 264.089 32.5215 c
3867 264.235 32.6725 264.532 32.7480 264.979 32.7480 c
3868 266.089 32.7480 l
3869 266.089 33.6543 l
3870 264.979 33.6543 l
3871 264.146 33.6543 263.571 33.4980 263.253 33.1855 c
3872 262.935 32.8730 262.776 32.3105 262.776 31.4980 c
3873 262.776 27.9355 l
3874 261.995 27.9355 l
3875 261.995 27.0918 l
3876 262.776 27.0918 l
3877 262.776 25.2324 l
3878 263.870 25.2324 l
3879 h
3880 270.481 30.3574 m
3881 269.617 30.3574 269.015 30.4564 268.677 30.6543 c
3882 268.338 30.8522 268.169 31.1908 268.169 31.6699 c
3883 268.169 32.0553 268.297 32.3600 268.552 32.5840 c
3884 268.807 32.8079 269.148 32.9199 269.575 32.9199 c
3885 270.179 32.9199 270.661 32.7090 271.021 32.2871 c
3886 271.380 31.8652 271.560 31.3001 271.560 30.5918 c
3887 271.560 30.3574 l
3888 270.481 30.3574 l
3889 h
3890 272.638 29.9043 m
3891 272.638 33.6543 l
3892 271.560 33.6543 l
3893 271.560 32.6543 l
3894 271.310 33.0501 271.002 33.3444 270.638 33.5371 c
3895 270.273 33.7298 269.825 33.8262 269.294 33.8262 c
3896 268.617 33.8262 268.080 33.6361 267.685 33.2559 c
3897 267.289 32.8757 267.091 32.3730 267.091 31.7480 c
3898 267.091 31.0085 267.338 30.4512 267.833 30.0762 c
3899 268.328 29.7012 269.065 29.5137 270.044 29.5137 c
3900 271.560 29.5137 l
3901 271.560 29.4043 l
3902 271.560 28.9043 271.396 28.5189 271.067 28.2480 c
3903 270.739 27.9772 270.284 27.8418 269.700 27.8418 c
3904 269.325 27.8418 268.958 27.8887 268.599 27.9824 c
3905 268.239 28.0762 267.898 28.2116 267.575 28.3887 c
3906 267.575 27.3887 l
3907 267.971 27.2324 268.354 27.1178 268.724 27.0449 c
3908 269.093 26.9720 269.455 26.9355 269.810 26.9355 c
3909 270.757 26.9355 271.466 27.1803 271.935 27.6699 c
3910 272.403 28.1595 272.638 28.9043 272.638 29.9043 c
3911 h
3912 279.569 30.3730 m
3913 279.569 29.5814 279.405 28.9616 279.077 28.5137 c
3914 278.749 28.0658 278.304 27.8418 277.741 27.8418 c
3915 277.168 27.8418 276.718 28.0658 276.390 28.5137 c
3916 276.062 28.9616 275.897 29.5814 275.897 30.3730 c
3917 275.897 31.1647 276.062 31.7871 276.390 32.2402 c
3918 276.718 32.6934 277.168 32.9199 277.741 32.9199 c
3919 278.304 32.9199 278.749 32.6934 279.077 32.2402 c
3920 279.405 31.7871 279.569 31.1647 279.569 30.3730 c
3921 h
3922 275.897 28.0918 m
3923 276.127 27.6960 276.413 27.4043 276.757 27.2168 c
3924 277.101 27.0293 277.512 26.9355 277.991 26.9355 c
3925 278.793 26.9355 279.444 27.2507 279.944 27.8809 c
3926 280.444 28.5111 280.694 29.3418 280.694 30.3730 c
3927 280.694 31.4043 280.444 32.2376 279.944 32.8730 c
3928 279.444 33.5085 278.793 33.8262 277.991 33.8262 c
3929 277.512 33.8262 277.101 33.7298 276.757 33.5371 c
3930 276.413 33.3444 276.127 33.0553 275.897 32.6699 c
3931 275.897 33.6543 l
3932 274.819 33.6543 l
3933 274.819 24.5293 l
3934 275.897 24.5293 l
3935 275.897 28.0918 l
3936 h
3937 282.468 24.5293 m
3938 283.546 24.5293 l
3939 283.546 33.6543 l
3940 282.468 33.6543 l
3941 282.468 24.5293 l
3942 h
3943 285.802 27.0918 m
3944 286.880 27.0918 l
3945 286.880 33.6543 l
3946 285.802 33.6543 l
3947 285.802 27.0918 l
3948 h
3949 285.802 24.5293 m
3950 286.880 24.5293 l
3951 286.880 25.9043 l
3952 285.802 25.9043 l
3953 285.802 24.5293 l
3954 h
3955 293.323 27.2793 m
3956 293.323 28.3105 l
3957 293.021 28.1543 292.706 28.0371 292.378 27.9590 c
3958 292.050 27.8809 291.709 27.8418 291.354 27.8418 c
3959 290.823 27.8418 290.422 27.9225 290.151 28.0840 c
3960 289.881 28.2454 289.745 28.4928 289.745 28.8262 c
3961 289.745 29.0762 289.841 29.2715 290.034 29.4121 c
3962 290.227 29.5527 290.615 29.6855 291.198 29.8105 c
3963 291.558 29.9043 l
3964 292.328 30.0605 292.875 30.2897 293.198 30.5918 c
3965 293.521 30.8939 293.683 31.3105 293.683 31.8418 c
3966 293.683 32.4564 293.440 32.9408 292.956 33.2949 c
3967 292.472 33.6491 291.808 33.8262 290.964 33.8262 c
3968 290.610 33.8262 290.243 33.7923 289.862 33.7246 c
3969 289.482 33.6569 289.084 33.5553 288.667 33.4199 c
3970 288.667 32.2949 l
3971 289.063 32.5033 289.453 32.6595 289.839 32.7637 c
3972 290.224 32.8678 290.610 32.9199 290.995 32.9199 c
3973 291.495 32.9199 291.883 32.8340 292.159 32.6621 c
3974 292.435 32.4902 292.573 32.2428 292.573 31.9199 c
3975 292.573 31.6283 292.474 31.4043 292.276 31.2480 c
3976 292.078 31.0918 291.646 30.9408 290.979 30.7949 c
3977 290.604 30.7168 l
3978 289.938 30.5710 289.456 30.3522 289.159 30.0605 c
3979 288.862 29.7689 288.714 29.3730 288.714 28.8730 c
3980 288.714 28.2480 288.933 27.7689 289.370 27.4355 c
3981 289.808 27.1022 290.427 26.9355 291.229 26.9355 c
3982 291.625 26.9355 292.000 26.9642 292.354 27.0215 c
3983 292.709 27.0788 293.032 27.1647 293.323 27.2793 c
3984 h
3985 300.856 29.6855 m
3986 300.856 33.6543 l
3987 299.778 33.6543 l
3988 299.778 29.7324 l
3989 299.778 29.1074 299.656 28.6413 299.411 28.3340 c
3990 299.166 28.0267 298.804 27.8730 298.325 27.8730 c
3991 297.742 27.8730 297.281 28.0579 296.942 28.4277 c
3992 296.604 28.7975 296.435 29.3053 296.435 29.9512 c
3993 296.435 33.6543 l
3994 295.356 33.6543 l
3995 295.356 24.5293 l
3996 296.435 24.5293 l
3997 296.435 28.1074 l
3998 296.695 27.7116 297.000 27.4173 297.349 27.2246 c
3999 297.698 27.0319 298.101 26.9355 298.560 26.9355 c
4000 299.310 26.9355 299.880 27.1673 300.271 27.6309 c
4001 300.661 28.0944 300.856 28.7793 300.856 29.6855 c
4002 h
4003 308.618 30.1074 m
4004 308.618 30.6230 l
4005 303.649 30.6230 l
4006 303.701 31.3730 303.928 31.9408 304.329 32.3262 c
4007 304.730 32.7116 305.285 32.9043 305.993 32.9043 c
4008 306.410 32.9043 306.813 32.8548 307.204 32.7559 c
4009 307.595 32.6569 307.983 32.5033 308.368 32.2949 c
4010 308.368 33.3262 l
4011 307.972 33.4824 307.571 33.6048 307.165 33.6934 c
4012 306.759 33.7819 306.347 33.8262 305.931 33.8262 c
4013 304.889 33.8262 304.061 33.5215 303.446 32.9121 c
4014 302.832 32.3027 302.524 31.4772 302.524 30.4355 c
4015 302.524 29.3626 302.816 28.5111 303.399 27.8809 c
4016 303.983 27.2507 304.764 26.9355 305.743 26.9355 c
4017 306.629 26.9355 307.329 27.2194 307.845 27.7871 c
4018 308.360 28.3548 308.618 29.1283 308.618 30.1074 c
4019 h
4020 307.540 29.7793 m
4021 307.530 29.1960 307.363 28.7272 307.040 28.3730 c
4022 306.717 28.0189 306.290 27.8418 305.759 27.8418 c
4023 305.155 27.8418 304.673 28.0137 304.313 28.3574 c
4024 303.954 28.7012 303.748 29.1803 303.696 29.7949 c
4025 307.540 29.7793 l
4026 h
4027 314.704 28.0918 m
4028 314.704 24.5293 l
4029 315.782 24.5293 l
4030 315.782 33.6543 l
4031 314.704 33.6543 l
4032 314.704 32.6699 l
4033 314.475 33.0553 314.188 33.3444 313.845 33.5371 c
4034 313.501 33.7298 313.084 33.8262 312.595 33.8262 c
4035 311.803 33.8262 311.157 33.5085 310.657 32.8730 c
4036 310.157 32.2376 309.907 31.4043 309.907 30.3730 c
4037 309.907 29.3418 310.157 28.5111 310.657 27.8809 c
4038 311.157 27.2507 311.803 26.9355 312.595 26.9355 c
4039 313.084 26.9355 313.501 27.0293 313.845 27.2168 c
4040 314.188 27.4043 314.475 27.6960 314.704 28.0918 c
4041 h
4042 311.032 30.3730 m
4043 311.032 31.1647 311.194 31.7871 311.517 32.2402 c
4044 311.840 32.6934 312.287 32.9199 312.860 32.9199 c
4045 313.433 32.9199 313.884 32.6934 314.212 32.2402 c
4046 314.540 31.7871 314.704 31.1647 314.704 30.3730 c
4047 314.704 29.5814 314.540 28.9616 314.212 28.5137 c
4048 313.884 28.0658 313.433 27.8418 312.860 27.8418 c
4049 312.287 27.8418 311.840 28.0658 311.517 28.5137 c
4050 311.194 28.9616 311.032 29.5814 311.032 30.3730 c
4051 h
4052 319.024 24.9043 m
4053 319.024 28.1543 l
4054 318.024 28.1543 l
4055 318.024 24.9043 l
4056 319.024 24.9043 l
4057 h
4058 f
4059 2 J
4060 10.0000 M
4061 1.00000 .800000 0.00000 RG
4062 0 J
4063 1.45000 M
4064 0.00000 0.00000 0.00000 RG
4065 newpath
4066 247.000 14.5000 m
4067 321.000 14.5000 l
4068 321.000 44.5000 l
4069 247.000 44.5000 l
4070 247.000 14.5000 l
4071 h
4072 S
4073 2 J
4074 10.0000 M
4075 0 J
4076 1.45000 M
4077 newpath
4078 284.000 -41.5000 m
4079 284.000 6.50000 l
4080 S
4081 newpath
4082 284.000 14.5000 m
4083 289.000 2.50000 l
4084 284.000 5.50000 l
4085 279.000 2.50000 l
4086 h
4087 f
4088 1.00000 1.00000 1.00000 RG
4089 newpath
4090 252.413 -22.4844 m
4091 315.587 -22.4844 l
4092 315.587 -4.51563 l
4093 252.413 -4.51563 l
4094 252.413 -22.4844 l
4095 h
4096 f
4097 0.00000 0.00000 0.00000 RG
4098 newpath
4099 254.382 -18.0957 m
4100 261.772 -18.0957 l
4101 261.772 -17.0957 l
4102 258.679 -17.0957 l
4103 258.679 -9.34570 l
4104 257.491 -9.34570 l
4105 257.491 -17.0957 l
4106 254.382 -17.0957 l
4107 254.382 -18.0957 l
4108 h
4109 262.915 -18.0957 m
4110 264.103 -18.0957 l
4111 264.103 -9.34570 l
4112 262.915 -9.34570 l
4113 262.915 -18.0957 l
4114 h
4115 266.454 -18.0957 m
4116 268.220 -18.0957 l
4117 270.454 -12.1426 l
4118 272.704 -18.0957 l
4119 274.470 -18.0957 l
4120 274.470 -9.34570 l
4121 273.313 -9.34570 l
4122 273.313 -17.0332 l
4123 271.048 -11.0332 l
4124 269.860 -11.0332 l
4125 267.610 -17.0332 l
4126 267.610 -9.34570 l
4127 266.454 -9.34570 l
4128 266.454 -18.0957 l
4129 h
4130 276.808 -18.0957 m
4131 282.339 -18.0957 l
4132 282.339 -17.0957 l
4133 277.995 -17.0957 l
4134 277.995 -14.5020 l
4135 282.167 -14.5020 l
4136 282.167 -13.5176 l
4137 277.995 -13.5176 l
4138 277.995 -10.3457 l
4139 282.448 -10.3457 l
4140 282.448 -9.34570 l
4141 276.808 -9.34570 l
4142 276.808 -18.0957 l
4143 h
4144 287.952 -17.2988 m
4145 287.088 -17.2988 286.403 -16.9785 285.897 -16.3379 c
4146 285.392 -15.6973 285.140 -14.8197 285.140 -13.7051 c
4147 285.140 -12.6113 285.392 -11.7441 285.897 -11.1035 c
4148 286.403 -10.4629 287.088 -10.1426 287.952 -10.1426 c
4149 288.806 -10.1426 289.486 -10.4629 289.991 -11.1035 c
4150 290.496 -11.7441 290.749 -12.6113 290.749 -13.7051 c
4151 290.749 -14.8197 290.496 -15.6973 289.991 -16.3379 c
4152 289.486 -16.9785 288.806 -17.2988 287.952 -17.2988 c
4153 h
4154 287.952 -18.2520 m
4155 289.171 -18.2520 290.147 -17.8405 290.882 -17.0176 c
4156 291.616 -16.1947 291.983 -15.0905 291.983 -13.7051 c
4157 291.983 -12.3301 291.616 -11.2311 290.882 -10.4082 c
4158 290.147 -9.58529 289.171 -9.17383 287.952 -9.17383 c
4159 286.723 -9.17383 285.739 -9.58529 284.999 -10.4082 c
4160 284.259 -11.2311 283.890 -12.3301 283.890 -13.7051 c
4161 283.890 -15.0905 284.259 -16.1947 284.999 -17.0176 c
4162 285.739 -17.8405 286.723 -18.2520 287.952 -18.2520 c
4163 h
4164 293.710 -18.0957 m
4165 294.897 -18.0957 l
4166 294.897 -12.7832 l
4167 294.897 -11.8457 295.067 -11.1712 295.405 -10.7598 c
4168 295.744 -10.3483 296.293 -10.1426 297.054 -10.1426 c
4169 297.814 -10.1426 298.364 -10.3483 298.702 -10.7598 c
4170 299.041 -11.1712 299.210 -11.8457 299.210 -12.7832 c
4171 299.210 -18.0957 l
4172 300.397 -18.0957 l
4173 300.397 -12.6270 l
4174 300.397 -11.4915 300.116 -10.6322 299.554 -10.0488 c
4175 298.991 -9.46549 298.158 -9.17383 297.054 -9.17383 c
4176 295.950 -9.17383 295.116 -9.46549 294.554 -10.0488 c
4177 293.991 -10.6322 293.710 -11.4915 293.710 -12.6270 c
4178 293.710 -18.0957 l
4179 h
4180 301.415 -18.0957 m
4181 308.806 -18.0957 l
4182 308.806 -17.0957 l
4183 305.712 -17.0957 l
4184 305.712 -9.34570 l
4185 304.524 -9.34570 l
4186 304.524 -17.0957 l
4187 301.415 -17.0957 l
4188 301.415 -18.0957 l
4189 h
4190 310.589 -10.8301 m
4191 311.776 -10.8301 l
4192 311.776 -9.34570 l
4193 310.589 -9.34570 l
4194 310.589 -10.8301 l
4195 h
4196 310.589 -18.0957 m
4197 311.776 -18.0957 l
4198 311.776 -14.2520 l
4199 311.667 -12.1582 l
4200 310.714 -12.1582 l
4201 310.589 -14.2520 l
4202 310.589 -18.0957 l
4203 h
4204 f
4205 2 J
4206 10.0000 M
4207 0 J
4208 1.45000 M
4209 newpath
4210 284.000 44.5000 m
4211 284.000 87.0000 l
4212 S
4213 newpath
4214 284.000 95.0000 m
4215 289.000 83.0000 l
4216 284.000 86.0000 l
4217 279.000 83.0000 l
4218 h
4219 f
4220 1.00000 1.00000 1.00000 RG
4221 newpath
4222 256.878 60.7656 m
4223 311.122 60.7656 l
4224 311.122 78.7344 l
4225 256.878 78.7344 l
4226 256.878 60.7656 l
4227 h
4228 f
4229 0.00000 0.00000 0.00000 RG
4230 newpath
4231 260.050 65.1543 m
4232 265.081 65.1543 l
4233 265.081 66.1543 l
4234 261.237 66.1543 l
4235 261.237 68.7324 l
4236 264.706 68.7324 l
4237 264.706 69.7324 l
4238 261.237 69.7324 l
4239 261.237 73.9043 l
4240 260.050 73.9043 l
4241 260.050 65.1543 l
4242 h
4243 266.952 65.1543 m
4244 268.140 65.1543 l
4245 268.140 73.9043 l
4246 266.952 73.9043 l
4247 266.952 65.1543 l
4248 h
4249 270.491 65.1543 m
4250 272.085 65.1543 l
4251 275.976 72.4668 l
4252 275.976 65.1543 l
4253 277.116 65.1543 l
4254 277.116 73.9043 l
4255 275.522 73.9043 l
4256 271.647 66.5918 l
4257 271.647 73.9043 l
4258 270.491 73.9043 l
4259 270.491 65.1543 l
4260 h
4261 282.405 66.3262 m
4262 280.796 70.6699 l
4263 284.015 70.6699 l
4264 282.405 66.3262 l
4265 h
4266 281.733 65.1543 m
4267 283.077 65.1543 l
4268 286.405 73.9043 l
4269 285.171 73.9043 l
4270 284.374 71.6543 l
4271 280.437 71.6543 l
4272 279.640 73.9043 l
4273 278.390 73.9043 l
4274 281.733 65.1543 l
4275 h
4276 294.239 65.8262 m
4277 294.239 67.0762 l
4278 293.833 66.7012 293.406 66.4225 292.958 66.2402 c
4279 292.510 66.0579 292.031 65.9668 291.521 65.9668 c
4280 290.521 65.9668 289.755 66.2741 289.224 66.8887 c
4281 288.692 67.5033 288.427 68.3887 288.427 69.5449 c
4282 288.427 70.6908 288.692 71.5710 289.224 72.1855 c
4283 289.755 72.8001 290.521 73.1074 291.521 73.1074 c
4284 292.031 73.1074 292.510 73.0137 292.958 72.8262 c
4285 293.406 72.6387 293.833 72.3626 294.239 71.9980 c
4286 294.239 73.2324 l
4287 293.823 73.5137 293.382 73.7246 292.919 73.8652 c
4288 292.455 74.0059 291.968 74.0762 291.458 74.0762 c
4289 290.125 74.0762 289.078 73.6699 288.317 72.8574 c
4290 287.557 72.0449 287.177 70.9408 287.177 69.5449 c
4291 287.177 68.1387 287.557 67.0293 288.317 66.2168 c
4292 289.078 65.4043 290.125 64.9980 291.458 64.9980 c
4293 291.979 64.9980 292.471 65.0684 292.935 65.2090 c
4294 293.398 65.3496 293.833 65.5553 294.239 65.8262 c
4295 h
4296 296.056 65.1543 m
4297 297.243 65.1543 l
4298 297.243 68.8574 l
4299 301.165 65.1543 l
4300 302.696 65.1543 l
4301 298.353 69.2324 l
4302 303.009 73.9043 l
4303 301.446 73.9043 l
4304 297.243 69.6855 l
4305 297.243 73.9043 l
4306 296.056 73.9043 l
4307 296.056 65.1543 l
4308 h
4309 305.050 72.4199 m
4310 306.237 72.4199 l
4311 306.237 73.9043 l
4312 305.050 73.9043 l
4313 305.050 72.4199 l
4314 h
4315 306.206 71.5605 m
4316 305.081 71.5605 l
4317 305.081 70.6543 l
4318 305.081 70.2585 305.136 69.9329 305.245 69.6777 c
4319 305.354 69.4225 305.586 69.1283 305.940 68.7949 c
4320 306.456 68.2793 l
4321 306.685 68.0710 306.849 67.8730 306.948 67.6855 c
4322 307.047 67.4980 307.097 67.3105 307.097 67.1230 c
4323 307.097 66.7793 306.969 66.4980 306.714 66.2793 c
4324 306.459 66.0605 306.118 65.9512 305.690 65.9512 c
4325 305.388 65.9512 305.063 66.0215 304.714 66.1621 c
4326 304.365 66.3027 303.998 66.5033 303.612 66.7637 c
4327 303.612 65.6543 l
4328 303.977 65.4355 304.349 65.2715 304.729 65.1621 c
4329 305.110 65.0527 305.498 64.9980 305.894 64.9980 c
4330 306.612 64.9980 307.190 65.1882 307.628 65.5684 c
4331 308.065 65.9486 308.284 66.4460 308.284 67.0605 c
4332 308.284 67.3626 308.214 67.6465 308.073 67.9121 c
4333 307.933 68.1777 307.685 68.4772 307.331 68.8105 c
4334 306.815 69.3262 l
4335 306.638 69.5033 306.511 69.6439 306.433 69.7480 c
4336 306.354 69.8522 306.300 69.9564 306.269 70.0605 c
4337 306.248 70.1335 306.232 70.2298 306.222 70.3496 c
4338 306.211 70.4694 306.206 70.6283 306.206 70.8262 c
4339 306.206 71.5605 l
4340 h
4341 f
4342 2 J
4343 10.0000 M
4344 0 J
4345 1.45000 M
4346 [ 6.00000 2.00000 ] 0.00000 d
4347 newpath
4348 246.979 32.5158 m
4349 234.667 33.2927 l
4350 198.556 32.3903 l
4351 162.667 28.2927 l
4352 149.838 25.6696 l
4353 S
4354 newpath
4355 142.000 24.0670 m
4356 152.755 31.3695 l
4357 150.818 25.8699 l
4358 154.758 21.5722 l
4359 h
4360 f
4361 1.00000 1.00000 1.00000 RG
4362 newpath
4363 180.982 23.4059 m
4364 216.130 23.4059 l
4365 216.130 41.3747 l
4366 180.982 41.3747 l
4367 180.982 23.4059 l
4368 h
4369 f
4370 0.00000 0.00000 0.00000 RG
4371 [ ] 0.00000 d
4372 newpath
4373 185.341 28.7633 m
4374 185.341 35.5758 l
4375 186.779 35.5758 l
4376 187.987 35.5758 188.870 35.3024 189.427 34.7555 c
4377 189.985 34.2087 190.263 33.3415 190.263 32.1540 c
4378 190.263 30.9873 189.985 30.1305 189.427 29.5837 c
4379 188.870 29.0368 187.987 28.7633 186.779 28.7633 c
4380 185.341 28.7633 l
4381 h
4382 184.154 27.7946 m
4383 186.591 27.7946 l
4384 188.289 27.7946 189.534 28.1462 190.326 28.8493 c
4385 191.117 29.5524 191.513 30.6540 191.513 32.1540 c
4386 191.513 33.6644 191.115 34.7738 190.318 35.4821 c
4387 189.521 36.1904 188.279 36.5446 186.591 36.5446 c
4388 184.154 36.5446 l
4389 184.154 27.7946 l
4390 h
4391 196.332 28.9665 m
4392 194.722 33.3102 l
4393 197.941 33.3102 l
4394 196.332 28.9665 l
4395 h
4396 195.660 27.7946 m
4397 197.003 27.7946 l
4398 200.332 36.5446 l
4399 199.097 36.5446 l
4400 198.300 34.2946 l
4401 194.363 34.2946 l
4402 193.566 36.5446 l
4403 192.316 36.5446 l
4404 195.660 27.7946 l
4405 h
4406 200.400 27.7946 m
4407 207.791 27.7946 l
4408 207.791 28.7946 l
4409 204.697 28.7946 l
4410 204.697 36.5446 l
4411 203.509 36.5446 l
4412 203.509 28.7946 l
4413 200.400 28.7946 l
4414 200.400 27.7946 l
4415 h
4416 210.058 35.0602 m
4417 211.246 35.0602 l
4418 211.246 36.5446 l
4419 210.058 36.5446 l
4420 210.058 35.0602 l
4421 h
4422 211.214 34.2008 m
4423 210.089 34.2008 l
4424 210.089 33.2946 l
4425 210.089 32.8988 210.144 32.5732 210.253 32.3180 c
4426 210.363 32.0628 210.595 31.7686 210.949 31.4352 c
4427 211.464 30.9196 l
4428 211.694 30.7113 211.858 30.5133 211.957 30.3258 c
4429 212.056 30.1383 212.105 29.9508 212.105 29.7633 c
4430 212.105 29.4196 211.977 29.1383 211.722 28.9196 c
4431 211.467 28.7008 211.126 28.5915 210.699 28.5915 c
4432 210.397 28.5915 210.071 28.6618 209.722 28.8024 c
4433 209.373 28.9430 209.006 29.1436 208.621 29.4040 c
4434 208.621 28.2946 l
4435 208.985 28.0758 209.358 27.9118 209.738 27.8024 c
4436 210.118 27.6930 210.506 27.6383 210.902 27.6383 c
4437 211.621 27.6383 212.199 27.8285 212.636 28.2087 c
4438 213.074 28.5889 213.293 29.0863 213.293 29.7008 c
4439 213.293 30.0029 213.222 30.2868 213.082 30.5524 c
4440 212.941 30.8180 212.694 31.1175 212.339 31.4508 c
4441 211.824 31.9665 l
4442 211.647 32.1436 211.519 32.2842 211.441 32.3883 c
4443 211.363 32.4925 211.308 32.5967 211.277 32.7008 c
4444 211.256 32.7738 211.240 32.8701 211.230 32.9899 c
4445 211.220 33.1097 211.214 33.2686 211.214 33.4665 c
4446 211.214 34.2008 l
4447 h
4448 f
4449 [ 6.00000 2.00000 ] 0.00000 d
4450 2 J
4451 10.0000 M
4452 [ ] 0.00000 d
4453 0 J
4454 1.45000 M
4455 [ 6.00000 2.00000 ] 0.00000 d
4456 newpath
4457 142.000 13.2167 m
4458 145.375 11.4655 l
4459 163.750 4.65512 l
4460 182.125 .568897 l
4461 200.500 -.793177 l
4462 218.875 .568897 l
4463 237.250 4.65512 l
4464 254.295 10.9725 l
4465 254.384 11.0186 l
4466 S
4467 newpath
4468 261.565 14.5450 m
4469 252.997 4.76737 l
4470 253.486 10.5778 l
4471 248.589 13.7434 l
4472 h
4473 f
4474 1.00000 1.00000 1.00000 RG
4475 newpath
4476 183.866 -9.77755 m
4477 217.134 -9.77755 l
4478 217.134 8.19120 l
4479 183.866 8.19120 l
4480 183.866 -9.77755 l
4481 h
4482 f
4483 0.00000 0.00000 0.00000 RG
4484 [ ] 0.00000 d
4485 newpath
4486 189.976 -4.21700 m
4487 188.366 .126745 l
4488 191.585 .126745 l
4489 189.976 -4.21700 l
4490 h
4491 189.304 -5.38888 m
4492 190.647 -5.38888 l
4493 193.976 3.36112 l
4494 192.741 3.36112 l
4495 191.944 1.11112 l
4496 188.007 1.11112 l
4497 187.210 3.36112 l
4498 185.960 3.36112 l
4499 189.304 -5.38888 l
4500 h
4501 201.810 -4.71700 m
4502 201.810 -3.46700 l
4503 201.403 -3.84200 200.976 -4.12065 200.528 -4.30294 c
4504 200.080 -4.48523 199.601 -4.57638 199.091 -4.57638 c
4505 198.091 -4.57638 197.325 -4.26909 196.794 -3.65450 c
4506 196.263 -3.03992 195.997 -2.15450 195.997 -.998255 c
4507 195.997 .147579 196.263 1.02779 196.794 1.64237 c
4508 197.325 2.25695 198.091 2.56425 199.091 2.56425 c
4509 199.601 2.56425 200.080 2.47050 200.528 2.28300 c
4510 200.976 2.09550 201.403 1.81945 201.810 1.45487 c
4511 201.810 2.68925 l
4512 201.393 2.97050 200.953 3.18143 200.489 3.32206 c
4513 200.026 3.46268 199.539 3.53300 199.028 3.53300 c
4514 197.695 3.53300 196.648 3.12675 195.888 2.31425 c
4515 195.127 1.50175 194.747 .397579 194.747 -.998255 c
4516 194.747 -2.40450 195.127 -3.51388 195.888 -4.32638 c
4517 196.648 -5.13888 197.695 -5.54513 199.028 -5.54513 c
4518 199.549 -5.54513 200.041 -5.47482 200.505 -5.33419 c
4519 200.968 -5.19357 201.403 -4.98784 201.810 -4.71700 c
4520 h
4521 203.626 -5.38888 m
4522 204.813 -5.38888 l
4523 204.813 -1.68575 l
4524 208.735 -5.38888 l
4525 210.267 -5.38888 l
4526 205.923 -1.31075 l
4527 210.579 3.36112 l
4528 209.017 3.36112 l
4529 204.813 -.857630 l
4530 204.813 3.36112 l
4531 203.626 3.36112 l
4532 203.626 -5.38888 l
4533 h
4534 212.136 1.87675 m
4535 213.323 1.87675 l
4536 213.323 3.36112 l
4537 212.136 3.36112 l
4538 212.136 1.87675 l
4539 h
4540 212.136 -5.38888 m
4541 213.323 -5.38888 l
4542 213.323 -1.54513 l
4543 213.214 .548620 l
4544 212.261 .548620 l
4545 212.136 -1.54513 l
4546 212.136 -5.38888 l
4547 h
4548 f
4549 [ 6.00000 2.00000 ] 0.00000 d
4550 2 J
4551 10.0000 M
4552 [ ] 0.00000 d
4553 Q
4554 [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
4555 cliprestore
4556
4557 %%Trailer
4558 %%EOF