updated graphs
authorMart Lubbers <mart@martlubbers.net>
Sun, 20 Dec 2015 17:44:27 +0000 (18:44 +0100)
committerMart Lubbers <mart@martlubbers.net>
Sun, 20 Dec 2015 17:44:27 +0000 (18:44 +0100)
a3/1modelingTCP.tex
a3/lts-jtorx.eps [new file with mode: 0644]
a3/setup.graphml

index 2c9125b..6846389 100644 (file)
@@ -37,11 +37,10 @@ will receive the connection- and an external host -which will initiate the
 connection- and (b) the closing of a connection (tear down) initiated by the
 external host.
 
-Figure~\ref{fig:model_connection} shows a LTS model of the SUT for the 
-three-way handshake (a). Figure~\ref{fig:model_disconnect} shows a LTS model
-of the SUT for the tear down (b).
+Figure~\ref{fig:model_connection} shows the LTS model of the SUT.
 
-Hier zou dus een plaatje van ``digraph Connection'' uit ``graphs.viz'' moeten komen. \label{fig:model_connection}.
-
-En hier een plaatje van ``digraph Close'' uit ``graphs.viz'' moeten komen.
-\label{fig:model_disconnect}
\ No newline at end of file
+\begin{figure}[H]
+       \centering
+       \includegraphics[scale=.75]{lts-jtorx.eps}
+       \caption{LTS system}\label{fig:model}
+\end{figure}
diff --git a/a3/lts-jtorx.eps b/a3/lts-jtorx.eps
new file mode 100644 (file)
index 0000000..036a99d
--- /dev/null
@@ -0,0 +1,4558 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 0 0 382 619
+%%Creator: yExport 1.5
+%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753 
+%%For: 
+%%Title: 
+%%CreationDate: Sunday, December 20, 2015 6:43:05 PM CET
+%%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
+382 619 setpagesize
+0 0 0 0 setmargins
+0 0 setorigin
+382 619 setsize
+naturalsize
+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
+382.000 0.00000 l
+382.000 619.000 l
+0.00000 619.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
+382.000 0.00000 l
+382.000 619.000 l
+0.00000 619.000 l
+0.00000 0.00000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 0 382 619 rc
+q
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] concat
+[ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] concat
+1.00000 1.00000 1.00000 RG
+newpath
+38.0000 -398.000 m
+420.000 -398.000 l
+420.000 221.000 l
+38.0000 221.000 l
+38.0000 -398.000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+[ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+[ 1.00000 0.00000 0.00000 1.00000 -38.0000 398.000 ] defaultmatrix matrix concatmatrix setmatrix
+1.00000 .800000 0.00000 RG
+newpath
+375.000 -314.500 m
+405.000 -314.500 l
+405.000 -284.500 l
+375.000 -284.500 l
+375.000 -314.500 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+387.667 -296.346 m
+389.604 -296.346 l
+389.604 -303.018 l
+387.495 -302.596 l
+387.495 -303.674 l
+389.589 -304.096 l
+390.776 -304.096 l
+390.776 -296.346 l
+392.714 -296.346 l
+392.714 -295.346 l
+387.667 -295.346 l
+387.667 -296.346 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+375.000 -314.500 m
+405.000 -314.500 l
+405.000 -284.500 l
+375.000 -284.500 l
+375.000 -314.500 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+243.500 -314.500 m
+304.500 -314.500 l
+304.500 -284.500 l
+243.500 -284.500 l
+243.500 -314.500 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+257.189 -304.096 m
+258.377 -304.096 l
+258.377 -296.346 l
+262.643 -296.346 l
+262.643 -295.346 l
+257.189 -295.346 l
+257.189 -304.096 l
+h
+263.828 -301.908 m
+264.906 -301.908 l
+264.906 -295.346 l
+263.828 -295.346 l
+263.828 -301.908 l
+h
+263.828 -304.471 m
+264.906 -304.471 l
+264.906 -303.096 l
+263.828 -303.096 l
+263.828 -304.471 l
+h
+271.350 -301.721 m
+271.350 -300.689 l
+271.048 -300.846 270.732 -300.963 270.404 -301.041  c
+270.076 -301.119 269.735 -301.158 269.381 -301.158  c
+268.850 -301.158 268.449 -301.077 268.178 -300.916  c
+267.907 -300.755 267.771 -300.507 267.771 -300.174  c
+267.771 -299.924 267.868 -299.729 268.061 -299.588  c
+268.253 -299.447 268.641 -299.314 269.225 -299.189  c
+269.584 -299.096 l
+270.355 -298.939 270.902 -298.710 271.225 -298.408  c
+271.548 -298.106 271.709 -297.689 271.709 -297.158  c
+271.709 -296.544 271.467 -296.059 270.982 -295.705  c
+270.498 -295.351 269.834 -295.174 268.990 -295.174  c
+268.636 -295.174 268.269 -295.208 267.889 -295.275  c
+267.508 -295.343 267.110 -295.445 266.693 -295.580  c
+266.693 -296.705 l
+267.089 -296.497 267.480 -296.340 267.865 -296.236  c
+268.251 -296.132 268.636 -296.080 269.021 -296.080  c
+269.521 -296.080 269.910 -296.166 270.186 -296.338  c
+270.462 -296.510 270.600 -296.757 270.600 -297.080  c
+270.600 -297.372 270.501 -297.596 270.303 -297.752  c
+270.105 -297.908 269.673 -298.059 269.006 -298.205  c
+268.631 -298.283 l
+267.964 -298.429 267.482 -298.648 267.186 -298.939  c
+266.889 -299.231 266.740 -299.627 266.740 -300.127  c
+266.740 -300.752 266.959 -301.231 267.396 -301.564  c
+267.834 -301.898 268.454 -302.064 269.256 -302.064  c
+269.652 -302.064 270.027 -302.036 270.381 -301.979  c
+270.735 -301.921 271.058 -301.835 271.350 -301.721  c
+h
+274.492 -303.768 m
+274.492 -301.908 l
+276.711 -301.908 l
+276.711 -301.064 l
+274.492 -301.064 l
+274.492 -297.502 l
+274.492 -296.971 274.565 -296.630 274.711 -296.479  c
+274.857 -296.327 275.154 -296.252 275.602 -296.252  c
+276.711 -296.252 l
+276.711 -295.346 l
+275.602 -295.346 l
+274.768 -295.346 274.193 -295.502 273.875 -295.814  c
+273.557 -296.127 273.398 -296.689 273.398 -297.502  c
+273.398 -301.064 l
+272.617 -301.064 l
+272.617 -301.908 l
+273.398 -301.908 l
+273.398 -303.768 l
+274.492 -303.768 l
+h
+283.744 -298.893 m
+283.744 -298.377 l
+278.775 -298.377 l
+278.827 -297.627 279.054 -297.059 279.455 -296.674  c
+279.856 -296.288 280.411 -296.096 281.119 -296.096  c
+281.536 -296.096 281.939 -296.145 282.330 -296.244  c
+282.721 -296.343 283.109 -296.497 283.494 -296.705  c
+283.494 -295.674 l
+283.098 -295.518 282.697 -295.395 282.291 -295.307  c
+281.885 -295.218 281.473 -295.174 281.057 -295.174  c
+280.015 -295.174 279.187 -295.479 278.572 -296.088  c
+277.958 -296.697 277.650 -297.523 277.650 -298.564  c
+277.650 -299.637 277.942 -300.489 278.525 -301.119  c
+279.109 -301.749 279.890 -302.064 280.869 -302.064  c
+281.755 -302.064 282.455 -301.781 282.971 -301.213  c
+283.486 -300.645 283.744 -299.872 283.744 -298.893  c
+h
+282.666 -299.221 m
+282.656 -299.804 282.489 -300.273 282.166 -300.627  c
+281.843 -300.981 281.416 -301.158 280.885 -301.158  c
+280.281 -301.158 279.799 -300.986 279.439 -300.643  c
+279.080 -300.299 278.874 -299.820 278.822 -299.205  c
+282.666 -299.221 l
+h
+290.971 -299.314 m
+290.971 -295.346 l
+289.893 -295.346 l
+289.893 -299.268 l
+289.893 -299.893 289.770 -300.359 289.525 -300.666  c
+289.281 -300.973 288.919 -301.127 288.439 -301.127  c
+287.856 -301.127 287.395 -300.942 287.057 -300.572  c
+286.718 -300.202 286.549 -299.695 286.549 -299.049  c
+286.549 -295.346 l
+285.471 -295.346 l
+285.471 -301.908 l
+286.549 -301.908 l
+286.549 -300.893 l
+286.809 -301.288 287.114 -301.583 287.463 -301.775  c
+287.812 -301.968 288.215 -302.064 288.674 -302.064  c
+289.424 -302.064 289.994 -301.833 290.385 -301.369  c
+290.775 -300.906 290.971 -300.221 290.971 -299.314  c
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+243.500 -314.500 m
+304.500 -314.500 l
+304.500 -284.500 l
+243.500 -284.500 l
+243.500 -314.500 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+53.0000 -314.500 m
+120.000 -314.500 l
+120.000 -284.500 l
+53.0000 -284.500 l
+53.0000 -314.500 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+63.4932 -301.799 m
+63.4932 -300.643 l
+63.0452 -300.851 62.6208 -301.010 62.2197 -301.119  c
+61.8187 -301.229 61.4359 -301.283 61.0713 -301.283  c
+60.4255 -301.283 59.9281 -301.158 59.5791 -300.908  c
+59.2301 -300.658 59.0557 -300.299 59.0557 -299.830  c
+59.0557 -299.445 59.1702 -299.153 59.3994 -298.955  c
+59.6286 -298.757 60.0713 -298.601 60.7275 -298.486  c
+61.4307 -298.330 l
+62.3161 -298.163 62.9697 -297.869 63.3916 -297.447  c
+63.8135 -297.025 64.0244 -296.460 64.0244 -295.752  c
+64.0244 -294.898 63.7406 -294.252 63.1729 -293.814  c
+62.6051 -293.377 61.7692 -293.158 60.6650 -293.158  c
+60.2588 -293.158 59.8213 -293.205 59.3525 -293.299  c
+58.8838 -293.393 58.3994 -293.533 57.8994 -293.721  c
+57.8994 -294.939 l
+58.3786 -294.669 58.8499 -294.465 59.3135 -294.330  c
+59.7770 -294.195 60.2275 -294.127 60.6650 -294.127  c
+61.3421 -294.127 61.8656 -294.260 62.2354 -294.525  c
+62.6051 -294.791 62.7900 -295.169 62.7900 -295.658  c
+62.7900 -296.085 62.6572 -296.421 62.3916 -296.666  c
+62.1260 -296.911 61.6911 -297.090 61.0869 -297.205  c
+60.3682 -297.346 l
+59.4827 -297.523 58.8447 -297.799 58.4541 -298.174  c
+58.0635 -298.549 57.8682 -299.070 57.8682 -299.736  c
+57.8682 -300.518 58.1390 -301.130 58.6807 -301.572  c
+59.2223 -302.015 59.9723 -302.236 60.9307 -302.236  c
+61.3473 -302.236 61.7666 -302.200 62.1885 -302.127  c
+62.6104 -302.054 63.0452 -301.945 63.4932 -301.799  c
+h
+68.5479 -292.721 m
+68.2458 -291.939 67.9489 -291.429 67.6572 -291.189  c
+67.3656 -290.950 66.9801 -290.830 66.5010 -290.830  c
+65.6416 -290.830 l
+65.6416 -291.736 l
+66.2666 -291.736 l
+66.5687 -291.736 66.8005 -291.807 66.9619 -291.947  c
+67.1234 -292.088 67.3031 -292.419 67.5010 -292.939  c
+67.7041 -293.439 l
+65.0479 -299.893 l
+66.1885 -299.893 l
+68.2354 -294.768 l
+70.2979 -299.893 l
+71.4385 -299.893 l
+68.5479 -292.721 l
+h
+78.3838 -297.299 m
+78.3838 -293.330 l
+77.3057 -293.330 l
+77.3057 -297.252 l
+77.3057 -297.877 77.1833 -298.343 76.9385 -298.650  c
+76.6937 -298.958 76.3317 -299.111 75.8525 -299.111  c
+75.2692 -299.111 74.8083 -298.926 74.4697 -298.557  c
+74.1312 -298.187 73.9619 -297.679 73.9619 -297.033  c
+73.9619 -293.330 l
+72.8838 -293.330 l
+72.8838 -299.893 l
+73.9619 -299.893 l
+73.9619 -298.877 l
+74.2223 -299.273 74.5270 -299.567 74.8760 -299.760  c
+75.2249 -299.952 75.6286 -300.049 76.0869 -300.049  c
+76.8369 -300.049 77.4072 -299.817 77.7979 -299.354  c
+78.1885 -298.890 78.3838 -298.205 78.3838 -297.299  c
+h
+88.5381 -297.439 m
+88.7881 -297.346 89.0329 -297.158 89.2725 -296.877  c
+89.5120 -296.596 89.7568 -296.210 90.0068 -295.721  c
+91.2100 -293.330 l
+89.9287 -293.330 l
+88.8193 -295.580 l
+88.5277 -296.163 88.2464 -296.551 87.9756 -296.744  c
+87.7048 -296.937 87.3350 -297.033 86.8662 -297.033  c
+85.5693 -297.033 l
+85.5693 -293.330 l
+84.3818 -293.330 l
+84.3818 -302.080 l
+87.0537 -302.080 l
+88.0537 -302.080 88.8011 -301.872 89.2959 -301.455  c
+89.7907 -301.038 90.0381 -300.408 90.0381 -299.564  c
+90.0381 -299.012 89.9105 -298.554 89.6553 -298.189  c
+89.4001 -297.825 89.0277 -297.575 88.5381 -297.439  c
+h
+85.5693 -301.111 m
+85.5693 -298.002 l
+87.0537 -298.002 l
+87.6266 -298.002 88.0589 -298.135 88.3506 -298.400  c
+88.6423 -298.666 88.7881 -299.054 88.7881 -299.564  c
+88.7881 -300.075 88.6423 -300.460 88.3506 -300.721  c
+88.0589 -300.981 87.6266 -301.111 87.0537 -301.111  c
+85.5693 -301.111 l
+h
+98.2979 -296.877 m
+98.2979 -296.361 l
+93.3291 -296.361 l
+93.3812 -295.611 93.6077 -295.044 94.0088 -294.658  c
+94.4098 -294.273 94.9645 -294.080 95.6729 -294.080  c
+96.0895 -294.080 96.4932 -294.130 96.8838 -294.229  c
+97.2744 -294.327 97.6624 -294.481 98.0479 -294.689  c
+98.0479 -293.658 l
+97.6520 -293.502 97.2510 -293.380 96.8447 -293.291  c
+96.4385 -293.202 96.0270 -293.158 95.6104 -293.158  c
+94.5687 -293.158 93.7406 -293.463 93.1260 -294.072  c
+92.5114 -294.682 92.2041 -295.507 92.2041 -296.549  c
+92.2041 -297.622 92.4958 -298.473 93.0791 -299.104  c
+93.6624 -299.734 94.4437 -300.049 95.4229 -300.049  c
+96.3083 -300.049 97.0088 -299.765 97.5244 -299.197  c
+98.0400 -298.630 98.2979 -297.856 98.2979 -296.877  c
+h
+97.2197 -297.205 m
+97.2093 -297.788 97.0426 -298.257 96.7197 -298.611  c
+96.3968 -298.965 95.9697 -299.143 95.4385 -299.143  c
+94.8343 -299.143 94.3525 -298.971 93.9932 -298.627  c
+93.6338 -298.283 93.4281 -297.804 93.3760 -297.189  c
+97.2197 -297.205 l
+h
+104.790 -299.643 m
+104.790 -298.627 l
+104.478 -298.804 104.170 -298.934 103.868 -299.018  c
+103.566 -299.101 103.259 -299.143 102.946 -299.143  c
+102.238 -299.143 101.691 -298.921 101.306 -298.479  c
+100.920 -298.036 100.728 -297.413 100.728 -296.611  c
+100.728 -295.809 100.920 -295.187 101.306 -294.744  c
+101.691 -294.301 102.238 -294.080 102.946 -294.080  c
+103.259 -294.080 103.566 -294.122 103.868 -294.205  c
+104.170 -294.288 104.478 -294.413 104.790 -294.580  c
+104.790 -293.580 l
+104.488 -293.445 104.175 -293.340 103.853 -293.268  c
+103.530 -293.195 103.186 -293.158 102.821 -293.158  c
+101.832 -293.158 101.045 -293.468 100.462 -294.088  c
+99.8786 -294.708 99.5869 -295.549 99.5869 -296.611  c
+99.5869 -297.674 99.8812 -298.512 100.470 -299.127  c
+101.058 -299.742 101.868 -300.049 102.899 -300.049  c
+103.222 -300.049 103.543 -300.015 103.860 -299.947  c
+104.178 -299.880 104.488 -299.778 104.790 -299.643  c
+h
+105.888 -299.893 m
+107.028 -299.893 l
+109.075 -294.393 l
+111.138 -299.893 l
+112.278 -299.893 l
+109.810 -293.330 l
+108.341 -293.330 l
+105.888 -299.893 l
+h
+114.786 -302.080 m
+114.786 -298.830 l
+113.786 -298.830 l
+113.786 -302.080 l
+114.786 -302.080 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+53.0000 -314.500 m
+120.000 -314.500 l
+120.000 -284.500 l
+53.0000 -284.500 l
+53.0000 -314.500 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+243.500 -157.500 m
+317.500 -157.500 l
+317.500 -127.500 l
+243.500 -127.500 l
+243.500 -157.500 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+259.143 -146.814 m
+259.143 -145.658 l
+258.695 -145.867 258.270 -146.025 257.869 -146.135  c
+257.468 -146.244 257.085 -146.299 256.721 -146.299  c
+256.075 -146.299 255.577 -146.174 255.229 -145.924  c
+254.880 -145.674 254.705 -145.314 254.705 -144.846  c
+254.705 -144.460 254.820 -144.169 255.049 -143.971  c
+255.278 -143.773 255.721 -143.617 256.377 -143.502  c
+257.080 -143.346 l
+257.965 -143.179 258.619 -142.885 259.041 -142.463  c
+259.463 -142.041 259.674 -141.476 259.674 -140.768  c
+259.674 -139.913 259.390 -139.268 258.822 -138.830  c
+258.255 -138.393 257.419 -138.174 256.314 -138.174  c
+255.908 -138.174 255.471 -138.221 255.002 -138.314  c
+254.533 -138.408 254.049 -138.549 253.549 -138.736  c
+253.549 -139.955 l
+254.028 -139.684 254.499 -139.481 254.963 -139.346  c
+255.426 -139.210 255.877 -139.143 256.314 -139.143  c
+256.992 -139.143 257.515 -139.275 257.885 -139.541  c
+258.255 -139.807 258.439 -140.184 258.439 -140.674  c
+258.439 -141.101 258.307 -141.437 258.041 -141.682  c
+257.775 -141.926 257.340 -142.106 256.736 -142.221  c
+256.018 -142.361 l
+255.132 -142.538 254.494 -142.814 254.104 -143.189  c
+253.713 -143.564 253.518 -144.085 253.518 -144.752  c
+253.518 -145.533 253.788 -146.145 254.330 -146.588  c
+254.872 -147.031 255.622 -147.252 256.580 -147.252  c
+256.997 -147.252 257.416 -147.215 257.838 -147.143  c
+258.260 -147.070 258.695 -146.960 259.143 -146.814  c
+h
+264.197 -137.736 m
+263.895 -136.955 263.598 -136.445 263.307 -136.205  c
+263.015 -135.965 262.630 -135.846 262.150 -135.846  c
+261.291 -135.846 l
+261.291 -136.752 l
+261.916 -136.752 l
+262.218 -136.752 262.450 -136.822 262.611 -136.963  c
+262.773 -137.104 262.952 -137.434 263.150 -137.955  c
+263.354 -138.455 l
+260.697 -144.908 l
+261.838 -144.908 l
+263.885 -139.783 l
+265.947 -144.908 l
+267.088 -144.908 l
+264.197 -137.736 l
+h
+274.033 -142.314 m
+274.033 -138.346 l
+272.955 -138.346 l
+272.955 -142.268 l
+272.955 -142.893 272.833 -143.359 272.588 -143.666  c
+272.343 -143.973 271.981 -144.127 271.502 -144.127  c
+270.919 -144.127 270.458 -143.942 270.119 -143.572  c
+269.781 -143.202 269.611 -142.695 269.611 -142.049  c
+269.611 -138.346 l
+268.533 -138.346 l
+268.533 -144.908 l
+269.611 -144.908 l
+269.611 -143.893 l
+269.872 -144.288 270.176 -144.583 270.525 -144.775  c
+270.874 -144.968 271.278 -145.064 271.736 -145.064  c
+272.486 -145.064 273.057 -144.833 273.447 -144.369  c
+273.838 -143.906 274.033 -143.221 274.033 -142.314  c
+h
+284.188 -142.455 m
+284.438 -142.361 284.682 -142.174 284.922 -141.893  c
+285.161 -141.611 285.406 -141.226 285.656 -140.736  c
+286.859 -138.346 l
+285.578 -138.346 l
+284.469 -140.596 l
+284.177 -141.179 283.896 -141.567 283.625 -141.760  c
+283.354 -141.952 282.984 -142.049 282.516 -142.049  c
+281.219 -142.049 l
+281.219 -138.346 l
+280.031 -138.346 l
+280.031 -147.096 l
+282.703 -147.096 l
+283.703 -147.096 284.451 -146.887 284.945 -146.471  c
+285.440 -146.054 285.688 -145.424 285.688 -144.580  c
+285.688 -144.028 285.560 -143.570 285.305 -143.205  c
+285.049 -142.840 284.677 -142.590 284.188 -142.455  c
+h
+281.219 -146.127 m
+281.219 -143.018 l
+282.703 -143.018 l
+283.276 -143.018 283.708 -143.150 284.000 -143.416  c
+284.292 -143.682 284.438 -144.070 284.438 -144.580  c
+284.438 -145.090 284.292 -145.476 284.000 -145.736  c
+283.708 -145.997 283.276 -146.127 282.703 -146.127  c
+281.219 -146.127 l
+h
+293.947 -141.893 m
+293.947 -141.377 l
+288.979 -141.377 l
+289.031 -140.627 289.257 -140.059 289.658 -139.674  c
+290.059 -139.288 290.614 -139.096 291.322 -139.096  c
+291.739 -139.096 292.143 -139.145 292.533 -139.244  c
+292.924 -139.343 293.312 -139.497 293.697 -139.705  c
+293.697 -138.674 l
+293.301 -138.518 292.900 -138.395 292.494 -138.307  c
+292.088 -138.218 291.676 -138.174 291.260 -138.174  c
+290.218 -138.174 289.390 -138.479 288.775 -139.088  c
+288.161 -139.697 287.854 -140.523 287.854 -141.564  c
+287.854 -142.637 288.145 -143.489 288.729 -144.119  c
+289.312 -144.749 290.093 -145.064 291.072 -145.064  c
+291.958 -145.064 292.658 -144.781 293.174 -144.213  c
+293.689 -143.645 293.947 -142.872 293.947 -141.893  c
+h
+292.869 -142.221 m
+292.859 -142.804 292.692 -143.273 292.369 -143.627  c
+292.046 -143.981 291.619 -144.158 291.088 -144.158  c
+290.484 -144.158 290.002 -143.986 289.643 -143.643  c
+289.283 -143.299 289.077 -142.820 289.025 -142.205  c
+292.869 -142.221 l
+h
+300.439 -144.658 m
+300.439 -143.643 l
+300.127 -143.820 299.820 -143.950 299.518 -144.033  c
+299.215 -144.117 298.908 -144.158 298.596 -144.158  c
+297.887 -144.158 297.340 -143.937 296.955 -143.494  c
+296.570 -143.051 296.377 -142.429 296.377 -141.627  c
+296.377 -140.825 296.570 -140.202 296.955 -139.760  c
+297.340 -139.317 297.887 -139.096 298.596 -139.096  c
+298.908 -139.096 299.215 -139.137 299.518 -139.221  c
+299.820 -139.304 300.127 -139.429 300.439 -139.596  c
+300.439 -138.596 l
+300.137 -138.460 299.825 -138.356 299.502 -138.283  c
+299.179 -138.210 298.835 -138.174 298.471 -138.174  c
+297.481 -138.174 296.695 -138.484 296.111 -139.104  c
+295.528 -139.723 295.236 -140.564 295.236 -141.627  c
+295.236 -142.689 295.531 -143.528 296.119 -144.143  c
+296.708 -144.757 297.518 -145.064 298.549 -145.064  c
+298.872 -145.064 299.192 -145.031 299.510 -144.963  c
+299.827 -144.895 300.137 -144.794 300.439 -144.658  c
+h
+301.537 -144.908 m
+302.678 -144.908 l
+304.725 -139.408 l
+306.787 -144.908 l
+307.928 -144.908 l
+305.459 -138.346 l
+303.990 -138.346 l
+301.537 -144.908 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+243.500 -157.500 m
+317.500 -157.500 l
+317.500 -127.500 l
+243.500 -127.500 l
+243.500 -157.500 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+243.500 -71.5000 m
+324.500 -71.5000 l
+324.500 -41.5000 l
+243.500 -41.5000 l
+243.500 -71.5000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+250.654 -61.0957 m
+256.186 -61.0957 l
+256.186 -60.0957 l
+251.842 -60.0957 l
+251.842 -57.5020 l
+256.014 -57.5020 l
+256.014 -56.5176 l
+251.842 -56.5176 l
+251.842 -53.3457 l
+256.295 -53.3457 l
+256.295 -52.3457 l
+250.654 -52.3457 l
+250.654 -61.0957 l
+h
+262.377 -58.7207 m
+262.377 -57.6895 l
+262.075 -57.8457 261.760 -57.9629 261.432 -58.0410  c
+261.104 -58.1191 260.762 -58.1582 260.408 -58.1582  c
+259.877 -58.1582 259.476 -58.0775 259.205 -57.9160  c
+258.934 -57.7546 258.799 -57.5072 258.799 -57.1738  c
+258.799 -56.9238 258.895 -56.7285 259.088 -56.5879  c
+259.281 -56.4473 259.669 -56.3145 260.252 -56.1895  c
+260.611 -56.0957 l
+261.382 -55.9395 261.929 -55.7103 262.252 -55.4082  c
+262.575 -55.1061 262.736 -54.6895 262.736 -54.1582  c
+262.736 -53.5436 262.494 -53.0592 262.010 -52.7051  c
+261.525 -52.3509 260.861 -52.1738 260.018 -52.1738  c
+259.663 -52.1738 259.296 -52.2077 258.916 -52.2754  c
+258.536 -52.3431 258.137 -52.4447 257.721 -52.5801  c
+257.721 -53.7051 l
+258.117 -53.4967 258.507 -53.3405 258.893 -53.2363  c
+259.278 -53.1322 259.663 -53.0801 260.049 -53.0801  c
+260.549 -53.0801 260.937 -53.1660 261.213 -53.3379  c
+261.489 -53.5098 261.627 -53.7572 261.627 -54.0801  c
+261.627 -54.3717 261.528 -54.5957 261.330 -54.7520  c
+261.132 -54.9082 260.700 -55.0592 260.033 -55.2051  c
+259.658 -55.2832 l
+258.992 -55.4290 258.510 -55.6478 258.213 -55.9395  c
+257.916 -56.2311 257.768 -56.6270 257.768 -57.1270  c
+257.768 -57.7520 257.986 -58.2311 258.424 -58.5645  c
+258.861 -58.8978 259.481 -59.0645 260.283 -59.0645  c
+260.679 -59.0645 261.054 -59.0358 261.408 -58.9785  c
+261.762 -58.9212 262.085 -58.8353 262.377 -58.7207  c
+h
+265.520 -60.7676 m
+265.520 -58.9082 l
+267.738 -58.9082 l
+267.738 -58.0645 l
+265.520 -58.0645 l
+265.520 -54.5020 l
+265.520 -53.9707 265.592 -53.6296 265.738 -53.4785  c
+265.884 -53.3275 266.181 -53.2520 266.629 -53.2520  c
+267.738 -53.2520 l
+267.738 -52.3457 l
+266.629 -52.3457 l
+265.796 -52.3457 265.220 -52.5020 264.902 -52.8145  c
+264.585 -53.1270 264.426 -53.6895 264.426 -54.5020  c
+264.426 -58.0645 l
+263.645 -58.0645 l
+263.645 -58.9082 l
+264.426 -58.9082 l
+264.426 -60.7676 l
+265.520 -60.7676 l
+h
+272.131 -55.6426 m
+271.266 -55.6426 270.665 -55.5436 270.326 -55.3457  c
+269.988 -55.1478 269.818 -54.8092 269.818 -54.3301  c
+269.818 -53.9447 269.946 -53.6400 270.201 -53.4160  c
+270.456 -53.1921 270.798 -53.0801 271.225 -53.0801  c
+271.829 -53.0801 272.311 -53.2910 272.670 -53.7129  c
+273.029 -54.1348 273.209 -54.6999 273.209 -55.4082  c
+273.209 -55.6426 l
+272.131 -55.6426 l
+h
+274.287 -56.0957 m
+274.287 -52.3457 l
+273.209 -52.3457 l
+273.209 -53.3457 l
+272.959 -52.9499 272.652 -52.6556 272.287 -52.4629  c
+271.923 -52.2702 271.475 -52.1738 270.943 -52.1738  c
+270.266 -52.1738 269.730 -52.3639 269.334 -52.7441  c
+268.938 -53.1243 268.740 -53.6270 268.740 -54.2520  c
+268.740 -54.9915 268.988 -55.5488 269.482 -55.9238  c
+269.977 -56.2988 270.714 -56.4863 271.693 -56.4863  c
+273.209 -56.4863 l
+273.209 -56.5957 l
+273.209 -57.0957 273.045 -57.4811 272.717 -57.7520  c
+272.389 -58.0228 271.933 -58.1582 271.350 -58.1582  c
+270.975 -58.1582 270.607 -58.1113 270.248 -58.0176  c
+269.889 -57.9238 269.548 -57.7884 269.225 -57.6113  c
+269.225 -58.6113 l
+269.620 -58.7676 270.003 -58.8822 270.373 -58.9551  c
+270.743 -59.0280 271.105 -59.0645 271.459 -59.0645  c
+272.407 -59.0645 273.115 -58.8197 273.584 -58.3301  c
+274.053 -57.8405 274.287 -57.0957 274.287 -56.0957  c
+h
+281.219 -55.6270 m
+281.219 -56.4186 281.055 -57.0384 280.727 -57.4863  c
+280.398 -57.9342 279.953 -58.1582 279.391 -58.1582  c
+278.818 -58.1582 278.367 -57.9342 278.039 -57.4863  c
+277.711 -57.0384 277.547 -56.4186 277.547 -55.6270  c
+277.547 -54.8353 277.711 -54.2129 278.039 -53.7598  c
+278.367 -53.3066 278.818 -53.0801 279.391 -53.0801  c
+279.953 -53.0801 280.398 -53.3066 280.727 -53.7598  c
+281.055 -54.2129 281.219 -54.8353 281.219 -55.6270  c
+h
+277.547 -57.9082 m
+277.776 -58.3040 278.062 -58.5957 278.406 -58.7832  c
+278.750 -58.9707 279.161 -59.0645 279.641 -59.0645  c
+280.443 -59.0645 281.094 -58.7493 281.594 -58.1191  c
+282.094 -57.4889 282.344 -56.6582 282.344 -55.6270  c
+282.344 -54.5957 282.094 -53.7624 281.594 -53.1270  c
+281.094 -52.4915 280.443 -52.1738 279.641 -52.1738  c
+279.161 -52.1738 278.750 -52.2702 278.406 -52.4629  c
+278.062 -52.6556 277.776 -52.9447 277.547 -53.3301  c
+277.547 -52.3457 l
+276.469 -52.3457 l
+276.469 -61.4707 l
+277.547 -61.4707 l
+277.547 -57.9082 l
+h
+284.117 -61.4707 m
+285.195 -61.4707 l
+285.195 -52.3457 l
+284.117 -52.3457 l
+284.117 -61.4707 l
+h
+287.451 -58.9082 m
+288.529 -58.9082 l
+288.529 -52.3457 l
+287.451 -52.3457 l
+287.451 -58.9082 l
+h
+287.451 -61.4707 m
+288.529 -61.4707 l
+288.529 -60.0957 l
+287.451 -60.0957 l
+287.451 -61.4707 l
+h
+294.973 -58.7207 m
+294.973 -57.6895 l
+294.671 -57.8457 294.355 -57.9629 294.027 -58.0410  c
+293.699 -58.1191 293.358 -58.1582 293.004 -58.1582  c
+292.473 -58.1582 292.072 -58.0775 291.801 -57.9160  c
+291.530 -57.7546 291.395 -57.5072 291.395 -57.1738  c
+291.395 -56.9238 291.491 -56.7285 291.684 -56.5879  c
+291.876 -56.4473 292.264 -56.3145 292.848 -56.1895  c
+293.207 -56.0957 l
+293.978 -55.9395 294.525 -55.7103 294.848 -55.4082  c
+295.171 -55.1061 295.332 -54.6895 295.332 -54.1582  c
+295.332 -53.5436 295.090 -53.0592 294.605 -52.7051  c
+294.121 -52.3509 293.457 -52.1738 292.613 -52.1738  c
+292.259 -52.1738 291.892 -52.2077 291.512 -52.2754  c
+291.132 -52.3431 290.733 -52.4447 290.316 -52.5801  c
+290.316 -53.7051 l
+290.712 -53.4967 291.103 -53.3405 291.488 -53.2363  c
+291.874 -53.1322 292.259 -53.0801 292.645 -53.0801  c
+293.145 -53.0801 293.533 -53.1660 293.809 -53.3379  c
+294.085 -53.5098 294.223 -53.7572 294.223 -54.0801  c
+294.223 -54.3717 294.124 -54.5957 293.926 -54.7520  c
+293.728 -54.9082 293.296 -55.0592 292.629 -55.2051  c
+292.254 -55.2832 l
+291.587 -55.4290 291.105 -55.6478 290.809 -55.9395  c
+290.512 -56.2311 290.363 -56.6270 290.363 -57.1270  c
+290.363 -57.7520 290.582 -58.2311 291.020 -58.5645  c
+291.457 -58.8978 292.077 -59.0645 292.879 -59.0645  c
+293.275 -59.0645 293.650 -59.0358 294.004 -58.9785  c
+294.358 -58.9212 294.681 -58.8353 294.973 -58.7207  c
+h
+302.506 -56.3145 m
+302.506 -52.3457 l
+301.428 -52.3457 l
+301.428 -56.2676 l
+301.428 -56.8926 301.305 -57.3587 301.061 -57.6660  c
+300.816 -57.9733 300.454 -58.1270 299.975 -58.1270  c
+299.391 -58.1270 298.930 -57.9421 298.592 -57.5723  c
+298.253 -57.2025 298.084 -56.6947 298.084 -56.0488  c
+298.084 -52.3457 l
+297.006 -52.3457 l
+297.006 -61.4707 l
+298.084 -61.4707 l
+298.084 -57.8926 l
+298.344 -58.2884 298.649 -58.5827 298.998 -58.7754  c
+299.347 -58.9681 299.751 -59.0645 300.209 -59.0645  c
+300.959 -59.0645 301.529 -58.8327 301.920 -58.3691  c
+302.311 -57.9056 302.506 -57.2207 302.506 -56.3145  c
+h
+310.268 -55.8926 m
+310.268 -55.3770 l
+305.299 -55.3770 l
+305.351 -54.6270 305.577 -54.0592 305.979 -53.6738  c
+306.380 -53.2884 306.934 -53.0957 307.643 -53.0957  c
+308.059 -53.0957 308.463 -53.1452 308.854 -53.2441  c
+309.244 -53.3431 309.632 -53.4967 310.018 -53.7051  c
+310.018 -52.6738 l
+309.622 -52.5176 309.221 -52.3952 308.814 -52.3066  c
+308.408 -52.2181 307.997 -52.1738 307.580 -52.1738  c
+306.538 -52.1738 305.710 -52.4785 305.096 -53.0879  c
+304.481 -53.6973 304.174 -54.5228 304.174 -55.5645  c
+304.174 -56.6374 304.465 -57.4889 305.049 -58.1191  c
+305.632 -58.7493 306.413 -59.0645 307.393 -59.0645  c
+308.278 -59.0645 308.979 -58.7806 309.494 -58.2129  c
+310.010 -57.6452 310.268 -56.8717 310.268 -55.8926  c
+h
+309.189 -56.2207 m
+309.179 -56.8040 309.012 -57.2728 308.689 -57.6270  c
+308.367 -57.9811 307.939 -58.1582 307.408 -58.1582  c
+306.804 -58.1582 306.322 -57.9863 305.963 -57.6426  c
+305.604 -57.2988 305.398 -56.8197 305.346 -56.2051  c
+309.189 -56.2207 l
+h
+316.354 -57.9082 m
+316.354 -61.4707 l
+317.432 -61.4707 l
+317.432 -52.3457 l
+316.354 -52.3457 l
+316.354 -53.3301 l
+316.124 -52.9447 315.838 -52.6556 315.494 -52.4629  c
+315.150 -52.2702 314.734 -52.1738 314.244 -52.1738  c
+313.452 -52.1738 312.807 -52.4915 312.307 -53.1270  c
+311.807 -53.7624 311.557 -54.5957 311.557 -55.6270  c
+311.557 -56.6582 311.807 -57.4889 312.307 -58.1191  c
+312.807 -58.7493 313.452 -59.0645 314.244 -59.0645  c
+314.734 -59.0645 315.150 -58.9707 315.494 -58.7832  c
+315.838 -58.5957 316.124 -58.3040 316.354 -57.9082  c
+h
+312.682 -55.6270 m
+312.682 -54.8353 312.843 -54.2129 313.166 -53.7598  c
+313.489 -53.3066 313.937 -53.0801 314.510 -53.0801  c
+315.083 -53.0801 315.533 -53.3066 315.861 -53.7598  c
+316.189 -54.2129 316.354 -54.8353 316.354 -55.6270  c
+316.354 -56.4186 316.189 -57.0384 315.861 -57.4863  c
+315.533 -57.9342 315.083 -58.1582 314.510 -58.1582  c
+313.937 -58.1582 313.489 -57.9342 313.166 -57.4863  c
+312.843 -57.0384 312.682 -56.4186 312.682 -55.6270  c
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+243.500 -71.5000 m
+324.500 -71.5000 l
+324.500 -41.5000 l
+243.500 -41.5000 l
+243.500 -71.5000 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+247.000 95.0000 m
+321.000 95.0000 l
+321.000 125.000 l
+247.000 125.000 l
+247.000 95.0000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+261.761 106.076 m
+261.761 107.326 l
+261.354 106.951 260.927 106.673 260.479 106.490  c
+260.032 106.308 259.552 106.217 259.042 106.217  c
+258.042 106.217 257.276 106.524 256.745 107.139  c
+256.214 107.753 255.948 108.639 255.948 109.795  c
+255.948 110.941 256.214 111.821 256.745 112.436  c
+257.276 113.050 258.042 113.357 259.042 113.357  c
+259.552 113.357 260.032 113.264 260.479 113.076  c
+260.927 112.889 261.354 112.613 261.761 112.248  c
+261.761 113.482 l
+261.344 113.764 260.904 113.975 260.440 114.115  c
+259.977 114.256 259.490 114.326 258.979 114.326  c
+257.646 114.326 256.599 113.920 255.839 113.107  c
+255.078 112.295 254.698 111.191 254.698 109.795  c
+254.698 108.389 255.078 107.279 255.839 106.467  c
+256.599 105.654 257.646 105.248 258.979 105.248  c
+259.500 105.248 259.993 105.318 260.456 105.459  c
+260.920 105.600 261.354 105.805 261.761 106.076  c
+h
+263.530 105.029 m
+264.608 105.029 l
+264.608 114.154 l
+263.530 114.154 l
+263.530 105.029 l
+h
+269.411 108.342 m
+268.838 108.342 268.382 108.568 268.044 109.021  c
+267.705 109.475 267.536 110.092 267.536 110.873  c
+267.536 111.665 267.703 112.285 268.036 112.732  c
+268.369 113.180 268.828 113.404 269.411 113.404  c
+269.984 113.404 270.440 113.178 270.778 112.725  c
+271.117 112.271 271.286 111.654 271.286 110.873  c
+271.286 110.102 271.117 109.488 270.778 109.029  c
+270.440 108.571 269.984 108.342 269.411 108.342  c
+h
+269.411 107.436 m
+270.349 107.436 271.086 107.740 271.622 108.350  c
+272.159 108.959 272.427 109.800 272.427 110.873  c
+272.427 111.946 272.159 112.790 271.622 113.404  c
+271.086 114.019 270.349 114.326 269.411 114.326  c
+268.474 114.326 267.737 114.019 267.200 113.404  c
+266.664 112.790 266.396 111.946 266.396 110.873  c
+266.396 109.800 266.664 108.959 267.200 108.350  c
+267.737 107.740 268.474 107.436 269.411 107.436  c
+h
+278.394 107.779 m
+278.394 108.811 l
+278.091 108.654 277.776 108.537 277.448 108.459  c
+277.120 108.381 276.779 108.342 276.425 108.342  c
+275.894 108.342 275.493 108.423 275.222 108.584  c
+274.951 108.745 274.815 108.993 274.815 109.326  c
+274.815 109.576 274.912 109.771 275.104 109.912  c
+275.297 110.053 275.685 110.186 276.269 110.311  c
+276.628 110.404 l
+277.399 110.561 277.946 110.790 278.269 111.092  c
+278.591 111.394 278.753 111.811 278.753 112.342  c
+278.753 112.956 278.511 113.441 278.026 113.795  c
+277.542 114.149 276.878 114.326 276.034 114.326  c
+275.680 114.326 275.313 114.292 274.933 114.225  c
+274.552 114.157 274.154 114.055 273.737 113.920  c
+273.737 112.795 l
+274.133 113.003 274.524 113.160 274.909 113.264  c
+275.295 113.368 275.680 113.420 276.065 113.420  c
+276.565 113.420 276.953 113.334 277.229 113.162  c
+277.506 112.990 277.644 112.743 277.644 112.420  c
+277.644 112.128 277.545 111.904 277.347 111.748  c
+277.149 111.592 276.716 111.441 276.050 111.295  c
+275.675 111.217 l
+275.008 111.071 274.526 110.852 274.229 110.561  c
+273.933 110.269 273.784 109.873 273.784 109.373  c
+273.784 108.748 274.003 108.269 274.440 107.936  c
+274.878 107.602 275.498 107.436 276.300 107.436  c
+276.696 107.436 277.071 107.464 277.425 107.521  c
+277.779 107.579 278.102 107.665 278.394 107.779  c
+h
+286.083 110.607 m
+286.083 111.123 l
+281.114 111.123 l
+281.166 111.873 281.393 112.441 281.794 112.826  c
+282.195 113.212 282.750 113.404 283.458 113.404  c
+283.875 113.404 284.278 113.355 284.669 113.256  c
+285.060 113.157 285.448 113.003 285.833 112.795  c
+285.833 113.826 l
+285.437 113.982 285.036 114.105 284.630 114.193  c
+284.224 114.282 283.812 114.326 283.396 114.326  c
+282.354 114.326 281.526 114.021 280.911 113.412  c
+280.297 112.803 279.989 111.977 279.989 110.936  c
+279.989 109.863 280.281 109.011 280.864 108.381  c
+281.448 107.751 282.229 107.436 283.208 107.436  c
+284.093 107.436 284.794 107.719 285.310 108.287  c
+285.825 108.855 286.083 109.628 286.083 110.607  c
+h
+285.005 110.279 m
+284.994 109.696 284.828 109.227 284.505 108.873  c
+284.182 108.519 283.755 108.342 283.224 108.342  c
+282.619 108.342 282.138 108.514 281.778 108.857  c
+281.419 109.201 281.213 109.680 281.161 110.295  c
+285.005 110.279 l
+h
+287.122 105.404 m
+288.310 105.404 l
+290.153 112.795 l
+291.981 105.404 l
+293.310 105.404 l
+295.153 112.795 l
+296.981 105.404 l
+298.185 105.404 l
+295.997 114.154 l
+294.497 114.154 l
+292.653 106.561 l
+290.794 114.154 l
+289.310 114.154 l
+287.122 105.404 l
+h
+302.690 110.857 m
+301.826 110.857 301.224 110.956 300.886 111.154  c
+300.547 111.352 300.378 111.691 300.378 112.170  c
+300.378 112.555 300.506 112.860 300.761 113.084  c
+301.016 113.308 301.357 113.420 301.784 113.420  c
+302.388 113.420 302.870 113.209 303.229 112.787  c
+303.589 112.365 303.769 111.800 303.769 111.092  c
+303.769 110.857 l
+302.690 110.857 l
+h
+304.847 110.404 m
+304.847 114.154 l
+303.769 114.154 l
+303.769 113.154 l
+303.519 113.550 303.211 113.844 302.847 114.037  c
+302.482 114.230 302.034 114.326 301.503 114.326  c
+300.826 114.326 300.289 114.136 299.894 113.756  c
+299.498 113.376 299.300 112.873 299.300 112.248  c
+299.300 111.508 299.547 110.951 300.042 110.576  c
+300.537 110.201 301.274 110.014 302.253 110.014  c
+303.769 110.014 l
+303.769 109.904 l
+303.769 109.404 303.604 109.019 303.276 108.748  c
+302.948 108.477 302.493 108.342 301.909 108.342  c
+301.534 108.342 301.167 108.389 300.808 108.482  c
+300.448 108.576 300.107 108.712 299.784 108.889  c
+299.784 107.889 l
+300.180 107.732 300.563 107.618 300.933 107.545  c
+301.302 107.472 301.664 107.436 302.019 107.436  c
+302.966 107.436 303.675 107.680 304.144 108.170  c
+304.612 108.660 304.847 109.404 304.847 110.404  c
+h
+307.060 107.592 m
+308.138 107.592 l
+308.138 114.154 l
+307.060 114.154 l
+307.060 107.592 l
+h
+307.060 105.029 m
+308.138 105.029 l
+308.138 106.404 l
+307.060 106.404 l
+307.060 105.029 l
+h
+311.472 105.732 m
+311.472 107.592 l
+313.690 107.592 l
+313.690 108.436 l
+311.472 108.436 l
+311.472 111.998 l
+311.472 112.529 311.545 112.870 311.690 113.021  c
+311.836 113.173 312.133 113.248 312.581 113.248  c
+313.690 113.248 l
+313.690 114.154 l
+312.581 114.154 l
+311.748 114.154 311.172 113.998 310.854 113.686  c
+310.537 113.373 310.378 112.811 310.378 111.998  c
+310.378 108.436 l
+309.597 108.436 l
+309.597 107.592 l
+310.378 107.592 l
+310.378 105.732 l
+311.472 105.732 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+247.000 95.0000 m
+321.000 95.0000 l
+321.000 125.000 l
+247.000 125.000 l
+247.000 95.0000 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+258.000 175.500 m
+317.000 175.500 l
+317.000 205.500 l
+258.000 205.500 l
+258.000 175.500 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+263.389 185.904 m
+264.576 185.904 l
+264.576 193.654 l
+268.842 193.654 l
+268.842 194.654 l
+263.389 194.654 l
+263.389 185.904 l
+h
+273.012 191.357 m
+272.147 191.357 271.546 191.456 271.207 191.654  c
+270.868 191.852 270.699 192.191 270.699 192.670  c
+270.699 193.055 270.827 193.360 271.082 193.584  c
+271.337 193.808 271.678 193.920 272.105 193.920  c
+272.710 193.920 273.191 193.709 273.551 193.287  c
+273.910 192.865 274.090 192.300 274.090 191.592  c
+274.090 191.357 l
+273.012 191.357 l
+h
+275.168 190.904 m
+275.168 194.654 l
+274.090 194.654 l
+274.090 193.654 l
+273.840 194.050 273.533 194.344 273.168 194.537  c
+272.803 194.730 272.355 194.826 271.824 194.826  c
+271.147 194.826 270.611 194.636 270.215 194.256  c
+269.819 193.876 269.621 193.373 269.621 192.748  c
+269.621 192.008 269.868 191.451 270.363 191.076  c
+270.858 190.701 271.595 190.514 272.574 190.514  c
+274.090 190.514 l
+274.090 190.404 l
+274.090 189.904 273.926 189.519 273.598 189.248  c
+273.270 188.977 272.814 188.842 272.230 188.842  c
+271.855 188.842 271.488 188.889 271.129 188.982  c
+270.770 189.076 270.428 189.212 270.105 189.389  c
+270.105 188.389 l
+270.501 188.232 270.884 188.118 271.254 188.045  c
+271.624 187.972 271.986 187.936 272.340 187.936  c
+273.288 187.936 273.996 188.180 274.465 188.670  c
+274.934 189.160 275.168 189.904 275.168 190.904  c
+h
+281.568 188.279 m
+281.568 189.311 l
+281.266 189.154 280.951 189.037 280.623 188.959  c
+280.295 188.881 279.954 188.842 279.600 188.842  c
+279.068 188.842 278.667 188.923 278.396 189.084  c
+278.126 189.245 277.990 189.493 277.990 189.826  c
+277.990 190.076 278.087 190.271 278.279 190.412  c
+278.472 190.553 278.860 190.686 279.443 190.811  c
+279.803 190.904 l
+280.574 191.061 281.120 191.290 281.443 191.592  c
+281.766 191.894 281.928 192.311 281.928 192.842  c
+281.928 193.456 281.686 193.941 281.201 194.295  c
+280.717 194.649 280.053 194.826 279.209 194.826  c
+278.855 194.826 278.488 194.792 278.107 194.725  c
+277.727 194.657 277.329 194.555 276.912 194.420  c
+276.912 193.295 l
+277.308 193.503 277.699 193.660 278.084 193.764  c
+278.469 193.868 278.855 193.920 279.240 193.920  c
+279.740 193.920 280.128 193.834 280.404 193.662  c
+280.680 193.490 280.818 193.243 280.818 192.920  c
+280.818 192.628 280.719 192.404 280.521 192.248  c
+280.324 192.092 279.891 191.941 279.225 191.795  c
+278.850 191.717 l
+278.183 191.571 277.701 191.352 277.404 191.061  c
+277.107 190.769 276.959 190.373 276.959 189.873  c
+276.959 189.248 277.178 188.769 277.615 188.436  c
+278.053 188.102 278.673 187.936 279.475 187.936  c
+279.870 187.936 280.245 187.964 280.600 188.021  c
+280.954 188.079 281.277 188.165 281.568 188.279  c
+h
+284.711 186.232 m
+284.711 188.092 l
+286.930 188.092 l
+286.930 188.936 l
+284.711 188.936 l
+284.711 192.498 l
+284.711 193.029 284.784 193.370 284.930 193.521  c
+285.076 193.673 285.372 193.748 285.820 193.748  c
+286.930 193.748 l
+286.930 194.654 l
+285.820 194.654 l
+284.987 194.654 284.411 194.498 284.094 194.186  c
+283.776 193.873 283.617 193.311 283.617 192.498  c
+283.617 188.936 l
+282.836 188.936 l
+282.836 188.092 l
+283.617 188.092 l
+283.617 186.232 l
+284.711 186.232 l
+h
+295.137 187.076 m
+293.527 191.420 l
+296.746 191.420 l
+295.137 187.076 l
+h
+294.465 185.904 m
+295.809 185.904 l
+299.137 194.654 l
+297.902 194.654 l
+297.105 192.404 l
+293.168 192.404 l
+292.371 194.654 l
+291.121 194.654 l
+294.465 185.904 l
+h
+305.096 188.342 m
+305.096 189.357 l
+304.783 189.180 304.476 189.050 304.174 188.967  c
+303.872 188.883 303.564 188.842 303.252 188.842  c
+302.544 188.842 301.997 189.063 301.611 189.506  c
+301.226 189.949 301.033 190.571 301.033 191.373  c
+301.033 192.175 301.226 192.798 301.611 193.240  c
+301.997 193.683 302.544 193.904 303.252 193.904  c
+303.564 193.904 303.872 193.863 304.174 193.779  c
+304.476 193.696 304.783 193.571 305.096 193.404  c
+305.096 194.404 l
+304.794 194.540 304.481 194.644 304.158 194.717  c
+303.835 194.790 303.492 194.826 303.127 194.826  c
+302.137 194.826 301.351 194.516 300.768 193.896  c
+300.184 193.277 299.893 192.436 299.893 191.373  c
+299.893 190.311 300.187 189.472 300.775 188.857  c
+301.364 188.243 302.174 187.936 303.205 187.936  c
+303.528 187.936 303.848 187.969 304.166 188.037  c
+304.484 188.105 304.794 188.206 305.096 188.342  c
+h
+306.928 185.529 m
+308.006 185.529 l
+308.006 190.920 l
+311.225 188.092 l
+312.600 188.092 l
+309.115 191.154 l
+312.756 194.654 l
+311.350 194.654 l
+308.006 191.451 l
+308.006 194.654 l
+306.928 194.654 l
+306.928 185.529 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+258.000 175.500 m
+317.000 175.500 l
+317.000 205.500 l
+258.000 205.500 l
+258.000 175.500 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+245.000 -229.000 m
+303.000 -229.000 l
+303.000 -199.000 l
+245.000 -199.000 l
+245.000 -229.000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+251.046 -218.314 m
+251.046 -217.158 l
+250.598 -217.367 250.174 -217.525 249.772 -217.635  c
+249.371 -217.744 248.989 -217.799 248.624 -217.799  c
+247.978 -217.799 247.481 -217.674 247.132 -217.424  c
+246.783 -217.174 246.608 -216.814 246.608 -216.346  c
+246.608 -215.960 246.723 -215.669 246.952 -215.471  c
+247.181 -215.273 247.624 -215.117 248.280 -215.002  c
+248.983 -214.846 l
+249.869 -214.679 250.522 -214.385 250.944 -213.963  c
+251.366 -213.541 251.577 -212.976 251.577 -212.268  c
+251.577 -211.413 251.293 -210.768 250.726 -210.330  c
+250.158 -209.893 249.322 -209.674 248.218 -209.674  c
+247.812 -209.674 247.374 -209.721 246.905 -209.814  c
+246.437 -209.908 245.952 -210.049 245.452 -210.236  c
+245.452 -211.455 l
+245.931 -211.184 246.403 -210.981 246.866 -210.846  c
+247.330 -210.710 247.780 -210.643 248.218 -210.643  c
+248.895 -210.643 249.418 -210.775 249.788 -211.041  c
+250.158 -211.307 250.343 -211.684 250.343 -212.174  c
+250.343 -212.601 250.210 -212.937 249.944 -213.182  c
+249.679 -213.426 249.244 -213.606 248.640 -213.721  c
+247.921 -213.861 l
+247.035 -214.038 246.397 -214.314 246.007 -214.689  c
+245.616 -215.064 245.421 -215.585 245.421 -216.252  c
+245.421 -217.033 245.692 -217.645 246.233 -218.088  c
+246.775 -218.531 247.525 -218.752 248.483 -218.752  c
+248.900 -218.752 249.319 -218.715 249.741 -218.643  c
+250.163 -218.570 250.598 -218.460 251.046 -218.314  c
+h
+256.101 -209.236 m
+255.799 -208.455 255.502 -207.945 255.210 -207.705  c
+254.918 -207.465 254.533 -207.346 254.054 -207.346  c
+253.194 -207.346 l
+253.194 -208.252 l
+253.819 -208.252 l
+254.121 -208.252 254.353 -208.322 254.515 -208.463  c
+254.676 -208.604 254.856 -208.934 255.054 -209.455  c
+255.257 -209.955 l
+252.601 -216.408 l
+253.741 -216.408 l
+255.788 -211.283 l
+257.851 -216.408 l
+258.991 -216.408 l
+256.101 -209.236 l
+h
+265.937 -213.814 m
+265.937 -209.846 l
+264.858 -209.846 l
+264.858 -213.768 l
+264.858 -214.393 264.736 -214.859 264.491 -215.166  c
+264.246 -215.473 263.884 -215.627 263.405 -215.627  c
+262.822 -215.627 262.361 -215.442 262.022 -215.072  c
+261.684 -214.702 261.515 -214.195 261.515 -213.549  c
+261.515 -209.846 l
+260.437 -209.846 l
+260.437 -216.408 l
+261.515 -216.408 l
+261.515 -215.393 l
+261.775 -215.788 262.080 -216.083 262.429 -216.275  c
+262.778 -216.468 263.181 -216.564 263.640 -216.564  c
+264.390 -216.564 264.960 -216.333 265.351 -215.869  c
+265.741 -215.406 265.937 -214.721 265.937 -213.814  c
+h
+275.700 -215.408 m
+275.575 -215.471 275.442 -215.520 275.302 -215.557  c
+275.161 -215.593 275.002 -215.611 274.825 -215.611  c
+274.221 -215.611 273.755 -215.413 273.427 -215.018  c
+273.099 -214.622 272.935 -214.049 272.935 -213.299  c
+272.935 -209.846 l
+271.856 -209.846 l
+271.856 -216.408 l
+272.935 -216.408 l
+272.935 -215.393 l
+273.164 -215.788 273.461 -216.083 273.825 -216.275  c
+274.190 -216.468 274.632 -216.564 275.153 -216.564  c
+275.226 -216.564 275.307 -216.559 275.396 -216.549  c
+275.484 -216.538 275.580 -216.523 275.685 -216.502  c
+275.700 -215.408 l
+h
+282.446 -213.393 m
+282.446 -212.877 l
+277.478 -212.877 l
+277.530 -212.127 277.756 -211.559 278.157 -211.174  c
+278.558 -210.788 279.113 -210.596 279.821 -210.596  c
+280.238 -210.596 280.642 -210.645 281.032 -210.744  c
+281.423 -210.843 281.811 -210.997 282.196 -211.205  c
+282.196 -210.174 l
+281.800 -210.018 281.399 -209.895 280.993 -209.807  c
+280.587 -209.718 280.175 -209.674 279.759 -209.674  c
+278.717 -209.674 277.889 -209.979 277.274 -210.588  c
+276.660 -211.197 276.353 -212.023 276.353 -213.064  c
+276.353 -214.137 276.644 -214.989 277.228 -215.619  c
+277.811 -216.249 278.592 -216.564 279.571 -216.564  c
+280.457 -216.564 281.157 -216.281 281.673 -215.713  c
+282.188 -215.145 282.446 -214.372 282.446 -213.393  c
+h
+281.368 -213.721 m
+281.358 -214.304 281.191 -214.773 280.868 -215.127  c
+280.545 -215.481 280.118 -215.658 279.587 -215.658  c
+278.983 -215.658 278.501 -215.486 278.142 -215.143  c
+277.782 -214.799 277.576 -214.320 277.524 -213.705  c
+281.368 -213.721 l
+h
+288.938 -216.158 m
+288.938 -215.143 l
+288.626 -215.320 288.319 -215.450 288.017 -215.533  c
+287.715 -215.617 287.407 -215.658 287.095 -215.658  c
+286.386 -215.658 285.840 -215.437 285.454 -214.994  c
+285.069 -214.551 284.876 -213.929 284.876 -213.127  c
+284.876 -212.325 285.069 -211.702 285.454 -211.260  c
+285.840 -210.817 286.386 -210.596 287.095 -210.596  c
+287.407 -210.596 287.715 -210.637 288.017 -210.721  c
+288.319 -210.804 288.626 -210.929 288.938 -211.096  c
+288.938 -210.096 l
+288.636 -209.960 288.324 -209.856 288.001 -209.783  c
+287.678 -209.710 287.334 -209.674 286.970 -209.674  c
+285.980 -209.674 285.194 -209.984 284.610 -210.604  c
+284.027 -211.223 283.735 -212.064 283.735 -213.127  c
+283.735 -214.189 284.030 -215.028 284.618 -215.643  c
+285.207 -216.257 286.017 -216.564 287.048 -216.564  c
+287.371 -216.564 287.691 -216.531 288.009 -216.463  c
+288.326 -216.395 288.636 -216.294 288.938 -216.158  c
+h
+290.036 -216.408 m
+291.177 -216.408 l
+293.224 -210.908 l
+295.286 -216.408 l
+296.427 -216.408 l
+293.958 -209.846 l
+292.489 -209.846 l
+290.036 -216.408 l
+h
+298.935 -218.596 m
+298.935 -215.346 l
+297.935 -215.346 l
+297.935 -218.596 l
+298.935 -218.596 l
+h
+302.233 -218.596 m
+302.233 -215.346 l
+301.233 -215.346 l
+301.233 -218.596 l
+302.233 -218.596 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+245.000 -229.000 m
+303.000 -229.000 l
+303.000 -199.000 l
+245.000 -199.000 l
+245.000 -229.000 l
+h
+S
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+112.000 6.00000 m
+142.000 6.00000 l
+142.000 36.0000 l
+112.000 36.0000 l
+112.000 6.00000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+115.033 17.3730 m
+115.033 24.1855 l
+116.471 24.1855 l
+117.679 24.1855 118.562 23.9121 119.119 23.3652  c
+119.676 22.8184 119.955 21.9512 119.955 20.7637  c
+119.955 19.5970 119.676 18.7402 119.119 18.1934  c
+118.562 17.6465 117.679 17.3730 116.471 17.3730  c
+115.033 17.3730 l
+h
+113.846 16.4043 m
+116.283 16.4043 l
+117.981 16.4043 119.226 16.7559 120.018 17.4590  c
+120.809 18.1621 121.205 19.2637 121.205 20.7637  c
+121.205 22.2741 120.807 23.3835 120.010 24.0918  c
+119.213 24.8001 117.971 25.1543 116.283 25.1543  c
+113.846 25.1543 l
+113.846 16.4043 l
+h
+126.023 21.8574 m
+125.159 21.8574 124.557 21.9564 124.219 22.1543  c
+123.880 22.3522 123.711 22.6908 123.711 23.1699  c
+123.711 23.5553 123.839 23.8600 124.094 24.0840  c
+124.349 24.3079 124.690 24.4199 125.117 24.4199  c
+125.721 24.4199 126.203 24.2090 126.562 23.7871  c
+126.922 23.3652 127.102 22.8001 127.102 22.0918  c
+127.102 21.8574 l
+126.023 21.8574 l
+h
+128.180 21.4043 m
+128.180 25.1543 l
+127.102 25.1543 l
+127.102 24.1543 l
+126.852 24.5501 126.544 24.8444 126.180 25.0371  c
+125.815 25.2298 125.367 25.3262 124.836 25.3262  c
+124.159 25.3262 123.622 25.1361 123.227 24.7559  c
+122.831 24.3757 122.633 23.8730 122.633 23.2480  c
+122.633 22.5085 122.880 21.9512 123.375 21.5762  c
+123.870 21.2012 124.607 21.0137 125.586 21.0137  c
+127.102 21.0137 l
+127.102 20.9043 l
+127.102 20.4043 126.938 20.0189 126.609 19.7480  c
+126.281 19.4772 125.826 19.3418 125.242 19.3418  c
+124.867 19.3418 124.500 19.3887 124.141 19.4824  c
+123.781 19.5762 123.440 19.7116 123.117 19.8887  c
+123.117 18.8887 l
+123.513 18.7324 123.896 18.6178 124.266 18.5449  c
+124.635 18.4720 124.997 18.4355 125.352 18.4355  c
+126.299 18.4355 127.008 18.6803 127.477 19.1699  c
+127.945 19.6595 128.180 20.4043 128.180 21.4043  c
+h
+131.471 16.7324 m
+131.471 18.5918 l
+133.689 18.5918 l
+133.689 19.4355 l
+131.471 19.4355 l
+131.471 22.9980 l
+131.471 23.5293 131.544 23.8704 131.689 24.0215  c
+131.835 24.1725 132.132 24.2480 132.580 24.2480  c
+133.689 24.2480 l
+133.689 25.1543 l
+132.580 25.1543 l
+131.747 25.1543 131.171 24.9980 130.854 24.6855  c
+130.536 24.3730 130.377 23.8105 130.377 22.9980  c
+130.377 19.4355 l
+129.596 19.4355 l
+129.596 18.5918 l
+130.377 18.5918 l
+130.377 16.7324 l
+131.471 16.7324 l
+h
+138.082 21.8574 m
+137.217 21.8574 136.616 21.9564 136.277 22.1543  c
+135.939 22.3522 135.770 22.6908 135.770 23.1699  c
+135.770 23.5553 135.897 23.8600 136.152 24.0840  c
+136.408 24.3079 136.749 24.4199 137.176 24.4199  c
+137.780 24.4199 138.262 24.2090 138.621 23.7871  c
+138.980 23.3652 139.160 22.8001 139.160 22.0918  c
+139.160 21.8574 l
+138.082 21.8574 l
+h
+140.238 21.4043 m
+140.238 25.1543 l
+139.160 25.1543 l
+139.160 24.1543 l
+138.910 24.5501 138.603 24.8444 138.238 25.0371  c
+137.874 25.2298 137.426 25.3262 136.895 25.3262  c
+136.217 25.3262 135.681 25.1361 135.285 24.7559  c
+134.889 24.3757 134.691 23.8730 134.691 23.2480  c
+134.691 22.5085 134.939 21.9512 135.434 21.5762  c
+135.928 21.2012 136.665 21.0137 137.645 21.0137  c
+139.160 21.0137 l
+139.160 20.9043 l
+139.160 20.4043 138.996 20.0189 138.668 19.7480  c
+138.340 19.4772 137.884 19.3418 137.301 19.3418  c
+136.926 19.3418 136.559 19.3887 136.199 19.4824  c
+135.840 19.5762 135.499 19.7116 135.176 19.8887  c
+135.176 18.8887 l
+135.572 18.7324 135.954 18.6178 136.324 18.5449  c
+136.694 18.4720 137.056 18.4355 137.410 18.4355  c
+138.358 18.4355 139.066 18.6803 139.535 19.1699  c
+140.004 19.6595 140.238 20.4043 140.238 21.4043  c
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+112.000 6.00000 m
+142.000 6.00000 l
+142.000 36.0000 l
+112.000 36.0000 l
+112.000 6.00000 l
+h
+S
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+375.000 -299.795 m
+332.000 -300.640 l
+312.498 -300.256 l
+S
+newpath
+304.500 -300.099 m
+316.596 -295.336 l
+313.498 -300.276 l
+316.399 -305.334 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+319.583 -309.413 m
+365.917 -309.413 l
+365.917 -291.444 l
+319.583 -291.444 l
+319.583 -309.413 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+322.755 -305.024 m
+323.942 -305.024 l
+323.942 -297.274 l
+328.208 -297.274 l
+328.208 -296.274 l
+322.755 -296.274 l
+322.755 -305.024 l
+h
+329.394 -302.837 m
+330.472 -302.837 l
+330.472 -296.274 l
+329.394 -296.274 l
+329.394 -302.837 l
+h
+329.394 -305.399 m
+330.472 -305.399 l
+330.472 -304.024 l
+329.394 -304.024 l
+329.394 -305.399 l
+h
+336.915 -302.649 m
+336.915 -301.618 l
+336.613 -301.774 336.298 -301.891 335.970 -301.969  c
+335.642 -302.048 335.300 -302.087 334.946 -302.087  c
+334.415 -302.087 334.014 -302.006 333.743 -301.844  c
+333.472 -301.683 333.337 -301.436 333.337 -301.102  c
+333.337 -300.852 333.433 -300.657 333.626 -300.516  c
+333.819 -300.376 334.207 -300.243 334.790 -300.118  c
+335.149 -300.024 l
+335.920 -299.868 336.467 -299.639 336.790 -299.337  c
+337.113 -299.034 337.274 -298.618 337.274 -298.087  c
+337.274 -297.472 337.032 -296.988 336.548 -296.633  c
+336.063 -296.279 335.399 -296.102 334.556 -296.102  c
+334.201 -296.102 333.834 -296.136 333.454 -296.204  c
+333.074 -296.271 332.675 -296.373 332.259 -296.508  c
+332.259 -297.633 l
+332.655 -297.425 333.045 -297.269 333.431 -297.165  c
+333.816 -297.061 334.201 -297.008 334.587 -297.008  c
+335.087 -297.008 335.475 -297.094 335.751 -297.266  c
+336.027 -297.438 336.165 -297.686 336.165 -298.008  c
+336.165 -298.300 336.066 -298.524 335.868 -298.680  c
+335.670 -298.837 335.238 -298.988 334.571 -299.133  c
+334.196 -299.212 l
+333.530 -299.357 333.048 -299.576 332.751 -299.868  c
+332.454 -300.159 332.306 -300.555 332.306 -301.055  c
+332.306 -301.680 332.524 -302.159 332.962 -302.493  c
+333.399 -302.826 334.019 -302.993 334.821 -302.993  c
+335.217 -302.993 335.592 -302.964 335.946 -302.907  c
+336.300 -302.850 336.623 -302.764 336.915 -302.649  c
+h
+340.058 -304.696 m
+340.058 -302.837 l
+342.276 -302.837 l
+342.276 -301.993 l
+340.058 -301.993 l
+340.058 -298.430 l
+340.058 -297.899 340.131 -297.558 340.276 -297.407  c
+340.422 -297.256 340.719 -297.180 341.167 -297.180  c
+342.276 -297.180 l
+342.276 -296.274 l
+341.167 -296.274 l
+340.334 -296.274 339.758 -296.430 339.440 -296.743  c
+339.123 -297.055 338.964 -297.618 338.964 -298.430  c
+338.964 -301.993 l
+338.183 -301.993 l
+338.183 -302.837 l
+338.964 -302.837 l
+338.964 -304.696 l
+340.058 -304.696 l
+h
+349.310 -299.821 m
+349.310 -299.305 l
+344.341 -299.305 l
+344.393 -298.555 344.619 -297.988 345.021 -297.602  c
+345.422 -297.217 345.976 -297.024 346.685 -297.024  c
+347.101 -297.024 347.505 -297.074 347.896 -297.173  c
+348.286 -297.271 348.674 -297.425 349.060 -297.633  c
+349.060 -296.602 l
+348.664 -296.446 348.263 -296.324 347.856 -296.235  c
+347.450 -296.146 347.039 -296.102 346.622 -296.102  c
+345.580 -296.102 344.752 -296.407 344.138 -297.016  c
+343.523 -297.626 343.216 -298.451 343.216 -299.493  c
+343.216 -300.566 343.507 -301.417 344.091 -302.048  c
+344.674 -302.678 345.455 -302.993 346.435 -302.993  c
+347.320 -302.993 348.021 -302.709 348.536 -302.141  c
+349.052 -301.574 349.310 -300.800 349.310 -299.821  c
+h
+348.231 -300.149 m
+348.221 -300.732 348.054 -301.201 347.731 -301.555  c
+347.409 -301.909 346.981 -302.087 346.450 -302.087  c
+345.846 -302.087 345.364 -301.915 345.005 -301.571  c
+344.646 -301.227 344.440 -300.748 344.388 -300.133  c
+348.231 -300.149 l
+h
+356.536 -300.243 m
+356.536 -296.274 l
+355.458 -296.274 l
+355.458 -300.196 l
+355.458 -300.821 355.336 -301.287 355.091 -301.594  c
+354.846 -301.902 354.484 -302.055 354.005 -302.055  c
+353.422 -302.055 352.961 -301.870 352.622 -301.501  c
+352.284 -301.131 352.114 -300.623 352.114 -299.977  c
+352.114 -296.274 l
+351.036 -296.274 l
+351.036 -302.837 l
+352.114 -302.837 l
+352.114 -301.821 l
+352.375 -302.217 352.679 -302.511 353.028 -302.704  c
+353.377 -302.896 353.781 -302.993 354.239 -302.993  c
+354.989 -302.993 355.560 -302.761 355.950 -302.298  c
+356.341 -301.834 356.536 -301.149 356.536 -300.243  c
+h
+359.845 -297.758 m
+361.032 -297.758 l
+361.032 -296.274 l
+359.845 -296.274 l
+359.845 -297.758 l
+h
+361.001 -298.618 m
+359.876 -298.618 l
+359.876 -299.524 l
+359.876 -299.920 359.931 -300.245 360.040 -300.501  c
+360.149 -300.756 360.381 -301.050 360.735 -301.383  c
+361.251 -301.899 l
+361.480 -302.107 361.644 -302.305 361.743 -302.493  c
+361.842 -302.680 361.892 -302.868 361.892 -303.055  c
+361.892 -303.399 361.764 -303.680 361.509 -303.899  c
+361.254 -304.118 360.912 -304.227 360.485 -304.227  c
+360.183 -304.227 359.858 -304.157 359.509 -304.016  c
+359.160 -303.876 358.793 -303.675 358.407 -303.415  c
+358.407 -304.524 l
+358.772 -304.743 359.144 -304.907 359.524 -305.016  c
+359.905 -305.126 360.293 -305.180 360.688 -305.180  c
+361.407 -305.180 361.985 -304.990 362.423 -304.610  c
+362.860 -304.230 363.079 -303.732 363.079 -303.118  c
+363.079 -302.816 363.009 -302.532 362.868 -302.266  c
+362.728 -302.001 362.480 -301.701 362.126 -301.368  c
+361.610 -300.852 l
+361.433 -300.675 361.306 -300.534 361.228 -300.430  c
+361.149 -300.326 361.095 -300.222 361.063 -300.118  c
+361.043 -300.045 361.027 -299.949 361.017 -299.829  c
+361.006 -299.709 361.001 -299.550 361.001 -299.352  c
+361.001 -298.618 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+243.467 -286.856 m
+227.125 -281.679 l
+203.688 -277.223 l
+180.250 -275.738 l
+156.812 -277.223 l
+133.375 -281.679 l
+127.589 -283.512 l
+S
+newpath
+119.963 -285.928 m
+129.892 -277.537 l
+128.542 -283.210 l
+132.912 -287.070 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+163.104 -284.723 m
+197.396 -284.723 l
+197.396 -266.754 l
+163.104 -266.754 l
+163.104 -284.723 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+171.525 -280.053 m
+171.525 -278.896 l
+171.077 -279.105 170.653 -279.264 170.252 -279.373  c
+169.851 -279.482 169.468 -279.537 169.104 -279.537  c
+168.458 -279.537 167.960 -279.412 167.611 -279.162  c
+167.262 -278.912 167.088 -278.553 167.088 -278.084  c
+167.088 -277.699 167.202 -277.407 167.432 -277.209  c
+167.661 -277.011 168.104 -276.855 168.760 -276.740  c
+169.463 -276.584 l
+170.348 -276.417 171.002 -276.123 171.424 -275.701  c
+171.846 -275.279 172.057 -274.714 172.057 -274.006  c
+172.057 -273.152 171.773 -272.506 171.205 -272.068  c
+170.637 -271.631 169.801 -271.412 168.697 -271.412  c
+168.291 -271.412 167.854 -271.459 167.385 -271.553  c
+166.916 -271.646 166.432 -271.787 165.932 -271.975  c
+165.932 -273.193 l
+166.411 -272.922 166.882 -272.719 167.346 -272.584  c
+167.809 -272.449 168.260 -272.381 168.697 -272.381  c
+169.374 -272.381 169.898 -272.514 170.268 -272.779  c
+170.637 -273.045 170.822 -273.422 170.822 -273.912  c
+170.822 -274.339 170.689 -274.675 170.424 -274.920  c
+170.158 -275.165 169.723 -275.344 169.119 -275.459  c
+168.400 -275.600 l
+167.515 -275.777 166.877 -276.053 166.486 -276.428  c
+166.096 -276.803 165.900 -277.324 165.900 -277.990  c
+165.900 -278.771 166.171 -279.383 166.713 -279.826  c
+167.255 -280.269 168.005 -280.490 168.963 -280.490  c
+169.380 -280.490 169.799 -280.454 170.221 -280.381  c
+170.643 -280.308 171.077 -280.199 171.525 -280.053  c
+h
+172.689 -280.334 m
+173.971 -280.334 l
+176.393 -276.740 l
+178.799 -280.334 l
+180.080 -280.334 l
+176.986 -275.756 l
+176.986 -271.584 l
+175.799 -271.584 l
+175.799 -275.756 l
+172.689 -280.334 l
+h
+181.223 -280.334 m
+182.816 -280.334 l
+186.707 -273.021 l
+186.707 -280.334 l
+187.848 -280.334 l
+187.848 -271.584 l
+186.254 -271.584 l
+182.379 -278.896 l
+182.379 -271.584 l
+181.223 -271.584 l
+181.223 -280.334 l
+h
+191.324 -273.068 m
+192.512 -273.068 l
+192.512 -271.584 l
+191.324 -271.584 l
+191.324 -273.068 l
+h
+192.480 -273.928 m
+191.355 -273.928 l
+191.355 -274.834 l
+191.355 -275.230 191.410 -275.555 191.520 -275.811  c
+191.629 -276.066 191.861 -276.360 192.215 -276.693  c
+192.730 -277.209 l
+192.960 -277.417 193.124 -277.615 193.223 -277.803  c
+193.322 -277.990 193.371 -278.178 193.371 -278.365  c
+193.371 -278.709 193.243 -278.990 192.988 -279.209  c
+192.733 -279.428 192.392 -279.537 191.965 -279.537  c
+191.663 -279.537 191.337 -279.467 190.988 -279.326  c
+190.639 -279.186 190.272 -278.985 189.887 -278.725  c
+189.887 -279.834 l
+190.251 -280.053 190.624 -280.217 191.004 -280.326  c
+191.384 -280.436 191.772 -280.490 192.168 -280.490  c
+192.887 -280.490 193.465 -280.300 193.902 -279.920  c
+194.340 -279.540 194.559 -279.042 194.559 -278.428  c
+194.559 -278.126 194.488 -277.842 194.348 -277.576  c
+194.207 -277.311 193.960 -277.011 193.605 -276.678  c
+193.090 -276.162 l
+192.913 -275.985 192.785 -275.844 192.707 -275.740  c
+192.629 -275.636 192.574 -275.532 192.543 -275.428  c
+192.522 -275.355 192.507 -275.258 192.496 -275.139  c
+192.486 -275.019 192.480 -274.860 192.480 -274.662  c
+192.480 -273.928 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+119.963 -311.571 m
+133.375 -315.350 l
+156.812 -319.313 l
+180.250 -320.634 l
+203.688 -319.313 l
+227.125 -315.350 l
+235.767 -312.915 l
+S
+newpath
+243.467 -310.745 m
+233.273 -318.813 l
+234.805 -313.186 l
+230.561 -309.187 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+164.202 -329.618 m
+196.298 -329.618 l
+196.298 -311.649 l
+164.202 -311.649 l
+164.202 -329.618 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+171.530 -320.589 m
+171.780 -320.495 172.025 -320.308 172.265 -320.026  c
+172.504 -319.745 172.749 -319.360 172.999 -318.870  c
+174.202 -316.479 l
+172.921 -316.479 l
+171.812 -318.729 l
+171.520 -319.313 171.239 -319.701 170.968 -319.893  c
+170.697 -320.086 170.327 -320.183 169.858 -320.183  c
+168.562 -320.183 l
+168.562 -316.479 l
+167.374 -316.479 l
+167.374 -325.229 l
+170.046 -325.229 l
+171.046 -325.229 171.793 -325.021 172.288 -324.604  c
+172.783 -324.188 173.030 -323.558 173.030 -322.714  c
+173.030 -322.162 172.903 -321.703 172.647 -321.339  c
+172.392 -320.974 172.020 -320.724 171.530 -320.589  c
+h
+168.562 -324.261 m
+168.562 -321.151 l
+170.046 -321.151 l
+170.619 -321.151 171.051 -321.284 171.343 -321.550  c
+171.634 -321.815 171.780 -322.203 171.780 -322.714  c
+171.780 -323.224 171.634 -323.610 171.343 -323.870  c
+171.051 -324.130 170.619 -324.261 170.046 -324.261  c
+168.562 -324.261 l
+h
+180.962 -324.948 m
+180.962 -323.792 l
+180.514 -324.000 180.090 -324.159 179.688 -324.268  c
+179.287 -324.378 178.905 -324.433 178.540 -324.433  c
+177.894 -324.433 177.397 -324.308 177.048 -324.058  c
+176.699 -323.808 176.524 -323.448 176.524 -322.979  c
+176.524 -322.594 176.639 -322.302 176.868 -322.104  c
+177.097 -321.906 177.540 -321.750 178.196 -321.636  c
+178.899 -321.479 l
+179.785 -321.313 180.438 -321.018 180.860 -320.597  c
+181.282 -320.175 181.493 -319.610 181.493 -318.901  c
+181.493 -318.047 181.209 -317.401 180.642 -316.964  c
+180.074 -316.526 179.238 -316.308 178.134 -316.308  c
+177.728 -316.308 177.290 -316.354 176.821 -316.448  c
+176.353 -316.542 175.868 -316.683 175.368 -316.870  c
+175.368 -318.089 l
+175.847 -317.818 176.319 -317.615 176.782 -317.479  c
+177.246 -317.344 177.696 -317.276 178.134 -317.276  c
+178.811 -317.276 179.334 -317.409 179.704 -317.675  c
+180.074 -317.940 180.259 -318.318 180.259 -318.808  c
+180.259 -319.235 180.126 -319.571 179.860 -319.815  c
+179.595 -320.060 179.160 -320.240 178.556 -320.354  c
+177.837 -320.495 l
+176.951 -320.672 176.313 -320.948 175.923 -321.323  c
+175.532 -321.698 175.337 -322.219 175.337 -322.886  c
+175.337 -323.667 175.608 -324.279 176.149 -324.722  c
+176.691 -325.164 177.441 -325.386 178.399 -325.386  c
+178.816 -325.386 179.235 -325.349 179.657 -325.276  c
+180.079 -325.203 180.514 -325.094 180.962 -324.948  c
+h
+182.126 -325.229 m
+189.517 -325.229 l
+189.517 -324.229 l
+186.423 -324.229 l
+186.423 -316.479 l
+185.235 -316.479 l
+185.235 -324.229 l
+182.126 -324.229 l
+182.126 -325.229 l
+h
+191.300 -317.964 m
+192.487 -317.964 l
+192.487 -316.479 l
+191.300 -316.479 l
+191.300 -317.964 l
+h
+191.300 -325.229 m
+192.487 -325.229 l
+192.487 -321.386 l
+192.378 -319.292 l
+191.425 -319.292 l
+191.300 -321.386 l
+191.300 -325.229 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+96.6920 -314.500 m
+98.2188 -316.747 l
+109.938 -331.694 l
+121.656 -344.342 l
+133.375 -354.690 l
+145.094 -362.739 l
+156.812 -368.488 l
+168.531 -371.937 l
+180.250 -373.087 l
+191.969 -371.937 l
+203.688 -368.488 l
+215.406 -362.739 l
+227.125 -354.690 l
+238.844 -344.342 l
+250.562 -331.694 l
+259.019 -320.908 l
+259.075 -320.825 l
+S
+newpath
+263.868 -314.420 m
+260.682 -327.024 l
+258.476 -321.626 l
+252.675 -321.033 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+148.663 -382.072 m
+211.837 -382.072 l
+211.837 -364.103 l
+148.663 -364.103 l
+148.663 -382.072 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+150.632 -377.683 m
+158.022 -377.683 l
+158.022 -376.683 l
+154.929 -376.683 l
+154.929 -368.933 l
+153.741 -368.933 l
+153.741 -376.683 l
+150.632 -376.683 l
+150.632 -377.683 l
+h
+159.165 -377.683 m
+160.353 -377.683 l
+160.353 -368.933 l
+159.165 -368.933 l
+159.165 -377.683 l
+h
+162.704 -377.683 m
+164.470 -377.683 l
+166.704 -371.730 l
+168.954 -377.683 l
+170.720 -377.683 l
+170.720 -368.933 l
+169.563 -368.933 l
+169.563 -376.620 l
+167.298 -370.620 l
+166.110 -370.620 l
+163.860 -376.620 l
+163.860 -368.933 l
+162.704 -368.933 l
+162.704 -377.683 l
+h
+173.058 -377.683 m
+178.589 -377.683 l
+178.589 -376.683 l
+174.245 -376.683 l
+174.245 -374.089 l
+178.417 -374.089 l
+178.417 -373.105 l
+174.245 -373.105 l
+174.245 -369.933 l
+178.698 -369.933 l
+178.698 -368.933 l
+173.058 -368.933 l
+173.058 -377.683 l
+h
+184.202 -376.886 m
+183.338 -376.886 182.653 -376.566 182.147 -375.925  c
+181.642 -375.284 181.390 -374.407 181.390 -373.292  c
+181.390 -372.199 181.642 -371.331 182.147 -370.691  c
+182.653 -370.050 183.338 -369.730 184.202 -369.730  c
+185.056 -369.730 185.736 -370.050 186.241 -370.691  c
+186.746 -371.331 186.999 -372.199 186.999 -373.292  c
+186.999 -374.407 186.746 -375.284 186.241 -375.925  c
+185.736 -376.566 185.056 -376.886 184.202 -376.886  c
+h
+184.202 -377.839 m
+185.421 -377.839 186.397 -377.428 187.132 -376.605  c
+187.866 -375.782 188.233 -374.678 188.233 -373.292  c
+188.233 -371.917 187.866 -370.818 187.132 -369.995  c
+186.397 -369.172 185.421 -368.761 184.202 -368.761  c
+182.973 -368.761 181.989 -369.172 181.249 -369.995  c
+180.509 -370.818 180.140 -371.917 180.140 -373.292  c
+180.140 -374.678 180.509 -375.782 181.249 -376.605  c
+181.989 -377.428 182.973 -377.839 184.202 -377.839  c
+h
+189.960 -377.683 m
+191.147 -377.683 l
+191.147 -372.370 l
+191.147 -371.433 191.317 -370.758 191.655 -370.347  c
+191.994 -369.935 192.543 -369.730 193.304 -369.730  c
+194.064 -369.730 194.614 -369.935 194.952 -370.347  c
+195.291 -370.758 195.460 -371.433 195.460 -372.370  c
+195.460 -377.683 l
+196.647 -377.683 l
+196.647 -372.214 l
+196.647 -371.079 196.366 -370.219 195.804 -369.636  c
+195.241 -369.053 194.408 -368.761 193.304 -368.761  c
+192.200 -368.761 191.366 -369.053 190.804 -369.636  c
+190.241 -370.219 189.960 -371.079 189.960 -372.214  c
+189.960 -377.683 l
+h
+197.665 -377.683 m
+205.056 -377.683 l
+205.056 -376.683 l
+201.962 -376.683 l
+201.962 -368.933 l
+200.774 -368.933 l
+200.774 -376.683 l
+197.665 -376.683 l
+197.665 -377.683 l
+h
+206.839 -370.417 m
+208.026 -370.417 l
+208.026 -368.933 l
+206.839 -368.933 l
+206.839 -370.417 l
+h
+206.839 -377.683 m
+208.026 -377.683 l
+208.026 -373.839 l
+207.917 -371.745 l
+206.964 -371.745 l
+206.839 -373.839 l
+206.839 -377.683 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+96.6551 -284.500 m
+104.780 -272.498 l
+124.766 -247.604 l
+146.458 -224.818 l
+169.855 -204.139 l
+194.958 -185.568 l
+221.766 -169.104 l
+237.649 -161.108 l
+S
+newpath
+244.795 -157.510 m
+236.325 -167.372 l
+236.756 -161.557 l
+231.828 -158.441 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+141.259 -213.123 m
+198.451 -213.123 l
+198.451 -195.155 l
+141.259 -195.155 l
+141.259 -213.123 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+149.681 -208.454 m
+149.681 -207.297 l
+149.233 -207.506 148.809 -207.664 148.408 -207.774  c
+148.007 -207.883 147.624 -207.938 147.259 -207.938  c
+146.613 -207.938 146.116 -207.813 145.767 -207.563  c
+145.418 -207.313 145.243 -206.954 145.243 -206.485  c
+145.243 -206.099 145.358 -205.808 145.587 -205.610  c
+145.816 -205.412 146.259 -205.256 146.915 -205.141  c
+147.618 -204.985 l
+148.504 -204.818 149.158 -204.524 149.579 -204.102  c
+150.001 -203.680 150.212 -203.115 150.212 -202.407  c
+150.212 -201.552 149.928 -200.907 149.361 -200.469  c
+148.793 -200.032 147.957 -199.813 146.853 -199.813  c
+146.447 -199.813 146.009 -199.860 145.540 -199.954  c
+145.072 -200.047 144.587 -200.188 144.087 -200.375  c
+144.087 -201.594 l
+144.566 -201.323 145.038 -201.120 145.501 -200.985  c
+145.965 -200.849 146.415 -200.782 146.853 -200.782  c
+147.530 -200.782 148.053 -200.914 148.423 -201.180  c
+148.793 -201.446 148.978 -201.823 148.978 -202.313  c
+148.978 -202.740 148.845 -203.076 148.579 -203.321  c
+148.314 -203.566 147.879 -203.745 147.275 -203.860  c
+146.556 -204.000 l
+145.671 -204.177 145.033 -204.454 144.642 -204.829  c
+144.251 -205.204 144.056 -205.724 144.056 -206.391  c
+144.056 -207.172 144.327 -207.784 144.868 -208.227  c
+145.410 -208.670 146.160 -208.891 147.118 -208.891  c
+147.535 -208.891 147.954 -208.855 148.376 -208.782  c
+148.798 -208.709 149.233 -208.599 149.681 -208.454  c
+h
+150.845 -208.735 m
+152.126 -208.735 l
+154.548 -205.141 l
+156.954 -208.735 l
+158.236 -208.735 l
+155.142 -204.157 l
+155.142 -199.985 l
+153.954 -199.985 l
+153.954 -204.157 l
+150.845 -208.735 l
+h
+159.378 -208.735 m
+160.972 -208.735 l
+164.863 -201.422 l
+164.863 -208.735 l
+166.003 -208.735 l
+166.003 -199.985 l
+164.410 -199.985 l
+160.535 -207.297 l
+160.535 -199.985 l
+159.378 -199.985 l
+159.378 -208.735 l
+h
+171.292 -207.563 m
+169.683 -203.219 l
+172.902 -203.219 l
+171.292 -207.563 l
+h
+170.620 -208.735 m
+171.964 -208.735 l
+175.292 -199.985 l
+174.058 -199.985 l
+173.261 -202.235 l
+169.324 -202.235 l
+168.527 -199.985 l
+167.277 -199.985 l
+170.620 -208.735 l
+h
+183.126 -208.063 m
+183.126 -206.813 l
+182.720 -207.188 182.293 -207.467 181.845 -207.649  c
+181.397 -207.831 180.918 -207.922 180.408 -207.922  c
+179.408 -207.922 178.642 -207.615 178.111 -207.000  c
+177.579 -206.386 177.314 -205.500 177.314 -204.344  c
+177.314 -203.198 177.579 -202.318 178.111 -201.704  c
+178.642 -201.089 179.408 -200.782 180.408 -200.782  c
+180.918 -200.782 181.397 -200.875 181.845 -201.063  c
+182.293 -201.250 182.720 -201.526 183.126 -201.891  c
+183.126 -200.657 l
+182.710 -200.375 182.270 -200.164 181.806 -200.024  c
+181.342 -199.883 180.855 -199.813 180.345 -199.813  c
+179.012 -199.813 177.965 -200.219 177.204 -201.032  c
+176.444 -201.844 176.064 -202.948 176.064 -204.344  c
+176.064 -205.750 176.444 -206.860 177.204 -207.672  c
+177.965 -208.485 179.012 -208.891 180.345 -208.891  c
+180.866 -208.891 181.358 -208.821 181.822 -208.680  c
+182.285 -208.539 182.720 -208.334 183.126 -208.063  c
+h
+184.943 -208.735 m
+186.130 -208.735 l
+186.130 -205.032 l
+190.052 -208.735 l
+191.583 -208.735 l
+187.240 -204.657 l
+191.896 -199.985 l
+190.333 -199.985 l
+186.130 -204.204 l
+186.130 -199.985 l
+184.943 -199.985 l
+184.943 -208.735 l
+h
+193.452 -201.469 m
+194.640 -201.469 l
+194.640 -199.985 l
+193.452 -199.985 l
+193.452 -201.469 l
+h
+193.452 -208.735 m
+194.640 -208.735 l
+194.640 -204.891 l
+194.531 -202.797 l
+193.577 -202.797 l
+193.452 -204.891 l
+193.452 -208.735 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+281.110 -127.500 m
+283.064 -79.4934 l
+S
+newpath
+283.390 -71.5000 m
+287.897 -83.6934 l
+283.024 -80.4926 l
+277.906 -83.2868 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+264.552 -115.492 m
+299.378 -115.492 l
+299.378 -97.5234 l
+264.552 -97.5234 l
+264.552 -115.492 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+270.661 -109.932 m
+269.052 -105.588 l
+272.270 -105.588 l
+270.661 -109.932 l
+h
+269.989 -111.104 m
+271.333 -111.104 l
+274.661 -102.354 l
+273.427 -102.354 l
+272.630 -104.604 l
+268.692 -104.604 l
+267.895 -102.354 l
+266.645 -102.354 l
+269.989 -111.104 l
+h
+282.495 -110.432 m
+282.495 -109.182 l
+282.089 -109.557 281.662 -109.835 281.214 -110.018  c
+280.766 -110.200 280.287 -110.291 279.776 -110.291  c
+278.776 -110.291 278.011 -109.984 277.479 -109.369  c
+276.948 -108.755 276.683 -107.869 276.683 -106.713  c
+276.683 -105.567 276.948 -104.687 277.479 -104.072  c
+278.011 -103.458 278.776 -103.150 279.776 -103.150  c
+280.287 -103.150 280.766 -103.244 281.214 -103.432  c
+281.662 -103.619 282.089 -103.895 282.495 -104.260  c
+282.495 -103.025 l
+282.078 -102.744 281.638 -102.533 281.175 -102.393  c
+280.711 -102.252 280.224 -102.182 279.714 -102.182  c
+278.381 -102.182 277.334 -102.588 276.573 -103.400  c
+275.813 -104.213 275.433 -105.317 275.433 -106.713  c
+275.433 -108.119 275.813 -109.229 276.573 -110.041  c
+277.334 -110.854 278.381 -111.260 279.714 -111.260  c
+280.235 -111.260 280.727 -111.189 281.190 -111.049  c
+281.654 -110.908 282.089 -110.702 282.495 -110.432  c
+h
+284.311 -111.104 m
+285.499 -111.104 l
+285.499 -107.400 l
+289.421 -111.104 l
+290.952 -111.104 l
+286.608 -107.025 l
+291.265 -102.354 l
+289.702 -102.354 l
+285.499 -106.572 l
+285.499 -102.354 l
+284.311 -102.354 l
+284.311 -111.104 l
+h
+293.306 -103.838 m
+294.493 -103.838 l
+294.493 -102.354 l
+293.306 -102.354 l
+293.306 -103.838 l
+h
+294.462 -104.697 m
+293.337 -104.697 l
+293.337 -105.604 l
+293.337 -105.999 293.392 -106.325 293.501 -106.580  c
+293.610 -106.835 293.842 -107.130 294.196 -107.463  c
+294.712 -107.979 l
+294.941 -108.187 295.105 -108.385 295.204 -108.572  c
+295.303 -108.760 295.353 -108.947 295.353 -109.135  c
+295.353 -109.479 295.225 -109.760 294.970 -109.979  c
+294.714 -110.197 294.373 -110.307 293.946 -110.307  c
+293.644 -110.307 293.319 -110.236 292.970 -110.096  c
+292.621 -109.955 292.254 -109.755 291.868 -109.494  c
+291.868 -110.604 l
+292.233 -110.822 292.605 -110.986 292.985 -111.096  c
+293.366 -111.205 293.754 -111.260 294.149 -111.260  c
+294.868 -111.260 295.446 -111.070 295.884 -110.689  c
+296.321 -110.309 296.540 -109.812 296.540 -109.197  c
+296.540 -108.895 296.470 -108.611 296.329 -108.346  c
+296.188 -108.080 295.941 -107.781 295.587 -107.447  c
+295.071 -106.932 l
+294.894 -106.755 294.767 -106.614 294.688 -106.510  c
+294.610 -106.406 294.556 -106.301 294.524 -106.197  c
+294.504 -106.124 294.488 -106.028 294.478 -105.908  c
+294.467 -105.788 294.462 -105.630 294.462 -105.432  c
+294.462 -104.697 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+285.266 125.000 m
+287.392 150.179 l
+287.438 167.500 l
+S
+newpath
+287.460 175.500 m
+292.427 163.487 l
+287.435 166.500 l
+282.427 163.513 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+270.758 141.194 m
+304.025 141.194 l
+304.025 159.163 l
+270.758 159.163 l
+270.758 141.194 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+276.867 146.755 m
+275.258 151.099 l
+278.477 151.099 l
+276.867 146.755 l
+h
+276.195 145.583 m
+277.539 145.583 l
+280.867 154.333 l
+279.633 154.333 l
+278.836 152.083 l
+274.898 152.083 l
+274.102 154.333 l
+272.852 154.333 l
+276.195 145.583 l
+h
+288.701 146.255 m
+288.701 147.505 l
+288.295 147.130 287.868 146.851 287.420 146.669  c
+286.972 146.487 286.493 146.395 285.982 146.395  c
+284.982 146.395 284.217 146.703 283.685 147.317  c
+283.154 147.932 282.889 148.817 282.889 149.974  c
+282.889 151.119 283.154 152.000 283.685 152.614  c
+284.217 153.229 284.982 153.536 285.982 153.536  c
+286.493 153.536 286.972 153.442 287.420 153.255  c
+287.868 153.067 288.295 152.791 288.701 152.427  c
+288.701 153.661 l
+288.284 153.942 287.844 154.153 287.381 154.294  c
+286.917 154.434 286.430 154.505 285.920 154.505  c
+284.587 154.505 283.540 154.099 282.779 153.286  c
+282.019 152.474 281.639 151.369 281.639 149.974  c
+281.639 148.567 282.019 147.458 282.779 146.645  c
+283.540 145.833 284.587 145.427 285.920 145.427  c
+286.441 145.427 286.933 145.497 287.396 145.638  c
+287.860 145.778 288.295 145.984 288.701 146.255  c
+h
+290.518 145.583 m
+291.705 145.583 l
+291.705 149.286 l
+295.627 145.583 l
+297.158 145.583 l
+292.814 149.661 l
+297.471 154.333 l
+295.908 154.333 l
+291.705 150.114 l
+291.705 154.333 l
+290.518 154.333 l
+290.518 145.583 l
+h
+299.027 152.849 m
+300.215 152.849 l
+300.215 154.333 l
+299.027 154.333 l
+299.027 152.849 l
+h
+299.027 145.583 m
+300.215 145.583 l
+300.215 149.427 l
+300.105 151.520 l
+299.152 151.520 l
+299.027 149.427 l
+299.027 145.583 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+297.838 175.500 m
+309.033 159.259 l
+327.582 128.099 l
+343.147 97.0221 l
+355.729 66.0272 l
+365.328 35.1145 l
+371.943 4.28404 l
+375.574 -26.4643 l
+376.222 -57.1304 l
+373.887 -87.7143 l
+368.568 -118.216 l
+360.265 -148.635 l
+348.979 -178.973 l
+334.710 -209.228 l
+317.457 -239.401 l
+297.220 -269.491 l
+290.503 -278.173 l
+S
+newpath
+285.607 -284.500 m
+288.996 -271.950 l
+291.114 -277.382 l
+296.905 -278.069 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+353.055 -66.1147 m
+399.389 -66.1147 l
+399.389 -48.1460 l
+353.055 -48.1460 l
+353.055 -66.1147 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+356.227 -61.7261 m
+357.415 -61.7261 l
+357.415 -53.9761 l
+361.680 -53.9761 l
+361.680 -52.9761 l
+356.227 -52.9761 l
+356.227 -61.7261 l
+h
+362.866 -59.5386 m
+363.944 -59.5386 l
+363.944 -52.9761 l
+362.866 -52.9761 l
+362.866 -59.5386 l
+h
+362.866 -62.1011 m
+363.944 -62.1011 l
+363.944 -60.7261 l
+362.866 -60.7261 l
+362.866 -62.1011 l
+h
+370.387 -59.3511 m
+370.387 -58.3198 l
+370.085 -58.4761 369.770 -58.5932 369.442 -58.6714  c
+369.114 -58.7495 368.773 -58.7886 368.419 -58.7886  c
+367.887 -58.7886 367.486 -58.7078 367.215 -58.5464  c
+366.945 -58.3849 366.809 -58.1375 366.809 -57.8042  c
+366.809 -57.5542 366.905 -57.3589 367.098 -57.2182  c
+367.291 -57.0776 367.679 -56.9448 368.262 -56.8198  c
+368.622 -56.7261 l
+369.392 -56.5698 369.939 -56.3406 370.262 -56.0386  c
+370.585 -55.7365 370.747 -55.3198 370.747 -54.7886  c
+370.747 -54.1740 370.504 -53.6896 370.020 -53.3354  c
+369.536 -52.9813 368.872 -52.8042 368.028 -52.8042  c
+367.674 -52.8042 367.307 -52.8380 366.926 -52.9057  c
+366.546 -52.9735 366.148 -53.0750 365.731 -53.2104  c
+365.731 -54.3354 l
+366.127 -54.1271 366.517 -53.9709 366.903 -53.8667  c
+367.288 -53.7625 367.674 -53.7104 368.059 -53.7104  c
+368.559 -53.7104 368.947 -53.7964 369.223 -53.9682  c
+369.499 -54.1401 369.637 -54.3875 369.637 -54.7104  c
+369.637 -55.0021 369.538 -55.2261 369.340 -55.3823  c
+369.142 -55.5386 368.710 -55.6896 368.044 -55.8354  c
+367.669 -55.9136 l
+367.002 -56.0594 366.520 -56.2781 366.223 -56.5698  c
+365.926 -56.8615 365.778 -57.2573 365.778 -57.7573  c
+365.778 -58.3823 365.997 -58.8615 366.434 -59.1948  c
+366.872 -59.5281 367.491 -59.6948 368.294 -59.6948  c
+368.689 -59.6948 369.064 -59.6662 369.419 -59.6089  c
+369.773 -59.5516 370.096 -59.4656 370.387 -59.3511  c
+h
+373.530 -61.3979 m
+373.530 -59.5386 l
+375.749 -59.5386 l
+375.749 -58.6948 l
+373.530 -58.6948 l
+373.530 -55.1323 l
+373.530 -54.6011 373.603 -54.2599 373.749 -54.1089  c
+373.894 -53.9578 374.191 -53.8823 374.639 -53.8823  c
+375.749 -53.8823 l
+375.749 -52.9761 l
+374.639 -52.9761 l
+373.806 -52.9761 373.230 -53.1323 372.913 -53.4448  c
+372.595 -53.7573 372.436 -54.3198 372.436 -55.1323  c
+372.436 -58.6948 l
+371.655 -58.6948 l
+371.655 -59.5386 l
+372.436 -59.5386 l
+372.436 -61.3979 l
+373.530 -61.3979 l
+h
+382.782 -56.5229 m
+382.782 -56.0073 l
+377.813 -56.0073 l
+377.865 -55.2573 378.092 -54.6896 378.493 -54.3042  c
+378.894 -53.9188 379.448 -53.7261 380.157 -53.7261  c
+380.573 -53.7261 380.977 -53.7755 381.368 -53.8745  c
+381.758 -53.9735 382.146 -54.1271 382.532 -54.3354  c
+382.532 -53.3042 l
+382.136 -53.1479 381.735 -53.0255 381.329 -52.9370  c
+380.922 -52.8485 380.511 -52.8042 380.094 -52.8042  c
+379.053 -52.8042 378.225 -53.1089 377.610 -53.7182  c
+376.995 -54.3276 376.688 -55.1531 376.688 -56.1948  c
+376.688 -57.2677 376.980 -58.1193 377.563 -58.7495  c
+378.146 -59.3797 378.928 -59.6948 379.907 -59.6948  c
+380.792 -59.6948 381.493 -59.4110 382.008 -58.8432  c
+382.524 -58.2755 382.782 -57.5021 382.782 -56.5229  c
+h
+381.704 -56.8511 m
+381.693 -57.4344 381.527 -57.9031 381.204 -58.2573  c
+380.881 -58.6115 380.454 -58.7886 379.922 -58.7886  c
+379.318 -58.7886 378.836 -58.6167 378.477 -58.2729  c
+378.118 -57.9292 377.912 -57.4500 377.860 -56.8354  c
+381.704 -56.8511 l
+h
+390.008 -56.9448 m
+390.008 -52.9761 l
+388.930 -52.9761 l
+388.930 -56.8979 l
+388.930 -57.5229 388.808 -57.9891 388.563 -58.2964  c
+388.318 -58.6037 387.956 -58.7573 387.477 -58.7573  c
+386.894 -58.7573 386.433 -58.5724 386.094 -58.2026  c
+385.756 -57.8328 385.586 -57.3250 385.586 -56.6792  c
+385.586 -52.9761 l
+384.508 -52.9761 l
+384.508 -59.5386 l
+385.586 -59.5386 l
+385.586 -58.5229 l
+385.847 -58.9188 386.152 -59.2130 386.501 -59.4057  c
+386.850 -59.5985 387.253 -59.6948 387.711 -59.6948  c
+388.461 -59.6948 389.032 -59.4630 389.422 -58.9995  c
+389.813 -58.5360 390.008 -57.8511 390.008 -56.9448  c
+h
+393.317 -54.4604 m
+394.504 -54.4604 l
+394.504 -52.9761 l
+393.317 -52.9761 l
+393.317 -54.4604 l
+h
+394.473 -55.3198 m
+393.348 -55.3198 l
+393.348 -56.2261 l
+393.348 -56.6219 393.403 -56.9474 393.512 -57.2026  c
+393.622 -57.4578 393.853 -57.7521 394.208 -58.0854  c
+394.723 -58.6011 l
+394.952 -58.8094 395.116 -59.0073 395.215 -59.1948  c
+395.314 -59.3823 395.364 -59.5698 395.364 -59.7573  c
+395.364 -60.1011 395.236 -60.3823 394.981 -60.6011  c
+394.726 -60.8198 394.385 -60.9292 393.958 -60.9292  c
+393.655 -60.9292 393.330 -60.8589 392.981 -60.7182  c
+392.632 -60.5776 392.265 -60.3771 391.879 -60.1167  c
+391.879 -61.2261 l
+392.244 -61.4448 392.616 -61.6089 392.997 -61.7182  c
+393.377 -61.8276 393.765 -61.8823 394.161 -61.8823  c
+394.879 -61.8823 395.458 -61.6922 395.895 -61.3120  c
+396.333 -60.9318 396.551 -60.4344 396.551 -59.8198  c
+396.551 -59.5177 396.481 -59.2339 396.340 -58.9682  c
+396.200 -58.7026 395.952 -58.4031 395.598 -58.0698  c
+395.083 -57.5542 l
+394.905 -57.3771 394.778 -57.2365 394.700 -57.1323  c
+394.622 -57.0281 394.567 -56.9240 394.536 -56.8198  c
+394.515 -56.7469 394.499 -56.6505 394.489 -56.5307  c
+394.478 -56.4110 394.473 -56.2521 394.473 -56.0542  c
+394.473 -55.3198 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+281.408 -157.500 m
+281.597 -160.622 l
+280.879 -178.580 l
+279.094 -191.123 l
+279.070 -191.220 l
+S
+newpath
+277.682 -199.098 m
+274.840 -186.413 l
+279.244 -190.235 l
+284.688 -188.148 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+264.052 -187.564 m
+297.706 -187.564 l
+297.706 -169.596 l
+264.052 -169.596 l
+264.052 -187.564 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+271.380 -178.535 m
+271.630 -178.441 271.875 -178.254 272.115 -177.973  c
+272.354 -177.691 272.599 -177.306 272.849 -176.816  c
+274.052 -174.426 l
+272.771 -174.426 l
+271.661 -176.676 l
+271.370 -177.259 271.089 -177.647 270.818 -177.840  c
+270.547 -178.032 270.177 -178.129 269.708 -178.129  c
+268.411 -178.129 l
+268.411 -174.426 l
+267.224 -174.426 l
+267.224 -183.176 l
+269.896 -183.176 l
+270.896 -183.176 271.643 -182.967 272.138 -182.551  c
+272.633 -182.134 272.880 -181.504 272.880 -180.660  c
+272.880 -180.108 272.753 -179.650 272.497 -179.285  c
+272.242 -178.920 271.870 -178.670 271.380 -178.535  c
+h
+268.411 -182.207 m
+268.411 -179.098 l
+269.896 -179.098 l
+270.469 -179.098 270.901 -179.230 271.193 -179.496  c
+271.484 -179.762 271.630 -180.150 271.630 -180.660  c
+271.630 -181.170 271.484 -181.556 271.193 -181.816  c
+270.901 -182.077 270.469 -182.207 269.896 -182.207  c
+268.411 -182.207 l
+h
+280.812 -182.894 m
+280.812 -181.738 l
+280.364 -181.946 279.939 -182.105 279.538 -182.215  c
+279.137 -182.324 278.755 -182.379 278.390 -182.379  c
+277.744 -182.379 277.247 -182.254 276.898 -182.004  c
+276.549 -181.754 276.374 -181.394 276.374 -180.926  c
+276.374 -180.540 276.489 -180.249 276.718 -180.051  c
+276.947 -179.853 277.390 -179.696 278.046 -179.582  c
+278.749 -179.426 l
+279.635 -179.259 280.288 -178.965 280.710 -178.543  c
+281.132 -178.121 281.343 -177.556 281.343 -176.848  c
+281.343 -175.993 281.059 -175.348 280.492 -174.910  c
+279.924 -174.473 279.088 -174.254 277.984 -174.254  c
+277.577 -174.254 277.140 -174.301 276.671 -174.394  c
+276.202 -174.488 275.718 -174.629 275.218 -174.816  c
+275.218 -176.035 l
+275.697 -175.764 276.169 -175.561 276.632 -175.426  c
+277.096 -175.290 277.546 -175.223 277.984 -175.223  c
+278.661 -175.223 279.184 -175.355 279.554 -175.621  c
+279.924 -175.887 280.109 -176.264 280.109 -176.754  c
+280.109 -177.181 279.976 -177.517 279.710 -177.762  c
+279.445 -178.006 279.010 -178.186 278.406 -178.301  c
+277.687 -178.441 l
+276.801 -178.618 276.163 -178.894 275.773 -179.269  c
+275.382 -179.644 275.187 -180.165 275.187 -180.832  c
+275.187 -181.613 275.458 -182.225 275.999 -182.668  c
+276.541 -183.111 277.291 -183.332 278.249 -183.332  c
+278.666 -183.332 279.085 -183.295 279.507 -183.223  c
+279.929 -183.150 280.364 -183.040 280.812 -182.894  c
+h
+281.976 -183.176 m
+289.367 -183.176 l
+289.367 -182.176 l
+286.273 -182.176 l
+286.273 -174.426 l
+285.085 -174.426 l
+285.085 -182.176 l
+281.976 -182.176 l
+281.976 -183.176 l
+h
+291.634 -175.910 m
+292.822 -175.910 l
+292.822 -174.426 l
+291.634 -174.426 l
+291.634 -175.910 l
+h
+292.790 -176.769 m
+291.665 -176.769 l
+291.665 -177.676 l
+291.665 -178.071 291.720 -178.397 291.829 -178.652  c
+291.939 -178.907 292.171 -179.202 292.525 -179.535  c
+293.040 -180.051 l
+293.270 -180.259 293.434 -180.457 293.533 -180.644  c
+293.631 -180.832 293.681 -181.019 293.681 -181.207  c
+293.681 -181.551 293.553 -181.832 293.298 -182.051  c
+293.043 -182.269 292.702 -182.379 292.275 -182.379  c
+291.973 -182.379 291.647 -182.308 291.298 -182.168  c
+290.949 -182.027 290.582 -181.827 290.197 -181.566  c
+290.197 -182.676 l
+290.561 -182.894 290.934 -183.058 291.314 -183.168  c
+291.694 -183.277 292.082 -183.332 292.478 -183.332  c
+293.197 -183.332 293.775 -183.142 294.212 -182.762  c
+294.650 -182.381 294.868 -181.884 294.868 -181.269  c
+294.868 -180.967 294.798 -180.683 294.658 -180.418  c
+294.517 -180.152 294.270 -179.853 293.915 -179.519  c
+293.400 -179.004 l
+293.223 -178.827 293.095 -178.686 293.017 -178.582  c
+292.939 -178.478 292.884 -178.374 292.853 -178.269  c
+292.832 -178.196 292.816 -178.100 292.806 -177.980  c
+292.796 -177.861 292.790 -177.702 292.790 -177.504  c
+292.790 -176.769 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+274.000 -229.000 m
+274.000 -276.500 l
+S
+newpath
+274.000 -284.500 m
+269.000 -272.500 l
+274.000 -275.500 l
+279.000 -272.500 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+242.413 -265.734 m
+305.587 -265.734 l
+305.587 -247.766 l
+242.413 -247.766 l
+242.413 -265.734 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+244.382 -261.346 m
+251.772 -261.346 l
+251.772 -260.346 l
+248.679 -260.346 l
+248.679 -252.596 l
+247.491 -252.596 l
+247.491 -260.346 l
+244.382 -260.346 l
+244.382 -261.346 l
+h
+252.915 -261.346 m
+254.103 -261.346 l
+254.103 -252.596 l
+252.915 -252.596 l
+252.915 -261.346 l
+h
+256.454 -261.346 m
+258.220 -261.346 l
+260.454 -255.393 l
+262.704 -261.346 l
+264.470 -261.346 l
+264.470 -252.596 l
+263.313 -252.596 l
+263.313 -260.283 l
+261.048 -254.283 l
+259.860 -254.283 l
+257.610 -260.283 l
+257.610 -252.596 l
+256.454 -252.596 l
+256.454 -261.346 l
+h
+266.808 -261.346 m
+272.339 -261.346 l
+272.339 -260.346 l
+267.995 -260.346 l
+267.995 -257.752 l
+272.167 -257.752 l
+272.167 -256.768 l
+267.995 -256.768 l
+267.995 -253.596 l
+272.448 -253.596 l
+272.448 -252.596 l
+266.808 -252.596 l
+266.808 -261.346 l
+h
+277.952 -260.549 m
+277.088 -260.549 276.403 -260.229 275.897 -259.588  c
+275.392 -258.947 275.140 -258.070 275.140 -256.955  c
+275.140 -255.861 275.392 -254.994 275.897 -254.354  c
+276.403 -253.713 277.088 -253.393 277.952 -253.393  c
+278.806 -253.393 279.486 -253.713 279.991 -254.354  c
+280.496 -254.994 280.749 -255.861 280.749 -256.955  c
+280.749 -258.070 280.496 -258.947 279.991 -259.588  c
+279.486 -260.229 278.806 -260.549 277.952 -260.549  c
+h
+277.952 -261.502 m
+279.171 -261.502 280.147 -261.090 280.882 -260.268  c
+281.616 -259.445 281.983 -258.340 281.983 -256.955  c
+281.983 -255.580 281.616 -254.481 280.882 -253.658  c
+280.147 -252.835 279.171 -252.424 277.952 -252.424  c
+276.723 -252.424 275.739 -252.835 274.999 -253.658  c
+274.259 -254.481 273.890 -255.580 273.890 -256.955  c
+273.890 -258.340 274.259 -259.445 274.999 -260.268  c
+275.739 -261.090 276.723 -261.502 277.952 -261.502  c
+h
+283.710 -261.346 m
+284.897 -261.346 l
+284.897 -256.033 l
+284.897 -255.096 285.067 -254.421 285.405 -254.010  c
+285.744 -253.598 286.293 -253.393 287.054 -253.393  c
+287.814 -253.393 288.364 -253.598 288.702 -254.010  c
+289.041 -254.421 289.210 -255.096 289.210 -256.033  c
+289.210 -261.346 l
+290.397 -261.346 l
+290.397 -255.877 l
+290.397 -254.742 290.116 -253.882 289.554 -253.299  c
+288.991 -252.715 288.158 -252.424 287.054 -252.424  c
+285.950 -252.424 285.116 -252.715 284.554 -253.299  c
+283.991 -253.882 283.710 -254.742 283.710 -255.877  c
+283.710 -261.346 l
+h
+291.415 -261.346 m
+298.806 -261.346 l
+298.806 -260.346 l
+295.712 -260.346 l
+295.712 -252.596 l
+294.524 -252.596 l
+294.524 -260.346 l
+291.415 -260.346 l
+291.415 -261.346 l
+h
+300.589 -254.080 m
+301.776 -254.080 l
+301.776 -252.596 l
+300.589 -252.596 l
+300.589 -254.080 l
+h
+300.589 -261.346 m
+301.776 -261.346 l
+301.776 -257.502 l
+301.667 -255.408 l
+300.714 -255.408 l
+300.589 -257.502 l
+300.589 -261.346 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+newpath
+247.000 14.5000 m
+321.000 14.5000 l
+321.000 44.5000 l
+247.000 44.5000 l
+247.000 14.5000 l
+h
+f
+0.00000 0.00000 0.00000 RG
+0 J
+1.45000 M
+newpath
+249.005 24.9043 m
+254.536 24.9043 l
+254.536 25.9043 l
+250.192 25.9043 l
+250.192 28.4980 l
+254.364 28.4980 l
+254.364 29.4824 l
+250.192 29.4824 l
+250.192 32.6543 l
+254.646 32.6543 l
+254.646 33.6543 l
+249.005 33.6543 l
+249.005 24.9043 l
+h
+260.728 27.2793 m
+260.728 28.3105 l
+260.425 28.1543 260.110 28.0371 259.782 27.9590  c
+259.454 27.8809 259.113 27.8418 258.759 27.8418  c
+258.228 27.8418 257.826 27.9225 257.556 28.0840  c
+257.285 28.2454 257.149 28.4928 257.149 28.8262  c
+257.149 29.0762 257.246 29.2715 257.438 29.4121  c
+257.631 29.5527 258.019 29.6855 258.603 29.8105  c
+258.962 29.9043 l
+259.733 30.0605 260.280 30.2897 260.603 30.5918  c
+260.925 30.8939 261.087 31.3105 261.087 31.8418  c
+261.087 32.4564 260.845 32.9408 260.360 33.2949  c
+259.876 33.6491 259.212 33.8262 258.368 33.8262  c
+258.014 33.8262 257.647 33.7923 257.267 33.7246  c
+256.886 33.6569 256.488 33.5553 256.071 33.4199  c
+256.071 32.2949 l
+256.467 32.5033 256.858 32.6595 257.243 32.7637  c
+257.629 32.8678 258.014 32.9199 258.399 32.9199  c
+258.899 32.9199 259.287 32.8340 259.563 32.6621  c
+259.840 32.4902 259.978 32.2428 259.978 31.9199  c
+259.978 31.6283 259.879 31.4043 259.681 31.2480  c
+259.483 31.0918 259.050 30.9408 258.384 30.7949  c
+258.009 30.7168 l
+257.342 30.5710 256.860 30.3522 256.563 30.0605  c
+256.267 29.7689 256.118 29.3730 256.118 28.8730  c
+256.118 28.2480 256.337 27.7689 256.774 27.4355  c
+257.212 27.1022 257.832 26.9355 258.634 26.9355  c
+259.030 26.9355 259.405 26.9642 259.759 27.0215  c
+260.113 27.0788 260.436 27.1647 260.728 27.2793  c
+h
+263.870 25.2324 m
+263.870 27.0918 l
+266.089 27.0918 l
+266.089 27.9355 l
+263.870 27.9355 l
+263.870 31.4980 l
+263.870 32.0293 263.943 32.3704 264.089 32.5215  c
+264.235 32.6725 264.532 32.7480 264.979 32.7480  c
+266.089 32.7480 l
+266.089 33.6543 l
+264.979 33.6543 l
+264.146 33.6543 263.571 33.4980 263.253 33.1855  c
+262.935 32.8730 262.776 32.3105 262.776 31.4980  c
+262.776 27.9355 l
+261.995 27.9355 l
+261.995 27.0918 l
+262.776 27.0918 l
+262.776 25.2324 l
+263.870 25.2324 l
+h
+270.481 30.3574 m
+269.617 30.3574 269.015 30.4564 268.677 30.6543  c
+268.338 30.8522 268.169 31.1908 268.169 31.6699  c
+268.169 32.0553 268.297 32.3600 268.552 32.5840  c
+268.807 32.8079 269.148 32.9199 269.575 32.9199  c
+270.179 32.9199 270.661 32.7090 271.021 32.2871  c
+271.380 31.8652 271.560 31.3001 271.560 30.5918  c
+271.560 30.3574 l
+270.481 30.3574 l
+h
+272.638 29.9043 m
+272.638 33.6543 l
+271.560 33.6543 l
+271.560 32.6543 l
+271.310 33.0501 271.002 33.3444 270.638 33.5371  c
+270.273 33.7298 269.825 33.8262 269.294 33.8262  c
+268.617 33.8262 268.080 33.6361 267.685 33.2559  c
+267.289 32.8757 267.091 32.3730 267.091 31.7480  c
+267.091 31.0085 267.338 30.4512 267.833 30.0762  c
+268.328 29.7012 269.065 29.5137 270.044 29.5137  c
+271.560 29.5137 l
+271.560 29.4043 l
+271.560 28.9043 271.396 28.5189 271.067 28.2480  c
+270.739 27.9772 270.284 27.8418 269.700 27.8418  c
+269.325 27.8418 268.958 27.8887 268.599 27.9824  c
+268.239 28.0762 267.898 28.2116 267.575 28.3887  c
+267.575 27.3887 l
+267.971 27.2324 268.354 27.1178 268.724 27.0449  c
+269.093 26.9720 269.455 26.9355 269.810 26.9355  c
+270.757 26.9355 271.466 27.1803 271.935 27.6699  c
+272.403 28.1595 272.638 28.9043 272.638 29.9043  c
+h
+279.569 30.3730 m
+279.569 29.5814 279.405 28.9616 279.077 28.5137  c
+278.749 28.0658 278.304 27.8418 277.741 27.8418  c
+277.168 27.8418 276.718 28.0658 276.390 28.5137  c
+276.062 28.9616 275.897 29.5814 275.897 30.3730  c
+275.897 31.1647 276.062 31.7871 276.390 32.2402  c
+276.718 32.6934 277.168 32.9199 277.741 32.9199  c
+278.304 32.9199 278.749 32.6934 279.077 32.2402  c
+279.405 31.7871 279.569 31.1647 279.569 30.3730  c
+h
+275.897 28.0918 m
+276.127 27.6960 276.413 27.4043 276.757 27.2168  c
+277.101 27.0293 277.512 26.9355 277.991 26.9355  c
+278.793 26.9355 279.444 27.2507 279.944 27.8809  c
+280.444 28.5111 280.694 29.3418 280.694 30.3730  c
+280.694 31.4043 280.444 32.2376 279.944 32.8730  c
+279.444 33.5085 278.793 33.8262 277.991 33.8262  c
+277.512 33.8262 277.101 33.7298 276.757 33.5371  c
+276.413 33.3444 276.127 33.0553 275.897 32.6699  c
+275.897 33.6543 l
+274.819 33.6543 l
+274.819 24.5293 l
+275.897 24.5293 l
+275.897 28.0918 l
+h
+282.468 24.5293 m
+283.546 24.5293 l
+283.546 33.6543 l
+282.468 33.6543 l
+282.468 24.5293 l
+h
+285.802 27.0918 m
+286.880 27.0918 l
+286.880 33.6543 l
+285.802 33.6543 l
+285.802 27.0918 l
+h
+285.802 24.5293 m
+286.880 24.5293 l
+286.880 25.9043 l
+285.802 25.9043 l
+285.802 24.5293 l
+h
+293.323 27.2793 m
+293.323 28.3105 l
+293.021 28.1543 292.706 28.0371 292.378 27.9590  c
+292.050 27.8809 291.709 27.8418 291.354 27.8418  c
+290.823 27.8418 290.422 27.9225 290.151 28.0840  c
+289.881 28.2454 289.745 28.4928 289.745 28.8262  c
+289.745 29.0762 289.841 29.2715 290.034 29.4121  c
+290.227 29.5527 290.615 29.6855 291.198 29.8105  c
+291.558 29.9043 l
+292.328 30.0605 292.875 30.2897 293.198 30.5918  c
+293.521 30.8939 293.683 31.3105 293.683 31.8418  c
+293.683 32.4564 293.440 32.9408 292.956 33.2949  c
+292.472 33.6491 291.808 33.8262 290.964 33.8262  c
+290.610 33.8262 290.243 33.7923 289.862 33.7246  c
+289.482 33.6569 289.084 33.5553 288.667 33.4199  c
+288.667 32.2949 l
+289.063 32.5033 289.453 32.6595 289.839 32.7637  c
+290.224 32.8678 290.610 32.9199 290.995 32.9199  c
+291.495 32.9199 291.883 32.8340 292.159 32.6621  c
+292.435 32.4902 292.573 32.2428 292.573 31.9199  c
+292.573 31.6283 292.474 31.4043 292.276 31.2480  c
+292.078 31.0918 291.646 30.9408 290.979 30.7949  c
+290.604 30.7168 l
+289.938 30.5710 289.456 30.3522 289.159 30.0605  c
+288.862 29.7689 288.714 29.3730 288.714 28.8730  c
+288.714 28.2480 288.933 27.7689 289.370 27.4355  c
+289.808 27.1022 290.427 26.9355 291.229 26.9355  c
+291.625 26.9355 292.000 26.9642 292.354 27.0215  c
+292.709 27.0788 293.032 27.1647 293.323 27.2793  c
+h
+300.856 29.6855 m
+300.856 33.6543 l
+299.778 33.6543 l
+299.778 29.7324 l
+299.778 29.1074 299.656 28.6413 299.411 28.3340  c
+299.166 28.0267 298.804 27.8730 298.325 27.8730  c
+297.742 27.8730 297.281 28.0579 296.942 28.4277  c
+296.604 28.7975 296.435 29.3053 296.435 29.9512  c
+296.435 33.6543 l
+295.356 33.6543 l
+295.356 24.5293 l
+296.435 24.5293 l
+296.435 28.1074 l
+296.695 27.7116 297.000 27.4173 297.349 27.2246  c
+297.698 27.0319 298.101 26.9355 298.560 26.9355  c
+299.310 26.9355 299.880 27.1673 300.271 27.6309  c
+300.661 28.0944 300.856 28.7793 300.856 29.6855  c
+h
+308.618 30.1074 m
+308.618 30.6230 l
+303.649 30.6230 l
+303.701 31.3730 303.928 31.9408 304.329 32.3262  c
+304.730 32.7116 305.285 32.9043 305.993 32.9043  c
+306.410 32.9043 306.813 32.8548 307.204 32.7559  c
+307.595 32.6569 307.983 32.5033 308.368 32.2949  c
+308.368 33.3262 l
+307.972 33.4824 307.571 33.6048 307.165 33.6934  c
+306.759 33.7819 306.347 33.8262 305.931 33.8262  c
+304.889 33.8262 304.061 33.5215 303.446 32.9121  c
+302.832 32.3027 302.524 31.4772 302.524 30.4355  c
+302.524 29.3626 302.816 28.5111 303.399 27.8809  c
+303.983 27.2507 304.764 26.9355 305.743 26.9355  c
+306.629 26.9355 307.329 27.2194 307.845 27.7871  c
+308.360 28.3548 308.618 29.1283 308.618 30.1074  c
+h
+307.540 29.7793 m
+307.530 29.1960 307.363 28.7272 307.040 28.3730  c
+306.717 28.0189 306.290 27.8418 305.759 27.8418  c
+305.155 27.8418 304.673 28.0137 304.313 28.3574  c
+303.954 28.7012 303.748 29.1803 303.696 29.7949  c
+307.540 29.7793 l
+h
+314.704 28.0918 m
+314.704 24.5293 l
+315.782 24.5293 l
+315.782 33.6543 l
+314.704 33.6543 l
+314.704 32.6699 l
+314.475 33.0553 314.188 33.3444 313.845 33.5371  c
+313.501 33.7298 313.084 33.8262 312.595 33.8262  c
+311.803 33.8262 311.157 33.5085 310.657 32.8730  c
+310.157 32.2376 309.907 31.4043 309.907 30.3730  c
+309.907 29.3418 310.157 28.5111 310.657 27.8809  c
+311.157 27.2507 311.803 26.9355 312.595 26.9355  c
+313.084 26.9355 313.501 27.0293 313.845 27.2168  c
+314.188 27.4043 314.475 27.6960 314.704 28.0918  c
+h
+311.032 30.3730 m
+311.032 31.1647 311.194 31.7871 311.517 32.2402  c
+311.840 32.6934 312.287 32.9199 312.860 32.9199  c
+313.433 32.9199 313.884 32.6934 314.212 32.2402  c
+314.540 31.7871 314.704 31.1647 314.704 30.3730  c
+314.704 29.5814 314.540 28.9616 314.212 28.5137  c
+313.884 28.0658 313.433 27.8418 312.860 27.8418  c
+312.287 27.8418 311.840 28.0658 311.517 28.5137  c
+311.194 28.9616 311.032 29.5814 311.032 30.3730  c
+h
+319.024 24.9043 m
+319.024 28.1543 l
+318.024 28.1543 l
+318.024 24.9043 l
+319.024 24.9043 l
+h
+f
+2 J
+10.0000 M
+1.00000 .800000 0.00000 RG
+0 J
+1.45000 M
+0.00000 0.00000 0.00000 RG
+newpath
+247.000 14.5000 m
+321.000 14.5000 l
+321.000 44.5000 l
+247.000 44.5000 l
+247.000 14.5000 l
+h
+S
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+284.000 -41.5000 m
+284.000 6.50000 l
+S
+newpath
+284.000 14.5000 m
+289.000 2.50000 l
+284.000 5.50000 l
+279.000 2.50000 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+252.413 -22.4844 m
+315.587 -22.4844 l
+315.587 -4.51563 l
+252.413 -4.51563 l
+252.413 -22.4844 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+254.382 -18.0957 m
+261.772 -18.0957 l
+261.772 -17.0957 l
+258.679 -17.0957 l
+258.679 -9.34570 l
+257.491 -9.34570 l
+257.491 -17.0957 l
+254.382 -17.0957 l
+254.382 -18.0957 l
+h
+262.915 -18.0957 m
+264.103 -18.0957 l
+264.103 -9.34570 l
+262.915 -9.34570 l
+262.915 -18.0957 l
+h
+266.454 -18.0957 m
+268.220 -18.0957 l
+270.454 -12.1426 l
+272.704 -18.0957 l
+274.470 -18.0957 l
+274.470 -9.34570 l
+273.313 -9.34570 l
+273.313 -17.0332 l
+271.048 -11.0332 l
+269.860 -11.0332 l
+267.610 -17.0332 l
+267.610 -9.34570 l
+266.454 -9.34570 l
+266.454 -18.0957 l
+h
+276.808 -18.0957 m
+282.339 -18.0957 l
+282.339 -17.0957 l
+277.995 -17.0957 l
+277.995 -14.5020 l
+282.167 -14.5020 l
+282.167 -13.5176 l
+277.995 -13.5176 l
+277.995 -10.3457 l
+282.448 -10.3457 l
+282.448 -9.34570 l
+276.808 -9.34570 l
+276.808 -18.0957 l
+h
+287.952 -17.2988 m
+287.088 -17.2988 286.403 -16.9785 285.897 -16.3379  c
+285.392 -15.6973 285.140 -14.8197 285.140 -13.7051  c
+285.140 -12.6113 285.392 -11.7441 285.897 -11.1035  c
+286.403 -10.4629 287.088 -10.1426 287.952 -10.1426  c
+288.806 -10.1426 289.486 -10.4629 289.991 -11.1035  c
+290.496 -11.7441 290.749 -12.6113 290.749 -13.7051  c
+290.749 -14.8197 290.496 -15.6973 289.991 -16.3379  c
+289.486 -16.9785 288.806 -17.2988 287.952 -17.2988  c
+h
+287.952 -18.2520 m
+289.171 -18.2520 290.147 -17.8405 290.882 -17.0176  c
+291.616 -16.1947 291.983 -15.0905 291.983 -13.7051  c
+291.983 -12.3301 291.616 -11.2311 290.882 -10.4082  c
+290.147 -9.58529 289.171 -9.17383 287.952 -9.17383  c
+286.723 -9.17383 285.739 -9.58529 284.999 -10.4082  c
+284.259 -11.2311 283.890 -12.3301 283.890 -13.7051  c
+283.890 -15.0905 284.259 -16.1947 284.999 -17.0176  c
+285.739 -17.8405 286.723 -18.2520 287.952 -18.2520  c
+h
+293.710 -18.0957 m
+294.897 -18.0957 l
+294.897 -12.7832 l
+294.897 -11.8457 295.067 -11.1712 295.405 -10.7598  c
+295.744 -10.3483 296.293 -10.1426 297.054 -10.1426  c
+297.814 -10.1426 298.364 -10.3483 298.702 -10.7598  c
+299.041 -11.1712 299.210 -11.8457 299.210 -12.7832  c
+299.210 -18.0957 l
+300.397 -18.0957 l
+300.397 -12.6270 l
+300.397 -11.4915 300.116 -10.6322 299.554 -10.0488  c
+298.991 -9.46549 298.158 -9.17383 297.054 -9.17383  c
+295.950 -9.17383 295.116 -9.46549 294.554 -10.0488  c
+293.991 -10.6322 293.710 -11.4915 293.710 -12.6270  c
+293.710 -18.0957 l
+h
+301.415 -18.0957 m
+308.806 -18.0957 l
+308.806 -17.0957 l
+305.712 -17.0957 l
+305.712 -9.34570 l
+304.524 -9.34570 l
+304.524 -17.0957 l
+301.415 -17.0957 l
+301.415 -18.0957 l
+h
+310.589 -10.8301 m
+311.776 -10.8301 l
+311.776 -9.34570 l
+310.589 -9.34570 l
+310.589 -10.8301 l
+h
+310.589 -18.0957 m
+311.776 -18.0957 l
+311.776 -14.2520 l
+311.667 -12.1582 l
+310.714 -12.1582 l
+310.589 -14.2520 l
+310.589 -18.0957 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+newpath
+284.000 44.5000 m
+284.000 87.0000 l
+S
+newpath
+284.000 95.0000 m
+289.000 83.0000 l
+284.000 86.0000 l
+279.000 83.0000 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+256.878 60.7656 m
+311.122 60.7656 l
+311.122 78.7344 l
+256.878 78.7344 l
+256.878 60.7656 l
+h
+f
+0.00000 0.00000 0.00000 RG
+newpath
+260.050 65.1543 m
+265.081 65.1543 l
+265.081 66.1543 l
+261.237 66.1543 l
+261.237 68.7324 l
+264.706 68.7324 l
+264.706 69.7324 l
+261.237 69.7324 l
+261.237 73.9043 l
+260.050 73.9043 l
+260.050 65.1543 l
+h
+266.952 65.1543 m
+268.140 65.1543 l
+268.140 73.9043 l
+266.952 73.9043 l
+266.952 65.1543 l
+h
+270.491 65.1543 m
+272.085 65.1543 l
+275.976 72.4668 l
+275.976 65.1543 l
+277.116 65.1543 l
+277.116 73.9043 l
+275.522 73.9043 l
+271.647 66.5918 l
+271.647 73.9043 l
+270.491 73.9043 l
+270.491 65.1543 l
+h
+282.405 66.3262 m
+280.796 70.6699 l
+284.015 70.6699 l
+282.405 66.3262 l
+h
+281.733 65.1543 m
+283.077 65.1543 l
+286.405 73.9043 l
+285.171 73.9043 l
+284.374 71.6543 l
+280.437 71.6543 l
+279.640 73.9043 l
+278.390 73.9043 l
+281.733 65.1543 l
+h
+294.239 65.8262 m
+294.239 67.0762 l
+293.833 66.7012 293.406 66.4225 292.958 66.2402  c
+292.510 66.0579 292.031 65.9668 291.521 65.9668  c
+290.521 65.9668 289.755 66.2741 289.224 66.8887  c
+288.692 67.5033 288.427 68.3887 288.427 69.5449  c
+288.427 70.6908 288.692 71.5710 289.224 72.1855  c
+289.755 72.8001 290.521 73.1074 291.521 73.1074  c
+292.031 73.1074 292.510 73.0137 292.958 72.8262  c
+293.406 72.6387 293.833 72.3626 294.239 71.9980  c
+294.239 73.2324 l
+293.823 73.5137 293.382 73.7246 292.919 73.8652  c
+292.455 74.0059 291.968 74.0762 291.458 74.0762  c
+290.125 74.0762 289.078 73.6699 288.317 72.8574  c
+287.557 72.0449 287.177 70.9408 287.177 69.5449  c
+287.177 68.1387 287.557 67.0293 288.317 66.2168  c
+289.078 65.4043 290.125 64.9980 291.458 64.9980  c
+291.979 64.9980 292.471 65.0684 292.935 65.2090  c
+293.398 65.3496 293.833 65.5553 294.239 65.8262  c
+h
+296.056 65.1543 m
+297.243 65.1543 l
+297.243 68.8574 l
+301.165 65.1543 l
+302.696 65.1543 l
+298.353 69.2324 l
+303.009 73.9043 l
+301.446 73.9043 l
+297.243 69.6855 l
+297.243 73.9043 l
+296.056 73.9043 l
+296.056 65.1543 l
+h
+305.050 72.4199 m
+306.237 72.4199 l
+306.237 73.9043 l
+305.050 73.9043 l
+305.050 72.4199 l
+h
+306.206 71.5605 m
+305.081 71.5605 l
+305.081 70.6543 l
+305.081 70.2585 305.136 69.9329 305.245 69.6777  c
+305.354 69.4225 305.586 69.1283 305.940 68.7949  c
+306.456 68.2793 l
+306.685 68.0710 306.849 67.8730 306.948 67.6855  c
+307.047 67.4980 307.097 67.3105 307.097 67.1230  c
+307.097 66.7793 306.969 66.4980 306.714 66.2793  c
+306.459 66.0605 306.118 65.9512 305.690 65.9512  c
+305.388 65.9512 305.063 66.0215 304.714 66.1621  c
+304.365 66.3027 303.998 66.5033 303.612 66.7637  c
+303.612 65.6543 l
+303.977 65.4355 304.349 65.2715 304.729 65.1621  c
+305.110 65.0527 305.498 64.9980 305.894 64.9980  c
+306.612 64.9980 307.190 65.1882 307.628 65.5684  c
+308.065 65.9486 308.284 66.4460 308.284 67.0605  c
+308.284 67.3626 308.214 67.6465 308.073 67.9121  c
+307.933 68.1777 307.685 68.4772 307.331 68.8105  c
+306.815 69.3262 l
+306.638 69.5033 306.511 69.6439 306.433 69.7480  c
+306.354 69.8522 306.300 69.9564 306.269 70.0605  c
+306.248 70.1335 306.232 70.2298 306.222 70.3496  c
+306.211 70.4694 306.206 70.6283 306.206 70.8262  c
+306.206 71.5605 l
+h
+f
+2 J
+10.0000 M
+0 J
+1.45000 M
+[ 6.00000 2.00000 ] 0.00000 d
+newpath
+246.979 32.5158 m
+234.667 33.2927 l
+198.556 32.3903 l
+162.667 28.2927 l
+149.838 25.6696 l
+S
+newpath
+142.000 24.0670 m
+152.755 31.3695 l
+150.818 25.8699 l
+154.758 21.5722 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+180.982 23.4059 m
+216.130 23.4059 l
+216.130 41.3747 l
+180.982 41.3747 l
+180.982 23.4059 l
+h
+f
+0.00000 0.00000 0.00000 RG
+[ ] 0.00000 d
+newpath
+185.341 28.7633 m
+185.341 35.5758 l
+186.779 35.5758 l
+187.987 35.5758 188.870 35.3024 189.427 34.7555  c
+189.985 34.2087 190.263 33.3415 190.263 32.1540  c
+190.263 30.9873 189.985 30.1305 189.427 29.5837  c
+188.870 29.0368 187.987 28.7633 186.779 28.7633  c
+185.341 28.7633 l
+h
+184.154 27.7946 m
+186.591 27.7946 l
+188.289 27.7946 189.534 28.1462 190.326 28.8493  c
+191.117 29.5524 191.513 30.6540 191.513 32.1540  c
+191.513 33.6644 191.115 34.7738 190.318 35.4821  c
+189.521 36.1904 188.279 36.5446 186.591 36.5446  c
+184.154 36.5446 l
+184.154 27.7946 l
+h
+196.332 28.9665 m
+194.722 33.3102 l
+197.941 33.3102 l
+196.332 28.9665 l
+h
+195.660 27.7946 m
+197.003 27.7946 l
+200.332 36.5446 l
+199.097 36.5446 l
+198.300 34.2946 l
+194.363 34.2946 l
+193.566 36.5446 l
+192.316 36.5446 l
+195.660 27.7946 l
+h
+200.400 27.7946 m
+207.791 27.7946 l
+207.791 28.7946 l
+204.697 28.7946 l
+204.697 36.5446 l
+203.509 36.5446 l
+203.509 28.7946 l
+200.400 28.7946 l
+200.400 27.7946 l
+h
+210.058 35.0602 m
+211.246 35.0602 l
+211.246 36.5446 l
+210.058 36.5446 l
+210.058 35.0602 l
+h
+211.214 34.2008 m
+210.089 34.2008 l
+210.089 33.2946 l
+210.089 32.8988 210.144 32.5732 210.253 32.3180  c
+210.363 32.0628 210.595 31.7686 210.949 31.4352  c
+211.464 30.9196 l
+211.694 30.7113 211.858 30.5133 211.957 30.3258  c
+212.056 30.1383 212.105 29.9508 212.105 29.7633  c
+212.105 29.4196 211.977 29.1383 211.722 28.9196  c
+211.467 28.7008 211.126 28.5915 210.699 28.5915  c
+210.397 28.5915 210.071 28.6618 209.722 28.8024  c
+209.373 28.9430 209.006 29.1436 208.621 29.4040  c
+208.621 28.2946 l
+208.985 28.0758 209.358 27.9118 209.738 27.8024  c
+210.118 27.6930 210.506 27.6383 210.902 27.6383  c
+211.621 27.6383 212.199 27.8285 212.636 28.2087  c
+213.074 28.5889 213.293 29.0863 213.293 29.7008  c
+213.293 30.0029 213.222 30.2868 213.082 30.5524  c
+212.941 30.8180 212.694 31.1175 212.339 31.4508  c
+211.824 31.9665 l
+211.647 32.1436 211.519 32.2842 211.441 32.3883  c
+211.363 32.4925 211.308 32.5967 211.277 32.7008  c
+211.256 32.7738 211.240 32.8701 211.230 32.9899  c
+211.220 33.1097 211.214 33.2686 211.214 33.4665  c
+211.214 34.2008 l
+h
+f
+[ 6.00000 2.00000 ] 0.00000 d
+2 J
+10.0000 M
+[ ] 0.00000 d
+0 J
+1.45000 M
+[ 6.00000 2.00000 ] 0.00000 d
+newpath
+142.000 13.2167 m
+145.375 11.4655 l
+163.750 4.65512 l
+182.125 .568897 l
+200.500 -.793177 l
+218.875 .568897 l
+237.250 4.65512 l
+254.295 10.9725 l
+254.384 11.0186 l
+S
+newpath
+261.565 14.5450 m
+252.997 4.76737 l
+253.486 10.5778 l
+248.589 13.7434 l
+h
+f
+1.00000 1.00000 1.00000 RG
+newpath
+183.866 -9.77755 m
+217.134 -9.77755 l
+217.134 8.19120 l
+183.866 8.19120 l
+183.866 -9.77755 l
+h
+f
+0.00000 0.00000 0.00000 RG
+[ ] 0.00000 d
+newpath
+189.976 -4.21700 m
+188.366 .126745 l
+191.585 .126745 l
+189.976 -4.21700 l
+h
+189.304 -5.38888 m
+190.647 -5.38888 l
+193.976 3.36112 l
+192.741 3.36112 l
+191.944 1.11112 l
+188.007 1.11112 l
+187.210 3.36112 l
+185.960 3.36112 l
+189.304 -5.38888 l
+h
+201.810 -4.71700 m
+201.810 -3.46700 l
+201.403 -3.84200 200.976 -4.12065 200.528 -4.30294  c
+200.080 -4.48523 199.601 -4.57638 199.091 -4.57638  c
+198.091 -4.57638 197.325 -4.26909 196.794 -3.65450  c
+196.263 -3.03992 195.997 -2.15450 195.997 -.998255  c
+195.997 .147579 196.263 1.02779 196.794 1.64237  c
+197.325 2.25695 198.091 2.56425 199.091 2.56425  c
+199.601 2.56425 200.080 2.47050 200.528 2.28300  c
+200.976 2.09550 201.403 1.81945 201.810 1.45487  c
+201.810 2.68925 l
+201.393 2.97050 200.953 3.18143 200.489 3.32206  c
+200.026 3.46268 199.539 3.53300 199.028 3.53300  c
+197.695 3.53300 196.648 3.12675 195.888 2.31425  c
+195.127 1.50175 194.747 .397579 194.747 -.998255  c
+194.747 -2.40450 195.127 -3.51388 195.888 -4.32638  c
+196.648 -5.13888 197.695 -5.54513 199.028 -5.54513  c
+199.549 -5.54513 200.041 -5.47482 200.505 -5.33419  c
+200.968 -5.19357 201.403 -4.98784 201.810 -4.71700  c
+h
+203.626 -5.38888 m
+204.813 -5.38888 l
+204.813 -1.68575 l
+208.735 -5.38888 l
+210.267 -5.38888 l
+205.923 -1.31075 l
+210.579 3.36112 l
+209.017 3.36112 l
+204.813 -.857630 l
+204.813 3.36112 l
+203.626 3.36112 l
+203.626 -5.38888 l
+h
+212.136 1.87675 m
+213.323 1.87675 l
+213.323 3.36112 l
+212.136 3.36112 l
+212.136 1.87675 l
+h
+212.136 -5.38888 m
+213.323 -5.38888 l
+213.323 -1.54513 l
+213.214 .548620 l
+212.261 .548620 l
+212.136 -1.54513 l
+212.136 -5.38888 l
+h
+f
+[ 6.00000 2.00000 ] 0.00000 d
+2 J
+10.0000 M
+[ ] 0.00000 d
+Q
+[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
+cliprestore
+
+%%Trailer
+%%EOF
index ade1ba3..564ed0b 100644 (file)
@@ -17,7 +17,7 @@
     <node id="n0">
       <data key="d6">
         <y:ShapeNode>
-          <y:Geometry height="30.0" width="30.0" x="259.0" y="-409.0"/>
+          <y:Geometry height="30.0" width="30.0" x="375.0" y="-314.5"/>
           <y:Fill color="#FFCC00" transparent="false"/>
           <y:BorderStyle color="#000000" type="line" width="1.0"/>
           <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="11.634765625" x="9.1826171875" y="6.015625">1<y:LabelModel>
@@ -59,7 +59,7 @@
     <node id="n2">
       <data key="d6">
         <y:ShapeNode>
-          <y:Geometry height="30.0" width="67.0" x="-62.0" y="-309.5"/>
+          <y:Geometry height="30.0" width="67.0" x="53.0" y="-314.5"/>
           <y:Fill color="#FFCC00" transparent="false"/>
           <y:BorderStyle color="#000000" type="line" width="1.0"/>
           <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="62.857421875" x="2.0712890625" y="8.03125">Syn Recv'<y:LabelModel>
@@ -76,7 +76,7 @@
     <node id="n3">
       <data key="d6">
         <y:ShapeNode>
-          <y:Geometry height="30.0" width="74.0" x="108.0" y="-164.5"/>
+          <y:Geometry height="30.0" width="74.0" x="243.5" y="-157.5"/>
           <y:Fill color="#FFCC00" transparent="false"/>
           <y:BorderStyle color="#000000" type="line" width="1.0"/>
           <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="59.55859375" x="7.220703125" y="6.015625">Syn Recv<y:LabelModel>
           <y:Geometry height="30.0" width="74.0" x="247.0" y="14.5"/>
           <y:Fill color="#FFCC00" transparent="false"/>
           <y:BorderStyle color="#000000" type="line" width="1.0"/>
-          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="80.669921875" x="-3.3349609375" y="6.015625">Established1<y:LabelModel>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="76.333984375" x="-1.1669921875" y="6.015625">Established'<y:LabelModel>
               <y:SmartNodeLabelModel distance="4.0"/>
             </y:LabelModel>
             <y:ModelParameter>
       <data key="d5"/>
       <data key="d6">
         <y:ShapeNode>
-          <y:Geometry height="30.0" width="30.0" x="231.0" y="-229.0"/>
+          <y:Geometry height="30.0" width="58.0" x="245.0" y="-229.0"/>
           <y:Fill color="#FFCC00" transparent="false"/>
           <y:BorderStyle color="#000000" type="line" width="1.0"/>
-          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="62.751953125" x="-16.3759765625" y="6.015625">Syn recv''<y:LabelModel>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="62.751953125" x="-2.3759765625" y="6.015625">Syn recv''<y:LabelModel>
+              <y:SmartNodeLabelModel distance="4.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
+            </y:ModelParameter>
+          </y:NodeLabel>
+          <y:Shape type="rectangle"/>
+        </y:ShapeNode>
+      </data>
+    </node>
+    <node id="n9">
+      <data key="d5"/>
+      <data key="d6">
+        <y:ShapeNode>
+          <y:Geometry height="30.0" width="30.0" x="112.0" y="6.0"/>
+          <y:Fill color="#FFCC00" transparent="false"/>
+          <y:BorderStyle color="#000000" type="line" width="1.0"/>
+          <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="32.65234375" x="-1.326171875" y="6.015625">Data<y:LabelModel>
               <y:SmartNodeLabelModel distance="4.0"/>
             </y:LabelModel>
             <y:ModelParameter>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="273.0716552734375" y="-346.75"/>
+            <y:Point x="332.0" y="-300.63958740234375"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="46.333984375" x="-53.621192219153556" y="13.838156755080888">Listen?<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="46.333984375" x="-55.4169921875" y="-9.618037519783798">Listen?<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.5" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:Arc height="-0.9283584356307983" ratio="-0.03929559513926506" type="fixedRatio"/>
+          <y:Arc height="-1.139572262763977" ratio="-0.03929559513926506" type="fixedRatio"/>
         </y:ArcEdge>
       </data>
     </edge>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="45.647769927978516" y="-206.9207763671875"/>
+            <y:Point x="169.85482788085938" y="-204.1390838623047"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.19140625" x="12.842454063590626" y="82.97955551291705">SYNACK!<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="57.19140625" x="44.60405731201172" y="71.37654113769531">SYNACK!<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="1.0" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.0" segment="-1"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:Arc height="-19.651947021484375" ratio="-0.34764769673347473" type="fixedRatio"/>
+          <y:Arc height="-21.690576553344727" ratio="-0.34764769673347473" type="fixedRatio"/>
         </y:ArcEdge>
       </data>
     </edge>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="198.77391052246094" y="-176.62342834472656"/>
+            <y:Point x="280.87921142578125" y="-178.57992553710938"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="33.654296875" x="11.236052707100555" y="9.075799381117179">RST?<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="33.654296875" x="-17.355865478515625" y="-30.064300537109375">RST?<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.0" segment="-1"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:Arc height="-6.08278226852417" ratio="-0.20303277671337128" type="fixedRatio"/>
+          <y:Arc height="-3.644176721572876" ratio="-0.20303277671337128" type="fixedRatio"/>
         </y:ArcEdge>
       </data>
     </edge>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="214.5" y="-103.0"/>
+            <y:Point x="282.25" y="-99.5"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="34.826171875" x="-10.555144301757565" y="31.69950251880941">ACK?<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="34.826171875" x="-16.55876124182413" y="12.0078125">ACK?<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.5" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="122.18643188476562" y="-331.095703125"/>
+            <y:Point x="180.25" y="-320.6336975097656"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="32.095703125" x="94.05858250520764" y="-60.872959613305284">RST!<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="32.095703125" x="44.2396240234375" y="-18.04718017578125">RST!<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="1.0" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="1.0" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:Arc height="34.100372314453125" ratio="0.4508524239063263" type="fixedRatio"/>
+          <y:Arc height="21.13370704650879" ratio="0.4508524239063263" type="fixedRatio"/>
         </y:ArcEdge>
       </data>
     </edge>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="123.3836441040039" y="-258.66436767578125"/>
+            <y:Point x="180.25" y="-275.7382507324219"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="34.29296875" x="-144.12154550218398" y="46.67415680021378">SYN?<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="34.29296875" x="-80.3636474609375" y="2.133636474609375">SYN?<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="left" ratio="0.0" segment="-1"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.0" segment="-1"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:Arc height="38.34085464477539" ratio="0.5069172382354736" type="fixedRatio"/>
+          <y:Arc height="23.76174545288086" ratio="0.5069172382354736" type="fixedRatio"/>
         </y:ArcEdge>
       </data>
     </edge>
           <y:Path sx="0.0" sy="15.0" tx="0.0" ty="0.0"/>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="54.244140625" x="-57.1220703125" y="16.265625">FINACK?<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="54.244140625" x="-27.1220703125" y="16.265625">FINACK?<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.5" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
         </y:PolyLineEdge>
       </data>
     </edge>
-    <edge id="e7" source="n5" target="n7">
+    <edge id="e7" source="n4" target="n6">
       <data key="d9"/>
       <data key="d10">
         <y:PolyLineEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="33.267578125" x="-45.564291706739084" y="16.265625">ACK!<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.173828125" x="-31.5869140625" y="19.015624999999993">TIMEOUT!<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.5" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
         </y:PolyLineEdge>
       </data>
     </edge>
-    <edge id="e8" source="n4" target="n6">
+    <edge id="e8" source="n7" target="n1">
+      <data key="d9"/>
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="376.22222900390625" y="-57.13035583496094"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="line" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="46.333984375" x="55.216796875" y="-241.61473083496094">Listen?<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.0" segment="-1"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:Arc height="-95.50846862792969" ratio="-0.7793652415275574" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e9" source="n8" target="n1">
       <data key="d9"/>
       <data key="d10">
         <y:PolyLineEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.173828125" x="-61.5869140625" y="19.015624999999993">TIMEOUT!<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.173828125" x="-31.5869140625" y="-36.734375">TIMEOUT!<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="0.5" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
         </y:PolyLineEdge>
       </data>
     </edge>
-    <edge id="e9" source="n7" target="n1">
+    <edge id="e10" source="n2" target="n1">
       <data key="d9"/>
       <data key="d10">
         <y:ArcEdge>
           <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
-            <y:Point x="553.9495849609375" y="-62.02692794799805"/>
+            <y:Point x="180.25" y="-373.0871887207031"/>
           </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="46.333984375" x="119.94639629117796" y="-116.02106858099603">Listen?<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.173828125" x="51.971099853515625" y="-67.57156372070312">TIMEOUT!<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="1.0" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:Arc height="-273.30328369140625" ratio="-2.230201005935669" type="fixedRatio"/>
+          <y:Arc height="73.58718872070312" ratio="1.5698599815368652" type="fixedRatio"/>
         </y:ArcEdge>
       </data>
     </edge>
-    <edge id="e10" source="n8" target="n1">
+    <edge id="e11" source="n6" target="n9">
       <data key="d9"/>
       <data key="d10">
-        <y:PolyLineEdge>
-          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+        <y:ArcEdge>
+          <y:Path sx="-13.0" sy="1.5" tx="0.0" ty="0.0">
+            <y:Point x="198.5562286376953" y="32.39030075073242"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="dashed" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="35.1484375" x="-65.99716186523438" y="-9.109870910644538">DAT?<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="1.0" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:Arc height="6.405689716339111" ratio="0.17750832438468933" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e12" source="n9" target="n6">
+      <data key="d9"/>
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="-10.0" ty="-8.5">
+            <y:Point x="200.5" y="-0.7931766510009766"/>
+          </y:Path>
+          <y:LineStyle color="#000000" type="dashed" width="1.0"/>
+          <y:Arrows source="none" target="standard"/>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="33.267578125" x="41.8662109375" y="-22.9942741394043">ACK!<y:LabelModel>
+              <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
+            </y:LabelModel>
+            <y:ModelParameter>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="1.0" segment="0"/>
+            </y:ModelParameter>
+            <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
+          </y:EdgeLabel>
+          <y:Arc height="21.793176651000977" ratio="0.5930116176605225" type="fixedRatio"/>
+        </y:ArcEdge>
+      </data>
+    </edge>
+    <edge id="e13" source="n5" target="n7">
+      <data key="d9"/>
+      <data key="d10">
+        <y:ArcEdge>
+          <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+            <y:Point x="287.39154052734375" y="150.1786346435547"/>
+          </y:Path>
           <y:LineStyle color="#000000" type="line" width="1.0"/>
           <y:Arrows source="none" target="standard"/>
-          <y:EdgeLabel alignment="center" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="63.173828125" x="9.068545517360462" y="-36.734375">TIMEOUT!<y:LabelModel>
+          <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" configuration="AutoFlippingLabel" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="17.96875" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="33.267578125" x="-14.5084228515625" y="16.194259643554688">ACK!<y:LabelModel>
               <y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
             </y:LabelModel>
             <y:ModelParameter>
-              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
+              <y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="center" ratio="1.0" segment="0"/>
             </y:ModelParameter>
             <y:PreferredPlacementDescriptor angle="0.0" angleOffsetOnRightSide="0" angleReference="absolute" angleRotationOnRightSide="co" distance="-1.0" frozen="true" placement="anywhere" side="anywhere" sideReference="relative_to_edge_flow"/>
           </y:EdgeLabel>
-          <y:BendStyle smoothed="false"/>
-        </y:PolyLineEdge>
+          <y:Arc height="1.6430950164794922" ratio="0.08156741410493851" type="fixedRatio"/>
+        </y:ArcEdge>
       </data>
     </edge>
   </graph>