Merge branch 'master' of gitlab.science.ru.nl:mlubbers/mc1516the
[mc1516the.git] / img / 2vertCar.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%BoundingBox: 20 190 575 601
3 %%Creator: FreeHEP Graphics2D Driver
4 %%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753
5 %%For: pimjager@167-013.wlan-int.ru.nl
6 %%Title: VertCar
7 %%CreationDate: Thursday, June 23, 2016 10:05:27 AM CEST
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 595 791 setpagesize
917 20 20 20 20 setmargins
918 0 0 setorigin
919 509 376 setsize
920 fittopage
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 509.000 0.00000 l
936 509.000 376.000 l
937 0.00000 376.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 509.000 0.00000 l
949 509.000 376.000 l
950 0.00000 376.000 l
951 0.00000 0.00000 l
952 h
953 f
954 0.00000 0.00000 0.00000 RG
955 q
956 q
957 1.00000 1.00000 1.00000 RG
958 newpath
959 0.00000 0.00000 m
960 0.00000 0.00000 l
961 0.00000 0.00000 l
962 0.00000 0.00000 l
963 0.00000 0.00000 l
964 h
965 f
966 Q
967 Q
968 [ 1.00000 0.00000 0.00000 1.00000 429.000 205.000 ] concat
969 .258824 .658824 .282353 RG
970 newpath
971 -159.223 -187.300 m
972 -158.020 -190.000 l
973 -160.891 -197.424 l
974 -159.435 -197.424 l
975 -157.309 -191.832 l
976 -155.039 -197.424 l
977 -153.768 -197.424 l
978 -157.821 -187.300 l
979 h
980 -148.627 -190.000 m
981 -148.627 -193.541 l
982 -152.168 -193.541 l
983 -152.168 -194.553 l
984 -148.627 -194.553 l
985 -148.627 -198.094 l
986 -147.615 -198.094 l
987 -147.615 -194.553 l
988 -144.074 -194.553 l
989 -144.074 -193.541 l
990 -147.615 -193.541 l
991 -147.615 -190.000 l
992 h
993 -141.210 -190.000 m
994 -141.210 -200.794 l
995 -139.863 -200.794 l
996 -139.863 -190.000 l
997 h
998 -131.722 -190.239 m
999 -132.624 -189.966 -133.396 -189.829 -134.039 -189.829 c
1000 -135.133 -189.829 -136.025 -190.193 -136.715 -190.919 c
1001 -137.406 -191.646 -137.751 -192.589 -137.751 -193.746 c
1002 -137.751 -194.872 -137.447 -195.795 -136.838 -196.515 c
1003 -136.230 -197.235 -135.452 -197.595 -134.504 -197.595 c
1004 -133.606 -197.595 -132.912 -197.276 -132.422 -196.638 c
1005 -131.932 -196.000 -131.688 -195.093 -131.688 -193.917 c
1006 -131.694 -193.500 l
1007 -136.377 -193.500 l
1008 -136.181 -191.736 -135.317 -190.854 -133.786 -190.854 c
1009 -133.226 -190.854 -132.537 -191.005 -131.722 -191.306 c
1010 h
1011 -136.315 -194.512 m
1012 -133.041 -194.512 l
1013 -133.041 -195.893 -133.556 -196.583 -134.586 -196.583 c
1014 -135.620 -196.583 -136.197 -195.893 -136.315 -194.512 c
1015 h
1016 -129.363 -190.000 m
1017 -129.363 -197.424 l
1018 -128.017 -197.424 l
1019 -128.017 -196.029 l
1020 -127.306 -197.068 -126.435 -197.588 -125.405 -197.588 c
1021 -124.763 -197.588 -124.250 -197.384 -123.867 -196.976 c
1022 -123.484 -196.568 -123.293 -196.020 -123.293 -195.332 c
1023 -123.293 -190.000 l
1024 -124.640 -190.000 l
1025 -124.640 -194.895 l
1026 -124.640 -195.446 -124.721 -195.839 -124.882 -196.074 c
1027 -125.044 -196.308 -125.312 -196.426 -125.686 -196.426 c
1028 -126.510 -196.426 -127.287 -195.886 -128.017 -194.806 c
1029 -128.017 -190.000 l
1030 h
1031 -120.647 -187.532 m
1032 -120.490 -188.701 l
1033 -119.711 -188.332 -118.943 -188.147 -118.187 -188.147 c
1034 -116.669 -188.147 -115.910 -188.952 -115.910 -190.561 c
1035 -115.910 -191.729 l
1036 -116.407 -190.690 -117.223 -190.171 -118.357 -190.171 c
1037 -119.246 -190.171 -119.952 -190.494 -120.477 -191.142 c
1038 -121.001 -191.789 -121.263 -192.661 -121.263 -193.760 c
1039 -121.263 -194.890 -120.964 -195.811 -120.367 -196.521 c
1040 -119.770 -197.232 -118.998 -197.588 -118.050 -197.588 c
1041 -117.220 -197.588 -116.507 -197.251 -115.910 -196.576 c
1042 -115.910 -197.424 l
1043 -114.557 -197.424 l
1044 -114.557 -192.023 l
1045 -114.557 -190.861 -114.617 -190.001 -114.738 -189.443 c
1046 -114.859 -188.885 -115.085 -188.428 -115.418 -188.072 c
1047 -116.006 -187.448 -116.920 -187.136 -118.159 -187.136 c
1048 -119.025 -187.136 -119.854 -187.268 -120.647 -187.532 c
1049 h
1050 -115.910 -192.570 m
1051 -115.910 -195.653 l
1052 -116.503 -196.269 -117.147 -196.576 -117.845 -196.576 c
1053 -118.465 -196.576 -118.950 -196.328 -119.301 -195.831 c
1054 -119.652 -195.334 -119.827 -194.653 -119.827 -193.787 c
1055 -119.827 -192.160 -119.255 -191.347 -118.111 -191.347 c
1056 -117.332 -191.347 -116.598 -191.755 -115.910 -192.570 c
1057 h
1058 -109.717 -189.829 m
1059 -110.400 -189.829 -110.934 -190.025 -111.316 -190.417 c
1060 -111.699 -190.809 -111.891 -191.354 -111.891 -192.051 c
1061 -111.891 -196.412 l
1062 -112.820 -196.412 l
1063 -112.820 -197.424 l
1064 -111.891 -197.424 l
1065 -111.891 -198.771 l
1066 -110.544 -198.900 l
1067 -110.544 -197.424 l
1068 -108.603 -197.424 l
1069 -108.603 -196.412 l
1070 -110.544 -196.412 l
1071 -110.544 -192.297 l
1072 -110.544 -191.326 -110.125 -190.841 -109.286 -190.841 c
1073 -109.108 -190.841 -108.892 -190.870 -108.637 -190.930 c
1074 -108.637 -190.000 l
1075 -109.051 -189.886 -109.411 -189.829 -109.717 -189.829 c
1076 h
1077 -106.709 -190.000 m
1078 -106.709 -200.794 l
1079 -105.362 -200.794 l
1080 -105.362 -196.029 l
1081 -104.651 -197.068 -103.781 -197.588 -102.751 -197.588 c
1082 -102.108 -197.588 -101.596 -197.384 -101.213 -196.976 c
1083 -100.830 -196.568 -100.639 -196.020 -100.639 -195.332 c
1084 -100.639 -190.000 l
1085 -101.985 -190.000 l
1086 -101.985 -194.895 l
1087 -101.985 -195.446 -102.066 -195.839 -102.228 -196.074 c
1088 -102.390 -196.308 -102.658 -196.426 -103.031 -196.426 c
1089 -103.856 -196.426 -104.633 -195.886 -105.362 -194.806 c
1090 -105.362 -190.000 l
1091 h
1092 -85.3262 -190.000 m
1093 -93.4199 -194.047 l
1094 -85.3262 -198.094 l
1095 -85.3262 -196.966 l
1096 -91.1572 -194.047 l
1097 -85.3262 -191.135 l
1098 h
1099 -76.9727 -195.243 m
1100 -76.3301 -196.077 -75.5212 -196.494 -74.5459 -196.494 c
1101 -73.6618 -196.494 -72.9383 -196.201 -72.3755 -195.616 c
1102 -71.8127 -195.030 -71.5312 -194.279 -71.5312 -193.363 c
1103 -71.5312 -192.311 -71.8468 -191.445 -72.4780 -190.766 c
1104 -73.1092 -190.087 -73.9102 -189.747 -74.8809 -189.747 c
1105 -75.9974 -189.747 -76.8701 -190.196 -77.4990 -191.094 c
1106 -78.1279 -191.992 -78.4424 -193.238 -78.4424 -194.833 c
1107 -78.4424 -196.588 -78.0812 -197.950 -77.3589 -198.921 c
1108 -76.6366 -199.892 -75.6191 -200.377 -74.3066 -200.377 c
1109 -73.7051 -200.377 -72.9531 -200.249 -72.0508 -199.994 c
1110 -72.0508 -198.818 l
1111 -73.0033 -199.183 -73.7826 -199.365 -74.3887 -199.365 c
1112 -76.1113 -199.365 -76.9727 -197.991 -76.9727 -195.243 c
1113 h
1114 -72.8848 -193.062 m
1115 -72.8848 -193.828 -73.0568 -194.430 -73.4009 -194.867 c
1116 -73.7450 -195.305 -74.2223 -195.523 -74.8330 -195.523 c
1117 -75.4027 -195.523 -75.8926 -195.332 -76.3027 -194.949 c
1118 -76.7129 -194.566 -76.9180 -194.106 -76.9180 -193.568 c
1119 -76.9180 -192.721 -76.7231 -192.041 -76.3335 -191.528 c
1120 -75.9438 -191.015 -75.4277 -190.759 -74.7852 -190.759 c
1121 -74.2064 -190.759 -73.7450 -190.967 -73.4009 -191.384 c
1122 -73.0568 -191.801 -72.8848 -192.361 -72.8848 -193.062 c
1123 h
1124 -58.8438 -190.000 m
1125 -59.3428 -190.602 l
1126 -60.0902 -190.032 -60.9629 -189.747 -61.9609 -189.747 c
1127 -63.0182 -189.747 -63.8875 -190.054 -64.5688 -190.667 c
1128 -65.2502 -191.279 -65.5908 -192.060 -65.5908 -193.008 c
1129 -65.5908 -194.566 -64.7682 -195.624 -63.1230 -196.180 c
1130 -63.5788 -197.005 -63.8066 -197.690 -63.8066 -198.237 c
1131 -63.8066 -198.834 -63.5685 -199.339 -63.0923 -199.751 c
1132 -62.6160 -200.164 -62.0384 -200.370 -61.3594 -200.370 c
1133 -60.7031 -200.370 -60.1619 -200.178 -59.7358 -199.792 c
1134 -59.3097 -199.407 -59.0967 -198.919 -59.0967 -198.326 c
1135 -59.0967 -197.314 -59.8372 -196.435 -61.3184 -195.688 c
1136 -60.6393 -194.484 -59.8486 -193.361 -58.9463 -192.317 c
1137 -58.5316 -192.919 -58.3242 -193.771 -58.3242 -194.874 c
1138 -58.3311 -195.380 l
1139 -56.9912 -195.380 l
1140 -56.9912 -193.885 -57.4378 -192.595 -58.3311 -191.511 c
1141 -57.9209 -190.991 -57.4538 -190.488 -56.9297 -190.000 c
1142 h
1143 -59.9307 -191.381 m
1144 -60.8877 -192.557 -61.7992 -193.890 -62.6650 -195.380 c
1145 -63.7178 -194.961 -64.2441 -194.279 -64.2441 -193.336 c
1146 -64.2441 -192.620 -64.0015 -192.012 -63.5161 -191.511 c
1147 -63.0308 -191.009 -62.4395 -190.759 -61.7422 -190.759 c
1148 -61.1087 -190.759 -60.5049 -190.966 -59.9307 -191.381 c
1149 h
1150 -61.8105 -196.542 m
1151 -60.8444 -196.984 -60.3613 -197.572 -60.3613 -198.306 c
1152 -60.3613 -199.007 -60.7122 -199.358 -61.4141 -199.358 c
1153 -62.1068 -199.358 -62.4531 -199.005 -62.4531 -198.299 c
1154 -62.4531 -197.834 -62.2389 -197.248 -61.8105 -196.542 c
1155 h
1156 -49.0820 -190.000 m
1157 -49.5811 -190.602 l
1158 -50.3285 -190.032 -51.2012 -189.747 -52.1992 -189.747 c
1159 -53.2565 -189.747 -54.1258 -190.054 -54.8071 -190.667 c
1160 -55.4884 -191.279 -55.8291 -192.060 -55.8291 -193.008 c
1161 -55.8291 -194.566 -55.0065 -195.624 -53.3613 -196.180 c
1162 -53.8171 -197.005 -54.0449 -197.690 -54.0449 -198.237 c
1163 -54.0449 -198.834 -53.8068 -199.339 -53.3306 -199.751 c
1164 -52.8543 -200.164 -52.2767 -200.370 -51.5977 -200.370 c
1165 -50.9414 -200.370 -50.4002 -200.178 -49.9741 -199.792 c
1166 -49.5480 -199.407 -49.3350 -198.919 -49.3350 -198.326 c
1167 -49.3350 -197.314 -50.0755 -196.435 -51.5566 -195.688 c
1168 -50.8776 -194.484 -50.0869 -193.361 -49.1846 -192.317 c
1169 -48.7699 -192.919 -48.5625 -193.771 -48.5625 -194.874 c
1170 -48.5693 -195.380 l
1171 -47.2295 -195.380 l
1172 -47.2295 -193.885 -47.6761 -192.595 -48.5693 -191.511 c
1173 -48.1592 -190.991 -47.6921 -190.488 -47.1680 -190.000 c
1174 h
1175 -50.1689 -191.381 m
1176 -51.1260 -192.557 -52.0374 -193.890 -52.9033 -195.380 c
1177 -53.9561 -194.961 -54.4824 -194.279 -54.4824 -193.336 c
1178 -54.4824 -192.620 -54.2397 -192.012 -53.7544 -191.511 c
1179 -53.2690 -191.009 -52.6777 -190.759 -51.9805 -190.759 c
1180 -51.3470 -190.759 -50.7432 -190.966 -50.1689 -191.381 c
1181 h
1182 -52.0488 -196.542 m
1183 -51.0827 -196.984 -50.5996 -197.572 -50.5996 -198.306 c
1184 -50.5996 -199.007 -50.9505 -199.358 -51.6523 -199.358 c
1185 -52.3451 -199.358 -52.6914 -199.005 -52.6914 -198.299 c
1186 -52.6914 -197.834 -52.4772 -197.248 -52.0488 -196.542 c
1187 h
1188 -40.6055 -190.000 m
1189 -40.6055 -191.347 l
1190 -39.2588 -191.347 l
1191 -39.2588 -190.000 l
1192 h
1193 -40.4346 -192.700 m
1194 -40.6055 -198.094 l
1195 -40.6055 -200.117 l
1196 -39.2588 -200.117 l
1197 -39.2588 -198.094 l
1198 -39.4229 -192.700 l
1199 h
1200 -36.3398 -187.532 m
1201 -36.1826 -188.701 l
1202 -35.4033 -188.332 -34.6354 -188.147 -33.8789 -188.147 c
1203 -32.3613 -188.147 -31.6025 -188.952 -31.6025 -190.561 c
1204 -31.6025 -191.729 l
1205 -32.0993 -190.690 -32.9150 -190.171 -34.0498 -190.171 c
1206 -34.9385 -190.171 -35.6449 -190.494 -36.1689 -191.142 c
1207 -36.6930 -191.789 -36.9551 -192.661 -36.9551 -193.760 c
1208 -36.9551 -194.890 -36.6566 -195.811 -36.0596 -196.521 c
1209 -35.4626 -197.232 -34.6901 -197.588 -33.7422 -197.588 c
1210 -32.9128 -197.588 -32.1995 -197.251 -31.6025 -196.576 c
1211 -31.6025 -197.424 l
1212 -30.2490 -197.424 l
1213 -30.2490 -192.023 l
1214 -30.2490 -190.861 -30.3094 -190.001 -30.4302 -189.443 c
1215 -30.5509 -188.885 -30.7777 -188.428 -31.1104 -188.072 c
1216 -31.6982 -187.448 -32.6120 -187.136 -33.8516 -187.136 c
1217 -34.7174 -187.136 -35.5469 -187.268 -36.3398 -187.532 c
1218 h
1219 -31.6025 -192.570 m
1220 -31.6025 -195.653 l
1221 -32.1950 -196.269 -32.8398 -196.576 -33.5371 -196.576 c
1222 -34.1569 -196.576 -34.6423 -196.328 -34.9932 -195.831 c
1223 -35.3441 -195.334 -35.5195 -194.653 -35.5195 -193.787 c
1224 -35.5195 -192.160 -34.9476 -191.347 -33.8037 -191.347 c
1225 -33.0244 -191.347 -32.2907 -191.755 -31.6025 -192.570 c
1226 h
1227 -27.6377 -190.000 m
1228 -27.6377 -197.424 l
1229 -26.2910 -197.424 l
1230 -26.2910 -196.029 l
1231 -25.7578 -197.068 -24.9831 -197.588 -23.9668 -197.588 c
1232 -23.8301 -197.588 -23.6865 -197.576 -23.5361 -197.554 c
1233 -23.5361 -196.296 l
1234 -23.7686 -196.373 -23.9736 -196.412 -24.1514 -196.412 c
1235 -25.0036 -196.412 -25.7168 -195.906 -26.2910 -194.895 c
1236 -26.2910 -190.000 l
1237 h
1238 -21.9092 -190.000 m
1239 -21.9092 -197.424 l
1240 -20.5625 -197.424 l
1241 -20.5625 -190.000 l
1242 h
1243 -21.9092 -198.771 m
1244 -21.9092 -200.117 l
1245 -20.5625 -200.117 l
1246 -20.5625 -198.771 l
1247 h
1248 -13.0977 -190.000 m
1249 -13.0977 -191.395 l
1250 -13.6445 -190.351 -14.4694 -189.829 -15.5723 -189.829 c
1251 -16.4655 -189.829 -17.1685 -190.155 -17.6812 -190.807 c
1252 -18.1938 -191.458 -18.4502 -192.349 -18.4502 -193.479 c
1253 -18.4502 -194.715 -18.1597 -195.708 -17.5786 -196.460 c
1254 -16.9976 -197.212 -16.2331 -197.588 -15.2852 -197.588 c
1255 -14.4056 -197.588 -13.6764 -197.251 -13.0977 -196.576 c
1256 -13.0977 -200.794 l
1257 -11.7441 -200.794 l
1258 -11.7441 -190.000 l
1259 h
1260 -13.0977 -195.653 m
1261 -13.7949 -196.269 -14.4557 -196.576 -15.0801 -196.576 c
1262 -16.3698 -196.576 -17.0146 -195.590 -17.0146 -193.616 c
1263 -17.0146 -191.880 -16.4404 -191.012 -15.2920 -191.012 c
1264 -14.5446 -191.012 -13.8132 -191.420 -13.0977 -192.235 c
1265 h
1266 -9.05078 -187.977 m
1267 -9.05078 -200.794 l
1268 -6.35059 -200.794 l
1269 -6.35059 -199.782 l
1270 -7.86816 -199.782 l
1271 -7.86816 -188.988 l
1272 -6.35059 -188.988 l
1273 -6.35059 -187.977 l
1274 h
1275 -5.24316 -190.000 m
1276 -2.41992 -193.835 l
1277 -5.16113 -197.424 l
1278 -3.56152 -197.424 l
1279 -1.39453 -194.566 l
1280 .567383 -197.424 l
1281 1.87988 -197.424 l
1282 -.690430 -193.657 l
1283 2.10547 -190.000 l
1284 .505859 -190.000 l
1285 -1.72949 -192.939 l
1286 -3.88965 -190.000 l
1287 h
1288 5.94727 -187.977 m
1289 5.94727 -200.794 l
1290 3.24707 -200.794 l
1291 3.24707 -199.782 l
1292 4.76465 -199.782 l
1293 4.76465 -188.988 l
1294 3.24707 -188.988 l
1295 3.24707 -187.977 l
1296 h
1297 8.64062 -187.977 m
1298 8.64062 -200.794 l
1299 11.3408 -200.794 l
1300 11.3408 -199.782 l
1301 9.82324 -199.782 l
1302 9.82324 -188.988 l
1303 11.3408 -188.988 l
1304 11.3408 -187.977 l
1305 h
1306 13.6240 -187.300 m
1307 14.8271 -190.000 l
1308 11.9561 -197.424 l
1309 13.4121 -197.424 l
1310 15.5381 -191.832 l
1311 17.8076 -197.424 l
1312 19.0791 -197.424 l
1313 15.0254 -187.300 l
1314 h
1315 24.2197 -190.000 m
1316 24.2197 -193.541 l
1317 20.6787 -193.541 l
1318 20.6787 -194.553 l
1319 24.2197 -194.553 l
1320 24.2197 -198.094 l
1321 25.2314 -198.094 l
1322 25.2314 -194.553 l
1323 28.7725 -194.553 l
1324 28.7725 -193.541 l
1325 25.2314 -193.541 l
1326 25.2314 -190.000 l
1327 h
1328 31.6367 -190.000 m
1329 31.6367 -200.794 l
1330 32.9834 -200.794 l
1331 32.9834 -190.000 l
1332 h
1333 41.1250 -190.239 m
1334 40.2227 -189.966 39.4502 -189.829 38.8076 -189.829 c
1335 37.7139 -189.829 36.8218 -190.193 36.1313 -190.919 c
1336 35.4409 -191.646 35.0957 -192.589 35.0957 -193.746 c
1337 35.0957 -194.872 35.3999 -195.795 36.0083 -196.515 c
1338 36.6167 -197.235 37.3949 -197.595 38.3428 -197.595 c
1339 39.2406 -197.595 39.9344 -197.276 40.4243 -196.638 c
1340 40.9142 -196.000 41.1592 -195.093 41.1592 -193.917 c
1341 41.1523 -193.500 l
1342 36.4697 -193.500 l
1343 36.6657 -191.736 37.5293 -190.854 39.0605 -190.854 c
1344 39.6211 -190.854 40.3092 -191.005 41.1250 -191.306 c
1345 h
1346 36.5312 -194.512 m
1347 39.8057 -194.512 l
1348 39.8057 -195.893 39.2907 -196.583 38.2607 -196.583 c
1349 37.2262 -196.583 36.6497 -195.893 36.5312 -194.512 c
1350 h
1351 43.4834 -190.000 m
1352 43.4834 -197.424 l
1353 44.8301 -197.424 l
1354 44.8301 -196.029 l
1355 45.5410 -197.068 46.4115 -197.588 47.4414 -197.588 c
1356 48.0840 -197.588 48.5967 -197.384 48.9795 -196.976 c
1357 49.3623 -196.568 49.5537 -196.020 49.5537 -195.332 c
1358 49.5537 -190.000 l
1359 48.2070 -190.000 l
1360 48.2070 -194.895 l
1361 48.2070 -195.446 48.1261 -195.839 47.9644 -196.074 c
1362 47.8026 -196.308 47.5348 -196.426 47.1611 -196.426 c
1363 46.3363 -196.426 45.5592 -195.886 44.8301 -194.806 c
1364 44.8301 -190.000 l
1365 h
1366 52.1992 -187.532 m
1367 52.3564 -188.701 l
1368 53.1357 -188.332 53.9036 -188.147 54.6602 -188.147 c
1369 56.1777 -188.147 56.9365 -188.952 56.9365 -190.561 c
1370 56.9365 -191.729 l
1371 56.4398 -190.690 55.6240 -190.171 54.4893 -190.171 c
1372 53.6006 -190.171 52.8942 -190.494 52.3701 -191.142 c
1373 51.8460 -191.789 51.5840 -192.661 51.5840 -193.760 c
1374 51.5840 -194.890 51.8825 -195.811 52.4795 -196.521 c
1375 53.0765 -197.232 53.8490 -197.588 54.7969 -197.588 c
1376 55.6263 -197.588 56.3395 -197.251 56.9365 -196.576 c
1377 56.9365 -197.424 l
1378 58.2900 -197.424 l
1379 58.2900 -192.023 l
1380 58.2900 -190.861 58.2297 -190.001 58.1089 -189.443 c
1381 57.9881 -188.885 57.7614 -188.428 57.4287 -188.072 c
1382 56.8408 -187.448 55.9271 -187.136 54.6875 -187.136 c
1383 53.8216 -187.136 52.9922 -187.268 52.1992 -187.532 c
1384 h
1385 56.9365 -192.570 m
1386 56.9365 -195.653 l
1387 56.3441 -196.269 55.6992 -196.576 55.0020 -196.576 c
1388 54.3822 -196.576 53.8968 -196.328 53.5459 -195.831 c
1389 53.1950 -195.334 53.0195 -194.653 53.0195 -193.787 c
1390 53.0195 -192.160 53.5915 -191.347 54.7354 -191.347 c
1391 55.5146 -191.347 56.2484 -191.755 56.9365 -192.570 c
1392 h
1393 63.1299 -189.829 m
1394 62.4463 -189.829 61.9131 -190.025 61.5303 -190.417 c
1395 61.1475 -190.809 60.9561 -191.354 60.9561 -192.051 c
1396 60.9561 -196.412 l
1397 60.0264 -196.412 l
1398 60.0264 -197.424 l
1399 60.9561 -197.424 l
1400 60.9561 -198.771 l
1401 62.3027 -198.900 l
1402 62.3027 -197.424 l
1403 64.2441 -197.424 l
1404 64.2441 -196.412 l
1405 62.3027 -196.412 l
1406 62.3027 -192.297 l
1407 62.3027 -191.326 62.7220 -190.841 63.5605 -190.841 c
1408 63.7383 -190.841 63.9548 -190.870 64.2100 -190.930 c
1409 64.2100 -190.000 l
1410 63.7952 -189.886 63.4352 -189.829 63.1299 -189.829 c
1411 h
1412 66.1377 -190.000 m
1413 66.1377 -200.794 l
1414 67.4844 -200.794 l
1415 67.4844 -196.029 l
1416 68.1953 -197.068 69.0658 -197.588 70.0957 -197.588 c
1417 70.7383 -197.588 71.2510 -197.384 71.6338 -196.976 c
1418 72.0166 -196.568 72.2080 -196.020 72.2080 -195.332 c
1419 72.2080 -190.000 l
1420 70.8613 -190.000 l
1421 70.8613 -194.895 l
1422 70.8613 -195.446 70.7804 -195.839 70.6187 -196.074 c
1423 70.4569 -196.308 70.1891 -196.426 69.8154 -196.426 c
1424 68.9906 -196.426 68.2135 -195.886 67.4844 -194.806 c
1425 67.4844 -190.000 l
1426 h
1427 76.6855 -187.977 m
1428 76.6855 -200.794 l
1429 73.9854 -200.794 l
1430 73.9854 -199.782 l
1431 75.5029 -199.782 l
1432 75.5029 -188.988 l
1433 73.9854 -188.988 l
1434 73.9854 -187.977 l
1435 h
1436 f
1437 newpath
1438 -151.223 169.700 m
1439 -150.020 167.000 l
1440 -152.891 159.576 l
1441 -151.435 159.576 l
1442 -149.309 165.168 l
1443 -147.039 159.576 l
1444 -145.768 159.576 l
1445 -149.821 169.700 l
1446 h
1447 -144.168 167.000 m
1448 -136.074 162.953 l
1449 -144.168 158.906 l
1450 -144.168 160.034 l
1451 -138.337 162.953 l
1452 -144.168 165.865 l
1453 h
1454 -130.168 167.253 m
1455 -131.212 167.253 -132.056 166.762 -132.701 165.780 c
1456 -133.346 164.798 -133.668 163.516 -133.668 161.935 c
1457 -133.668 160.340 -133.343 159.057 -132.694 158.086 c
1458 -132.044 157.115 -131.189 156.630 -130.127 156.630 c
1459 -129.065 156.630 -128.209 157.115 -127.560 158.086 c
1460 -126.911 159.057 -126.586 160.333 -126.586 161.914 c
1461 -126.586 163.536 -126.911 164.832 -127.560 165.800 c
1462 -128.209 166.769 -129.079 167.253 -130.168 167.253 c
1463 h
1464 -130.154 166.241 m
1465 -128.728 166.241 -128.015 164.792 -128.015 161.894 c
1466 -128.015 159.059 -128.719 157.642 -130.127 157.642 c
1467 -131.531 157.642 -132.232 159.073 -132.232 161.935 c
1468 -132.232 164.806 -131.540 166.241 -130.154 166.241 c
1469 h
1470 -114.021 167.000 m
1471 -114.521 166.398 l
1472 -115.268 166.968 -116.141 167.253 -117.139 167.253 c
1473 -118.196 167.253 -119.065 166.946 -119.747 166.333 c
1474 -120.428 165.721 -120.769 164.940 -120.769 163.992 c
1475 -120.769 162.434 -119.946 161.376 -118.301 160.820 c
1476 -118.757 159.995 -118.984 159.310 -118.984 158.763 c
1477 -118.984 158.166 -118.746 157.661 -118.270 157.249 c
1478 -117.794 156.836 -117.216 156.630 -116.537 156.630 c
1479 -115.881 156.630 -115.340 156.822 -114.914 157.208 c
1480 -114.487 157.593 -114.274 158.081 -114.274 158.674 c
1481 -114.274 159.686 -115.015 160.565 -116.496 161.312 c
1482 -115.817 162.516 -115.026 163.639 -114.124 164.683 c
1483 -113.709 164.081 -113.502 163.229 -113.502 162.126 c
1484 -113.509 161.620 l
1485 -112.169 161.620 l
1486 -112.169 163.115 -112.616 164.405 -113.509 165.489 c
1487 -113.099 166.009 -112.632 166.512 -112.107 167.000 c
1488 h
1489 -115.108 165.619 m
1490 -116.065 164.443 -116.977 163.110 -117.843 161.620 c
1491 -118.896 162.039 -119.422 162.721 -119.422 163.664 c
1492 -119.422 164.380 -119.179 164.988 -118.694 165.489 c
1493 -118.208 165.991 -117.617 166.241 -116.920 166.241 c
1494 -116.286 166.241 -115.683 166.034 -115.108 165.619 c
1495 h
1496 -116.988 160.458 m
1497 -116.022 160.016 -115.539 159.428 -115.539 158.694 c
1498 -115.539 157.993 -115.890 157.642 -116.592 157.642 c
1499 -117.285 157.642 -117.631 157.995 -117.631 158.701 c
1500 -117.631 159.166 -117.417 159.752 -116.988 160.458 c
1501 h
1502 -104.260 167.000 m
1503 -104.759 166.398 l
1504 -105.506 166.968 -106.379 167.253 -107.377 167.253 c
1505 -108.434 167.253 -109.304 166.946 -109.985 166.333 c
1506 -110.666 165.721 -111.007 164.940 -111.007 163.992 c
1507 -111.007 162.434 -110.184 161.376 -108.539 160.820 c
1508 -108.995 159.995 -109.223 159.310 -109.223 158.763 c
1509 -109.223 158.166 -108.985 157.661 -108.508 157.249 c
1510 -108.032 156.836 -107.454 156.630 -106.775 156.630 c
1511 -106.119 156.630 -105.578 156.822 -105.152 157.208 c
1512 -104.726 157.593 -104.513 158.081 -104.513 158.674 c
1513 -104.513 159.686 -105.253 160.565 -106.734 161.312 c
1514 -106.055 162.516 -105.265 163.639 -104.362 164.683 c
1515 -103.948 164.081 -103.740 163.229 -103.740 162.126 c
1516 -103.747 161.620 l
1517 -102.407 161.620 l
1518 -102.407 163.115 -102.854 164.405 -103.747 165.489 c
1519 -103.337 166.009 -102.870 166.512 -102.346 167.000 c
1520 h
1521 -105.347 165.619 m
1522 -106.304 164.443 -107.215 163.110 -108.081 161.620 c
1523 -109.134 162.039 -109.660 162.721 -109.660 163.664 c
1524 -109.660 164.380 -109.417 164.988 -108.932 165.489 c
1525 -108.447 165.991 -107.855 166.241 -107.158 166.241 c
1526 -106.525 166.241 -105.921 166.034 -105.347 165.619 c
1527 h
1528 -107.227 160.458 m
1529 -106.260 160.016 -105.777 159.428 -105.777 158.694 c
1530 -105.777 157.993 -106.128 157.642 -106.830 157.642 c
1531 -107.523 157.642 -107.869 157.995 -107.869 158.701 c
1532 -107.869 159.166 -107.655 159.752 -107.227 160.458 c
1533 h
1534 -95.7832 167.000 m
1535 -95.7832 165.653 l
1536 -94.4365 165.653 l
1537 -94.4365 167.000 l
1538 h
1539 -95.6123 164.300 m
1540 -95.7832 158.906 l
1541 -95.7832 156.883 l
1542 -94.4365 156.883 l
1543 -94.4365 158.906 l
1544 -94.6006 164.300 l
1545 h
1546 -91.5176 169.468 m
1547 -91.3604 168.299 l
1548 -90.5811 168.668 -89.8132 168.853 -89.0566 168.853 c
1549 -87.5391 168.853 -86.7803 168.048 -86.7803 166.439 c
1550 -86.7803 165.271 l
1551 -87.2770 166.310 -88.0928 166.829 -89.2275 166.829 c
1552 -90.1162 166.829 -90.8226 166.506 -91.3467 165.858 c
1553 -91.8708 165.211 -92.1328 164.339 -92.1328 163.240 c
1554 -92.1328 162.110 -91.8343 161.189 -91.2373 160.479 c
1555 -90.6403 159.768 -89.8678 159.412 -88.9199 159.412 c
1556 -88.0905 159.412 -87.3773 159.749 -86.7803 160.424 c
1557 -86.7803 159.576 l
1558 -85.4268 159.576 l
1559 -85.4268 164.977 l
1560 -85.4268 166.139 -85.4871 166.999 -85.6079 167.557 c
1561 -85.7287 168.115 -85.9554 168.572 -86.2881 168.928 c
1562 -86.8760 169.552 -87.7897 169.864 -89.0293 169.864 c
1563 -89.8952 169.864 -90.7246 169.732 -91.5176 169.468 c
1564 h
1565 -86.7803 164.430 m
1566 -86.7803 161.347 l
1567 -87.3727 160.731 -88.0176 160.424 -88.7148 160.424 c
1568 -89.3346 160.424 -89.8200 160.672 -90.1709 161.169 c
1569 -90.5218 161.666 -90.6973 162.347 -90.6973 163.213 c
1570 -90.6973 164.840 -90.1253 165.653 -88.9814 165.653 c
1571 -88.2021 165.653 -87.4684 165.245 -86.7803 164.430 c
1572 h
1573 -82.8154 167.000 m
1574 -82.8154 159.576 l
1575 -81.4688 159.576 l
1576 -81.4688 160.971 l
1577 -80.9355 159.932 -80.1608 159.412 -79.1445 159.412 c
1578 -79.0078 159.412 -78.8643 159.424 -78.7139 159.446 c
1579 -78.7139 160.704 l
1580 -78.9463 160.627 -79.1514 160.588 -79.3291 160.588 c
1581 -80.1813 160.588 -80.8945 161.094 -81.4688 162.105 c
1582 -81.4688 167.000 l
1583 h
1584 -77.0869 167.000 m
1585 -77.0869 159.576 l
1586 -75.7402 159.576 l
1587 -75.7402 167.000 l
1588 h
1589 -77.0869 158.229 m
1590 -77.0869 156.883 l
1591 -75.7402 156.883 l
1592 -75.7402 158.229 l
1593 h
1594 -68.2754 167.000 m
1595 -68.2754 165.605 l
1596 -68.8223 166.649 -69.6471 167.171 -70.7500 167.171 c
1597 -71.6432 167.171 -72.3462 166.845 -72.8589 166.193 c
1598 -73.3716 165.542 -73.6279 164.651 -73.6279 163.521 c
1599 -73.6279 162.285 -73.3374 161.292 -72.7563 160.540 c
1600 -72.1753 159.788 -71.4108 159.412 -70.4629 159.412 c
1601 -69.5833 159.412 -68.8542 159.749 -68.2754 160.424 c
1602 -68.2754 156.206 l
1603 -66.9219 156.206 l
1604 -66.9219 167.000 l
1605 h
1606 -68.2754 161.347 m
1607 -68.9727 160.731 -69.6335 160.424 -70.2578 160.424 c
1608 -71.5475 160.424 -72.1924 161.410 -72.1924 163.384 c
1609 -72.1924 165.120 -71.6182 165.988 -70.4697 165.988 c
1610 -69.7223 165.988 -68.9909 165.580 -68.2754 164.765 c
1611 h
1612 -64.2285 169.023 m
1613 -64.2285 156.206 l
1614 -61.5283 156.206 l
1615 -61.5283 157.218 l
1616 -63.0459 157.218 l
1617 -63.0459 168.012 l
1618 -61.5283 168.012 l
1619 -61.5283 169.023 l
1620 h
1621 -60.4209 167.000 m
1622 -57.5977 163.165 l
1623 -60.3389 159.576 l
1624 -58.7393 159.576 l
1625 -56.5723 162.434 l
1626 -54.6104 159.576 l
1627 -53.2979 159.576 l
1628 -55.8682 163.343 l
1629 -53.0723 167.000 l
1630 -54.6719 167.000 l
1631 -56.9072 164.061 l
1632 -59.0674 167.000 l
1633 h
1634 -49.2305 169.023 m
1635 -49.2305 156.206 l
1636 -51.9307 156.206 l
1637 -51.9307 157.218 l
1638 -50.4131 157.218 l
1639 -50.4131 168.012 l
1640 -51.9307 168.012 l
1641 -51.9307 169.023 l
1642 h
1643 -46.5371 169.023 m
1644 -46.5371 156.206 l
1645 -43.8369 156.206 l
1646 -43.8369 157.218 l
1647 -45.3545 157.218 l
1648 -45.3545 168.012 l
1649 -43.8369 168.012 l
1650 -43.8369 169.023 l
1651 h
1652 -41.5537 169.700 m
1653 -40.3506 167.000 l
1654 -43.2217 159.576 l
1655 -41.7656 159.576 l
1656 -39.6396 165.168 l
1657 -37.3701 159.576 l
1658 -36.0986 159.576 l
1659 -40.1523 169.700 l
1660 h
1661 -35.0049 163.459 m
1662 -35.0049 162.447 l
1663 -28.9346 162.447 l
1664 -28.9346 163.459 l
1665 h
1666 -25.8105 167.000 m
1667 -25.8105 165.988 l
1668 -23.7871 165.988 l
1669 -23.7871 158.004 l
1670 -25.8105 158.510 l
1671 -25.8105 157.471 l
1672 -22.4336 156.630 l
1673 -22.4336 165.988 l
1674 -20.4102 165.988 l
1675 -20.4102 167.000 l
1676 h
1677 -15.8574 169.023 m
1678 -15.8574 156.206 l
1679 -18.5576 156.206 l
1680 -18.5576 157.218 l
1681 -17.0400 157.218 l
1682 -17.0400 168.012 l
1683 -18.5576 168.012 l
1684 -18.5576 169.023 l
1685 h
1686 f
1687 .258824 .627451 .658824 RG
1688 newpath
1689 -155.012 -164.000 m
1690 -155.012 -165.395 l
1691 -155.727 -164.351 -156.595 -163.829 -157.616 -163.829 c
1692 -158.263 -163.829 -158.778 -164.033 -159.161 -164.441 c
1693 -159.544 -164.849 -159.735 -165.399 -159.735 -166.092 c
1694 -159.735 -171.424 l
1695 -158.389 -171.424 l
1696 -158.389 -166.529 l
1697 -158.389 -165.973 -158.308 -165.578 -158.146 -165.343 c
1698 -157.984 -165.109 -157.714 -164.991 -157.336 -164.991 c
1699 -156.516 -164.991 -155.741 -165.531 -155.012 -166.611 c
1700 -155.012 -171.424 l
1701 -153.665 -171.424 l
1702 -153.665 -164.000 l
1703 h
1704 -150.965 -161.300 m
1705 -150.965 -171.424 l
1706 -149.618 -171.424 l
1707 -149.618 -170.029 l
1708 -149.067 -171.068 -148.240 -171.588 -147.137 -171.588 c
1709 -146.243 -171.588 -145.541 -171.262 -145.028 -170.610 c
1710 -144.515 -169.959 -144.259 -169.068 -144.259 -167.938 c
1711 -144.259 -166.707 -144.549 -165.715 -145.130 -164.960 c
1712 -145.711 -164.206 -146.476 -163.829 -147.424 -163.829 c
1713 -148.303 -163.829 -149.035 -164.166 -149.618 -164.841 c
1714 -149.618 -161.300 l
1715 h
1716 -149.618 -165.771 m
1717 -148.925 -165.151 -148.265 -164.841 -147.636 -164.841 c
1718 -146.341 -164.841 -145.694 -165.827 -145.694 -167.801 c
1719 -145.694 -169.542 -146.269 -170.412 -147.417 -170.412 c
1720 -148.169 -170.412 -148.903 -170.004 -149.618 -169.188 c
1721 h
1722 -142.153 -161.977 m
1723 -142.153 -174.794 l
1724 -139.453 -174.794 l
1725 -139.453 -173.782 l
1726 -140.971 -173.782 l
1727 -140.971 -162.988 l
1728 -139.453 -162.988 l
1729 -139.453 -161.977 l
1730 h
1731 -137.601 -164.000 m
1732 -137.601 -171.424 l
1733 -136.254 -171.424 l
1734 -136.254 -164.000 l
1735 h
1736 -137.601 -172.771 m
1737 -137.601 -174.117 l
1738 -136.254 -174.117 l
1739 -136.254 -172.771 l
1740 h
1741 -128.789 -164.000 m
1742 -128.789 -165.395 l
1743 -129.336 -164.351 -130.161 -163.829 -131.264 -163.829 c
1744 -132.157 -163.829 -132.860 -164.155 -133.373 -164.807 c
1745 -133.885 -165.458 -134.142 -166.349 -134.142 -167.479 c
1746 -134.142 -168.715 -133.851 -169.708 -133.270 -170.460 c
1747 -132.689 -171.212 -131.924 -171.588 -130.977 -171.588 c
1748 -130.097 -171.588 -129.368 -171.251 -128.789 -170.576 c
1749 -128.789 -174.794 l
1750 -127.436 -174.794 l
1751 -127.436 -164.000 l
1752 h
1753 -128.789 -169.653 m
1754 -129.486 -170.269 -130.147 -170.576 -130.771 -170.576 c
1755 -132.061 -170.576 -132.706 -169.590 -132.706 -167.616 c
1756 -132.706 -165.880 -132.132 -165.012 -130.983 -165.012 c
1757 -130.236 -165.012 -129.505 -165.420 -128.789 -166.235 c
1758 h
1759 -122.883 -161.977 m
1760 -122.883 -174.794 l
1761 -125.583 -174.794 l
1762 -125.583 -173.782 l
1763 -124.065 -173.782 l
1764 -124.065 -162.988 l
1765 -125.583 -162.988 l
1766 -125.583 -161.977 l
1767 h
1768 -119.998 -164.000 m
1769 -119.998 -165.347 l
1770 -118.651 -165.347 l
1771 -118.651 -164.000 l
1772 h
1773 -119.827 -166.700 m
1774 -119.998 -172.094 l
1775 -119.998 -174.117 l
1776 -118.651 -174.117 l
1777 -118.651 -172.094 l
1778 -118.815 -166.700 l
1779 h
1780 f
1781 .647059 .686275 .803922 RG
1782 newpath
1783 -302.000 -34.0000 m
1784 -302.000 -27.3726 -307.373 -22.0000 -314.000 -22.0000 c
1785 -320.627 -22.0000 -326.000 -27.3726 -326.000 -34.0000 c
1786 -326.000 -40.6274 -320.627 -46.0000 -314.000 -46.0000 c
1787 -307.373 -46.0000 -302.000 -40.6274 -302.000 -34.0000 c
1788 h
1789 f
1790 0.00000 0.00000 0.00000 RG
1791 newpath
1792 -302.000 -34.0000 m
1793 -302.000 -27.3726 -307.373 -22.0000 -314.000 -22.0000 c
1794 -320.627 -22.0000 -326.000 -27.3726 -326.000 -34.0000 c
1795 -326.000 -40.6274 -320.627 -46.0000 -314.000 -46.0000 c
1796 -307.373 -46.0000 -302.000 -40.6274 -302.000 -34.0000 c
1797 h
1798 S
1799 .647059 .686275 .803922 RG
1800 newpath
1801 -404.000 -76.0000 m
1802 -404.000 -69.3726 -409.373 -64.0000 -416.000 -64.0000 c
1803 -422.627 -64.0000 -428.000 -69.3726 -428.000 -76.0000 c
1804 -428.000 -82.6274 -422.627 -88.0000 -416.000 -88.0000 c
1805 -409.373 -88.0000 -404.000 -82.6274 -404.000 -76.0000 c
1806 h
1807 f
1808 0.00000 0.00000 0.00000 RG
1809 newpath
1810 -404.000 -76.0000 m
1811 -404.000 -69.3726 -409.373 -64.0000 -416.000 -64.0000 c
1812 -422.627 -64.0000 -428.000 -69.3726 -428.000 -76.0000 c
1813 -428.000 -82.6274 -422.627 -88.0000 -416.000 -88.0000 c
1814 -409.373 -88.0000 -404.000 -82.6274 -404.000 -76.0000 c
1815 h
1816 S
1817 newpath
1818 -408.000 -76.0000 m
1819 -408.000 -71.5817 -411.582 -68.0000 -416.000 -68.0000 c
1820 -420.418 -68.0000 -424.000 -71.5817 -424.000 -76.0000 c
1821 -424.000 -80.4183 -420.418 -84.0000 -416.000 -84.0000 c
1822 -411.582 -84.0000 -408.000 -80.4183 -408.000 -76.0000 c
1823 h
1824 S
1825 newpath
1826 -420.330 -78.5000 m
1827 -421.543 -76.3986 -421.073 -73.7295 -419.214 -72.1698 c
1828 -417.355 -70.6101 -414.645 -70.6101 -412.786 -72.1698 c
1829 -410.927 -73.7295 -410.457 -76.3986 -411.670 -78.5000 c
1830 S
1831 .647059 .686275 .803922 RG
1832 newpath
1833 -90.0000 -34.0000 m
1834 -90.0000 -27.3726 -95.3726 -22.0000 -102.000 -22.0000 c
1835 -108.627 -22.0000 -114.000 -27.3726 -114.000 -34.0000 c
1836 -114.000 -40.6274 -108.627 -46.0000 -102.000 -46.0000 c
1837 -95.3726 -46.0000 -90.0000 -40.6274 -90.0000 -34.0000 c
1838 h
1839 f
1840 0.00000 0.00000 0.00000 RG
1841 newpath
1842 -90.0000 -34.0000 m
1843 -90.0000 -27.3726 -95.3726 -22.0000 -102.000 -22.0000 c
1844 -108.627 -22.0000 -114.000 -27.3726 -114.000 -34.0000 c
1845 -114.000 -40.6274 -108.627 -46.0000 -102.000 -46.0000 c
1846 -95.3726 -46.0000 -90.0000 -40.6274 -90.0000 -34.0000 c
1847 h
1848 S
1849 .258824 .258824 .658824 RG
1850 newpath
1851 -151.626 67.4678 m
1852 -151.469 66.2988 l
1853 -150.689 66.6680 -149.922 66.8525 -149.165 66.8525 c
1854 -147.647 66.8525 -146.889 66.0482 -146.889 64.4395 c
1855 -146.889 63.2705 l
1856 -147.385 64.3096 -148.201 64.8291 -149.336 64.8291 c
1857 -150.225 64.8291 -150.931 64.5055 -151.455 63.8584 c
1858 -151.979 63.2113 -152.241 62.3385 -152.241 61.2402 c
1859 -152.241 60.1100 -151.943 59.1895 -151.346 58.4785 c
1860 -150.749 57.7676 -149.976 57.4121 -149.028 57.4121 c
1861 -148.199 57.4121 -147.486 57.7493 -146.889 58.4238 c
1862 -146.889 57.5762 l
1863 -145.535 57.5762 l
1864 -145.535 62.9766 l
1865 -145.535 64.1387 -145.596 64.9989 -145.716 65.5571 c
1866 -145.837 66.1154 -146.064 66.5723 -146.396 66.9277 c
1867 -146.984 67.5521 -147.898 67.8643 -149.138 67.8643 c
1868 -150.004 67.8643 -150.833 67.7321 -151.626 67.4678 c
1869 h
1870 -146.889 62.4297 m
1871 -146.889 59.3467 l
1872 -147.481 58.7314 -148.126 58.4238 -148.823 58.4238 c
1873 -149.443 58.4238 -149.928 58.6722 -150.279 59.1689 c
1874 -150.630 59.6657 -150.806 60.3470 -150.806 61.2129 c
1875 -150.806 62.8398 -150.234 63.6533 -149.090 63.6533 c
1876 -148.311 63.6533 -147.577 63.2454 -146.889 62.4297 c
1877 h
1878 -142.924 65.0000 m
1879 -142.924 57.5762 l
1880 -141.577 57.5762 l
1881 -141.577 58.9707 l
1882 -141.044 57.9316 -140.269 57.4121 -139.253 57.4121 c
1883 -139.116 57.4121 -138.973 57.4235 -138.822 57.4463 c
1884 -138.822 58.7041 l
1885 -139.055 58.6266 -139.260 58.5879 -139.438 58.5879 c
1886 -140.290 58.5879 -141.003 59.0938 -141.577 60.1055 c
1887 -141.577 65.0000 l
1888 h
1889 -137.195 65.0000 m
1890 -137.195 57.5762 l
1891 -135.849 57.5762 l
1892 -135.849 65.0000 l
1893 h
1894 -137.195 56.2295 m
1895 -137.195 54.8828 l
1896 -135.849 54.8828 l
1897 -135.849 56.2295 l
1898 h
1899 -128.384 65.0000 m
1900 -128.384 63.6055 l
1901 -128.931 64.6491 -129.756 65.1709 -130.858 65.1709 c
1902 -131.752 65.1709 -132.455 64.8451 -132.967 64.1934 c
1903 -133.480 63.5417 -133.736 62.6507 -133.736 61.5205 c
1904 -133.736 60.2855 -133.446 59.2920 -132.865 58.5400 c
1905 -132.284 57.7881 -131.519 57.4121 -130.571 57.4121 c
1906 -129.692 57.4121 -128.963 57.7493 -128.384 58.4238 c
1907 -128.384 54.2061 l
1908 -127.030 54.2061 l
1909 -127.030 65.0000 l
1910 h
1911 -128.384 59.3467 m
1912 -129.081 58.7314 -129.742 58.4238 -130.366 58.4238 c
1913 -131.656 58.4238 -132.301 59.4105 -132.301 61.3838 c
1914 -132.301 63.1201 -131.727 63.9883 -130.578 63.9883 c
1915 -129.831 63.9883 -129.099 63.5804 -128.384 62.7646 c
1916 h
1917 -124.337 67.0234 m
1918 -124.337 54.2061 l
1919 -121.637 54.2061 l
1920 -121.637 55.2178 l
1921 -123.154 55.2178 l
1922 -123.154 66.0117 l
1923 -121.637 66.0117 l
1924 -121.637 67.0234 l
1925 h
1926 -120.529 65.0000 m
1927 -117.706 61.1650 l
1928 -120.447 57.5762 l
1929 -118.848 57.5762 l
1930 -116.681 60.4336 l
1931 -114.719 57.5762 l
1932 -113.406 57.5762 l
1933 -115.977 61.3428 l
1934 -113.181 65.0000 l
1935 -114.780 65.0000 l
1936 -117.016 62.0605 l
1937 -119.176 65.0000 l
1938 h
1939 -109.339 67.0234 m
1940 -109.339 54.2061 l
1941 -112.039 54.2061 l
1942 -112.039 55.2178 l
1943 -110.521 55.2178 l
1944 -110.521 66.0117 l
1945 -112.039 66.0117 l
1946 -112.039 67.0234 l
1947 h
1948 -106.646 67.0234 m
1949 -106.646 54.2061 l
1950 -103.945 54.2061 l
1951 -103.945 55.2178 l
1952 -105.463 55.2178 l
1953 -105.463 66.0117 l
1954 -103.945 66.0117 l
1955 -103.945 67.0234 l
1956 h
1957 -101.662 67.7002 m
1958 -100.459 65.0000 l
1959 -103.330 57.5762 l
1960 -101.874 57.5762 l
1961 -99.7480 63.1680 l
1962 -97.4785 57.5762 l
1963 -96.2070 57.5762 l
1964 -100.261 67.7002 l
1965 h
1966 -95.1133 61.4590 m
1967 -95.1133 60.4473 l
1968 -89.0430 60.4473 l
1969 -89.0430 61.4590 l
1970 h
1971 -85.9189 65.0000 m
1972 -85.9189 63.9883 l
1973 -83.8955 63.9883 l
1974 -83.8955 56.0039 l
1975 -85.9189 56.5098 l
1976 -85.9189 55.4707 l
1977 -82.5420 54.6299 l
1978 -82.5420 63.9883 l
1979 -80.5186 63.9883 l
1980 -80.5186 65.0000 l
1981 h
1982 -75.9658 67.0234 m
1983 -75.9658 54.2061 l
1984 -78.6660 54.2061 l
1985 -78.6660 55.2178 l
1986 -77.1484 55.2178 l
1987 -77.1484 66.0117 l
1988 -78.6660 66.0117 l
1989 -78.6660 67.0234 l
1990 h
1991 -73.0811 65.0000 m
1992 -73.0811 63.6533 l
1993 -71.7344 63.6533 l
1994 -71.7344 65.0000 l
1995 h
1996 -73.0811 58.9297 m
1997 -73.0811 57.5762 l
1998 -71.7344 57.5762 l
1999 -71.7344 58.9297 l
2000 h
2001 -68.6719 62.7236 m
2002 -68.6719 61.7119 l
2003 -60.5781 61.7119 l
2004 -60.5781 62.7236 l
2005 h
2006 -68.6719 60.1943 m
2007 -68.6719 59.1826 l
2008 -60.5781 59.1826 l
2009 -60.5781 60.1943 l
2010 h
2011 -55.4854 65.1709 m
2012 -56.1689 65.1709 -56.7021 64.9749 -57.0850 64.5830 c
2013 -57.4678 64.1911 -57.6592 63.6465 -57.6592 62.9492 c
2014 -57.6592 58.5879 l
2015 -58.5889 58.5879 l
2016 -58.5889 57.5762 l
2017 -57.6592 57.5762 l
2018 -57.6592 56.2295 l
2019 -56.3125 56.0996 l
2020 -56.3125 57.5762 l
2021 -54.3711 57.5762 l
2022 -54.3711 58.5879 l
2023 -56.3125 58.5879 l
2024 -56.3125 62.7031 l
2025 -56.3125 63.6738 -55.8932 64.1592 -55.0547 64.1592 c
2026 -54.8770 64.1592 -54.6605 64.1296 -54.4053 64.0703 c
2027 -54.4053 65.0000 l
2028 -54.8200 65.1139 -55.1800 65.1709 -55.4854 65.1709 c
2029 h
2030 -52.4775 65.0000 m
2031 -52.4775 57.5762 l
2032 -51.1309 57.5762 l
2033 -51.1309 58.9707 l
2034 -50.5977 57.9316 -49.8229 57.4121 -48.8066 57.4121 c
2035 -48.6699 57.4121 -48.5264 57.4235 -48.3760 57.4463 c
2036 -48.3760 58.7041 l
2037 -48.6084 58.6266 -48.8135 58.5879 -48.9912 58.5879 c
2038 -49.8434 58.5879 -50.5566 59.0938 -51.1309 60.1055 c
2039 -51.1309 65.0000 l
2040 h
2041 -42.1074 65.0000 m
2042 -42.1074 63.6055 l
2043 -42.8229 64.6491 -43.6911 65.1709 -44.7119 65.1709 c
2044 -45.3590 65.1709 -45.8740 64.9670 -46.2568 64.5591 c
2045 -46.6396 64.1512 -46.8311 63.6009 -46.8311 62.9082 c
2046 -46.8311 57.5762 l
2047 -45.4844 57.5762 l
2048 -45.4844 62.4707 l
2049 -45.4844 63.0267 -45.4035 63.4220 -45.2417 63.6567 c
2050 -45.0799 63.8914 -44.8099 64.0088 -44.4316 64.0088 c
2051 -43.6113 64.0088 -42.8366 63.4688 -42.1074 62.3887 c
2052 -42.1074 57.5762 l
2053 -40.7607 57.5762 l
2054 -40.7607 65.0000 l
2055 h
2056 -32.6191 64.7607 m
2057 -33.5215 65.0342 -34.2939 65.1709 -34.9365 65.1709 c
2058 -36.0303 65.1709 -36.9224 64.8075 -37.6128 64.0806 c
2059 -38.3032 63.3537 -38.6484 62.4115 -38.6484 61.2539 c
2060 -38.6484 60.1283 -38.3442 59.2054 -37.7358 58.4854 c
2061 -37.1274 57.7653 -36.3493 57.4053 -35.4014 57.4053 c
2062 -34.5036 57.4053 -33.8097 57.7243 -33.3198 58.3623 c
2063 -32.8299 59.0003 -32.5850 59.9072 -32.5850 61.0830 c
2064 -32.5918 61.5000 l
2065 -37.2744 61.5000 l
2066 -37.0785 63.2637 -36.2148 64.1455 -34.6836 64.1455 c
2067 -34.1230 64.1455 -33.4349 63.9951 -32.6191 63.6943 c
2068 h
2069 -37.2129 60.4883 m
2070 -33.9385 60.4883 l
2071 -33.9385 59.1074 -34.4535 58.4170 -35.4834 58.4170 c
2072 -36.5179 58.4170 -37.0944 59.1074 -37.2129 60.4883 c
2073 h
2074 -30.2402 67.1943 m
2075 -30.2402 66.6885 l
2076 -29.8027 66.5654 -29.5840 66.0482 -29.5840 65.1367 c
2077 -29.5840 65.0000 l
2078 -30.2402 65.0000 l
2079 -30.2402 63.3115 l
2080 -28.5518 63.3115 l
2081 -28.5518 64.7744 l
2082 -28.5518 66.2738 -29.1146 67.0804 -30.2402 67.1943 c
2083 h
2084 f
2085 newpath
2086 -151.626 84.4678 m
2087 -151.469 83.2988 l
2088 -150.689 83.6680 -149.922 83.8525 -149.165 83.8525 c
2089 -147.647 83.8525 -146.889 83.0482 -146.889 81.4395 c
2090 -146.889 80.2705 l
2091 -147.385 81.3096 -148.201 81.8291 -149.336 81.8291 c
2092 -150.225 81.8291 -150.931 81.5055 -151.455 80.8584 c
2093 -151.979 80.2113 -152.241 79.3385 -152.241 78.2402 c
2094 -152.241 77.1100 -151.943 76.1895 -151.346 75.4785 c
2095 -150.749 74.7676 -149.976 74.4121 -149.028 74.4121 c
2096 -148.199 74.4121 -147.486 74.7493 -146.889 75.4238 c
2097 -146.889 74.5762 l
2098 -145.535 74.5762 l
2099 -145.535 79.9766 l
2100 -145.535 81.1387 -145.596 81.9989 -145.716 82.5571 c
2101 -145.837 83.1154 -146.064 83.5723 -146.396 83.9277 c
2102 -146.984 84.5521 -147.898 84.8643 -149.138 84.8643 c
2103 -150.004 84.8643 -150.833 84.7321 -151.626 84.4678 c
2104 h
2105 -146.889 79.4297 m
2106 -146.889 76.3467 l
2107 -147.481 75.7314 -148.126 75.4238 -148.823 75.4238 c
2108 -149.443 75.4238 -149.928 75.6722 -150.279 76.1689 c
2109 -150.630 76.6657 -150.806 77.3470 -150.806 78.2129 c
2110 -150.806 79.8398 -150.234 80.6533 -149.090 80.6533 c
2111 -148.311 80.6533 -147.577 80.2454 -146.889 79.4297 c
2112 h
2113 -142.924 82.0000 m
2114 -142.924 74.5762 l
2115 -141.577 74.5762 l
2116 -141.577 75.9707 l
2117 -141.044 74.9316 -140.269 74.4121 -139.253 74.4121 c
2118 -139.116 74.4121 -138.973 74.4235 -138.822 74.4463 c
2119 -138.822 75.7041 l
2120 -139.055 75.6266 -139.260 75.5879 -139.438 75.5879 c
2121 -140.290 75.5879 -141.003 76.0938 -141.577 77.1055 c
2122 -141.577 82.0000 l
2123 h
2124 -137.195 82.0000 m
2125 -137.195 74.5762 l
2126 -135.849 74.5762 l
2127 -135.849 82.0000 l
2128 h
2129 -137.195 73.2295 m
2130 -137.195 71.8828 l
2131 -135.849 71.8828 l
2132 -135.849 73.2295 l
2133 h
2134 -128.384 82.0000 m
2135 -128.384 80.6055 l
2136 -128.931 81.6491 -129.756 82.1709 -130.858 82.1709 c
2137 -131.752 82.1709 -132.455 81.8451 -132.967 81.1934 c
2138 -133.480 80.5417 -133.736 79.6507 -133.736 78.5205 c
2139 -133.736 77.2855 -133.446 76.2920 -132.865 75.5400 c
2140 -132.284 74.7881 -131.519 74.4121 -130.571 74.4121 c
2141 -129.692 74.4121 -128.963 74.7493 -128.384 75.4238 c
2142 -128.384 71.2061 l
2143 -127.030 71.2061 l
2144 -127.030 82.0000 l
2145 h
2146 -128.384 76.3467 m
2147 -129.081 75.7314 -129.742 75.4238 -130.366 75.4238 c
2148 -131.656 75.4238 -132.301 76.4105 -132.301 78.3838 c
2149 -132.301 80.1201 -131.727 80.9883 -130.578 80.9883 c
2150 -129.831 80.9883 -129.099 80.5804 -128.384 79.7646 c
2151 h
2152 -124.337 84.0234 m
2153 -124.337 71.2061 l
2154 -121.637 71.2061 l
2155 -121.637 72.2178 l
2156 -123.154 72.2178 l
2157 -123.154 83.0117 l
2158 -121.637 83.0117 l
2159 -121.637 84.0234 l
2160 h
2161 -120.529 82.0000 m
2162 -117.706 78.1650 l
2163 -120.447 74.5762 l
2164 -118.848 74.5762 l
2165 -116.681 77.4336 l
2166 -114.719 74.5762 l
2167 -113.406 74.5762 l
2168 -115.977 78.3428 l
2169 -113.181 82.0000 l
2170 -114.780 82.0000 l
2171 -117.016 79.0605 l
2172 -119.176 82.0000 l
2173 h
2174 -109.339 84.0234 m
2175 -109.339 71.2061 l
2176 -112.039 71.2061 l
2177 -112.039 72.2178 l
2178 -110.521 72.2178 l
2179 -110.521 83.0117 l
2180 -112.039 83.0117 l
2181 -112.039 84.0234 l
2182 h
2183 -106.646 84.0234 m
2184 -106.646 71.2061 l
2185 -103.945 71.2061 l
2186 -103.945 72.2178 l
2187 -105.463 72.2178 l
2188 -105.463 83.0117 l
2189 -103.945 83.0117 l
2190 -103.945 84.0234 l
2191 h
2192 -101.662 84.7002 m
2193 -100.459 82.0000 l
2194 -103.330 74.5762 l
2195 -101.874 74.5762 l
2196 -99.7480 80.1680 l
2197 -97.4785 74.5762 l
2198 -96.2070 74.5762 l
2199 -100.261 84.7002 l
2200 h
2201 -91.0664 82.0000 m
2202 -91.0664 78.4590 l
2203 -94.6074 78.4590 l
2204 -94.6074 77.4473 l
2205 -91.0664 77.4473 l
2206 -91.0664 73.9062 l
2207 -90.0547 73.9062 l
2208 -90.0547 77.4473 l
2209 -86.5137 77.4473 l
2210 -86.5137 78.4590 l
2211 -90.0547 78.4590 l
2212 -90.0547 82.0000 l
2213 h
2214 -83.6494 82.0000 m
2215 -83.6494 71.2061 l
2216 -82.3027 71.2061 l
2217 -82.3027 82.0000 l
2218 h
2219 -74.1611 81.7607 m
2220 -75.0635 82.0342 -75.8359 82.1709 -76.4785 82.1709 c
2221 -77.5723 82.1709 -78.4644 81.8075 -79.1548 81.0806 c
2222 -79.8452 80.3537 -80.1904 79.4115 -80.1904 78.2539 c
2223 -80.1904 77.1283 -79.8862 76.2054 -79.2778 75.4854 c
2224 -78.6694 74.7653 -77.8913 74.4053 -76.9434 74.4053 c
2225 -76.0456 74.4053 -75.3517 74.7243 -74.8618 75.3623 c
2226 -74.3719 76.0003 -74.1270 76.9072 -74.1270 78.0830 c
2227 -74.1338 78.5000 l
2228 -78.8164 78.5000 l
2229 -78.6204 80.2637 -77.7568 81.1455 -76.2256 81.1455 c
2230 -75.6650 81.1455 -74.9769 80.9951 -74.1611 80.6943 c
2231 h
2232 -78.7549 77.4883 m
2233 -75.4805 77.4883 l
2234 -75.4805 76.1074 -75.9954 75.4170 -77.0254 75.4170 c
2235 -78.0599 75.4170 -78.6364 76.1074 -78.7549 77.4883 c
2236 h
2237 -71.8027 82.0000 m
2238 -71.8027 74.5762 l
2239 -70.4561 74.5762 l
2240 -70.4561 75.9707 l
2241 -69.7451 74.9316 -68.8747 74.4121 -67.8447 74.4121 c
2242 -67.2021 74.4121 -66.6895 74.6160 -66.3066 75.0239 c
2243 -65.9238 75.4318 -65.7324 75.9798 -65.7324 76.6680 c
2244 -65.7324 82.0000 l
2245 -67.0791 82.0000 l
2246 -67.0791 77.1055 l
2247 -67.0791 76.5540 -67.1600 76.1610 -67.3218 75.9263 c
2248 -67.4836 75.6916 -67.7513 75.5742 -68.1250 75.5742 c
2249 -68.9499 75.5742 -69.7269 76.1143 -70.4561 77.1943 c
2250 -70.4561 82.0000 l
2251 h
2252 -63.0869 84.4678 m
2253 -62.9297 83.2988 l
2254 -62.1504 83.6680 -61.3825 83.8525 -60.6260 83.8525 c
2255 -59.1084 83.8525 -58.3496 83.0482 -58.3496 81.4395 c
2256 -58.3496 80.2705 l
2257 -58.8464 81.3096 -59.6621 81.8291 -60.7969 81.8291 c
2258 -61.6855 81.8291 -62.3919 81.5055 -62.9160 80.8584 c
2259 -63.4401 80.2113 -63.7021 79.3385 -63.7021 78.2402 c
2260 -63.7021 77.1100 -63.4036 76.1895 -62.8066 75.4785 c
2261 -62.2096 74.7676 -61.4372 74.4121 -60.4893 74.4121 c
2262 -59.6598 74.4121 -58.9466 74.7493 -58.3496 75.4238 c
2263 -58.3496 74.5762 l
2264 -56.9961 74.5762 l
2265 -56.9961 79.9766 l
2266 -56.9961 81.1387 -57.0565 81.9989 -57.1772 82.5571 c
2267 -57.2980 83.1154 -57.5247 83.5723 -57.8574 83.9277 c
2268 -58.4453 84.5521 -59.3590 84.8643 -60.5986 84.8643 c
2269 -61.4645 84.8643 -62.2939 84.7321 -63.0869 84.4678 c
2270 h
2271 -58.3496 79.4297 m
2272 -58.3496 76.3467 l
2273 -58.9421 75.7314 -59.5869 75.4238 -60.2842 75.4238 c
2274 -60.9040 75.4238 -61.3893 75.6722 -61.7402 76.1689 c
2275 -62.0911 76.6657 -62.2666 77.3470 -62.2666 78.2129 c
2276 -62.2666 79.8398 -61.6947 80.6533 -60.5508 80.6533 c
2277 -59.7715 80.6533 -59.0378 80.2454 -58.3496 79.4297 c
2278 h
2279 -52.1562 82.1709 m
2280 -52.8398 82.1709 -53.3730 81.9749 -53.7559 81.5830 c
2281 -54.1387 81.1911 -54.3301 80.6465 -54.3301 79.9492 c
2282 -54.3301 75.5879 l
2283 -55.2598 75.5879 l
2284 -55.2598 74.5762 l
2285 -54.3301 74.5762 l
2286 -54.3301 73.2295 l
2287 -52.9834 73.0996 l
2288 -52.9834 74.5762 l
2289 -51.0420 74.5762 l
2290 -51.0420 75.5879 l
2291 -52.9834 75.5879 l
2292 -52.9834 79.7031 l
2293 -52.9834 80.6738 -52.5641 81.1592 -51.7256 81.1592 c
2294 -51.5479 81.1592 -51.3314 81.1296 -51.0762 81.0703 c
2295 -51.0762 82.0000 l
2296 -51.4909 82.1139 -51.8509 82.1709 -52.1562 82.1709 c
2297 h
2298 -49.1484 82.0000 m
2299 -49.1484 71.2061 l
2300 -47.8018 71.2061 l
2301 -47.8018 75.9707 l
2302 -47.0908 74.9316 -46.2204 74.4121 -45.1904 74.4121 c
2303 -44.5479 74.4121 -44.0352 74.6160 -43.6523 75.0239 c
2304 -43.2695 75.4318 -43.0781 75.9798 -43.0781 76.6680 c
2305 -43.0781 82.0000 l
2306 -44.4248 82.0000 l
2307 -44.4248 77.1055 l
2308 -44.4248 76.5540 -44.5057 76.1610 -44.6675 75.9263 c
2309 -44.8293 75.6916 -45.0970 75.5742 -45.4707 75.5742 c
2310 -46.2956 75.5742 -47.0726 76.1143 -47.8018 77.1943 c
2311 -47.8018 82.0000 l
2312 h
2313 -40.7949 78.4590 m
2314 -40.7949 77.4473 l
2315 -34.7246 77.4473 l
2316 -34.7246 78.4590 l
2317 h
2318 -31.6006 82.0000 m
2319 -31.6006 80.9883 l
2320 -29.5771 80.9883 l
2321 -29.5771 73.0039 l
2322 -31.6006 73.5098 l
2323 -31.6006 72.4707 l
2324 -28.2236 71.6299 l
2325 -28.2236 80.9883 l
2326 -26.2002 80.9883 l
2327 -26.2002 82.0000 l
2328 h
2329 -21.6475 84.0234 m
2330 -21.6475 71.2061 l
2331 -24.3477 71.2061 l
2332 -24.3477 72.2178 l
2333 -22.8301 72.2178 l
2334 -22.8301 83.0117 l
2335 -24.3477 83.0117 l
2336 -24.3477 84.0234 l
2337 h
2338 -18.7627 82.0000 m
2339 -18.7627 80.6533 l
2340 -17.4160 80.6533 l
2341 -17.4160 82.0000 l
2342 h
2343 -18.7627 75.9297 m
2344 -18.7627 74.5762 l
2345 -17.4160 74.5762 l
2346 -17.4160 75.9297 l
2347 h
2348 -14.3535 79.7236 m
2349 -14.3535 78.7119 l
2350 -6.25977 78.7119 l
2351 -6.25977 79.7236 l
2352 h
2353 -14.3535 77.1943 m
2354 -14.3535 76.1826 l
2355 -6.25977 76.1826 l
2356 -6.25977 77.1943 l
2357 h
2358 -1.78906 75.5879 m
2359 -1.78906 82.0000 l
2360 -3.14258 82.0000 l
2361 -3.14258 75.5879 l
2362 -4.19531 75.5879 l
2363 -4.19531 74.5762 l
2364 -3.14258 74.5762 l
2365 -3.14258 73.6875 l
2366 -3.14258 71.9193 -2.33594 71.0352 -.722656 71.0352 c
2367 -.271484 71.0352 .241211 71.1104 .815430 71.2607 c
2368 .815430 72.3271 l
2369 .209310 72.1403 -.276042 72.0469 -.640625 72.0469 c
2370 -1.08268 72.0469 -1.38460 72.1528 -1.54639 72.3647 c
2371 -1.70817 72.5767 -1.78906 72.9697 -1.78906 73.5439 c
2372 -1.78906 74.5762 l
2373 .0634766 74.5762 l
2374 .0634766 75.5879 l
2375 h
2376 5.58008 81.0566 m
2377 4.77344 81.7995 3.99642 82.1709 3.24902 82.1709 c
2378 2.63379 82.1709 2.12337 81.9784 1.71777 81.5933 c
2379 1.31217 81.2082 1.10938 80.7217 1.10938 80.1338 c
2380 1.10938 79.3226 1.45003 78.6994 2.13135 78.2642 c
2381 2.81266 77.8289 3.78906 77.6113 5.06055 77.6113 c
2382 5.38184 77.6113 l
2383 5.38184 76.7158 l
2384 5.38184 75.8545 4.93978 75.4238 4.05566 75.4238 c
2385 3.34473 75.4238 2.57682 75.6426 1.75195 76.0801 c
2386 1.75195 74.9658 l
2387 2.65885 74.5967 3.50879 74.4121 4.30176 74.4121 c
2388 5.13118 74.4121 5.74300 74.5990 6.13721 74.9727 c
2389 6.53141 75.3464 6.72852 75.9274 6.72852 76.7158 c
2390 6.72852 80.0791 l
2391 6.72852 80.8493 6.96549 81.2344 7.43945 81.2344 c
2392 7.49870 81.2344 7.58529 81.2253 7.69922 81.2070 c
2393 7.79492 81.9521 l
2394 7.48958 82.0980 7.15234 82.1709 6.78320 82.1709 c
2395 6.15430 82.1709 5.75326 81.7995 5.58008 81.0566 c
2396 h
2397 5.38184 80.3252 m
2398 5.38184 78.4043 l
2399 4.93066 78.3906 l
2400 4.19238 78.3906 3.59538 78.5308 3.13965 78.8110 c
2401 2.68392 79.0913 2.45605 79.4593 2.45605 79.9150 c
2402 2.45605 80.2386 2.56999 80.5120 2.79785 80.7354 c
2403 3.02572 80.9587 3.30371 81.0703 3.63184 81.0703 c
2404 4.19238 81.0703 4.77572 80.8219 5.38184 80.3252 c
2405 h
2406 9.48340 82.0000 m
2407 9.48340 71.2061 l
2408 10.8301 71.2061 l
2409 10.8301 82.0000 l
2410 h
2411 15.4990 82.1709 m
2412 14.8838 82.1709 14.1364 82.0273 13.2568 81.7402 c
2413 13.2568 80.5029 l
2414 14.1364 80.9404 14.9020 81.1592 15.5537 81.1592 c
2415 15.9411 81.1592 16.2624 81.0544 16.5176 80.8447 c
2416 16.7728 80.6351 16.9004 80.3730 16.9004 80.0586 c
2417 16.9004 79.5983 16.5426 79.2178 15.8271 78.9170 c
2418 15.0410 78.5820 l
2419 13.8789 78.0990 13.2979 77.4040 13.2979 76.4971 c
2420 13.2979 75.8499 13.5269 75.3407 13.9849 74.9692 c
2421 14.4429 74.5978 15.0706 74.4121 15.8682 74.4121 c
2422 16.2829 74.4121 16.7956 74.4691 17.4062 74.5830 c
2423 17.6865 74.6377 l
2424 17.6865 75.7588 l
2425 16.9346 75.5355 16.3376 75.4238 15.8955 75.4238 c
2426 15.0296 75.4238 14.5967 75.7383 14.5967 76.3672 c
2427 14.5967 76.7728 14.9248 77.1146 15.5811 77.3926 c
2428 16.2305 77.6660 l
2429 16.9642 77.9759 17.4837 78.3029 17.7891 78.6470 c
2430 18.0944 78.9910 18.2471 79.4206 18.2471 79.9355 c
2431 18.2471 80.5872 17.9896 81.1227 17.4746 81.5420 c
2432 16.9596 81.9613 16.3011 82.1709 15.4990 82.1709 c
2433 h
2434 26.1084 81.7607 m
2435 25.2061 82.0342 24.4336 82.1709 23.7910 82.1709 c
2436 22.6973 82.1709 21.8052 81.8075 21.1147 81.0806 c
2437 20.4243 80.3537 20.0791 79.4115 20.0791 78.2539 c
2438 20.0791 77.1283 20.3833 76.2054 20.9917 75.4854 c
2439 21.6001 74.7653 22.3783 74.4053 23.3262 74.4053 c
2440 24.2240 74.4053 24.9178 74.7243 25.4077 75.3623 c
2441 25.8976 76.0003 26.1426 76.9072 26.1426 78.0830 c
2442 26.1357 78.5000 l
2443 21.4531 78.5000 l
2444 21.6491 80.2637 22.5127 81.1455 24.0439 81.1455 c
2445 24.6045 81.1455 25.2926 80.9951 26.1084 80.6943 c
2446 h
2447 21.5146 77.4883 m
2448 24.7891 77.4883 l
2449 24.7891 76.1074 24.2741 75.4170 23.2441 75.4170 c
2450 22.2096 75.4170 21.6331 76.1074 21.5146 77.4883 c
2451 h
2452 28.4873 84.1943 m
2453 28.4873 83.6885 l
2454 28.9248 83.5654 29.1436 83.0482 29.1436 82.1367 c
2455 29.1436 82.0000 l
2456 28.4873 82.0000 l
2457 28.4873 80.3115 l
2458 30.1758 80.3115 l
2459 30.1758 81.7744 l
2460 30.1758 83.2738 29.6130 84.0804 28.4873 84.1943 c
2461 h
2462 f
2463 newpath
2464 -151.223 101.700 m
2465 -150.020 99.0000 l
2466 -152.891 91.5762 l
2467 -151.435 91.5762 l
2468 -149.309 97.1680 l
2469 -147.039 91.5762 l
2470 -145.768 91.5762 l
2471 -149.821 101.700 l
2472 h
2473 -144.147 99.0000 m
2474 -144.147 97.6533 l
2475 -142.801 97.6533 l
2476 -142.801 99.0000 l
2477 h
2478 -144.147 92.9297 m
2479 -144.147 91.5762 l
2480 -142.801 91.5762 l
2481 -142.801 92.9297 l
2482 h
2483 -139.738 96.7236 m
2484 -139.738 95.7119 l
2485 -131.645 95.7119 l
2486 -131.645 96.7236 l
2487 h
2488 -139.738 94.1943 m
2489 -139.738 93.1826 l
2490 -131.645 93.1826 l
2491 -131.645 94.1943 l
2492 h
2493 -128.350 101.700 m
2494 -127.146 99.0000 l
2495 -130.018 91.5762 l
2496 -128.562 91.5762 l
2497 -126.436 97.1680 l
2498 -124.166 91.5762 l
2499 -122.895 91.5762 l
2500 -126.948 101.700 l
2501 h
2502 -121.801 95.4590 m
2503 -121.801 94.4473 l
2504 -115.730 94.4473 l
2505 -115.730 95.4590 l
2506 h
2507 -112.606 99.0000 m
2508 -112.606 97.9883 l
2509 -110.583 97.9883 l
2510 -110.583 90.0039 l
2511 -112.606 90.5098 l
2512 -112.606 89.4707 l
2513 -109.229 88.6299 l
2514 -109.229 97.9883 l
2515 -107.206 97.9883 l
2516 -107.206 99.0000 l
2517 h
2518 f
2519 newpath
2520 -372.653 -62.0000 m
2521 -372.653 -69.4238 l
2522 -371.307 -69.4238 l
2523 -371.307 -68.0293 l
2524 -370.773 -69.0684 -369.999 -69.5879 -368.982 -69.5879 c
2525 -368.846 -69.5879 -368.702 -69.5765 -368.552 -69.5537 c
2526 -368.552 -68.2959 l
2527 -368.784 -68.3734 -368.989 -68.4121 -369.167 -68.4121 c
2528 -370.019 -68.4121 -370.732 -67.9062 -371.307 -66.8945 c
2529 -371.307 -62.0000 l
2530 h
2531 -361.483 -62.2393 m
2532 -362.386 -61.9658 -363.158 -61.8291 -363.801 -61.8291 c
2533 -364.895 -61.8291 -365.787 -62.1925 -366.477 -62.9194 c
2534 -367.167 -63.6463 -367.513 -64.5885 -367.513 -65.7461 c
2535 -367.513 -66.8717 -367.208 -67.7946 -366.600 -68.5146 c
2536 -365.992 -69.2347 -365.214 -69.5947 -364.266 -69.5947 c
2537 -363.368 -69.5947 -362.674 -69.2757 -362.184 -68.6377 c
2538 -361.694 -67.9997 -361.449 -67.0928 -361.449 -65.9170 c
2539 -361.456 -65.5000 l
2540 -366.139 -65.5000 l
2541 -365.943 -63.7363 -365.079 -62.8545 -363.548 -62.8545 c
2542 -362.987 -62.8545 -362.299 -63.0049 -361.483 -63.3057 c
2543 h
2544 -366.077 -66.5117 m
2545 -362.803 -66.5117 l
2546 -362.803 -67.8926 -363.318 -68.5830 -364.348 -68.5830 c
2547 -365.382 -68.5830 -365.959 -67.8926 -366.077 -66.5117 c
2548 h
2549 -359.098 -59.5322 m
2550 -358.940 -60.7012 l
2551 -358.161 -60.3320 -357.393 -60.1475 -356.637 -60.1475 c
2552 -355.119 -60.1475 -354.360 -60.9518 -354.360 -62.5605 c
2553 -354.360 -63.7295 l
2554 -354.857 -62.6904 -355.673 -62.1709 -356.808 -62.1709 c
2555 -357.696 -62.1709 -358.403 -62.4945 -358.927 -63.1416 c
2556 -359.451 -63.7887 -359.713 -64.6615 -359.713 -65.7598 c
2557 -359.713 -66.8900 -359.414 -67.8105 -358.817 -68.5215 c
2558 -358.220 -69.2324 -357.448 -69.5879 -356.500 -69.5879 c
2559 -355.671 -69.5879 -354.957 -69.2507 -354.360 -68.5762 c
2560 -354.360 -69.4238 l
2561 -353.007 -69.4238 l
2562 -353.007 -64.0234 l
2563 -353.007 -62.8613 -353.067 -62.0011 -353.188 -61.4429 c
2564 -353.309 -60.8846 -353.535 -60.4277 -353.868 -60.0723 c
2565 -354.456 -59.4479 -355.370 -59.1357 -356.609 -59.1357 c
2566 -357.475 -59.1357 -358.305 -59.2679 -359.098 -59.5322 c
2567 h
2568 -354.360 -64.5703 m
2569 -354.360 -67.6533 l
2570 -354.953 -68.2686 -355.598 -68.5762 -356.295 -68.5762 c
2571 -356.915 -68.5762 -357.400 -68.3278 -357.751 -67.8311 c
2572 -358.102 -67.3343 -358.277 -66.6530 -358.277 -65.7871 c
2573 -358.277 -64.1602 -357.705 -63.3467 -356.562 -63.3467 c
2574 -355.782 -63.3467 -355.049 -63.7546 -354.360 -64.5703 c
2575 h
2576 -350.396 -62.0000 m
2577 -350.396 -69.4238 l
2578 -349.049 -69.4238 l
2579 -349.049 -62.0000 l
2580 h
2581 -350.396 -70.7705 m
2582 -350.396 -72.1172 l
2583 -349.049 -72.1172 l
2584 -349.049 -70.7705 l
2585 h
2586 -344.380 -61.8291 m
2587 -344.995 -61.8291 -345.743 -61.9727 -346.622 -62.2598 c
2588 -346.622 -63.4971 l
2589 -345.743 -63.0596 -344.977 -62.8408 -344.325 -62.8408 c
2590 -343.938 -62.8408 -343.617 -62.9456 -343.361 -63.1553 c
2591 -343.106 -63.3649 -342.979 -63.6270 -342.979 -63.9414 c
2592 -342.979 -64.4017 -343.336 -64.7822 -344.052 -65.0830 c
2593 -344.838 -65.4180 l
2594 -346.000 -65.9010 -346.581 -66.5960 -346.581 -67.5029 c
2595 -346.581 -68.1501 -346.352 -68.6593 -345.894 -69.0308 c
2596 -345.436 -69.4022 -344.808 -69.5879 -344.011 -69.5879 c
2597 -343.596 -69.5879 -343.083 -69.5309 -342.473 -69.4170 c
2598 -342.192 -69.3623 l
2599 -342.192 -68.2412 l
2600 -342.944 -68.4645 -343.541 -68.5762 -343.983 -68.5762 c
2601 -344.849 -68.5762 -345.282 -68.2617 -345.282 -67.6328 c
2602 -345.282 -67.2272 -344.954 -66.8854 -344.298 -66.6074 c
2603 -343.648 -66.3340 l
2604 -342.915 -66.0241 -342.395 -65.6971 -342.090 -65.3530 c
2605 -341.785 -65.0090 -341.632 -64.5794 -341.632 -64.0645 c
2606 -341.632 -63.4128 -341.889 -62.8773 -342.404 -62.4580 c
2607 -342.919 -62.0387 -343.578 -61.8291 -344.380 -61.8291 c
2608 h
2609 -336.983 -61.8291 m
2610 -337.667 -61.8291 -338.200 -62.0251 -338.583 -62.4170 c
2611 -338.966 -62.8089 -339.157 -63.3535 -339.157 -64.0508 c
2612 -339.157 -68.4121 l
2613 -340.087 -68.4121 l
2614 -340.087 -69.4238 l
2615 -339.157 -69.4238 l
2616 -339.157 -70.7705 l
2617 -337.811 -70.9004 l
2618 -337.811 -69.4238 l
2619 -335.869 -69.4238 l
2620 -335.869 -68.4121 l
2621 -337.811 -68.4121 l
2622 -337.811 -64.2969 l
2623 -337.811 -63.3262 -337.391 -62.8408 -336.553 -62.8408 c
2624 -336.375 -62.8408 -336.159 -62.8704 -335.903 -62.9297 c
2625 -335.903 -62.0000 l
2626 -336.318 -61.8861 -336.678 -61.8291 -336.983 -61.8291 c
2627 h
2628 -328.534 -62.2393 m
2629 -329.437 -61.9658 -330.209 -61.8291 -330.852 -61.8291 c
2630 -331.945 -61.8291 -332.837 -62.1925 -333.528 -62.9194 c
2631 -334.218 -63.6463 -334.563 -64.5885 -334.563 -65.7461 c
2632 -334.563 -66.8717 -334.259 -67.7946 -333.651 -68.5146 c
2633 -333.042 -69.2347 -332.264 -69.5947 -331.316 -69.5947 c
2634 -330.419 -69.5947 -329.725 -69.2757 -329.235 -68.6377 c
2635 -328.745 -67.9997 -328.500 -67.0928 -328.500 -65.9170 c
2636 -328.507 -65.5000 l
2637 -333.189 -65.5000 l
2638 -332.993 -63.7363 -332.130 -62.8545 -330.599 -62.8545 c
2639 -330.038 -62.8545 -329.350 -63.0049 -328.534 -63.3057 c
2640 h
2641 -333.128 -66.5117 m
2642 -329.854 -66.5117 l
2643 -329.854 -67.8926 -330.368 -68.5830 -331.398 -68.5830 c
2644 -332.433 -68.5830 -333.009 -67.8926 -333.128 -66.5117 c
2645 h
2646 -326.176 -62.0000 m
2647 -326.176 -69.4238 l
2648 -324.829 -69.4238 l
2649 -324.829 -68.0293 l
2650 -324.296 -69.0684 -323.521 -69.5879 -322.505 -69.5879 c
2651 -322.368 -69.5879 -322.225 -69.5765 -322.074 -69.5537 c
2652 -322.074 -68.2959 l
2653 -322.307 -68.3734 -322.512 -68.4121 -322.689 -68.4121 c
2654 -323.542 -68.4121 -324.255 -67.9062 -324.829 -66.8945 c
2655 -324.829 -62.0000 l
2656 h
2657 -317.747 -60.9062 m
2658 -317.747 -59.9766 l
2659 -318.731 -60.6465 -319.512 -61.5568 -320.088 -62.7075 c
2660 -320.665 -63.8582 -320.953 -65.0853 -320.953 -66.3887 c
2661 -320.953 -67.6875 -320.665 -68.9123 -320.088 -70.0630 c
2662 -319.512 -71.2137 -318.731 -72.1240 -317.747 -72.7939 c
2663 -317.747 -71.8643 l
2664 -318.417 -71.1351 -318.894 -70.3512 -319.179 -69.5127 c
2665 -319.464 -68.6742 -319.606 -67.6328 -319.606 -66.3887 c
2666 -319.606 -65.1400 -319.464 -64.0964 -319.179 -63.2578 c
2667 -318.894 -62.4193 -318.417 -61.6354 -317.747 -60.9062 c
2668 h
2669 -316.735 -60.9062 m
2670 -316.735 -59.9766 l
2671 -315.751 -60.6465 -314.971 -61.5568 -314.394 -62.7075 c
2672 -313.818 -63.8582 -313.529 -65.0853 -313.529 -66.3887 c
2673 -313.529 -67.6875 -313.818 -68.9123 -314.394 -70.0630 c
2674 -314.971 -71.2137 -315.751 -72.1240 -316.735 -72.7939 c
2675 -316.735 -71.8643 l
2676 -316.065 -71.1351 -315.588 -70.3512 -315.303 -69.5127 c
2677 -315.018 -68.6742 -314.876 -67.6328 -314.876 -66.3887 c
2678 -314.876 -65.1400 -315.018 -64.0964 -315.303 -63.2578 c
2679 -315.588 -62.4193 -316.065 -61.6354 -316.735 -60.9062 c
2680 h
2681 f
2682 .258824 .627451 .658824 RG
2683 newpath
2684 -146.889 133.000 m
2685 -146.889 131.605 l
2686 -147.436 132.649 -148.260 133.171 -149.363 133.171 c
2687 -150.257 133.171 -150.959 132.845 -151.472 132.193 c
2688 -151.985 131.542 -152.241 130.651 -152.241 129.521 c
2689 -152.241 128.285 -151.951 127.292 -151.370 126.540 c
2690 -150.789 125.788 -150.024 125.412 -149.076 125.412 c
2691 -148.197 125.412 -147.467 125.749 -146.889 126.424 c
2692 -146.889 122.206 l
2693 -145.535 122.206 l
2694 -145.535 133.000 l
2695 h
2696 -146.889 127.347 m
2697 -147.586 126.731 -148.247 126.424 -148.871 126.424 c
2698 -150.161 126.424 -150.806 127.410 -150.806 129.384 c
2699 -150.806 131.120 -150.231 131.988 -149.083 131.988 c
2700 -148.336 131.988 -147.604 131.580 -146.889 130.765 c
2701 h
2702 -139.937 133.171 m
2703 -140.998 133.171 -141.846 132.819 -142.479 132.115 c
2704 -143.113 131.411 -143.430 130.468 -143.430 129.288 c
2705 -143.430 128.094 -143.112 127.150 -142.476 126.455 c
2706 -141.840 125.760 -140.978 125.412 -139.889 125.412 c
2707 -138.799 125.412 -137.937 125.760 -137.301 126.455 c
2708 -136.666 127.150 -136.348 128.090 -136.348 129.274 c
2709 -136.348 130.487 -136.667 131.439 -137.305 132.132 c
2710 -137.943 132.825 -138.820 133.171 -139.937 133.171 c
2711 h
2712 -139.916 132.159 m
2713 -138.490 132.159 -137.776 131.198 -137.776 129.274 c
2714 -137.776 127.374 -138.480 126.424 -139.889 126.424 c
2715 -141.292 126.424 -141.994 127.379 -141.994 129.288 c
2716 -141.994 131.202 -141.301 132.159 -139.916 132.159 c
2717 h
2718 -133.381 133.000 m
2719 -135.507 125.576 l
2720 -134.188 125.576 l
2721 -132.561 131.325 l
2722 -130.804 125.576 l
2723 -129.457 125.576 l
2724 -127.919 131.325 l
2725 -126.053 125.576 l
2726 -124.897 125.576 l
2727 -127.317 133.000 l
2728 -128.671 133.000 l
2729 -130.243 127.251 l
2730 -132.021 133.000 l
2731 h
2732 -123.455 133.000 m
2733 -123.455 125.576 l
2734 -122.108 125.576 l
2735 -122.108 126.971 l
2736 -121.397 125.932 -120.527 125.412 -119.497 125.412 c
2737 -118.854 125.412 -118.342 125.616 -117.959 126.024 c
2738 -117.576 126.432 -117.385 126.980 -117.385 127.668 c
2739 -117.385 133.000 l
2740 -118.731 133.000 l
2741 -118.731 128.105 l
2742 -118.731 127.554 -118.812 127.161 -118.974 126.926 c
2743 -119.136 126.692 -119.404 126.574 -119.777 126.574 c
2744 -120.602 126.574 -121.379 127.114 -122.108 128.194 c
2745 -122.108 133.000 l
2746 h
2747 -114.767 135.023 m
2748 -114.767 122.206 l
2749 -112.066 122.206 l
2750 -112.066 123.218 l
2751 -113.584 123.218 l
2752 -113.584 134.012 l
2753 -112.066 134.012 l
2754 -112.066 135.023 l
2755 h
2756 -110.214 133.000 m
2757 -110.214 125.576 l
2758 -108.867 125.576 l
2759 -108.867 133.000 l
2760 h
2761 -110.214 124.229 m
2762 -110.214 122.883 l
2763 -108.867 122.883 l
2764 -108.867 124.229 l
2765 h
2766 -101.402 133.000 m
2767 -101.402 131.605 l
2768 -101.949 132.649 -102.774 133.171 -103.877 133.171 c
2769 -104.770 133.171 -105.473 132.845 -105.986 132.193 c
2770 -106.499 131.542 -106.755 130.651 -106.755 129.521 c
2771 -106.755 128.285 -106.464 127.292 -105.883 126.540 c
2772 -105.302 125.788 -104.538 125.412 -103.590 125.412 c
2773 -102.710 125.412 -101.981 125.749 -101.402 126.424 c
2774 -101.402 122.206 l
2775 -100.049 122.206 l
2776 -100.049 133.000 l
2777 h
2778 -101.402 127.347 m
2779 -102.100 126.731 -102.760 126.424 -103.385 126.424 c
2780 -104.674 126.424 -105.319 127.410 -105.319 129.384 c
2781 -105.319 131.120 -104.745 131.988 -103.597 131.988 c
2782 -102.849 131.988 -102.118 131.580 -101.402 130.765 c
2783 h
2784 -95.4961 135.023 m
2785 -95.4961 122.206 l
2786 -98.1963 122.206 l
2787 -98.1963 123.218 l
2788 -96.6787 123.218 l
2789 -96.6787 134.012 l
2790 -98.1963 134.012 l
2791 -98.1963 135.023 l
2792 h
2793 -92.6113 133.000 m
2794 -92.6113 131.653 l
2795 -91.2646 131.653 l
2796 -91.2646 133.000 l
2797 h
2798 -92.4404 130.300 m
2799 -92.6113 124.906 l
2800 -92.6113 122.883 l
2801 -91.2646 122.883 l
2802 -91.2646 124.906 l
2803 -91.4287 130.300 l
2804 h
2805 f
2806 newpath
2807 -242.685 -44.8291 m
2808 -243.300 -44.8291 -244.047 -44.9727 -244.927 -45.2598 c
2809 -244.927 -46.4971 l
2810 -244.047 -46.0596 -243.282 -45.8408 -242.630 -45.8408 c
2811 -242.243 -45.8408 -241.921 -45.9456 -241.666 -46.1553 c
2812 -241.411 -46.3649 -241.283 -46.6270 -241.283 -46.9414 c
2813 -241.283 -47.4017 -241.641 -47.7822 -242.356 -48.0830 c
2814 -243.143 -48.4180 l
2815 -244.305 -48.9010 -244.886 -49.5960 -244.886 -50.5029 c
2816 -244.886 -51.1501 -244.657 -51.6593 -244.199 -52.0308 c
2817 -243.741 -52.4022 -243.113 -52.5879 -242.315 -52.5879 c
2818 -241.901 -52.5879 -241.388 -52.5309 -240.777 -52.4170 c
2819 -240.497 -52.3623 l
2820 -240.497 -51.2412 l
2821 -241.249 -51.4645 -241.846 -51.5762 -242.288 -51.5762 c
2822 -243.154 -51.5762 -243.587 -51.2617 -243.587 -50.6328 c
2823 -243.587 -50.2272 -243.259 -49.8854 -242.603 -49.6074 c
2824 -241.953 -49.3340 l
2825 -241.219 -49.0241 -240.700 -48.6971 -240.395 -48.3530 c
2826 -240.089 -48.0090 -239.937 -47.5794 -239.937 -47.0645 c
2827 -239.937 -46.4128 -240.194 -45.8773 -240.709 -45.4580 c
2828 -241.224 -45.0387 -241.882 -44.8291 -242.685 -44.8291 c
2829 h
2830 -235.288 -44.8291 m
2831 -235.972 -44.8291 -236.505 -45.0251 -236.888 -45.4170 c
2832 -237.271 -45.8089 -237.462 -46.3535 -237.462 -47.0508 c
2833 -237.462 -51.4121 l
2834 -238.392 -51.4121 l
2835 -238.392 -52.4238 l
2836 -237.462 -52.4238 l
2837 -237.462 -53.7705 l
2838 -236.115 -53.9004 l
2839 -236.115 -52.4238 l
2840 -234.174 -52.4238 l
2841 -234.174 -51.4121 l
2842 -236.115 -51.4121 l
2843 -236.115 -47.2969 l
2844 -236.115 -46.3262 -235.696 -45.8408 -234.857 -45.8408 c
2845 -234.680 -45.8408 -234.463 -45.8704 -234.208 -45.9297 c
2846 -234.208 -45.0000 l
2847 -234.623 -44.8861 -234.983 -44.8291 -235.288 -44.8291 c
2848 h
2849 -228.452 -45.9434 m
2850 -229.259 -45.2005 -230.036 -44.8291 -230.783 -44.8291 c
2851 -231.398 -44.8291 -231.909 -45.0216 -232.314 -45.4067 c
2852 -232.720 -45.7918 -232.923 -46.2783 -232.923 -46.8662 c
2853 -232.923 -47.6774 -232.582 -48.3006 -231.901 -48.7358 c
2854 -231.220 -49.1711 -230.243 -49.3887 -228.972 -49.3887 c
2855 -228.650 -49.3887 l
2856 -228.650 -50.2842 l
2857 -228.650 -51.1455 -229.092 -51.5762 -229.977 -51.5762 c
2858 -230.688 -51.5762 -231.455 -51.3574 -232.280 -50.9199 c
2859 -232.280 -52.0342 l
2860 -231.373 -52.4033 -230.523 -52.5879 -229.730 -52.5879 c
2861 -228.901 -52.5879 -228.289 -52.4010 -227.895 -52.0273 c
2862 -227.501 -51.6536 -227.304 -51.0726 -227.304 -50.2842 c
2863 -227.304 -46.9209 l
2864 -227.304 -46.1507 -227.067 -45.7656 -226.593 -45.7656 c
2865 -226.534 -45.7656 -226.447 -45.7747 -226.333 -45.7930 c
2866 -226.237 -45.0479 l
2867 -226.543 -44.9020 -226.880 -44.8291 -227.249 -44.8291 c
2868 -227.878 -44.8291 -228.279 -45.2005 -228.452 -45.9434 c
2869 h
2870 -228.650 -46.6748 m
2871 -228.650 -48.5957 l
2872 -229.102 -48.6094 l
2873 -229.840 -48.6094 -230.437 -48.4692 -230.893 -48.1890 c
2874 -231.348 -47.9087 -231.576 -47.5407 -231.576 -47.0850 c
2875 -231.576 -46.7614 -231.462 -46.4880 -231.234 -46.2646 c
2876 -231.007 -46.0413 -230.729 -45.9297 -230.400 -45.9297 c
2877 -229.840 -45.9297 -229.257 -46.1781 -228.650 -46.6748 c
2878 h
2879 -224.549 -45.0000 m
2880 -224.549 -52.4238 l
2881 -223.202 -52.4238 l
2882 -223.202 -51.0293 l
2883 -222.669 -52.0684 -221.894 -52.5879 -220.878 -52.5879 c
2884 -220.741 -52.5879 -220.598 -52.5765 -220.447 -52.5537 c
2885 -220.447 -51.2959 l
2886 -220.680 -51.3734 -220.885 -51.4121 -221.062 -51.4121 c
2887 -221.915 -51.4121 -222.628 -50.9062 -223.202 -49.8945 c
2888 -223.202 -45.0000 l
2889 h
2890 -216.592 -44.8291 m
2891 -217.275 -44.8291 -217.809 -45.0251 -218.191 -45.4170 c
2892 -218.574 -45.8089 -218.766 -46.3535 -218.766 -47.0508 c
2893 -218.766 -51.4121 l
2894 -219.695 -51.4121 l
2895 -219.695 -52.4238 l
2896 -218.766 -52.4238 l
2897 -218.766 -53.7705 l
2898 -217.419 -53.9004 l
2899 -217.419 -52.4238 l
2900 -215.478 -52.4238 l
2901 -215.478 -51.4121 l
2902 -217.419 -51.4121 l
2903 -217.419 -47.2969 l
2904 -217.419 -46.3262 -217.000 -45.8408 -216.161 -45.8408 c
2905 -215.983 -45.8408 -215.767 -45.8704 -215.512 -45.9297 c
2906 -215.512 -45.0000 l
2907 -215.926 -44.8861 -216.286 -44.8291 -216.592 -44.8291 c
2908 h
2909 -213.222 -45.0000 m
2910 -213.222 -46.3467 l
2911 -211.875 -46.3467 l
2912 -211.875 -45.0000 l
2913 h
2914 -213.222 -47.7002 m
2915 -213.222 -48.0693 l
2916 -213.222 -48.9398 -212.887 -49.7578 -212.217 -50.5234 c
2917 -211.786 -51.0225 l
2918 -211.071 -51.8428 -210.713 -52.5150 -210.713 -53.0391 c
2919 -210.713 -53.4447 -210.870 -53.7660 -211.185 -54.0029 c
2920 -211.499 -54.2399 -211.923 -54.3584 -212.456 -54.3584 c
2921 -213.153 -54.3584 -213.894 -54.1898 -214.678 -53.8525 c
2922 -214.678 -54.9941 l
2923 -213.835 -55.2493 -213.046 -55.3770 -212.312 -55.3770 c
2924 -211.383 -55.3770 -210.645 -55.1685 -210.098 -54.7515 c
2925 -209.551 -54.3345 -209.277 -53.7705 -209.277 -53.0596 c
2926 -209.277 -52.6585 -209.356 -52.3133 -209.513 -52.0239 c
2927 -209.670 -51.7345 -209.972 -51.3779 -210.419 -50.9541 c
2928 -210.843 -50.5576 l
2929 -211.267 -50.1566 -211.545 -49.8205 -211.677 -49.5493 c
2930 -211.809 -49.2782 -211.875 -48.9124 -211.875 -48.4521 c
2931 -211.875 -47.7002 l
2932 h
2933 f
2934 newpath
2935 -372.653 -96.0000 m
2936 -372.653 -103.424 l
2937 -371.307 -103.424 l
2938 -371.307 -102.029 l
2939 -370.773 -103.068 -369.999 -103.588 -368.982 -103.588 c
2940 -368.846 -103.588 -368.702 -103.576 -368.552 -103.554 c
2941 -368.552 -102.296 l
2942 -368.784 -102.373 -368.989 -102.412 -369.167 -102.412 c
2943 -370.019 -102.412 -370.732 -101.906 -371.307 -100.895 c
2944 -371.307 -96.0000 l
2945 h
2946 -361.483 -96.2393 m
2947 -362.386 -95.9658 -363.158 -95.8291 -363.801 -95.8291 c
2948 -364.895 -95.8291 -365.787 -96.1925 -366.477 -96.9194 c
2949 -367.167 -97.6463 -367.513 -98.5885 -367.513 -99.7461 c
2950 -367.513 -100.872 -367.208 -101.795 -366.600 -102.515 c
2951 -365.992 -103.235 -365.214 -103.595 -364.266 -103.595 c
2952 -363.368 -103.595 -362.674 -103.276 -362.184 -102.638 c
2953 -361.694 -102.000 -361.449 -101.093 -361.449 -99.9170 c
2954 -361.456 -99.5000 l
2955 -366.139 -99.5000 l
2956 -365.943 -97.7363 -365.079 -96.8545 -363.548 -96.8545 c
2957 -362.987 -96.8545 -362.299 -97.0049 -361.483 -97.3057 c
2958 h
2959 -366.077 -100.512 m
2960 -362.803 -100.512 l
2961 -362.803 -101.893 -363.318 -102.583 -364.348 -102.583 c
2962 -365.382 -102.583 -365.959 -101.893 -366.077 -100.512 c
2963 h
2964 -359.098 -93.5322 m
2965 -358.940 -94.7012 l
2966 -358.161 -94.3320 -357.393 -94.1475 -356.637 -94.1475 c
2967 -355.119 -94.1475 -354.360 -94.9518 -354.360 -96.5605 c
2968 -354.360 -97.7295 l
2969 -354.857 -96.6904 -355.673 -96.1709 -356.808 -96.1709 c
2970 -357.696 -96.1709 -358.403 -96.4945 -358.927 -97.1416 c
2971 -359.451 -97.7887 -359.713 -98.6615 -359.713 -99.7598 c
2972 -359.713 -100.890 -359.414 -101.811 -358.817 -102.521 c
2973 -358.220 -103.232 -357.448 -103.588 -356.500 -103.588 c
2974 -355.671 -103.588 -354.957 -103.251 -354.360 -102.576 c
2975 -354.360 -103.424 l
2976 -353.007 -103.424 l
2977 -353.007 -98.0234 l
2978 -353.007 -96.8613 -353.067 -96.0011 -353.188 -95.4429 c
2979 -353.309 -94.8846 -353.535 -94.4277 -353.868 -94.0723 c
2980 -354.456 -93.4479 -355.370 -93.1357 -356.609 -93.1357 c
2981 -357.475 -93.1357 -358.305 -93.2679 -359.098 -93.5322 c
2982 h
2983 -354.360 -98.5703 m
2984 -354.360 -101.653 l
2985 -354.953 -102.269 -355.598 -102.576 -356.295 -102.576 c
2986 -356.915 -102.576 -357.400 -102.328 -357.751 -101.831 c
2987 -358.102 -101.334 -358.277 -100.653 -358.277 -99.7871 c
2988 -358.277 -98.1602 -357.705 -97.3467 -356.562 -97.3467 c
2989 -355.782 -97.3467 -355.049 -97.7546 -354.360 -98.5703 c
2990 h
2991 -350.204 -96.0000 m
2992 -350.204 -97.3467 l
2993 -348.857 -97.3467 l
2994 -348.857 -96.0000 l
2995 h
2996 -350.033 -98.7002 m
2997 -350.204 -104.094 l
2998 -350.204 -106.117 l
2999 -348.857 -106.117 l
3000 -348.857 -104.094 l
3001 -349.021 -98.7002 l
3002 h
3003 f
3004 .258824 .258824 .658824 RG
3005 newpath
3006 -159.626 -136.532 m
3007 -159.469 -137.701 l
3008 -158.689 -137.332 -157.922 -137.147 -157.165 -137.147 c
3009 -155.647 -137.147 -154.889 -137.952 -154.889 -139.561 c
3010 -154.889 -140.729 l
3011 -155.385 -139.690 -156.201 -139.171 -157.336 -139.171 c
3012 -158.225 -139.171 -158.931 -139.494 -159.455 -140.142 c
3013 -159.979 -140.789 -160.241 -141.661 -160.241 -142.760 c
3014 -160.241 -143.890 -159.943 -144.811 -159.346 -145.521 c
3015 -158.749 -146.232 -157.976 -146.588 -157.028 -146.588 c
3016 -156.199 -146.588 -155.486 -146.251 -154.889 -145.576 c
3017 -154.889 -146.424 l
3018 -153.535 -146.424 l
3019 -153.535 -141.023 l
3020 -153.535 -139.861 -153.596 -139.001 -153.716 -138.443 c
3021 -153.837 -137.885 -154.064 -137.428 -154.396 -137.072 c
3022 -154.984 -136.448 -155.898 -136.136 -157.138 -136.136 c
3023 -158.004 -136.136 -158.833 -136.268 -159.626 -136.532 c
3024 h
3025 -154.889 -141.570 m
3026 -154.889 -144.653 l
3027 -155.481 -145.269 -156.126 -145.576 -156.823 -145.576 c
3028 -157.443 -145.576 -157.928 -145.328 -158.279 -144.831 c
3029 -158.630 -144.334 -158.806 -143.653 -158.806 -142.787 c
3030 -158.806 -141.160 -158.234 -140.347 -157.090 -140.347 c
3031 -156.311 -140.347 -155.577 -140.755 -154.889 -141.570 c
3032 h
3033 -150.924 -139.000 m
3034 -150.924 -146.424 l
3035 -149.577 -146.424 l
3036 -149.577 -145.029 l
3037 -149.044 -146.068 -148.269 -146.588 -147.253 -146.588 c
3038 -147.116 -146.588 -146.973 -146.576 -146.822 -146.554 c
3039 -146.822 -145.296 l
3040 -147.055 -145.373 -147.260 -145.412 -147.438 -145.412 c
3041 -148.290 -145.412 -149.003 -144.906 -149.577 -143.895 c
3042 -149.577 -139.000 l
3043 h
3044 -145.195 -139.000 m
3045 -145.195 -146.424 l
3046 -143.849 -146.424 l
3047 -143.849 -139.000 l
3048 h
3049 -145.195 -147.771 m
3050 -145.195 -149.117 l
3051 -143.849 -149.117 l
3052 -143.849 -147.771 l
3053 h
3054 -136.384 -139.000 m
3055 -136.384 -140.395 l
3056 -136.931 -139.351 -137.756 -138.829 -138.858 -138.829 c
3057 -139.752 -138.829 -140.455 -139.155 -140.967 -139.807 c
3058 -141.480 -140.458 -141.736 -141.349 -141.736 -142.479 c
3059 -141.736 -143.715 -141.446 -144.708 -140.865 -145.460 c
3060 -140.284 -146.212 -139.519 -146.588 -138.571 -146.588 c
3061 -137.692 -146.588 -136.963 -146.251 -136.384 -145.576 c
3062 -136.384 -149.794 l
3063 -135.030 -149.794 l
3064 -135.030 -139.000 l
3065 h
3066 -136.384 -144.653 m
3067 -137.081 -145.269 -137.742 -145.576 -138.366 -145.576 c
3068 -139.656 -145.576 -140.301 -144.590 -140.301 -142.616 c
3069 -140.301 -140.880 -139.727 -140.012 -138.578 -140.012 c
3070 -137.831 -140.012 -137.099 -140.420 -136.384 -141.235 c
3071 h
3072 -132.337 -136.977 m
3073 -132.337 -149.794 l
3074 -129.637 -149.794 l
3075 -129.637 -148.782 l
3076 -131.154 -148.782 l
3077 -131.154 -137.988 l
3078 -129.637 -137.988 l
3079 -129.637 -136.977 l
3080 h
3081 -128.529 -139.000 m
3082 -125.706 -142.835 l
3083 -128.447 -146.424 l
3084 -126.848 -146.424 l
3085 -124.681 -143.566 l
3086 -122.719 -146.424 l
3087 -121.406 -146.424 l
3088 -123.977 -142.657 l
3089 -121.181 -139.000 l
3090 -122.780 -139.000 l
3091 -125.016 -141.939 l
3092 -127.176 -139.000 l
3093 h
3094 -117.339 -136.977 m
3095 -117.339 -149.794 l
3096 -120.039 -149.794 l
3097 -120.039 -148.782 l
3098 -118.521 -148.782 l
3099 -118.521 -137.988 l
3100 -120.039 -137.988 l
3101 -120.039 -136.977 l
3102 h
3103 -114.646 -136.977 m
3104 -114.646 -149.794 l
3105 -111.945 -149.794 l
3106 -111.945 -148.782 l
3107 -113.463 -148.782 l
3108 -113.463 -137.988 l
3109 -111.945 -137.988 l
3110 -111.945 -136.977 l
3111 h
3112 -109.662 -136.300 m
3113 -108.459 -139.000 l
3114 -111.330 -146.424 l
3115 -109.874 -146.424 l
3116 -107.748 -140.832 l
3117 -105.479 -146.424 l
3118 -104.207 -146.424 l
3119 -108.261 -136.300 l
3120 h
3121 -99.0664 -139.000 m
3122 -99.0664 -142.541 l
3123 -102.607 -142.541 l
3124 -102.607 -143.553 l
3125 -99.0664 -143.553 l
3126 -99.0664 -147.094 l
3127 -98.0547 -147.094 l
3128 -98.0547 -143.553 l
3129 -94.5137 -143.553 l
3130 -94.5137 -142.541 l
3131 -98.0547 -142.541 l
3132 -98.0547 -139.000 l
3133 h
3134 -91.6494 -139.000 m
3135 -91.6494 -149.794 l
3136 -90.3027 -149.794 l
3137 -90.3027 -139.000 l
3138 h
3139 -82.1611 -139.239 m
3140 -83.0635 -138.966 -83.8359 -138.829 -84.4785 -138.829 c
3141 -85.5723 -138.829 -86.4644 -139.193 -87.1548 -139.919 c
3142 -87.8452 -140.646 -88.1904 -141.589 -88.1904 -142.746 c
3143 -88.1904 -143.872 -87.8862 -144.795 -87.2778 -145.515 c
3144 -86.6694 -146.235 -85.8913 -146.595 -84.9434 -146.595 c
3145 -84.0456 -146.595 -83.3517 -146.276 -82.8618 -145.638 c
3146 -82.3719 -145.000 -82.1270 -144.093 -82.1270 -142.917 c
3147 -82.1338 -142.500 l
3148 -86.8164 -142.500 l
3149 -86.6204 -140.736 -85.7568 -139.854 -84.2256 -139.854 c
3150 -83.6650 -139.854 -82.9769 -140.005 -82.1611 -140.306 c
3151 h
3152 -86.7549 -143.512 m
3153 -83.4805 -143.512 l
3154 -83.4805 -144.893 -83.9954 -145.583 -85.0254 -145.583 c
3155 -86.0599 -145.583 -86.6364 -144.893 -86.7549 -143.512 c
3156 h
3157 -79.8027 -139.000 m
3158 -79.8027 -146.424 l
3159 -78.4561 -146.424 l
3160 -78.4561 -145.029 l
3161 -77.7451 -146.068 -76.8747 -146.588 -75.8447 -146.588 c
3162 -75.2021 -146.588 -74.6895 -146.384 -74.3066 -145.976 c
3163 -73.9238 -145.568 -73.7324 -145.020 -73.7324 -144.332 c
3164 -73.7324 -139.000 l
3165 -75.0791 -139.000 l
3166 -75.0791 -143.895 l
3167 -75.0791 -144.446 -75.1600 -144.839 -75.3218 -145.074 c
3168 -75.4836 -145.308 -75.7513 -145.426 -76.1250 -145.426 c
3169 -76.9499 -145.426 -77.7269 -144.886 -78.4561 -143.806 c
3170 -78.4561 -139.000 l
3171 h
3172 -71.0869 -136.532 m
3173 -70.9297 -137.701 l
3174 -70.1504 -137.332 -69.3825 -137.147 -68.6260 -137.147 c
3175 -67.1084 -137.147 -66.3496 -137.952 -66.3496 -139.561 c
3176 -66.3496 -140.729 l
3177 -66.8464 -139.690 -67.6621 -139.171 -68.7969 -139.171 c
3178 -69.6855 -139.171 -70.3919 -139.494 -70.9160 -140.142 c
3179 -71.4401 -140.789 -71.7021 -141.661 -71.7021 -142.760 c
3180 -71.7021 -143.890 -71.4036 -144.811 -70.8066 -145.521 c
3181 -70.2096 -146.232 -69.4372 -146.588 -68.4893 -146.588 c
3182 -67.6598 -146.588 -66.9466 -146.251 -66.3496 -145.576 c
3183 -66.3496 -146.424 l
3184 -64.9961 -146.424 l
3185 -64.9961 -141.023 l
3186 -64.9961 -139.861 -65.0565 -139.001 -65.1772 -138.443 c
3187 -65.2980 -137.885 -65.5247 -137.428 -65.8574 -137.072 c
3188 -66.4453 -136.448 -67.3590 -136.136 -68.5986 -136.136 c
3189 -69.4645 -136.136 -70.2939 -136.268 -71.0869 -136.532 c
3190 h
3191 -66.3496 -141.570 m
3192 -66.3496 -144.653 l
3193 -66.9421 -145.269 -67.5869 -145.576 -68.2842 -145.576 c
3194 -68.9040 -145.576 -69.3893 -145.328 -69.7402 -144.831 c
3195 -70.0911 -144.334 -70.2666 -143.653 -70.2666 -142.787 c
3196 -70.2666 -141.160 -69.6947 -140.347 -68.5508 -140.347 c
3197 -67.7715 -140.347 -67.0378 -140.755 -66.3496 -141.570 c
3198 h
3199 -60.1562 -138.829 m
3200 -60.8398 -138.829 -61.3730 -139.025 -61.7559 -139.417 c
3201 -62.1387 -139.809 -62.3301 -140.354 -62.3301 -141.051 c
3202 -62.3301 -145.412 l
3203 -63.2598 -145.412 l
3204 -63.2598 -146.424 l
3205 -62.3301 -146.424 l
3206 -62.3301 -147.771 l
3207 -60.9834 -147.900 l
3208 -60.9834 -146.424 l
3209 -59.0420 -146.424 l
3210 -59.0420 -145.412 l
3211 -60.9834 -145.412 l
3212 -60.9834 -141.297 l
3213 -60.9834 -140.326 -60.5641 -139.841 -59.7256 -139.841 c
3214 -59.5479 -139.841 -59.3314 -139.870 -59.0762 -139.930 c
3215 -59.0762 -139.000 l
3216 -59.4909 -138.886 -59.8509 -138.829 -60.1562 -138.829 c
3217 h
3218 -57.1484 -139.000 m
3219 -57.1484 -149.794 l
3220 -55.8018 -149.794 l
3221 -55.8018 -145.029 l
3222 -55.0908 -146.068 -54.2204 -146.588 -53.1904 -146.588 c
3223 -52.5479 -146.588 -52.0352 -146.384 -51.6523 -145.976 c
3224 -51.2695 -145.568 -51.0781 -145.020 -51.0781 -144.332 c
3225 -51.0781 -139.000 l
3226 -52.4248 -139.000 l
3227 -52.4248 -143.895 l
3228 -52.4248 -144.446 -52.5057 -144.839 -52.6675 -145.074 c
3229 -52.8293 -145.308 -53.0970 -145.426 -53.4707 -145.426 c
3230 -54.2956 -145.426 -55.0726 -144.886 -55.8018 -143.806 c
3231 -55.8018 -139.000 l
3232 h
3233 -46.6006 -136.977 m
3234 -46.6006 -149.794 l
3235 -49.3008 -149.794 l
3236 -49.3008 -148.782 l
3237 -47.7832 -148.782 l
3238 -47.7832 -137.988 l
3239 -49.3008 -137.988 l
3240 -49.3008 -136.977 l
3241 h
3242 -43.7158 -139.000 m
3243 -43.7158 -140.347 l
3244 -42.3691 -140.347 l
3245 -42.3691 -139.000 l
3246 h
3247 -43.7158 -145.070 m
3248 -43.7158 -146.424 l
3249 -42.3691 -146.424 l
3250 -42.3691 -145.070 l
3251 h
3252 -39.3066 -141.276 m
3253 -39.3066 -142.288 l
3254 -31.2129 -142.288 l
3255 -31.2129 -141.276 l
3256 h
3257 -39.3066 -143.806 m
3258 -39.3066 -144.817 l
3259 -31.2129 -144.817 l
3260 -31.2129 -143.806 l
3261 h
3262 -26.1201 -138.829 m
3263 -26.8037 -138.829 -27.3369 -139.025 -27.7197 -139.417 c
3264 -28.1025 -139.809 -28.2939 -140.354 -28.2939 -141.051 c
3265 -28.2939 -145.412 l
3266 -29.2236 -145.412 l
3267 -29.2236 -146.424 l
3268 -28.2939 -146.424 l
3269 -28.2939 -147.771 l
3270 -26.9473 -147.900 l
3271 -26.9473 -146.424 l
3272 -25.0059 -146.424 l
3273 -25.0059 -145.412 l
3274 -26.9473 -145.412 l
3275 -26.9473 -141.297 l
3276 -26.9473 -140.326 -26.5280 -139.841 -25.6895 -139.841 c
3277 -25.5117 -139.841 -25.2952 -139.870 -25.0400 -139.930 c
3278 -25.0400 -139.000 l
3279 -25.4548 -138.886 -25.8148 -138.829 -26.1201 -138.829 c
3280 h
3281 -23.1123 -139.000 m
3282 -23.1123 -146.424 l
3283 -21.7656 -146.424 l
3284 -21.7656 -145.029 l
3285 -21.2324 -146.068 -20.4577 -146.588 -19.4414 -146.588 c
3286 -19.3047 -146.588 -19.1611 -146.576 -19.0107 -146.554 c
3287 -19.0107 -145.296 l
3288 -19.2432 -145.373 -19.4482 -145.412 -19.6260 -145.412 c
3289 -20.4782 -145.412 -21.1914 -144.906 -21.7656 -143.895 c
3290 -21.7656 -139.000 l
3291 h
3292 -12.7422 -139.000 m
3293 -12.7422 -140.395 l
3294 -13.4577 -139.351 -14.3258 -138.829 -15.3467 -138.829 c
3295 -15.9938 -138.829 -16.5088 -139.033 -16.8916 -139.441 c
3296 -17.2744 -139.849 -17.4658 -140.399 -17.4658 -141.092 c
3297 -17.4658 -146.424 l
3298 -16.1191 -146.424 l
3299 -16.1191 -141.529 l
3300 -16.1191 -140.973 -16.0382 -140.578 -15.8765 -140.343 c
3301 -15.7147 -140.109 -15.4447 -139.991 -15.0664 -139.991 c
3302 -14.2461 -139.991 -13.4714 -140.531 -12.7422 -141.611 c
3303 -12.7422 -146.424 l
3304 -11.3955 -146.424 l
3305 -11.3955 -139.000 l
3306 h
3307 -3.25391 -139.239 m
3308 -4.15625 -138.966 -4.92871 -138.829 -5.57129 -138.829 c
3309 -6.66504 -138.829 -7.55713 -139.193 -8.24756 -139.919 c
3310 -8.93799 -140.646 -9.28320 -141.589 -9.28320 -142.746 c
3311 -9.28320 -143.872 -8.97900 -144.795 -8.37061 -145.515 c
3312 -7.76221 -146.235 -6.98405 -146.595 -6.03613 -146.595 c
3313 -5.13835 -146.595 -4.44450 -146.276 -3.95459 -145.638 c
3314 -3.46468 -145.000 -3.21973 -144.093 -3.21973 -142.917 c
3315 -3.22656 -142.500 l
3316 -7.90918 -142.500 l
3317 -7.71322 -140.736 -6.84961 -139.854 -5.31836 -139.854 c
3318 -4.75781 -139.854 -4.06966 -140.005 -3.25391 -140.306 c
3319 h
3320 -7.84766 -143.512 m
3321 -4.57324 -143.512 l
3322 -4.57324 -144.893 -5.08822 -145.583 -6.11816 -145.583 c
3323 -7.15267 -145.583 -7.72917 -144.893 -7.84766 -143.512 c
3324 h
3325 -.875000 -136.806 m
3326 -.875000 -137.312 l
3327 -.437500 -137.435 -.218750 -137.952 -.218750 -138.863 c
3328 -.218750 -139.000 l
3329 -.875000 -139.000 l
3330 -.875000 -140.688 l
3331 .813477 -140.688 l
3332 .813477 -139.226 l
3333 .813477 -137.726 .250651 -136.920 -.875000 -136.806 c
3334 h
3335 f
3336 newpath
3337 -159.626 -119.532 m
3338 -159.469 -120.701 l
3339 -158.689 -120.332 -157.922 -120.147 -157.165 -120.147 c
3340 -155.647 -120.147 -154.889 -120.952 -154.889 -122.561 c
3341 -154.889 -123.729 l
3342 -155.385 -122.690 -156.201 -122.171 -157.336 -122.171 c
3343 -158.225 -122.171 -158.931 -122.494 -159.455 -123.142 c
3344 -159.979 -123.789 -160.241 -124.661 -160.241 -125.760 c
3345 -160.241 -126.890 -159.943 -127.811 -159.346 -128.521 c
3346 -158.749 -129.232 -157.976 -129.588 -157.028 -129.588 c
3347 -156.199 -129.588 -155.486 -129.251 -154.889 -128.576 c
3348 -154.889 -129.424 l
3349 -153.535 -129.424 l
3350 -153.535 -124.023 l
3351 -153.535 -122.861 -153.596 -122.001 -153.716 -121.443 c
3352 -153.837 -120.885 -154.064 -120.428 -154.396 -120.072 c
3353 -154.984 -119.448 -155.898 -119.136 -157.138 -119.136 c
3354 -158.004 -119.136 -158.833 -119.268 -159.626 -119.532 c
3355 h
3356 -154.889 -124.570 m
3357 -154.889 -127.653 l
3358 -155.481 -128.269 -156.126 -128.576 -156.823 -128.576 c
3359 -157.443 -128.576 -157.928 -128.328 -158.279 -127.831 c
3360 -158.630 -127.334 -158.806 -126.653 -158.806 -125.787 c
3361 -158.806 -124.160 -158.234 -123.347 -157.090 -123.347 c
3362 -156.311 -123.347 -155.577 -123.755 -154.889 -124.570 c
3363 h
3364 -150.924 -122.000 m
3365 -150.924 -129.424 l
3366 -149.577 -129.424 l
3367 -149.577 -128.029 l
3368 -149.044 -129.068 -148.269 -129.588 -147.253 -129.588 c
3369 -147.116 -129.588 -146.973 -129.576 -146.822 -129.554 c
3370 -146.822 -128.296 l
3371 -147.055 -128.373 -147.260 -128.412 -147.438 -128.412 c
3372 -148.290 -128.412 -149.003 -127.906 -149.577 -126.895 c
3373 -149.577 -122.000 l
3374 h
3375 -145.195 -122.000 m
3376 -145.195 -129.424 l
3377 -143.849 -129.424 l
3378 -143.849 -122.000 l
3379 h
3380 -145.195 -130.771 m
3381 -145.195 -132.117 l
3382 -143.849 -132.117 l
3383 -143.849 -130.771 l
3384 h
3385 -136.384 -122.000 m
3386 -136.384 -123.395 l
3387 -136.931 -122.351 -137.756 -121.829 -138.858 -121.829 c
3388 -139.752 -121.829 -140.455 -122.155 -140.967 -122.807 c
3389 -141.480 -123.458 -141.736 -124.349 -141.736 -125.479 c
3390 -141.736 -126.715 -141.446 -127.708 -140.865 -128.460 c
3391 -140.284 -129.212 -139.519 -129.588 -138.571 -129.588 c
3392 -137.692 -129.588 -136.963 -129.251 -136.384 -128.576 c
3393 -136.384 -132.794 l
3394 -135.030 -132.794 l
3395 -135.030 -122.000 l
3396 h
3397 -136.384 -127.653 m
3398 -137.081 -128.269 -137.742 -128.576 -138.366 -128.576 c
3399 -139.656 -128.576 -140.301 -127.590 -140.301 -125.616 c
3400 -140.301 -123.880 -139.727 -123.012 -138.578 -123.012 c
3401 -137.831 -123.012 -137.099 -123.420 -136.384 -124.235 c
3402 h
3403 -132.337 -119.977 m
3404 -132.337 -132.794 l
3405 -129.637 -132.794 l
3406 -129.637 -131.782 l
3407 -131.154 -131.782 l
3408 -131.154 -120.988 l
3409 -129.637 -120.988 l
3410 -129.637 -119.977 l
3411 h
3412 -128.529 -122.000 m
3413 -125.706 -125.835 l
3414 -128.447 -129.424 l
3415 -126.848 -129.424 l
3416 -124.681 -126.566 l
3417 -122.719 -129.424 l
3418 -121.406 -129.424 l
3419 -123.977 -125.657 l
3420 -121.181 -122.000 l
3421 -122.780 -122.000 l
3422 -125.016 -124.939 l
3423 -127.176 -122.000 l
3424 h
3425 -117.339 -119.977 m
3426 -117.339 -132.794 l
3427 -120.039 -132.794 l
3428 -120.039 -131.782 l
3429 -118.521 -131.782 l
3430 -118.521 -120.988 l
3431 -120.039 -120.988 l
3432 -120.039 -119.977 l
3433 h
3434 -114.646 -119.977 m
3435 -114.646 -132.794 l
3436 -111.945 -132.794 l
3437 -111.945 -131.782 l
3438 -113.463 -131.782 l
3439 -113.463 -120.988 l
3440 -111.945 -120.988 l
3441 -111.945 -119.977 l
3442 h
3443 -109.662 -119.300 m
3444 -108.459 -122.000 l
3445 -111.330 -129.424 l
3446 -109.874 -129.424 l
3447 -107.748 -123.832 l
3448 -105.479 -129.424 l
3449 -104.207 -129.424 l
3450 -108.261 -119.300 l
3451 h
3452 -100.919 -119.977 m
3453 -100.919 -132.794 l
3454 -103.619 -132.794 l
3455 -103.619 -131.782 l
3456 -102.102 -131.782 l
3457 -102.102 -120.988 l
3458 -103.619 -120.988 l
3459 -103.619 -119.977 l
3460 h
3461 -98.0342 -122.000 m
3462 -98.0342 -123.347 l
3463 -96.6875 -123.347 l
3464 -96.6875 -122.000 l
3465 h
3466 -98.0342 -128.070 m
3467 -98.0342 -129.424 l
3468 -96.6875 -129.424 l
3469 -96.6875 -128.070 l
3470 h
3471 -93.6250 -124.276 m
3472 -93.6250 -125.288 l
3473 -85.5312 -125.288 l
3474 -85.5312 -124.276 l
3475 h
3476 -93.6250 -126.806 m
3477 -93.6250 -127.817 l
3478 -85.5312 -127.817 l
3479 -85.5312 -126.806 l
3480 h
3481 -81.0605 -128.412 m
3482 -81.0605 -122.000 l
3483 -82.4141 -122.000 l
3484 -82.4141 -128.412 l
3485 -83.4668 -128.412 l
3486 -83.4668 -129.424 l
3487 -82.4141 -129.424 l
3488 -82.4141 -130.312 l
3489 -82.4141 -132.081 -81.6074 -132.965 -79.9941 -132.965 c
3490 -79.5430 -132.965 -79.0303 -132.890 -78.4561 -132.739 c
3491 -78.4561 -131.673 l
3492 -79.0622 -131.860 -79.5475 -131.953 -79.9121 -131.953 c
3493 -80.3542 -131.953 -80.6561 -131.847 -80.8179 -131.635 c
3494 -80.9797 -131.423 -81.0605 -131.030 -81.0605 -130.456 c
3495 -81.0605 -129.424 l
3496 -79.2080 -129.424 l
3497 -79.2080 -128.412 l
3498 h
3499 -73.6914 -122.943 m
3500 -74.4980 -122.201 -75.2751 -121.829 -76.0225 -121.829 c
3501 -76.6377 -121.829 -77.1481 -122.022 -77.5537 -122.407 c
3502 -77.9593 -122.792 -78.1621 -123.278 -78.1621 -123.866 c
3503 -78.1621 -124.677 -77.8215 -125.301 -77.1401 -125.736 c
3504 -76.4588 -126.171 -75.4824 -126.389 -74.2109 -126.389 c
3505 -73.8896 -126.389 l
3506 -73.8896 -127.284 l
3507 -73.8896 -128.146 -74.3317 -128.576 -75.2158 -128.576 c
3508 -75.9268 -128.576 -76.6947 -128.357 -77.5195 -127.920 c
3509 -77.5195 -129.034 l
3510 -76.6126 -129.403 -75.7627 -129.588 -74.9697 -129.588 c
3511 -74.1403 -129.588 -73.5285 -129.401 -73.1343 -129.027 c
3512 -72.7401 -128.654 -72.5430 -128.073 -72.5430 -127.284 c
3513 -72.5430 -123.921 l
3514 -72.5430 -123.151 -72.3060 -122.766 -71.8320 -122.766 c
3515 -71.7728 -122.766 -71.6862 -122.775 -71.5723 -122.793 c
3516 -71.4766 -122.048 l
3517 -71.7819 -121.902 -72.1191 -121.829 -72.4883 -121.829 c
3518 -73.1172 -121.829 -73.5182 -122.201 -73.6914 -122.943 c
3519 h
3520 -73.8896 -123.675 m
3521 -73.8896 -125.596 l
3522 -74.3408 -125.609 l
3523 -75.0791 -125.609 -75.6761 -125.469 -76.1318 -125.189 c
3524 -76.5876 -124.909 -76.8154 -124.541 -76.8154 -124.085 c
3525 -76.8154 -123.761 -76.7015 -123.488 -76.4736 -123.265 c
3526 -76.2458 -123.041 -75.9678 -122.930 -75.6396 -122.930 c
3527 -75.0791 -122.930 -74.4958 -123.178 -73.8896 -123.675 c
3528 h
3529 -69.7881 -122.000 m
3530 -69.7881 -132.794 l
3531 -68.4414 -132.794 l
3532 -68.4414 -122.000 l
3533 h
3534 -63.7725 -121.829 m
3535 -64.3877 -121.829 -65.1351 -121.973 -66.0146 -122.260 c
3536 -66.0146 -123.497 l
3537 -65.1351 -123.060 -64.3695 -122.841 -63.7178 -122.841 c
3538 -63.3304 -122.841 -63.0091 -122.946 -62.7539 -123.155 c
3539 -62.4987 -123.365 -62.3711 -123.627 -62.3711 -123.941 c
3540 -62.3711 -124.402 -62.7288 -124.782 -63.4443 -125.083 c
3541 -64.2305 -125.418 l
3542 -65.3926 -125.901 -65.9736 -126.596 -65.9736 -127.503 c
3543 -65.9736 -128.150 -65.7446 -128.659 -65.2866 -129.031 c
3544 -64.8286 -129.402 -64.2008 -129.588 -63.4033 -129.588 c
3545 -62.9886 -129.588 -62.4759 -129.531 -61.8652 -129.417 c
3546 -61.5850 -129.362 l
3547 -61.5850 -128.241 l
3548 -62.3369 -128.465 -62.9339 -128.576 -63.3760 -128.576 c
3549 -64.2419 -128.576 -64.6748 -128.262 -64.6748 -127.633 c
3550 -64.6748 -127.227 -64.3467 -126.885 -63.6904 -126.607 c
3551 -63.0410 -126.334 l
3552 -62.3073 -126.024 -61.7878 -125.697 -61.4824 -125.353 c
3553 -61.1771 -125.009 -61.0244 -124.579 -61.0244 -124.064 c
3554 -61.0244 -123.413 -61.2819 -122.877 -61.7969 -122.458 c
3555 -62.3118 -122.039 -62.9704 -121.829 -63.7725 -121.829 c
3556 h
3557 -53.1631 -122.239 m
3558 -54.0654 -121.966 -54.8379 -121.829 -55.4805 -121.829 c
3559 -56.5742 -121.829 -57.4663 -122.193 -58.1567 -122.919 c
3560 -58.8472 -123.646 -59.1924 -124.589 -59.1924 -125.746 c
3561 -59.1924 -126.872 -58.8882 -127.795 -58.2798 -128.515 c
3562 -57.6714 -129.235 -56.8932 -129.595 -55.9453 -129.595 c
3563 -55.0475 -129.595 -54.3537 -129.276 -53.8638 -128.638 c
3564 -53.3739 -128.000 -53.1289 -127.093 -53.1289 -125.917 c
3565 -53.1357 -125.500 l
3566 -57.8184 -125.500 l
3567 -57.6224 -123.736 -56.7588 -122.854 -55.2275 -122.854 c
3568 -54.6670 -122.854 -53.9788 -123.005 -53.1631 -123.306 c
3569 h
3570 -57.7568 -126.512 m
3571 -54.4824 -126.512 l
3572 -54.4824 -127.893 -54.9974 -128.583 -56.0273 -128.583 c
3573 -57.0618 -128.583 -57.6383 -127.893 -57.7568 -126.512 c
3574 h
3575 -50.7842 -119.806 m
3576 -50.7842 -120.312 l
3577 -50.3467 -120.435 -50.1279 -120.952 -50.1279 -121.863 c
3578 -50.1279 -122.000 l
3579 -50.7842 -122.000 l
3580 -50.7842 -123.688 l
3581 -49.0957 -123.688 l
3582 -49.0957 -122.226 l
3583 -49.0957 -120.726 -49.6585 -119.920 -50.7842 -119.806 c
3584 h
3585 f
3586 newpath
3587 -159.223 -102.300 m
3588 -158.020 -105.000 l
3589 -160.891 -112.424 l
3590 -159.435 -112.424 l
3591 -157.309 -106.832 l
3592 -155.039 -112.424 l
3593 -153.768 -112.424 l
3594 -157.821 -102.300 l
3595 h
3596 -152.147 -105.000 m
3597 -152.147 -106.347 l
3598 -150.801 -106.347 l
3599 -150.801 -105.000 l
3600 h
3601 -152.147 -111.070 m
3602 -152.147 -112.424 l
3603 -150.801 -112.424 l
3604 -150.801 -111.070 l
3605 h
3606 -147.738 -107.276 m
3607 -147.738 -108.288 l
3608 -139.645 -108.288 l
3609 -139.645 -107.276 l
3610 h
3611 -147.738 -109.806 m
3612 -147.738 -110.817 l
3613 -139.645 -110.817 l
3614 -139.645 -109.806 l
3615 h
3616 -136.350 -102.300 m
3617 -135.146 -105.000 l
3618 -138.018 -112.424 l
3619 -136.562 -112.424 l
3620 -134.436 -106.832 l
3621 -132.166 -112.424 l
3622 -130.895 -112.424 l
3623 -134.948 -102.300 l
3624 h
3625 -125.754 -105.000 m
3626 -125.754 -108.541 l
3627 -129.295 -108.541 l
3628 -129.295 -109.553 l
3629 -125.754 -109.553 l
3630 -125.754 -113.094 l
3631 -124.742 -113.094 l
3632 -124.742 -109.553 l
3633 -121.201 -109.553 l
3634 -121.201 -108.541 l
3635 -124.742 -108.541 l
3636 -124.742 -105.000 l
3637 h
3638 -117.578 -105.000 m
3639 -117.578 -106.012 l
3640 -115.555 -106.012 l
3641 -115.555 -113.996 l
3642 -117.578 -113.490 l
3643 -117.578 -114.529 l
3644 -114.201 -115.370 l
3645 -114.201 -106.012 l
3646 -112.178 -106.012 l
3647 -112.178 -105.000 l
3648 h
3649 f
3650 1 J
3651 2 j
3652 0.00000 0.00000 0.00000 RG
3653 newpath
3654 -301.000 -34.0000 m
3655 -115.000 -34.0000 l
3656 S
3657 newpath
3658 -124.659 -31.4118 m
3659 -115.000 -34.0000 l
3660 -124.659 -36.5882 l
3661 S
3662 2 J
3663 0 j
3664 1 J
3665 2 j
3666 newpath
3667 -109.244 -23.2052 m
3668 -147.428 33.6963 l
3669 -151.143 39.2321 -149.667 42.0000 -143.000 42.0000 c
3670 -44.0000 42.0000 l
3671 -37.3333 42.0000 -36.2226 39.5159 -40.6679 34.5476 c
3672 -93.3317 -24.3119 l
3673 S
3674 newpath
3675 -84.9621 -18.8392 m
3676 -93.3317 -24.3119 l
3677 -88.8197 -15.3876 l
3678 S
3679 2 J
3680 0 j
3681 1 J
3682 2 j
3683 newpath
3684 -403.020 -76.7256 m
3685 -264.984 -84.4419 l
3686 -258.328 -84.8140 -257.522 -82.8202 -262.565 -78.4605 c
3687 -304.165 -42.5014 l
3688 S
3689 newpath
3690 -298.550 -50.7762 m
3691 -304.165 -42.5014 l
3692 -295.165 -46.8600 l
3693 S
3694 2 J
3695 0 j
3696 1 J
3697 2 j
3698 newpath
3699 -111.688 -42.6683 m
3700 -170.548 -95.3321 l
3701 -175.516 -99.7774 -174.667 -102.000 -168.000 -102.000 c
3702 -44.0000 -102.000 l
3703 -37.3333 -102.000 -36.3570 -99.6430 -41.0711 -94.9289 c
3704 -92.8076 -43.1924 l
3705 S
3706 newpath
3707 -87.8076 -51.8526 m
3708 -92.8076 -43.1924 l
3709 -84.1474 -48.1924 l
3710 S
3711 2 J
3712 0 j
3713 [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
3714
3715 %%Trailer
3716 %%EOF