summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/insbox
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-09 00:56:57 +0000
committerKarl Berry <karl@freefriends.org>2006-01-09 00:56:57 +0000
commitf07bb53970ee2ecc53f81a206a3d3a67ef665e4a (patch)
tree6f57a1d62971db79e5ff023bdfd83b22cb971dc9 /Master/texmf-dist/doc/generic/insbox
parent007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (diff)
doc 6
git-svn-id: svn://tug.org/texlive/trunk@85 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/generic/insbox')
-rw-r--r--Master/texmf-dist/doc/generic/insbox/demo.tex118
-rw-r--r--Master/texmf-dist/doc/generic/insbox/pic1.eps1113
-rw-r--r--Master/texmf-dist/doc/generic/insbox/pic2.eps906
3 files changed, 2137 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/generic/insbox/demo.tex b/Master/texmf-dist/doc/generic/insbox/demo.tex
new file mode 100644
index 00000000000..f2ec5e48866
--- /dev/null
+++ b/Master/texmf-dist/doc/generic/insbox/demo.tex
@@ -0,0 +1,118 @@
+% This file contains description of \InsertBoxL, \InsertBoxR, \InsertBoxC
+% and \MoveBelowBox macros that are defined in the INSBOX package.
+% Compile it and check this source file to see how that all was done.
+
+\nopagenumbers
+
+\input insbox
+\input epsf
+
+
+% a macro for building a box with a frame around it
+\def\Frame#1{%
+ \vbox{
+ \hrule
+ \hbox{%
+ \vrule
+ \vbox{\vskip 4mm \hbox{\hskip 4mm #1 \hskip 4mm} \vskip 4mm}%
+ \vrule
+ }
+ \hrule
+ }
+}
+
+
+
+% Put an \epsfbox in the right after two lines of text:
+\InsertBoxR{2}{\epsfbox{pic1.eps}}
+Creating documents like this is quite easy. Just four easy macros
+can do all the stuff required to put pictures on the page and
+format all the neighbouring paragraphs so that they do not interfere
+with pictures. The picture you see in the right was inserted using
+the following command put just before the beginning of this paragraph:
+\hfil\break
+{\tt\string\InsertBoxR\char123 2\char125\char123\string\epsfbox\char123
+ pic1.eps\char125\char125}
+
+
+The meaning of the macro's arguments is very easy. The first
+argument should be the number of lines to be typeset ``normally'',
+that is using the whole width of the page. The second argument
+is {\it any\/} box that is to be put on the page beside the text.
+The letter {\tt R} at the end of the macro's name indicates
+that the picture should be put in the right. Of course, there is
+also a macro named {\tt\string\InsertBoxL} which works similarly,
+but puts the picture in the left. Further in this document you will
+find a description of the {\tt\string\InsertBoxC} macro. As you
+probably guessed, it inserts a picture centered in the page.
+
+
+\def\somebox{\vbox{
+ \hsize = 5cm
+ \noindent Some simple text. Some simple text. Some simple text.
+ Some\break simple text. Some simple text.
+ $$ a^2 + b^2 = c^2 $$
+ That was a simple formula. Let's put more text here to make
+ this box bigger... Some simple text. Some simple text.
+}}
+
+% as you see, you can supply the third optional parameter to
+% \InsertBoxL and \InsertBoxR macros; it may help if they
+% calculate the space for the frame incorrectly
+\InsertBoxL{2}{\Frame{\somebox}}[-2]
+I mentioned earlier that almost {\it anything\/} can be inserted
+in the document --- not only {\tt\string\epsfbox}es. You can create
+{\it any\/} box containing graphics, text, math formulas and put it
+beside your text using {\tt\string\InsertBox} macros. The simple
+example in the left should be a good proof.
+
+
+The macros are quite reliable, but you may experience some problems
+if you put displayed math formulas beside pictures. The space reserved
+for the frame may appear too little or too big. But there is an
+easy way to make neccessary correction. Check the source file
+to see how it was done in this particular situation.
+ $$ \sum_{i=1}^{n} i^3 = \left( {n(n+1) \over 2} \right)^2 $$
+Also, I do not guarrantee correct behaviour of these macros in other
+extreme conditions. It is not possible to put two {\tt\string\InsertBox}
+commands before a paragraph --- in that case you should not expect
+a paragraph squeezed between two frames.
+
+
+\def\somebox{\vbox{
+ \epsfxsize=4cm
+ \hbox{\epsfbox{pic2.eps}}
+ \hbox to 4cm{\hss Figure 2.\hss}
+}}
+
+There is also a macro for inserting boxes centered in the page. Its name
+is {\tt\string\InsertBoxC} and it requires only one argument --- the
+box to be inserted. The macro should be called from {\it inside\/}
+a paragraph (not put {\it before\/} a paragraph). The box will be put
+just below the line containing the macro. For example the picture below
+was inserted by putting
+{\tt\string\InsertBoxC\char123 \string\somebox\char125}
+after {\it this\/}\InsertBoxC{\somebox} word. The line was completed,
+the picture was inserted and the paragraph continues below the picture.
+The usage seems very simple and intuitive.
+
+
+\InsertBoxR{0}{\somebox}
+I recommend that you see the source of this document and check how
+changes to arguments of {\tt\string\InsertBox} macros affect paragraphs.
+But before I end, let me give you one more hint. Sometimes you may wish
+to generate a vertical skip like this:
+
+
+\MoveBelowBox
+In such situation you should use the {\tt\string\MoveBelowBox} command.
+It starts the next paragraph just below the current picture.
+
+
+\bigskip
+\noindent
+Micha\l{} Gulczy\'nski \hfil\break
+{\tt mgulcz@we.tuniv.szczecin.pl}
+
+
+\bye
diff --git a/Master/texmf-dist/doc/generic/insbox/pic1.eps b/Master/texmf-dist/doc/generic/insbox/pic1.eps
new file mode 100644
index 00000000000..fa512826250
--- /dev/null
+++ b/Master/texmf-dist/doc/generic/insbox/pic1.eps
@@ -0,0 +1,1113 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 102 557 287 678
+%%Creator: CorelDRAW 7
+%%Title:
+%%CreationDate: Mon May 26 16:04:28 1997
+%%DocumentProcessColors: Black
+%%DocumentSuppliedResources: (atend)
+%%EndComments
+%%BeginProlog
+/AutoFlatness true def
+/AutoSteps 0 def
+/CMYKMarks false def
+/UseLevel2 false def
+%Color profile: _DEFAULT.CCM - Generic Profile
+%%BeginResource: procset wCorel7Dict 7.0 0
+/wCorel7Dict 300 dict def wCorel7Dict begin
+% Copyright (c)1992-96 Corel Corporation
+% All rights reserved. v7.0 r1.0
+/bd{bind def}bind def/ld{load def}bd/xd{exch def}bd/_ null def/rp{{pop}repeat}
+bd/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld/@np/newpath ld/Tl/translate ld
+/$sv 0 def/@sv{/$sv save def}bd/@rs{$sv restore}bd/spg/showpage ld/showpage{}
+bd currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd/$dsf xd/$sdf false def/$SDF
+false def/$Scra 0 def/SetScr/setscreen ld/setscreen{pop pop pop}bd/@ss{2 index
+0 eq{$dsf 3 1 roll 4 -1 roll pop}if exch $Scra add exch load SetScr}bd
+/SepMode_5 where{pop}{/SepMode_5 0 def}ifelse/CurrentInkName_5 where{pop}
+{/CurrentInkName_5(Composite)def}ifelse/$ink_5 where{pop}{/$ink_5 -1 def}
+ifelse/$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def/$n _ def/$o 0 def/$fil 0
+def/$C 0 def/$M 0 def/$Y 0 def/$K 0 def/$T 1 def/$N _ def/$O 0 def/$PF false
+def/s1c 0 def/s1m 0 def/s1y 0 def/s1k 0 def/s1t 0 def/s1n _ def/$bkg false def
+/SK 0 def/SM 0 def/SY 0 def/SC 0 def/$op false def matrix currentmatrix/$ctm xd
+/$ptm matrix def/$ttm matrix def/$stm matrix def/$ffpnt true def
+/CorelDrawReencodeVect[16#0/grave 16#5/breve 16#6/dotaccent 16#8/ring
+16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi 16#27/quotesingle
+16#60/grave 16#7C/bar
+16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
+16#88/circumflex/perthousand/Scaron/guilsinglleft/OE
+16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
+16#98/tilde/trademark/scaron/guilsinglright/oe 16#9F/Ydieresis
+16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section
+16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron
+16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
+16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
+16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
+16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
+16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
+16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
+16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
+16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
+16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
+16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
+/L2?/languagelevel where{pop languagelevel 2 ge}{false}ifelse def
+/@BeginSysCorelDict{systemdict/Corel30Dict known{systemdict/Corel30Dict get
+exec}if}bd/@EndSysCorelDict{systemdict/Corel30Dict known{end}if}bd AutoFlatness
+{/@ifl{dup currentflat exch sub 10 gt{
+([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)print flush
+@np exit}{currentflat 2 add setflat}ifelse}bd/@fill/fill ld/fill{currentflat{
+{@fill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@eofill/eofill ld/eofill
+{currentflat{{@eofill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@clip
+/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}ifelse}bind loop setflat}
+bd/@eoclip/eoclip ld/eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}
+bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped
+{@ifl}{exit}ifelse}bind loop setflat}bd}if L2?{/@ssa{true setstrokeadjust}bd}{
+/@ssa{}bd}ifelse/d/setdash ld/j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit
+ld/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd/W/eoclip ld/c/curveto ld/C/c ld/l
+/lineto ld/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld/N/newpath ld/P{11 rp}
+bd/u{}bd/U{}bd/A{pop}bd/q/@gs ld/Q/@gr ld/&{}bd/@j{@sv @np}bd/@J{@rs}bd/g{1
+exch sub/$k xd/$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def}bd/G{1
+sub neg/$K xd _ 1 0 0 0/$C xd/$M xd/$Y xd/$T xd/$N xd}bd/k{1 index type
+/stringtype eq{/$t xd/$n xd}{/$t 0 def/$n _ def}ifelse/$k xd/$y xd/$m xd/$c xd
+/$fil 0 def}bd/K{1 index type/stringtype eq{/$T xd/$N xd}{/$T 0 def/$N _ def}
+ifelse/$K xd/$Y xd/$M xd/$C xd}bd/x/k ld/X/K ld/sf{1 index type/stringtype eq{
+/s1t xd/s1n xd}{/s1t 0 def/s1n _ def}ifelse/s1k xd/s1y xd/s1m xd/s1c xd}bd/i{
+dup 0 ne{setflat}{pop}ifelse}bd/v{4 -2 roll 2 copy 6 -2 roll c}bd/V/v ld/y{2
+copy c}bd/Y/y ld/@w{matrix rotate/$ptm xd matrix scale $ptm dup concatmatrix
+/$ptm xd 1 eq{$ptm exch dup concatmatrix/$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd
+{/$scp xd/$sca xd/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd/$SCA xd/$SCF xd}
+if}bd/@D{2 index 0 eq{$dsf 3 1 roll 4 -1 roll pop}if 3 copy exch $Scra add exch
+load SetScr/$dsp xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF SepMode_5 0 eq{$SCA}
+{$dsa}ifelse $SCP @ss}if}bd/p{/$pm xd 7 rp/$pyf xd/$pxf xd/$pn xd/$fil 1 def}
+bd/@MN{2 copy le{pop}{exch pop}ifelse}bd/@MX{2 copy ge{pop}{exch pop}ifelse}bd
+/InRange{3 -1 roll @MN @MX}bd/@sqr{dup 0 rl dup 0 exch rl neg 0 rl @cp}bd
+/currentscale{1 0 dtransform matrix defaultmatrix idtransform dup mul exch dup
+mul add sqrt 0 1 dtransform matrix defaultmatrix idtransform dup mul exch dup
+mul add sqrt}bd/@unscale{}bd/wDstChck{2 1 roll dup 3 -1 roll eq{1 add}if}bd
+/@dot{dup mul exch dup mul add 1 exch sub}bd/@lin{exch pop abs 1 exch sub}bd
+/cmyk2rgb{3{dup 5 -1 roll add 1 exch sub dup 0 lt{pop 0}if exch}repeat pop}bd
+/rgb2cmyk{3{1 exch sub 3 1 roll}repeat 3 copy @MN @MN 3{dup 5 -1 roll sub neg
+exch}repeat}bd/rgb2g{2 index .299 mul 2 index .587 mul add 1 index .114 mul add
+4 1 roll pop pop pop}bd/WaldoColor_5 where{pop}{/SetRgb/setrgbcolor ld/GetRgb
+/currentrgbcolor ld/SetGry/setgray ld/GetGry/currentgray ld/SetRgb2 systemdict
+/setrgbcolor get def/GetRgb2 systemdict/currentrgbcolor get def/SetHsb
+systemdict/sethsbcolor get def/GetHsb systemdict/currenthsbcolor get def
+/rgb2hsb{SetRgb2 GetHsb}bd/hsb2rgb{3 -1 roll dup floor sub 3 1 roll SetHsb
+GetRgb2}bd/setcmykcolor where{pop/SetCmyk_5/setcmykcolor ld}{/SetCmyk_5{
+cmyk2rgb SetRgb}bd}ifelse/currentcmykcolor where{pop/GetCmyk/currentcmykcolor
+ld}{/GetCmyk{GetRgb rgb2cmyk}bd}ifelse/setoverprint where{pop}{/setoverprint{
+/$op xd}bd}ifelse/currentoverprint where{pop}{/currentoverprint{$op}bd}ifelse
+/@tc_5{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 roll mul exch}repeat pop}ifelse}bd
+/@trp{exch pop 5 1 roll @tc_5}bd/setprocesscolor_5{SepMode_5 0 eq{SetCmyk_5}{0
+4 $ink_5 sub index exch pop 5 1 roll pop pop pop pop SepsColor true eq{$ink_5 3
+gt{1 sub neg SetGry}{0 0 0 4 $ink_5 roll SetCmyk_5}ifelse}{1 sub neg SetGry}
+ifelse}ifelse}bd/findcmykcustomcolor where{pop}{/findcmykcustomcolor{5 array
+astore}bd}ifelse/setcustomcolor where{pop}{/setcustomcolor{exch aload pop
+SepMode_5 0 eq{pop @tc_5 setprocesscolor_5}{CurrentInkName_5 eq{4 index}{0}
+ifelse 6 1 roll 5 rp 1 sub neg SetGry}ifelse}bd}ifelse/@scc_5{dup type
+/booleantype eq{setoverprint}{1 eq setoverprint}ifelse dup _ eq{pop
+setprocesscolor_5 pop}{findcmykcustomcolor exch setcustomcolor}ifelse SepMode_5
+0 eq{true}{GetGry 1 eq currentoverprint and not}ifelse}bd/colorimage where{pop
+/ColorImage{colorimage}def}{/ColorImage{/ncolors xd pop/dataaq xd{dataaq
+ncolors dup 3 eq{/$dat xd 0 1 $dat length 3 div 1 sub{dup 3 mul $dat 1 index
+get 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div rgb2g
+255 mul cvi exch pop $dat 3 1 roll put}for $dat 0 $dat length 3 idiv
+getinterval pop}{4 eq{/$dat xd 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1
+index get 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div
+$dat 4 index 3 add get 255 div cmyk2rgb rgb2g 255 mul cvi exch pop $dat 3 1
+roll put}for $dat 0 $dat length ncolors idiv getinterval}if}ifelse}image}bd
+}ifelse/setcmykcolor{1 5 1 roll _ currentoverprint @scc_5/$ffpnt xd}bd
+/currentcmykcolor{0 0 0 0}bd/setrgbcolor{rgb2cmyk setcmykcolor}bd
+/currentrgbcolor{currentcmykcolor cmyk2rgb}bd/sethsbcolor{hsb2rgb setrgbcolor}
+bd/currenthsbcolor{currentrgbcolor rgb2hsb}bd/setgray{dup dup setrgbcolor}bd
+/currentgray{currentrgbcolor rgb2g}bd}ifelse/WaldoColor_5 true def/@sft{$tllx
+$pxf add dup $tllx gt{$pwid sub}if/$tx xd $tury $pyf sub dup $tury lt{$phei
+add}if/$ty xd}bd/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd/@ep{{cvx exec
+}forall}bd/@tp{@sv/$in true def 2 copy dup $lly le{/$in false def}if $phei sub
+$ury ge{/$in false def}if dup $urx ge{/$in false def}if $pwid add $llx le{/$in
+false def}if $in{@np 2 copy m $pwid 0 rl 0 $phei neg rl $pwid neg 0 rl 0 $phei
+rl clip @np $pn cvlit load aload pop 7 -1 roll 5 index sub 7 -1 roll 3 index
+sub Tl matrix currentmatrix/$ctm xd @ep pop pop pop pop}{pop pop}ifelse @rs}bd
+/@th{@sft 0 1 $tly 1 sub{dup $psx mul $tx add{dup $llx gt{$pwid sub}{exit}
+ifelse}loop exch $phei mul $ty exch sub 0 1 $tlx 1 sub{$pwid mul 3 copy 3 -1
+roll add exch @tp pop}for pop pop}for}bd/@tv{@sft 0 1 $tlx 1 sub{dup $pwid mul
+$tx add exch $psy mul $ty exch sub{dup $ury lt{$phei add}{exit}ifelse}loop 0 1
+$tly 1 sub{$phei mul 3 copy sub @tp pop}for pop pop}for}bd/$fm 0 def/wfill{1
+$fm eq{fill}{eofill}ifelse}bd/wclip{1 $fm eq{clip}{eoclip}ifelse}bd/@pf{@gs
+$ctm setmatrix $pm concat @stb wclip Bburx Bbury $pm itransform/$tury xd/$turx
+xd Bbllx Bblly $pm itransform/$tlly xd/$tllx xd/$wid $turx $tllx sub def/$hei
+$tury $tlly sub def @gs $vectpat{1 0 0 0 0 _ $o @scc_5{wfill}if}{$t $c $m $y $k
+$n $o @scc_5{SepMode_5 0 eq $pfrg or{$tllx $tlly Tl $wid $hei scale <00> 8 1
+false[8 0 0 1 0 0]{}imagemask}{/$bkg true def}ifelse}if}ifelse @gr $wid 0 gt
+$hei 0 gt and{$pn cvlit load aload pop/$pd xd 3 -1 roll sub/$phei xd exch sub
+/$pwid xd $wid $pwid div ceiling 1 add/$tlx xd $hei $phei div ceiling 1 add
+/$tly xd $psx 0 eq{@tv}{@th}ifelse}if @gr @np/$bkg false def}bd/@Pf{@sv
+SepMode_5 0 eq $Psc 0 ne or $ink_5 3 eq or{0 J 0 j[]0 d $t $c $m $y $k $n $o
+@scc_5 pop $ctm setmatrix 72 1000 div dup matrix scale dup concat dup Bburx
+exch Bbury exch itransform ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch
+Bblly exch itransform floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn
+load exec}{1 SetGry wfill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf
+$sca $scp @ss}if $fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n
+$o @scc_5{wfill}{@np}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if
+setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA
+$SCP @ss}if $T $C $M $Y $K $N $O @scc_5{matrix currentmatrix $ptm concat stroke
+setmatrix}{@np}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs
+F @gr S}bd/b{@cp B}bd/_E{5 array astore exch cvlit xd}bd/@cc{currentfile $dat
+readhexstring pop}bd/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd
+/Bblly xd/Bbllx xd}bd/@c{@cp}bd/@p{/$fil 1 def 1 eq dup/$vectpat xd{/$pfrg true
+def}{@gs $t $c $m $y $k $n $o @scc_5/$pfrg xd @gr}ifelse/$pm xd/$psy xd/$psx xd
+/$pyf xd/$pxf xd/$pn xd}bd/@P{/$fil 3 def/$Psn xd/$Psc xd array astore/$Prm xd
+}bd/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 index 3 index l 3
+index 3 index l clip pop pop pop pop}bd/tcc{@cc}def/@i{@sm @gs @ii 6 index 1 ne
+{/$frg true def pop pop}{1 eq{s1t s1c s1m s1y s1k s1n $O @scc_5/$frg xd}{/$frg
+false def}ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd/$urx xd
+/$lly xd/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi
+string def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl $urx $llx sub
+$ury $lly sub scale $bkg{$t $c $m $y $k $n $o @scc_5 pop}if $wid $hei abs $bts
+1 eq{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load
+$bts 1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{$hei abs{tcc pop}
+repeat}ifelse @gr $ctm setmatrix}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd
+/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div
+ceiling cvi string def $ngx $llx $lly Tl $urx $llx sub $ury $lly sub scale $wid
+$hei abs $bts[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/@cc load false $ncl
+ColorImage $SDF{$dsf $dsa $dsp @ss}if @gr $ctm setmatrix}bd/COMP 0 def L2?{
+/@I_2{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd
+/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def $ngx $ncl 1
+eq{/DeviceGray}{$ncl 3 eq{/DeviceRGB}{/DeviceCMYK}ifelse}ifelse setcolorspace
+$llx $lly Tl $urx $llx sub $ury $lly sub scale 8 dict begin/ImageType 1 def
+/Width $wid def/Height $hei abs def/BitsPerComponent $bts def/Decode $ncl 1 eq
+{[0 1]}{$ncl 3 eq{[0 1 0 1 0 1]}{[0 1 0 1 0 1 0 1]}ifelse}ifelse def
+/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def/DataSource
+currentfile/ASCII85Decode filter COMP 1 eq{/DCTDecode filter}{COMP 2 eq
+{/RunLengthDecode filter}if}ifelse def currentdict end image $SDF{$dsf $dsa
+$dsp @ss}if @gr $ctm setmatrix}bd}{/@I_2{}bd}ifelse/@B{@gs S @gr F}bd/@b{@cp @B
+}bd/@sep{CurrentInkName_5(Composite)eq{/$ink_5 -1 def}{CurrentInkName_5(Cyan)
+eq{/$ink_5 0 def}{CurrentInkName_5(Magenta)eq{/$ink_5 1 def}{CurrentInkName_5
+(Yellow)eq{/$ink_5 2 def}{CurrentInkName_5(Black)eq{/$ink_5 3 def}{/$ink_5 4
+def}ifelse}ifelse}ifelse}ifelse}ifelse}bd/@whi{@gs -72000 dup m -72000 72000 l
+72000 dup l 72000 -72000 l @cp 1 SetGry fill @gr}bd/@neg{[{1 exch sub}/exec cvx
+currenttransfer/exec cvx]cvx settransfer @whi}bd/deflevel 0 def/@sax{/deflevel
+deflevel 1 add def}bd/@eax{/deflevel deflevel dup 0 gt{1 sub}if def deflevel 0
+gt{/eax load}{eax}ifelse}bd/eax{{exec}forall}bd/@rax{deflevel 0 eq{@rs @sv}if}
+bd/@daq{dup type/arraytype eq{{}forall}if}bd/@BMP{/@cc xd 12 index 1 gt
+UseLevel2 true eq and{7 -2 roll pop pop @I_2}{11 index 1 eq{12 -1 roll pop @i}
+{7 -2 roll pop pop @I}ifelse}ifelse}bd systemdict/pdfmark known not{/pdfmark
+/cleartomark ld}if
+end
+%%EndResource
+%%EndProlog
+%%BeginSetup
+wCorel7Dict begin
+@BeginSysCorelDict
+2.6131 setmiterlimit
+1.00 setflat
+/$fst 128 def
+%%EndSetup
+
+%%Page: 1 1
+%LogicalPage: 1
+%%BeginPageSetup
+@sv
+@sm
+@sv
+%%EndPageSetup
+@rax %Note: Object
+159.25124 559.58542 162.92324 565.41742 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+160.76324 565.41742 m
+161.12324 565.34542 L
+161.48324 565.27342 L
+161.84324 565.12942 L
+162.13124 564.98542 L
+162.34724 564.69742 L
+162.49124 564.48142 L
+162.56324 564.19342 L
+162.56324 563.90542 L
+162.56324 563.76142 L
+162.56324 563.54542 L
+162.49124 563.32942 L
+162.41924 563.18542 L
+162.34724 563.04142 L
+162.27524 562.89742 L
+162.13124 562.82542 L
+161.98724 562.68142 L
+162.20324 562.53742 L
+162.41924 562.39342 L
+162.56324 562.17742 L
+162.70724 562.03342 L
+162.77924 561.81742 L
+162.85124 561.60142 L
+162.92324 561.38542 L
+162.92324 561.09742 L
+162.92324 560.80942 L
+162.77924 560.52142 L
+162.63524 560.30542 L
+162.41924 560.08942 L
+162.13124 559.87342 L
+161.84324 559.72942 L
+161.48324 559.58542 L
+161.05124 559.58542 L
+159.25124 559.58542 L
+159.25124 565.41742 L
+160.76324 565.41742 L
+@c
+159.75524 564.84142 m
+159.75524 562.82542 L
+160.76324 562.82542 L
+160.97924 562.82542 L
+161.19524 562.89742 L
+161.41124 562.96942 L
+161.62724 563.04142 L
+161.84324 563.18542 L
+161.98724 563.40142 L
+162.05924 563.61742 L
+162.05924 563.90542 L
+162.05924 564.19342 L
+161.98724 564.40942 L
+161.84324 564.55342 L
+161.62724 564.62542 L
+161.48324 564.69742 L
+161.26724 564.76942 L
+161.05124 564.84142 L
+160.76324 564.84142 L
+159.75524 564.84142 L
+@c
+159.75524 562.32142 m
+159.75524 560.08942 L
+160.83524 560.08942 L
+161.19524 560.08942 L
+161.48324 560.08942 L
+161.77124 560.16142 L
+161.98724 560.30542 L
+162.13124 560.52142 L
+162.27524 560.73742 L
+162.34724 560.95342 L
+162.34724 561.24142 L
+162.34724 561.52942 L
+162.27524 561.74542 L
+162.13124 561.88942 L
+161.91524 562.03342 L
+161.69924 562.17742 L
+161.41124 562.24942 L
+161.12324 562.32142 L
+160.76324 562.32142 L
+159.75524 562.32142 L
+@c
+F
+
+@rax %Note: Object
+224.62724 558.28942 230.89124 564.76942 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+224.62724 561.88942 m
+224.77124 562.53742 L
+224.98724 563.11342 L
+225.34724 563.54542 L
+225.77924 563.97742 L
+225.99524 564.19342 L
+226.21124 564.33742 L
+226.49924 564.48142 L
+226.78724 564.62542 L
+227.00324 564.69742 L
+227.29124 564.69742 L
+227.65124 564.76942 L
+227.93924 564.76942 L
+228.37124 564.76942 L
+228.80324 564.69742 L
+229.23524 564.55342 L
+229.59524 564.40942 L
+230.02724 564.12142 L
+230.38724 563.83342 L
+230.67524 563.47342 L
+230.89124 563.04142 L
+230.17124 563.04142 L
+229.95524 563.32942 L
+229.73924 563.54542 L
+229.45124 563.68942 L
+229.16324 563.83342 L
+228.94724 563.97742 L
+228.58724 564.04942 L
+228.29924 564.12142 L
+227.93924 564.12142 L
+227.43524 564.04942 L
+226.93124 563.97742 L
+226.49924 563.76142 L
+226.13924 563.40142 L
+225.70724 562.96942 L
+225.49124 562.53742 L
+225.34724 561.96142 L
+225.27524 561.45742 L
+225.34724 560.88142 L
+225.49124 560.37742 L
+225.70724 559.94542 L
+226.13924 559.51342 L
+226.49924 559.22542 L
+226.93124 559.00942 L
+227.43524 558.86542 L
+227.93924 558.79342 L
+228.29924 558.79342 L
+228.58724 558.86542 L
+228.94724 558.93742 L
+229.16324 559.08142 L
+229.45124 559.22542 L
+229.73924 559.44142 L
+229.95524 559.65742 L
+230.17124 559.94542 L
+230.89124 559.94542 L
+230.67524 559.51342 L
+230.38724 559.15342 L
+230.02724 558.86542 L
+229.59524 558.57742 L
+229.23524 558.43342 L
+228.80324 558.36142 L
+228.37124 558.28942 L
+227.93924 558.28942 L
+227.65124 558.28942 L
+227.29124 558.36142 L
+227.00324 558.36142 L
+226.71524 558.50542 L
+226.42724 558.57742 L
+226.13924 558.72142 L
+225.85124 558.93742 L
+225.63524 559.15342 L
+225.20324 559.65742 L
+224.91524 560.16142 L
+224.69924 560.80942 L
+224.62724 561.52942 L
+224.62724 561.88942 L
+@c
+F
+
+@rax %Note: Object
+103.23524 567.36085 286.76324 567.36198 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+103.23524 567.36142 m
+286.76324 567.36142 L
+S
+
+@rax %Note: Object
+161.19524 567.28942 227.72324 669.09742 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+227.72324 567.28942 m
+195.03524 669.09742 L
+161.19524 567.57742 L
+195.53924 592.56142 L
+227.72324 567.28942 L
+S
+
+@rax %Note: Object
+140.81924 567.14542 167.09924 587.44942 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+140.81924 567.14542 m
+140.81924 567.14542 L
+140.89124 569.23342 L
+141.25124 571.24942 L
+141.75524 573.19342 L
+142.40324 574.99342 L
+143.26724 576.79342 L
+144.27524 578.44942 L
+145.42724 580.03342 L
+146.79524 581.47342 L
+148.23524 582.76942 L
+149.74724 583.99342 L
+151.40324 585.00142 L
+153.20324 585.86542 L
+155.07524 586.51342 L
+157.01924 587.01742 L
+159.03524 587.37742 L
+161.12324 587.44942 L
+161.12324 587.44942 L
+161.91524 587.44942 L
+162.63524 587.37742 L
+163.42724 587.30542 L
+164.14724 587.23342 L
+164.93924 587.08942 L
+165.65924 586.94542 L
+166.37924 586.80142 L
+167.09924 586.58542 L
+S
+
+@rax %Note: Object
+221.45924 567.57742 246.65924 587.73742 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+221.45924 587.16142 m
+221.45924 587.16142 L
+222.17924 587.37742 L
+222.82724 587.52142 L
+223.54724 587.59342 L
+224.19524 587.66542 L
+224.84324 587.73742 L
+225.56324 587.73742 L
+226.28324 587.73742 L
+227.07524 587.73742 L
+227.07524 587.73742 L
+229.16324 587.66542 L
+231.10724 587.30542 L
+233.05124 586.87342 L
+234.85124 586.15342 L
+236.57924 585.28942 L
+238.16324 584.35342 L
+239.67524 583.20142 L
+241.04324 581.90542 L
+242.26724 580.46542 L
+243.41924 578.88142 L
+244.35524 577.22542 L
+245.14724 575.49742 L
+245.79524 573.62542 L
+246.29924 571.68142 L
+246.58724 569.66542 L
+246.65924 567.57742 L
+S
+
+@rax %Note: Object
+169.40324 567.36142 171.77924 573.76942 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+169.40324 573.76942 m
+169.40324 573.76942 L
+169.97924 573.04942 L
+170.48324 572.32942 L
+170.91524 571.60942 L
+171.20324 570.81742 L
+171.49124 570.02542 L
+171.63524 569.23342 L
+171.77924 568.29742 L
+171.77924 567.36142 L
+S
+
+@rax %Note: Object
+216.63524 567.28942 218.72324 574.27342 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+216.63524 567.28942 m
+216.63524 567.28942 L
+216.70724 569.23342 L
+217.06724 571.10542 L
+217.71524 572.76142 L
+218.72324 574.27342 L
+S
+
+@rax %Note: Object
+128.79524 566.64142 130.16324 568.15342 @E
+ 0 O 0 @g
+0.84 0.74 0.71 0.64 k
+/$fm 0 def
+129.51524 568.15342 m
+129.73124 568.08142 L
+129.94724 567.93742 L
+130.09124 567.64942 L
+130.16324 567.36142 L
+130.09124 567.07342 L
+129.94724 566.85742 L
+129.73124 566.71342 L
+129.51524 566.64142 L
+129.22724 566.71342 L
+129.01124 566.85742 L
+128.86724 567.07342 L
+128.79524 567.36142 L
+128.86724 567.64942 L
+129.01124 567.93742 L
+129.22724 568.08142 L
+129.51524 568.15342 L
+@c
+F
+
+@rax %Note: Object
+128.79524 566.64142 130.16324 568.15342 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+129.51524 568.15342 m
+129.51524 568.15342 L
+129.73124 568.08142 L
+129.94724 567.93742 L
+130.09124 567.64942 L
+130.16324 567.36142 L
+130.16324 567.36142 L
+130.09124 567.07342 L
+129.94724 566.85742 L
+129.73124 566.71342 L
+129.51524 566.64142 L
+129.51524 566.64142 L
+129.22724 566.71342 L
+129.01124 566.85742 L
+128.86724 567.07342 L
+128.79524 567.36142 L
+128.79524 567.36142 L
+128.86724 567.64942 L
+129.01124 567.93742 L
+129.22724 568.08142 L
+129.51524 568.15342 L
+S
+
+@rax %Note: Object
+194.96324 590.97742 196.40324 592.41742 @E
+ 0 O 0 @g
+0.84 0.74 0.71 0.64 k
+/$fm 0 def
+195.68324 592.41742 m
+195.97124 592.34542 L
+196.18724 592.20142 L
+196.33124 591.98542 L
+196.40324 591.69742 L
+196.33124 591.40942 L
+196.18724 591.19342 L
+195.97124 591.04942 L
+195.68324 590.97742 L
+195.39524 591.04942 L
+195.17924 591.19342 L
+195.03524 591.40942 L
+194.96324 591.69742 L
+195.03524 591.98542 L
+195.17924 592.20142 L
+195.39524 592.34542 L
+195.68324 592.41742 L
+@c
+F
+
+@rax %Note: Object
+194.96324 590.97742 196.40324 592.41742 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+195.68324 592.41742 m
+195.68324 592.41742 L
+195.97124 592.34542 L
+196.18724 592.20142 L
+196.33124 591.98542 L
+196.40324 591.69742 L
+196.40324 591.69742 L
+196.33124 591.40942 L
+196.18724 591.19342 L
+195.97124 591.04942 L
+195.68324 590.97742 L
+195.68324 590.97742 L
+195.39524 591.04942 L
+195.17924 591.19342 L
+195.03524 591.40942 L
+194.96324 591.69742 L
+194.96324 591.69742 L
+195.03524 591.98542 L
+195.17924 592.20142 L
+195.39524 592.34542 L
+195.68324 592.41742 L
+S
+
+@rax %Note: Object
+258.53924 566.56942 259.90724 568.00942 @E
+ 0 O 0 @g
+0.84 0.74 0.71 0.64 k
+/$fm 0 def
+259.25924 568.00942 m
+259.47524 567.93742 L
+259.69124 567.79342 L
+259.83524 567.57742 L
+259.90724 567.28942 L
+259.83524 567.00142 L
+259.69124 566.78542 L
+259.47524 566.64142 L
+259.25924 566.56942 L
+258.97124 566.64142 L
+258.75524 566.78542 L
+258.61124 567.00142 L
+258.53924 567.28942 L
+258.61124 567.57742 L
+258.75524 567.79342 L
+258.97124 567.93742 L
+259.25924 568.00942 L
+@c
+F
+
+@rax %Note: Object
+258.53924 566.56942 259.90724 568.00942 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+259.25924 568.00942 m
+259.25924 568.00942 L
+259.47524 567.93742 L
+259.69124 567.79342 L
+259.83524 567.57742 L
+259.90724 567.28942 L
+259.90724 567.28942 L
+259.83524 567.00142 L
+259.69124 566.78542 L
+259.47524 566.64142 L
+259.25924 566.56942 L
+259.25924 566.56942 L
+258.97124 566.64142 L
+258.75524 566.78542 L
+258.61124 567.00142 L
+258.53924 567.28942 L
+258.53924 567.28942 L
+258.61124 567.57742 L
+258.75524 567.79342 L
+258.97124 567.93742 L
+259.25924 568.00942 L
+S
+
+@rax %Note: Object
+160.33124 566.78542 161.77124 568.22542 @E
+ 0 O 0 @g
+0.84 0.74 0.71 0.64 k
+/$fm 0 def
+161.05124 568.22542 m
+161.33924 568.15342 L
+161.55524 568.00942 L
+161.69924 567.79342 L
+161.77124 567.50542 L
+161.69924 567.21742 L
+161.55524 567.00142 L
+161.33924 566.85742 L
+161.05124 566.78542 L
+160.76324 566.85742 L
+160.54724 567.00142 L
+160.40324 567.21742 L
+160.33124 567.50542 L
+160.40324 567.79342 L
+160.54724 568.00942 L
+160.76324 568.15342 L
+161.05124 568.22542 L
+@c
+F
+
+@rax %Note: Object
+160.33124 566.78542 161.77124 568.22542 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+161.05124 568.22542 m
+161.05124 568.22542 L
+161.33924 568.15342 L
+161.55524 568.00942 L
+161.69924 567.79342 L
+161.77124 567.50542 L
+161.77124 567.50542 L
+161.69924 567.21742 L
+161.55524 567.00142 L
+161.33924 566.85742 L
+161.05124 566.78542 L
+161.05124 566.78542 L
+160.76324 566.85742 L
+160.54724 567.00142 L
+160.40324 567.21742 L
+160.33124 567.50542 L
+160.33124 567.50542 L
+160.40324 567.79342 L
+160.54724 568.00942 L
+160.76324 568.15342 L
+161.05124 568.22542 L
+S
+
+@rax %Note: Object
+194.24324 668.80942 195.68324 670.17742 @E
+ 0 O 0 @g
+0.84 0.74 0.71 0.64 k
+/$fm 0 def
+194.96324 670.17742 m
+195.25124 670.10542 L
+195.46724 669.96142 L
+195.61124 669.81742 L
+195.68324 669.52942 L
+195.61124 669.24142 L
+195.46724 669.02542 L
+195.25124 668.88142 L
+194.96324 668.80942 L
+194.67524 668.88142 L
+194.45924 669.02542 L
+194.31524 669.24142 L
+194.24324 669.52942 L
+194.31524 669.81742 L
+194.45924 669.96142 L
+194.67524 670.10542 L
+194.96324 670.17742 L
+@c
+F
+
+@rax %Note: Object
+194.24324 668.80942 195.68324 670.17742 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+194.96324 670.17742 m
+194.96324 670.17742 L
+195.25124 670.10542 L
+195.46724 669.96142 L
+195.61124 669.81742 L
+195.68324 669.52942 L
+195.68324 669.52942 L
+195.61124 669.24142 L
+195.46724 669.02542 L
+195.25124 668.88142 L
+194.96324 668.80942 L
+194.96324 668.80942 L
+194.67524 668.88142 L
+194.45924 669.02542 L
+194.31524 669.24142 L
+194.24324 669.52942 L
+194.24324 669.52942 L
+194.31524 669.81742 L
+194.45924 669.96142 L
+194.67524 670.10542 L
+194.96324 670.17742 L
+S
+
+@rax %Note: Object
+226.93124 566.64142 228.37124 568.15342 @E
+ 0 O 0 @g
+0.84 0.74 0.71 0.64 k
+/$fm 0 def
+227.65124 568.15342 m
+227.93924 568.08142 L
+228.15524 567.93742 L
+228.29924 567.64942 L
+228.37124 567.36142 L
+228.29924 567.07342 L
+228.15524 566.85742 L
+227.93924 566.71342 L
+227.65124 566.64142 L
+227.36324 566.71342 L
+227.14724 566.85742 L
+227.00324 567.07342 L
+226.93124 567.36142 L
+227.00324 567.64942 L
+227.14724 567.93742 L
+227.36324 568.08142 L
+227.65124 568.15342 L
+@c
+F
+
+@rax %Note: Object
+226.93124 566.64142 228.37124 568.15342 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+227.65124 568.15342 m
+227.65124 568.15342 L
+227.93924 568.08142 L
+228.15524 567.93742 L
+228.29924 567.64942 L
+228.37124 567.36142 L
+228.37124 567.36142 L
+228.29924 567.07342 L
+228.15524 566.85742 L
+227.93924 566.71342 L
+227.65124 566.64142 L
+227.65124 566.64142 L
+227.36324 566.71342 L
+227.14724 566.85742 L
+227.00324 567.07342 L
+226.93124 567.36142 L
+226.93124 567.36142 L
+227.00324 567.64942 L
+227.14724 567.93742 L
+227.36324 568.08142 L
+227.65124 568.15342 L
+S
+
+@rax %Note: Object
+191.79524 670.53742 198.20324 677.23342 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+194.60324 677.23342 m
+195.39524 677.23342 L
+198.20324 670.53742 L
+197.48324 670.53742 L
+196.47524 672.69742 L
+193.45124 672.69742 L
+192.51524 670.53742 L
+191.79524 670.53742 L
+194.60324 677.23342 L
+@c
+194.96324 676.36942 m
+193.66724 673.34542 L
+196.33124 673.34542 L
+194.96324 676.36942 L
+@c
+F
+
+@rax %Note: Object
+128.07524 569.08942 132.32324 575.42542 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+128.07524 569.08942 m
+128.07524 575.42542 L
+129.73124 575.42542 L
+130.30724 575.42542 L
+130.81124 575.35342 L
+131.24324 575.28142 L
+131.53124 575.13742 L
+131.89124 574.84942 L
+132.10724 574.48942 L
+132.25124 574.12942 L
+132.32324 573.62542 L
+132.32324 573.48142 L
+132.25124 573.04942 L
+132.17924 572.68942 L
+131.96324 572.40142 L
+131.67524 572.11342 L
+131.38724 571.89742 L
+131.02724 571.75342 L
+130.59524 571.68142 L
+130.09124 571.60942 L
+128.72324 571.60942 L
+128.72324 569.08942 L
+128.07524 569.08942 L
+@c
+128.72324 574.92142 m
+128.72324 572.11342 L
+130.01924 572.11342 L
+130.45124 572.18542 L
+130.81124 572.25742 L
+131.09924 572.40142 L
+131.31524 572.61742 L
+131.45924 572.83342 L
+131.60324 573.04942 L
+131.67524 573.33742 L
+131.67524 573.62542 L
+131.67524 573.91342 L
+131.53124 574.27342 L
+131.38724 574.48942 L
+131.17124 574.63342 L
+130.88324 574.70542 L
+130.59524 574.84942 L
+130.23524 574.92142 L
+129.80324 574.92142 L
+128.72324 574.92142 L
+@c
+F
+
+@rax %Note: Object
+255.58724 569.08942 262.13924 575.28142 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+255.65924 572.68942 m
+255.80324 573.26542 L
+256.09124 573.84142 L
+256.45124 574.27342 L
+256.88324 574.63342 L
+257.31524 574.92142 L
+257.81924 575.06542 L
+258.32324 575.20942 L
+258.82724 575.28142 L
+259.11524 575.28142 L
+259.47524 575.20942 L
+259.76324 575.13742 L
+260.05124 575.06542 L
+260.33924 574.99342 L
+260.55524 574.84942 L
+260.84324 574.63342 L
+261.13124 574.48942 L
+261.56324 574.05742 L
+261.85124 573.55342 L
+262.06724 572.97742 L
+262.13924 572.25742 L
+262.13924 571.96942 L
+262.13924 571.68142 L
+262.13924 571.32142 L
+262.06724 571.03342 L
+261.92324 570.81742 L
+261.77924 570.52942 L
+261.63524 570.24142 L
+261.41924 570.02542 L
+261.20324 569.80942 L
+261.20324 569.73742 L
+261.27524 569.73742 L
+261.41924 569.66542 L
+261.49124 569.59342 L
+261.63524 569.52142 L
+261.70724 569.52142 L
+261.85124 569.52142 L
+261.92324 569.52142 L
+261.92324 569.52142 L
+261.99524 569.52142 L
+262.06724 569.52142 L
+262.13924 569.52142 L
+262.13924 569.08942 L
+261.85124 569.08942 L
+261.63524 569.08942 L
+261.41924 569.08942 L
+261.27524 569.08942 L
+261.13124 569.16142 L
+260.98724 569.23342 L
+260.84324 569.30542 L
+260.69924 569.44942 L
+260.41124 569.30542 L
+260.19524 569.16142 L
+259.97924 569.08942 L
+259.76324 569.08942 L
+259.47524 569.08942 L
+259.25924 569.08942 L
+259.04324 569.08942 L
+258.82724 569.08942 L
+258.46724 569.08942 L
+258.17924 569.08942 L
+257.81924 569.16142 L
+257.53124 569.23342 L
+257.24324 569.37742 L
+257.02724 569.52142 L
+256.73924 569.73742 L
+256.52324 569.95342 L
+256.09124 570.45742 L
+255.80324 570.96142 L
+255.65924 571.53742 L
+255.58724 572.11342 L
+255.58724 572.25742 L
+255.58724 572.40142 L
+255.58724 572.54542 L
+255.65924 572.68942 L
+@c
+256.30724 571.39342 m
+256.66724 571.46542 L
+256.95524 571.53742 L
+257.31524 571.60942 L
+257.60324 571.60942 L
+258.03524 571.60942 L
+258.46724 571.53742 L
+258.82724 571.39342 L
+259.25924 571.24942 L
+259.61924 571.03342 L
+259.97924 570.81742 L
+260.33924 570.52942 L
+260.69924 570.16942 L
+260.91524 570.38542 L
+261.13124 570.67342 L
+261.20324 570.88942 L
+261.34724 571.10542 L
+261.41924 571.32142 L
+261.49124 571.53742 L
+261.56324 571.75342 L
+261.56324 571.96942 L
+261.56324 572.11342 L
+261.56324 572.32942 L
+261.49124 572.47342 L
+261.49124 572.61742 L
+261.34724 573.04942 L
+261.20324 573.48142 L
+260.98724 573.84142 L
+260.62724 574.12942 L
+260.26724 574.34542 L
+259.83524 574.56142 L
+259.33124 574.63342 L
+258.82724 574.70542 L
+258.32324 574.63342 L
+257.81924 574.56142 L
+257.38724 574.34542 L
+256.95524 573.98542 L
+256.59524 573.55342 L
+256.37924 573.12142 L
+256.23524 572.54542 L
+256.16324 572.04142 L
+256.16324 571.96942 L
+256.16324 571.89742 L
+256.16324 571.75342 L
+256.23524 571.68142 L
+256.23524 571.60942 L
+256.30724 571.46542 L
+256.30724 571.39342 L
+256.30724 571.39342 L
+@c
+256.59524 570.88942 m
+256.81124 570.52942 L
+257.02724 570.24142 L
+257.31524 570.02542 L
+257.60324 569.80942 L
+257.89124 569.66542 L
+258.25124 569.59342 L
+258.53924 569.52142 L
+258.89924 569.52142 L
+259.04324 569.52142 L
+259.25924 569.52142 L
+259.40324 569.52142 L
+259.54724 569.59342 L
+259.76324 569.66542 L
+259.90724 569.73742 L
+260.12324 569.80942 L
+260.26724 569.95342 L
+259.97924 570.16942 L
+259.61924 570.38542 L
+259.33124 570.60142 L
+258.97124 570.74542 L
+258.61124 570.81742 L
+258.25124 570.96142 L
+257.89124 571.03342 L
+257.60324 571.03342 L
+257.31524 571.03342 L
+257.02724 570.96142 L
+256.81124 570.96142 L
+256.59524 570.88942 L
+@c
+F
+
+@rax %Note: Object
+151.90724 574.27342 156.01124 579.02542 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+151.90724 574.27342 m
+153.56324 576.72142 L
+151.90724 579.02542 L
+152.69924 579.02542 L
+153.99524 577.22542 L
+155.29124 579.02542 L
+156.01124 579.02542 L
+154.35524 576.72142 L
+156.01124 574.27342 L
+155.29124 574.27342 L
+153.99524 576.14542 L
+152.69924 574.27342 L
+151.90724 574.27342 L
+@c
+F
+
+@rax %Note: Object
+230.81924 571.68142 235.78724 578.73742 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+232.83524 573.62542 m
+230.81924 578.73742 L
+231.53924 578.66542 L
+233.33924 574.48942 L
+235.06724 578.73742 L
+235.78724 578.73742 L
+232.76324 571.68142 L
+231.97124 571.68142 L
+232.83524 573.62542 L
+@c
+F
+
+%%PageTrailer
+@rs
+@rs
+%%Trailer
+@EndSysCorelDict
+end
+%%DocumentSuppliedResources: procset wCorel7Dict
+%%EOF
diff --git a/Master/texmf-dist/doc/generic/insbox/pic2.eps b/Master/texmf-dist/doc/generic/insbox/pic2.eps
new file mode 100644
index 00000000000..e19e8be0f65
--- /dev/null
+++ b/Master/texmf-dist/doc/generic/insbox/pic2.eps
@@ -0,0 +1,906 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%BoundingBox: 144 462 316 553
+%%Creator: CorelDRAW 7
+%%Title:
+%%CreationDate: Mon May 26 16:00:20 1997
+%%DocumentProcessColors: Black
+%%DocumentSuppliedResources: (atend)
+%%EndComments
+%%BeginProlog
+/AutoFlatness true def
+/AutoSteps 0 def
+/CMYKMarks false def
+/UseLevel2 false def
+%Color profile: _DEFAULT.CCM - Generic Profile
+%%BeginResource: procset wCorel7Dict 7.0 0
+/wCorel7Dict 300 dict def wCorel7Dict begin
+% Copyright (c)1992-96 Corel Corporation
+% All rights reserved. v7.0 r1.0
+/bd{bind def}bind def/ld{load def}bd/xd{exch def}bd/_ null def/rp{{pop}repeat}
+bd/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld/@np/newpath ld/Tl/translate ld
+/$sv 0 def/@sv{/$sv save def}bd/@rs{$sv restore}bd/spg/showpage ld/showpage{}
+bd currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd/$dsf xd/$sdf false def/$SDF
+false def/$Scra 0 def/SetScr/setscreen ld/setscreen{pop pop pop}bd/@ss{2 index
+0 eq{$dsf 3 1 roll 4 -1 roll pop}if exch $Scra add exch load SetScr}bd
+/SepMode_5 where{pop}{/SepMode_5 0 def}ifelse/CurrentInkName_5 where{pop}
+{/CurrentInkName_5(Composite)def}ifelse/$ink_5 where{pop}{/$ink_5 -1 def}
+ifelse/$c 0 def/$m 0 def/$y 0 def/$k 0 def/$t 1 def/$n _ def/$o 0 def/$fil 0
+def/$C 0 def/$M 0 def/$Y 0 def/$K 0 def/$T 1 def/$N _ def/$O 0 def/$PF false
+def/s1c 0 def/s1m 0 def/s1y 0 def/s1k 0 def/s1t 0 def/s1n _ def/$bkg false def
+/SK 0 def/SM 0 def/SY 0 def/SC 0 def/$op false def matrix currentmatrix/$ctm xd
+/$ptm matrix def/$ttm matrix def/$stm matrix def/$ffpnt true def
+/CorelDrawReencodeVect[16#0/grave 16#5/breve 16#6/dotaccent 16#8/ring
+16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi 16#27/quotesingle
+16#60/grave 16#7C/bar
+16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
+16#88/circumflex/perthousand/Scaron/guilsinglleft/OE
+16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
+16#98/tilde/trademark/scaron/guilsinglright/oe 16#9F/Ydieresis
+16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section
+16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron
+16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
+16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
+16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
+16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
+16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
+16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
+16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
+16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
+16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
+16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
+/L2?/languagelevel where{pop languagelevel 2 ge}{false}ifelse def
+/@BeginSysCorelDict{systemdict/Corel30Dict known{systemdict/Corel30Dict get
+exec}if}bd/@EndSysCorelDict{systemdict/Corel30Dict known{end}if}bd AutoFlatness
+{/@ifl{dup currentflat exch sub 10 gt{
+([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)print flush
+@np exit}{currentflat 2 add setflat}ifelse}bd/@fill/fill ld/fill{currentflat{
+{@fill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@eofill/eofill ld/eofill
+{currentflat{{@eofill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@clip
+/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}ifelse}bind loop setflat}
+bd/@eoclip/eoclip ld/eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}
+bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped
+{@ifl}{exit}ifelse}bind loop setflat}bd}if L2?{/@ssa{true setstrokeadjust}bd}{
+/@ssa{}bd}ifelse/d/setdash ld/j/setlinejoin ld/J/setlinecap ld/M/setmiterlimit
+ld/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd/W/eoclip ld/c/curveto ld/C/c ld/l
+/lineto ld/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld/N/newpath ld/P{11 rp}
+bd/u{}bd/U{}bd/A{pop}bd/q/@gs ld/Q/@gr ld/&{}bd/@j{@sv @np}bd/@J{@rs}bd/g{1
+exch sub/$k xd/$c 0 def/$m 0 def/$y 0 def/$t 1 def/$n _ def/$fil 0 def}bd/G{1
+sub neg/$K xd _ 1 0 0 0/$C xd/$M xd/$Y xd/$T xd/$N xd}bd/k{1 index type
+/stringtype eq{/$t xd/$n xd}{/$t 0 def/$n _ def}ifelse/$k xd/$y xd/$m xd/$c xd
+/$fil 0 def}bd/K{1 index type/stringtype eq{/$T xd/$N xd}{/$T 0 def/$N _ def}
+ifelse/$K xd/$Y xd/$M xd/$C xd}bd/x/k ld/X/K ld/sf{1 index type/stringtype eq{
+/s1t xd/s1n xd}{/s1t 0 def/s1n _ def}ifelse/s1k xd/s1y xd/s1m xd/s1c xd}bd/i{
+dup 0 ne{setflat}{pop}ifelse}bd/v{4 -2 roll 2 copy 6 -2 roll c}bd/V/v ld/y{2
+copy c}bd/Y/y ld/@w{matrix rotate/$ptm xd matrix scale $ptm dup concatmatrix
+/$ptm xd 1 eq{$ptm exch dup concatmatrix/$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd
+{/$scp xd/$sca xd/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd/$SCA xd/$SCF xd}
+if}bd/@D{2 index 0 eq{$dsf 3 1 roll 4 -1 roll pop}if 3 copy exch $Scra add exch
+load SetScr/$dsp xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF SepMode_5 0 eq{$SCA}
+{$dsa}ifelse $SCP @ss}if}bd/p{/$pm xd 7 rp/$pyf xd/$pxf xd/$pn xd/$fil 1 def}
+bd/@MN{2 copy le{pop}{exch pop}ifelse}bd/@MX{2 copy ge{pop}{exch pop}ifelse}bd
+/InRange{3 -1 roll @MN @MX}bd/@sqr{dup 0 rl dup 0 exch rl neg 0 rl @cp}bd
+/currentscale{1 0 dtransform matrix defaultmatrix idtransform dup mul exch dup
+mul add sqrt 0 1 dtransform matrix defaultmatrix idtransform dup mul exch dup
+mul add sqrt}bd/@unscale{}bd/wDstChck{2 1 roll dup 3 -1 roll eq{1 add}if}bd
+/@dot{dup mul exch dup mul add 1 exch sub}bd/@lin{exch pop abs 1 exch sub}bd
+/cmyk2rgb{3{dup 5 -1 roll add 1 exch sub dup 0 lt{pop 0}if exch}repeat pop}bd
+/rgb2cmyk{3{1 exch sub 3 1 roll}repeat 3 copy @MN @MN 3{dup 5 -1 roll sub neg
+exch}repeat}bd/rgb2g{2 index .299 mul 2 index .587 mul add 1 index .114 mul add
+4 1 roll pop pop pop}bd/WaldoColor_5 where{pop}{/SetRgb/setrgbcolor ld/GetRgb
+/currentrgbcolor ld/SetGry/setgray ld/GetGry/currentgray ld/SetRgb2 systemdict
+/setrgbcolor get def/GetRgb2 systemdict/currentrgbcolor get def/SetHsb
+systemdict/sethsbcolor get def/GetHsb systemdict/currenthsbcolor get def
+/rgb2hsb{SetRgb2 GetHsb}bd/hsb2rgb{3 -1 roll dup floor sub 3 1 roll SetHsb
+GetRgb2}bd/setcmykcolor where{pop/SetCmyk_5/setcmykcolor ld}{/SetCmyk_5{
+cmyk2rgb SetRgb}bd}ifelse/currentcmykcolor where{pop/GetCmyk/currentcmykcolor
+ld}{/GetCmyk{GetRgb rgb2cmyk}bd}ifelse/setoverprint where{pop}{/setoverprint{
+/$op xd}bd}ifelse/currentoverprint where{pop}{/currentoverprint{$op}bd}ifelse
+/@tc_5{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 roll mul exch}repeat pop}ifelse}bd
+/@trp{exch pop 5 1 roll @tc_5}bd/setprocesscolor_5{SepMode_5 0 eq{SetCmyk_5}{0
+4 $ink_5 sub index exch pop 5 1 roll pop pop pop pop SepsColor true eq{$ink_5 3
+gt{1 sub neg SetGry}{0 0 0 4 $ink_5 roll SetCmyk_5}ifelse}{1 sub neg SetGry}
+ifelse}ifelse}bd/findcmykcustomcolor where{pop}{/findcmykcustomcolor{5 array
+astore}bd}ifelse/setcustomcolor where{pop}{/setcustomcolor{exch aload pop
+SepMode_5 0 eq{pop @tc_5 setprocesscolor_5}{CurrentInkName_5 eq{4 index}{0}
+ifelse 6 1 roll 5 rp 1 sub neg SetGry}ifelse}bd}ifelse/@scc_5{dup type
+/booleantype eq{setoverprint}{1 eq setoverprint}ifelse dup _ eq{pop
+setprocesscolor_5 pop}{findcmykcustomcolor exch setcustomcolor}ifelse SepMode_5
+0 eq{true}{GetGry 1 eq currentoverprint and not}ifelse}bd/colorimage where{pop
+/ColorImage{colorimage}def}{/ColorImage{/ncolors xd pop/dataaq xd{dataaq
+ncolors dup 3 eq{/$dat xd 0 1 $dat length 3 div 1 sub{dup 3 mul $dat 1 index
+get 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div rgb2g
+255 mul cvi exch pop $dat 3 1 roll put}for $dat 0 $dat length 3 idiv
+getinterval pop}{4 eq{/$dat xd 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1
+index get 255 div $dat 2 index 1 add get 255 div $dat 3 index 2 add get 255 div
+$dat 4 index 3 add get 255 div cmyk2rgb rgb2g 255 mul cvi exch pop $dat 3 1
+roll put}for $dat 0 $dat length ncolors idiv getinterval}if}ifelse}image}bd
+}ifelse/setcmykcolor{1 5 1 roll _ currentoverprint @scc_5/$ffpnt xd}bd
+/currentcmykcolor{0 0 0 0}bd/setrgbcolor{rgb2cmyk setcmykcolor}bd
+/currentrgbcolor{currentcmykcolor cmyk2rgb}bd/sethsbcolor{hsb2rgb setrgbcolor}
+bd/currenthsbcolor{currentrgbcolor rgb2hsb}bd/setgray{dup dup setrgbcolor}bd
+/currentgray{currentrgbcolor rgb2g}bd}ifelse/WaldoColor_5 true def/@sft{$tllx
+$pxf add dup $tllx gt{$pwid sub}if/$tx xd $tury $pyf sub dup $tury lt{$phei
+add}if/$ty xd}bd/@stb{pathbbox/$ury xd/$urx xd/$lly xd/$llx xd}bd/@ep{{cvx exec
+}forall}bd/@tp{@sv/$in true def 2 copy dup $lly le{/$in false def}if $phei sub
+$ury ge{/$in false def}if dup $urx ge{/$in false def}if $pwid add $llx le{/$in
+false def}if $in{@np 2 copy m $pwid 0 rl 0 $phei neg rl $pwid neg 0 rl 0 $phei
+rl clip @np $pn cvlit load aload pop 7 -1 roll 5 index sub 7 -1 roll 3 index
+sub Tl matrix currentmatrix/$ctm xd @ep pop pop pop pop}{pop pop}ifelse @rs}bd
+/@th{@sft 0 1 $tly 1 sub{dup $psx mul $tx add{dup $llx gt{$pwid sub}{exit}
+ifelse}loop exch $phei mul $ty exch sub 0 1 $tlx 1 sub{$pwid mul 3 copy 3 -1
+roll add exch @tp pop}for pop pop}for}bd/@tv{@sft 0 1 $tlx 1 sub{dup $pwid mul
+$tx add exch $psy mul $ty exch sub{dup $ury lt{$phei add}{exit}ifelse}loop 0 1
+$tly 1 sub{$phei mul 3 copy sub @tp pop}for pop pop}for}bd/$fm 0 def/wfill{1
+$fm eq{fill}{eofill}ifelse}bd/wclip{1 $fm eq{clip}{eoclip}ifelse}bd/@pf{@gs
+$ctm setmatrix $pm concat @stb wclip Bburx Bbury $pm itransform/$tury xd/$turx
+xd Bbllx Bblly $pm itransform/$tlly xd/$tllx xd/$wid $turx $tllx sub def/$hei
+$tury $tlly sub def @gs $vectpat{1 0 0 0 0 _ $o @scc_5{wfill}if}{$t $c $m $y $k
+$n $o @scc_5{SepMode_5 0 eq $pfrg or{$tllx $tlly Tl $wid $hei scale <00> 8 1
+false[8 0 0 1 0 0]{}imagemask}{/$bkg true def}ifelse}if}ifelse @gr $wid 0 gt
+$hei 0 gt and{$pn cvlit load aload pop/$pd xd 3 -1 roll sub/$phei xd exch sub
+/$pwid xd $wid $pwid div ceiling 1 add/$tlx xd $hei $phei div ceiling 1 add
+/$tly xd $psx 0 eq{@tv}{@th}ifelse}if @gr @np/$bkg false def}bd/@Pf{@sv
+SepMode_5 0 eq $Psc 0 ne or $ink_5 3 eq or{0 J 0 j[]0 d $t $c $m $y $k $n $o
+@scc_5 pop $ctm setmatrix 72 1000 div dup matrix scale dup concat dup Bburx
+exch Bbury exch itransform ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch
+Bblly exch itransform floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn
+load exec}{1 SetGry wfill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf
+$sca $scp @ss}if $fil 1 eq{@pf}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{$t $c $m $y $k $n
+$o @scc_5{wfill}{@np}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa $dsp @ss}if
+setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix $ctm setmatrix $SDF{$SCF $SCA
+$SCP @ss}if $T $C $M $Y $K $N $O @scc_5{matrix currentmatrix $ptm concat stroke
+setmatrix}{@np}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs
+F @gr S}bd/b{@cp B}bd/_E{5 array astore exch cvlit xd}bd/@cc{currentfile $dat
+readhexstring pop}bd/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd
+/Bblly xd/Bbllx xd}bd/@c{@cp}bd/@p{/$fil 1 def 1 eq dup/$vectpat xd{/$pfrg true
+def}{@gs $t $c $m $y $k $n $o @scc_5/$pfrg xd @gr}ifelse/$pm xd/$psy xd/$psx xd
+/$pyf xd/$pxf xd/$pn xd}bd/@P{/$fil 3 def/$Psn xd/$Psc xd array astore/$Prm xd
+}bd/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 index 3 index l 3
+index 3 index l clip pop pop pop pop}bd/tcc{@cc}def/@i{@sm @gs @ii 6 index 1 ne
+{/$frg true def pop pop}{1 eq{s1t s1c s1m s1y s1k s1n $O @scc_5/$frg xd}{/$frg
+false def}ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd/$urx xd
+/$lly xd/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi
+string def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl $urx $llx sub
+$ury $lly sub scale $bkg{$t $c $m $y $k $n $o @scc_5 pop}if $wid $hei abs $bts
+1 eq{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load
+$bts 1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{$hei abs{tcc pop}
+repeat}ifelse @gr $ctm setmatrix}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd
+/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div
+ceiling cvi string def $ngx $llx $lly Tl $urx $llx sub $ury $lly sub scale $wid
+$hei abs $bts[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/@cc load false $ncl
+ColorImage $SDF{$dsf $dsa $dsp @ss}if @gr $ctm setmatrix}bd/COMP 0 def L2?{
+/@I_2{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd
+/$wid xd/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def $ngx $ncl 1
+eq{/DeviceGray}{$ncl 3 eq{/DeviceRGB}{/DeviceCMYK}ifelse}ifelse setcolorspace
+$llx $lly Tl $urx $llx sub $ury $lly sub scale 8 dict begin/ImageType 1 def
+/Width $wid def/Height $hei abs def/BitsPerComponent $bts def/Decode $ncl 1 eq
+{[0 1]}{$ncl 3 eq{[0 1 0 1 0 1]}{[0 1 0 1 0 1 0 1]}ifelse}ifelse def
+/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def/DataSource
+currentfile/ASCII85Decode filter COMP 1 eq{/DCTDecode filter}{COMP 2 eq
+{/RunLengthDecode filter}if}ifelse def currentdict end image $SDF{$dsf $dsa
+$dsp @ss}if @gr $ctm setmatrix}bd}{/@I_2{}bd}ifelse/@B{@gs S @gr F}bd/@b{@cp @B
+}bd/@sep{CurrentInkName_5(Composite)eq{/$ink_5 -1 def}{CurrentInkName_5(Cyan)
+eq{/$ink_5 0 def}{CurrentInkName_5(Magenta)eq{/$ink_5 1 def}{CurrentInkName_5
+(Yellow)eq{/$ink_5 2 def}{CurrentInkName_5(Black)eq{/$ink_5 3 def}{/$ink_5 4
+def}ifelse}ifelse}ifelse}ifelse}ifelse}bd/@whi{@gs -72000 dup m -72000 72000 l
+72000 dup l 72000 -72000 l @cp 1 SetGry fill @gr}bd/@neg{[{1 exch sub}/exec cvx
+currenttransfer/exec cvx]cvx settransfer @whi}bd/deflevel 0 def/@sax{/deflevel
+deflevel 1 add def}bd/@eax{/deflevel deflevel dup 0 gt{1 sub}if def deflevel 0
+gt{/eax load}{eax}ifelse}bd/eax{{exec}forall}bd/@rax{deflevel 0 eq{@rs @sv}if}
+bd/@daq{dup type/arraytype eq{{}forall}if}bd/@BMP{/@cc xd 12 index 1 gt
+UseLevel2 true eq and{7 -2 roll pop pop @I_2}{11 index 1 eq{12 -1 roll pop @i}
+{7 -2 roll pop pop @I}ifelse}ifelse}bd systemdict/pdfmark known not{/pdfmark
+/cleartomark ld}if
+end
+%%EndResource
+%%EndProlog
+%%BeginSetup
+wCorel7Dict begin
+@BeginSysCorelDict
+2.6131 setmiterlimit
+1.00 setflat
+/$fst 128 def
+%%EndSetup
+
+%%Page: 1 1
+%LogicalPage: 1
+%%BeginPageSetup
+@sv
+@sm
+@sv
+%%EndPageSetup
+@rax %Note: Object
+145.86831 463.43707 314.70831 512.32507 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+145.86831 463.43707 m
+314.70831 512.32507 L
+S
+
+@rax %Note: Object
+146.66031 503.18107 315.50031 552.06907 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+146.66031 503.18107 m
+315.50031 552.06907 L
+S
+
+@rax %Note: Object
+149.39631 483.23707 301.96431 492.45307 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+149.39631 483.23707 m
+301.96431 492.45307 L
+S
+
+@rax %Note: Object
+149.32431 510.16507 153.86031 517.94107 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+149.32431 510.16507 m
+149.32431 517.94107 L
+150.11631 517.94107 L
+150.11631 512.46907 L
+152.70831 515.92507 L
+153.64431 515.92507 L
+151.48431 513.04507 L
+153.86031 510.16507 L
+152.85231 510.16507 L
+150.98031 512.46907 L
+150.11631 511.24507 L
+150.11631 510.16507 L
+149.32431 510.16507 L
+@c
+F
+
+@rax %Note: Object
+149.32431 510.16507 153.86031 517.94107 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+149.32431 510.16507 m
+149.32431 517.94107 L
+150.11631 517.94107 L
+150.11631 512.46907 L
+152.70831 515.92507 L
+153.64431 515.92507 L
+151.48431 513.04507 L
+153.86031 510.16507 L
+152.85231 510.16507 L
+150.98031 512.46907 L
+150.11631 511.24507 L
+150.11631 510.16507 L
+149.32431 510.16507 L
+S
+
+@rax %Note: Object
+148.60431 469.12507 149.39631 476.82907 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+148.60431 469.12507 m
+148.60431 476.82907 L
+149.39631 476.82907 L
+149.39631 469.12507 L
+148.60431 469.12507 L
+@c
+F
+
+@rax %Note: Object
+148.60431 469.12507 149.39631 476.82907 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+148.60431 469.12507 m
+148.60431 476.82907 L
+149.39631 476.82907 L
+149.39631 469.12507 L
+148.60431 469.12507 L
+S
+
+@rax %Note: Object
+291.30831 481.29307 297.35631 489.06907 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+291.30831 481.29307 m
+291.30831 488.99707 L
+292.10031 488.99707 L
+292.10031 487.98907 L
+292.24431 488.27707 L
+292.46031 488.49307 L
+292.67631 488.70907 L
+292.96431 488.85307 L
+293.25231 488.92507 L
+293.61231 488.99707 L
+293.90031 489.06907 L
+294.26031 489.06907 L
+294.83631 488.99707 L
+295.41231 488.92507 L
+295.91631 488.70907 L
+296.34831 488.34907 L
+296.78031 487.91707 L
+297.06831 487.41307 L
+297.28431 486.83707 L
+297.35631 486.26107 L
+297.28431 485.61307 L
+297.14031 485.03707 L
+296.85231 484.46107 L
+296.49231 484.02907 L
+296.27631 483.81307 L
+295.98831 483.66907 L
+295.70031 483.52507 L
+295.48431 483.38107 L
+295.19631 483.30907 L
+294.90831 483.23707 L
+294.62031 483.16507 L
+294.33231 483.16507 L
+293.97231 483.16507 L
+293.61231 483.23707 L
+293.25231 483.30907 L
+292.89231 483.45307 L
+292.60431 483.59707 L
+292.38831 483.81307 L
+292.24431 484.02907 L
+292.10031 484.31707 L
+292.10031 481.29307 L
+291.30831 481.29307 L
+@c
+292.10031 486.04507 m
+292.10031 485.61307 L
+292.24431 485.25307 L
+292.38831 484.89307 L
+292.60431 484.60507 L
+292.89231 484.24507 L
+293.32431 484.02907 L
+293.82831 483.88507 L
+294.33231 483.81307 L
+294.76431 483.88507 L
+295.19631 483.95707 L
+295.55631 484.17307 L
+295.91631 484.46107 L
+296.20431 484.82107 L
+296.42031 485.18107 L
+296.56431 485.61307 L
+296.63631 486.11707 L
+296.56431 486.54907 L
+296.42031 486.98107 L
+296.20431 487.34107 L
+295.91631 487.70107 L
+295.55631 487.98907 L
+295.19631 488.20507 L
+294.76431 488.27707 L
+294.26031 488.34907 L
+293.82831 488.27707 L
+293.39631 488.13307 L
+292.96431 487.91707 L
+292.60431 487.62907 L
+292.38831 487.26907 L
+292.24431 486.90907 L
+292.10031 486.47707 L
+292.10031 486.04507 L
+@c
+F
+
+@rax %Note: Object
+291.30831 481.29307 297.35631 489.06907 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+291.30831 481.29307 m
+291.30831 488.99707 L
+292.10031 488.99707 L
+292.10031 487.98907 L
+292.10031 487.98907 L
+292.24431 488.27707 L
+292.46031 488.49307 L
+292.67631 488.70907 L
+292.96431 488.85307 L
+292.96431 488.85307 L
+293.25231 488.92507 L
+293.61231 488.99707 L
+293.90031 489.06907 L
+294.26031 489.06907 L
+294.26031 489.06907 L
+294.83631 488.99707 L
+295.41231 488.92507 L
+295.91631 488.70907 L
+296.34831 488.34907 L
+296.34831 488.34907 L
+296.78031 487.91707 L
+297.06831 487.41307 L
+297.28431 486.83707 L
+297.35631 486.26107 L
+297.35631 486.26107 L
+297.28431 485.61307 L
+297.14031 485.03707 L
+296.85231 484.46107 L
+296.49231 484.02907 L
+296.49231 484.02907 L
+296.27631 483.81307 L
+295.98831 483.66907 L
+295.70031 483.52507 L
+295.48431 483.38107 L
+295.19631 483.30907 L
+294.90831 483.23707 L
+294.62031 483.16507 L
+294.33231 483.16507 L
+294.33231 483.16507 L
+293.97231 483.16507 L
+293.61231 483.23707 L
+293.25231 483.30907 L
+292.89231 483.45307 L
+292.89231 483.45307 L
+292.60431 483.59707 L
+292.38831 483.81307 L
+292.24431 484.02907 L
+292.10031 484.31707 L
+292.10031 481.29307 L
+291.30831 481.29307 L
+S
+
+@rax %Note: Object
+292.10031 483.81307 296.63631 488.34907 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+292.10031 486.04507 m
+292.10031 486.04507 L
+292.10031 485.61307 L
+292.24431 485.25307 L
+292.38831 484.89307 L
+292.60431 484.60507 L
+292.60431 484.60507 L
+292.89231 484.24507 L
+293.32431 484.02907 L
+293.82831 483.88507 L
+294.33231 483.81307 L
+294.33231 483.81307 L
+294.76431 483.88507 L
+295.19631 483.95707 L
+295.55631 484.17307 L
+295.91631 484.46107 L
+295.91631 484.46107 L
+296.20431 484.82107 L
+296.42031 485.18107 L
+296.56431 485.61307 L
+296.63631 486.11707 L
+296.63631 486.11707 L
+296.56431 486.54907 L
+296.42031 486.98107 L
+296.20431 487.34107 L
+295.91631 487.70107 L
+295.91631 487.70107 L
+295.55631 487.98907 L
+295.19631 488.20507 L
+294.76431 488.27707 L
+294.26031 488.34907 L
+294.26031 488.34907 L
+293.82831 488.27707 L
+293.39631 488.13307 L
+292.96431 487.91707 L
+292.60431 487.62907 L
+292.60431 487.62907 L
+292.38831 487.26907 L
+292.24431 486.90907 L
+292.10031 486.47707 L
+292.10031 486.04507 L
+S
+
+@rax %Note: Object
+225.42831 491.73307 233.70831 499.58107 @E
+ 0 O 0 @g
+0.84 0.73 0.72 0.91 k
+/$fm 0 def
+225.50031 496.41307 m
+225.78831 497.13307 L
+226.07631 497.78107 L
+226.50831 498.28507 L
+227.01231 498.78907 L
+227.30031 498.93307 L
+227.58831 499.14907 L
+227.87631 499.29307 L
+228.16431 499.36507 L
+228.52431 499.43707 L
+228.81231 499.50907 L
+229.17231 499.58107 L
+229.53231 499.58107 L
+229.96431 499.58107 L
+230.32431 499.50907 L
+230.68431 499.43707 L
+231.04431 499.36507 L
+231.40431 499.22107 L
+231.69231 499.07707 L
+232.05231 498.86107 L
+232.34031 498.64507 L
+232.91631 498.14107 L
+233.34831 497.49307 L
+233.63631 496.70107 L
+233.70831 495.83707 L
+233.70831 495.47707 L
+233.70831 495.04507 L
+233.63631 494.68507 L
+233.49231 494.32507 L
+233.42031 493.96507 L
+233.20431 493.67707 L
+232.98831 493.31707 L
+232.77231 493.02907 L
+232.48431 492.66907 L
+232.55631 492.59707 L
+232.70031 492.59707 L
+232.77231 492.52507 L
+232.91631 492.45307 L
+233.06031 492.38107 L
+233.20431 492.38107 L
+233.27631 492.30907 L
+233.42031 492.30907 L
+233.42031 492.30907 L
+233.49231 492.30907 L
+233.49231 492.30907 L
+233.56431 492.30907 L
+233.56431 491.73307 L
+233.34831 491.73307 L
+233.13231 491.80507 L
+232.84431 491.80507 L
+232.62831 491.80507 L
+232.41231 491.94907 L
+232.19631 492.02107 L
+232.05231 492.16507 L
+231.90831 492.23707 L
+231.62031 492.09307 L
+231.26031 492.02107 L
+230.97231 491.87707 L
+230.68431 491.80507 L
+230.39631 491.80507 L
+230.10831 491.80507 L
+229.82031 491.73307 L
+229.53231 491.73307 L
+229.10031 491.73307 L
+228.66831 491.80507 L
+228.30831 491.87707 L
+227.94831 492.02107 L
+227.58831 492.16507 L
+227.22831 492.38107 L
+226.86831 492.59707 L
+226.58031 492.88507 L
+226.07631 493.53307 L
+225.71631 494.18107 L
+225.50031 494.90107 L
+225.42831 495.62107 L
+225.42831 495.76507 L
+225.42831 495.98107 L
+225.42831 496.19707 L
+225.50031 496.41307 L
+@c
+226.36431 494.68507 m
+226.72431 494.75707 L
+227.15631 494.90107 L
+227.58831 494.97307 L
+228.02031 494.97307 L
+228.52431 494.97307 L
+229.10031 494.90107 L
+229.60431 494.75707 L
+230.10831 494.54107 L
+230.54031 494.32507 L
+231.04431 494.03707 L
+231.47631 493.67707 L
+231.90831 493.24507 L
+232.19631 493.53307 L
+232.41231 493.82107 L
+232.55631 494.03707 L
+232.70031 494.32507 L
+232.77231 494.61307 L
+232.91631 494.97307 L
+232.98831 495.26107 L
+232.98831 495.54907 L
+232.98831 495.69307 L
+232.98831 495.90907 L
+232.91631 496.12507 L
+232.91631 496.26907 L
+232.70031 496.84507 L
+232.48431 497.34907 L
+232.12431 497.78107 L
+231.76431 498.14107 L
+231.54831 498.28507 L
+231.26031 498.50107 L
+231.04431 498.57307 L
+230.75631 498.71707 L
+230.46831 498.78907 L
+230.18031 498.78907 L
+229.82031 498.86107 L
+229.53231 498.86107 L
+229.24431 498.86107 L
+228.88431 498.78907 L
+228.59631 498.71707 L
+228.30831 498.64507 L
+228.02031 498.50107 L
+227.73231 498.35707 L
+227.44431 498.21307 L
+227.22831 497.99707 L
+226.72431 497.49307 L
+226.43631 496.91707 L
+226.22031 496.26907 L
+226.14831 495.54907 L
+226.14831 495.40507 L
+226.22031 495.33307 L
+226.22031 495.18907 L
+226.22031 495.04507 L
+226.29231 494.97307 L
+226.29231 494.82907 L
+226.29231 494.75707 L
+226.36431 494.68507 L
+@c
+226.65231 494.03707 m
+226.94031 493.60507 L
+227.22831 493.31707 L
+227.58831 492.95707 L
+228.02031 492.74107 L
+228.38031 492.52507 L
+228.74031 492.45307 L
+229.17231 492.30907 L
+229.53231 492.30907 L
+229.82031 492.30907 L
+230.03631 492.38107 L
+230.32431 492.38107 L
+230.54031 492.45307 L
+230.68431 492.52507 L
+230.90031 492.59707 L
+231.11631 492.74107 L
+231.26031 492.81307 L
+230.90031 493.17307 L
+230.46831 493.46107 L
+230.10831 493.67707 L
+229.67631 493.89307 L
+229.17231 494.03707 L
+228.74031 494.18107 L
+228.30831 494.25307 L
+227.87631 494.25307 L
+227.58831 494.25307 L
+227.22831 494.18107 L
+226.94031 494.10907 L
+226.65231 494.03707 L
+@c
+F
+
+@rax %Note: Object
+225.42831 491.73307 233.70831 499.58107 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+225.50031 496.41307 m
+225.50031 496.41307 L
+225.78831 497.13307 L
+226.07631 497.78107 L
+226.50831 498.28507 L
+227.01231 498.78907 L
+227.01231 498.78907 L
+227.30031 498.93307 L
+227.58831 499.14907 L
+227.87631 499.29307 L
+228.16431 499.36507 L
+228.52431 499.43707 L
+228.81231 499.50907 L
+229.17231 499.58107 L
+229.53231 499.58107 L
+229.53231 499.58107 L
+229.96431 499.58107 L
+230.32431 499.50907 L
+230.68431 499.43707 L
+231.04431 499.36507 L
+231.40431 499.22107 L
+231.69231 499.07707 L
+232.05231 498.86107 L
+232.34031 498.64507 L
+232.34031 498.64507 L
+232.91631 498.14107 L
+233.34831 497.49307 L
+233.63631 496.70107 L
+233.70831 495.83707 L
+233.70831 495.47707 L
+233.70831 495.47707 L
+233.70831 495.04507 L
+233.63631 494.68507 L
+233.49231 494.32507 L
+233.42031 493.96507 L
+233.42031 493.96507 L
+233.20431 493.67707 L
+232.98831 493.31707 L
+232.77231 493.02907 L
+232.48431 492.66907 L
+232.48431 492.66907 L
+232.55631 492.59707 L
+232.70031 492.59707 L
+232.77231 492.52507 L
+232.91631 492.45307 L
+232.91631 492.45307 L
+233.06031 492.38107 L
+233.20431 492.38107 L
+233.27631 492.30907 L
+233.42031 492.30907 L
+233.42031 492.30907 L
+233.42031 492.30907 L
+233.49231 492.30907 L
+233.49231 492.30907 L
+233.56431 492.30907 L
+233.56431 491.73307 L
+233.56431 491.73307 L
+233.34831 491.73307 L
+233.13231 491.80507 L
+232.84431 491.80507 L
+232.62831 491.80507 L
+232.62831 491.80507 L
+232.41231 491.94907 L
+232.19631 492.02107 L
+232.05231 492.16507 L
+231.90831 492.23707 L
+231.90831 492.23707 L
+231.62031 492.09307 L
+231.26031 492.02107 L
+230.97231 491.87707 L
+230.68431 491.80507 L
+230.68431 491.80507 L
+230.39631 491.80507 L
+230.10831 491.80507 L
+229.82031 491.73307 L
+229.53231 491.73307 L
+229.53231 491.73307 L
+229.10031 491.73307 L
+228.66831 491.80507 L
+228.30831 491.87707 L
+227.94831 492.02107 L
+227.58831 492.16507 L
+227.22831 492.38107 L
+226.86831 492.59707 L
+226.58031 492.88507 L
+226.58031 492.88507 L
+226.07631 493.53307 L
+225.71631 494.18107 L
+225.50031 494.90107 L
+225.42831 495.62107 L
+225.42831 495.62107 L
+225.42831 495.76507 L
+225.42831 495.98107 L
+225.42831 496.19707 L
+225.50031 496.41307 L
+S
+
+@rax %Note: Object
+226.14831 493.24507 232.98831 498.86107 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+226.36431 494.68507 m
+226.36431 494.68507 L
+226.72431 494.75707 L
+227.15631 494.90107 L
+227.58831 494.97307 L
+228.02031 494.97307 L
+228.02031 494.97307 L
+228.52431 494.97307 L
+229.10031 494.90107 L
+229.60431 494.75707 L
+230.10831 494.54107 L
+230.54031 494.32507 L
+231.04431 494.03707 L
+231.47631 493.67707 L
+231.90831 493.24507 L
+231.90831 493.24507 L
+232.19631 493.53307 L
+232.41231 493.82107 L
+232.55631 494.03707 L
+232.70031 494.32507 L
+232.70031 494.32507 L
+232.77231 494.61307 L
+232.91631 494.97307 L
+232.98831 495.26107 L
+232.98831 495.54907 L
+232.98831 495.54907 L
+232.98831 495.69307 L
+232.98831 495.90907 L
+232.91631 496.12507 L
+232.91631 496.26907 L
+232.91631 496.26907 L
+232.70031 496.84507 L
+232.48431 497.34907 L
+232.12431 497.78107 L
+231.76431 498.14107 L
+231.76431 498.14107 L
+231.54831 498.28507 L
+231.26031 498.50107 L
+231.04431 498.57307 L
+230.75631 498.71707 L
+230.46831 498.78907 L
+230.18031 498.78907 L
+229.82031 498.86107 L
+229.53231 498.86107 L
+229.53231 498.86107 L
+229.24431 498.86107 L
+228.88431 498.78907 L
+228.59631 498.71707 L
+228.30831 498.64507 L
+228.02031 498.50107 L
+227.73231 498.35707 L
+227.44431 498.21307 L
+227.22831 497.99707 L
+227.22831 497.99707 L
+226.72431 497.49307 L
+226.43631 496.91707 L
+226.22031 496.26907 L
+226.14831 495.54907 L
+226.14831 495.54907 L
+226.14831 495.40507 L
+226.22031 495.33307 L
+226.22031 495.18907 L
+226.22031 495.04507 L
+226.22031 495.04507 L
+226.29231 494.97307 L
+226.29231 494.82907 L
+226.29231 494.75707 L
+226.36431 494.68507 L
+S
+
+@rax %Note: Object
+226.65231 492.30907 231.26031 494.25307 @E
+0 J 0 j [] 0 d 0 R 0 @G
+0.84 0.73 0.72 0.91 K
+0 0.21600 0.21600 0.00000 @w
+/$fm 0 def
+226.65231 494.03707 m
+226.65231 494.03707 L
+226.94031 493.60507 L
+227.22831 493.31707 L
+227.58831 492.95707 L
+228.02031 492.74107 L
+228.02031 492.74107 L
+228.38031 492.52507 L
+228.74031 492.45307 L
+229.17231 492.30907 L
+229.53231 492.30907 L
+229.53231 492.30907 L
+229.82031 492.30907 L
+230.03631 492.38107 L
+230.32431 492.38107 L
+230.54031 492.45307 L
+230.54031 492.45307 L
+230.68431 492.52507 L
+230.90031 492.59707 L
+231.11631 492.74107 L
+231.26031 492.81307 L
+231.26031 492.81307 L
+230.90031 493.17307 L
+230.46831 493.46107 L
+230.10831 493.67707 L
+229.67631 493.89307 L
+229.67631 493.89307 L
+229.17231 494.03707 L
+228.74031 494.18107 L
+228.30831 494.25307 L
+227.87631 494.25307 L
+227.87631 494.25307 L
+227.58831 494.25307 L
+227.22831 494.18107 L
+226.94031 494.10907 L
+226.65231 494.03707 L
+S
+
+%%PageTrailer
+@rs
+@rs
+%%Trailer
+@EndSysCorelDict
+end
+%%DocumentSuppliedResources: procset wCorel7Dict
+%%EOF