%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 123 20 472 771 %%Creator: yExport 1.1.0.2 %%Producer: org.freehep.graphicsio.ps.PSGraphics2D Revision: 12753 %%For: %%Title: %%CreationDate: Friday, July 2, 2010 8:30:15 PM CEST %%LanguageLevel: 3 %%EndComments %%BeginProlog 100 dict dup begin % % File: org/freehep/graphicsio.ps/PSProlog.txt % Author: Charles Loomis % % Redefinitions which save some space in the output file. These are also % the same as the PDF operators. /q {gsave} def /Q {grestore} def /n {newpath} def /m {moveto} def /l {lineto} def /c {curveto} def /h {closepath} def /re {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto neg 0 exch rlineto closepath} def /f {fill} def /f* {eofill} def /F {gsave vg&FC fill grestore} def /F* {gsave vg&FC eofill grestore} def /s {closepath stroke} def /S {stroke} def /b {closepath gsave vg&FC fill grestore gsave stroke grestore newpath} def /B {gsave vg&FC fill grestore gsave stroke grestore newpath} def /b* {closepath gsave vg&FC eofill grestore gsave stroke grestore newpath} def /B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def /g {1 array astore /vg&fcolor exch def} def /G {setgray} def /k {4 array astore /vg&fcolor exch def} def /K {setcmykcolor} def /rg {3 array astore /vg&fcolor exch def} def /RG {setrgbcolor} def % Initialize the fill color. 0 0 0 rg /vg&FC {mark vg&fcolor aload pop counttomark 1 eq {G} if counttomark 3 eq {RG} if counttomark 4 eq {K} if cleartomark } def /vg&DFC {/vg&fcolor exch def} def /vg&C {mark exch aload pop counttomark 1 eq {G} if counttomark 3 eq {RG} if counttomark 4 eq {K} if cleartomark } def /w {setlinewidth} def /j {setlinejoin} def /J {setlinecap} def /M {setmiterlimit} def /d {setdash} def /i {setflat} def /W {clip} def /W* {eoclip} def % Setup the default graphics state. % (black; 1 pt. linewidth; miter join; butt-ends; solid) /defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def % Emulation of the rectangle operators for PostScript implementations % which do not implement all Level 2 features. This is an INCOMPLETE % emulation; only the "x y width height rect..." form is emulated. /*rf {gsave newpath re fill grestore} def /*rs {gsave newpath re stroke grestore} def /*rc {newpath re clip} def /rf /rectfill where {pop /rectfill}{/*rf} ifelse load def /rs /rectstroke where {pop /rectstroke}{/*rs} ifelse load def /rc /rectclip where {pop /rectclip}{/*rc} ifelse load def % Emulation of the selectfont operator. This includes a 20% increase in % the fontsize which is necessary to get sizes similar to the Java fonts. /*sf {exch findfont exch dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def /sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def % Special version of stroke which allows the dash pattern to continue % across path segments. (This may be needed for PostScript although % modern printers seem to do this correctly.) /vg&stroke { currentdash pop length 0 eq {stroke} { currentdash /vg&doffset exch def pop flattenpath {m vg&resetdash} {2 copy currentpoint 3 -1 roll sub dup mul 3 1 roll sub dup mul add sqrt 3 1 roll l currentdash 3 -1 roll add setdash} {} {h vg&resetdash} pathforall stroke vg&resetdash } ifelse } def /vg&resetdash {currentdash pop vg&doffset setdash} def % Initialize variables for safety. /delta 0 def /xv 0 def /yv 0 def /width 0 def /height 0 def % Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page. /pw 595 def /ph 791 def /po true def /ftp false def % Initialize margins to 20 points. /ml 20 def /mr 20 def /mt 20 def /mb 20 def % Temporary matrices. /smatrix 0 def /nmatrix 0 def % set page size (usage: 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: setmargins) /setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def % set the graphic's size (usage: setsize) /setsize {/gh exch def /gw exch def} def % set the graphic's origin (usage: 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. % popfirst % popfirst /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. % 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. % internalshow -- /internalshow {show} def % This is an internal routine to alternate between determining the % bounding box for stringsize and stroking various ornaments. % 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. % testchar /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. % 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. % 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. % 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. % updatebbox -- /restorebbox { /bbury exch def /bburx exch def /bblly exch def /bbllx exch def } def % Push the accumulated bounding box onto the stack. % -- pushbbox /pushbbox {bbllx bblly bburx bbury} def % Make the relative bounding box relative to the currentpoint. % inflate /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. % relative /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. % stringsize /stringsize { pushbbox /internalshow load /internalstroke load 7 -1 roll q nulldevice 0 0 m nullinternalshow nullinternalstroke resetbbox recshow /internalstroke exch def /internalshow exch def pushbbox 8 -4 roll restorebbox Q } def % Calculate values for string positioning. /calcval {4 copy 3 -1 roll sub /widy exch def sub neg /widx exch def pop pop /dy exch def /dx exch def} def % Utilities to position a string. % First letter (U=upper, C=center, B=baseline, L=lower) % Second letter (L=left, C=center, R=right) /align [ {calcval dx neg widy dy add neg rmoveto} % UL {calcval dx neg widy 2 div dy add neg rmoveto} % CL {calcval dx neg 0 rmoveto} % BL {calcval dx neg dy neg rmoveto} % LL {calcval widx dx add neg widy dy add neg rmoveto} % UR {calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR {calcval widx dx add neg 0 rmoveto} % BR {calcval widx dx add neg dy neg rmoveto} % LR {calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC {calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC {calcval widx 2 div dx add neg 0 rmoveto} % BC {calcval widx 2 div dx add neg dy neg rmoveto} % LC ] def /vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec q inflate relative frame exch exec Q recshow Q} def end /procDict exch def %%EndProlog %%BeginSetup save procDict begin printColorMap begin 595 791 setpagesize 20 20 20 20 setmargins 0 0 setorigin 255 549 setsize fittopage portrait imagescale cliptobounds setbasematrix /Helvetica 10 sf defaultGraphicsState %%EndSetup 0.00000 0.00000 0.00000 RG [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix cliprestore 1.00000 1.00000 1.00000 RG newpath 0.00000 0.00000 m 255.000 0.00000 l 255.000 549.000 l 0.00000 549.000 l 0.00000 0.00000 l h f 0.00000 0.00000 0.00000 RG 0 0 255 549 rc q [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] concat [ 1.00000 0.00000 0.00000 1.00000 -30.0000 -34.0000 ] concat 1.00000 1.00000 1.00000 RG newpath 30.0000 34.0000 m 285.000 34.0000 l 285.000 583.000 l 30.0000 583.000 l 30.0000 34.0000 l h f 0.00000 0.00000 0.00000 RG [ 1.00000 0.00000 0.00000 1.00000 -30.0000 -34.0000 ] defaultmatrix matrix concatmatrix setmatrix [ 1.00000 0.00000 0.00000 1.00000 -30.0000 -34.0000 ] 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 -30.0000 -34.0000 ] defaultmatrix matrix concatmatrix setmatrix q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 55.8000 49.5000 m 135.800 49.5000 l 135.800 84.5000 l 55.8000 84.5000 l h f 0.00000 0.00000 0.00000 RG newpath 55.8000 49.5000 m 135.800 49.5000 l 135.800 84.5000 l 55.8000 84.5000 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 74.6337 70.5354 m 74.6337 64.0979 l 75.4775 64.0979 l 75.4775 70.5354 l 74.6337 70.5354 l h 76.8842 70.5354 m 76.8842 65.8635 l 77.6030 65.8635 l 77.6030 66.5354 l 77.9363 66.0250 78.4311 65.7698 79.0874 65.7698 c 79.3686 65.7698 79.6264 65.8193 79.8608 65.9182 c 80.0952 66.0172 80.2696 66.1474 80.3842 66.3088 c 80.4988 66.4703 80.5821 66.6656 80.6342 66.8948 c 80.6655 67.0406 80.6811 67.2958 80.6811 67.6604 c 80.6811 70.5354 l 79.8842 70.5354 l 79.8842 67.6917 l 79.8842 67.3687 79.8530 67.1292 79.7905 66.9729 c 79.7280 66.8167 79.6186 66.6890 79.4624 66.5901 c 79.3061 66.4911 79.1238 66.4417 78.9155 66.4417 c 78.5821 66.4417 78.2931 66.5484 78.0483 66.7620 c 77.8035 66.9755 77.6811 67.3844 77.6811 67.9885 c 77.6811 70.5354 l 76.8842 70.5354 l h 81.8896 65.0042 m 81.8896 64.0979 l 82.6865 64.0979 l 82.6865 65.0042 l 81.8896 65.0042 l h 81.8896 70.5354 m 81.8896 65.8635 l 82.6865 65.8635 l 82.6865 70.5354 l 81.8896 70.5354 l h 86.9360 68.8323 m 87.7172 68.9260 l 87.6339 69.4677 87.4152 69.8896 87.0610 70.1917 c 86.7068 70.4937 86.2745 70.6448 85.7641 70.6448 c 85.1287 70.6448 84.6183 70.4364 84.2329 70.0198 c 83.8474 69.6031 83.6547 69.0042 83.6547 68.2229 c 83.6547 67.7125 83.7381 67.2698 83.9047 66.8948 c 84.0714 66.5198 84.3240 66.2385 84.6626 66.0510 c 85.0011 65.8635 85.3735 65.7698 85.7797 65.7698 c 86.2797 65.7698 86.6912 65.8974 87.0141 66.1526 c 87.3370 66.4078 87.5454 66.7698 87.6391 67.2385 c 86.8735 67.3635 l 86.8006 67.0510 86.6704 66.8140 86.4829 66.6526 c 86.2954 66.4911 86.0714 66.4104 85.8110 66.4104 c 85.4047 66.4104 85.0792 66.5536 84.8344 66.8401 c 84.5896 67.1265 84.4672 67.5771 84.4672 68.1917 c 84.4672 68.8271 84.5870 69.2854 84.8266 69.5667 c 85.0662 69.8479 85.3787 69.9885 85.7641 69.9885 c 86.0766 69.9885 86.3370 69.8948 86.5454 69.7073 c 86.7537 69.5198 86.8839 69.2281 86.9360 68.8323 c h 88.3891 65.0042 m 88.3891 64.0979 l 89.1860 64.0979 l 89.1860 65.0042 l 88.3891 65.0042 l h 88.3891 70.5354 m 88.3891 65.8635 l 89.1860 65.8635 l 89.1860 70.5354 l 88.3891 70.5354 l h 93.4355 69.9573 m 93.1438 70.2073 92.8626 70.3844 92.5918 70.4885 c 92.3209 70.5927 92.0293 70.6448 91.7168 70.6448 c 91.2063 70.6448 90.8131 70.5198 90.5371 70.2698 c 90.2610 70.0198 90.1230 69.6969 90.1230 69.3010 c 90.1230 69.0719 90.1751 68.8635 90.2793 68.6760 c 90.3834 68.4885 90.5188 68.3375 90.6855 68.2229 c 90.8522 68.1083 91.0397 68.0198 91.2480 67.9573 c 91.4043 67.9260 91.6386 67.8896 91.9511 67.8479 c 92.5970 67.7750 93.0709 67.6812 93.3730 67.5667 c 93.3730 67.4625 93.3730 67.3948 93.3730 67.3635 c 93.3730 67.0406 93.3001 66.8167 93.1543 66.6917 c 92.9459 66.5042 92.6438 66.4104 92.2480 66.4104 c 91.8730 66.4104 91.5970 66.4755 91.4199 66.6057 c 91.2428 66.7359 91.1126 66.9677 91.0293 67.3010 c 90.2636 67.2073 l 90.3261 66.8739 90.4381 66.6057 90.5996 66.4026 c 90.7610 66.1995 90.9954 66.0432 91.3027 65.9338 c 91.6100 65.8245 91.9615 65.7698 92.3574 65.7698 c 92.7636 65.7698 93.0891 65.8167 93.3339 65.9104 c 93.5787 66.0042 93.7610 66.1213 93.8808 66.2620 c 94.0006 66.4026 94.0813 66.5823 94.1230 66.8010 c 94.1543 66.9364 94.1699 67.1760 94.1699 67.5198 c 94.1699 68.5823 l 94.1699 69.3114 94.1855 69.7750 94.2168 69.9729 c 94.2480 70.1708 94.3157 70.3583 94.4199 70.5354 c 93.5918 70.5354 l 93.5084 70.3687 93.4563 70.1760 93.4355 69.9573 c h 93.3730 68.1917 m 93.0813 68.3062 92.6490 68.4052 92.0761 68.4885 c 91.7532 68.5406 91.5240 68.5953 91.3886 68.6526 c 91.2532 68.7099 91.1490 68.7958 91.0761 68.9104 c 91.0032 69.0250 90.9668 69.1500 90.9668 69.2854 c 90.9668 69.4937 91.0449 69.6682 91.2011 69.8088 c 91.3574 69.9495 91.5918 70.0198 91.9043 70.0198 c 92.2063 70.0198 92.4772 69.9521 92.7168 69.8167 c 92.9563 69.6812 93.1334 69.4989 93.2480 69.2698 c 93.3313 69.0927 93.3730 68.8323 93.3730 68.4885 c 93.3730 68.1917 l h 95.3784 70.5354 m 95.3784 64.0979 l 96.1596 64.0979 l 96.1596 70.5354 l 95.3784 70.5354 l h 97.3935 65.0042 m 97.3935 64.0979 l 98.1904 64.0979 l 98.1904 65.0042 l 97.3935 65.0042 l h 97.3935 70.5354 m 97.3935 65.8635 l 98.1904 65.8635 l 98.1904 70.5354 l 97.3935 70.5354 l h 98.9711 70.5354 m 98.9711 69.8948 l 101.940 66.4885 l 101.607 66.4989 101.310 66.5042 101.049 66.5042 c 99.1586 66.5042 l 99.1586 65.8635 l 102.971 65.8635 l 102.971 66.3948 l 100.440 69.3479 l 99.9555 69.8948 l 100.310 69.8635 100.643 69.8479 100.956 69.8479 c 103.112 69.8479 l 103.112 70.5354 l 98.9711 70.5354 l h 106.940 69.9573 m 106.648 70.2073 106.367 70.3844 106.096 70.4885 c 105.825 70.5927 105.534 70.6448 105.221 70.6448 c 104.711 70.6448 104.317 70.5198 104.041 70.2698 c 103.765 70.0198 103.627 69.6969 103.627 69.3010 c 103.627 69.0719 103.679 68.8635 103.784 68.6760 c 103.888 68.4885 104.023 68.3375 104.190 68.2229 c 104.357 68.1083 104.544 68.0198 104.752 67.9573 c 104.909 67.9260 105.143 67.8896 105.456 67.8479 c 106.101 67.7750 106.575 67.6812 106.877 67.5667 c 106.877 67.4625 106.877 67.3948 106.877 67.3635 c 106.877 67.0406 106.804 66.8167 106.659 66.6917 c 106.450 66.5042 106.148 66.4104 105.752 66.4104 c 105.377 66.4104 105.101 66.4755 104.924 66.6057 c 104.747 66.7359 104.617 66.9677 104.534 67.3010 c 103.768 67.2073 l 103.831 66.8739 103.942 66.6057 104.104 66.4026 c 104.265 66.1995 104.500 66.0432 104.807 65.9338 c 105.114 65.8245 105.466 65.7698 105.862 65.7698 c 106.268 65.7698 106.594 65.8167 106.838 65.9104 c 107.083 66.0042 107.265 66.1213 107.385 66.2620 c 107.505 66.4026 107.586 66.5823 107.627 66.8010 c 107.659 66.9364 107.674 67.1760 107.674 67.5198 c 107.674 68.5823 l 107.674 69.3114 107.690 69.7750 107.721 69.9729 c 107.752 70.1708 107.820 70.3583 107.924 70.5354 c 107.096 70.5354 l 107.013 70.3687 106.961 70.1760 106.940 69.9573 c h 106.877 68.1917 m 106.586 68.3062 106.153 68.4052 105.581 68.4885 c 105.258 68.5406 105.028 68.5953 104.893 68.6526 c 104.758 68.7099 104.653 68.7958 104.581 68.9104 c 104.508 69.0250 104.471 69.1500 104.471 69.2854 c 104.471 69.4937 104.549 69.6682 104.706 69.8088 c 104.862 69.9495 105.096 70.0198 105.409 70.0198 c 105.711 70.0198 105.982 69.9521 106.221 69.8167 c 106.461 69.6812 106.638 69.4989 106.752 69.2698 c 106.836 69.0927 106.877 68.8323 106.877 68.4885 c 106.877 68.1917 l h 111.945 68.8323 m 112.727 68.9260 l 112.643 69.4677 112.424 69.8896 112.070 70.1917 c 111.716 70.4937 111.284 70.6448 110.773 70.6448 c 110.138 70.6448 109.628 70.4364 109.242 70.0198 c 108.857 69.6031 108.664 69.0042 108.664 68.2229 c 108.664 67.7125 108.747 67.2698 108.914 66.8948 c 109.081 66.5198 109.333 66.2385 109.672 66.0510 c 110.010 65.8635 110.383 65.7698 110.789 65.7698 c 111.289 65.7698 111.700 65.8974 112.023 66.1526 c 112.346 66.4078 112.555 66.7698 112.648 67.2385 c 111.883 67.3635 l 111.810 67.0510 111.680 66.8140 111.492 66.6526 c 111.305 66.4911 111.081 66.4104 110.820 66.4104 c 110.414 66.4104 110.088 66.5536 109.844 66.8401 c 109.599 67.1265 109.477 67.5771 109.477 68.1917 c 109.477 68.8271 109.596 69.2854 109.836 69.5667 c 110.075 69.8479 110.388 69.9885 110.773 69.9885 c 111.086 69.9885 111.346 69.8948 111.555 69.7073 c 111.763 69.5198 111.893 69.2281 111.945 68.8323 c h 116.586 69.0354 m 117.414 69.1292 l 117.279 69.6083 117.036 69.9807 116.687 70.2463 c 116.338 70.5120 115.893 70.6448 115.352 70.6448 c 114.674 70.6448 114.135 70.4338 113.734 70.0120 c 113.333 69.5901 113.133 68.9989 113.133 68.2385 c 113.133 67.4573 113.336 66.8505 113.742 66.4182 c 114.148 65.9859 114.674 65.7698 115.320 65.7698 c 115.945 65.7698 116.453 65.9807 116.844 66.4026 c 117.234 66.8245 117.430 67.4208 117.430 68.1917 c 117.430 68.2437 117.430 68.3167 117.430 68.4104 c 113.945 68.4104 l 113.977 68.9208 114.122 69.3114 114.383 69.5823 c 114.643 69.8531 114.971 69.9885 115.367 69.9885 c 115.659 69.9885 115.906 69.9130 116.109 69.7620 c 116.312 69.6109 116.471 69.3687 116.586 69.0354 c h 113.992 67.7542 m 116.602 67.7542 l 116.570 67.3583 116.471 67.0614 116.305 66.8635 c 116.055 66.5614 115.727 66.4104 115.320 66.4104 c 114.956 66.4104 114.651 66.5328 114.406 66.7776 c 114.161 67.0224 114.023 67.3479 113.992 67.7542 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 55.8000 119.500 m 135.800 119.500 l 135.800 154.500 l 55.8000 154.500 l h f 0.00000 0.00000 0.00000 RG newpath 55.8000 119.500 m 135.800 119.500 l 135.800 154.500 l 55.8000 154.500 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 73.7270 140.535 m 73.7270 139.739 l 77.0239 135.614 l 77.2530 135.322 77.4770 135.067 77.6958 134.848 c 74.0864 134.848 l 74.0864 134.098 l 78.7114 134.098 l 78.7114 134.848 l 75.0864 139.317 l 74.6958 139.770 l 78.8208 139.770 l 78.8208 140.535 l 73.7270 140.535 l h 79.9121 140.535 m 79.9121 135.864 l 80.6933 135.864 l 80.6933 140.535 l 79.9121 140.535 l h 79.3808 134.535 m 79.9746 133.301 l 81.0058 133.301 l 80.0371 134.535 l 79.3808 134.535 l h 81.8188 139.145 m 82.6001 139.020 l 82.6417 139.332 82.7641 139.572 82.9672 139.739 c 83.1704 139.905 83.4490 139.989 83.8032 139.989 c 84.1678 139.989 84.4386 139.916 84.6157 139.770 c 84.7928 139.624 84.8813 139.452 84.8813 139.254 c 84.8813 139.067 84.8032 138.926 84.6469 138.832 c 84.5323 138.759 84.2615 138.666 83.8344 138.551 c 83.2511 138.405 82.8474 138.280 82.6235 138.176 c 82.3995 138.072 82.2303 137.926 82.1157 137.739 c 82.0011 137.551 81.9438 137.343 81.9438 137.114 c 81.9438 136.905 81.9907 136.712 82.0844 136.535 c 82.1782 136.358 82.3084 136.207 82.4751 136.082 c 82.6001 135.999 82.7693 135.926 82.9829 135.864 c 83.1964 135.801 83.4230 135.770 83.6626 135.770 c 84.0271 135.770 84.3474 135.822 84.6235 135.926 c 84.8995 136.030 85.1053 136.171 85.2407 136.348 c 85.3761 136.525 85.4698 136.765 85.5219 137.067 c 84.7407 137.176 l 84.7094 136.936 84.6079 136.749 84.4360 136.614 c 84.2641 136.478 84.0271 136.410 83.7251 136.410 c 83.3605 136.410 83.1001 136.470 82.9438 136.590 c 82.7876 136.710 82.7094 136.853 82.7094 137.020 c 82.7094 137.124 82.7407 137.212 82.8032 137.285 c 82.8657 137.379 82.9698 137.452 83.1157 137.504 c 83.1886 137.535 83.4178 137.603 83.8032 137.707 c 84.3657 137.853 84.7589 137.973 84.9829 138.067 c 85.2068 138.160 85.3813 138.298 85.5063 138.481 c 85.6313 138.663 85.6938 138.890 85.6938 139.160 c 85.6938 139.431 85.6157 139.681 85.4594 139.910 c 85.3032 140.140 85.0818 140.319 84.7954 140.449 c 84.5089 140.580 84.1782 140.645 83.8032 140.645 c 83.1990 140.645 82.7381 140.517 82.4204 140.262 c 82.1027 140.007 81.9021 139.634 81.8188 139.145 c h 86.6313 140.535 m 86.6313 134.098 l 87.4282 134.098 l 87.4282 137.770 l 89.3032 135.864 l 90.3188 135.864 l 88.5376 137.598 l 90.5063 140.535 l 89.5219 140.535 l 87.9907 138.145 l 87.4282 138.692 l 87.4282 140.535 l 86.6313 140.535 l h 94.1782 139.957 m 93.8865 140.207 93.6053 140.384 93.3344 140.489 c 93.0636 140.593 92.7719 140.645 92.4594 140.645 c 91.9490 140.645 91.5558 140.520 91.2797 140.270 c 91.0037 140.020 90.8657 139.697 90.8657 139.301 c 90.8657 139.072 90.9178 138.864 91.0219 138.676 c 91.1261 138.489 91.2615 138.337 91.4282 138.223 c 91.5948 138.108 91.7823 138.020 91.9907 137.957 c 92.1469 137.926 92.3813 137.890 92.6938 137.848 c 93.3396 137.775 93.8136 137.681 94.1157 137.567 c 94.1157 137.462 94.1157 137.395 94.1157 137.364 c 94.1157 137.041 94.0428 136.817 93.8969 136.692 c 93.6886 136.504 93.3865 136.410 92.9907 136.410 c 92.6157 136.410 92.3396 136.476 92.1626 136.606 c 91.9855 136.736 91.8553 136.968 91.7719 137.301 c 91.0063 137.207 l 91.0688 136.874 91.1808 136.606 91.3422 136.403 c 91.5037 136.199 91.7381 136.043 92.0454 135.934 c 92.3527 135.824 92.7042 135.770 93.1001 135.770 c 93.5063 135.770 93.8318 135.817 94.0766 135.910 c 94.3214 136.004 94.5037 136.121 94.6235 136.262 c 94.7433 136.403 94.8240 136.582 94.8657 136.801 c 94.8969 136.936 94.9126 137.176 94.9126 137.520 c 94.9126 138.582 l 94.9126 139.311 94.9282 139.775 94.9594 139.973 c 94.9907 140.171 95.0584 140.358 95.1626 140.535 c 94.3344 140.535 l 94.2511 140.369 94.1990 140.176 94.1782 139.957 c h 94.1157 138.192 m 93.8240 138.306 93.3917 138.405 92.8188 138.489 c 92.4959 138.541 92.2667 138.595 92.1313 138.653 c 91.9959 138.710 91.8917 138.796 91.8188 138.910 c 91.7459 139.025 91.7094 139.150 91.7094 139.285 c 91.7094 139.494 91.7876 139.668 91.9438 139.809 c 92.1001 139.949 92.3344 140.020 92.6469 140.020 c 92.9490 140.020 93.2198 139.952 93.4594 139.817 c 93.6990 139.681 93.8761 139.499 93.9907 139.270 c 94.0740 139.093 94.1157 138.832 94.1157 138.489 c 94.1157 138.192 l h 96.1367 140.535 m 96.1367 135.864 l 96.8554 135.864 l 96.8554 136.535 l 97.1888 136.025 97.6835 135.770 98.3398 135.770 c 98.6210 135.770 98.8789 135.819 99.1132 135.918 c 99.3476 136.017 99.5221 136.147 99.6367 136.309 c 99.7513 136.470 99.8346 136.666 99.8867 136.895 c 99.9179 137.041 99.9335 137.296 99.9335 137.660 c 99.9335 140.535 l 99.1367 140.535 l 99.1367 137.692 l 99.1367 137.369 99.1054 137.129 99.0429 136.973 c 98.9804 136.817 98.8710 136.689 98.7148 136.590 c 98.5585 136.491 98.3763 136.442 98.1679 136.442 c 97.8346 136.442 97.5455 136.548 97.3007 136.762 c 97.0559 136.976 96.9335 137.384 96.9335 137.989 c 96.9335 140.535 l 96.1367 140.535 l h 101.423 140.535 m 101.423 135.864 l 102.205 135.864 l 102.205 140.535 l 101.423 140.535 l h 100.892 134.535 m 101.486 133.301 l 102.517 133.301 l 101.548 134.535 l 100.892 134.535 l h 109.174 140.535 m 109.174 139.942 l 108.872 140.410 108.435 140.645 107.862 140.645 c 107.497 140.645 107.159 140.541 106.846 140.332 c 106.534 140.124 106.291 139.837 106.120 139.473 c 105.948 139.108 105.862 138.686 105.862 138.207 c 105.862 137.739 105.940 137.314 106.096 136.934 c 106.252 136.554 106.484 136.265 106.791 136.067 c 107.099 135.869 107.445 135.770 107.831 135.770 c 108.112 135.770 108.362 135.827 108.581 135.942 c 108.799 136.056 108.976 136.212 109.112 136.410 c 109.112 134.098 l 109.909 134.098 l 109.909 140.535 l 109.174 140.535 l h 106.674 138.207 m 106.674 138.801 106.799 139.246 107.049 139.543 c 107.299 139.840 107.596 139.989 107.940 139.989 c 108.284 139.989 108.578 139.848 108.823 139.567 c 109.067 139.285 109.190 138.853 109.190 138.270 c 109.190 137.634 109.065 137.166 108.815 136.864 c 108.565 136.561 108.263 136.410 107.909 136.410 c 107.554 136.410 107.260 136.556 107.026 136.848 c 106.791 137.140 106.674 137.593 106.674 138.207 c h 114.195 139.957 m 113.904 140.207 113.622 140.384 113.352 140.489 c 113.081 140.593 112.789 140.645 112.477 140.645 c 111.966 140.645 111.573 140.520 111.297 140.270 c 111.021 140.020 110.883 139.697 110.883 139.301 c 110.883 139.072 110.935 138.864 111.039 138.676 c 111.143 138.489 111.279 138.337 111.445 138.223 c 111.612 138.108 111.799 138.020 112.008 137.957 c 112.164 137.926 112.398 137.890 112.711 137.848 c 113.357 137.775 113.831 137.681 114.133 137.567 c 114.133 137.462 114.133 137.395 114.133 137.364 c 114.133 137.041 114.060 136.817 113.914 136.692 c 113.706 136.504 113.404 136.410 113.008 136.410 c 112.633 136.410 112.357 136.476 112.180 136.606 c 112.003 136.736 111.872 136.968 111.789 137.301 c 111.023 137.207 l 111.086 136.874 111.198 136.606 111.359 136.403 c 111.521 136.199 111.755 136.043 112.062 135.934 c 112.370 135.824 112.721 135.770 113.117 135.770 c 113.523 135.770 113.849 135.817 114.094 135.910 c 114.338 136.004 114.521 136.121 114.641 136.262 c 114.760 136.403 114.841 136.582 114.883 136.801 c 114.914 136.936 114.930 137.176 114.930 137.520 c 114.930 138.582 l 114.930 139.311 114.945 139.775 114.977 139.973 c 115.008 140.171 115.075 140.358 115.180 140.535 c 114.352 140.535 l 114.268 140.369 114.216 140.176 114.195 139.957 c h 114.133 138.192 m 113.841 138.306 113.409 138.405 112.836 138.489 c 112.513 138.541 112.284 138.595 112.148 138.653 c 112.013 138.710 111.909 138.796 111.836 138.910 c 111.763 139.025 111.727 139.150 111.727 139.285 c 111.727 139.494 111.805 139.668 111.961 139.809 c 112.117 139.949 112.352 140.020 112.664 140.020 c 112.966 140.020 113.237 139.952 113.477 139.817 c 113.716 139.681 113.893 139.499 114.008 139.270 c 114.091 139.093 114.133 138.832 114.133 138.489 c 114.133 138.192 l h 117.888 139.832 m 117.998 140.520 l 117.768 140.572 117.570 140.598 117.404 140.598 c 117.112 140.598 116.888 140.551 116.732 140.457 c 116.576 140.364 116.464 140.244 116.396 140.098 c 116.328 139.952 116.294 139.645 116.294 139.176 c 116.294 136.489 l 115.716 136.489 l 115.716 135.864 l 116.294 135.864 l 116.294 134.707 l 117.091 134.239 l 117.091 135.864 l 117.888 135.864 l 117.888 136.489 l 117.091 136.489 l 117.091 139.207 l 117.091 139.436 117.104 139.582 117.130 139.645 c 117.156 139.707 117.201 139.759 117.263 139.801 c 117.326 139.843 117.414 139.864 117.529 139.864 c 117.623 139.864 117.742 139.853 117.888 139.832 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 55.8000 189.500 m 135.800 189.500 l 135.800 224.500 l 55.8000 224.500 l h f 0.00000 0.00000 0.00000 RG newpath 55.8000 189.500 m 135.800 189.500 l 135.800 224.500 l 55.8000 224.500 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 65.9741 210.535 m 65.9741 204.098 l 68.1928 204.098 l 68.7032 204.098 69.0887 204.129 69.3491 204.192 c 69.7137 204.275 70.0262 204.426 70.2866 204.645 c 70.6303 204.936 70.8855 205.304 71.0522 205.746 c 71.2189 206.189 71.3022 206.702 71.3022 207.285 c 71.3022 207.775 71.2449 208.207 71.1303 208.582 c 71.0157 208.957 70.8699 209.270 70.6928 209.520 c 70.5157 209.770 70.3204 209.965 70.1069 210.106 c 69.8933 210.246 69.6381 210.353 69.3413 210.426 c 69.0444 210.499 68.6980 210.535 68.3022 210.535 c 65.9741 210.535 l h 66.8335 209.770 m 68.2085 209.770 l 68.6355 209.770 68.9689 209.731 69.2085 209.653 c 69.4480 209.574 69.6407 209.462 69.7866 209.317 c 69.9845 209.119 70.1407 208.848 70.2553 208.504 c 70.3699 208.160 70.4272 207.749 70.4272 207.270 c 70.4272 206.593 70.3178 206.074 70.0991 205.715 c 69.8803 205.356 69.6095 205.114 69.2866 204.989 c 69.0574 204.895 68.6928 204.848 68.1928 204.848 c 66.8335 204.848 l 66.8335 209.770 l h 72.0830 208.207 m 72.0830 207.343 72.3225 206.702 72.8017 206.285 c 73.2080 205.942 73.6975 205.770 74.2705 205.770 c 74.9163 205.770 75.4423 205.978 75.8486 206.395 c 76.2548 206.811 76.4580 207.390 76.4580 208.129 c 76.4580 208.733 76.3668 209.207 76.1845 209.551 c 76.0022 209.895 75.7392 210.163 75.3955 210.356 c 75.0517 210.548 74.6767 210.645 74.2705 210.645 c 73.6142 210.645 73.0856 210.434 72.6845 210.012 c 72.2835 209.590 72.0830 208.989 72.0830 208.207 c h 72.8955 208.207 m 72.8955 208.801 73.0257 209.246 73.2861 209.543 c 73.5465 209.840 73.8746 209.989 74.2705 209.989 c 74.6663 209.989 74.9944 209.840 75.2548 209.543 c 75.5153 209.246 75.6455 208.791 75.6455 208.176 c 75.6455 207.603 75.5153 207.166 75.2548 206.864 c 74.9944 206.561 74.6663 206.410 74.2705 206.410 c 73.8746 206.410 73.5465 206.559 73.2861 206.856 c 73.0257 207.153 72.8955 207.603 72.8955 208.207 c h 77.3696 210.535 m 77.3696 205.864 l 78.0883 205.864 l 78.0883 206.582 l 78.2654 206.249 78.4321 206.030 78.5883 205.926 c 78.7446 205.822 78.9165 205.770 79.1040 205.770 c 79.3644 205.770 79.6352 205.853 79.9165 206.020 c 79.6352 206.754 l 79.4477 206.640 79.2550 206.582 79.0571 206.582 c 78.8904 206.582 78.7368 206.634 78.5961 206.739 c 78.4555 206.843 78.3540 206.989 78.2915 207.176 c 78.2081 207.457 78.1665 207.765 78.1665 208.098 c 78.1665 210.535 l 77.3696 210.535 l h 83.4448 210.535 m 83.4448 209.848 l 83.0802 210.379 82.5854 210.645 81.9604 210.645 c 81.6896 210.645 81.4344 210.590 81.1948 210.481 c 80.9552 210.371 80.7755 210.239 80.6557 210.082 c 80.5359 209.926 80.4552 209.733 80.4135 209.504 c 80.3823 209.348 80.3667 209.098 80.3667 208.754 c 80.3667 205.864 l 81.1479 205.864 l 81.1479 208.457 l 81.1479 208.874 81.1687 209.150 81.2104 209.285 c 81.2521 209.494 81.3536 209.658 81.5151 209.778 c 81.6765 209.897 81.8771 209.957 82.1167 209.957 c 82.3562 209.957 82.5802 209.897 82.7885 209.778 c 82.9969 209.658 83.1427 209.494 83.2260 209.285 c 83.3094 209.077 83.3510 208.770 83.3510 208.364 c 83.3510 205.864 l 84.1479 205.864 l 84.1479 210.535 l 83.4448 210.535 l h 88.4345 208.832 m 89.2158 208.926 l 89.1324 209.468 88.9137 209.890 88.5595 210.192 c 88.2054 210.494 87.7731 210.645 87.2626 210.645 c 86.6272 210.645 86.1168 210.436 85.7314 210.020 c 85.3460 209.603 85.1533 209.004 85.1533 208.223 c 85.1533 207.712 85.2366 207.270 85.4033 206.895 c 85.5699 206.520 85.8225 206.239 86.1611 206.051 c 86.4996 205.864 86.8720 205.770 87.2783 205.770 c 87.7783 205.770 88.1897 205.897 88.5126 206.153 c 88.8356 206.408 89.0439 206.770 89.1376 207.239 c 88.3720 207.364 l 88.2991 207.051 88.1689 206.814 87.9814 206.653 c 87.7939 206.491 87.5699 206.410 87.3095 206.410 c 86.9033 206.410 86.5778 206.554 86.3330 206.840 c 86.0882 207.127 85.9658 207.577 85.9658 208.192 c 85.9658 208.827 86.0856 209.285 86.3251 209.567 c 86.5647 209.848 86.8772 209.989 87.2626 209.989 c 87.5751 209.989 87.8356 209.895 88.0439 209.707 c 88.2522 209.520 88.3824 209.228 88.4345 208.832 c h 87.3720 204.051 m 87.8564 203.301 l 88.7470 203.301 l 87.7626 204.535 l 86.9189 204.535 l 85.9658 203.301 l 86.8720 203.301 l 87.3720 204.051 l h 93.0751 209.035 m 93.9033 209.129 l 93.7679 209.608 93.5257 209.981 93.1767 210.246 c 92.8278 210.512 92.3824 210.645 91.8408 210.645 c 91.1637 210.645 90.6246 210.434 90.2236 210.012 c 89.8225 209.590 89.6220 208.999 89.6220 208.239 c 89.6220 207.457 89.8251 206.851 90.2314 206.418 c 90.6376 205.986 91.1637 205.770 91.8095 205.770 c 92.4345 205.770 92.9423 205.981 93.3330 206.403 c 93.7236 206.824 93.9189 207.421 93.9189 208.192 c 93.9189 208.244 93.9189 208.317 93.9189 208.410 c 90.4345 208.410 l 90.4658 208.921 90.6116 209.311 90.8720 209.582 c 91.1324 209.853 91.4606 209.989 91.8564 209.989 c 92.1481 209.989 92.3955 209.913 92.5986 209.762 c 92.8017 209.611 92.9606 209.369 93.0751 209.035 c h 90.4814 207.754 m 93.0908 207.754 l 93.0595 207.358 92.9606 207.061 92.7939 206.864 c 92.5439 206.561 92.2158 206.410 91.8095 206.410 c 91.4449 206.410 91.1403 206.533 90.8955 206.778 c 90.6507 207.022 90.5126 207.348 90.4814 207.754 c h 94.8930 210.535 m 94.8930 205.864 l 95.6118 205.864 l 95.6118 206.535 l 95.9451 206.025 96.4399 205.770 97.0961 205.770 c 97.3774 205.770 97.6352 205.819 97.8696 205.918 c 98.1040 206.017 98.2784 206.147 98.3930 206.309 c 98.5076 206.470 98.5909 206.666 98.6430 206.895 c 98.6743 207.041 98.6899 207.296 98.6899 207.660 c 98.6899 210.535 l 97.8930 210.535 l 97.8930 207.692 l 97.8930 207.369 97.8618 207.129 97.7993 206.973 c 97.7368 206.817 97.6274 206.689 97.4711 206.590 c 97.3149 206.491 97.1326 206.442 96.9243 206.442 c 96.5909 206.442 96.3019 206.548 96.0571 206.762 c 95.8123 206.976 95.6899 207.384 95.6899 207.989 c 95.6899 210.535 l 94.8930 210.535 l h 100.180 210.535 m 100.180 205.864 l 100.961 205.864 l 100.961 210.535 l 100.180 210.535 l h 99.6484 204.535 m 100.242 203.301 l 101.273 203.301 l 100.305 204.535 l 99.6484 204.535 l h 104.477 210.535 m 104.477 209.895 l 107.446 206.489 l 107.113 206.499 106.816 206.504 106.556 206.504 c 104.665 206.504 l 104.665 205.864 l 108.477 205.864 l 108.477 206.395 l 105.946 209.348 l 105.462 209.895 l 105.816 209.864 106.149 209.848 106.462 209.848 c 108.618 209.848 l 108.618 210.535 l 104.477 210.535 l h 109.399 212.317 m 109.399 205.864 l 110.118 205.864 l 110.118 206.473 l 110.285 206.233 110.475 206.056 110.688 205.942 c 110.902 205.827 111.165 205.770 111.477 205.770 c 111.873 205.770 112.222 205.871 112.524 206.074 c 112.826 206.278 113.056 206.567 113.212 206.942 c 113.368 207.317 113.446 207.723 113.446 208.160 c 113.446 208.640 113.360 209.072 113.188 209.457 c 113.017 209.843 112.769 210.137 112.446 210.340 c 112.123 210.543 111.780 210.645 111.415 210.645 c 111.155 210.645 110.920 210.587 110.712 210.473 c 110.504 210.358 110.332 210.218 110.196 210.051 c 110.196 212.317 l 109.399 212.317 l h 110.118 208.223 m 110.118 208.827 110.241 209.272 110.485 209.559 c 110.730 209.845 111.024 209.989 111.368 209.989 c 111.712 209.989 112.011 209.840 112.267 209.543 c 112.522 209.246 112.649 208.785 112.649 208.160 c 112.649 207.567 112.527 207.121 112.282 206.824 c 112.037 206.528 111.743 206.379 111.399 206.379 c 111.066 206.379 110.769 206.538 110.509 206.856 c 110.248 207.173 110.118 207.629 110.118 208.223 c h 114.389 210.535 m 114.389 205.864 l 115.108 205.864 l 115.108 206.582 l 115.285 206.249 115.452 206.030 115.608 205.926 c 115.764 205.822 115.936 205.770 116.123 205.770 c 116.384 205.770 116.655 205.853 116.936 206.020 c 116.655 206.754 l 116.467 206.640 116.275 206.582 116.077 206.582 c 115.910 206.582 115.756 206.634 115.616 206.739 c 115.475 206.843 115.373 206.989 115.311 207.176 c 115.228 207.457 115.186 207.765 115.186 208.098 c 115.186 210.535 l 114.389 210.535 l h 120.449 209.957 m 120.157 210.207 119.876 210.384 119.605 210.489 c 119.334 210.593 119.042 210.645 118.730 210.645 c 118.220 210.645 117.826 210.520 117.550 210.270 c 117.274 210.020 117.136 209.697 117.136 209.301 c 117.136 209.072 117.188 208.864 117.292 208.676 c 117.397 208.489 117.532 208.337 117.699 208.223 c 117.865 208.108 118.053 208.020 118.261 207.957 c 118.417 207.926 118.652 207.890 118.964 207.848 c 119.610 207.775 120.084 207.681 120.386 207.567 c 120.386 207.462 120.386 207.395 120.386 207.364 c 120.386 207.041 120.313 206.817 120.167 206.692 c 119.959 206.504 119.657 206.410 119.261 206.410 c 118.886 206.410 118.610 206.476 118.433 206.606 c 118.256 206.736 118.126 206.968 118.042 207.301 c 117.277 207.207 l 117.339 206.874 117.451 206.606 117.613 206.403 c 117.774 206.199 118.009 206.043 118.316 205.934 c 118.623 205.824 118.975 205.770 119.371 205.770 c 119.777 205.770 120.102 205.817 120.347 205.910 c 120.592 206.004 120.774 206.121 120.894 206.262 c 121.014 206.403 121.095 206.582 121.136 206.801 c 121.167 206.936 121.183 207.176 121.183 207.520 c 121.183 208.582 l 121.183 209.311 121.199 209.775 121.230 209.973 c 121.261 210.171 121.329 210.358 121.433 210.535 c 120.605 210.535 l 120.522 210.369 120.470 210.176 120.449 209.957 c h 120.386 208.192 m 120.095 208.306 119.662 208.405 119.089 208.489 c 118.766 208.541 118.537 208.595 118.402 208.653 c 118.266 208.710 118.162 208.796 118.089 208.910 c 118.016 209.025 117.980 209.150 117.980 209.285 c 117.980 209.494 118.058 209.668 118.214 209.809 c 118.371 209.949 118.605 210.020 118.917 210.020 c 119.220 210.020 119.490 209.952 119.730 209.817 c 119.970 209.681 120.147 209.499 120.261 209.270 c 120.345 209.093 120.386 208.832 120.386 208.489 c 120.386 208.192 l h 119.152 204.535 m 119.746 203.301 l 120.777 203.301 l 119.808 204.535 l 119.152 204.535 l h 123.704 210.535 m 121.923 205.864 l 122.767 205.864 l 123.767 208.660 l 123.871 208.962 123.970 209.275 124.063 209.598 c 124.136 209.358 124.235 209.067 124.360 208.723 c 125.392 205.864 l 126.204 205.864 l 124.438 210.535 l 123.704 210.535 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 55.8000 259.500 m 135.800 259.500 l 135.800 294.500 l 55.8000 294.500 l h f 0.00000 0.00000 0.00000 RG newpath 55.8000 259.500 m 135.800 259.500 l 135.800 294.500 l 55.8000 294.500 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 70.0700 280.535 m 67.5856 274.098 l 68.5075 274.098 l 70.1794 278.770 l 70.3148 279.145 70.4242 279.499 70.5075 279.832 c 70.6117 279.478 70.7315 279.124 70.8669 278.770 c 72.6013 274.098 l 73.4763 274.098 l 70.9450 280.535 l 70.0700 280.535 l h 74.1042 282.332 m 74.0105 281.598 l 74.1875 281.640 74.3386 281.660 74.4636 281.660 c 74.6407 281.660 74.7813 281.632 74.8855 281.574 c 74.9896 281.517 75.0782 281.436 75.1511 281.332 c 75.1927 281.249 75.2709 281.051 75.3855 280.739 c 75.4063 280.697 75.4323 280.634 75.4636 280.551 c 73.6823 275.864 l 74.5417 275.864 l 75.5105 278.567 l 75.6355 278.910 75.7500 279.270 75.8542 279.645 c 75.9375 279.291 76.0417 278.936 76.1667 278.582 c 77.1667 275.864 l 77.9636 275.864 l 76.1823 280.614 l 75.9948 281.124 75.8490 281.478 75.7448 281.676 c 75.5990 281.936 75.4375 282.127 75.2605 282.246 c 75.0834 282.366 74.8646 282.426 74.6042 282.426 c 74.4584 282.426 74.2917 282.395 74.1042 282.332 c h 78.3230 279.145 m 79.1042 279.020 l 79.1459 279.332 79.2683 279.572 79.4714 279.739 c 79.6745 279.905 79.9532 279.989 80.3073 279.989 c 80.6719 279.989 80.9427 279.916 81.1198 279.770 c 81.2969 279.624 81.3855 279.452 81.3855 279.254 c 81.3855 279.067 81.3073 278.926 81.1511 278.832 c 81.0365 278.759 80.7657 278.666 80.3386 278.551 c 79.7552 278.405 79.3516 278.280 79.1276 278.176 c 78.9037 278.072 78.7344 277.926 78.6198 277.739 c 78.5052 277.551 78.4480 277.343 78.4480 277.114 c 78.4480 276.905 78.4948 276.712 78.5886 276.535 c 78.6823 276.358 78.8125 276.207 78.9792 276.082 c 79.1042 275.999 79.2735 275.926 79.4870 275.864 c 79.7006 275.801 79.9271 275.770 80.1667 275.770 c 80.5313 275.770 80.8516 275.822 81.1276 275.926 c 81.4037 276.030 81.6094 276.171 81.7448 276.348 c 81.8802 276.525 81.9740 276.765 82.0261 277.067 c 81.2448 277.176 l 81.2136 276.936 81.1120 276.749 80.9401 276.614 c 80.7683 276.478 80.5313 276.410 80.2292 276.410 c 79.8646 276.410 79.6042 276.470 79.4480 276.590 c 79.2917 276.710 79.2136 276.853 79.2136 277.020 c 79.2136 277.124 79.2448 277.212 79.3073 277.285 c 79.3698 277.379 79.4740 277.452 79.6198 277.504 c 79.6927 277.535 79.9219 277.603 80.3073 277.707 c 80.8698 277.853 81.2631 277.973 81.4870 278.067 c 81.7110 278.160 81.8855 278.298 82.0105 278.481 c 82.1355 278.663 82.1980 278.890 82.1980 279.160 c 82.1980 279.431 82.1198 279.681 81.9636 279.910 c 81.8073 280.140 81.5860 280.319 81.2995 280.449 c 81.0131 280.580 80.6823 280.645 80.3073 280.645 c 79.7032 280.645 79.2422 280.517 78.9245 280.262 c 78.6068 280.007 78.4063 279.634 78.3230 279.145 c h 83.4167 280.535 m 83.4167 275.864 l 84.1980 275.864 l 84.1980 280.535 l 83.4167 280.535 l h 82.8855 274.535 m 83.4792 273.301 l 84.5105 273.301 l 83.5417 274.535 l 82.8855 274.535 l h 85.6203 280.535 m 85.6203 274.098 l 86.4016 274.098 l 86.4016 280.535 l 85.6203 280.535 l h 90.6823 279.957 m 90.3907 280.207 90.1094 280.384 89.8386 280.489 c 89.5677 280.593 89.2761 280.645 88.9636 280.645 c 88.4532 280.645 88.0599 280.520 87.7839 280.270 c 87.5078 280.020 87.3698 279.697 87.3698 279.301 c 87.3698 279.072 87.4219 278.864 87.5261 278.676 c 87.6302 278.489 87.7657 278.337 87.9323 278.223 c 88.0990 278.108 88.2865 278.020 88.4948 277.957 c 88.6511 277.926 88.8855 277.890 89.1980 277.848 c 89.8438 277.775 90.3177 277.681 90.6198 277.567 c 90.6198 277.462 90.6198 277.395 90.6198 277.364 c 90.6198 277.041 90.5469 276.817 90.4011 276.692 c 90.1927 276.504 89.8907 276.410 89.4948 276.410 c 89.1198 276.410 88.8438 276.476 88.6667 276.606 c 88.4896 276.736 88.3594 276.968 88.2761 277.301 c 87.5105 277.207 l 87.5730 276.874 87.6849 276.606 87.8464 276.403 c 88.0078 276.199 88.2422 276.043 88.5495 275.934 c 88.8568 275.824 89.2084 275.770 89.6042 275.770 c 90.0105 275.770 90.3360 275.817 90.5808 275.910 c 90.8256 276.004 91.0078 276.121 91.1276 276.262 c 91.2474 276.403 91.3282 276.582 91.3698 276.801 c 91.4011 276.936 91.4167 277.176 91.4167 277.520 c 91.4167 278.582 l 91.4167 279.311 91.4323 279.775 91.4636 279.973 c 91.4948 280.171 91.5625 280.358 91.6667 280.535 c 90.8386 280.535 l 90.7552 280.369 90.7032 280.176 90.6823 279.957 c h 90.6198 278.192 m 90.3282 278.306 89.8959 278.405 89.3230 278.489 c 89.0000 278.541 88.7709 278.595 88.6355 278.653 c 88.5000 278.710 88.3959 278.796 88.3230 278.910 c 88.2500 279.025 88.2136 279.150 88.2136 279.285 c 88.2136 279.494 88.2917 279.668 88.4480 279.809 c 88.6042 279.949 88.8386 280.020 89.1511 280.020 c 89.4532 280.020 89.7240 279.952 89.9636 279.817 c 90.2032 279.681 90.3802 279.499 90.4948 279.270 c 90.5782 279.093 90.6198 278.832 90.6198 278.489 c 90.6198 278.192 l h 89.3855 274.535 m 89.9792 273.301 l 91.0105 273.301 l 90.0417 274.535 l 89.3855 274.535 l h 92.6408 280.535 m 92.6408 275.864 l 93.3596 275.864 l 93.3596 276.535 l 93.6929 276.025 94.1877 275.770 94.8439 275.770 c 95.1252 275.770 95.3830 275.819 95.6174 275.918 c 95.8518 276.017 96.0262 276.147 96.1408 276.309 c 96.2554 276.470 96.3387 276.666 96.3908 276.895 c 96.4221 277.041 96.4377 277.296 96.4377 277.660 c 96.4377 280.535 l 95.6408 280.535 l 95.6408 277.692 l 95.6408 277.369 95.6096 277.129 95.5471 276.973 c 95.4846 276.817 95.3752 276.689 95.2189 276.590 c 95.0627 276.491 94.8804 276.442 94.6721 276.442 c 94.3387 276.442 94.0497 276.548 93.8049 276.762 c 93.5601 276.976 93.4377 277.384 93.4377 277.989 c 93.4377 280.535 l 92.6408 280.535 l h 97.9274 280.535 m 97.9274 275.864 l 98.7087 275.864 l 98.7087 280.535 l 97.9274 280.535 l h 97.3962 274.535 m 97.9899 273.301 l 99.0212 273.301 l 98.0524 274.535 l 97.3962 274.535 l h 102.225 280.535 m 102.225 279.895 l 105.194 276.489 l 104.861 276.499 104.564 276.504 104.303 276.504 c 102.413 276.504 l 102.413 275.864 l 106.225 275.864 l 106.225 276.395 l 103.694 279.348 l 103.210 279.895 l 103.564 279.864 103.897 279.848 104.210 279.848 c 106.366 279.848 l 106.366 280.535 l 102.225 280.535 l h 107.147 282.317 m 107.147 275.864 l 107.866 275.864 l 107.866 276.473 l 108.033 276.233 108.223 276.056 108.436 275.942 c 108.650 275.827 108.913 275.770 109.225 275.770 c 109.621 275.770 109.970 275.871 110.272 276.074 c 110.574 276.278 110.803 276.567 110.960 276.942 c 111.116 277.317 111.194 277.723 111.194 278.160 c 111.194 278.640 111.108 279.072 110.936 279.457 c 110.764 279.843 110.517 280.137 110.194 280.340 c 109.871 280.543 109.527 280.645 109.163 280.645 c 108.902 280.645 108.668 280.587 108.460 280.473 c 108.251 280.358 108.079 280.218 107.944 280.051 c 107.944 282.317 l 107.147 282.317 l h 107.866 278.223 m 107.866 278.827 107.988 279.272 108.233 279.559 c 108.478 279.845 108.772 279.989 109.116 279.989 c 109.460 279.989 109.759 279.840 110.014 279.543 c 110.270 279.246 110.397 278.785 110.397 278.160 c 110.397 277.567 110.275 277.121 110.030 276.824 c 109.785 276.528 109.491 276.379 109.147 276.379 c 108.814 276.379 108.517 276.538 108.257 276.856 c 107.996 277.173 107.866 277.629 107.866 278.223 c h 112.137 280.535 m 112.137 275.864 l 112.856 275.864 l 112.856 276.582 l 113.033 276.249 113.199 276.030 113.356 275.926 c 113.512 275.822 113.684 275.770 113.871 275.770 c 114.132 275.770 114.403 275.853 114.684 276.020 c 114.403 276.754 l 114.215 276.640 114.022 276.582 113.824 276.582 c 113.658 276.582 113.504 276.634 113.363 276.739 c 113.223 276.843 113.121 276.989 113.059 277.176 c 112.975 277.457 112.934 277.765 112.934 278.098 c 112.934 280.535 l 112.137 280.535 l h 118.196 279.957 m 117.905 280.207 117.624 280.384 117.353 280.489 c 117.082 280.593 116.790 280.645 116.478 280.645 c 115.967 280.645 115.574 280.520 115.298 280.270 c 115.022 280.020 114.884 279.697 114.884 279.301 c 114.884 279.072 114.936 278.864 115.040 278.676 c 115.144 278.489 115.280 278.337 115.446 278.223 c 115.613 278.108 115.801 278.020 116.009 277.957 c 116.165 277.926 116.400 277.890 116.712 277.848 c 117.358 277.775 117.832 277.681 118.134 277.567 c 118.134 277.462 118.134 277.395 118.134 277.364 c 118.134 277.041 118.061 276.817 117.915 276.692 c 117.707 276.504 117.405 276.410 117.009 276.410 c 116.634 276.410 116.358 276.476 116.181 276.606 c 116.004 276.736 115.874 276.968 115.790 277.301 c 115.025 277.207 l 115.087 276.874 115.199 276.606 115.361 276.403 c 115.522 276.199 115.756 276.043 116.064 275.934 c 116.371 275.824 116.723 275.770 117.118 275.770 c 117.525 275.770 117.850 275.817 118.095 275.910 c 118.340 276.004 118.522 276.121 118.642 276.262 c 118.762 276.403 118.842 276.582 118.884 276.801 c 118.915 276.936 118.931 277.176 118.931 277.520 c 118.931 278.582 l 118.931 279.311 118.946 279.775 118.978 279.973 c 119.009 280.171 119.077 280.358 119.181 280.535 c 118.353 280.535 l 118.269 280.369 118.217 280.176 118.196 279.957 c h 118.134 278.192 m 117.842 278.306 117.410 278.405 116.837 278.489 c 116.514 278.541 116.285 278.595 116.150 278.653 c 116.014 278.710 115.910 278.796 115.837 278.910 c 115.764 279.025 115.728 279.150 115.728 279.285 c 115.728 279.494 115.806 279.668 115.962 279.809 c 116.118 279.949 116.353 280.020 116.665 280.020 c 116.967 280.020 117.238 279.952 117.478 279.817 c 117.717 279.681 117.894 279.499 118.009 279.270 c 118.092 279.093 118.134 278.832 118.134 278.489 c 118.134 278.192 l h 116.900 274.535 m 117.493 273.301 l 118.525 273.301 l 117.556 274.535 l 116.900 274.535 l h 121.452 280.535 m 119.671 275.864 l 120.514 275.864 l 121.514 278.660 l 121.619 278.962 121.717 279.275 121.811 279.598 c 121.884 279.358 121.983 279.067 122.108 278.723 c 123.139 275.864 l 123.952 275.864 l 122.186 280.535 l 121.452 280.535 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 95.8000 327.000 m 146.600 347.000 l 95.8000 367.000 l 45.0000 347.000 l h f 0.00000 0.00000 0.00000 RG newpath 95.8000 327.000 m 146.600 347.000 l 95.8000 367.000 l 45.0000 347.000 l h S newpath S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 60.9719 350.535 m 60.9719 349.739 l 64.2688 345.614 l 64.4979 345.322 64.7219 345.067 64.9406 344.848 c 61.3312 344.848 l 61.3312 344.098 l 65.9563 344.098 l 65.9563 344.848 l 62.3312 349.317 l 61.9406 349.770 l 66.0656 349.770 l 66.0656 350.535 l 60.9719 350.535 l h 66.8757 352.317 m 66.8757 345.864 l 67.5944 345.864 l 67.5944 346.473 l 67.7611 346.233 67.9512 346.056 68.1647 345.942 c 68.3783 345.827 68.6413 345.770 68.9538 345.770 c 69.3496 345.770 69.6986 345.871 70.0007 346.074 c 70.3028 346.278 70.5319 346.567 70.6882 346.942 c 70.8444 347.317 70.9226 347.723 70.9226 348.160 c 70.9226 348.640 70.8366 349.072 70.6647 349.457 c 70.4929 349.843 70.2455 350.137 69.9226 350.340 c 69.5996 350.543 69.2559 350.645 68.8913 350.645 c 68.6309 350.645 68.3965 350.587 68.1882 350.473 c 67.9799 350.358 67.8080 350.218 67.6726 350.051 c 67.6726 352.317 l 66.8757 352.317 l h 67.5944 348.223 m 67.5944 348.827 67.7168 349.272 67.9616 349.559 c 68.2064 349.845 68.5007 349.989 68.8444 349.989 c 69.1882 349.989 69.4877 349.840 69.7429 349.543 c 69.9981 349.246 70.1257 348.785 70.1257 348.160 c 70.1257 347.567 70.0033 347.121 69.7585 346.824 c 69.5137 346.528 69.2194 346.379 68.8757 346.379 c 68.5424 346.379 68.2455 346.538 67.9851 346.856 c 67.7246 347.173 67.5944 347.629 67.5944 348.223 c h 71.8654 350.535 m 71.8654 345.864 l 72.5842 345.864 l 72.5842 346.582 l 72.7613 346.249 72.9279 346.030 73.0842 345.926 c 73.2404 345.822 73.4123 345.770 73.5998 345.770 c 73.8602 345.770 74.1311 345.853 74.4123 346.020 c 74.1311 346.754 l 73.9436 346.640 73.7508 346.582 73.5529 346.582 c 73.3863 346.582 73.2326 346.634 73.0920 346.739 c 72.9514 346.843 72.8498 346.989 72.7873 347.176 c 72.7040 347.457 72.6623 347.765 72.6623 348.098 c 72.6623 350.535 l 71.8654 350.535 l h 77.9250 349.957 m 77.6333 350.207 77.3521 350.384 77.0813 350.489 c 76.8104 350.593 76.5188 350.645 76.2063 350.645 c 75.6958 350.645 75.3026 350.520 75.0266 350.270 c 74.7505 350.020 74.6125 349.697 74.6125 349.301 c 74.6125 349.072 74.6646 348.864 74.7688 348.676 c 74.8729 348.489 75.0083 348.337 75.1750 348.223 c 75.3417 348.108 75.5292 348.020 75.7375 347.957 c 75.8938 347.926 76.1281 347.890 76.4406 347.848 c 77.0865 347.775 77.5604 347.681 77.8625 347.567 c 77.8625 347.462 77.8625 347.395 77.8625 347.364 c 77.8625 347.041 77.7896 346.817 77.6438 346.692 c 77.4354 346.504 77.1333 346.410 76.7375 346.410 c 76.3625 346.410 76.0865 346.476 75.9094 346.606 c 75.7323 346.736 75.6021 346.968 75.5188 347.301 c 74.7531 347.207 l 74.8156 346.874 74.9276 346.606 75.0891 346.403 c 75.2505 346.199 75.4849 346.043 75.7922 345.934 c 76.0995 345.824 76.4510 345.770 76.8469 345.770 c 77.2531 345.770 77.5786 345.817 77.8234 345.910 c 78.0682 346.004 78.2505 346.121 78.3703 346.262 c 78.4901 346.403 78.5708 346.582 78.6125 346.801 c 78.6438 346.936 78.6594 347.176 78.6594 347.520 c 78.6594 348.582 l 78.6594 349.311 78.6750 349.775 78.7063 349.973 c 78.7375 350.171 78.8052 350.358 78.9094 350.535 c 78.0813 350.535 l 77.9979 350.369 77.9458 350.176 77.9250 349.957 c h 77.8625 348.192 m 77.5708 348.306 77.1385 348.405 76.5656 348.489 c 76.2427 348.541 76.0135 348.595 75.8781 348.653 c 75.7427 348.710 75.6385 348.796 75.5656 348.910 c 75.4927 349.025 75.4563 349.150 75.4563 349.285 c 75.4563 349.494 75.5344 349.668 75.6906 349.809 c 75.8469 349.949 76.0813 350.020 76.3938 350.020 c 76.6958 350.020 76.9667 349.952 77.2063 349.817 c 77.4458 349.681 77.6229 349.499 77.7375 349.270 c 77.8208 349.093 77.8625 348.832 77.8625 348.489 c 77.8625 348.192 l h 76.6281 344.535 m 77.2219 343.301 l 78.2531 343.301 l 77.2844 344.535 l 76.6281 344.535 l h 81.1804 350.535 m 79.3991 345.864 l 80.2429 345.864 l 81.2429 348.660 l 81.3470 348.962 81.4460 349.275 81.5397 349.598 c 81.6127 349.358 81.7116 349.067 81.8366 348.723 c 82.8679 345.864 l 83.6804 345.864 l 81.9147 350.535 l 81.1804 350.535 l h 84.3522 352.332 m 84.2585 351.598 l 84.4356 351.640 84.5866 351.660 84.7116 351.660 c 84.8887 351.660 85.0293 351.632 85.1335 351.574 c 85.2377 351.517 85.3262 351.436 85.3991 351.332 c 85.4408 351.249 85.5189 351.051 85.6335 350.739 c 85.6543 350.697 85.6804 350.634 85.7116 350.551 c 83.9304 345.864 l 84.7897 345.864 l 85.7585 348.567 l 85.8835 348.910 85.9981 349.270 86.1022 349.645 c 86.1856 349.291 86.2897 348.936 86.4147 348.582 c 87.4147 345.864 l 88.2116 345.864 l 86.4304 350.614 l 86.2429 351.124 86.0970 351.478 85.9929 351.676 c 85.8470 351.936 85.6856 352.127 85.5085 352.246 c 85.3314 352.366 85.1127 352.426 84.8522 352.426 c 84.7064 352.426 84.5397 352.395 84.3522 352.332 c h 92.6809 350.535 m 90.8996 345.864 l 91.7434 345.864 l 92.7434 348.660 l 92.8475 348.962 92.9465 349.275 93.0402 349.598 c 93.1132 349.358 93.2121 349.067 93.3371 348.723 c 94.3684 345.864 l 95.1809 345.864 l 93.4152 350.535 l 92.6809 350.535 l h 99.0715 349.035 m 99.8996 349.129 l 99.7642 349.608 99.5220 349.981 99.1730 350.246 c 98.8241 350.512 98.3788 350.645 97.8371 350.645 c 97.1600 350.645 96.6210 350.434 96.2199 350.012 c 95.8189 349.590 95.6184 348.999 95.6184 348.239 c 95.6184 347.457 95.8215 346.851 96.2277 346.418 c 96.6340 345.986 97.1600 345.770 97.8059 345.770 c 98.4309 345.770 98.9387 345.981 99.3293 346.403 c 99.7199 346.824 99.9152 347.421 99.9152 348.192 c 99.9152 348.244 99.9152 348.317 99.9152 348.410 c 96.4309 348.410 l 96.4621 348.921 96.6079 349.311 96.8684 349.582 c 97.1288 349.853 97.4569 349.989 97.8527 349.989 c 98.1444 349.989 98.3918 349.913 98.5949 349.762 c 98.7980 349.611 98.9569 349.369 99.0715 349.035 c h 96.4777 347.754 m 99.0871 347.754 l 99.0559 347.358 98.9569 347.061 98.7902 346.864 c 98.5402 346.561 98.2121 346.410 97.8059 346.410 c 97.4413 346.410 97.1366 346.533 96.8918 346.778 c 96.6470 347.022 96.5090 347.348 96.4777 347.754 c h 103.577 350.535 m 103.577 346.489 l 102.874 346.489 l 102.874 345.864 l 103.577 345.864 l 103.577 345.379 l 103.577 345.056 103.603 344.822 103.655 344.676 c 103.739 344.468 103.877 344.301 104.070 344.176 c 104.262 344.051 104.530 343.989 104.874 343.989 c 105.093 343.989 105.338 344.015 105.609 344.067 c 105.484 344.754 l 105.327 344.723 105.176 344.707 105.030 344.707 c 104.791 344.707 104.619 344.759 104.515 344.864 c 104.411 344.968 104.359 345.160 104.359 345.442 c 104.359 345.864 l 105.280 345.864 l 105.280 346.489 l 104.359 346.489 l 104.359 350.535 l 103.577 350.535 l h 105.875 350.535 m 105.875 345.864 l 106.593 345.864 l 106.593 346.582 l 106.771 346.249 106.937 346.030 107.093 345.926 c 107.250 345.822 107.422 345.770 107.609 345.770 c 107.870 345.770 108.140 345.853 108.422 346.020 c 108.140 346.754 l 107.953 346.640 107.760 346.582 107.562 346.582 c 107.396 346.582 107.242 346.634 107.101 346.739 c 106.961 346.843 106.859 346.989 106.797 347.176 c 106.713 347.457 106.672 347.765 106.672 348.098 c 106.672 350.535 l 105.875 350.535 l h 108.591 348.207 m 108.591 347.343 108.830 346.702 109.309 346.285 c 109.716 345.942 110.205 345.770 110.778 345.770 c 111.424 345.770 111.950 345.978 112.356 346.395 c 112.762 346.811 112.966 347.390 112.966 348.129 c 112.966 348.733 112.874 349.207 112.692 349.551 c 112.510 349.895 112.247 350.163 111.903 350.356 c 111.559 350.548 111.184 350.645 110.778 350.645 c 110.122 350.645 109.593 350.434 109.192 350.012 c 108.791 349.590 108.591 348.989 108.591 348.207 c h 109.403 348.207 m 109.403 348.801 109.533 349.246 109.794 349.543 c 110.054 349.840 110.382 349.989 110.778 349.989 c 111.174 349.989 111.502 349.840 111.762 349.543 c 112.023 349.246 112.153 348.791 112.153 348.176 c 112.153 347.603 112.023 347.166 111.762 346.864 c 111.502 346.561 111.174 346.410 110.778 346.410 c 110.382 346.410 110.054 346.559 109.794 346.856 c 109.533 347.153 109.403 347.603 109.403 348.207 c h 113.893 350.535 m 113.893 345.864 l 114.612 345.864 l 114.612 346.535 l 114.945 346.025 115.440 345.770 116.096 345.770 c 116.377 345.770 116.635 345.819 116.869 345.918 c 117.104 346.017 117.278 346.147 117.393 346.309 c 117.507 346.470 117.591 346.666 117.643 346.895 c 117.674 347.041 117.690 347.296 117.690 347.660 c 117.690 350.535 l 116.893 350.535 l 116.893 347.692 l 116.893 347.369 116.862 347.129 116.799 346.973 c 116.737 346.817 116.627 346.689 116.471 346.590 c 116.315 346.491 116.132 346.442 115.924 346.442 c 115.591 346.442 115.302 346.548 115.057 346.762 c 114.812 346.976 114.690 347.384 114.690 347.989 c 114.690 350.535 l 113.893 350.535 l h 120.633 349.832 m 120.742 350.520 l 120.513 350.572 120.315 350.598 120.148 350.598 c 119.856 350.598 119.633 350.551 119.476 350.457 c 119.320 350.364 119.208 350.244 119.140 350.098 c 119.073 349.952 119.039 349.645 119.039 349.176 c 119.039 346.489 l 118.461 346.489 l 118.461 345.864 l 119.039 345.864 l 119.039 344.707 l 119.836 344.239 l 119.836 345.864 l 120.633 345.864 l 120.633 346.489 l 119.836 346.489 l 119.836 349.207 l 119.836 349.436 119.849 349.582 119.875 349.645 c 119.901 349.707 119.945 349.759 120.008 349.801 c 120.070 349.843 120.159 349.864 120.273 349.864 c 120.367 349.864 120.487 349.853 120.633 349.832 c h 124.586 349.035 m 125.414 349.129 l 125.279 349.608 125.037 349.981 124.688 350.246 c 124.339 350.512 123.893 350.645 123.352 350.645 c 122.675 350.645 122.136 350.434 121.735 350.012 c 121.334 349.590 121.133 348.999 121.133 348.239 c 121.133 347.457 121.336 346.851 121.742 346.418 c 122.149 345.986 122.675 345.770 123.321 345.770 c 123.946 345.770 124.453 345.981 124.844 346.403 c 125.235 346.824 125.430 347.421 125.430 348.192 c 125.430 348.244 125.430 348.317 125.430 348.410 c 121.946 348.410 l 121.977 348.921 122.123 349.311 122.383 349.582 c 122.643 349.853 122.972 349.989 123.367 349.989 c 123.659 349.989 123.906 349.913 124.110 349.762 c 124.313 349.611 124.472 349.369 124.586 349.035 c h 121.992 347.754 m 124.602 347.754 l 124.571 347.358 124.472 347.061 124.305 346.864 c 124.055 346.561 123.727 346.410 123.321 346.410 c 122.956 346.410 122.651 346.533 122.406 346.778 c 122.162 347.022 122.024 347.348 121.992 347.754 c h 123.805 344.051 m 124.289 343.301 l 125.180 343.301 l 124.196 344.535 l 123.352 344.535 l 122.399 343.301 l 123.305 343.301 l 123.805 344.051 l h 127.888 348.942 m 127.878 348.837 127.873 348.759 127.873 348.707 c 127.873 348.395 127.920 348.129 128.013 347.910 c 128.076 347.733 128.180 347.561 128.326 347.395 c 128.430 347.270 128.620 347.085 128.896 346.840 c 129.172 346.595 129.349 346.403 129.427 346.262 c 129.506 346.121 129.545 345.968 129.545 345.801 c 129.545 345.489 129.425 345.215 129.185 344.981 c 128.946 344.746 128.654 344.629 128.310 344.629 c 127.967 344.629 127.683 344.736 127.459 344.949 c 127.235 345.163 127.086 345.494 127.013 345.942 c 126.201 345.848 l 126.274 345.244 126.493 344.783 126.857 344.465 c 127.222 344.147 127.701 343.989 128.295 343.989 c 128.920 343.989 129.420 344.158 129.795 344.496 c 130.170 344.835 130.357 345.249 130.357 345.739 c 130.357 346.020 130.292 346.280 130.162 346.520 c 130.032 346.759 129.774 347.046 129.388 347.379 c 129.128 347.608 128.959 347.778 128.881 347.887 c 128.802 347.996 128.745 348.121 128.709 348.262 c 128.672 348.403 128.649 348.629 128.638 348.942 c 127.888 348.942 l h 127.842 350.535 m 127.842 349.629 l 128.732 349.629 l 128.732 350.535 l 127.842 350.535 l h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 55.8000 399.500 m 135.800 399.500 l 135.800 434.500 l 55.8000 434.500 l h f 0.00000 0.00000 0.00000 RG newpath 55.8000 399.500 m 135.800 399.500 l 135.800 434.500 l 55.8000 434.500 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 68.1972 420.535 m 68.1972 414.098 l 69.0566 414.098 l 69.0566 417.285 l 72.2597 414.098 l 73.4003 414.098 l 70.7128 416.707 l 73.5253 420.535 l 72.4003 420.535 l 70.1035 417.270 l 69.0566 418.301 l 69.0566 420.535 l 68.1972 420.535 l h 74.1220 420.535 m 74.1220 415.864 l 74.8408 415.864 l 74.8408 416.582 l 75.0179 416.249 75.1845 416.030 75.3408 415.926 c 75.4970 415.822 75.6689 415.770 75.8564 415.770 c 76.1168 415.770 76.3876 415.853 76.6689 416.020 c 76.3876 416.754 l 76.2001 416.640 76.0074 416.582 75.8095 416.582 c 75.6429 416.582 75.4892 416.634 75.3486 416.739 c 75.2080 416.843 75.1064 416.989 75.0439 417.176 c 74.9606 417.457 74.9189 417.765 74.9189 418.098 c 74.9189 420.535 l 74.1220 420.535 l h 76.8378 418.207 m 76.8378 417.343 77.0774 416.702 77.5566 416.285 c 77.9628 415.942 78.4524 415.770 79.0253 415.770 c 79.6712 415.770 80.1972 415.978 80.6035 416.395 c 81.0097 416.811 81.2128 417.390 81.2128 418.129 c 81.2128 418.733 81.1217 419.207 80.9394 419.551 c 80.7571 419.895 80.4941 420.163 80.1503 420.356 c 79.8066 420.548 79.4316 420.645 79.0253 420.645 c 78.3691 420.645 77.8404 420.434 77.4394 420.012 c 77.0384 419.590 76.8378 418.989 76.8378 418.207 c h 77.6503 418.207 m 77.6503 418.801 77.7806 419.246 78.0410 419.543 c 78.3014 419.840 78.6295 419.989 79.0253 419.989 c 79.4212 419.989 79.7493 419.840 80.0097 419.543 c 80.2701 419.246 80.4003 418.791 80.4003 418.176 c 80.4003 417.603 80.2701 417.166 80.0097 416.864 c 79.7493 416.561 79.4212 416.410 79.0253 416.410 c 78.6295 416.410 78.3014 416.559 78.0410 416.856 c 77.7806 417.153 77.6503 417.603 77.6503 418.207 c h 82.1401 420.535 m 82.1401 414.098 l 82.9370 414.098 l 82.9370 417.770 l 84.8120 415.864 l 85.8276 415.864 l 84.0463 417.598 l 86.0151 420.535 l 85.0307 420.535 l 83.4995 418.145 l 82.9370 418.692 l 82.9370 420.535 l 82.1401 420.535 l h 88.8281 419.145 m 89.6093 419.020 l 89.6510 419.332 89.7734 419.572 89.9765 419.739 c 90.1796 419.905 90.4583 419.989 90.8125 419.989 c 91.1770 419.989 91.4479 419.916 91.6250 419.770 c 91.8020 419.624 91.8906 419.452 91.8906 419.254 c 91.8906 419.067 91.8125 418.926 91.6562 418.832 c 91.5416 418.759 91.2708 418.666 90.8437 418.551 c 90.2604 418.405 89.8567 418.280 89.6328 418.176 c 89.4088 418.072 89.2395 417.926 89.1250 417.739 c 89.0104 417.551 88.9531 417.343 88.9531 417.114 c 88.9531 416.905 89.0000 416.712 89.0937 416.535 c 89.1875 416.358 89.3177 416.207 89.4843 416.082 c 89.6093 415.999 89.7786 415.926 89.9921 415.864 c 90.2057 415.801 90.4322 415.770 90.6718 415.770 c 91.0364 415.770 91.3567 415.822 91.6328 415.926 c 91.9088 416.030 92.1145 416.171 92.2500 416.348 c 92.3854 416.525 92.4791 416.765 92.5312 417.067 c 91.7500 417.176 l 91.7187 416.936 91.6171 416.749 91.4453 416.614 c 91.2734 416.478 91.0364 416.410 90.7343 416.410 c 90.3697 416.410 90.1093 416.470 89.9531 416.590 c 89.7968 416.710 89.7187 416.853 89.7187 417.020 c 89.7187 417.124 89.7500 417.212 89.8125 417.285 c 89.8750 417.379 89.9791 417.452 90.1250 417.504 c 90.1979 417.535 90.4270 417.603 90.8125 417.707 c 91.3750 417.853 91.7682 417.973 91.9921 418.067 c 92.2161 418.160 92.3906 418.298 92.5156 418.481 c 92.6406 418.663 92.7031 418.890 92.7031 419.160 c 92.7031 419.431 92.6250 419.681 92.4687 419.910 c 92.3125 420.140 92.0911 420.319 91.8046 420.449 c 91.5182 420.580 91.1875 420.645 90.8125 420.645 c 90.2083 420.645 89.7474 420.517 89.4296 420.262 c 89.1119 420.007 88.9114 419.634 88.8281 419.145 c h 93.6406 415.004 m 93.6406 414.098 l 94.4375 414.098 l 94.4375 415.004 l 93.6406 415.004 l h 93.6406 420.535 m 93.6406 415.864 l 94.4375 415.864 l 94.4375 420.535 l 93.6406 420.535 l h 95.6401 420.535 m 95.6401 415.864 l 96.3432 415.864 l 96.3432 416.520 l 96.4890 416.291 96.6844 416.108 96.9292 415.973 c 97.1739 415.837 97.4526 415.770 97.7651 415.770 c 98.1088 415.770 98.3901 415.840 98.6088 415.981 c 98.8276 416.121 98.9838 416.322 99.0776 416.582 c 99.4526 416.041 99.9318 415.770 100.515 415.770 c 100.984 415.770 101.343 415.897 101.593 416.153 c 101.843 416.408 101.968 416.801 101.968 417.332 c 101.968 420.535 l 101.171 420.535 l 101.171 417.598 l 101.171 417.275 101.148 417.046 101.101 416.910 c 101.054 416.775 100.963 416.663 100.828 416.574 c 100.692 416.486 100.531 416.442 100.343 416.442 c 100.020 416.442 99.7495 416.551 99.5307 416.770 c 99.3120 416.989 99.2026 417.337 99.2026 417.817 c 99.2026 420.535 l 98.4057 420.535 l 98.4057 417.504 l 98.4057 417.150 98.3432 416.884 98.2182 416.707 c 98.0932 416.530 97.8849 416.442 97.5932 416.442 c 97.3640 416.442 97.1557 416.502 96.9682 416.621 c 96.7807 416.741 96.6453 416.913 96.5620 417.137 c 96.4786 417.361 96.4370 417.686 96.4370 418.114 c 96.4370 420.535 l 95.6401 420.535 l h 106.200 420.535 m 106.200 419.848 l 105.835 420.379 105.340 420.645 104.715 420.645 c 104.444 420.645 104.189 420.590 103.950 420.481 c 103.710 420.371 103.530 420.239 103.411 420.082 c 103.291 419.926 103.210 419.733 103.168 419.504 c 103.137 419.348 103.122 419.098 103.122 418.754 c 103.122 415.864 l 103.903 415.864 l 103.903 418.457 l 103.903 418.874 103.924 419.150 103.965 419.285 c 104.007 419.494 104.109 419.658 104.270 419.778 c 104.431 419.897 104.632 419.957 104.872 419.957 c 105.111 419.957 105.335 419.897 105.543 419.778 c 105.752 419.658 105.898 419.494 105.981 419.285 c 106.064 419.077 106.106 418.770 106.106 418.364 c 106.106 415.864 l 106.903 415.864 l 106.903 420.535 l 106.200 420.535 l h 108.127 420.535 m 108.127 414.098 l 108.908 414.098 l 108.908 420.535 l 108.127 420.535 l h 113.189 419.957 m 112.897 420.207 112.616 420.384 112.345 420.489 c 112.074 420.593 111.783 420.645 111.470 420.645 c 110.960 420.645 110.567 420.520 110.290 420.270 c 110.014 420.020 109.876 419.697 109.876 419.301 c 109.876 419.072 109.929 418.864 110.033 418.676 c 110.137 418.489 110.272 418.337 110.439 418.223 c 110.606 418.108 110.793 418.020 111.001 417.957 c 111.158 417.926 111.392 417.890 111.705 417.848 c 112.350 417.775 112.824 417.681 113.126 417.567 c 113.126 417.462 113.126 417.395 113.126 417.364 c 113.126 417.041 113.054 416.817 112.908 416.692 c 112.699 416.504 112.397 416.410 112.001 416.410 c 111.626 416.410 111.350 416.476 111.173 416.606 c 110.996 416.736 110.866 416.968 110.783 417.301 c 110.017 417.207 l 110.080 416.874 110.192 416.606 110.353 416.403 c 110.514 416.199 110.749 416.043 111.056 415.934 c 111.363 415.824 111.715 415.770 112.111 415.770 c 112.517 415.770 112.843 415.817 113.087 415.910 c 113.332 416.004 113.514 416.121 113.634 416.262 c 113.754 416.403 113.835 416.582 113.876 416.801 c 113.908 416.936 113.923 417.176 113.923 417.520 c 113.923 418.582 l 113.923 419.311 113.939 419.775 113.970 419.973 c 114.001 420.171 114.069 420.358 114.173 420.535 c 113.345 420.535 l 113.262 420.369 113.210 420.176 113.189 419.957 c h 113.126 418.192 m 112.835 418.306 112.402 418.405 111.830 418.489 c 111.507 418.541 111.277 418.595 111.142 418.653 c 111.007 418.710 110.902 418.796 110.830 418.910 c 110.757 419.025 110.720 419.150 110.720 419.285 c 110.720 419.494 110.798 419.668 110.955 419.809 c 111.111 419.949 111.345 420.020 111.658 420.020 c 111.960 420.020 112.231 419.952 112.470 419.817 c 112.710 419.681 112.887 419.499 113.001 419.270 c 113.085 419.093 113.126 418.832 113.126 418.489 c 113.126 418.192 l h 118.194 418.832 m 118.976 418.926 l 118.892 419.468 118.673 419.890 118.319 420.192 c 117.965 420.494 117.533 420.645 117.022 420.645 c 116.387 420.645 115.877 420.436 115.491 420.020 c 115.106 419.603 114.913 419.004 114.913 418.223 c 114.913 417.712 114.996 417.270 115.163 416.895 c 115.330 416.520 115.582 416.239 115.921 416.051 c 116.259 415.864 116.632 415.770 117.038 415.770 c 117.538 415.770 117.949 415.897 118.272 416.153 c 118.595 416.408 118.804 416.770 118.897 417.239 c 118.132 417.364 l 118.059 417.051 117.929 416.814 117.741 416.653 c 117.554 416.491 117.330 416.410 117.069 416.410 c 116.663 416.410 116.338 416.554 116.093 416.840 c 115.848 417.127 115.726 417.577 115.726 418.192 c 115.726 418.827 115.845 419.285 116.085 419.567 c 116.324 419.848 116.637 419.989 117.022 419.989 c 117.335 419.989 117.595 419.895 117.804 419.707 c 118.012 419.520 118.142 419.228 118.194 418.832 c h 122.835 419.035 m 123.663 419.129 l 123.528 419.608 123.285 419.981 122.936 420.246 c 122.588 420.512 122.142 420.645 121.601 420.645 c 120.923 420.645 120.384 420.434 119.983 420.012 c 119.582 419.590 119.382 418.999 119.382 418.239 c 119.382 417.457 119.585 416.851 119.991 416.418 c 120.397 415.986 120.923 415.770 121.569 415.770 c 122.194 415.770 122.702 415.981 123.093 416.403 c 123.483 416.824 123.679 417.421 123.679 418.192 c 123.679 418.244 123.679 418.317 123.679 418.410 c 120.194 418.410 l 120.226 418.921 120.371 419.311 120.632 419.582 c 120.892 419.853 121.220 419.989 121.616 419.989 c 121.908 419.989 122.155 419.913 122.358 419.762 c 122.561 419.611 122.720 419.369 122.835 419.035 c h 120.241 417.754 m 122.851 417.754 l 122.819 417.358 122.720 417.061 122.554 416.864 c 122.304 416.561 121.976 416.410 121.569 416.410 c 121.205 416.410 120.900 416.533 120.655 416.778 c 120.410 417.022 120.272 417.348 120.241 417.754 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 95.8000 467.000 m 146.600 487.000 l 95.8000 507.000 l 45.0000 487.000 l h f 0.00000 0.00000 0.00000 RG newpath 95.8000 467.000 m 146.600 487.000 l 95.8000 507.000 l 45.0000 487.000 l h S newpath S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 64.6904 490.535 m 64.6904 484.098 l 65.5498 484.098 l 65.5498 487.285 l 68.7529 484.098 l 69.8935 484.098 l 67.2060 486.707 l 70.0185 490.535 l 68.8935 490.535 l 66.5966 487.270 l 65.5498 488.301 l 65.5498 490.535 l 64.6904 490.535 l h 70.3339 488.207 m 70.3339 487.343 70.5735 486.702 71.0527 486.285 c 71.4589 485.942 71.9485 485.770 72.5214 485.770 c 73.1673 485.770 73.6933 485.978 74.0996 486.395 c 74.5058 486.811 74.7089 487.390 74.7089 488.129 c 74.7089 488.733 74.6178 489.207 74.4355 489.551 c 74.2532 489.895 73.9902 490.163 73.6464 490.356 c 73.3027 490.548 72.9277 490.645 72.5214 490.645 c 71.8652 490.645 71.3365 490.434 70.9355 490.012 c 70.5345 489.590 70.3339 488.989 70.3339 488.207 c h 71.1464 488.207 m 71.1464 488.801 71.2766 489.246 71.5371 489.543 c 71.7975 489.840 72.1256 489.989 72.5214 489.989 c 72.9173 489.989 73.2454 489.840 73.5058 489.543 c 73.7662 489.246 73.8964 488.791 73.8964 488.176 c 73.8964 487.603 73.7662 487.166 73.5058 486.864 c 73.2454 486.561 72.9173 486.410 72.5214 486.410 c 72.1256 486.410 71.7975 486.559 71.5371 486.856 c 71.2766 487.153 71.1464 487.603 71.1464 488.207 c h 75.6362 490.535 m 75.6362 485.864 l 76.3549 485.864 l 76.3549 486.535 l 76.6883 486.025 77.1831 485.770 77.8393 485.770 c 78.1206 485.770 78.3784 485.819 78.6127 485.918 c 78.8471 486.017 79.0216 486.147 79.1362 486.309 c 79.2508 486.470 79.3341 486.666 79.3862 486.895 c 79.4174 487.041 79.4331 487.296 79.4331 487.660 c 79.4331 490.535 l 78.6362 490.535 l 78.6362 487.692 l 78.6362 487.369 78.6049 487.129 78.5424 486.973 c 78.4799 486.817 78.3706 486.689 78.2143 486.590 c 78.0581 486.491 77.8758 486.442 77.6674 486.442 c 77.3341 486.442 77.0450 486.548 76.8002 486.762 c 76.5555 486.976 76.4331 487.384 76.4331 487.989 c 76.4331 490.535 l 75.6362 490.535 l h 83.8291 489.035 m 84.6572 489.129 l 84.5218 489.608 84.2796 489.981 83.9306 490.246 c 83.5817 490.512 83.1363 490.645 82.5947 490.645 c 81.9176 490.645 81.3785 490.434 80.9775 490.012 c 80.5765 489.590 80.3759 488.999 80.3759 488.239 c 80.3759 487.457 80.5791 486.851 80.9853 486.418 c 81.3916 485.986 81.9176 485.770 82.5634 485.770 c 83.1884 485.770 83.6962 485.981 84.0869 486.403 c 84.4775 486.824 84.6728 487.421 84.6728 488.192 c 84.6728 488.244 84.6728 488.317 84.6728 488.410 c 81.1884 488.410 l 81.2197 488.921 81.3655 489.311 81.6259 489.582 c 81.8863 489.853 82.2145 489.989 82.6103 489.989 c 82.9020 489.989 83.1494 489.913 83.3525 489.762 c 83.5556 489.611 83.7145 489.369 83.8291 489.035 c h 81.2353 487.754 m 83.8447 487.754 l 83.8134 487.358 83.7145 487.061 83.5478 486.864 c 83.2978 486.561 82.9697 486.410 82.5634 486.410 c 82.1988 486.410 81.8942 486.533 81.6494 486.778 c 81.4046 487.022 81.2666 487.348 81.2353 487.754 c h 88.6938 488.832 m 89.4751 488.926 l 89.3917 489.468 89.1730 489.890 88.8188 490.192 c 88.4646 490.494 88.0323 490.645 87.5219 490.645 c 86.8865 490.645 86.3761 490.436 85.9907 490.020 c 85.6053 489.603 85.4126 489.004 85.4126 488.223 c 85.4126 487.712 85.4959 487.270 85.6626 486.895 c 85.8292 486.520 86.0818 486.239 86.4204 486.051 c 86.7589 485.864 87.1313 485.770 87.5376 485.770 c 88.0376 485.770 88.4490 485.897 88.7719 486.153 c 89.0948 486.408 89.3032 486.770 89.3969 487.239 c 88.6313 487.364 l 88.5584 487.051 88.4282 486.814 88.2407 486.653 c 88.0532 486.491 87.8292 486.410 87.5688 486.410 c 87.1626 486.410 86.8370 486.554 86.5922 486.840 c 86.3474 487.127 86.2251 487.577 86.2251 488.192 c 86.2251 488.827 86.3448 489.285 86.5844 489.567 c 86.8240 489.848 87.1365 489.989 87.5219 489.989 c 87.8344 489.989 88.0948 489.895 88.3032 489.707 c 88.5115 489.520 88.6417 489.228 88.6938 488.832 c h 92.3349 489.145 m 93.1162 489.020 l 93.1578 489.332 93.2802 489.572 93.4834 489.739 c 93.6865 489.905 93.9651 489.989 94.3193 489.989 c 94.6839 489.989 94.9547 489.916 95.1318 489.770 c 95.3089 489.624 95.3974 489.452 95.3974 489.254 c 95.3974 489.067 95.3193 488.926 95.1630 488.832 c 95.0485 488.759 94.7776 488.666 94.3505 488.551 c 93.7672 488.405 93.3636 488.280 93.1396 488.176 c 92.9156 488.072 92.7464 487.926 92.6318 487.739 c 92.5172 487.551 92.4599 487.343 92.4599 487.114 c 92.4599 486.905 92.5068 486.712 92.6005 486.535 c 92.6943 486.358 92.8245 486.207 92.9912 486.082 c 93.1162 485.999 93.2854 485.926 93.4990 485.864 c 93.7125 485.801 93.9391 485.770 94.1787 485.770 c 94.5432 485.770 94.8636 485.822 95.1396 485.926 c 95.4156 486.030 95.6214 486.171 95.7568 486.348 c 95.8922 486.525 95.9860 486.765 96.0380 487.067 c 95.2568 487.176 l 95.2255 486.936 95.1240 486.749 94.9521 486.614 c 94.7802 486.478 94.5432 486.410 94.2412 486.410 c 93.8766 486.410 93.6162 486.470 93.4599 486.590 c 93.3037 486.710 93.2255 486.853 93.2255 487.020 c 93.2255 487.124 93.2568 487.212 93.3193 487.285 c 93.3818 487.379 93.4860 487.452 93.6318 487.504 c 93.7047 487.535 93.9339 487.603 94.3193 487.707 c 94.8818 487.853 95.2750 487.973 95.4990 488.067 c 95.7229 488.160 95.8974 488.298 96.0224 488.481 c 96.1474 488.663 96.2099 488.890 96.2099 489.160 c 96.2099 489.431 96.1318 489.681 95.9755 489.910 c 95.8193 490.140 95.5979 490.319 95.3115 490.449 c 95.0250 490.580 94.6943 490.645 94.3193 490.645 c 93.7151 490.645 93.2542 490.517 92.9365 490.262 c 92.6188 490.007 92.4182 489.634 92.3349 489.145 c h 97.1474 485.004 m 97.1474 484.098 l 97.9443 484.098 l 97.9443 485.004 l 97.1474 485.004 l h 97.1474 490.535 m 97.1474 485.864 l 97.9443 485.864 l 97.9443 490.535 l 97.1474 490.535 l h 99.1469 490.535 m 99.1469 485.864 l 99.8501 485.864 l 99.8501 486.520 l 99.9959 486.291 100.191 486.108 100.436 485.973 c 100.681 485.837 100.959 485.770 101.272 485.770 c 101.616 485.770 101.897 485.840 102.116 485.981 c 102.334 486.121 102.491 486.322 102.584 486.582 c 102.959 486.041 103.439 485.770 104.022 485.770 c 104.491 485.770 104.850 485.897 105.100 486.153 c 105.350 486.408 105.475 486.801 105.475 487.332 c 105.475 490.535 l 104.678 490.535 l 104.678 487.598 l 104.678 487.275 104.655 487.046 104.608 486.910 c 104.561 486.775 104.470 486.663 104.334 486.574 c 104.199 486.486 104.038 486.442 103.850 486.442 c 103.527 486.442 103.256 486.551 103.038 486.770 c 102.819 486.989 102.709 487.337 102.709 487.817 c 102.709 490.535 l 101.913 490.535 l 101.913 487.504 l 101.913 487.150 101.850 486.884 101.725 486.707 c 101.600 486.530 101.392 486.442 101.100 486.442 c 100.871 486.442 100.663 486.502 100.475 486.621 c 100.288 486.741 100.152 486.913 100.069 487.137 c 99.9855 487.361 99.9438 487.686 99.9438 488.114 c 99.9438 490.535 l 99.1469 490.535 l h 109.706 490.535 m 109.706 489.848 l 109.342 490.379 108.847 490.645 108.222 490.645 c 107.951 490.645 107.696 490.590 107.456 490.481 c 107.217 490.371 107.037 490.239 106.917 490.082 c 106.798 489.926 106.717 489.733 106.675 489.504 c 106.644 489.348 106.628 489.098 106.628 488.754 c 106.628 485.864 l 107.410 485.864 l 107.410 488.457 l 107.410 488.874 107.430 489.150 107.472 489.285 c 107.514 489.494 107.615 489.658 107.777 489.778 c 107.938 489.897 108.139 489.957 108.378 489.957 c 108.618 489.957 108.842 489.897 109.050 489.778 c 109.259 489.658 109.404 489.494 109.488 489.285 c 109.571 489.077 109.613 488.770 109.613 488.364 c 109.613 485.864 l 110.410 485.864 l 110.410 490.535 l 109.706 490.535 l h 111.634 490.535 m 111.634 484.098 l 112.415 484.098 l 112.415 490.535 l 111.634 490.535 l h 116.696 489.957 m 116.404 490.207 116.123 490.384 115.852 490.489 c 115.581 490.593 115.290 490.645 114.977 490.645 c 114.467 490.645 114.073 490.520 113.797 490.270 c 113.521 490.020 113.383 489.697 113.383 489.301 c 113.383 489.072 113.435 488.864 113.540 488.676 c 113.644 488.489 113.779 488.337 113.946 488.223 c 114.112 488.108 114.300 488.020 114.508 487.957 c 114.665 487.926 114.899 487.890 115.211 487.848 c 115.857 487.775 116.331 487.681 116.633 487.567 c 116.633 487.462 116.633 487.395 116.633 487.364 c 116.633 487.041 116.560 486.817 116.415 486.692 c 116.206 486.504 115.904 486.410 115.508 486.410 c 115.133 486.410 114.857 486.476 114.680 486.606 c 114.503 486.736 114.373 486.968 114.290 487.301 c 113.524 487.207 l 113.586 486.874 113.698 486.606 113.860 486.403 c 114.021 486.199 114.256 486.043 114.563 485.934 c 114.870 485.824 115.222 485.770 115.618 485.770 c 116.024 485.770 116.349 485.817 116.594 485.910 c 116.839 486.004 117.021 486.121 117.141 486.262 c 117.261 486.403 117.342 486.582 117.383 486.801 c 117.415 486.936 117.430 487.176 117.430 487.520 c 117.430 488.582 l 117.430 489.311 117.446 489.775 117.477 489.973 c 117.508 490.171 117.576 490.358 117.680 490.535 c 116.852 490.535 l 116.769 490.369 116.717 490.176 116.696 489.957 c h 116.633 488.192 m 116.342 488.306 115.909 488.405 115.336 488.489 c 115.013 488.541 114.784 488.595 114.649 488.653 c 114.513 488.710 114.409 488.796 114.336 488.910 c 114.263 489.025 114.227 489.150 114.227 489.285 c 114.227 489.494 114.305 489.668 114.461 489.809 c 114.618 489.949 114.852 490.020 115.165 490.020 c 115.467 490.020 115.737 489.952 115.977 489.817 c 116.217 489.681 116.394 489.499 116.508 489.270 c 116.592 489.093 116.633 488.832 116.633 488.489 c 116.633 488.192 l h 121.701 488.832 m 122.482 488.926 l 122.399 489.468 122.180 489.890 121.826 490.192 c 121.472 490.494 121.040 490.645 120.529 490.645 c 119.894 490.645 119.383 490.436 118.998 490.020 c 118.613 489.603 118.420 489.004 118.420 488.223 c 118.420 487.712 118.503 487.270 118.670 486.895 c 118.837 486.520 119.089 486.239 119.428 486.051 c 119.766 485.864 120.139 485.770 120.545 485.770 c 121.045 485.770 121.456 485.897 121.779 486.153 c 122.102 486.408 122.311 486.770 122.404 487.239 c 121.639 487.364 l 121.566 487.051 121.436 486.814 121.248 486.653 c 121.061 486.491 120.837 486.410 120.576 486.410 c 120.170 486.410 119.844 486.554 119.600 486.840 c 119.355 487.127 119.232 487.577 119.232 488.192 c 119.232 488.827 119.352 489.285 119.592 489.567 c 119.831 489.848 120.144 489.989 120.529 489.989 c 120.842 489.989 121.102 489.895 121.311 489.707 c 121.519 489.520 121.649 489.228 121.701 488.832 c h 126.342 489.035 m 127.170 489.129 l 127.034 489.608 126.792 489.981 126.443 490.246 c 126.094 490.512 125.649 490.645 125.107 490.645 c 124.430 490.645 123.891 490.434 123.490 490.012 c 123.089 489.590 122.889 488.999 122.889 488.239 c 122.889 487.457 123.092 486.851 123.498 486.418 c 123.904 485.986 124.430 485.770 125.076 485.770 c 125.701 485.770 126.209 485.981 126.600 486.403 c 126.990 486.824 127.186 487.421 127.186 488.192 c 127.186 488.244 127.186 488.317 127.186 488.410 c 123.701 488.410 l 123.732 488.921 123.878 489.311 124.139 489.582 c 124.399 489.853 124.727 489.989 125.123 489.989 c 125.415 489.989 125.662 489.913 125.865 489.762 c 126.068 489.611 126.227 489.369 126.342 489.035 c h 123.748 487.754 m 126.357 487.754 l 126.326 487.358 126.227 487.061 126.061 486.864 c 125.811 486.561 125.482 486.410 125.076 486.410 c 124.712 486.410 124.407 486.533 124.162 486.778 c 123.917 487.022 123.779 487.348 123.748 487.754 c h f Q q 0 J 1.45000 M 1.00000 1.00000 1.00000 RG newpath 55.8000 532.900 m 135.800 532.900 l 135.800 567.900 l 55.8000 567.900 l h f 0.00000 0.00000 0.00000 RG newpath 55.8000 532.900 m 135.800 532.900 l 135.800 567.900 l 55.8000 567.900 l h S 2 J 10.0000 M 1.60000 M 10.0000 M newpath 74.9751 553.935 m 74.9751 553.139 l 78.2719 549.014 l 78.5011 548.722 78.7251 548.467 78.9438 548.248 c 75.3344 548.248 l 75.3344 547.498 l 79.9594 547.498 l 79.9594 548.248 l 76.3344 552.717 l 75.9438 553.170 l 80.0688 553.170 l 80.0688 553.935 l 74.9751 553.935 l h 83.9257 553.357 m 83.6341 553.607 83.3528 553.784 83.0820 553.889 c 82.8112 553.993 82.5195 554.045 82.2070 554.045 c 81.6966 554.045 81.3033 553.920 81.0273 553.670 c 80.7513 553.420 80.6132 553.097 80.6132 552.701 c 80.6132 552.472 80.6653 552.264 80.7695 552.076 c 80.8737 551.889 81.0091 551.738 81.1757 551.623 c 81.3424 551.508 81.5299 551.420 81.7382 551.357 c 81.8945 551.326 82.1289 551.290 82.4414 551.248 c 83.0872 551.175 83.5612 551.081 83.8632 550.967 c 83.8632 550.863 83.8632 550.795 83.8632 550.764 c 83.8632 550.441 83.7903 550.217 83.6445 550.092 c 83.4362 549.904 83.1341 549.810 82.7382 549.810 c 82.3632 549.810 82.0872 549.876 81.9101 550.006 c 81.7330 550.136 81.6028 550.368 81.5195 550.701 c 80.7539 550.607 l 80.8164 550.274 80.9283 550.006 81.0898 549.803 c 81.2513 549.599 81.4856 549.443 81.7929 549.334 c 82.1002 549.224 82.4518 549.170 82.8476 549.170 c 83.2539 549.170 83.5794 549.217 83.8242 549.310 c 84.0690 549.404 84.2513 549.521 84.3710 549.662 c 84.4908 549.803 84.5716 549.982 84.6132 550.201 c 84.6445 550.336 84.6601 550.576 84.6601 550.920 c 84.6601 551.982 l 84.6601 552.711 84.6757 553.175 84.7070 553.373 c 84.7382 553.571 84.8059 553.758 84.9101 553.935 c 84.0820 553.935 l 83.9987 553.769 83.9466 553.576 83.9257 553.357 c h 83.8632 551.592 m 83.5716 551.706 83.1393 551.805 82.5664 551.889 c 82.2434 551.941 82.0143 551.995 81.8789 552.053 c 81.7434 552.110 81.6393 552.196 81.5664 552.310 c 81.4934 552.425 81.4570 552.550 81.4570 552.685 c 81.4570 552.894 81.5351 553.068 81.6914 553.209 c 81.8476 553.349 82.0820 553.420 82.3945 553.420 c 82.6966 553.420 82.9674 553.352 83.2070 553.217 c 83.4466 553.081 83.6237 552.899 83.7382 552.670 c 83.8216 552.493 83.8632 552.232 83.8632 551.889 c 83.8632 551.592 l h 85.8842 553.935 m 85.8842 547.498 l 86.6811 547.498 l 86.6811 551.170 l 88.5561 549.264 l 89.5717 549.264 l 87.7905 550.998 l 89.7592 553.935 l 88.7749 553.935 l 87.2436 551.545 l 86.6811 552.092 l 86.6811 553.935 l 85.8842 553.935 l h 90.0874 551.607 m 90.0874 550.743 90.3269 550.102 90.8061 549.685 c 91.2124 549.342 91.7019 549.170 92.2749 549.170 c 92.9207 549.170 93.4467 549.378 93.8530 549.795 c 94.2592 550.211 94.4624 550.790 94.4624 551.529 c 94.4624 552.133 94.3712 552.607 94.1889 552.951 c 94.0066 553.295 93.7436 553.563 93.3999 553.756 c 93.0561 553.948 92.6811 554.045 92.2749 554.045 c 91.6186 554.045 91.0900 553.834 90.6889 553.412 c 90.2879 552.990 90.0874 552.389 90.0874 551.607 c h 90.8999 551.607 m 90.8999 552.201 91.0301 552.646 91.2905 552.943 c 91.5509 553.240 91.8790 553.389 92.2749 553.389 c 92.6707 553.389 92.9988 553.240 93.2592 552.943 c 93.5196 552.646 93.6499 552.191 93.6499 551.576 c 93.6499 551.003 93.5196 550.566 93.2592 550.264 c 92.9988 549.961 92.6707 549.810 92.2749 549.810 c 91.8790 549.810 91.5509 549.959 91.2905 550.256 c 91.0301 550.553 90.8999 551.003 90.8999 551.607 c h 95.3896 553.935 m 95.3896 549.264 l 96.1084 549.264 l 96.1084 549.935 l 96.4417 549.425 96.9365 549.170 97.5927 549.170 c 97.8740 549.170 98.1318 549.219 98.3662 549.318 c 98.6005 549.417 98.7750 549.547 98.8896 549.709 c 99.0042 549.870 99.0875 550.066 99.1396 550.295 c 99.1709 550.441 99.1865 550.696 99.1865 551.060 c 99.1865 553.935 l 98.3896 553.935 l 98.3896 551.092 l 98.3896 550.769 98.3584 550.529 98.2959 550.373 c 98.2334 550.217 98.1240 550.089 97.9677 549.990 c 97.8115 549.891 97.6292 549.842 97.4209 549.842 c 97.0875 549.842 96.7985 549.948 96.5537 550.162 c 96.3089 550.376 96.1865 550.784 96.1865 551.389 c 96.1865 553.935 l 95.3896 553.935 l h 103.442 552.232 m 104.223 552.326 l 104.140 552.868 103.921 553.290 103.567 553.592 c 103.213 553.894 102.780 554.045 102.270 554.045 c 101.635 554.045 101.124 553.836 100.739 553.420 c 100.353 553.003 100.161 552.404 100.161 551.623 c 100.161 551.113 100.244 550.670 100.411 550.295 c 100.577 549.920 100.830 549.639 101.168 549.451 c 101.507 549.264 101.879 549.170 102.286 549.170 c 102.786 549.170 103.197 549.297 103.520 549.553 c 103.843 549.808 104.051 550.170 104.145 550.639 c 103.379 550.764 l 103.306 550.451 103.176 550.214 102.989 550.053 c 102.801 549.891 102.577 549.810 102.317 549.810 c 101.911 549.810 101.585 549.954 101.340 550.240 c 101.095 550.527 100.973 550.977 100.973 551.592 c 100.973 552.227 101.093 552.685 101.332 552.967 c 101.572 553.248 101.885 553.389 102.270 553.389 c 102.582 553.389 102.843 553.295 103.051 553.107 c 103.260 552.920 103.390 552.628 103.442 552.232 c h 102.379 547.451 m 102.864 546.701 l 103.754 546.701 l 102.770 547.935 l 101.926 547.935 l 100.973 546.701 l 101.879 546.701 l 102.379 547.451 l h 108.082 552.435 m 108.911 552.529 l 108.775 553.008 108.533 553.381 108.184 553.646 c 107.835 553.912 107.390 554.045 106.848 554.045 c 106.171 554.045 105.632 553.834 105.231 553.412 c 104.830 552.990 104.629 552.399 104.629 551.639 c 104.629 550.857 104.832 550.251 105.239 549.818 c 105.645 549.386 106.171 549.170 106.817 549.170 c 107.442 549.170 107.950 549.381 108.340 549.803 c 108.731 550.224 108.926 550.821 108.926 551.592 c 108.926 551.644 108.926 551.717 108.926 551.810 c 105.442 551.810 l 105.473 552.321 105.619 552.711 105.879 552.982 c 106.140 553.253 106.468 553.389 106.864 553.389 c 107.155 553.389 107.403 553.313 107.606 553.162 c 107.809 553.011 107.968 552.769 108.082 552.435 c h 105.489 551.154 m 108.098 551.154 l 108.067 550.758 107.968 550.461 107.801 550.264 c 107.551 549.961 107.223 549.810 106.817 549.810 c 106.452 549.810 106.148 549.933 105.903 550.178 c 105.658 550.422 105.520 550.748 105.489 551.154 c h 109.900 553.935 m 109.900 549.264 l 110.619 549.264 l 110.619 549.935 l 110.952 549.425 111.447 549.170 112.103 549.170 c 112.385 549.170 112.643 549.219 112.877 549.318 c 113.111 549.417 113.286 549.547 113.400 549.709 c 113.515 549.870 113.598 550.066 113.650 550.295 c 113.682 550.441 113.697 550.696 113.697 551.060 c 113.697 553.935 l 112.900 553.935 l 112.900 551.092 l 112.900 550.769 112.869 550.529 112.807 550.373 c 112.744 550.217 112.635 550.089 112.478 549.990 c 112.322 549.891 112.140 549.842 111.932 549.842 c 111.598 549.842 111.309 549.948 111.064 550.162 c 110.820 550.376 110.697 550.784 110.697 551.389 c 110.697 553.935 l 109.900 553.935 l h 115.187 553.935 m 115.187 549.264 l 115.968 549.264 l 115.968 553.935 l 115.187 553.935 l h 114.656 547.935 m 115.249 546.701 l 116.281 546.701 l 115.312 547.935 l 114.656 547.935 l h f Q 0 J 1.45000 M newpath 95.8000 84.4658 m 95.8000 111.480 l S newpath 95.8000 119.480 m 100.800 107.480 l 95.8000 110.480 l 90.8000 107.480 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 95.8000 154.466 m 95.8000 181.480 l S newpath 95.8000 189.480 m 100.800 177.480 l 95.8000 180.480 l 90.8000 177.480 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 95.8000 224.466 m 95.8000 251.480 l S newpath 95.8000 259.480 m 100.800 247.480 l 95.8000 250.480 l 90.8000 247.480 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 95.8000 294.466 m 95.8000 319.018 l S newpath 95.8000 327.018 m 100.800 315.018 l 95.8000 318.018 l 90.8000 315.018 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 146.613 347.000 m 205.400 347.000 l 205.400 207.000 l 143.803 207.000 l S newpath 135.803 207.000 m 147.803 212.000 l 144.803 207.000 l 147.803 202.000 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 158.709 340.363 m 162.006 331.770 l 163.225 331.770 l 166.741 340.363 l 165.459 340.363 l 164.444 337.754 l 160.866 337.754 l 159.913 340.363 l 158.709 340.363 l h 161.194 336.832 m 164.100 336.832 l 163.209 334.457 l 162.928 333.738 162.725 333.145 162.600 332.676 c 162.485 333.228 162.329 333.775 162.131 334.316 c 161.194 336.832 l h 167.526 340.363 m 167.526 334.145 l 168.463 334.145 l 168.463 335.020 l 168.922 334.342 169.583 334.004 170.448 334.004 c 170.823 334.004 171.169 334.072 171.487 334.207 c 171.804 334.342 172.041 334.520 172.198 334.738 c 172.354 334.957 172.463 335.212 172.526 335.504 c 172.557 335.702 172.573 336.046 172.573 336.535 c 172.573 340.363 l 171.526 340.363 l 171.526 336.582 l 171.526 336.145 171.484 335.822 171.401 335.613 c 171.317 335.405 171.172 335.236 170.963 335.105 c 170.755 334.975 170.510 334.910 170.229 334.910 c 169.781 334.910 169.393 335.053 169.065 335.340 c 168.737 335.626 168.573 336.165 168.573 336.957 c 168.573 340.363 l 167.526 340.363 l h 173.809 337.254 m 173.809 336.098 174.127 335.243 174.762 334.691 c 175.293 334.233 175.944 334.004 176.715 334.004 c 177.569 334.004 178.270 334.283 178.817 334.840 c 179.364 335.397 179.637 336.171 179.637 337.160 c 179.637 337.962 179.517 338.592 179.278 339.051 c 179.038 339.509 178.687 339.866 178.223 340.121 c 177.760 340.376 177.257 340.504 176.715 340.504 c 175.851 340.504 175.150 340.225 174.614 339.668 c 174.077 339.111 173.809 338.306 173.809 337.254 c h 174.887 337.254 m 174.887 338.046 175.062 338.639 175.411 339.035 c 175.760 339.431 176.194 339.629 176.715 339.629 c 177.246 339.629 177.684 339.431 178.028 339.035 c 178.371 338.639 178.543 338.035 178.543 337.223 c 178.543 336.452 178.369 335.868 178.020 335.473 c 177.671 335.077 177.236 334.879 176.715 334.879 c 176.194 334.879 175.760 335.074 175.411 335.465 c 175.062 335.855 174.887 336.452 174.887 337.254 c h f 2 J 10.0000 M 0 J 1.45000 M newpath 95.8000 366.995 m 95.8000 391.469 l S newpath 95.8000 399.469 m 100.800 387.469 l 95.8000 390.469 l 90.8000 387.469 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 100.722 387.964 m 100.722 379.370 l 101.878 379.370 l 106.394 386.120 l 106.394 379.370 l 107.488 379.370 l 107.488 387.964 l 106.316 387.964 l 101.800 381.214 l 101.800 387.964 l 100.722 387.964 l h 113.513 385.964 m 114.607 386.089 l 114.440 386.724 114.122 387.219 113.654 387.573 c 113.185 387.927 112.591 388.104 111.872 388.104 c 110.966 388.104 110.245 387.823 109.708 387.261 c 109.172 386.698 108.904 385.912 108.904 384.901 c 108.904 383.860 109.174 383.050 109.716 382.472 c 110.258 381.894 110.956 381.604 111.810 381.604 c 112.643 381.604 113.323 381.886 113.849 382.448 c 114.375 383.011 114.638 383.808 114.638 384.839 c 114.638 384.901 114.638 384.995 114.638 385.120 c 109.997 385.120 l 110.039 385.808 110.232 386.331 110.575 386.690 c 110.919 387.050 111.351 387.229 111.872 387.229 c 112.258 387.229 112.588 387.128 112.864 386.925 c 113.140 386.722 113.357 386.401 113.513 385.964 c h 110.060 384.261 m 113.529 384.261 l 113.487 383.729 113.357 383.334 113.138 383.073 c 112.794 382.667 112.357 382.464 111.825 382.464 c 111.336 382.464 110.927 382.625 110.599 382.948 c 110.271 383.271 110.091 383.709 110.060 384.261 c h f 2 J 10.0000 M 0 J 1.45000 M newpath 95.8000 434.466 m 95.8000 459.018 l S newpath 95.8000 467.018 m 100.800 455.018 l 95.8000 458.018 l 90.8000 455.018 l h f 2 J 10.0000 M 0 J 1.45000 M newpath 146.617 487.000 m 269.400 487.000 l 269.400 137.000 l 143.767 137.000 l S newpath 135.767 137.000 m 147.767 142.000 l 144.767 137.000 l 147.767 132.000 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 159.647 480.363 m 159.647 471.770 l 160.803 471.770 l 165.319 478.520 l 165.319 471.770 l 166.413 471.770 l 166.413 480.363 l 165.241 480.363 l 160.725 473.613 l 160.725 480.363 l 159.647 480.363 l h 172.438 478.363 m 173.532 478.488 l 173.365 479.124 173.047 479.618 172.579 479.973 c 172.110 480.327 171.516 480.504 170.797 480.504 c 169.891 480.504 169.170 480.223 168.633 479.660 c 168.097 479.098 167.829 478.311 167.829 477.301 c 167.829 476.259 168.099 475.449 168.641 474.871 c 169.183 474.293 169.881 474.004 170.735 474.004 c 171.568 474.004 172.248 474.285 172.774 474.848 c 173.300 475.410 173.563 476.207 173.563 477.238 c 173.563 477.301 173.563 477.395 173.563 477.520 c 168.922 477.520 l 168.964 478.207 169.157 478.730 169.500 479.090 c 169.844 479.449 170.276 479.629 170.797 479.629 c 171.183 479.629 171.513 479.527 171.789 479.324 c 172.066 479.121 172.282 478.801 172.438 478.363 c h 168.985 476.660 m 172.454 476.660 l 172.412 476.129 172.282 475.733 172.063 475.473 c 171.719 475.066 171.282 474.863 170.750 474.863 c 170.261 474.863 169.852 475.025 169.524 475.348 c 169.196 475.671 169.016 476.108 168.985 476.660 c h f 2 J 10.0000 M 0 J 1.45000 M newpath 95.8000 507.029 m 95.8000 524.908 l S newpath 95.8000 532.908 m 100.800 520.908 l 95.8000 523.908 l 90.8000 520.908 l h f 2 J 1.60000 M 0 J 1.45000 M newpath 99.7844 524.664 m 103.081 516.070 l 104.300 516.070 l 107.816 524.664 l 106.534 524.664 l 105.519 522.055 l 101.941 522.055 l 100.988 524.664 l 99.7844 524.664 l h 102.269 521.133 m 105.175 521.133 l 104.284 518.758 l 104.003 518.039 103.800 517.445 103.675 516.976 c 103.560 517.528 103.404 518.075 103.206 518.617 c 102.269 521.133 l h 108.601 524.664 m 108.601 518.445 l 109.538 518.445 l 109.538 519.320 l 109.997 518.643 110.658 518.305 111.523 518.305 c 111.898 518.305 112.244 518.372 112.562 518.508 c 112.879 518.643 113.116 518.820 113.273 519.039 c 113.429 519.258 113.538 519.513 113.601 519.805 c 113.632 520.002 113.648 520.346 113.648 520.836 c 113.648 524.664 l 112.601 524.664 l 112.601 520.883 l 112.601 520.445 112.559 520.122 112.476 519.914 c 112.392 519.706 112.247 519.536 112.038 519.406 c 111.830 519.276 111.585 519.211 111.304 519.211 c 110.856 519.211 110.468 519.354 110.140 519.640 c 109.812 519.927 109.648 520.466 109.648 521.258 c 109.648 524.664 l 108.601 524.664 l h 114.884 521.555 m 114.884 520.398 115.202 519.544 115.837 518.992 c 116.368 518.534 117.019 518.305 117.790 518.305 c 118.644 518.305 119.345 518.583 119.892 519.140 c 120.439 519.698 120.712 520.471 120.712 521.461 c 120.712 522.263 120.592 522.893 120.353 523.351 c 120.113 523.810 119.762 524.166 119.298 524.422 c 118.835 524.677 118.332 524.805 117.790 524.805 c 116.926 524.805 116.225 524.526 115.689 523.969 c 115.152 523.411 114.884 522.607 114.884 521.555 c h 115.962 521.555 m 115.962 522.346 116.137 522.940 116.486 523.336 c 116.835 523.732 117.269 523.930 117.790 523.930 c 118.321 523.930 118.759 523.732 119.103 523.336 c 119.446 522.940 119.618 522.336 119.618 521.523 c 119.618 520.752 119.444 520.169 119.095 519.773 c 118.746 519.377 118.311 519.180 117.790 519.180 c 117.269 519.180 116.835 519.375 116.486 519.765 c 116.137 520.156 115.962 520.752 115.962 521.555 c h f 2 J 10.0000 M Q [ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix cliprestore end end restore showpage %%Trailer %%EOF