summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps
Initial commit
Diffstat (limited to 'macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps')
-rw-r--r--macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps913
1 files changed, 913 insertions, 0 deletions
diff --git a/macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps b/macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps
new file mode 100644
index 0000000000..c6d55de6be
--- /dev/null
+++ b/macros/latex/contrib/uantwerpendocs/4E_PMS302_BR_ENG_RGB.eps
@@ -0,0 +1,913 @@
+%!PS-Adobe-3.0
+%Produced by poppler pdftops version: 0.33.0 (http://poppler.freedesktop.org)
+%%Creator: Adobe Illustrator CC 2015 (Macintosh)
+%%LanguageLevel: 2
+%%DocumentSuppliedResources: (atend)
+%%DocumentMedia: 210x50mm 596 142 0 () ()
+%%BoundingBox: 0 0 596 142
+%%Pages: 1
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset xpdf 3.00 0
+%%Copyright: Copyright 1996-2011 Glyph & Cog, LLC
+/xpdf 75 dict def xpdf begin
+% PDF special state
+/pdfDictSize 15 def
+/pdfSetup {
+ /setpagedevice where {
+ pop 2 dict begin
+ /Policies 1 dict dup begin /PageSize 6 def end def
+ { /Duplex true def } if
+ currentdict end setpagedevice
+ } {
+ pop
+ } ifelse
+} def
+/pdfSetupPaper {
+ % Change paper size, but only if different from previous paper size otherwise
+ % duplex fails. PLRM specifies a tolerance of 5 pts when matching paper size
+ % so we use the same when checking if the size changes.
+ /setpagedevice where {
+ pop currentpagedevice
+ /PageSize known {
+ 2 copy
+ currentpagedevice /PageSize get aload pop
+ exch 4 1 roll
+ sub abs 5 gt
+ 3 1 roll
+ sub abs 5 gt
+ or
+ } {
+ true
+ } ifelse
+ {
+ 2 array astore
+ 2 dict begin
+ /PageSize exch def
+ /ImagingBBox null def
+ currentdict end
+ setpagedevice
+ } {
+ pop pop
+ } ifelse
+ } {
+ pop
+ } ifelse
+} def
+/pdfStartPage {
+ pdfDictSize dict begin
+ /pdfFillCS [] def
+ /pdfFillXform {} def
+ /pdfStrokeCS [] def
+ /pdfStrokeXform {} def
+ /pdfFill [0] def
+ /pdfStroke [0] def
+ /pdfFillOP false def
+ /pdfStrokeOP false def
+ /pdfLastFill false def
+ /pdfLastStroke false def
+ /pdfTextMat [1 0 0 1 0 0] def
+ /pdfFontSize 0 def
+ /pdfCharSpacing 0 def
+ /pdfTextRender 0 def
+ /pdfPatternCS false def
+ /pdfTextRise 0 def
+ /pdfWordSpacing 0 def
+ /pdfHorizScaling 1 def
+ /pdfTextClipPath [] def
+} def
+/pdfEndPage { end } def
+% PDF color state
+/cs { /pdfFillXform exch def dup /pdfFillCS exch def
+ setcolorspace } def
+/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def
+ setcolorspace } def
+/sc { pdfLastFill not { pdfFillCS setcolorspace } if
+ dup /pdfFill exch def aload pop pdfFillXform setcolor
+ /pdfLastFill true def /pdfLastStroke false def } def
+/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if
+ dup /pdfStroke exch def aload pop pdfStrokeXform setcolor
+ /pdfLastStroke true def /pdfLastFill false def } def
+/op { /pdfFillOP exch def
+ pdfLastFill { pdfFillOP setoverprint } if } def
+/OP { /pdfStrokeOP exch def
+ pdfLastStroke { pdfStrokeOP setoverprint } if } def
+/fCol {
+ pdfLastFill not {
+ pdfFillCS setcolorspace
+ pdfFill aload pop pdfFillXform setcolor
+ pdfFillOP setoverprint
+ /pdfLastFill true def /pdfLastStroke false def
+ } if
+} def
+/sCol {
+ pdfLastStroke not {
+ pdfStrokeCS setcolorspace
+ pdfStroke aload pop pdfStrokeXform setcolor
+ pdfStrokeOP setoverprint
+ /pdfLastStroke true def /pdfLastFill false def
+ } if
+} def
+% build a font
+/pdfMakeFont {
+ 4 3 roll findfont
+ 4 2 roll matrix scale makefont
+ dup length dict begin
+ { 1 index /FID ne { def } { pop pop } ifelse } forall
+ /Encoding exch def
+ currentdict
+ end
+ definefont pop
+} def
+/pdfMakeFont16 {
+ exch findfont
+ dup length dict begin
+ { 1 index /FID ne { def } { pop pop } ifelse } forall
+ /WMode exch def
+ currentdict
+ end
+ definefont pop
+} def
+% graphics state operators
+/q { gsave pdfDictSize dict begin } def
+/Q {
+ end grestore
+ /pdfLastFill where {
+ pop
+ pdfLastFill {
+ pdfFillOP setoverprint
+ } {
+ pdfStrokeOP setoverprint
+ } ifelse
+ } if
+} def
+/cm { concat } def
+/d { setdash } def
+/i { setflat } def
+/j { setlinejoin } def
+/J { setlinecap } def
+/M { setmiterlimit } def
+/w { setlinewidth } def
+% path segment operators
+/m { moveto } def
+/l { lineto } def
+/c { curveto } def
+/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
+ neg 0 rlineto closepath } def
+/h { closepath } def
+% path painting operators
+/S { sCol stroke } def
+/Sf { fCol stroke } def
+/f { fCol fill } def
+/f* { fCol eofill } def
+% clipping operators
+/W { clip newpath } def
+/W* { eoclip newpath } def
+/Ws { strokepath clip newpath } def
+% text state operators
+/Tc { /pdfCharSpacing exch def } def
+/Tf { dup /pdfFontSize exch def
+ dup pdfHorizScaling mul exch matrix scale
+ pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put
+ exch findfont exch makefont setfont } def
+/Tr { /pdfTextRender exch def } def
+/Tp { /pdfPatternCS exch def } def
+/Ts { /pdfTextRise exch def } def
+/Tw { /pdfWordSpacing exch def } def
+/Tz { /pdfHorizScaling exch def } def
+% text positioning operators
+/Td { pdfTextMat transform moveto } def
+/Tm { /pdfTextMat exch def } def
+% text string operators
+/xyshow where {
+ pop
+ /xyshow2 {
+ dup length array
+ 0 2 2 index length 1 sub {
+ 2 index 1 index 2 copy get 3 1 roll 1 add get
+ pdfTextMat dtransform
+ 4 2 roll 2 copy 6 5 roll put 1 add 3 1 roll dup 4 2 roll put
+ } for
+ exch pop
+ xyshow
+ } def
+}{
+ /xyshow2 {
+ currentfont /FontType get 0 eq {
+ 0 2 3 index length 1 sub {
+ currentpoint 4 index 3 index 2 getinterval show moveto
+ 2 copy get 2 index 3 2 roll 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } {
+ 0 1 3 index length 1 sub {
+ currentpoint 4 index 3 index 1 getinterval show moveto
+ 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } ifelse
+ pop pop
+ } def
+} ifelse
+/cshow where {
+ pop
+ /xycp {
+ 0 3 2 roll
+ {
+ pop pop currentpoint 3 2 roll
+ 1 string dup 0 4 3 roll put false charpath moveto
+ 2 copy get 2 index 2 index 1 add get
+ pdfTextMat dtransform rmoveto
+ 2 add
+ } exch cshow
+ pop pop
+ } def
+}{
+ /xycp {
+ currentfont /FontType get 0 eq {
+ 0 2 3 index length 1 sub {
+ currentpoint 4 index 3 index 2 getinterval false charpath moveto
+ 2 copy get 2 index 3 2 roll 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } {
+ 0 1 3 index length 1 sub {
+ currentpoint 4 index 3 index 1 getinterval false charpath moveto
+ 2 copy 2 mul get 2 index 3 2 roll 2 mul 1 add get
+ pdfTextMat dtransform rmoveto
+ } for
+ } ifelse
+ pop pop
+ } def
+} ifelse
+/Tj {
+ fCol
+ 0 pdfTextRise pdfTextMat dtransform rmoveto
+ currentpoint 4 2 roll
+ pdfTextRender 1 and 0 eq {
+ 2 copy xyshow2
+ } if
+ pdfTextRender 3 and dup 1 eq exch 2 eq or {
+ 3 index 3 index moveto
+ 2 copy
+ currentfont /FontType get 3 eq { fCol } { sCol } ifelse
+ xycp currentpoint stroke moveto
+ } if
+ pdfTextRender 4 and 0 ne {
+ 4 2 roll moveto xycp
+ /pdfTextClipPath [ pdfTextClipPath aload pop
+ {/moveto cvx}
+ {/lineto cvx}
+ {/curveto cvx}
+ {/closepath cvx}
+ pathforall ] def
+ currentpoint newpath moveto
+ } {
+ pop pop pop pop
+ } ifelse
+ 0 pdfTextRise neg pdfTextMat dtransform rmoveto
+} def
+/TJm { 0.001 mul pdfFontSize mul pdfHorizScaling mul neg 0
+ pdfTextMat dtransform rmoveto } def
+/TJmV { 0.001 mul pdfFontSize mul neg 0 exch
+ pdfTextMat dtransform rmoveto } def
+/Tclip { pdfTextClipPath cvx exec clip newpath
+ /pdfTextClipPath [] def } def
+/Tclip* { pdfTextClipPath cvx exec eoclip newpath
+ /pdfTextClipPath [] def } def
+% Level 2/3 image operators
+/pdfImBuf 100 string def
+/pdfImStr {
+ 2 copy exch length lt {
+ 2 copy get exch 1 add exch
+ } {
+ ()
+ } ifelse
+} def
+/skipEOD {
+ { currentfile pdfImBuf readline
+ not { pop exit } if
+ (%-EOD-) eq { exit } if } loop
+} def
+/pdfIm { image skipEOD } def
+/pdfImM { fCol imagemask skipEOD } def
+/pr { 2 index 2 index 3 2 roll putinterval 4 add } def
+/pdfImClip {
+ gsave
+ 0 2 4 index length 1 sub {
+ dup 4 index exch 2 copy
+ get 5 index div put
+ 1 add 3 index exch 2 copy
+ get 3 index div put
+ } for
+ pop pop rectclip
+} def
+/pdfImClipEnd { grestore } def
+% shading operators
+/colordelta {
+ false 0 1 3 index length 1 sub {
+ dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt {
+ pop true
+ } if
+ } for
+ exch pop exch pop
+} def
+/funcCol { func n array astore } def
+/funcSH {
+ dup 0 eq {
+ true
+ } {
+ dup 6 eq {
+ false
+ } {
+ 4 index 4 index funcCol dup
+ 6 index 4 index funcCol dup
+ 3 1 roll colordelta 3 1 roll
+ 5 index 5 index funcCol dup
+ 3 1 roll colordelta 3 1 roll
+ 6 index 8 index funcCol dup
+ 3 1 roll colordelta 3 1 roll
+ colordelta or or or
+ } ifelse
+ } ifelse
+ {
+ 1 add
+ 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch
+ 6 index 6 index 4 index 4 index 4 index funcSH
+ 2 index 6 index 6 index 4 index 4 index funcSH
+ 6 index 2 index 4 index 6 index 4 index funcSH
+ 5 3 roll 3 2 roll funcSH pop pop
+ } {
+ pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul
+ funcCol sc
+ dup 4 index exch mat transform m
+ 3 index 3 index mat transform l
+ 1 index 3 index mat transform l
+ mat transform l pop pop h f*
+ } ifelse
+} def
+/axialCol {
+ dup 0 lt {
+ pop t0
+ } {
+ dup 1 gt {
+ pop t1
+ } {
+ dt mul t0 add
+ } ifelse
+ } ifelse
+ func n array astore
+} def
+/axialSH {
+ dup 0 eq {
+ true
+ } {
+ dup 8 eq {
+ false
+ } {
+ 2 index axialCol 2 index axialCol colordelta
+ } ifelse
+ } ifelse
+ {
+ 1 add 3 1 roll 2 copy add 0.5 mul
+ dup 4 3 roll exch 4 index axialSH
+ exch 3 2 roll axialSH
+ } {
+ pop 2 copy add 0.5 mul
+ axialCol sc
+ exch dup dx mul x0 add exch dy mul y0 add
+ 3 2 roll dup dx mul x0 add exch dy mul y0 add
+ dx abs dy abs ge {
+ 2 copy yMin sub dy mul dx div add yMin m
+ yMax sub dy mul dx div add yMax l
+ 2 copy yMax sub dy mul dx div add yMax l
+ yMin sub dy mul dx div add yMin l
+ h f*
+ } {
+ exch 2 copy xMin sub dx mul dy div add xMin exch m
+ xMax sub dx mul dy div add xMax exch l
+ exch 2 copy xMax sub dx mul dy div add xMax exch l
+ xMin sub dx mul dy div add xMin exch l
+ h f*
+ } ifelse
+ } ifelse
+} def
+/radialCol {
+ dup t0 lt {
+ pop t0
+ } {
+ dup t1 gt {
+ pop t1
+ } if
+ } ifelse
+ func n array astore
+} def
+/radialSH {
+ dup 0 eq {
+ true
+ } {
+ dup 8 eq {
+ false
+ } {
+ 2 index dt mul t0 add radialCol
+ 2 index dt mul t0 add radialCol colordelta
+ } ifelse
+ } ifelse
+ {
+ 1 add 3 1 roll 2 copy add 0.5 mul
+ dup 4 3 roll exch 4 index radialSH
+ exch 3 2 roll radialSH
+ } {
+ pop 2 copy add 0.5 mul dt mul t0 add
+ radialCol sc
+ encl {
+ exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ 0 360 arc h
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ 360 0 arcn h f
+ } {
+ 2 copy
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a1 a2 arcn
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a2 a1 arcn h
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a1 a2 arc
+ dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add
+ a2 a1 arc h f
+ } ifelse
+ } ifelse
+} def
+end
+%%EndResource
+%%EndProlog
+%%BeginSetup
+xpdf begin
+false pdfSetup
+%%EndSetup
+%%Page: 1 1
+%%PageMedia: 210x50mm
+%%PageBoundingBox: 0 0 596 142
+%%PageOrientation: Portrait
+%%BeginPageSetup
+596 142 pdfSetupPaper
+pdfStartPage
+0 0 596 142 re W
+%%EndPageSetup
+[] 0 d
+1 i
+0 j
+0 J
+10 M
+1 w
+/DeviceGray {} cs
+[0] sc
+/DeviceGray {} CS
+[0] SC
+false op
+false OP
+{} settransfer
+q
+q
+0 0 595.276 141.732 re
+W
+[/Separation (PANTONE 302 rgb) /DeviceRGB
+{ dup 0 lt { pop 0 } { dup 1 gt { pop 1 } if } ifelse
+0 index 1 exp -1 mul 1 add
+dup 0 lt { pop 0 } { dup 1 gt { pop 1 } if } ifelse
+1 index 1 exp -0.733333 mul 1 add
+dup 0 lt { pop 0 } { dup 1 gt { pop 1 } if } ifelse
+2 index 1 exp -0.6 mul 1 add
+dup 0 lt { pop 0 } { dup 1 gt { pop 1 } if } ifelse
+4 3 roll pop
+}
+] {} cs
+[1] sc
+[1] sc
+false op
+false OP
+q
+[1 0 0 1 472.1465 59.4736] cm
+0 0 m
+-0.022 0.049 -0.041 0.112 -0.059 0.193 c
+-0.075 0.271 -0.09 0.362 -0.102 0.458 c
+-0.113 0.557 -0.122 0.66 -0.13 0.767 c
+-0.138 0.872 -0.144 0.979 -0.149 1.081 c
+-0.383 0.868 -0.613 0.689 -0.832 0.542 c
+-1.052 0.396 -1.269 0.278 -1.478 0.191 c
+-1.689 0.1 -1.895 0.037 -2.097 -0.003 c
+-2.302 -0.043 -2.505 -0.061 -2.708 -0.061 c
+-3.045 -0.061 -3.327 -0.015 -3.551 0.077 c
+-3.776 0.169 -3.958 0.299 -4.094 0.468 c
+-4.229 0.637 -4.327 0.843 -4.386 1.083 c
+-4.443 1.325 -4.471 1.598 -4.471 1.895 c
+-4.471 6.932 l
+-3.272 6.989 l
+-3.272 1.968 l
+-3.272 1.816 -3.253 1.676 -3.221 1.55 c
+-3.186 1.42 -3.132 1.312 -3.054 1.218 c
+-2.975 1.122 -2.871 1.049 -2.745 0.997 c
+-2.619 0.944 -2.462 0.92 -2.277 0.92 c
+-2.134 0.92 -1.979 0.941 -1.814 0.982 c
+-1.652 1.023 -1.48 1.087 -1.3 1.173 c
+-1.122 1.26 -0.939 1.371 -0.75 1.508 c
+-0.561 1.644 -0.369 1.808 -0.178 1.999 c
+-0.178 6.932 l
+1.022 6.989 l
+1.022 0.061 l
+0 0 l
+h
+f
+Q
+q
+[1 0 0 1 479.0771 62.4219] cm
+0 0 m
+-0.551 -0.038 -1.017 -0.084 -1.395 -0.137 c
+-1.771 -0.194 -2.072 -0.262 -2.304 -0.344 c
+-2.531 -0.426 -2.698 -0.524 -2.796 -0.64 c
+-2.898 -0.756 -2.948 -0.894 -2.948 -1.054 c
+-2.948 -1.207 -2.927 -1.348 -2.885 -1.476 c
+-2.845 -1.604 -2.781 -1.714 -2.694 -1.805 c
+-2.607 -1.896 -2.499 -1.967 -2.368 -2.017 c
+-2.236 -2.066 -2.079 -2.089 -1.9 -2.089 c
+-1.771 -2.089 -1.631 -2.07 -1.48 -2.033 c
+-1.33 -1.994 -1.174 -1.934 -1.012 -1.855 c
+-0.85 -1.773 -0.683 -1.669 -0.515 -1.54 c
+-0.342 -1.413 -0.173 -1.26 0 -1.083 c
+0 0 l
+h
+1.729 -1.985 m
+1.849 -1.985 1.957 -1.98 2.056 -1.972 c
+2.155 -1.965 2.263 -1.949 2.383 -1.928 c
+2.472 -2.754 l
+2.397 -2.782 2.313 -2.807 2.217 -2.83 c
+2.121 -2.853 2.019 -2.872 1.913 -2.89 c
+1.807 -2.909 1.694 -2.923 1.582 -2.932 c
+1.466 -2.941 1.352 -2.948 1.244 -2.948 c
+1.03 -2.948 0.852 -2.926 0.704 -2.887 c
+0.557 -2.847 0.435 -2.789 0.341 -2.709 c
+0.246 -2.629 0.174 -2.531 0.124 -2.417 c
+0.074 -2.3 0.042 -2.166 0.028 -2.015 c
+-0.197 -2.22 -0.402 -2.387 -0.584 -2.515 c
+-0.765 -2.644 -0.94 -2.747 -1.112 -2.819 c
+-1.285 -2.892 -1.462 -2.941 -1.642 -2.969 c
+-1.824 -2.995 -2.027 -3.01 -2.253 -3.01 c
+-2.503 -3.01 -2.735 -2.972 -2.957 -2.898 c
+-3.178 -2.822 -3.374 -2.707 -3.542 -2.552 c
+-3.709 -2.398 -3.842 -2.205 -3.94 -1.972 c
+-4.04 -1.737 -4.089 -1.462 -4.089 -1.143 c
+-4.089 -0.979 -4.07 -0.824 -4.031 -0.679 c
+-3.994 -0.532 -3.921 -0.396 -3.816 -0.269 c
+-3.709 -0.141 -3.561 -0.023 -3.371 0.083 c
+-3.178 0.191 -2.932 0.288 -2.625 0.375 c
+-2.319 0.462 -1.949 0.538 -1.517 0.602 c
+-1.083 0.664 -0.569 0.717 0.028 0.754 c
+0.028 2.101 l
+0.028 2.477 -0.06 2.754 -0.234 2.93 c
+-0.406 3.106 -0.661 3.193 -0.995 3.193 c
+-1.185 3.193 -1.374 3.176 -1.572 3.139 c
+-1.771 3.102 -1.963 3.046 -2.155 2.976 c
+-2.349 2.905 -2.538 2.82 -2.724 2.719 c
+-2.908 2.619 -3.087 2.505 -3.257 2.383 c
+-3.778 3.137 l
+-3.565 3.294 -3.344 3.432 -3.12 3.557 c
+-2.898 3.681 -2.661 3.786 -2.412 3.874 c
+-2.165 3.961 -1.901 4.029 -1.619 4.076 c
+-1.34 4.121 -1.038 4.146 -0.712 4.146 c
+-0.1 4.146 0.369 3.979 0.693 3.646 c
+1.019 3.313 1.182 2.833 1.182 2.205 c
+1.182 -1.468 l
+1.182 -1.578 1.19 -1.669 1.205 -1.735 c
+1.221 -1.804 1.25 -1.857 1.29 -1.894 c
+1.331 -1.931 1.388 -1.956 1.457 -1.967 c
+1.528 -1.979 1.619 -1.985 1.729 -1.985 c
+f
+Q
+q
+[1 0 0 1 487.1934 59.5342] cm
+0 0 m
+0 4.973 l
+0 5.123 -0.015 5.261 -0.041 5.39 c
+-0.07 5.52 -0.12 5.632 -0.19 5.729 c
+-0.258 5.826 -0.353 5.9 -0.47 5.956 c
+-0.588 6.011 -0.737 6.039 -0.919 6.039 c
+-1.062 6.039 -1.223 6.013 -1.398 5.963 c
+-1.576 5.909 -1.762 5.835 -1.956 5.732 c
+-2.15 5.634 -2.347 5.509 -2.548 5.363 c
+-2.75 5.215 -2.946 5.047 -3.139 4.854 c
+-3.139 0 l
+-4.325 0 l
+-4.325 6.884 l
+-3.315 6.971 l
+-3.294 6.924 -3.273 6.857 -3.255 6.776 c
+-3.235 6.694 -3.218 6.602 -3.205 6.496 c
+-3.193 6.391 -3.182 6.28 -3.171 6.159 c
+-3.161 6.037 -3.155 5.915 -3.153 5.79 c
+-2.917 6.011 -2.686 6.201 -2.458 6.357 c
+-2.23 6.515 -2.006 6.642 -1.787 6.742 c
+-1.565 6.842 -1.349 6.917 -1.135 6.963 c
+-0.922 7.009 -0.712 7.034 -0.505 7.034 c
+-0.19 7.034 0.079 6.993 0.299 6.915 c
+0.516 6.835 0.692 6.716 0.824 6.557 c
+0.957 6.4 1.052 6.205 1.107 5.968 c
+1.167 5.732 1.197 5.461 1.197 5.148 c
+1.197 0 l
+0 0 l
+h
+f
+Q
+q
+[1 0 0 1 493.5527 59.5479] cm
+0 0 m
+-0.328 -0.079 -0.686 -0.119 -1.075 -0.119 c
+-1.636 -0.119 -2.055 0.013 -2.325 0.277 c
+-2.6 0.544 -2.734 0.963 -2.734 1.54 c
+-2.734 5.953 l
+-3.667 5.997 l
+-3.593 6.811 l
+-2.722 6.856 l
+-2.553 9.076 l
+-1.535 9.18 l
+-1.535 6.871 l
+0.732 6.871 l
+0.655 5.937 l
+-1.535 5.937 l
+-1.535 1.644 l
+-1.535 1.499 -1.522 1.377 -1.498 1.277 c
+-1.472 1.178 -1.431 1.097 -1.368 1.036 c
+-1.311 0.973 -1.233 0.928 -1.141 0.901 c
+-1.048 0.874 -0.93 0.859 -0.793 0.859 c
+-0.57 0.859 -0.34 0.886 -0.107 0.939 c
+0.126 0.993 0.382 1.078 0.655 1.199 c
+0.909 0.354 l
+0.632 0.196 0.329 0.08 0 0 c
+f
+Q
+q
+[1 0 0 1 498.0293 59.5342] cm
+0 0 m
+-0.976 0 l
+-3.094 6.871 l
+-1.923 6.871 l
+-0.459 1.907 l
+-0.413 1.758 -0.381 1.63 -0.366 1.52 c
+-0.35 1.412 -0.34 1.31 -0.34 1.213 c
+-0.34 1.31 -0.324 1.418 -0.298 1.539 c
+-0.272 1.658 -0.235 1.782 -0.191 1.907 c
+1.426 6.871 l
+2.414 6.929 l
+4.076 1.907 l
+4.125 1.758 4.161 1.63 4.18 1.52 c
+4.199 1.412 4.209 1.31 4.209 1.213 c
+4.209 1.31 4.219 1.418 4.24 1.539 c
+4.261 1.658 4.296 1.782 4.343 1.907 c
+5.939 6.871 l
+6.992 6.871 l
+4.681 0 l
+3.658 0 l
+1.971 4.988 l
+1.927 5.114 1.896 5.238 1.88 5.359 c
+1.858 5.48 1.851 5.589 1.851 5.685 c
+1.851 5.488 1.808 5.255 1.721 4.988 c
+0 0 l
+h
+f
+Q
+q
+[1 0 0 1 510.5127 63.8848] cm
+0 0 m
+0 0.277 -0.03 0.524 -0.091 0.744 c
+-0.151 0.961 -0.24 1.147 -0.357 1.298 c
+-0.474 1.45 -0.62 1.566 -0.793 1.646 c
+-0.967 1.724 -1.166 1.766 -1.395 1.766 c
+-1.661 1.766 -1.906 1.724 -2.131 1.646 c
+-2.355 1.566 -2.553 1.444 -2.723 1.283 c
+-2.894 1.127 -3.036 0.926 -3.148 0.684 c
+-3.261 0.442 -3.337 0.16 -3.376 -0.162 c
+0 -0.162 l
+0 0 l
+h
+0.557 -3.935 m
+0.349 -4.041 0.128 -4.133 -0.102 -4.209 c
+-0.335 -4.284 -0.576 -4.344 -0.836 -4.384 c
+-1.091 -4.423 -1.367 -4.441 -1.661 -4.441 c
+-2.097 -4.441 -2.495 -4.386 -2.856 -4.27 c
+-3.219 -4.153 -3.529 -3.969 -3.789 -3.717 c
+-4.046 -3.463 -4.249 -3.134 -4.393 -2.729 c
+-4.534 -2.325 -4.605 -1.837 -4.605 -1.258 c
+-4.605 -0.615 -4.529 -0.052 -4.373 0.438 c
+-4.219 0.927 -3.998 1.337 -3.708 1.667 c
+-3.42 1.995 -3.071 2.247 -2.661 2.414 c
+-2.252 2.584 -1.795 2.667 -1.289 2.667 c
+-0.907 2.667 -0.57 2.605 -0.278 2.48 c
+0.016 2.352 0.262 2.176 0.46 1.946 c
+0.658 1.72 0.81 1.448 0.911 1.132 c
+1.015 0.816 1.066 0.47 1.066 0.091 c
+1.066 -0.143 l
+1.066 -0.221 1.064 -0.303 1.06 -0.389 c
+1.055 -0.474 1.051 -0.566 1.048 -0.663 c
+1.043 -0.764 1.033 -0.872 1.023 -0.989 c
+-3.435 -0.989 l
+-3.435 -1.431 -3.397 -1.81 -3.313 -2.125 c
+-3.23 -2.441 -3.105 -2.699 -2.935 -2.902 c
+-2.764 -3.104 -2.551 -3.254 -2.292 -3.349 c
+-2.036 -3.443 -1.73 -3.491 -1.378 -3.491 c
+-1.012 -3.491 -0.649 -3.431 -0.294 -3.304 c
+0.062 -3.179 0.427 -3 0.798 -2.77 c
+1.157 -3.566 l
+0.961 -3.704 0.763 -3.828 0.557 -3.935 c
+f
+Q
+q
+[1 0 0 1 517.0771 65.4863] cm
+0 0 m
+-0.058 0.006 -0.104 0.01 -0.144 0.011 c
+-0.185 0.011 -0.222 0.013 -0.254 0.013 c
+-0.288 0.015 -0.316 0.015 -0.345 0.015 c
+-0.431 0.015 l
+-0.548 0.015 -0.655 0.01 -0.751 -0.007 c
+-0.845 -0.017 -0.937 -0.047 -1.023 -0.092 c
+-1.109 -0.138 -1.198 -0.203 -1.285 -0.29 c
+-1.372 -0.38 -1.47 -0.496 -1.576 -0.645 c
+-1.683 -0.793 -1.802 -0.977 -1.931 -1.193 c
+-2.062 -1.411 -2.212 -1.677 -2.386 -1.985 c
+-2.386 -5.952 l
+-3.572 -5.952 l
+-3.572 0.932 l
+-2.635 1.033 l
+-2.61 0.979 -2.587 0.89 -2.568 0.769 c
+-2.548 0.648 -2.531 0.504 -2.515 0.339 c
+-2.498 0.174 -2.486 -0.01 -2.477 -0.206 c
+-2.466 -0.406 -2.461 -0.608 -2.459 -0.816 c
+-2.334 -0.552 -2.216 -0.323 -2.107 -0.126 c
+-2 0.069 -1.896 0.236 -1.798 0.375 c
+-1.697 0.516 -1.604 0.631 -1.511 0.72 c
+-1.421 0.811 -1.328 0.879 -1.232 0.93 c
+-1.135 0.984 -1.038 1.017 -0.935 1.037 c
+-0.833 1.057 -0.725 1.066 -0.606 1.066 c
+-0.466 1.066 -0.331 1.057 -0.202 1.037 c
+-0.074 1.017 0.025 0.998 0.102 0.977 c
+0 0 l
+h
+f
+Q
+q
+[1 0 0 1 523.1846 63.1162] cm
+0 0 m
+0 0.369 -0.031 0.708 -0.095 1.01 c
+-0.161 1.315 -0.261 1.575 -0.399 1.791 c
+-0.534 2.008 -0.708 2.176 -0.924 2.295 c
+-1.135 2.412 -1.39 2.471 -1.687 2.471 c
+-1.872 2.471 -2.052 2.447 -2.226 2.396 c
+-2.399 2.344 -2.563 2.277 -2.72 2.192 c
+-2.874 2.107 -3.019 2.012 -3.151 1.903 c
+-3.284 1.795 -3.404 1.686 -3.509 1.567 c
+-3.509 -2.446 l
+-3.313 -2.542 -3.089 -2.624 -2.837 -2.693 c
+-2.586 -2.764 -2.326 -2.798 -2.056 -2.798 c
+-1.723 -2.798 -1.43 -2.736 -1.171 -2.613 c
+-0.915 -2.488 -0.699 -2.309 -0.526 -2.069 c
+-0.353 -1.834 -0.221 -1.542 -0.132 -1.194 c
+-0.043 -0.847 0 -0.449 0 0 c
+1.231 0.09 m
+1.231 -0.259 1.201 -0.592 1.143 -0.912 c
+1.087 -1.231 0.998 -1.533 0.879 -1.81 c
+0.76 -2.088 0.608 -2.34 0.427 -2.566 c
+0.244 -2.795 0.03 -2.988 -0.217 -3.15 c
+-0.464 -3.311 -0.744 -3.436 -1.055 -3.523 c
+-1.367 -3.61 -1.716 -3.656 -2.099 -3.656 c
+-2.383 -3.656 -2.64 -3.636 -2.876 -3.594 c
+-3.108 -3.554 -3.321 -3.481 -3.509 -3.378 c
+-3.509 -6.457 l
+-4.72 -6.527 l
+-4.72 3.302 l
+-3.714 3.403 l
+-3.693 3.355 -3.673 3.293 -3.654 3.226 c
+-3.635 3.155 -3.618 3.078 -3.604 2.998 c
+-3.591 2.916 -3.58 2.832 -3.57 2.745 c
+-3.562 2.66 -3.553 2.573 -3.551 2.486 c
+-3.408 2.635 -3.252 2.769 -3.082 2.888 c
+-2.913 3.005 -2.735 3.107 -2.548 3.192 c
+-2.362 3.276 -2.167 3.34 -1.965 3.384 c
+-1.764 3.429 -1.557 3.452 -1.347 3.452 c
+-0.934 3.452 -0.568 3.382 -0.25 3.249 c
+0.07 3.114 0.339 2.907 0.559 2.63 c
+0.779 2.355 0.945 2.003 1.058 1.583 c
+1.172 1.16 1.231 0.664 1.231 0.09 c
+f
+Q
+526.424 59.534 1.555 1.333 re
+f
+q
+[1 0 0 1 535.0381 63.1162] cm
+0 0 m
+0 0.369 -0.034 0.708 -0.103 1.01 c
+-0.165 1.315 -0.269 1.575 -0.407 1.791 c
+-0.544 2.008 -0.722 2.176 -0.937 2.295 c
+-1.152 2.412 -1.405 2.471 -1.703 2.471 c
+-1.866 2.471 -2.027 2.449 -2.191 2.405 c
+-2.357 2.361 -2.515 2.296 -2.671 2.217 c
+-2.829 2.135 -2.981 2.039 -3.129 1.923 c
+-3.278 1.81 -3.421 1.682 -3.554 1.538 c
+-3.554 -2.547 l
+-3.436 -2.599 -3.322 -2.643 -3.21 -2.679 c
+-3.101 -2.716 -2.988 -2.745 -2.875 -2.766 c
+-2.763 -2.79 -2.648 -2.803 -2.524 -2.813 c
+-2.404 -2.823 -2.273 -2.83 -2.134 -2.83 c
+-1.788 -2.83 -1.483 -2.764 -1.22 -2.638 c
+-0.955 -2.512 -0.732 -2.329 -0.55 -2.086 c
+-0.37 -1.842 -0.233 -1.547 -0.138 -1.198 c
+-0.048 -0.849 0 -0.449 0 0 c
+-3.568 2.52 m
+-3.417 2.658 -3.256 2.786 -3.09 2.9 c
+-2.922 3.015 -2.746 3.112 -2.565 3.193 c
+-2.381 3.276 -2.19 3.34 -1.989 3.384 c
+-1.788 3.429 -1.58 3.452 -1.363 3.452 c
+-0.949 3.452 -0.582 3.382 -0.26 3.249 c
+0.06 3.114 0.33 2.909 0.548 2.633 c
+0.765 2.359 0.93 2.015 1.044 1.596 c
+1.158 1.176 1.214 0.686 1.214 0.118 c
+1.214 -0.449 1.14 -0.965 0.991 -1.433 c
+0.843 -1.9 0.626 -2.3 0.339 -2.634 c
+0.051 -2.969 -0.303 -3.226 -0.722 -3.412 c
+-1.144 -3.596 -1.63 -3.688 -2.177 -3.688 c
+-2.622 -3.688 -3.055 -3.646 -3.485 -3.563 c
+-3.912 -3.479 -4.33 -3.339 -4.736 -3.139 c
+-4.736 6.915 l
+-3.568 7.004 l
+-3.568 2.52 l
+h
+f
+Q
+q
+[1 0 0 1 542.1729 63.8848] cm
+0 0 m
+0 0.277 -0.031 0.524 -0.09 0.744 c
+-0.15 0.961 -0.239 1.147 -0.358 1.298 c
+-0.474 1.45 -0.618 1.566 -0.791 1.646 c
+-0.967 1.724 -1.164 1.766 -1.392 1.766 c
+-1.66 1.766 -1.905 1.724 -2.13 1.646 c
+-2.354 1.566 -2.552 1.444 -2.722 1.283 c
+-2.893 1.127 -3.035 0.926 -3.148 0.684 c
+-3.26 0.442 -3.335 0.16 -3.376 -0.162 c
+0 -0.162 l
+0 0 l
+h
+0.557 -3.935 m
+0.35 -4.041 0.13 -4.133 -0.103 -4.209 c
+-0.333 -4.284 -0.576 -4.344 -0.834 -4.384 c
+-1.09 -4.423 -1.366 -4.441 -1.66 -4.441 c
+-2.096 -4.441 -2.493 -4.386 -2.858 -4.27 c
+-3.22 -4.153 -3.528 -3.969 -3.787 -3.717 c
+-4.046 -3.463 -4.247 -3.134 -4.392 -2.729 c
+-4.536 -2.325 -4.607 -1.837 -4.607 -1.258 c
+-4.607 -0.615 -4.528 -0.052 -4.371 0.438 c
+-4.218 0.927 -3.996 1.337 -3.708 1.667 c
+-3.419 1.995 -3.07 2.247 -2.662 2.414 c
+-2.251 2.584 -1.793 2.667 -1.287 2.667 c
+-0.906 2.667 -0.569 2.605 -0.277 2.48 c
+0.016 2.352 0.261 2.176 0.46 1.946 c
+0.659 1.72 0.81 1.448 0.913 1.132 c
+1.016 0.816 1.067 0.47 1.067 0.091 c
+1.067 -0.143 l
+1.067 -0.221 1.065 -0.303 1.059 -0.389 c
+1.056 -0.474 1.052 -0.566 1.047 -0.663 c
+1.043 -0.764 1.034 -0.872 1.022 -0.989 c
+-3.435 -0.989 l
+-3.435 -1.431 -3.396 -1.81 -3.311 -2.125 c
+-3.229 -2.441 -3.104 -2.699 -2.934 -2.902 c
+-2.763 -3.104 -2.552 -3.254 -2.29 -3.349 c
+-2.035 -3.443 -1.729 -3.491 -1.376 -3.491 c
+-1.013 -3.491 -0.648 -3.431 -0.292 -3.304 c
+0.063 -3.179 0.428 -3 0.799 -2.77 c
+1.156 -3.566 l
+0.963 -3.704 0.764 -3.828 0.557 -3.935 c
+f
+Q
+/DeviceRGB {} cs
+[0.533 0.067 0.2] sc
+q
+[1 0 0 1 39.6851 55.5742] cm
+0 0 m
+0 0 257.872 -15.394 504.567 36.658 c
+275.371 -6.394 0 0 0 0 c
+f
+Q
+/DeviceRGB {} cs
+[0 0.267 0.4] sc
+q
+[1 0 0 1 457.3057 58.0742] cm
+0 0 m
+0 0 -189.267 -23.394 -372.267 7.107 c
+-198.267 -14.894 0 0 0 0 c
+f
+Q
+Q
+Q
+showpage
+%%PageTrailer
+pdfEndPage
+%%Trailer
+end
+%%DocumentSuppliedResources:
+%%EOF