Merge branch 'master' of gitlab.science.ru.nl:mlubbers/mc1516the
[mc1516the.git] / img / 2vertCar.eps
diff --git a/img/2vertCar.eps b/img/2vertCar.eps
new file mode 100644 (file)
index 0000000..8565a0c
--- /dev/null
@@ -0,0 +1,3716 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 20 190 575 601
+%%Creator: FreeHEP Graphics2D Driver
+%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753 
+%%For: pimjager@167-013.wlan-int.ru.nl
+%%Title: VertCar
+%%CreationDate: Thursday, June 23, 2016 10:05:27 AM CEST
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+100 dict dup begin
+
+%
+% File: org/freehep/graphicsio.ps/PSProlog.txt
+% Author: Charles Loomis
+%
+
+% Redefinitions which save some space in the output file.  These are also
+% the same as the PDF operators.
+/q {gsave} def
+/Q {grestore} def
+
+/n {newpath} def
+/m {moveto} def
+/l {lineto} def
+/c {curveto} def
+/h {closepath} def
+
+/re {4 -2 roll moveto
+     dup 0 exch rlineto exch 0 rlineto
+     neg 0 exch rlineto closepath} def
+
+/f {fill} def
+/f* {eofill} def
+/F {gsave vg&FC fill grestore} def
+/F* {gsave vg&FC eofill grestore} def
+
+/s {closepath stroke} def
+/S {stroke} def
+
+/b {closepath gsave vg&FC fill grestore
+    gsave stroke grestore newpath} def
+/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
+/b* {closepath gsave vg&FC eofill grestore
+    gsave stroke grestore newpath} def
+/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
+
+/g {1 array astore /vg&fcolor exch def} def
+/G {setgray} def
+/k {4 array astore /vg&fcolor exch def} def
+/K {setcmykcolor} def
+/rg {3 array astore /vg&fcolor exch def} def
+/RG {setrgbcolor} def
+
+% Initialize the fill color.
+0 0 0 rg
+
+/vg&FC {mark vg&fcolor aload pop
+        counttomark 1 eq {G} if
+        counttomark 3 eq {RG} if
+        counttomark 4 eq {K} if
+        cleartomark } def
+
+/vg&DFC {/vg&fcolor exch def} def
+
+/vg&C {mark exch aload pop
+       counttomark 1 eq {G} if
+       counttomark 3 eq {RG} if
+       counttomark 4 eq {K} if
+       cleartomark } def
+
+/w {setlinewidth} def
+/j {setlinejoin} def
+/J {setlinecap} def
+/M {setmiterlimit} def
+/d {setdash} def
+/i {setflat} def
+
+/W {clip} def
+/W* {eoclip} def
+
+% Setup the default graphics state.
+% (black; 1 pt. linewidth; miter join; butt-ends; solid)
+/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
+
+% Emulation of the rectangle operators for PostScript implementations
+% which do not implement all Level 2 features.  This is an INCOMPLETE
+% emulation; only the "x y width height rect..." form is emulated.
+/*rf {gsave newpath re fill grestore} def
+/*rs {gsave newpath re stroke grestore} def
+/*rc {newpath re clip} def
+/rf  /rectfill where {pop /rectfill}{/*rf} ifelse load def
+/rs  /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
+/rc  /rectclip where {pop /rectclip}{/*rc} ifelse load def
+
+% Emulation of the selectfont operator.  This includes a 20% increase in
+% the fontsize which is necessary to get sizes similar to the Java fonts.
+/*sf {exch findfont exch
+      dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
+/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
+
+% Special version of stroke which allows the dash pattern to continue
+% across path segments.  (This may be needed for PostScript although
+% modern printers seem to do this correctly.)
+/vg&stroke {
+  currentdash pop length 0 eq
+  {stroke}
+  {
+    currentdash /vg&doffset exch def pop
+    flattenpath
+    {m vg&resetdash}
+    {2 copy
+     currentpoint
+     3 -1 roll sub dup mul
+     3 1 roll sub dup mul
+     add sqrt
+     3 1 roll l
+     currentdash 3 -1 roll add setdash}
+     {}
+     {h vg&resetdash}
+     pathforall
+     stroke
+     vg&resetdash
+  } ifelse
+} def
+/vg&resetdash {currentdash pop vg&doffset setdash} def
+
+% Initialize variables for safety.
+/delta 0 def
+/xv 0 def  /yv 0 def  /width 0 def  /height 0 def
+
+% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
+/pw 595 def  /ph 791  def  /po true def /ftp false def
+
+% Initialize margins to 20 points.
+/ml 20 def  /mr 20 def  /mt 20 def  /mb 20 def
+
+% Temporary matrices.
+/smatrix 0 def  /nmatrix 0 def
+
+% set page size (usage: <page width><page height> setpagesize)
+/setpagesize {/ph exch def /pw exch def} def
+
+% set page orientation (usage: portrait or landscape)
+/portrait {/po true def} def
+/landscape {/po false def} def
+
+% force natural size for image (usage: naturalsize)
+/naturalsize {/ftp false def} def
+
+% resize image to fill page (usage: fittopage)
+/fittopage {/ftp true def} def
+
+% set margins of the page (usage: <left><bottom><top><right> setmargins)
+/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
+
+% set the graphic's size (usage: <width><height> setsize)
+/setsize {/gh exch def /gw exch def} def
+
+% set the graphic's origin (usage: <x0><y0> setorigin)
+/setorigin {/gy exch def /gx exch def} def
+
+% calculate image center
+/imagecenter {pw ml sub mr sub 2 div ml add
+              ph mt sub mb sub 2 div mb add} def
+
+% calculate the necessary scaling
+/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
+             po {gh}{gw} ifelse ph mt sub mb sub div
+             2 copy lt {exch} if pop
+             ftp not {1 2 copy lt {exch} if pop} if
+             1 exch div /sfactor exch def
+             /gw gw sfactor mul def /gh gh sfactor mul def} def
+
+% calculate image origin
+/imageorigin {pw ml sub mr sub 2 div ml add
+              po {gw}{gh} ifelse 2 div sub
+              ph mt sub mb sub 2 div mb add
+              po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
+
+% calculate the clipping origin
+/cliporigin  {pw ml sub mr sub 2 div ml add
+              po {gw}{gh} ifelse 2 div sub floor
+              ph mt sub mb sub 2 div mb add
+              po {gh}{gw} ifelse 2 div sub floor} def
+
+% Set the clipping region to the bounding box.
+/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
+                          po {gh}{gw} ifelse 1 add rc} def
+
+% set the base transformation matrix (usage: setbasematrix)
+/setbasematrix {imageorigin translate
+                po {0}{90} ifelse rotate
+                sfactor sfactor neg scale
+                /defaultmatrix matrix currentmatrix def} def
+
+% The lower-right bias in drawing 1 pt. wide lines.
+/bias  {q 0.5 0.5 translate} def
+/unbias {Q} def
+
+% Define the composite fonts used to print Unicode strings.
+% Undefine particular values in an encoding array.
+/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
+/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
+
+% usage: key encoding basefontname vg&newbasefont font
+/vg&newbasefont {
+findfont dup length dict copy
+  begin
+    currentdict /FID undef
+    /Encoding exch def
+    dup /FontName exch def
+    currentdict
+  end
+definefont
+} def
+
+% usage: key encoding basefontname vg&newskewedbasefont font
+/vg&newskewedbasefont {
+findfont dup length dict copy
+  begin
+    currentdict /FID undef
+    /Encoding exch def
+    dup /FontName exch def
+    exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
+    currentdict
+  end
+definefont
+} def
+
+% usage: basekey suffix vg&nconcat name
+/vg&nconcat {
+  2 {dup length string cvs exch} repeat
+  dup length 3 -1 roll dup length 3 -1 roll add string
+  dup 0 4 -1 roll dup length 5 1 roll putinterval
+  dup 4 -2 roll exch putinterval cvn
+} def
+
+%usage: fontname vg&skewmatrix matrix
+/vg&skewmatrix {
+findfont dup /FontInfo known
+  {
+    /FontInfo get dup /ItalicAngle known
+    {
+      [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
+    }
+    {pop matrix} ifelse
+  }
+  {pop matrix} ifelse
+} def
+
+% usage: newfontname basefontname vg&newcompositefont --
+/vg&newcompositefont {
+/vg&fstyle exch def
+/vg&bfont exch def
+/vg&fname exch def
+<<
+/FontStyleBits vg&fstyle
+/FontType 0
+/FontMatrix matrix
+/FontName vg&fname
+/FMapType 2
+/Encoding [ 0 1 255 {pop 6} for ]
+          dup 16#00 0 put % Latin
+          dup 16#03 1 put % Greek
+          dup 16#20 2 put % Punctuation
+          dup 16#21 3 put % Arrows
+          dup 16#22 4 put % MathOps
+          dup 16#27 5 put % Dingbats
+
+/FDepVector [
+vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
+vg&bfont vg&newbasefont
+
+vg&bfont vg&skewmatrix
+vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
+/Symbol vg&newskewedbasefont
+
+vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
+vg&bfont vg&newbasefont
+
+/Arrows-UC findfont
+/MathOps-UC findfont
+/Dingbats-UC findfont
+/Undefined-UC findfont ]
+>>
+vg&fname exch definefont pop
+} def
+
+% Null encoding vector (all elements set to .notdef)
+/NullEncoding [ 256 {/.notdef} repeat ] def
+
+% Unicode Latin encoding (unicode codes \u0000-\u00ff)
+/UCLatinEncoding
+  ISOLatin1Encoding dup length array copy
+  dup 16#60 /grave put
+  [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
+    16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
+  ] vg&undef
+  def
+
+% Unicode Greek encoding (unicode codes \u0370-\u03ff)
+/UCGreekEncoding
+  NullEncoding dup length array copy
+  << 16#91 /Alpha    16#92 /Beta      16#93 /Gamma    16#94 /Delta
+     16#95 /Epsilon  16#96 /Zeta      16#97 /Eta      16#98 /Theta
+     16#99 /Iota     16#9a /Kappa     16#9b /Lambda   16#9c /Mu
+     16#9d /Nu       16#9e /Xi        16#9f /Omicron  16#a0 /Pi
+     16#a1 /Rho      16#a3 /Sigma     16#a4 /Tau      16#a5 /Upsilon
+     16#a6 /Phi      16#a7 /Chi       16#a8 /Psi      16#a9 /Omega
+     16#b1 /alpha    16#b2 /beta      16#b3 /gamma    16#b4 /delta
+     16#b5 /epsilon  16#b6 /zeta      16#b7 /eta      16#b8 /theta
+     16#b9 /iota     16#ba /kappa     16#bb /lambda   16#bc /mu
+     16#bd /nu       16#be /xi        16#bf /omicron  16#c0 /pi
+     16#c1 /rho      16#c2 /sigma1    16#c3 /sigma    16#c4 /tau
+     16#c5 /upsilon  16#c6 /phi1      16#c7 /chi      16#c8 /psi
+     16#c9 /omega    16#7e /semicolon 16#87 /dotmath  16#d1 /theta1
+     16#d2 /Upsilon1 16#d5 /phi       16#d6 /omega1
+  >> vg&redef
+  def
+
+% Unicode punctuation encoding (unicode codes \u2000-\u206f)
+/UCPunctuationEncoding
+  NullEncoding dup length array copy
+  << 16#10 /hyphen          16#11 /hyphen              16#12 /endash
+     16#13 /emdash          16#18 /quoteleft           16#19 /quoteright
+     16#1a /quotesinglbase  16#1b /quotesingle         16#1c /quotedblleft
+     16#1d /quotedblright   16#1e /quotedblbase        16#1f /quotedbl
+     16#20 /dagger          16#21 /daggerdbl           16#22 /bullet
+     16#24 /period          16#26 /ellipsis            16#27 /periodcentered
+     16#30 /perthousand     16#44 /fraction
+     16#70 /zerosuperior    16#74 /foursuperior        16#75 /fivesuperior
+     16#76 /sixsuperior     16#77 /sevensuperior       16#78 /eightsuperior
+     16#79 /ninesuperior    16#7b /hyphensuperior      16#7d /parenleftsuperior
+     16#7e /parenrightsuperior
+     16#80 /zeroinferior    16#84 /fourinferior        16#85 /fiveinferior
+     16#81 /oneinferior     16#82 /twoinferior         16#83 /threeinferior
+     16#86 /sixinferior     16#87 /seveninferior       16#88 /eightinferior
+     16#89 /nineinferior    16#8b /hypheninferior      16#8d /parenleftinferior
+     16#8e /parenrightinferior
+  >> vg&redef
+  def
+
+% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
+/UCMathOpsEncoding
+  NullEncoding dup length array copy
+  << 16#00 /universal       16#02 /partialdiff         16#03 /existential
+     16#05 /emptyset        16#06 /Delta               16#07 /gradient
+     16#08 /element         16#09 /notelement          16#0b /suchthat
+     16#0f /product         16#11 /summation           16#12 /minus
+     16#15 /fraction        16#17 /asteriskmath        16#19 /bullet
+     16#1a /radical         16#1d /proportional        16#1e /infinity
+     16#20 /angle           16#23 /bar                 16#27 /logicaland
+     16#28 /logicalor       16#29 /intersection        16#2a /union
+     16#2b /integral        16#34 /therefore           16#36 /colon
+     16#3c /similar         16#45 /congruent           16#48 /approxequal
+     16#60 /notequal        16#61 /equivalence         16#64 /lessequal
+     16#65 /greaterequal    16#82 /propersubset        16#83 /propersuperset
+     16#86 /reflexsubset    16#87 /reflexsuperset      16#95 /circleplus
+     16#97 /circlemultiply  16#a5 /perpendicular       16#03 /existential
+     16#c0 /logicaland      16#c1 /logicalor           16#c2 /intersection
+     16#c3 /union           16#c4 /diamond             16#c5 /dotmath
+  >> vg&redef
+  def
+
+% Unicode arrows encoding (unicode codes \u2190-\u21ff)
+% Also includes those "Letterlike" unicode characters
+% which are available in the symbol font. (unicode codes \u2100-\u214f)
+/UCArrowsEncoding
+  NullEncoding dup length array copy
+  << 16#11 /Ifraktur        16#1c /Rfraktur            16#22 /trademarkserif
+     16#35 /aleph
+     16#90 /arrowleft       16#91 /arrowup             16#92 /arrowright
+     16#93 /arrowdown       16#94 /arrowboth           16#d0 /arrowdblleft
+     16#d1 /arrowdblup      16#d2 /arrowdblright       16#d3 /arrowdbldown
+     16#d4 /arrowdblboth
+  >> vg&redef
+  def
+
+/ZapfDingbats findfont /Encoding get
+dup length array copy /UCDingbatsEncoding exch def
+16#20 1 16#7f {
+  dup 16#20 sub exch
+  UCDingbatsEncoding exch get
+  UCDingbatsEncoding 3 1 roll put
+} for
+16#a0 1 16#ff {
+  dup 16#40 sub exch
+  UCDingbatsEncoding exch get
+  UCDingbatsEncoding 3 1 roll put
+} for
+UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
+[ 16#00  16#05 16#0a 16#0b  16#28 16#4c 16#4e  16#53 16#54 16#55  16#57 16#5f
+  16#60  16#68 16#69 16#6a  16#6b 16#6c 16#6d  16#6e 16#6f 16#70  16#71 16#72
+  16#73  16#74 16#75 16#95  16#96 16#97 16#b0  16#bf
+] vg&undef pop
+
+% Define the base fonts which don't change.
+/Undefined-UC NullEncoding       /Helvetica    vg&newbasefont pop
+/MathOps-UC   UCMathOpsEncoding  /Symbol       vg&newbasefont pop
+/Arrows-UC    UCArrowsEncoding   /Symbol       vg&newbasefont pop
+/Dingbats-UC  UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
+
+% Make the SansSerif composite fonts.
+/SansSerif /Helvetica 16#00 vg&newcompositefont
+/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Serif composite fonts.
+/Serif /Times-Roman 16#00 vg&newcompositefont
+/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
+/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
+/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
+
+% Make the Monospaced composite fonts.
+/Monospaced /Courier 16#00 vg&newcompositefont
+/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Dialog composite fonts.
+/Dialog /Helvetica 16#00 vg&newcompositefont
+/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
+/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
+/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
+
+% Make the DialogInput composite fonts.
+/DialogInput /Courier 16#00 vg&newcompositefont
+/DialogInput-Bold /Courier-Bold 16#01 vg&newcompositefont
+/DialogInput-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/DialogInput-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+% Make the Typewriter composite fonts (JDK 1.1 only).
+/Typewriter /Courier 16#00 vg&newcompositefont
+/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
+/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
+/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
+
+
+/cfontH {
+ dup /fontsize exch def /SansSerif exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHB {
+  dup /fontsize exch def /SansSerif-Bold exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHI {
+ dup /fontsize exch def /SansSerif-Italic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+/cfontHBI {
+ dup /fontsize exch def /SansSerif-BoldItalic exch sf
+ /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
+} def
+
+/cfontT {
+ dup /fontsize exch def /Serif exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTB {
+ dup /fontsize exch def /Serif-Bold exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTI {
+ dup /fontsize exch def /Serif-Italic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+/cfontTBI {
+ dup /fontsize exch def /Serif-BoldItalic exch sf
+ /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
+} def
+
+/cfontC {
+ dup /fontsize exch def /Typewriter exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCB {
+ dup /fontsize exch def /Typewriter-Bold exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCI {
+ dup /fontsize exch def /Typewriter-Italic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+/cfontCBI {
+ dup /fontsize exch def /Typewriter-BoldItalic exch sf
+ /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
+} def
+
+% Darken or lighten the current color.
+/darken {0.7 exch exp 3 copy
+         q 4 -1 roll vg&C
+         currentrgbcolor 3 {4 -2 roll mul} repeat
+         3 array astore Q} def
+
+/displayColorMap
+<< /Cr   [1.00 0.00 0.00]       /Cg     [0.00 1.00 0.00]
+   /Cb   [0.00 0.00 1.00]       /Cc     [1.00 0.00 0.00 0.00]
+   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
+   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
+   /Cw   [1   ]                 /Cgrl   [0.75]
+   /Cgr  [0.50]                 /Cgrd   [0.25]
+   /Ck   [0   ]
+   /CGr  [1.00 0.00 0.00]       /CGg    [0.00 1.00 0.00]
+   /CGb  [0.00 0.00 1.00]       /CGc    [1.00 0.00 0.00 0.00]
+   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
+   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
+   /CGw  [1   ]                 /CGgrl  [0.75]
+   /CGgr [0.50]                 /CGgrd  [0.25]
+   /CGk  [0   ]
+   /CIr  [1.00 0.00 0.00]       /CIg    [0.00 1.00 0.00]
+   /CIb  [0.00 0.00 1.00]       /CIc    [1.00 0.00 0.00 0.00]
+   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
+   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
+   /CIw  [1   ]                 /CIgrl  [0.75]
+   /CIgr [0.50]                 /CIgrd  [0.25]
+   /CIk  [0   ]
+>> def
+
+/printColorMap
+<< /Cr   [1.00 0.33 0.33]       /Cg     [0.33 1.00 0.33]
+   /Cb   [0.33 0.33 1.00]       /Cc     [1.00 0.00 0.00 0.00]
+   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
+   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
+   /Cw   [1   ]                 /Cgrl   [0.75]
+   /Cgr  [0.50]                 /Cgrd   [0.25]
+   /Ck   [0   ]
+   /CGr  [1.00 0.33 0.33]       /CGg    [0.33 1.00 0.33]
+   /CGb  [0.33 0.33 1.00]       /CGc    [1.00 0.00 0.00 0.00]
+   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
+   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
+   /CGw  [1   ]                 /CGgrl  [0.75]
+   /CGgr [0.50]                 /CGgrd  [0.25]
+   /CGk  [0   ]
+   /CIr  [1.00 0.33 0.33]       /CIg    [0.33 1.00 0.33]
+   /CIb  [0.33 0.33 1.00]       /CIc    [1.00 0.00 0.00 0.00]
+   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
+   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
+   /CIw  [1   ]                 /CIgrl  [0.75]
+   /CIgr [0.50]                 /CIgrd  [0.25]
+   /CIk  [0   ]
+>> def
+
+/grayColorMap
+<< /Cr   [0   ]                 /Cg     [0   ]
+   /Cb   [0   ]                 /Cc     [0   ]
+   /Cm   [0   ]                 /Cy     [0   ]
+   /Co   [0   ]                 /Cp     [0   ]
+   /Cw   [0   ]                 /Cgrl   [0   ]
+   /Cgr  [0   ]                 /Cgrd   [0   ]
+   /Ck   [0   ]
+   /CGr  [0.75]                 /CGg    [1   ]
+   /CGb  [0.50]                 /CGc    [0.75]
+   /CGm  [0.50]                 /CGy    [1   ]
+   /CGo  [0.75]                 /CGp    [1   ]
+   /CGw  [0   ]                 /CGgrl  [0.25]
+   /CGgr [0.50]                 /CGgrd  [0.75]
+   /CGk  [1   ]
+   /CIr  [1   ]                 /CIg    [1   ]
+   /CIb  [1   ]                 /CIc    [1   ]
+   /CIm  [1   ]                 /CIy    [1   ]
+   /CIo  [1   ]                 /CIp    [1   ]
+   /CIw  [1   ]                 /CIgrl  [1   ]
+   /CIgr [1   ]                 /CIgrd  [1   ]
+   /CIk  [1   ]
+>> def
+
+/bwColorMap
+<< /Cr   [0   ]                 /Cg     [0   ]
+   /Cb   [0   ]                 /Cc     [0   ]
+   /Cm   [0   ]                 /Cy     [0   ]
+   /Co   [0   ]                 /Cp     [0   ]
+   /Cw   [0   ]                 /Cgrl   [0   ]
+   /Cgr  [0   ]                 /Cgrd   [0   ]
+   /Ck   [0   ]
+   /CGr  [1   ]                 /CGg    [1   ]
+   /CGb  [1   ]                 /CGc    [1   ]
+   /CGm  [1   ]                 /CGy    [1   ]
+   /CGo  [1   ]                 /CGp    [1   ]
+   /CGw  [0   ]                 /CGgrl  [1   ]
+   /CGgr [1   ]                 /CGgrd  [1   ]
+   /CGk  [1   ]
+   /CIr  [1   ]                 /CIg    [1   ]
+   /CIb  [1   ]                 /CIc    [1   ]
+   /CIm  [1   ]                 /CIy    [1   ]
+   /CIo  [1   ]                 /CIp    [1   ]
+   /CIw  [1   ]                 /CIgrl  [1   ]
+   /CIgr [1   ]                 /CIgrd  [1   ]
+   /CIk  [1   ]
+>> def
+
+%
+% The following routines handle the alignment of and printing of
+% tagged strings.
+%
+
+% Predefine the bounding box values.
+/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
+
+% This routine pops the first unicode character off of a string and returns
+% the remainder of the string, the character code of first character,
+% and a "true" if the string was non-zero length.
+% <string>      popfirst <remaining string> <true>
+% <null string> popfirst <false>
+/popfirst {
+  dup length 1 gt
+    {dup 0 get /vg&fbyte exch def
+     dup 1 get /vg&cbyte exch def
+     dup length 2 sub 2 exch getinterval true}
+    {pop false} ifelse
+} def
+
+% This routine shows a single unicode character given the font and
+% character codes.
+% <font code> <char code> unicharshow --
+/unicharshow {
+  2 string
+  dup 0 5 -1 roll put
+  dup 1 4 -1 roll put
+  internalshow
+} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and showing the string for recshow.
+% <string> internalshow --
+/internalshow {show} def
+
+% This is an internal routine to alternate between determining the
+% bounding box for stringsize and stroking various ornaments.
+% <string> internalstroke --
+/internalstroke {S} def
+
+% Sets up internalshow to use the null device to determine string size.
+% -- nullinternalshow --
+/nullinternalshow {/internalshow {false charpath flattenpath
+                                  pathbbox updatebbox} def} def
+
+% Sets up internalstroke to use the null device to determine string size.
+% -- nullinternalstroke --
+/nullinternalstroke {
+ /internalstroke {flattenpath pathbbox updatebbox} def} def
+
+% This routine tests to see if the character code matches the first
+% character of a string.
+% <char code> <string> testchar <char code> <true or false>
+/testchar {exch dup 3 -1 roll 0 get eq} def
+
+% Raise the text baseline for superscripts.
+% -- raise --
+/raise {
+  0 fontsize 2 div rmoveto
+  /fontsize fontsize 2 mul 3 div def
+  currentfont /FontName get fontsize sf
+} def
+
+% Un-raise the text baseline for superscripts.
+% -- unraise --
+/unraise {
+  /fontsize fontsize 1.5 mul def
+  0 fontsize 2 div neg rmoveto
+} def
+
+% Lower the text baseline for subscripts.
+% -- lower --
+/lower {
+  0 fontsize 3 div neg rmoveto
+  /fontsize fontsize 2 mul 3 div def
+  currentfont /FontName get fontsize sf
+} def
+
+% Un-lower the text baseline for subscripts.
+% -- unlower --
+/unlower {
+  /fontsize fontsize 1.5 mul def
+  0 fontsize 3 div rmoveto
+} def
+
+% Compare the top two elements on the stack and leave only the
+% larger one.
+/maxval {2 copy gt {pop} {exch pop} ifelse} def
+
+% Tokenize a string.  Do not use the usual PostScript token because
+% parentheses will not be interpreted correctly because of rescanning
+% of the string.
+/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
+0 2 vg&string length 2 sub {
+  dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
+  dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
+  /vg&level exch vg&level add def
+  vg&level 0 eq {/vg&index exch def exit} if pop
+} for
+vg&index 0 ge {
+  vg&string vg&index 2 add dup vg&string length exch sub getinterval
+  vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
+  true}
+{false} ifelse
+} bind def
+
+% Recursively show an unicode string.
+% <string> recshow --
+/recshow {
+  popfirst
+  {
+    % Test to see if this is a string attribute.
+    vg&fbyte 16#f0 and 16#e0 eq
+    {
+      q
+
+      % Font style.
+      currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
+      vg&cbyte or vg&fontstyles exch get fontsize exch exec
+
+      vg&token pop recshow currentpoint Q m recshow
+    }
+    {
+      vg&fbyte 16#F8 and 16#F0 eq {
+
+        % Superscript and/or subscript.
+        vg&cbyte 16#00 eq {
+          vg&token pop exch vg&token pop 3 -1 roll
+          q raise recshow unraise currentpoint pop Q exch
+          q lower recshow unlower currentpoint pop Q
+          maxval currentpoint exch pop m recshow } if
+
+        % Strikeout.
+        vg&cbyte 16#01 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick w
+          currentpoint 4 -2 roll fontsize 3 div add moveto
+          fontsize 3 div add lineto internalstroke Q
+          recshow} if
+
+        % Underline.
+        vg&cbyte 16#02 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick w
+          currentpoint 4 -2 roll vg&uoffset add moveto
+          vg&uoffset add lineto internalstroke Q
+          recshow} if
+
+        % Dashed underline.
+        vg&cbyte 16#03 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
+          vg&underline vg&uthick w
+          currentpoint 4 -2 roll vg&uoffset add moveto
+          vg&uoffset add lineto internalstroke Q
+          recshow} if
+
+        % Dotted underline.
+        vg&cbyte 16#04 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 1 J [ 0 vg&uthick 3 mul] 0 d
+          vg&underline vg&uthick w
+          currentpoint 4 -2 roll vg&uoffset add moveto
+          vg&uoffset add lineto internalstroke Q
+          recshow} if
+
+        % Thick underline.
+        vg&cbyte 16#05 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick 2 mul w
+          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+          recshow} if
+
+        % Gray thick underline.
+        vg&cbyte 16#06 eq {
+          vg&token pop currentpoint 3 -1 roll recshow
+          q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
+          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
+          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
+          recshow} if
+
+        % Overbar.
+        vg&cbyte 16#07 eq {
+          vg&token pop dup stringsize relative 4 1 roll pop pop exch
+          3 -1 roll recshow
+          q 0 J vg&underline vg&uthick w
+          vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
+          recshow} if
+      }
+      {
+        vg&fbyte vg&cbyte unicharshow recshow
+      } ifelse
+    } ifelse
+  } if
+} def
+
+% Get the underline position and thickness from the current font.
+/vg&underline {
+
+currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
+dup dup /FontInfo known {
+  /FontInfo get dup
+  dup /UnderlinePosition known {
+    /UnderlinePosition get /vg&uoffset exch def
+  }
+  {
+    pop /vg&uoffset 0 def
+  } ifelse
+  dup /UnderlineThickness known {
+    /UnderlineThickness get /vg&uthick exch def
+  }
+  {
+    pop /vg&uthick 0 def
+  } ifelse
+}
+{
+  pop /vg&uoffset 0 def /vg&uthick 0 def
+} ifelse
+/FontMatrix get
+currentfont dup /FontType get 0 eq
+{/FontMatrix get matrix concatmatrix}{pop} ifelse
+dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
+0 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
+} def
+
+% Make a frame with the coordinates on the stack.
+% <llx> <lly> <urx> <ury> frame --
+/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
+
+% Resets the accumulated bounding box to a degenerate box at the
+% current point.
+% -- resetbbox --
+/resetbbox {
+  currentpoint 2 copy
+  /bbury exch def
+  /bburx exch def
+  /bblly exch def
+  /bbllx exch def
+} def
+
+% Update the accumulated bounding box.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/updatebbox {
+  dup bbury gt {/bbury exch def} {pop} ifelse
+  dup bburx gt {/bburx exch def} {pop} ifelse
+  dup bblly lt {/bblly exch def} {pop} ifelse
+  dup bbllx lt {/bbllx exch def} {pop} ifelse
+} def
+
+% Set the bounding box to the values on the stack.
+% <llx'> <lly'> <urx'> <ury'> updatebbox --
+/restorebbox {
+  /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
+} def
+
+% Push the accumulated bounding box onto the stack.
+% -- pushbbox <llx> <lly> <urx> <ury>
+/pushbbox {bbllx bblly bburx bbury} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
+/inflate {
+  2 {fontsize 0.2 mul add 4 1 roll} repeat
+  2 {fontsize 0.2 mul sub 4 1 roll} repeat
+} def
+
+% Make the relative bounding box relative to the currentpoint.
+% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
+/relative {
+  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
+} def
+
+% Returns the size of a string appropriate for recshow.
+% <string> stringsize <llx> <lly> <urx> <ury>
+/stringsize {
+  pushbbox /internalshow load /internalstroke load 7 -1 roll
+  q
+  nulldevice 0 0 m
+  nullinternalshow nullinternalstroke
+  resetbbox
+  recshow
+  /internalstroke exch def /internalshow exch def
+  pushbbox 8 -4 roll restorebbox
+  Q
+} def
+
+% Calculate values for string positioning.
+/calcval {4 copy
+  3 -1 roll sub /widy exch def sub neg /widx exch def
+  pop pop /dy exch def /dx exch def} def
+
+% Utilities to position a string.
+% First letter (U=upper, C=center, B=baseline, L=lower)
+% Second letter (L=left, C=center, R=right)
+/align [
+{calcval dx neg widy dy add neg rmoveto} % UL
+{calcval dx neg widy 2 div dy add neg rmoveto} % CL
+{calcval dx neg 0 rmoveto} % BL
+{calcval dx neg dy neg rmoveto} % LL
+{calcval widx dx add neg widy dy add neg rmoveto} % UR
+{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
+{calcval widx dx add neg 0 rmoveto} % BR
+{calcval widx dx add neg dy neg rmoveto} % LR
+{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
+{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
+{calcval widx 2 div dx add neg 0 rmoveto} % BC
+{calcval widx 2 div dx add neg dy neg rmoveto} % LC
+] def
+
+/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
+         q inflate relative frame exch exec Q recshow Q} def
+
+end /procDict exch def
+%%EndProlog
+
+%%BeginSetup
+save
+procDict begin
+printColorMap begin
+595 791 setpagesize
+20 20 20 20 setmargins
+0 0 setorigin
+509 376 setsize
+fittopage
+portrait
+imagescale
+cliptobounds
+setbasematrix
+/Helvetica 10 sf
+defaultGraphicsState
+%%EndSetup
+
+0.00000 0.00000 0.00000 RG
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+cliprestore
+1.00000 1.00000 1.00000 RG
+newpath
+0.00000 0.00000 m
+509.000 0.00000 l
+509.000 376.000 l
+0.00000 376.000 l
+0.00000 0.00000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0.00000 0.00000 0.00000 RG
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+cliprestore
+1.00000 1.00000 1.00000 RG
+newpath
+0.00000 0.00000 m
+509.000 0.00000 l
+509.000 376.000 l
+0.00000 376.000 l
+0.00000 0.00000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+q
+q
+1.00000 1.00000 1.00000 RG
+newpath
+0.00000 0.00000 m
+0.00000 0.00000 l
+0.00000 0.00000 l
+0.00000 0.00000 l
+0.00000 0.00000 l
+h
+f
+Q
+Q
+[ 1.00000 0.00000 0.00000 1.00000 429.000 205.000 ] concat
+.258824 .658824 .282353 RG
+newpath
+-159.223 -187.300 m
+-158.020 -190.000 l
+-160.891 -197.424 l
+-159.435 -197.424 l
+-157.309 -191.832 l
+-155.039 -197.424 l
+-153.768 -197.424 l
+-157.821 -187.300 l
+h
+-148.627 -190.000 m
+-148.627 -193.541 l
+-152.168 -193.541 l
+-152.168 -194.553 l
+-148.627 -194.553 l
+-148.627 -198.094 l
+-147.615 -198.094 l
+-147.615 -194.553 l
+-144.074 -194.553 l
+-144.074 -193.541 l
+-147.615 -193.541 l
+-147.615 -190.000 l
+h
+-141.210 -190.000 m
+-141.210 -200.794 l
+-139.863 -200.794 l
+-139.863 -190.000 l
+h
+-131.722 -190.239 m
+-132.624 -189.966 -133.396 -189.829 -134.039 -189.829  c
+-135.133 -189.829 -136.025 -190.193 -136.715 -190.919  c
+-137.406 -191.646 -137.751 -192.589 -137.751 -193.746  c
+-137.751 -194.872 -137.447 -195.795 -136.838 -196.515  c
+-136.230 -197.235 -135.452 -197.595 -134.504 -197.595  c
+-133.606 -197.595 -132.912 -197.276 -132.422 -196.638  c
+-131.932 -196.000 -131.688 -195.093 -131.688 -193.917  c
+-131.694 -193.500 l
+-136.377 -193.500 l
+-136.181 -191.736 -135.317 -190.854 -133.786 -190.854  c
+-133.226 -190.854 -132.537 -191.005 -131.722 -191.306  c
+h
+-136.315 -194.512 m
+-133.041 -194.512 l
+-133.041 -195.893 -133.556 -196.583 -134.586 -196.583  c
+-135.620 -196.583 -136.197 -195.893 -136.315 -194.512  c
+h
+-129.363 -190.000 m
+-129.363 -197.424 l
+-128.017 -197.424 l
+-128.017 -196.029 l
+-127.306 -197.068 -126.435 -197.588 -125.405 -197.588  c
+-124.763 -197.588 -124.250 -197.384 -123.867 -196.976  c
+-123.484 -196.568 -123.293 -196.020 -123.293 -195.332  c
+-123.293 -190.000 l
+-124.640 -190.000 l
+-124.640 -194.895 l
+-124.640 -195.446 -124.721 -195.839 -124.882 -196.074  c
+-125.044 -196.308 -125.312 -196.426 -125.686 -196.426  c
+-126.510 -196.426 -127.287 -195.886 -128.017 -194.806  c
+-128.017 -190.000 l
+h
+-120.647 -187.532 m
+-120.490 -188.701 l
+-119.711 -188.332 -118.943 -188.147 -118.187 -188.147  c
+-116.669 -188.147 -115.910 -188.952 -115.910 -190.561  c
+-115.910 -191.729 l
+-116.407 -190.690 -117.223 -190.171 -118.357 -190.171  c
+-119.246 -190.171 -119.952 -190.494 -120.477 -191.142  c
+-121.001 -191.789 -121.263 -192.661 -121.263 -193.760  c
+-121.263 -194.890 -120.964 -195.811 -120.367 -196.521  c
+-119.770 -197.232 -118.998 -197.588 -118.050 -197.588  c
+-117.220 -197.588 -116.507 -197.251 -115.910 -196.576  c
+-115.910 -197.424 l
+-114.557 -197.424 l
+-114.557 -192.023 l
+-114.557 -190.861 -114.617 -190.001 -114.738 -189.443  c
+-114.859 -188.885 -115.085 -188.428 -115.418 -188.072  c
+-116.006 -187.448 -116.920 -187.136 -118.159 -187.136  c
+-119.025 -187.136 -119.854 -187.268 -120.647 -187.532  c
+h
+-115.910 -192.570 m
+-115.910 -195.653 l
+-116.503 -196.269 -117.147 -196.576 -117.845 -196.576  c
+-118.465 -196.576 -118.950 -196.328 -119.301 -195.831  c
+-119.652 -195.334 -119.827 -194.653 -119.827 -193.787  c
+-119.827 -192.160 -119.255 -191.347 -118.111 -191.347  c
+-117.332 -191.347 -116.598 -191.755 -115.910 -192.570  c
+h
+-109.717 -189.829 m
+-110.400 -189.829 -110.934 -190.025 -111.316 -190.417  c
+-111.699 -190.809 -111.891 -191.354 -111.891 -192.051  c
+-111.891 -196.412 l
+-112.820 -196.412 l
+-112.820 -197.424 l
+-111.891 -197.424 l
+-111.891 -198.771 l
+-110.544 -198.900 l
+-110.544 -197.424 l
+-108.603 -197.424 l
+-108.603 -196.412 l
+-110.544 -196.412 l
+-110.544 -192.297 l
+-110.544 -191.326 -110.125 -190.841 -109.286 -190.841  c
+-109.108 -190.841 -108.892 -190.870 -108.637 -190.930  c
+-108.637 -190.000 l
+-109.051 -189.886 -109.411 -189.829 -109.717 -189.829  c
+h
+-106.709 -190.000 m
+-106.709 -200.794 l
+-105.362 -200.794 l
+-105.362 -196.029 l
+-104.651 -197.068 -103.781 -197.588 -102.751 -197.588  c
+-102.108 -197.588 -101.596 -197.384 -101.213 -196.976  c
+-100.830 -196.568 -100.639 -196.020 -100.639 -195.332  c
+-100.639 -190.000 l
+-101.985 -190.000 l
+-101.985 -194.895 l
+-101.985 -195.446 -102.066 -195.839 -102.228 -196.074  c
+-102.390 -196.308 -102.658 -196.426 -103.031 -196.426  c
+-103.856 -196.426 -104.633 -195.886 -105.362 -194.806  c
+-105.362 -190.000 l
+h
+-85.3262 -190.000 m
+-93.4199 -194.047 l
+-85.3262 -198.094 l
+-85.3262 -196.966 l
+-91.1572 -194.047 l
+-85.3262 -191.135 l
+h
+-76.9727 -195.243 m
+-76.3301 -196.077 -75.5212 -196.494 -74.5459 -196.494  c
+-73.6618 -196.494 -72.9383 -196.201 -72.3755 -195.616  c
+-71.8127 -195.030 -71.5312 -194.279 -71.5312 -193.363  c
+-71.5312 -192.311 -71.8468 -191.445 -72.4780 -190.766  c
+-73.1092 -190.087 -73.9102 -189.747 -74.8809 -189.747  c
+-75.9974 -189.747 -76.8701 -190.196 -77.4990 -191.094  c
+-78.1279 -191.992 -78.4424 -193.238 -78.4424 -194.833  c
+-78.4424 -196.588 -78.0812 -197.950 -77.3589 -198.921  c
+-76.6366 -199.892 -75.6191 -200.377 -74.3066 -200.377  c
+-73.7051 -200.377 -72.9531 -200.249 -72.0508 -199.994  c
+-72.0508 -198.818 l
+-73.0033 -199.183 -73.7826 -199.365 -74.3887 -199.365  c
+-76.1113 -199.365 -76.9727 -197.991 -76.9727 -195.243  c
+h
+-72.8848 -193.062 m
+-72.8848 -193.828 -73.0568 -194.430 -73.4009 -194.867  c
+-73.7450 -195.305 -74.2223 -195.523 -74.8330 -195.523  c
+-75.4027 -195.523 -75.8926 -195.332 -76.3027 -194.949  c
+-76.7129 -194.566 -76.9180 -194.106 -76.9180 -193.568  c
+-76.9180 -192.721 -76.7231 -192.041 -76.3335 -191.528  c
+-75.9438 -191.015 -75.4277 -190.759 -74.7852 -190.759  c
+-74.2064 -190.759 -73.7450 -190.967 -73.4009 -191.384  c
+-73.0568 -191.801 -72.8848 -192.361 -72.8848 -193.062  c
+h
+-58.8438 -190.000 m
+-59.3428 -190.602 l
+-60.0902 -190.032 -60.9629 -189.747 -61.9609 -189.747  c
+-63.0182 -189.747 -63.8875 -190.054 -64.5688 -190.667  c
+-65.2502 -191.279 -65.5908 -192.060 -65.5908 -193.008  c
+-65.5908 -194.566 -64.7682 -195.624 -63.1230 -196.180  c
+-63.5788 -197.005 -63.8066 -197.690 -63.8066 -198.237  c
+-63.8066 -198.834 -63.5685 -199.339 -63.0923 -199.751  c
+-62.6160 -200.164 -62.0384 -200.370 -61.3594 -200.370  c
+-60.7031 -200.370 -60.1619 -200.178 -59.7358 -199.792  c
+-59.3097 -199.407 -59.0967 -198.919 -59.0967 -198.326  c
+-59.0967 -197.314 -59.8372 -196.435 -61.3184 -195.688  c
+-60.6393 -194.484 -59.8486 -193.361 -58.9463 -192.317  c
+-58.5316 -192.919 -58.3242 -193.771 -58.3242 -194.874  c
+-58.3311 -195.380 l
+-56.9912 -195.380 l
+-56.9912 -193.885 -57.4378 -192.595 -58.3311 -191.511  c
+-57.9209 -190.991 -57.4538 -190.488 -56.9297 -190.000  c
+h
+-59.9307 -191.381 m
+-60.8877 -192.557 -61.7992 -193.890 -62.6650 -195.380  c
+-63.7178 -194.961 -64.2441 -194.279 -64.2441 -193.336  c
+-64.2441 -192.620 -64.0015 -192.012 -63.5161 -191.511  c
+-63.0308 -191.009 -62.4395 -190.759 -61.7422 -190.759  c
+-61.1087 -190.759 -60.5049 -190.966 -59.9307 -191.381  c
+h
+-61.8105 -196.542 m
+-60.8444 -196.984 -60.3613 -197.572 -60.3613 -198.306  c
+-60.3613 -199.007 -60.7122 -199.358 -61.4141 -199.358  c
+-62.1068 -199.358 -62.4531 -199.005 -62.4531 -198.299  c
+-62.4531 -197.834 -62.2389 -197.248 -61.8105 -196.542  c
+h
+-49.0820 -190.000 m
+-49.5811 -190.602 l
+-50.3285 -190.032 -51.2012 -189.747 -52.1992 -189.747  c
+-53.2565 -189.747 -54.1258 -190.054 -54.8071 -190.667  c
+-55.4884 -191.279 -55.8291 -192.060 -55.8291 -193.008  c
+-55.8291 -194.566 -55.0065 -195.624 -53.3613 -196.180  c
+-53.8171 -197.005 -54.0449 -197.690 -54.0449 -198.237  c
+-54.0449 -198.834 -53.8068 -199.339 -53.3306 -199.751  c
+-52.8543 -200.164 -52.2767 -200.370 -51.5977 -200.370  c
+-50.9414 -200.370 -50.4002 -200.178 -49.9741 -199.792  c
+-49.5480 -199.407 -49.3350 -198.919 -49.3350 -198.326  c
+-49.3350 -197.314 -50.0755 -196.435 -51.5566 -195.688  c
+-50.8776 -194.484 -50.0869 -193.361 -49.1846 -192.317  c
+-48.7699 -192.919 -48.5625 -193.771 -48.5625 -194.874  c
+-48.5693 -195.380 l
+-47.2295 -195.380 l
+-47.2295 -193.885 -47.6761 -192.595 -48.5693 -191.511  c
+-48.1592 -190.991 -47.6921 -190.488 -47.1680 -190.000  c
+h
+-50.1689 -191.381 m
+-51.1260 -192.557 -52.0374 -193.890 -52.9033 -195.380  c
+-53.9561 -194.961 -54.4824 -194.279 -54.4824 -193.336  c
+-54.4824 -192.620 -54.2397 -192.012 -53.7544 -191.511  c
+-53.2690 -191.009 -52.6777 -190.759 -51.9805 -190.759  c
+-51.3470 -190.759 -50.7432 -190.966 -50.1689 -191.381  c
+h
+-52.0488 -196.542 m
+-51.0827 -196.984 -50.5996 -197.572 -50.5996 -198.306  c
+-50.5996 -199.007 -50.9505 -199.358 -51.6523 -199.358  c
+-52.3451 -199.358 -52.6914 -199.005 -52.6914 -198.299  c
+-52.6914 -197.834 -52.4772 -197.248 -52.0488 -196.542  c
+h
+-40.6055 -190.000 m
+-40.6055 -191.347 l
+-39.2588 -191.347 l
+-39.2588 -190.000 l
+h
+-40.4346 -192.700 m
+-40.6055 -198.094 l
+-40.6055 -200.117 l
+-39.2588 -200.117 l
+-39.2588 -198.094 l
+-39.4229 -192.700 l
+h
+-36.3398 -187.532 m
+-36.1826 -188.701 l
+-35.4033 -188.332 -34.6354 -188.147 -33.8789 -188.147  c
+-32.3613 -188.147 -31.6025 -188.952 -31.6025 -190.561  c
+-31.6025 -191.729 l
+-32.0993 -190.690 -32.9150 -190.171 -34.0498 -190.171  c
+-34.9385 -190.171 -35.6449 -190.494 -36.1689 -191.142  c
+-36.6930 -191.789 -36.9551 -192.661 -36.9551 -193.760  c
+-36.9551 -194.890 -36.6566 -195.811 -36.0596 -196.521  c
+-35.4626 -197.232 -34.6901 -197.588 -33.7422 -197.588  c
+-32.9128 -197.588 -32.1995 -197.251 -31.6025 -196.576  c
+-31.6025 -197.424 l
+-30.2490 -197.424 l
+-30.2490 -192.023 l
+-30.2490 -190.861 -30.3094 -190.001 -30.4302 -189.443  c
+-30.5509 -188.885 -30.7777 -188.428 -31.1104 -188.072  c
+-31.6982 -187.448 -32.6120 -187.136 -33.8516 -187.136  c
+-34.7174 -187.136 -35.5469 -187.268 -36.3398 -187.532  c
+h
+-31.6025 -192.570 m
+-31.6025 -195.653 l
+-32.1950 -196.269 -32.8398 -196.576 -33.5371 -196.576  c
+-34.1569 -196.576 -34.6423 -196.328 -34.9932 -195.831  c
+-35.3441 -195.334 -35.5195 -194.653 -35.5195 -193.787  c
+-35.5195 -192.160 -34.9476 -191.347 -33.8037 -191.347  c
+-33.0244 -191.347 -32.2907 -191.755 -31.6025 -192.570  c
+h
+-27.6377 -190.000 m
+-27.6377 -197.424 l
+-26.2910 -197.424 l
+-26.2910 -196.029 l
+-25.7578 -197.068 -24.9831 -197.588 -23.9668 -197.588  c
+-23.8301 -197.588 -23.6865 -197.576 -23.5361 -197.554  c
+-23.5361 -196.296 l
+-23.7686 -196.373 -23.9736 -196.412 -24.1514 -196.412  c
+-25.0036 -196.412 -25.7168 -195.906 -26.2910 -194.895  c
+-26.2910 -190.000 l
+h
+-21.9092 -190.000 m
+-21.9092 -197.424 l
+-20.5625 -197.424 l
+-20.5625 -190.000 l
+h
+-21.9092 -198.771 m
+-21.9092 -200.117 l
+-20.5625 -200.117 l
+-20.5625 -198.771 l
+h
+-13.0977 -190.000 m
+-13.0977 -191.395 l
+-13.6445 -190.351 -14.4694 -189.829 -15.5723 -189.829  c
+-16.4655 -189.829 -17.1685 -190.155 -17.6812 -190.807  c
+-18.1938 -191.458 -18.4502 -192.349 -18.4502 -193.479  c
+-18.4502 -194.715 -18.1597 -195.708 -17.5786 -196.460  c
+-16.9976 -197.212 -16.2331 -197.588 -15.2852 -197.588  c
+-14.4056 -197.588 -13.6764 -197.251 -13.0977 -196.576  c
+-13.0977 -200.794 l
+-11.7441 -200.794 l
+-11.7441 -190.000 l
+h
+-13.0977 -195.653 m
+-13.7949 -196.269 -14.4557 -196.576 -15.0801 -196.576  c
+-16.3698 -196.576 -17.0146 -195.590 -17.0146 -193.616  c
+-17.0146 -191.880 -16.4404 -191.012 -15.2920 -191.012  c
+-14.5446 -191.012 -13.8132 -191.420 -13.0977 -192.235  c
+h
+-9.05078 -187.977 m
+-9.05078 -200.794 l
+-6.35059 -200.794 l
+-6.35059 -199.782 l
+-7.86816 -199.782 l
+-7.86816 -188.988 l
+-6.35059 -188.988 l
+-6.35059 -187.977 l
+h
+-5.24316 -190.000 m
+-2.41992 -193.835 l
+-5.16113 -197.424 l
+-3.56152 -197.424 l
+-1.39453 -194.566 l
+.567383 -197.424 l
+1.87988 -197.424 l
+-.690430 -193.657 l
+2.10547 -190.000 l
+.505859 -190.000 l
+-1.72949 -192.939 l
+-3.88965 -190.000 l
+h
+5.94727 -187.977 m
+5.94727 -200.794 l
+3.24707 -200.794 l
+3.24707 -199.782 l
+4.76465 -199.782 l
+4.76465 -188.988 l
+3.24707 -188.988 l
+3.24707 -187.977 l
+h
+8.64062 -187.977 m
+8.64062 -200.794 l
+11.3408 -200.794 l
+11.3408 -199.782 l
+9.82324 -199.782 l
+9.82324 -188.988 l
+11.3408 -188.988 l
+11.3408 -187.977 l
+h
+13.6240 -187.300 m
+14.8271 -190.000 l
+11.9561 -197.424 l
+13.4121 -197.424 l
+15.5381 -191.832 l
+17.8076 -197.424 l
+19.0791 -197.424 l
+15.0254 -187.300 l
+h
+24.2197 -190.000 m
+24.2197 -193.541 l
+20.6787 -193.541 l
+20.6787 -194.553 l
+24.2197 -194.553 l
+24.2197 -198.094 l
+25.2314 -198.094 l
+25.2314 -194.553 l
+28.7725 -194.553 l
+28.7725 -193.541 l
+25.2314 -193.541 l
+25.2314 -190.000 l
+h
+31.6367 -190.000 m
+31.6367 -200.794 l
+32.9834 -200.794 l
+32.9834 -190.000 l
+h
+41.1250 -190.239 m
+40.2227 -189.966 39.4502 -189.829 38.8076 -189.829  c
+37.7139 -189.829 36.8218 -190.193 36.1313 -190.919  c
+35.4409 -191.646 35.0957 -192.589 35.0957 -193.746  c
+35.0957 -194.872 35.3999 -195.795 36.0083 -196.515  c
+36.6167 -197.235 37.3949 -197.595 38.3428 -197.595  c
+39.2406 -197.595 39.9344 -197.276 40.4243 -196.638  c
+40.9142 -196.000 41.1592 -195.093 41.1592 -193.917  c
+41.1523 -193.500 l
+36.4697 -193.500 l
+36.6657 -191.736 37.5293 -190.854 39.0605 -190.854  c
+39.6211 -190.854 40.3092 -191.005 41.1250 -191.306  c
+h
+36.5312 -194.512 m
+39.8057 -194.512 l
+39.8057 -195.893 39.2907 -196.583 38.2607 -196.583  c
+37.2262 -196.583 36.6497 -195.893 36.5312 -194.512  c
+h
+43.4834 -190.000 m
+43.4834 -197.424 l
+44.8301 -197.424 l
+44.8301 -196.029 l
+45.5410 -197.068 46.4115 -197.588 47.4414 -197.588  c
+48.0840 -197.588 48.5967 -197.384 48.9795 -196.976  c
+49.3623 -196.568 49.5537 -196.020 49.5537 -195.332  c
+49.5537 -190.000 l
+48.2070 -190.000 l
+48.2070 -194.895 l
+48.2070 -195.446 48.1261 -195.839 47.9644 -196.074  c
+47.8026 -196.308 47.5348 -196.426 47.1611 -196.426  c
+46.3363 -196.426 45.5592 -195.886 44.8301 -194.806  c
+44.8301 -190.000 l
+h
+52.1992 -187.532 m
+52.3564 -188.701 l
+53.1357 -188.332 53.9036 -188.147 54.6602 -188.147  c
+56.1777 -188.147 56.9365 -188.952 56.9365 -190.561  c
+56.9365 -191.729 l
+56.4398 -190.690 55.6240 -190.171 54.4893 -190.171  c
+53.6006 -190.171 52.8942 -190.494 52.3701 -191.142  c
+51.8460 -191.789 51.5840 -192.661 51.5840 -193.760  c
+51.5840 -194.890 51.8825 -195.811 52.4795 -196.521  c
+53.0765 -197.232 53.8490 -197.588 54.7969 -197.588  c
+55.6263 -197.588 56.3395 -197.251 56.9365 -196.576  c
+56.9365 -197.424 l
+58.2900 -197.424 l
+58.2900 -192.023 l
+58.2900 -190.861 58.2297 -190.001 58.1089 -189.443  c
+57.9881 -188.885 57.7614 -188.428 57.4287 -188.072  c
+56.8408 -187.448 55.9271 -187.136 54.6875 -187.136  c
+53.8216 -187.136 52.9922 -187.268 52.1992 -187.532  c
+h
+56.9365 -192.570 m
+56.9365 -195.653 l
+56.3441 -196.269 55.6992 -196.576 55.0020 -196.576  c
+54.3822 -196.576 53.8968 -196.328 53.5459 -195.831  c
+53.1950 -195.334 53.0195 -194.653 53.0195 -193.787  c
+53.0195 -192.160 53.5915 -191.347 54.7354 -191.347  c
+55.5146 -191.347 56.2484 -191.755 56.9365 -192.570  c
+h
+63.1299 -189.829 m
+62.4463 -189.829 61.9131 -190.025 61.5303 -190.417  c
+61.1475 -190.809 60.9561 -191.354 60.9561 -192.051  c
+60.9561 -196.412 l
+60.0264 -196.412 l
+60.0264 -197.424 l
+60.9561 -197.424 l
+60.9561 -198.771 l
+62.3027 -198.900 l
+62.3027 -197.424 l
+64.2441 -197.424 l
+64.2441 -196.412 l
+62.3027 -196.412 l
+62.3027 -192.297 l
+62.3027 -191.326 62.7220 -190.841 63.5605 -190.841  c
+63.7383 -190.841 63.9548 -190.870 64.2100 -190.930  c
+64.2100 -190.000 l
+63.7952 -189.886 63.4352 -189.829 63.1299 -189.829  c
+h
+66.1377 -190.000 m
+66.1377 -200.794 l
+67.4844 -200.794 l
+67.4844 -196.029 l
+68.1953 -197.068 69.0658 -197.588 70.0957 -197.588  c
+70.7383 -197.588 71.2510 -197.384 71.6338 -196.976  c
+72.0166 -196.568 72.2080 -196.020 72.2080 -195.332  c
+72.2080 -190.000 l
+70.8613 -190.000 l
+70.8613 -194.895 l
+70.8613 -195.446 70.7804 -195.839 70.6187 -196.074  c
+70.4569 -196.308 70.1891 -196.426 69.8154 -196.426  c
+68.9906 -196.426 68.2135 -195.886 67.4844 -194.806  c
+67.4844 -190.000 l
+h
+76.6855 -187.977 m
+76.6855 -200.794 l
+73.9854 -200.794 l
+73.9854 -199.782 l
+75.5029 -199.782 l
+75.5029 -188.988 l
+73.9854 -188.988 l
+73.9854 -187.977 l
+h
+f
+newpath
+-151.223 169.700 m
+-150.020 167.000 l
+-152.891 159.576 l
+-151.435 159.576 l
+-149.309 165.168 l
+-147.039 159.576 l
+-145.768 159.576 l
+-149.821 169.700 l
+h
+-144.168 167.000 m
+-136.074 162.953 l
+-144.168 158.906 l
+-144.168 160.034 l
+-138.337 162.953 l
+-144.168 165.865 l
+h
+-130.168 167.253 m
+-131.212 167.253 -132.056 166.762 -132.701 165.780  c
+-133.346 164.798 -133.668 163.516 -133.668 161.935  c
+-133.668 160.340 -133.343 159.057 -132.694 158.086  c
+-132.044 157.115 -131.189 156.630 -130.127 156.630  c
+-129.065 156.630 -128.209 157.115 -127.560 158.086  c
+-126.911 159.057 -126.586 160.333 -126.586 161.914  c
+-126.586 163.536 -126.911 164.832 -127.560 165.800  c
+-128.209 166.769 -129.079 167.253 -130.168 167.253  c
+h
+-130.154 166.241 m
+-128.728 166.241 -128.015 164.792 -128.015 161.894  c
+-128.015 159.059 -128.719 157.642 -130.127 157.642  c
+-131.531 157.642 -132.232 159.073 -132.232 161.935  c
+-132.232 164.806 -131.540 166.241 -130.154 166.241  c
+h
+-114.021 167.000 m
+-114.521 166.398 l
+-115.268 166.968 -116.141 167.253 -117.139 167.253  c
+-118.196 167.253 -119.065 166.946 -119.747 166.333  c
+-120.428 165.721 -120.769 164.940 -120.769 163.992  c
+-120.769 162.434 -119.946 161.376 -118.301 160.820  c
+-118.757 159.995 -118.984 159.310 -118.984 158.763  c
+-118.984 158.166 -118.746 157.661 -118.270 157.249  c
+-117.794 156.836 -117.216 156.630 -116.537 156.630  c
+-115.881 156.630 -115.340 156.822 -114.914 157.208  c
+-114.487 157.593 -114.274 158.081 -114.274 158.674  c
+-114.274 159.686 -115.015 160.565 -116.496 161.312  c
+-115.817 162.516 -115.026 163.639 -114.124 164.683  c
+-113.709 164.081 -113.502 163.229 -113.502 162.126  c
+-113.509 161.620 l
+-112.169 161.620 l
+-112.169 163.115 -112.616 164.405 -113.509 165.489  c
+-113.099 166.009 -112.632 166.512 -112.107 167.000  c
+h
+-115.108 165.619 m
+-116.065 164.443 -116.977 163.110 -117.843 161.620  c
+-118.896 162.039 -119.422 162.721 -119.422 163.664  c
+-119.422 164.380 -119.179 164.988 -118.694 165.489  c
+-118.208 165.991 -117.617 166.241 -116.920 166.241  c
+-116.286 166.241 -115.683 166.034 -115.108 165.619  c
+h
+-116.988 160.458 m
+-116.022 160.016 -115.539 159.428 -115.539 158.694  c
+-115.539 157.993 -115.890 157.642 -116.592 157.642  c
+-117.285 157.642 -117.631 157.995 -117.631 158.701  c
+-117.631 159.166 -117.417 159.752 -116.988 160.458  c
+h
+-104.260 167.000 m
+-104.759 166.398 l
+-105.506 166.968 -106.379 167.253 -107.377 167.253  c
+-108.434 167.253 -109.304 166.946 -109.985 166.333  c
+-110.666 165.721 -111.007 164.940 -111.007 163.992  c
+-111.007 162.434 -110.184 161.376 -108.539 160.820  c
+-108.995 159.995 -109.223 159.310 -109.223 158.763  c
+-109.223 158.166 -108.985 157.661 -108.508 157.249  c
+-108.032 156.836 -107.454 156.630 -106.775 156.630  c
+-106.119 156.630 -105.578 156.822 -105.152 157.208  c
+-104.726 157.593 -104.513 158.081 -104.513 158.674  c
+-104.513 159.686 -105.253 160.565 -106.734 161.312  c
+-106.055 162.516 -105.265 163.639 -104.362 164.683  c
+-103.948 164.081 -103.740 163.229 -103.740 162.126  c
+-103.747 161.620 l
+-102.407 161.620 l
+-102.407 163.115 -102.854 164.405 -103.747 165.489  c
+-103.337 166.009 -102.870 166.512 -102.346 167.000  c
+h
+-105.347 165.619 m
+-106.304 164.443 -107.215 163.110 -108.081 161.620  c
+-109.134 162.039 -109.660 162.721 -109.660 163.664  c
+-109.660 164.380 -109.417 164.988 -108.932 165.489  c
+-108.447 165.991 -107.855 166.241 -107.158 166.241  c
+-106.525 166.241 -105.921 166.034 -105.347 165.619  c
+h
+-107.227 160.458 m
+-106.260 160.016 -105.777 159.428 -105.777 158.694  c
+-105.777 157.993 -106.128 157.642 -106.830 157.642  c
+-107.523 157.642 -107.869 157.995 -107.869 158.701  c
+-107.869 159.166 -107.655 159.752 -107.227 160.458  c
+h
+-95.7832 167.000 m
+-95.7832 165.653 l
+-94.4365 165.653 l
+-94.4365 167.000 l
+h
+-95.6123 164.300 m
+-95.7832 158.906 l
+-95.7832 156.883 l
+-94.4365 156.883 l
+-94.4365 158.906 l
+-94.6006 164.300 l
+h
+-91.5176 169.468 m
+-91.3604 168.299 l
+-90.5811 168.668 -89.8132 168.853 -89.0566 168.853  c
+-87.5391 168.853 -86.7803 168.048 -86.7803 166.439  c
+-86.7803 165.271 l
+-87.2770 166.310 -88.0928 166.829 -89.2275 166.829  c
+-90.1162 166.829 -90.8226 166.506 -91.3467 165.858  c
+-91.8708 165.211 -92.1328 164.339 -92.1328 163.240  c
+-92.1328 162.110 -91.8343 161.189 -91.2373 160.479  c
+-90.6403 159.768 -89.8678 159.412 -88.9199 159.412  c
+-88.0905 159.412 -87.3773 159.749 -86.7803 160.424  c
+-86.7803 159.576 l
+-85.4268 159.576 l
+-85.4268 164.977 l
+-85.4268 166.139 -85.4871 166.999 -85.6079 167.557  c
+-85.7287 168.115 -85.9554 168.572 -86.2881 168.928  c
+-86.8760 169.552 -87.7897 169.864 -89.0293 169.864  c
+-89.8952 169.864 -90.7246 169.732 -91.5176 169.468  c
+h
+-86.7803 164.430 m
+-86.7803 161.347 l
+-87.3727 160.731 -88.0176 160.424 -88.7148 160.424  c
+-89.3346 160.424 -89.8200 160.672 -90.1709 161.169  c
+-90.5218 161.666 -90.6973 162.347 -90.6973 163.213  c
+-90.6973 164.840 -90.1253 165.653 -88.9814 165.653  c
+-88.2021 165.653 -87.4684 165.245 -86.7803 164.430  c
+h
+-82.8154 167.000 m
+-82.8154 159.576 l
+-81.4688 159.576 l
+-81.4688 160.971 l
+-80.9355 159.932 -80.1608 159.412 -79.1445 159.412  c
+-79.0078 159.412 -78.8643 159.424 -78.7139 159.446  c
+-78.7139 160.704 l
+-78.9463 160.627 -79.1514 160.588 -79.3291 160.588  c
+-80.1813 160.588 -80.8945 161.094 -81.4688 162.105  c
+-81.4688 167.000 l
+h
+-77.0869 167.000 m
+-77.0869 159.576 l
+-75.7402 159.576 l
+-75.7402 167.000 l
+h
+-77.0869 158.229 m
+-77.0869 156.883 l
+-75.7402 156.883 l
+-75.7402 158.229 l
+h
+-68.2754 167.000 m
+-68.2754 165.605 l
+-68.8223 166.649 -69.6471 167.171 -70.7500 167.171  c
+-71.6432 167.171 -72.3462 166.845 -72.8589 166.193  c
+-73.3716 165.542 -73.6279 164.651 -73.6279 163.521  c
+-73.6279 162.285 -73.3374 161.292 -72.7563 160.540  c
+-72.1753 159.788 -71.4108 159.412 -70.4629 159.412  c
+-69.5833 159.412 -68.8542 159.749 -68.2754 160.424  c
+-68.2754 156.206 l
+-66.9219 156.206 l
+-66.9219 167.000 l
+h
+-68.2754 161.347 m
+-68.9727 160.731 -69.6335 160.424 -70.2578 160.424  c
+-71.5475 160.424 -72.1924 161.410 -72.1924 163.384  c
+-72.1924 165.120 -71.6182 165.988 -70.4697 165.988  c
+-69.7223 165.988 -68.9909 165.580 -68.2754 164.765  c
+h
+-64.2285 169.023 m
+-64.2285 156.206 l
+-61.5283 156.206 l
+-61.5283 157.218 l
+-63.0459 157.218 l
+-63.0459 168.012 l
+-61.5283 168.012 l
+-61.5283 169.023 l
+h
+-60.4209 167.000 m
+-57.5977 163.165 l
+-60.3389 159.576 l
+-58.7393 159.576 l
+-56.5723 162.434 l
+-54.6104 159.576 l
+-53.2979 159.576 l
+-55.8682 163.343 l
+-53.0723 167.000 l
+-54.6719 167.000 l
+-56.9072 164.061 l
+-59.0674 167.000 l
+h
+-49.2305 169.023 m
+-49.2305 156.206 l
+-51.9307 156.206 l
+-51.9307 157.218 l
+-50.4131 157.218 l
+-50.4131 168.012 l
+-51.9307 168.012 l
+-51.9307 169.023 l
+h
+-46.5371 169.023 m
+-46.5371 156.206 l
+-43.8369 156.206 l
+-43.8369 157.218 l
+-45.3545 157.218 l
+-45.3545 168.012 l
+-43.8369 168.012 l
+-43.8369 169.023 l
+h
+-41.5537 169.700 m
+-40.3506 167.000 l
+-43.2217 159.576 l
+-41.7656 159.576 l
+-39.6396 165.168 l
+-37.3701 159.576 l
+-36.0986 159.576 l
+-40.1523 169.700 l
+h
+-35.0049 163.459 m
+-35.0049 162.447 l
+-28.9346 162.447 l
+-28.9346 163.459 l
+h
+-25.8105 167.000 m
+-25.8105 165.988 l
+-23.7871 165.988 l
+-23.7871 158.004 l
+-25.8105 158.510 l
+-25.8105 157.471 l
+-22.4336 156.630 l
+-22.4336 165.988 l
+-20.4102 165.988 l
+-20.4102 167.000 l
+h
+-15.8574 169.023 m
+-15.8574 156.206 l
+-18.5576 156.206 l
+-18.5576 157.218 l
+-17.0400 157.218 l
+-17.0400 168.012 l
+-18.5576 168.012 l
+-18.5576 169.023 l
+h
+f
+.258824 .627451 .658824 RG
+newpath
+-155.012 -164.000 m
+-155.012 -165.395 l
+-155.727 -164.351 -156.595 -163.829 -157.616 -163.829  c
+-158.263 -163.829 -158.778 -164.033 -159.161 -164.441  c
+-159.544 -164.849 -159.735 -165.399 -159.735 -166.092  c
+-159.735 -171.424 l
+-158.389 -171.424 l
+-158.389 -166.529 l
+-158.389 -165.973 -158.308 -165.578 -158.146 -165.343  c
+-157.984 -165.109 -157.714 -164.991 -157.336 -164.991  c
+-156.516 -164.991 -155.741 -165.531 -155.012 -166.611  c
+-155.012 -171.424 l
+-153.665 -171.424 l
+-153.665 -164.000 l
+h
+-150.965 -161.300 m
+-150.965 -171.424 l
+-149.618 -171.424 l
+-149.618 -170.029 l
+-149.067 -171.068 -148.240 -171.588 -147.137 -171.588  c
+-146.243 -171.588 -145.541 -171.262 -145.028 -170.610  c
+-144.515 -169.959 -144.259 -169.068 -144.259 -167.938  c
+-144.259 -166.707 -144.549 -165.715 -145.130 -164.960  c
+-145.711 -164.206 -146.476 -163.829 -147.424 -163.829  c
+-148.303 -163.829 -149.035 -164.166 -149.618 -164.841  c
+-149.618 -161.300 l
+h
+-149.618 -165.771 m
+-148.925 -165.151 -148.265 -164.841 -147.636 -164.841  c
+-146.341 -164.841 -145.694 -165.827 -145.694 -167.801  c
+-145.694 -169.542 -146.269 -170.412 -147.417 -170.412  c
+-148.169 -170.412 -148.903 -170.004 -149.618 -169.188  c
+h
+-142.153 -161.977 m
+-142.153 -174.794 l
+-139.453 -174.794 l
+-139.453 -173.782 l
+-140.971 -173.782 l
+-140.971 -162.988 l
+-139.453 -162.988 l
+-139.453 -161.977 l
+h
+-137.601 -164.000 m
+-137.601 -171.424 l
+-136.254 -171.424 l
+-136.254 -164.000 l
+h
+-137.601 -172.771 m
+-137.601 -174.117 l
+-136.254 -174.117 l
+-136.254 -172.771 l
+h
+-128.789 -164.000 m
+-128.789 -165.395 l
+-129.336 -164.351 -130.161 -163.829 -131.264 -163.829  c
+-132.157 -163.829 -132.860 -164.155 -133.373 -164.807  c
+-133.885 -165.458 -134.142 -166.349 -134.142 -167.479  c
+-134.142 -168.715 -133.851 -169.708 -133.270 -170.460  c
+-132.689 -171.212 -131.924 -171.588 -130.977 -171.588  c
+-130.097 -171.588 -129.368 -171.251 -128.789 -170.576  c
+-128.789 -174.794 l
+-127.436 -174.794 l
+-127.436 -164.000 l
+h
+-128.789 -169.653 m
+-129.486 -170.269 -130.147 -170.576 -130.771 -170.576  c
+-132.061 -170.576 -132.706 -169.590 -132.706 -167.616  c
+-132.706 -165.880 -132.132 -165.012 -130.983 -165.012  c
+-130.236 -165.012 -129.505 -165.420 -128.789 -166.235  c
+h
+-122.883 -161.977 m
+-122.883 -174.794 l
+-125.583 -174.794 l
+-125.583 -173.782 l
+-124.065 -173.782 l
+-124.065 -162.988 l
+-125.583 -162.988 l
+-125.583 -161.977 l
+h
+-119.998 -164.000 m
+-119.998 -165.347 l
+-118.651 -165.347 l
+-118.651 -164.000 l
+h
+-119.827 -166.700 m
+-119.998 -172.094 l
+-119.998 -174.117 l
+-118.651 -174.117 l
+-118.651 -172.094 l
+-118.815 -166.700 l
+h
+f
+.647059 .686275 .803922 RG
+newpath
+-302.000 -34.0000 m
+-302.000 -27.3726 -307.373 -22.0000 -314.000 -22.0000  c
+-320.627 -22.0000 -326.000 -27.3726 -326.000 -34.0000  c
+-326.000 -40.6274 -320.627 -46.0000 -314.000 -46.0000  c
+-307.373 -46.0000 -302.000 -40.6274 -302.000 -34.0000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-302.000 -34.0000 m
+-302.000 -27.3726 -307.373 -22.0000 -314.000 -22.0000  c
+-320.627 -22.0000 -326.000 -27.3726 -326.000 -34.0000  c
+-326.000 -40.6274 -320.627 -46.0000 -314.000 -46.0000  c
+-307.373 -46.0000 -302.000 -40.6274 -302.000 -34.0000  c
+h
+S
+.647059 .686275 .803922 RG
+newpath
+-404.000 -76.0000 m
+-404.000 -69.3726 -409.373 -64.0000 -416.000 -64.0000  c
+-422.627 -64.0000 -428.000 -69.3726 -428.000 -76.0000  c
+-428.000 -82.6274 -422.627 -88.0000 -416.000 -88.0000  c
+-409.373 -88.0000 -404.000 -82.6274 -404.000 -76.0000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-404.000 -76.0000 m
+-404.000 -69.3726 -409.373 -64.0000 -416.000 -64.0000  c
+-422.627 -64.0000 -428.000 -69.3726 -428.000 -76.0000  c
+-428.000 -82.6274 -422.627 -88.0000 -416.000 -88.0000  c
+-409.373 -88.0000 -404.000 -82.6274 -404.000 -76.0000  c
+h
+S
+newpath
+-408.000 -76.0000 m
+-408.000 -71.5817 -411.582 -68.0000 -416.000 -68.0000  c
+-420.418 -68.0000 -424.000 -71.5817 -424.000 -76.0000  c
+-424.000 -80.4183 -420.418 -84.0000 -416.000 -84.0000  c
+-411.582 -84.0000 -408.000 -80.4183 -408.000 -76.0000  c
+h
+S
+newpath
+-420.330 -78.5000 m
+-421.543 -76.3986 -421.073 -73.7295 -419.214 -72.1698  c
+-417.355 -70.6101 -414.645 -70.6101 -412.786 -72.1698  c
+-410.927 -73.7295 -410.457 -76.3986 -411.670 -78.5000  c
+S
+.647059 .686275 .803922 RG
+newpath
+-90.0000 -34.0000 m
+-90.0000 -27.3726 -95.3726 -22.0000 -102.000 -22.0000  c
+-108.627 -22.0000 -114.000 -27.3726 -114.000 -34.0000  c
+-114.000 -40.6274 -108.627 -46.0000 -102.000 -46.0000  c
+-95.3726 -46.0000 -90.0000 -40.6274 -90.0000 -34.0000  c
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+-90.0000 -34.0000 m
+-90.0000 -27.3726 -95.3726 -22.0000 -102.000 -22.0000  c
+-108.627 -22.0000 -114.000 -27.3726 -114.000 -34.0000  c
+-114.000 -40.6274 -108.627 -46.0000 -102.000 -46.0000  c
+-95.3726 -46.0000 -90.0000 -40.6274 -90.0000 -34.0000  c
+h
+S
+.258824 .258824 .658824 RG
+newpath
+-151.626 67.4678 m
+-151.469 66.2988 l
+-150.689 66.6680 -149.922 66.8525 -149.165 66.8525  c
+-147.647 66.8525 -146.889 66.0482 -146.889 64.4395  c
+-146.889 63.2705 l
+-147.385 64.3096 -148.201 64.8291 -149.336 64.8291  c
+-150.225 64.8291 -150.931 64.5055 -151.455 63.8584  c
+-151.979 63.2113 -152.241 62.3385 -152.241 61.2402  c
+-152.241 60.1100 -151.943 59.1895 -151.346 58.4785  c
+-150.749 57.7676 -149.976 57.4121 -149.028 57.4121  c
+-148.199 57.4121 -147.486 57.7493 -146.889 58.4238  c
+-146.889 57.5762 l
+-145.535 57.5762 l
+-145.535 62.9766 l
+-145.535 64.1387 -145.596 64.9989 -145.716 65.5571  c
+-145.837 66.1154 -146.064 66.5723 -146.396 66.9277  c
+-146.984 67.5521 -147.898 67.8643 -149.138 67.8643  c
+-150.004 67.8643 -150.833 67.7321 -151.626 67.4678  c
+h
+-146.889 62.4297 m
+-146.889 59.3467 l
+-147.481 58.7314 -148.126 58.4238 -148.823 58.4238  c
+-149.443 58.4238 -149.928 58.6722 -150.279 59.1689  c
+-150.630 59.6657 -150.806 60.3470 -150.806 61.2129  c
+-150.806 62.8398 -150.234 63.6533 -149.090 63.6533  c
+-148.311 63.6533 -147.577 63.2454 -146.889 62.4297  c
+h
+-142.924 65.0000 m
+-142.924 57.5762 l
+-141.577 57.5762 l
+-141.577 58.9707 l
+-141.044 57.9316 -140.269 57.4121 -139.253 57.4121  c
+-139.116 57.4121 -138.973 57.4235 -138.822 57.4463  c
+-138.822 58.7041 l
+-139.055 58.6266 -139.260 58.5879 -139.438 58.5879  c
+-140.290 58.5879 -141.003 59.0938 -141.577 60.1055  c
+-141.577 65.0000 l
+h
+-137.195 65.0000 m
+-137.195 57.5762 l
+-135.849 57.5762 l
+-135.849 65.0000 l
+h
+-137.195 56.2295 m
+-137.195 54.8828 l
+-135.849 54.8828 l
+-135.849 56.2295 l
+h
+-128.384 65.0000 m
+-128.384 63.6055 l
+-128.931 64.6491 -129.756 65.1709 -130.858 65.1709  c
+-131.752 65.1709 -132.455 64.8451 -132.967 64.1934  c
+-133.480 63.5417 -133.736 62.6507 -133.736 61.5205  c
+-133.736 60.2855 -133.446 59.2920 -132.865 58.5400  c
+-132.284 57.7881 -131.519 57.4121 -130.571 57.4121  c
+-129.692 57.4121 -128.963 57.7493 -128.384 58.4238  c
+-128.384 54.2061 l
+-127.030 54.2061 l
+-127.030 65.0000 l
+h
+-128.384 59.3467 m
+-129.081 58.7314 -129.742 58.4238 -130.366 58.4238  c
+-131.656 58.4238 -132.301 59.4105 -132.301 61.3838  c
+-132.301 63.1201 -131.727 63.9883 -130.578 63.9883  c
+-129.831 63.9883 -129.099 63.5804 -128.384 62.7646  c
+h
+-124.337 67.0234 m
+-124.337 54.2061 l
+-121.637 54.2061 l
+-121.637 55.2178 l
+-123.154 55.2178 l
+-123.154 66.0117 l
+-121.637 66.0117 l
+-121.637 67.0234 l
+h
+-120.529 65.0000 m
+-117.706 61.1650 l
+-120.447 57.5762 l
+-118.848 57.5762 l
+-116.681 60.4336 l
+-114.719 57.5762 l
+-113.406 57.5762 l
+-115.977 61.3428 l
+-113.181 65.0000 l
+-114.780 65.0000 l
+-117.016 62.0605 l
+-119.176 65.0000 l
+h
+-109.339 67.0234 m
+-109.339 54.2061 l
+-112.039 54.2061 l
+-112.039 55.2178 l
+-110.521 55.2178 l
+-110.521 66.0117 l
+-112.039 66.0117 l
+-112.039 67.0234 l
+h
+-106.646 67.0234 m
+-106.646 54.2061 l
+-103.945 54.2061 l
+-103.945 55.2178 l
+-105.463 55.2178 l
+-105.463 66.0117 l
+-103.945 66.0117 l
+-103.945 67.0234 l
+h
+-101.662 67.7002 m
+-100.459 65.0000 l
+-103.330 57.5762 l
+-101.874 57.5762 l
+-99.7480 63.1680 l
+-97.4785 57.5762 l
+-96.2070 57.5762 l
+-100.261 67.7002 l
+h
+-95.1133 61.4590 m
+-95.1133 60.4473 l
+-89.0430 60.4473 l
+-89.0430 61.4590 l
+h
+-85.9189 65.0000 m
+-85.9189 63.9883 l
+-83.8955 63.9883 l
+-83.8955 56.0039 l
+-85.9189 56.5098 l
+-85.9189 55.4707 l
+-82.5420 54.6299 l
+-82.5420 63.9883 l
+-80.5186 63.9883 l
+-80.5186 65.0000 l
+h
+-75.9658 67.0234 m
+-75.9658 54.2061 l
+-78.6660 54.2061 l
+-78.6660 55.2178 l
+-77.1484 55.2178 l
+-77.1484 66.0117 l
+-78.6660 66.0117 l
+-78.6660 67.0234 l
+h
+-73.0811 65.0000 m
+-73.0811 63.6533 l
+-71.7344 63.6533 l
+-71.7344 65.0000 l
+h
+-73.0811 58.9297 m
+-73.0811 57.5762 l
+-71.7344 57.5762 l
+-71.7344 58.9297 l
+h
+-68.6719 62.7236 m
+-68.6719 61.7119 l
+-60.5781 61.7119 l
+-60.5781 62.7236 l
+h
+-68.6719 60.1943 m
+-68.6719 59.1826 l
+-60.5781 59.1826 l
+-60.5781 60.1943 l
+h
+-55.4854 65.1709 m
+-56.1689 65.1709 -56.7021 64.9749 -57.0850 64.5830  c
+-57.4678 64.1911 -57.6592 63.6465 -57.6592 62.9492  c
+-57.6592 58.5879 l
+-58.5889 58.5879 l
+-58.5889 57.5762 l
+-57.6592 57.5762 l
+-57.6592 56.2295 l
+-56.3125 56.0996 l
+-56.3125 57.5762 l
+-54.3711 57.5762 l
+-54.3711 58.5879 l
+-56.3125 58.5879 l
+-56.3125 62.7031 l
+-56.3125 63.6738 -55.8932 64.1592 -55.0547 64.1592  c
+-54.8770 64.1592 -54.6605 64.1296 -54.4053 64.0703  c
+-54.4053 65.0000 l
+-54.8200 65.1139 -55.1800 65.1709 -55.4854 65.1709  c
+h
+-52.4775 65.0000 m
+-52.4775 57.5762 l
+-51.1309 57.5762 l
+-51.1309 58.9707 l
+-50.5977 57.9316 -49.8229 57.4121 -48.8066 57.4121  c
+-48.6699 57.4121 -48.5264 57.4235 -48.3760 57.4463  c
+-48.3760 58.7041 l
+-48.6084 58.6266 -48.8135 58.5879 -48.9912 58.5879  c
+-49.8434 58.5879 -50.5566 59.0938 -51.1309 60.1055  c
+-51.1309 65.0000 l
+h
+-42.1074 65.0000 m
+-42.1074 63.6055 l
+-42.8229 64.6491 -43.6911 65.1709 -44.7119 65.1709  c
+-45.3590 65.1709 -45.8740 64.9670 -46.2568 64.5591  c
+-46.6396 64.1512 -46.8311 63.6009 -46.8311 62.9082  c
+-46.8311 57.5762 l
+-45.4844 57.5762 l
+-45.4844 62.4707 l
+-45.4844 63.0267 -45.4035 63.4220 -45.2417 63.6567  c
+-45.0799 63.8914 -44.8099 64.0088 -44.4316 64.0088  c
+-43.6113 64.0088 -42.8366 63.4688 -42.1074 62.3887  c
+-42.1074 57.5762 l
+-40.7607 57.5762 l
+-40.7607 65.0000 l
+h
+-32.6191 64.7607 m
+-33.5215 65.0342 -34.2939 65.1709 -34.9365 65.1709  c
+-36.0303 65.1709 -36.9224 64.8075 -37.6128 64.0806  c
+-38.3032 63.3537 -38.6484 62.4115 -38.6484 61.2539  c
+-38.6484 60.1283 -38.3442 59.2054 -37.7358 58.4854  c
+-37.1274 57.7653 -36.3493 57.4053 -35.4014 57.4053  c
+-34.5036 57.4053 -33.8097 57.7243 -33.3198 58.3623  c
+-32.8299 59.0003 -32.5850 59.9072 -32.5850 61.0830  c
+-32.5918 61.5000 l
+-37.2744 61.5000 l
+-37.0785 63.2637 -36.2148 64.1455 -34.6836 64.1455  c
+-34.1230 64.1455 -33.4349 63.9951 -32.6191 63.6943  c
+h
+-37.2129 60.4883 m
+-33.9385 60.4883 l
+-33.9385 59.1074 -34.4535 58.4170 -35.4834 58.4170  c
+-36.5179 58.4170 -37.0944 59.1074 -37.2129 60.4883  c
+h
+-30.2402 67.1943 m
+-30.2402 66.6885 l
+-29.8027 66.5654 -29.5840 66.0482 -29.5840 65.1367  c
+-29.5840 65.0000 l
+-30.2402 65.0000 l
+-30.2402 63.3115 l
+-28.5518 63.3115 l
+-28.5518 64.7744 l
+-28.5518 66.2738 -29.1146 67.0804 -30.2402 67.1943  c
+h
+f
+newpath
+-151.626 84.4678 m
+-151.469 83.2988 l
+-150.689 83.6680 -149.922 83.8525 -149.165 83.8525  c
+-147.647 83.8525 -146.889 83.0482 -146.889 81.4395  c
+-146.889 80.2705 l
+-147.385 81.3096 -148.201 81.8291 -149.336 81.8291  c
+-150.225 81.8291 -150.931 81.5055 -151.455 80.8584  c
+-151.979 80.2113 -152.241 79.3385 -152.241 78.2402  c
+-152.241 77.1100 -151.943 76.1895 -151.346 75.4785  c
+-150.749 74.7676 -149.976 74.4121 -149.028 74.4121  c
+-148.199 74.4121 -147.486 74.7493 -146.889 75.4238  c
+-146.889 74.5762 l
+-145.535 74.5762 l
+-145.535 79.9766 l
+-145.535 81.1387 -145.596 81.9989 -145.716 82.5571  c
+-145.837 83.1154 -146.064 83.5723 -146.396 83.9277  c
+-146.984 84.5521 -147.898 84.8643 -149.138 84.8643  c
+-150.004 84.8643 -150.833 84.7321 -151.626 84.4678  c
+h
+-146.889 79.4297 m
+-146.889 76.3467 l
+-147.481 75.7314 -148.126 75.4238 -148.823 75.4238  c
+-149.443 75.4238 -149.928 75.6722 -150.279 76.1689  c
+-150.630 76.6657 -150.806 77.3470 -150.806 78.2129  c
+-150.806 79.8398 -150.234 80.6533 -149.090 80.6533  c
+-148.311 80.6533 -147.577 80.2454 -146.889 79.4297  c
+h
+-142.924 82.0000 m
+-142.924 74.5762 l
+-141.577 74.5762 l
+-141.577 75.9707 l
+-141.044 74.9316 -140.269 74.4121 -139.253 74.4121  c
+-139.116 74.4121 -138.973 74.4235 -138.822 74.4463  c
+-138.822 75.7041 l
+-139.055 75.6266 -139.260 75.5879 -139.438 75.5879  c
+-140.290 75.5879 -141.003 76.0938 -141.577 77.1055  c
+-141.577 82.0000 l
+h
+-137.195 82.0000 m
+-137.195 74.5762 l
+-135.849 74.5762 l
+-135.849 82.0000 l
+h
+-137.195 73.2295 m
+-137.195 71.8828 l
+-135.849 71.8828 l
+-135.849 73.2295 l
+h
+-128.384 82.0000 m
+-128.384 80.6055 l
+-128.931 81.6491 -129.756 82.1709 -130.858 82.1709  c
+-131.752 82.1709 -132.455 81.8451 -132.967 81.1934  c
+-133.480 80.5417 -133.736 79.6507 -133.736 78.5205  c
+-133.736 77.2855 -133.446 76.2920 -132.865 75.5400  c
+-132.284 74.7881 -131.519 74.4121 -130.571 74.4121  c
+-129.692 74.4121 -128.963 74.7493 -128.384 75.4238  c
+-128.384 71.2061 l
+-127.030 71.2061 l
+-127.030 82.0000 l
+h
+-128.384 76.3467 m
+-129.081 75.7314 -129.742 75.4238 -130.366 75.4238  c
+-131.656 75.4238 -132.301 76.4105 -132.301 78.3838  c
+-132.301 80.1201 -131.727 80.9883 -130.578 80.9883  c
+-129.831 80.9883 -129.099 80.5804 -128.384 79.7646  c
+h
+-124.337 84.0234 m
+-124.337 71.2061 l
+-121.637 71.2061 l
+-121.637 72.2178 l
+-123.154 72.2178 l
+-123.154 83.0117 l
+-121.637 83.0117 l
+-121.637 84.0234 l
+h
+-120.529 82.0000 m
+-117.706 78.1650 l
+-120.447 74.5762 l
+-118.848 74.5762 l
+-116.681 77.4336 l
+-114.719 74.5762 l
+-113.406 74.5762 l
+-115.977 78.3428 l
+-113.181 82.0000 l
+-114.780 82.0000 l
+-117.016 79.0605 l
+-119.176 82.0000 l
+h
+-109.339 84.0234 m
+-109.339 71.2061 l
+-112.039 71.2061 l
+-112.039 72.2178 l
+-110.521 72.2178 l
+-110.521 83.0117 l
+-112.039 83.0117 l
+-112.039 84.0234 l
+h
+-106.646 84.0234 m
+-106.646 71.2061 l
+-103.945 71.2061 l
+-103.945 72.2178 l
+-105.463 72.2178 l
+-105.463 83.0117 l
+-103.945 83.0117 l
+-103.945 84.0234 l
+h
+-101.662 84.7002 m
+-100.459 82.0000 l
+-103.330 74.5762 l
+-101.874 74.5762 l
+-99.7480 80.1680 l
+-97.4785 74.5762 l
+-96.2070 74.5762 l
+-100.261 84.7002 l
+h
+-91.0664 82.0000 m
+-91.0664 78.4590 l
+-94.6074 78.4590 l
+-94.6074 77.4473 l
+-91.0664 77.4473 l
+-91.0664 73.9062 l
+-90.0547 73.9062 l
+-90.0547 77.4473 l
+-86.5137 77.4473 l
+-86.5137 78.4590 l
+-90.0547 78.4590 l
+-90.0547 82.0000 l
+h
+-83.6494 82.0000 m
+-83.6494 71.2061 l
+-82.3027 71.2061 l
+-82.3027 82.0000 l
+h
+-74.1611 81.7607 m
+-75.0635 82.0342 -75.8359 82.1709 -76.4785 82.1709  c
+-77.5723 82.1709 -78.4644 81.8075 -79.1548 81.0806  c
+-79.8452 80.3537 -80.1904 79.4115 -80.1904 78.2539  c
+-80.1904 77.1283 -79.8862 76.2054 -79.2778 75.4854  c
+-78.6694 74.7653 -77.8913 74.4053 -76.9434 74.4053  c
+-76.0456 74.4053 -75.3517 74.7243 -74.8618 75.3623  c
+-74.3719 76.0003 -74.1270 76.9072 -74.1270 78.0830  c
+-74.1338 78.5000 l
+-78.8164 78.5000 l
+-78.6204 80.2637 -77.7568 81.1455 -76.2256 81.1455  c
+-75.6650 81.1455 -74.9769 80.9951 -74.1611 80.6943  c
+h
+-78.7549 77.4883 m
+-75.4805 77.4883 l
+-75.4805 76.1074 -75.9954 75.4170 -77.0254 75.4170  c
+-78.0599 75.4170 -78.6364 76.1074 -78.7549 77.4883  c
+h
+-71.8027 82.0000 m
+-71.8027 74.5762 l
+-70.4561 74.5762 l
+-70.4561 75.9707 l
+-69.7451 74.9316 -68.8747 74.4121 -67.8447 74.4121  c
+-67.2021 74.4121 -66.6895 74.6160 -66.3066 75.0239  c
+-65.9238 75.4318 -65.7324 75.9798 -65.7324 76.6680  c
+-65.7324 82.0000 l
+-67.0791 82.0000 l
+-67.0791 77.1055 l
+-67.0791 76.5540 -67.1600 76.1610 -67.3218 75.9263  c
+-67.4836 75.6916 -67.7513 75.5742 -68.1250 75.5742  c
+-68.9499 75.5742 -69.7269 76.1143 -70.4561 77.1943  c
+-70.4561 82.0000 l
+h
+-63.0869 84.4678 m
+-62.9297 83.2988 l
+-62.1504 83.6680 -61.3825 83.8525 -60.6260 83.8525  c
+-59.1084 83.8525 -58.3496 83.0482 -58.3496 81.4395  c
+-58.3496 80.2705 l
+-58.8464 81.3096 -59.6621 81.8291 -60.7969 81.8291  c
+-61.6855 81.8291 -62.3919 81.5055 -62.9160 80.8584  c
+-63.4401 80.2113 -63.7021 79.3385 -63.7021 78.2402  c
+-63.7021 77.1100 -63.4036 76.1895 -62.8066 75.4785  c
+-62.2096 74.7676 -61.4372 74.4121 -60.4893 74.4121  c
+-59.6598 74.4121 -58.9466 74.7493 -58.3496 75.4238  c
+-58.3496 74.5762 l
+-56.9961 74.5762 l
+-56.9961 79.9766 l
+-56.9961 81.1387 -57.0565 81.9989 -57.1772 82.5571  c
+-57.2980 83.1154 -57.5247 83.5723 -57.8574 83.9277  c
+-58.4453 84.5521 -59.3590 84.8643 -60.5986 84.8643  c
+-61.4645 84.8643 -62.2939 84.7321 -63.0869 84.4678  c
+h
+-58.3496 79.4297 m
+-58.3496 76.3467 l
+-58.9421 75.7314 -59.5869 75.4238 -60.2842 75.4238  c
+-60.9040 75.4238 -61.3893 75.6722 -61.7402 76.1689  c
+-62.0911 76.6657 -62.2666 77.3470 -62.2666 78.2129  c
+-62.2666 79.8398 -61.6947 80.6533 -60.5508 80.6533  c
+-59.7715 80.6533 -59.0378 80.2454 -58.3496 79.4297  c
+h
+-52.1562 82.1709 m
+-52.8398 82.1709 -53.3730 81.9749 -53.7559 81.5830  c
+-54.1387 81.1911 -54.3301 80.6465 -54.3301 79.9492  c
+-54.3301 75.5879 l
+-55.2598 75.5879 l
+-55.2598 74.5762 l
+-54.3301 74.5762 l
+-54.3301 73.2295 l
+-52.9834 73.0996 l
+-52.9834 74.5762 l
+-51.0420 74.5762 l
+-51.0420 75.5879 l
+-52.9834 75.5879 l
+-52.9834 79.7031 l
+-52.9834 80.6738 -52.5641 81.1592 -51.7256 81.1592  c
+-51.5479 81.1592 -51.3314 81.1296 -51.0762 81.0703  c
+-51.0762 82.0000 l
+-51.4909 82.1139 -51.8509 82.1709 -52.1562 82.1709  c
+h
+-49.1484 82.0000 m
+-49.1484 71.2061 l
+-47.8018 71.2061 l
+-47.8018 75.9707 l
+-47.0908 74.9316 -46.2204 74.4121 -45.1904 74.4121  c
+-44.5479 74.4121 -44.0352 74.6160 -43.6523 75.0239  c
+-43.2695 75.4318 -43.0781 75.9798 -43.0781 76.6680  c
+-43.0781 82.0000 l
+-44.4248 82.0000 l
+-44.4248 77.1055 l
+-44.4248 76.5540 -44.5057 76.1610 -44.6675 75.9263  c
+-44.8293 75.6916 -45.0970 75.5742 -45.4707 75.5742  c
+-46.2956 75.5742 -47.0726 76.1143 -47.8018 77.1943  c
+-47.8018 82.0000 l
+h
+-40.7949 78.4590 m
+-40.7949 77.4473 l
+-34.7246 77.4473 l
+-34.7246 78.4590 l
+h
+-31.6006 82.0000 m
+-31.6006 80.9883 l
+-29.5771 80.9883 l
+-29.5771 73.0039 l
+-31.6006 73.5098 l
+-31.6006 72.4707 l
+-28.2236 71.6299 l
+-28.2236 80.9883 l
+-26.2002 80.9883 l
+-26.2002 82.0000 l
+h
+-21.6475 84.0234 m
+-21.6475 71.2061 l
+-24.3477 71.2061 l
+-24.3477 72.2178 l
+-22.8301 72.2178 l
+-22.8301 83.0117 l
+-24.3477 83.0117 l
+-24.3477 84.0234 l
+h
+-18.7627 82.0000 m
+-18.7627 80.6533 l
+-17.4160 80.6533 l
+-17.4160 82.0000 l
+h
+-18.7627 75.9297 m
+-18.7627 74.5762 l
+-17.4160 74.5762 l
+-17.4160 75.9297 l
+h
+-14.3535 79.7236 m
+-14.3535 78.7119 l
+-6.25977 78.7119 l
+-6.25977 79.7236 l
+h
+-14.3535 77.1943 m
+-14.3535 76.1826 l
+-6.25977 76.1826 l
+-6.25977 77.1943 l
+h
+-1.78906 75.5879 m
+-1.78906 82.0000 l
+-3.14258 82.0000 l
+-3.14258 75.5879 l
+-4.19531 75.5879 l
+-4.19531 74.5762 l
+-3.14258 74.5762 l
+-3.14258 73.6875 l
+-3.14258 71.9193 -2.33594 71.0352 -.722656 71.0352  c
+-.271484 71.0352 .241211 71.1104 .815430 71.2607  c
+.815430 72.3271 l
+.209310 72.1403 -.276042 72.0469 -.640625 72.0469  c
+-1.08268 72.0469 -1.38460 72.1528 -1.54639 72.3647  c
+-1.70817 72.5767 -1.78906 72.9697 -1.78906 73.5439  c
+-1.78906 74.5762 l
+.0634766 74.5762 l
+.0634766 75.5879 l
+h
+5.58008 81.0566 m
+4.77344 81.7995 3.99642 82.1709 3.24902 82.1709  c
+2.63379 82.1709 2.12337 81.9784 1.71777 81.5933  c
+1.31217 81.2082 1.10938 80.7217 1.10938 80.1338  c
+1.10938 79.3226 1.45003 78.6994 2.13135 78.2642  c
+2.81266 77.8289 3.78906 77.6113 5.06055 77.6113  c
+5.38184 77.6113 l
+5.38184 76.7158 l
+5.38184 75.8545 4.93978 75.4238 4.05566 75.4238  c
+3.34473 75.4238 2.57682 75.6426 1.75195 76.0801  c
+1.75195 74.9658 l
+2.65885 74.5967 3.50879 74.4121 4.30176 74.4121  c
+5.13118 74.4121 5.74300 74.5990 6.13721 74.9727  c
+6.53141 75.3464 6.72852 75.9274 6.72852 76.7158  c
+6.72852 80.0791 l
+6.72852 80.8493 6.96549 81.2344 7.43945 81.2344  c
+7.49870 81.2344 7.58529 81.2253 7.69922 81.2070  c
+7.79492 81.9521 l
+7.48958 82.0980 7.15234 82.1709 6.78320 82.1709  c
+6.15430 82.1709 5.75326 81.7995 5.58008 81.0566  c
+h
+5.38184 80.3252 m
+5.38184 78.4043 l
+4.93066 78.3906 l
+4.19238 78.3906 3.59538 78.5308 3.13965 78.8110  c
+2.68392 79.0913 2.45605 79.4593 2.45605 79.9150  c
+2.45605 80.2386 2.56999 80.5120 2.79785 80.7354  c
+3.02572 80.9587 3.30371 81.0703 3.63184 81.0703  c
+4.19238 81.0703 4.77572 80.8219 5.38184 80.3252  c
+h
+9.48340 82.0000 m
+9.48340 71.2061 l
+10.8301 71.2061 l
+10.8301 82.0000 l
+h
+15.4990 82.1709 m
+14.8838 82.1709 14.1364 82.0273 13.2568 81.7402  c
+13.2568 80.5029 l
+14.1364 80.9404 14.9020 81.1592 15.5537 81.1592  c
+15.9411 81.1592 16.2624 81.0544 16.5176 80.8447  c
+16.7728 80.6351 16.9004 80.3730 16.9004 80.0586  c
+16.9004 79.5983 16.5426 79.2178 15.8271 78.9170  c
+15.0410 78.5820 l
+13.8789 78.0990 13.2979 77.4040 13.2979 76.4971  c
+13.2979 75.8499 13.5269 75.3407 13.9849 74.9692  c
+14.4429 74.5978 15.0706 74.4121 15.8682 74.4121  c
+16.2829 74.4121 16.7956 74.4691 17.4062 74.5830  c
+17.6865 74.6377 l
+17.6865 75.7588 l
+16.9346 75.5355 16.3376 75.4238 15.8955 75.4238  c
+15.0296 75.4238 14.5967 75.7383 14.5967 76.3672  c
+14.5967 76.7728 14.9248 77.1146 15.5811 77.3926  c
+16.2305 77.6660 l
+16.9642 77.9759 17.4837 78.3029 17.7891 78.6470  c
+18.0944 78.9910 18.2471 79.4206 18.2471 79.9355  c
+18.2471 80.5872 17.9896 81.1227 17.4746 81.5420  c
+16.9596 81.9613 16.3011 82.1709 15.4990 82.1709  c
+h
+26.1084 81.7607 m
+25.2061 82.0342 24.4336 82.1709 23.7910 82.1709  c
+22.6973 82.1709 21.8052 81.8075 21.1147 81.0806  c
+20.4243 80.3537 20.0791 79.4115 20.0791 78.2539  c
+20.0791 77.1283 20.3833 76.2054 20.9917 75.4854  c
+21.6001 74.7653 22.3783 74.4053 23.3262 74.4053  c
+24.2240 74.4053 24.9178 74.7243 25.4077 75.3623  c
+25.8976 76.0003 26.1426 76.9072 26.1426 78.0830  c
+26.1357 78.5000 l
+21.4531 78.5000 l
+21.6491 80.2637 22.5127 81.1455 24.0439 81.1455  c
+24.6045 81.1455 25.2926 80.9951 26.1084 80.6943  c
+h
+21.5146 77.4883 m
+24.7891 77.4883 l
+24.7891 76.1074 24.2741 75.4170 23.2441 75.4170  c
+22.2096 75.4170 21.6331 76.1074 21.5146 77.4883  c
+h
+28.4873 84.1943 m
+28.4873 83.6885 l
+28.9248 83.5654 29.1436 83.0482 29.1436 82.1367  c
+29.1436 82.0000 l
+28.4873 82.0000 l
+28.4873 80.3115 l
+30.1758 80.3115 l
+30.1758 81.7744 l
+30.1758 83.2738 29.6130 84.0804 28.4873 84.1943  c
+h
+f
+newpath
+-151.223 101.700 m
+-150.020 99.0000 l
+-152.891 91.5762 l
+-151.435 91.5762 l
+-149.309 97.1680 l
+-147.039 91.5762 l
+-145.768 91.5762 l
+-149.821 101.700 l
+h
+-144.147 99.0000 m
+-144.147 97.6533 l
+-142.801 97.6533 l
+-142.801 99.0000 l
+h
+-144.147 92.9297 m
+-144.147 91.5762 l
+-142.801 91.5762 l
+-142.801 92.9297 l
+h
+-139.738 96.7236 m
+-139.738 95.7119 l
+-131.645 95.7119 l
+-131.645 96.7236 l
+h
+-139.738 94.1943 m
+-139.738 93.1826 l
+-131.645 93.1826 l
+-131.645 94.1943 l
+h
+-128.350 101.700 m
+-127.146 99.0000 l
+-130.018 91.5762 l
+-128.562 91.5762 l
+-126.436 97.1680 l
+-124.166 91.5762 l
+-122.895 91.5762 l
+-126.948 101.700 l
+h
+-121.801 95.4590 m
+-121.801 94.4473 l
+-115.730 94.4473 l
+-115.730 95.4590 l
+h
+-112.606 99.0000 m
+-112.606 97.9883 l
+-110.583 97.9883 l
+-110.583 90.0039 l
+-112.606 90.5098 l
+-112.606 89.4707 l
+-109.229 88.6299 l
+-109.229 97.9883 l
+-107.206 97.9883 l
+-107.206 99.0000 l
+h
+f
+newpath
+-372.653 -62.0000 m
+-372.653 -69.4238 l
+-371.307 -69.4238 l
+-371.307 -68.0293 l
+-370.773 -69.0684 -369.999 -69.5879 -368.982 -69.5879  c
+-368.846 -69.5879 -368.702 -69.5765 -368.552 -69.5537  c
+-368.552 -68.2959 l
+-368.784 -68.3734 -368.989 -68.4121 -369.167 -68.4121  c
+-370.019 -68.4121 -370.732 -67.9062 -371.307 -66.8945  c
+-371.307 -62.0000 l
+h
+-361.483 -62.2393 m
+-362.386 -61.9658 -363.158 -61.8291 -363.801 -61.8291  c
+-364.895 -61.8291 -365.787 -62.1925 -366.477 -62.9194  c
+-367.167 -63.6463 -367.513 -64.5885 -367.513 -65.7461  c
+-367.513 -66.8717 -367.208 -67.7946 -366.600 -68.5146  c
+-365.992 -69.2347 -365.214 -69.5947 -364.266 -69.5947  c
+-363.368 -69.5947 -362.674 -69.2757 -362.184 -68.6377  c
+-361.694 -67.9997 -361.449 -67.0928 -361.449 -65.9170  c
+-361.456 -65.5000 l
+-366.139 -65.5000 l
+-365.943 -63.7363 -365.079 -62.8545 -363.548 -62.8545  c
+-362.987 -62.8545 -362.299 -63.0049 -361.483 -63.3057  c
+h
+-366.077 -66.5117 m
+-362.803 -66.5117 l
+-362.803 -67.8926 -363.318 -68.5830 -364.348 -68.5830  c
+-365.382 -68.5830 -365.959 -67.8926 -366.077 -66.5117  c
+h
+-359.098 -59.5322 m
+-358.940 -60.7012 l
+-358.161 -60.3320 -357.393 -60.1475 -356.637 -60.1475  c
+-355.119 -60.1475 -354.360 -60.9518 -354.360 -62.5605  c
+-354.360 -63.7295 l
+-354.857 -62.6904 -355.673 -62.1709 -356.808 -62.1709  c
+-357.696 -62.1709 -358.403 -62.4945 -358.927 -63.1416  c
+-359.451 -63.7887 -359.713 -64.6615 -359.713 -65.7598  c
+-359.713 -66.8900 -359.414 -67.8105 -358.817 -68.5215  c
+-358.220 -69.2324 -357.448 -69.5879 -356.500 -69.5879  c
+-355.671 -69.5879 -354.957 -69.2507 -354.360 -68.5762  c
+-354.360 -69.4238 l
+-353.007 -69.4238 l
+-353.007 -64.0234 l
+-353.007 -62.8613 -353.067 -62.0011 -353.188 -61.4429  c
+-353.309 -60.8846 -353.535 -60.4277 -353.868 -60.0723  c
+-354.456 -59.4479 -355.370 -59.1357 -356.609 -59.1357  c
+-357.475 -59.1357 -358.305 -59.2679 -359.098 -59.5322  c
+h
+-354.360 -64.5703 m
+-354.360 -67.6533 l
+-354.953 -68.2686 -355.598 -68.5762 -356.295 -68.5762  c
+-356.915 -68.5762 -357.400 -68.3278 -357.751 -67.8311  c
+-358.102 -67.3343 -358.277 -66.6530 -358.277 -65.7871  c
+-358.277 -64.1602 -357.705 -63.3467 -356.562 -63.3467  c
+-355.782 -63.3467 -355.049 -63.7546 -354.360 -64.5703  c
+h
+-350.396 -62.0000 m
+-350.396 -69.4238 l
+-349.049 -69.4238 l
+-349.049 -62.0000 l
+h
+-350.396 -70.7705 m
+-350.396 -72.1172 l
+-349.049 -72.1172 l
+-349.049 -70.7705 l
+h
+-344.380 -61.8291 m
+-344.995 -61.8291 -345.743 -61.9727 -346.622 -62.2598  c
+-346.622 -63.4971 l
+-345.743 -63.0596 -344.977 -62.8408 -344.325 -62.8408  c
+-343.938 -62.8408 -343.617 -62.9456 -343.361 -63.1553  c
+-343.106 -63.3649 -342.979 -63.6270 -342.979 -63.9414  c
+-342.979 -64.4017 -343.336 -64.7822 -344.052 -65.0830  c
+-344.838 -65.4180 l
+-346.000 -65.9010 -346.581 -66.5960 -346.581 -67.5029  c
+-346.581 -68.1501 -346.352 -68.6593 -345.894 -69.0308  c
+-345.436 -69.4022 -344.808 -69.5879 -344.011 -69.5879  c
+-343.596 -69.5879 -343.083 -69.5309 -342.473 -69.4170  c
+-342.192 -69.3623 l
+-342.192 -68.2412 l
+-342.944 -68.4645 -343.541 -68.5762 -343.983 -68.5762  c
+-344.849 -68.5762 -345.282 -68.2617 -345.282 -67.6328  c
+-345.282 -67.2272 -344.954 -66.8854 -344.298 -66.6074  c
+-343.648 -66.3340 l
+-342.915 -66.0241 -342.395 -65.6971 -342.090 -65.3530  c
+-341.785 -65.0090 -341.632 -64.5794 -341.632 -64.0645  c
+-341.632 -63.4128 -341.889 -62.8773 -342.404 -62.4580  c
+-342.919 -62.0387 -343.578 -61.8291 -344.380 -61.8291  c
+h
+-336.983 -61.8291 m
+-337.667 -61.8291 -338.200 -62.0251 -338.583 -62.4170  c
+-338.966 -62.8089 -339.157 -63.3535 -339.157 -64.0508  c
+-339.157 -68.4121 l
+-340.087 -68.4121 l
+-340.087 -69.4238 l
+-339.157 -69.4238 l
+-339.157 -70.7705 l
+-337.811 -70.9004 l
+-337.811 -69.4238 l
+-335.869 -69.4238 l
+-335.869 -68.4121 l
+-337.811 -68.4121 l
+-337.811 -64.2969 l
+-337.811 -63.3262 -337.391 -62.8408 -336.553 -62.8408  c
+-336.375 -62.8408 -336.159 -62.8704 -335.903 -62.9297  c
+-335.903 -62.0000 l
+-336.318 -61.8861 -336.678 -61.8291 -336.983 -61.8291  c
+h
+-328.534 -62.2393 m
+-329.437 -61.9658 -330.209 -61.8291 -330.852 -61.8291  c
+-331.945 -61.8291 -332.837 -62.1925 -333.528 -62.9194  c
+-334.218 -63.6463 -334.563 -64.5885 -334.563 -65.7461  c
+-334.563 -66.8717 -334.259 -67.7946 -333.651 -68.5146  c
+-333.042 -69.2347 -332.264 -69.5947 -331.316 -69.5947  c
+-330.419 -69.5947 -329.725 -69.2757 -329.235 -68.6377  c
+-328.745 -67.9997 -328.500 -67.0928 -328.500 -65.9170  c
+-328.507 -65.5000 l
+-333.189 -65.5000 l
+-332.993 -63.7363 -332.130 -62.8545 -330.599 -62.8545  c
+-330.038 -62.8545 -329.350 -63.0049 -328.534 -63.3057  c
+h
+-333.128 -66.5117 m
+-329.854 -66.5117 l
+-329.854 -67.8926 -330.368 -68.5830 -331.398 -68.5830  c
+-332.433 -68.5830 -333.009 -67.8926 -333.128 -66.5117  c
+h
+-326.176 -62.0000 m
+-326.176 -69.4238 l
+-324.829 -69.4238 l
+-324.829 -68.0293 l
+-324.296 -69.0684 -323.521 -69.5879 -322.505 -69.5879  c
+-322.368 -69.5879 -322.225 -69.5765 -322.074 -69.5537  c
+-322.074 -68.2959 l
+-322.307 -68.3734 -322.512 -68.4121 -322.689 -68.4121  c
+-323.542 -68.4121 -324.255 -67.9062 -324.829 -66.8945  c
+-324.829 -62.0000 l
+h
+-317.747 -60.9062 m
+-317.747 -59.9766 l
+-318.731 -60.6465 -319.512 -61.5568 -320.088 -62.7075  c
+-320.665 -63.8582 -320.953 -65.0853 -320.953 -66.3887  c
+-320.953 -67.6875 -320.665 -68.9123 -320.088 -70.0630  c
+-319.512 -71.2137 -318.731 -72.1240 -317.747 -72.7939  c
+-317.747 -71.8643 l
+-318.417 -71.1351 -318.894 -70.3512 -319.179 -69.5127  c
+-319.464 -68.6742 -319.606 -67.6328 -319.606 -66.3887  c
+-319.606 -65.1400 -319.464 -64.0964 -319.179 -63.2578  c
+-318.894 -62.4193 -318.417 -61.6354 -317.747 -60.9062  c
+h
+-316.735 -60.9062 m
+-316.735 -59.9766 l
+-315.751 -60.6465 -314.971 -61.5568 -314.394 -62.7075  c
+-313.818 -63.8582 -313.529 -65.0853 -313.529 -66.3887  c
+-313.529 -67.6875 -313.818 -68.9123 -314.394 -70.0630  c
+-314.971 -71.2137 -315.751 -72.1240 -316.735 -72.7939  c
+-316.735 -71.8643 l
+-316.065 -71.1351 -315.588 -70.3512 -315.303 -69.5127  c
+-315.018 -68.6742 -314.876 -67.6328 -314.876 -66.3887  c
+-314.876 -65.1400 -315.018 -64.0964 -315.303 -63.2578  c
+-315.588 -62.4193 -316.065 -61.6354 -316.735 -60.9062  c
+h
+f
+.258824 .627451 .658824 RG
+newpath
+-146.889 133.000 m
+-146.889 131.605 l
+-147.436 132.649 -148.260 133.171 -149.363 133.171  c
+-150.257 133.171 -150.959 132.845 -151.472 132.193  c
+-151.985 131.542 -152.241 130.651 -152.241 129.521  c
+-152.241 128.285 -151.951 127.292 -151.370 126.540  c
+-150.789 125.788 -150.024 125.412 -149.076 125.412  c
+-148.197 125.412 -147.467 125.749 -146.889 126.424  c
+-146.889 122.206 l
+-145.535 122.206 l
+-145.535 133.000 l
+h
+-146.889 127.347 m
+-147.586 126.731 -148.247 126.424 -148.871 126.424  c
+-150.161 126.424 -150.806 127.410 -150.806 129.384  c
+-150.806 131.120 -150.231 131.988 -149.083 131.988  c
+-148.336 131.988 -147.604 131.580 -146.889 130.765  c
+h
+-139.937 133.171 m
+-140.998 133.171 -141.846 132.819 -142.479 132.115  c
+-143.113 131.411 -143.430 130.468 -143.430 129.288  c
+-143.430 128.094 -143.112 127.150 -142.476 126.455  c
+-141.840 125.760 -140.978 125.412 -139.889 125.412  c
+-138.799 125.412 -137.937 125.760 -137.301 126.455  c
+-136.666 127.150 -136.348 128.090 -136.348 129.274  c
+-136.348 130.487 -136.667 131.439 -137.305 132.132  c
+-137.943 132.825 -138.820 133.171 -139.937 133.171  c
+h
+-139.916 132.159 m
+-138.490 132.159 -137.776 131.198 -137.776 129.274  c
+-137.776 127.374 -138.480 126.424 -139.889 126.424  c
+-141.292 126.424 -141.994 127.379 -141.994 129.288  c
+-141.994 131.202 -141.301 132.159 -139.916 132.159  c
+h
+-133.381 133.000 m
+-135.507 125.576 l
+-134.188 125.576 l
+-132.561 131.325 l
+-130.804 125.576 l
+-129.457 125.576 l
+-127.919 131.325 l
+-126.053 125.576 l
+-124.897 125.576 l
+-127.317 133.000 l
+-128.671 133.000 l
+-130.243 127.251 l
+-132.021 133.000 l
+h
+-123.455 133.000 m
+-123.455 125.576 l
+-122.108 125.576 l
+-122.108 126.971 l
+-121.397 125.932 -120.527 125.412 -119.497 125.412  c
+-118.854 125.412 -118.342 125.616 -117.959 126.024  c
+-117.576 126.432 -117.385 126.980 -117.385 127.668  c
+-117.385 133.000 l
+-118.731 133.000 l
+-118.731 128.105 l
+-118.731 127.554 -118.812 127.161 -118.974 126.926  c
+-119.136 126.692 -119.404 126.574 -119.777 126.574  c
+-120.602 126.574 -121.379 127.114 -122.108 128.194  c
+-122.108 133.000 l
+h
+-114.767 135.023 m
+-114.767 122.206 l
+-112.066 122.206 l
+-112.066 123.218 l
+-113.584 123.218 l
+-113.584 134.012 l
+-112.066 134.012 l
+-112.066 135.023 l
+h
+-110.214 133.000 m
+-110.214 125.576 l
+-108.867 125.576 l
+-108.867 133.000 l
+h
+-110.214 124.229 m
+-110.214 122.883 l
+-108.867 122.883 l
+-108.867 124.229 l
+h
+-101.402 133.000 m
+-101.402 131.605 l
+-101.949 132.649 -102.774 133.171 -103.877 133.171  c
+-104.770 133.171 -105.473 132.845 -105.986 132.193  c
+-106.499 131.542 -106.755 130.651 -106.755 129.521  c
+-106.755 128.285 -106.464 127.292 -105.883 126.540  c
+-105.302 125.788 -104.538 125.412 -103.590 125.412  c
+-102.710 125.412 -101.981 125.749 -101.402 126.424  c
+-101.402 122.206 l
+-100.049 122.206 l
+-100.049 133.000 l
+h
+-101.402 127.347 m
+-102.100 126.731 -102.760 126.424 -103.385 126.424  c
+-104.674 126.424 -105.319 127.410 -105.319 129.384  c
+-105.319 131.120 -104.745 131.988 -103.597 131.988  c
+-102.849 131.988 -102.118 131.580 -101.402 130.765  c
+h
+-95.4961 135.023 m
+-95.4961 122.206 l
+-98.1963 122.206 l
+-98.1963 123.218 l
+-96.6787 123.218 l
+-96.6787 134.012 l
+-98.1963 134.012 l
+-98.1963 135.023 l
+h
+-92.6113 133.000 m
+-92.6113 131.653 l
+-91.2646 131.653 l
+-91.2646 133.000 l
+h
+-92.4404 130.300 m
+-92.6113 124.906 l
+-92.6113 122.883 l
+-91.2646 122.883 l
+-91.2646 124.906 l
+-91.4287 130.300 l
+h
+f
+newpath
+-242.685 -44.8291 m
+-243.300 -44.8291 -244.047 -44.9727 -244.927 -45.2598  c
+-244.927 -46.4971 l
+-244.047 -46.0596 -243.282 -45.8408 -242.630 -45.8408  c
+-242.243 -45.8408 -241.921 -45.9456 -241.666 -46.1553  c
+-241.411 -46.3649 -241.283 -46.6270 -241.283 -46.9414  c
+-241.283 -47.4017 -241.641 -47.7822 -242.356 -48.0830  c
+-243.143 -48.4180 l
+-244.305 -48.9010 -244.886 -49.5960 -244.886 -50.5029  c
+-244.886 -51.1501 -244.657 -51.6593 -244.199 -52.0308  c
+-243.741 -52.4022 -243.113 -52.5879 -242.315 -52.5879  c
+-241.901 -52.5879 -241.388 -52.5309 -240.777 -52.4170  c
+-240.497 -52.3623 l
+-240.497 -51.2412 l
+-241.249 -51.4645 -241.846 -51.5762 -242.288 -51.5762  c
+-243.154 -51.5762 -243.587 -51.2617 -243.587 -50.6328  c
+-243.587 -50.2272 -243.259 -49.8854 -242.603 -49.6074  c
+-241.953 -49.3340 l
+-241.219 -49.0241 -240.700 -48.6971 -240.395 -48.3530  c
+-240.089 -48.0090 -239.937 -47.5794 -239.937 -47.0645  c
+-239.937 -46.4128 -240.194 -45.8773 -240.709 -45.4580  c
+-241.224 -45.0387 -241.882 -44.8291 -242.685 -44.8291  c
+h
+-235.288 -44.8291 m
+-235.972 -44.8291 -236.505 -45.0251 -236.888 -45.4170  c
+-237.271 -45.8089 -237.462 -46.3535 -237.462 -47.0508  c
+-237.462 -51.4121 l
+-238.392 -51.4121 l
+-238.392 -52.4238 l
+-237.462 -52.4238 l
+-237.462 -53.7705 l
+-236.115 -53.9004 l
+-236.115 -52.4238 l
+-234.174 -52.4238 l
+-234.174 -51.4121 l
+-236.115 -51.4121 l
+-236.115 -47.2969 l
+-236.115 -46.3262 -235.696 -45.8408 -234.857 -45.8408  c
+-234.680 -45.8408 -234.463 -45.8704 -234.208 -45.9297  c
+-234.208 -45.0000 l
+-234.623 -44.8861 -234.983 -44.8291 -235.288 -44.8291  c
+h
+-228.452 -45.9434 m
+-229.259 -45.2005 -230.036 -44.8291 -230.783 -44.8291  c
+-231.398 -44.8291 -231.909 -45.0216 -232.314 -45.4067  c
+-232.720 -45.7918 -232.923 -46.2783 -232.923 -46.8662  c
+-232.923 -47.6774 -232.582 -48.3006 -231.901 -48.7358  c
+-231.220 -49.1711 -230.243 -49.3887 -228.972 -49.3887  c
+-228.650 -49.3887 l
+-228.650 -50.2842 l
+-228.650 -51.1455 -229.092 -51.5762 -229.977 -51.5762  c
+-230.688 -51.5762 -231.455 -51.3574 -232.280 -50.9199  c
+-232.280 -52.0342 l
+-231.373 -52.4033 -230.523 -52.5879 -229.730 -52.5879  c
+-228.901 -52.5879 -228.289 -52.4010 -227.895 -52.0273  c
+-227.501 -51.6536 -227.304 -51.0726 -227.304 -50.2842  c
+-227.304 -46.9209 l
+-227.304 -46.1507 -227.067 -45.7656 -226.593 -45.7656  c
+-226.534 -45.7656 -226.447 -45.7747 -226.333 -45.7930  c
+-226.237 -45.0479 l
+-226.543 -44.9020 -226.880 -44.8291 -227.249 -44.8291  c
+-227.878 -44.8291 -228.279 -45.2005 -228.452 -45.9434  c
+h
+-228.650 -46.6748 m
+-228.650 -48.5957 l
+-229.102 -48.6094 l
+-229.840 -48.6094 -230.437 -48.4692 -230.893 -48.1890  c
+-231.348 -47.9087 -231.576 -47.5407 -231.576 -47.0850  c
+-231.576 -46.7614 -231.462 -46.4880 -231.234 -46.2646  c
+-231.007 -46.0413 -230.729 -45.9297 -230.400 -45.9297  c
+-229.840 -45.9297 -229.257 -46.1781 -228.650 -46.6748  c
+h
+-224.549 -45.0000 m
+-224.549 -52.4238 l
+-223.202 -52.4238 l
+-223.202 -51.0293 l
+-222.669 -52.0684 -221.894 -52.5879 -220.878 -52.5879  c
+-220.741 -52.5879 -220.598 -52.5765 -220.447 -52.5537  c
+-220.447 -51.2959 l
+-220.680 -51.3734 -220.885 -51.4121 -221.062 -51.4121  c
+-221.915 -51.4121 -222.628 -50.9062 -223.202 -49.8945  c
+-223.202 -45.0000 l
+h
+-216.592 -44.8291 m
+-217.275 -44.8291 -217.809 -45.0251 -218.191 -45.4170  c
+-218.574 -45.8089 -218.766 -46.3535 -218.766 -47.0508  c
+-218.766 -51.4121 l
+-219.695 -51.4121 l
+-219.695 -52.4238 l
+-218.766 -52.4238 l
+-218.766 -53.7705 l
+-217.419 -53.9004 l
+-217.419 -52.4238 l
+-215.478 -52.4238 l
+-215.478 -51.4121 l
+-217.419 -51.4121 l
+-217.419 -47.2969 l
+-217.419 -46.3262 -217.000 -45.8408 -216.161 -45.8408  c
+-215.983 -45.8408 -215.767 -45.8704 -215.512 -45.9297  c
+-215.512 -45.0000 l
+-215.926 -44.8861 -216.286 -44.8291 -216.592 -44.8291  c
+h
+-213.222 -45.0000 m
+-213.222 -46.3467 l
+-211.875 -46.3467 l
+-211.875 -45.0000 l
+h
+-213.222 -47.7002 m
+-213.222 -48.0693 l
+-213.222 -48.9398 -212.887 -49.7578 -212.217 -50.5234  c
+-211.786 -51.0225 l
+-211.071 -51.8428 -210.713 -52.5150 -210.713 -53.0391  c
+-210.713 -53.4447 -210.870 -53.7660 -211.185 -54.0029  c
+-211.499 -54.2399 -211.923 -54.3584 -212.456 -54.3584  c
+-213.153 -54.3584 -213.894 -54.1898 -214.678 -53.8525  c
+-214.678 -54.9941 l
+-213.835 -55.2493 -213.046 -55.3770 -212.312 -55.3770  c
+-211.383 -55.3770 -210.645 -55.1685 -210.098 -54.7515  c
+-209.551 -54.3345 -209.277 -53.7705 -209.277 -53.0596  c
+-209.277 -52.6585 -209.356 -52.3133 -209.513 -52.0239  c
+-209.670 -51.7345 -209.972 -51.3779 -210.419 -50.9541  c
+-210.843 -50.5576 l
+-211.267 -50.1566 -211.545 -49.8205 -211.677 -49.5493  c
+-211.809 -49.2782 -211.875 -48.9124 -211.875 -48.4521  c
+-211.875 -47.7002 l
+h
+f
+newpath
+-372.653 -96.0000 m
+-372.653 -103.424 l
+-371.307 -103.424 l
+-371.307 -102.029 l
+-370.773 -103.068 -369.999 -103.588 -368.982 -103.588  c
+-368.846 -103.588 -368.702 -103.576 -368.552 -103.554  c
+-368.552 -102.296 l
+-368.784 -102.373 -368.989 -102.412 -369.167 -102.412  c
+-370.019 -102.412 -370.732 -101.906 -371.307 -100.895  c
+-371.307 -96.0000 l
+h
+-361.483 -96.2393 m
+-362.386 -95.9658 -363.158 -95.8291 -363.801 -95.8291  c
+-364.895 -95.8291 -365.787 -96.1925 -366.477 -96.9194  c
+-367.167 -97.6463 -367.513 -98.5885 -367.513 -99.7461  c
+-367.513 -100.872 -367.208 -101.795 -366.600 -102.515  c
+-365.992 -103.235 -365.214 -103.595 -364.266 -103.595  c
+-363.368 -103.595 -362.674 -103.276 -362.184 -102.638  c
+-361.694 -102.000 -361.449 -101.093 -361.449 -99.9170  c
+-361.456 -99.5000 l
+-366.139 -99.5000 l
+-365.943 -97.7363 -365.079 -96.8545 -363.548 -96.8545  c
+-362.987 -96.8545 -362.299 -97.0049 -361.483 -97.3057  c
+h
+-366.077 -100.512 m
+-362.803 -100.512 l
+-362.803 -101.893 -363.318 -102.583 -364.348 -102.583  c
+-365.382 -102.583 -365.959 -101.893 -366.077 -100.512  c
+h
+-359.098 -93.5322 m
+-358.940 -94.7012 l
+-358.161 -94.3320 -357.393 -94.1475 -356.637 -94.1475  c
+-355.119 -94.1475 -354.360 -94.9518 -354.360 -96.5605  c
+-354.360 -97.7295 l
+-354.857 -96.6904 -355.673 -96.1709 -356.808 -96.1709  c
+-357.696 -96.1709 -358.403 -96.4945 -358.927 -97.1416  c
+-359.451 -97.7887 -359.713 -98.6615 -359.713 -99.7598  c
+-359.713 -100.890 -359.414 -101.811 -358.817 -102.521  c
+-358.220 -103.232 -357.448 -103.588 -356.500 -103.588  c
+-355.671 -103.588 -354.957 -103.251 -354.360 -102.576  c
+-354.360 -103.424 l
+-353.007 -103.424 l
+-353.007 -98.0234 l
+-353.007 -96.8613 -353.067 -96.0011 -353.188 -95.4429  c
+-353.309 -94.8846 -353.535 -94.4277 -353.868 -94.0723  c
+-354.456 -93.4479 -355.370 -93.1357 -356.609 -93.1357  c
+-357.475 -93.1357 -358.305 -93.2679 -359.098 -93.5322  c
+h
+-354.360 -98.5703 m
+-354.360 -101.653 l
+-354.953 -102.269 -355.598 -102.576 -356.295 -102.576  c
+-356.915 -102.576 -357.400 -102.328 -357.751 -101.831  c
+-358.102 -101.334 -358.277 -100.653 -358.277 -99.7871  c
+-358.277 -98.1602 -357.705 -97.3467 -356.562 -97.3467  c
+-355.782 -97.3467 -355.049 -97.7546 -354.360 -98.5703  c
+h
+-350.204 -96.0000 m
+-350.204 -97.3467 l
+-348.857 -97.3467 l
+-348.857 -96.0000 l
+h
+-350.033 -98.7002 m
+-350.204 -104.094 l
+-350.204 -106.117 l
+-348.857 -106.117 l
+-348.857 -104.094 l
+-349.021 -98.7002 l
+h
+f
+.258824 .258824 .658824 RG
+newpath
+-159.626 -136.532 m
+-159.469 -137.701 l
+-158.689 -137.332 -157.922 -137.147 -157.165 -137.147  c
+-155.647 -137.147 -154.889 -137.952 -154.889 -139.561  c
+-154.889 -140.729 l
+-155.385 -139.690 -156.201 -139.171 -157.336 -139.171  c
+-158.225 -139.171 -158.931 -139.494 -159.455 -140.142  c
+-159.979 -140.789 -160.241 -141.661 -160.241 -142.760  c
+-160.241 -143.890 -159.943 -144.811 -159.346 -145.521  c
+-158.749 -146.232 -157.976 -146.588 -157.028 -146.588  c
+-156.199 -146.588 -155.486 -146.251 -154.889 -145.576  c
+-154.889 -146.424 l
+-153.535 -146.424 l
+-153.535 -141.023 l
+-153.535 -139.861 -153.596 -139.001 -153.716 -138.443  c
+-153.837 -137.885 -154.064 -137.428 -154.396 -137.072  c
+-154.984 -136.448 -155.898 -136.136 -157.138 -136.136  c
+-158.004 -136.136 -158.833 -136.268 -159.626 -136.532  c
+h
+-154.889 -141.570 m
+-154.889 -144.653 l
+-155.481 -145.269 -156.126 -145.576 -156.823 -145.576  c
+-157.443 -145.576 -157.928 -145.328 -158.279 -144.831  c
+-158.630 -144.334 -158.806 -143.653 -158.806 -142.787  c
+-158.806 -141.160 -158.234 -140.347 -157.090 -140.347  c
+-156.311 -140.347 -155.577 -140.755 -154.889 -141.570  c
+h
+-150.924 -139.000 m
+-150.924 -146.424 l
+-149.577 -146.424 l
+-149.577 -145.029 l
+-149.044 -146.068 -148.269 -146.588 -147.253 -146.588  c
+-147.116 -146.588 -146.973 -146.576 -146.822 -146.554  c
+-146.822 -145.296 l
+-147.055 -145.373 -147.260 -145.412 -147.438 -145.412  c
+-148.290 -145.412 -149.003 -144.906 -149.577 -143.895  c
+-149.577 -139.000 l
+h
+-145.195 -139.000 m
+-145.195 -146.424 l
+-143.849 -146.424 l
+-143.849 -139.000 l
+h
+-145.195 -147.771 m
+-145.195 -149.117 l
+-143.849 -149.117 l
+-143.849 -147.771 l
+h
+-136.384 -139.000 m
+-136.384 -140.395 l
+-136.931 -139.351 -137.756 -138.829 -138.858 -138.829  c
+-139.752 -138.829 -140.455 -139.155 -140.967 -139.807  c
+-141.480 -140.458 -141.736 -141.349 -141.736 -142.479  c
+-141.736 -143.715 -141.446 -144.708 -140.865 -145.460  c
+-140.284 -146.212 -139.519 -146.588 -138.571 -146.588  c
+-137.692 -146.588 -136.963 -146.251 -136.384 -145.576  c
+-136.384 -149.794 l
+-135.030 -149.794 l
+-135.030 -139.000 l
+h
+-136.384 -144.653 m
+-137.081 -145.269 -137.742 -145.576 -138.366 -145.576  c
+-139.656 -145.576 -140.301 -144.590 -140.301 -142.616  c
+-140.301 -140.880 -139.727 -140.012 -138.578 -140.012  c
+-137.831 -140.012 -137.099 -140.420 -136.384 -141.235  c
+h
+-132.337 -136.977 m
+-132.337 -149.794 l
+-129.637 -149.794 l
+-129.637 -148.782 l
+-131.154 -148.782 l
+-131.154 -137.988 l
+-129.637 -137.988 l
+-129.637 -136.977 l
+h
+-128.529 -139.000 m
+-125.706 -142.835 l
+-128.447 -146.424 l
+-126.848 -146.424 l
+-124.681 -143.566 l
+-122.719 -146.424 l
+-121.406 -146.424 l
+-123.977 -142.657 l
+-121.181 -139.000 l
+-122.780 -139.000 l
+-125.016 -141.939 l
+-127.176 -139.000 l
+h
+-117.339 -136.977 m
+-117.339 -149.794 l
+-120.039 -149.794 l
+-120.039 -148.782 l
+-118.521 -148.782 l
+-118.521 -137.988 l
+-120.039 -137.988 l
+-120.039 -136.977 l
+h
+-114.646 -136.977 m
+-114.646 -149.794 l
+-111.945 -149.794 l
+-111.945 -148.782 l
+-113.463 -148.782 l
+-113.463 -137.988 l
+-111.945 -137.988 l
+-111.945 -136.977 l
+h
+-109.662 -136.300 m
+-108.459 -139.000 l
+-111.330 -146.424 l
+-109.874 -146.424 l
+-107.748 -140.832 l
+-105.479 -146.424 l
+-104.207 -146.424 l
+-108.261 -136.300 l
+h
+-99.0664 -139.000 m
+-99.0664 -142.541 l
+-102.607 -142.541 l
+-102.607 -143.553 l
+-99.0664 -143.553 l
+-99.0664 -147.094 l
+-98.0547 -147.094 l
+-98.0547 -143.553 l
+-94.5137 -143.553 l
+-94.5137 -142.541 l
+-98.0547 -142.541 l
+-98.0547 -139.000 l
+h
+-91.6494 -139.000 m
+-91.6494 -149.794 l
+-90.3027 -149.794 l
+-90.3027 -139.000 l
+h
+-82.1611 -139.239 m
+-83.0635 -138.966 -83.8359 -138.829 -84.4785 -138.829  c
+-85.5723 -138.829 -86.4644 -139.193 -87.1548 -139.919  c
+-87.8452 -140.646 -88.1904 -141.589 -88.1904 -142.746  c
+-88.1904 -143.872 -87.8862 -144.795 -87.2778 -145.515  c
+-86.6694 -146.235 -85.8913 -146.595 -84.9434 -146.595  c
+-84.0456 -146.595 -83.3517 -146.276 -82.8618 -145.638  c
+-82.3719 -145.000 -82.1270 -144.093 -82.1270 -142.917  c
+-82.1338 -142.500 l
+-86.8164 -142.500 l
+-86.6204 -140.736 -85.7568 -139.854 -84.2256 -139.854  c
+-83.6650 -139.854 -82.9769 -140.005 -82.1611 -140.306  c
+h
+-86.7549 -143.512 m
+-83.4805 -143.512 l
+-83.4805 -144.893 -83.9954 -145.583 -85.0254 -145.583  c
+-86.0599 -145.583 -86.6364 -144.893 -86.7549 -143.512  c
+h
+-79.8027 -139.000 m
+-79.8027 -146.424 l
+-78.4561 -146.424 l
+-78.4561 -145.029 l
+-77.7451 -146.068 -76.8747 -146.588 -75.8447 -146.588  c
+-75.2021 -146.588 -74.6895 -146.384 -74.3066 -145.976  c
+-73.9238 -145.568 -73.7324 -145.020 -73.7324 -144.332  c
+-73.7324 -139.000 l
+-75.0791 -139.000 l
+-75.0791 -143.895 l
+-75.0791 -144.446 -75.1600 -144.839 -75.3218 -145.074  c
+-75.4836 -145.308 -75.7513 -145.426 -76.1250 -145.426  c
+-76.9499 -145.426 -77.7269 -144.886 -78.4561 -143.806  c
+-78.4561 -139.000 l
+h
+-71.0869 -136.532 m
+-70.9297 -137.701 l
+-70.1504 -137.332 -69.3825 -137.147 -68.6260 -137.147  c
+-67.1084 -137.147 -66.3496 -137.952 -66.3496 -139.561  c
+-66.3496 -140.729 l
+-66.8464 -139.690 -67.6621 -139.171 -68.7969 -139.171  c
+-69.6855 -139.171 -70.3919 -139.494 -70.9160 -140.142  c
+-71.4401 -140.789 -71.7021 -141.661 -71.7021 -142.760  c
+-71.7021 -143.890 -71.4036 -144.811 -70.8066 -145.521  c
+-70.2096 -146.232 -69.4372 -146.588 -68.4893 -146.588  c
+-67.6598 -146.588 -66.9466 -146.251 -66.3496 -145.576  c
+-66.3496 -146.424 l
+-64.9961 -146.424 l
+-64.9961 -141.023 l
+-64.9961 -139.861 -65.0565 -139.001 -65.1772 -138.443  c
+-65.2980 -137.885 -65.5247 -137.428 -65.8574 -137.072  c
+-66.4453 -136.448 -67.3590 -136.136 -68.5986 -136.136  c
+-69.4645 -136.136 -70.2939 -136.268 -71.0869 -136.532  c
+h
+-66.3496 -141.570 m
+-66.3496 -144.653 l
+-66.9421 -145.269 -67.5869 -145.576 -68.2842 -145.576  c
+-68.9040 -145.576 -69.3893 -145.328 -69.7402 -144.831  c
+-70.0911 -144.334 -70.2666 -143.653 -70.2666 -142.787  c
+-70.2666 -141.160 -69.6947 -140.347 -68.5508 -140.347  c
+-67.7715 -140.347 -67.0378 -140.755 -66.3496 -141.570  c
+h
+-60.1562 -138.829 m
+-60.8398 -138.829 -61.3730 -139.025 -61.7559 -139.417  c
+-62.1387 -139.809 -62.3301 -140.354 -62.3301 -141.051  c
+-62.3301 -145.412 l
+-63.2598 -145.412 l
+-63.2598 -146.424 l
+-62.3301 -146.424 l
+-62.3301 -147.771 l
+-60.9834 -147.900 l
+-60.9834 -146.424 l
+-59.0420 -146.424 l
+-59.0420 -145.412 l
+-60.9834 -145.412 l
+-60.9834 -141.297 l
+-60.9834 -140.326 -60.5641 -139.841 -59.7256 -139.841  c
+-59.5479 -139.841 -59.3314 -139.870 -59.0762 -139.930  c
+-59.0762 -139.000 l
+-59.4909 -138.886 -59.8509 -138.829 -60.1562 -138.829  c
+h
+-57.1484 -139.000 m
+-57.1484 -149.794 l
+-55.8018 -149.794 l
+-55.8018 -145.029 l
+-55.0908 -146.068 -54.2204 -146.588 -53.1904 -146.588  c
+-52.5479 -146.588 -52.0352 -146.384 -51.6523 -145.976  c
+-51.2695 -145.568 -51.0781 -145.020 -51.0781 -144.332  c
+-51.0781 -139.000 l
+-52.4248 -139.000 l
+-52.4248 -143.895 l
+-52.4248 -144.446 -52.5057 -144.839 -52.6675 -145.074  c
+-52.8293 -145.308 -53.0970 -145.426 -53.4707 -145.426  c
+-54.2956 -145.426 -55.0726 -144.886 -55.8018 -143.806  c
+-55.8018 -139.000 l
+h
+-46.6006 -136.977 m
+-46.6006 -149.794 l
+-49.3008 -149.794 l
+-49.3008 -148.782 l
+-47.7832 -148.782 l
+-47.7832 -137.988 l
+-49.3008 -137.988 l
+-49.3008 -136.977 l
+h
+-43.7158 -139.000 m
+-43.7158 -140.347 l
+-42.3691 -140.347 l
+-42.3691 -139.000 l
+h
+-43.7158 -145.070 m
+-43.7158 -146.424 l
+-42.3691 -146.424 l
+-42.3691 -145.070 l
+h
+-39.3066 -141.276 m
+-39.3066 -142.288 l
+-31.2129 -142.288 l
+-31.2129 -141.276 l
+h
+-39.3066 -143.806 m
+-39.3066 -144.817 l
+-31.2129 -144.817 l
+-31.2129 -143.806 l
+h
+-26.1201 -138.829 m
+-26.8037 -138.829 -27.3369 -139.025 -27.7197 -139.417  c
+-28.1025 -139.809 -28.2939 -140.354 -28.2939 -141.051  c
+-28.2939 -145.412 l
+-29.2236 -145.412 l
+-29.2236 -146.424 l
+-28.2939 -146.424 l
+-28.2939 -147.771 l
+-26.9473 -147.900 l
+-26.9473 -146.424 l
+-25.0059 -146.424 l
+-25.0059 -145.412 l
+-26.9473 -145.412 l
+-26.9473 -141.297 l
+-26.9473 -140.326 -26.5280 -139.841 -25.6895 -139.841  c
+-25.5117 -139.841 -25.2952 -139.870 -25.0400 -139.930  c
+-25.0400 -139.000 l
+-25.4548 -138.886 -25.8148 -138.829 -26.1201 -138.829  c
+h
+-23.1123 -139.000 m
+-23.1123 -146.424 l
+-21.7656 -146.424 l
+-21.7656 -145.029 l
+-21.2324 -146.068 -20.4577 -146.588 -19.4414 -146.588  c
+-19.3047 -146.588 -19.1611 -146.576 -19.0107 -146.554  c
+-19.0107 -145.296 l
+-19.2432 -145.373 -19.4482 -145.412 -19.6260 -145.412  c
+-20.4782 -145.412 -21.1914 -144.906 -21.7656 -143.895  c
+-21.7656 -139.000 l
+h
+-12.7422 -139.000 m
+-12.7422 -140.395 l
+-13.4577 -139.351 -14.3258 -138.829 -15.3467 -138.829  c
+-15.9938 -138.829 -16.5088 -139.033 -16.8916 -139.441  c
+-17.2744 -139.849 -17.4658 -140.399 -17.4658 -141.092  c
+-17.4658 -146.424 l
+-16.1191 -146.424 l
+-16.1191 -141.529 l
+-16.1191 -140.973 -16.0382 -140.578 -15.8765 -140.343  c
+-15.7147 -140.109 -15.4447 -139.991 -15.0664 -139.991  c
+-14.2461 -139.991 -13.4714 -140.531 -12.7422 -141.611  c
+-12.7422 -146.424 l
+-11.3955 -146.424 l
+-11.3955 -139.000 l
+h
+-3.25391 -139.239 m
+-4.15625 -138.966 -4.92871 -138.829 -5.57129 -138.829  c
+-6.66504 -138.829 -7.55713 -139.193 -8.24756 -139.919  c
+-8.93799 -140.646 -9.28320 -141.589 -9.28320 -142.746  c
+-9.28320 -143.872 -8.97900 -144.795 -8.37061 -145.515  c
+-7.76221 -146.235 -6.98405 -146.595 -6.03613 -146.595  c
+-5.13835 -146.595 -4.44450 -146.276 -3.95459 -145.638  c
+-3.46468 -145.000 -3.21973 -144.093 -3.21973 -142.917  c
+-3.22656 -142.500 l
+-7.90918 -142.500 l
+-7.71322 -140.736 -6.84961 -139.854 -5.31836 -139.854  c
+-4.75781 -139.854 -4.06966 -140.005 -3.25391 -140.306  c
+h
+-7.84766 -143.512 m
+-4.57324 -143.512 l
+-4.57324 -144.893 -5.08822 -145.583 -6.11816 -145.583  c
+-7.15267 -145.583 -7.72917 -144.893 -7.84766 -143.512  c
+h
+-.875000 -136.806 m
+-.875000 -137.312 l
+-.437500 -137.435 -.218750 -137.952 -.218750 -138.863  c
+-.218750 -139.000 l
+-.875000 -139.000 l
+-.875000 -140.688 l
+.813477 -140.688 l
+.813477 -139.226 l
+.813477 -137.726 .250651 -136.920 -.875000 -136.806  c
+h
+f
+newpath
+-159.626 -119.532 m
+-159.469 -120.701 l
+-158.689 -120.332 -157.922 -120.147 -157.165 -120.147  c
+-155.647 -120.147 -154.889 -120.952 -154.889 -122.561  c
+-154.889 -123.729 l
+-155.385 -122.690 -156.201 -122.171 -157.336 -122.171  c
+-158.225 -122.171 -158.931 -122.494 -159.455 -123.142  c
+-159.979 -123.789 -160.241 -124.661 -160.241 -125.760  c
+-160.241 -126.890 -159.943 -127.811 -159.346 -128.521  c
+-158.749 -129.232 -157.976 -129.588 -157.028 -129.588  c
+-156.199 -129.588 -155.486 -129.251 -154.889 -128.576  c
+-154.889 -129.424 l
+-153.535 -129.424 l
+-153.535 -124.023 l
+-153.535 -122.861 -153.596 -122.001 -153.716 -121.443  c
+-153.837 -120.885 -154.064 -120.428 -154.396 -120.072  c
+-154.984 -119.448 -155.898 -119.136 -157.138 -119.136  c
+-158.004 -119.136 -158.833 -119.268 -159.626 -119.532  c
+h
+-154.889 -124.570 m
+-154.889 -127.653 l
+-155.481 -128.269 -156.126 -128.576 -156.823 -128.576  c
+-157.443 -128.576 -157.928 -128.328 -158.279 -127.831  c
+-158.630 -127.334 -158.806 -126.653 -158.806 -125.787  c
+-158.806 -124.160 -158.234 -123.347 -157.090 -123.347  c
+-156.311 -123.347 -155.577 -123.755 -154.889 -124.570  c
+h
+-150.924 -122.000 m
+-150.924 -129.424 l
+-149.577 -129.424 l
+-149.577 -128.029 l
+-149.044 -129.068 -148.269 -129.588 -147.253 -129.588  c
+-147.116 -129.588 -146.973 -129.576 -146.822 -129.554  c
+-146.822 -128.296 l
+-147.055 -128.373 -147.260 -128.412 -147.438 -128.412  c
+-148.290 -128.412 -149.003 -127.906 -149.577 -126.895  c
+-149.577 -122.000 l
+h
+-145.195 -122.000 m
+-145.195 -129.424 l
+-143.849 -129.424 l
+-143.849 -122.000 l
+h
+-145.195 -130.771 m
+-145.195 -132.117 l
+-143.849 -132.117 l
+-143.849 -130.771 l
+h
+-136.384 -122.000 m
+-136.384 -123.395 l
+-136.931 -122.351 -137.756 -121.829 -138.858 -121.829  c
+-139.752 -121.829 -140.455 -122.155 -140.967 -122.807  c
+-141.480 -123.458 -141.736 -124.349 -141.736 -125.479  c
+-141.736 -126.715 -141.446 -127.708 -140.865 -128.460  c
+-140.284 -129.212 -139.519 -129.588 -138.571 -129.588  c
+-137.692 -129.588 -136.963 -129.251 -136.384 -128.576  c
+-136.384 -132.794 l
+-135.030 -132.794 l
+-135.030 -122.000 l
+h
+-136.384 -127.653 m
+-137.081 -128.269 -137.742 -128.576 -138.366 -128.576  c
+-139.656 -128.576 -140.301 -127.590 -140.301 -125.616  c
+-140.301 -123.880 -139.727 -123.012 -138.578 -123.012  c
+-137.831 -123.012 -137.099 -123.420 -136.384 -124.235  c
+h
+-132.337 -119.977 m
+-132.337 -132.794 l
+-129.637 -132.794 l
+-129.637 -131.782 l
+-131.154 -131.782 l
+-131.154 -120.988 l
+-129.637 -120.988 l
+-129.637 -119.977 l
+h
+-128.529 -122.000 m
+-125.706 -125.835 l
+-128.447 -129.424 l
+-126.848 -129.424 l
+-124.681 -126.566 l
+-122.719 -129.424 l
+-121.406 -129.424 l
+-123.977 -125.657 l
+-121.181 -122.000 l
+-122.780 -122.000 l
+-125.016 -124.939 l
+-127.176 -122.000 l
+h
+-117.339 -119.977 m
+-117.339 -132.794 l
+-120.039 -132.794 l
+-120.039 -131.782 l
+-118.521 -131.782 l
+-118.521 -120.988 l
+-120.039 -120.988 l
+-120.039 -119.977 l
+h
+-114.646 -119.977 m
+-114.646 -132.794 l
+-111.945 -132.794 l
+-111.945 -131.782 l
+-113.463 -131.782 l
+-113.463 -120.988 l
+-111.945 -120.988 l
+-111.945 -119.977 l
+h
+-109.662 -119.300 m
+-108.459 -122.000 l
+-111.330 -129.424 l
+-109.874 -129.424 l
+-107.748 -123.832 l
+-105.479 -129.424 l
+-104.207 -129.424 l
+-108.261 -119.300 l
+h
+-100.919 -119.977 m
+-100.919 -132.794 l
+-103.619 -132.794 l
+-103.619 -131.782 l
+-102.102 -131.782 l
+-102.102 -120.988 l
+-103.619 -120.988 l
+-103.619 -119.977 l
+h
+-98.0342 -122.000 m
+-98.0342 -123.347 l
+-96.6875 -123.347 l
+-96.6875 -122.000 l
+h
+-98.0342 -128.070 m
+-98.0342 -129.424 l
+-96.6875 -129.424 l
+-96.6875 -128.070 l
+h
+-93.6250 -124.276 m
+-93.6250 -125.288 l
+-85.5312 -125.288 l
+-85.5312 -124.276 l
+h
+-93.6250 -126.806 m
+-93.6250 -127.817 l
+-85.5312 -127.817 l
+-85.5312 -126.806 l
+h
+-81.0605 -128.412 m
+-81.0605 -122.000 l
+-82.4141 -122.000 l
+-82.4141 -128.412 l
+-83.4668 -128.412 l
+-83.4668 -129.424 l
+-82.4141 -129.424 l
+-82.4141 -130.312 l
+-82.4141 -132.081 -81.6074 -132.965 -79.9941 -132.965  c
+-79.5430 -132.965 -79.0303 -132.890 -78.4561 -132.739  c
+-78.4561 -131.673 l
+-79.0622 -131.860 -79.5475 -131.953 -79.9121 -131.953  c
+-80.3542 -131.953 -80.6561 -131.847 -80.8179 -131.635  c
+-80.9797 -131.423 -81.0605 -131.030 -81.0605 -130.456  c
+-81.0605 -129.424 l
+-79.2080 -129.424 l
+-79.2080 -128.412 l
+h
+-73.6914 -122.943 m
+-74.4980 -122.201 -75.2751 -121.829 -76.0225 -121.829  c
+-76.6377 -121.829 -77.1481 -122.022 -77.5537 -122.407  c
+-77.9593 -122.792 -78.1621 -123.278 -78.1621 -123.866  c
+-78.1621 -124.677 -77.8215 -125.301 -77.1401 -125.736  c
+-76.4588 -126.171 -75.4824 -126.389 -74.2109 -126.389  c
+-73.8896 -126.389 l
+-73.8896 -127.284 l
+-73.8896 -128.146 -74.3317 -128.576 -75.2158 -128.576  c
+-75.9268 -128.576 -76.6947 -128.357 -77.5195 -127.920  c
+-77.5195 -129.034 l
+-76.6126 -129.403 -75.7627 -129.588 -74.9697 -129.588  c
+-74.1403 -129.588 -73.5285 -129.401 -73.1343 -129.027  c
+-72.7401 -128.654 -72.5430 -128.073 -72.5430 -127.284  c
+-72.5430 -123.921 l
+-72.5430 -123.151 -72.3060 -122.766 -71.8320 -122.766  c
+-71.7728 -122.766 -71.6862 -122.775 -71.5723 -122.793  c
+-71.4766 -122.048 l
+-71.7819 -121.902 -72.1191 -121.829 -72.4883 -121.829  c
+-73.1172 -121.829 -73.5182 -122.201 -73.6914 -122.943  c
+h
+-73.8896 -123.675 m
+-73.8896 -125.596 l
+-74.3408 -125.609 l
+-75.0791 -125.609 -75.6761 -125.469 -76.1318 -125.189  c
+-76.5876 -124.909 -76.8154 -124.541 -76.8154 -124.085  c
+-76.8154 -123.761 -76.7015 -123.488 -76.4736 -123.265  c
+-76.2458 -123.041 -75.9678 -122.930 -75.6396 -122.930  c
+-75.0791 -122.930 -74.4958 -123.178 -73.8896 -123.675  c
+h
+-69.7881 -122.000 m
+-69.7881 -132.794 l
+-68.4414 -132.794 l
+-68.4414 -122.000 l
+h
+-63.7725 -121.829 m
+-64.3877 -121.829 -65.1351 -121.973 -66.0146 -122.260  c
+-66.0146 -123.497 l
+-65.1351 -123.060 -64.3695 -122.841 -63.7178 -122.841  c
+-63.3304 -122.841 -63.0091 -122.946 -62.7539 -123.155  c
+-62.4987 -123.365 -62.3711 -123.627 -62.3711 -123.941  c
+-62.3711 -124.402 -62.7288 -124.782 -63.4443 -125.083  c
+-64.2305 -125.418 l
+-65.3926 -125.901 -65.9736 -126.596 -65.9736 -127.503  c
+-65.9736 -128.150 -65.7446 -128.659 -65.2866 -129.031  c
+-64.8286 -129.402 -64.2008 -129.588 -63.4033 -129.588  c
+-62.9886 -129.588 -62.4759 -129.531 -61.8652 -129.417  c
+-61.5850 -129.362 l
+-61.5850 -128.241 l
+-62.3369 -128.465 -62.9339 -128.576 -63.3760 -128.576  c
+-64.2419 -128.576 -64.6748 -128.262 -64.6748 -127.633  c
+-64.6748 -127.227 -64.3467 -126.885 -63.6904 -126.607  c
+-63.0410 -126.334 l
+-62.3073 -126.024 -61.7878 -125.697 -61.4824 -125.353  c
+-61.1771 -125.009 -61.0244 -124.579 -61.0244 -124.064  c
+-61.0244 -123.413 -61.2819 -122.877 -61.7969 -122.458  c
+-62.3118 -122.039 -62.9704 -121.829 -63.7725 -121.829  c
+h
+-53.1631 -122.239 m
+-54.0654 -121.966 -54.8379 -121.829 -55.4805 -121.829  c
+-56.5742 -121.829 -57.4663 -122.193 -58.1567 -122.919  c
+-58.8472 -123.646 -59.1924 -124.589 -59.1924 -125.746  c
+-59.1924 -126.872 -58.8882 -127.795 -58.2798 -128.515  c
+-57.6714 -129.235 -56.8932 -129.595 -55.9453 -129.595  c
+-55.0475 -129.595 -54.3537 -129.276 -53.8638 -128.638  c
+-53.3739 -128.000 -53.1289 -127.093 -53.1289 -125.917  c
+-53.1357 -125.500 l
+-57.8184 -125.500 l
+-57.6224 -123.736 -56.7588 -122.854 -55.2275 -122.854  c
+-54.6670 -122.854 -53.9788 -123.005 -53.1631 -123.306  c
+h
+-57.7568 -126.512 m
+-54.4824 -126.512 l
+-54.4824 -127.893 -54.9974 -128.583 -56.0273 -128.583  c
+-57.0618 -128.583 -57.6383 -127.893 -57.7568 -126.512  c
+h
+-50.7842 -119.806 m
+-50.7842 -120.312 l
+-50.3467 -120.435 -50.1279 -120.952 -50.1279 -121.863  c
+-50.1279 -122.000 l
+-50.7842 -122.000 l
+-50.7842 -123.688 l
+-49.0957 -123.688 l
+-49.0957 -122.226 l
+-49.0957 -120.726 -49.6585 -119.920 -50.7842 -119.806  c
+h
+f
+newpath
+-159.223 -102.300 m
+-158.020 -105.000 l
+-160.891 -112.424 l
+-159.435 -112.424 l
+-157.309 -106.832 l
+-155.039 -112.424 l
+-153.768 -112.424 l
+-157.821 -102.300 l
+h
+-152.147 -105.000 m
+-152.147 -106.347 l
+-150.801 -106.347 l
+-150.801 -105.000 l
+h
+-152.147 -111.070 m
+-152.147 -112.424 l
+-150.801 -112.424 l
+-150.801 -111.070 l
+h
+-147.738 -107.276 m
+-147.738 -108.288 l
+-139.645 -108.288 l
+-139.645 -107.276 l
+h
+-147.738 -109.806 m
+-147.738 -110.817 l
+-139.645 -110.817 l
+-139.645 -109.806 l
+h
+-136.350 -102.300 m
+-135.146 -105.000 l
+-138.018 -112.424 l
+-136.562 -112.424 l
+-134.436 -106.832 l
+-132.166 -112.424 l
+-130.895 -112.424 l
+-134.948 -102.300 l
+h
+-125.754 -105.000 m
+-125.754 -108.541 l
+-129.295 -108.541 l
+-129.295 -109.553 l
+-125.754 -109.553 l
+-125.754 -113.094 l
+-124.742 -113.094 l
+-124.742 -109.553 l
+-121.201 -109.553 l
+-121.201 -108.541 l
+-124.742 -108.541 l
+-124.742 -105.000 l
+h
+-117.578 -105.000 m
+-117.578 -106.012 l
+-115.555 -106.012 l
+-115.555 -113.996 l
+-117.578 -113.490 l
+-117.578 -114.529 l
+-114.201 -115.370 l
+-114.201 -106.012 l
+-112.178 -106.012 l
+-112.178 -105.000 l
+h
+f
+1 J
+2 j
+0.00000 0.00000 0.00000 RG
+newpath
+-301.000 -34.0000 m
+-115.000 -34.0000 l
+S
+newpath
+-124.659 -31.4118 m
+-115.000 -34.0000 l
+-124.659 -36.5882 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-109.244 -23.2052 m
+-147.428 33.6963 l
+-151.143 39.2321 -149.667 42.0000 -143.000 42.0000  c
+-44.0000 42.0000 l
+-37.3333 42.0000 -36.2226 39.5159 -40.6679 34.5476  c
+-93.3317 -24.3119 l
+S
+newpath
+-84.9621 -18.8392 m
+-93.3317 -24.3119 l
+-88.8197 -15.3876 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-403.020 -76.7256 m
+-264.984 -84.4419 l
+-258.328 -84.8140 -257.522 -82.8202 -262.565 -78.4605  c
+-304.165 -42.5014 l
+S
+newpath
+-298.550 -50.7762 m
+-304.165 -42.5014 l
+-295.165 -46.8600 l
+S
+2 J
+0 j
+1 J
+2 j
+newpath
+-111.688 -42.6683 m
+-170.548 -95.3321 l
+-175.516 -99.7774 -174.667 -102.000 -168.000 -102.000  c
+-44.0000 -102.000 l
+-37.3333 -102.000 -36.3570 -99.6430 -41.0711 -94.9289  c
+-92.8076 -43.1924 l
+S
+newpath
+-87.8076 -51.8526 m
+-92.8076 -43.1924 l
+-84.1474 -48.1924 l
+S
+2 J
+0 j
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+
+%%Trailer
+%%EOF