diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/pman/doc/src/options.ps | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/pman/doc/src/options.ps')
-rw-r--r-- | lib/pman/doc/src/options.ps | 829 |
1 files changed, 829 insertions, 0 deletions
diff --git a/lib/pman/doc/src/options.ps b/lib/pman/doc/src/options.ps new file mode 100644 index 0000000000..b5e2c6a391 --- /dev/null +++ b/lib/pman/doc/src/options.ps @@ -0,0 +1,829 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: (ImageMagick) +%%Title: (./options.tmp.eps) +%%CreationDate: (Tue Jun 12 18:04:30 2001) +%%BoundingBox: 0 53 250 318 +%%DocumentData: Clean7Bit +%%LanguageLevel: 1 +%%Pages: 0 +%%EndComments + +%%BeginDefaults +%%PageOrientation: Portrait +%%EndDefaults + +%%BeginProlog +% +% Display a color image. The image is displayed in color on +% Postscript viewers or printers that support color, otherwise +% it is displayed as grayscale. +% +/buffer 512 string def +/byte 1 string def +/color_packet 3 string def +/pixels 768 string def + +/DirectClassPacket +{ + % + % Get a DirectClass packet. + % + % Parameters: + % red. + % green. + % blue. + % length: number of pixels minus one of this color (optional). + % + currentfile color_packet readhexstring pop pop + compression 0 gt + { + /number_pixels 3 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add 3 mul def + } ifelse + 0 3 number_pixels 1 sub + { + pixels exch color_packet putinterval + } for + pixels 0 number_pixels getinterval +} bind def + +/DirectClassImage +{ + % + % Display a DirectClass image. + % + systemdict /colorimage known + { + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { DirectClassPacket } false 3 colorimage + } + { + % + % No colorimage operator; convert to grayscale. + % + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { GrayDirectClassPacket } image + } ifelse +} bind def + +/GrayDirectClassPacket +{ + % + % Get a DirectClass packet; convert to grayscale. + % + % Parameters: + % red + % green + % blue + % length: number of pixels minus one of this color (optional). + % + currentfile color_packet readhexstring pop pop + color_packet 0 get 0.299 mul + color_packet 1 get 0.587 mul add + color_packet 2 get 0.114 mul add + cvi + /gray_packet exch def + compression 0 gt + { + /number_pixels 1 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add def + } ifelse + 0 1 number_pixels 1 sub + { + pixels exch gray_packet put + } for + pixels 0 number_pixels getinterval +} bind def + +/GrayPseudoClassPacket +{ + % + % Get a PseudoClass packet; convert to grayscale. + % + % Parameters: + % index: index into the colormap. + % length: number of pixels minus one of this color (optional). + % + currentfile byte readhexstring pop 0 get + /offset exch 3 mul def + /color_packet colormap offset 3 getinterval def + color_packet 0 get 0.299 mul + color_packet 1 get 0.587 mul add + color_packet 2 get 0.114 mul add + cvi + /gray_packet exch def + compression 0 gt + { + /number_pixels 1 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add def + } ifelse + 0 1 number_pixels 1 sub + { + pixels exch gray_packet put + } for + pixels 0 number_pixels getinterval +} bind def + +/PseudoClassPacket +{ + % + % Get a PseudoClass packet. + % + % Parameters: + % index: index into the colormap. + % length: number of pixels minus one of this color (optional). + % + currentfile byte readhexstring pop 0 get + /offset exch 3 mul def + /color_packet colormap offset 3 getinterval def + compression 0 gt + { + /number_pixels 3 def + } + { + currentfile byte readhexstring pop 0 get + /number_pixels exch 1 add 3 mul def + } ifelse + 0 3 number_pixels 1 sub + { + pixels exch color_packet putinterval + } for + pixels 0 number_pixels getinterval +} bind def + +/PseudoClassImage +{ + % + % Display a PseudoClass image. + % + % Parameters: + % class: 0-PseudoClass or 1-Grayscale. + % + currentfile buffer readline pop + token pop /class exch def pop + class 0 gt + { + currentfile buffer readline pop + token pop /depth exch def pop + /grays columns 8 add depth sub depth mul 8 idiv string def + columns rows depth + [ + columns 0 0 + rows neg 0 rows + ] + { currentfile grays readhexstring pop } image + } + { + % + % Parameters: + % colors: number of colors in the colormap. + % colormap: red, green, blue color packets. + % + currentfile buffer readline pop + token pop /colors exch def pop + /colors colors 3 mul def + /colormap colors string def + currentfile colormap readhexstring pop pop + systemdict /colorimage known + { + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { PseudoClassPacket } false 3 colorimage + } + { + % + % No colorimage operator; convert to grayscale. + % + columns rows 8 + [ + columns 0 0 + rows neg 0 rows + ] + { GrayPseudoClassPacket } image + } ifelse + } ifelse +} bind def + +/DisplayImage +{ + % + % Display a DirectClass or PseudoClass image. + % + % Parameters: + % x & y translation. + % x & y scale. + % label pointsize. + % image label. + % image columns & rows. + % class: 0-DirectClass or 1-PseudoClass. + % compression: 0-RunlengthEncodedCompression or 1-NoCompression. + % hex color packets. + % + gsave + currentfile buffer readline pop + token pop /x exch def + token pop /y exch def pop + x y translate + currentfile buffer readline pop + token pop /x exch def + token pop /y exch def pop + currentfile buffer readline pop + token pop /pointsize exch def pop + /Helvetica findfont pointsize scalefont setfont + x y scale + currentfile buffer readline pop + token pop /columns exch def + token pop /rows exch def pop + currentfile buffer readline pop + token pop /class exch def pop + currentfile buffer readline pop + token pop /compression exch def pop + class 0 gt { PseudoClassImage } { DirectClassImage } ifelse + grestore +} bind def +%%EndProlog +%%Page: 1 1 +%%PageBoundingBox: 0 53 250 318 +userdict begin +%%BeginData: +DisplayImage +0 53 +250.000000 265.000000 +12 +350 371 +1 +0 +0 +8 +ffffff +000000 +708090 +b03060 +d9d9d9 +808080 +a3a3a3 +000000 +03ff03ff03ff035f04000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400031b040c0392040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +04000300040003000400030004000307040c03050400030a040003080404030b0402030d +0401030104010305040703200403030a040103010401031e040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000308040003020400030204000302 +040003050400030a0400030804010301040103090401030f040103010401030804010322 +040103010401030904010321040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003070400030204000302040003020400030504000303 +040203030400030804010302040103010403030104030301040303010401030104010300 +040103000403030704010302040103000401030004030302040303020403030604010303 +04010300040103000401030104030300040103010403030104010300040103020403030a +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000308 +040003020400030204000302040003050400030204040302040003080401030204010300 +040103010401030104010301040103010401030004010301040103000401030104010308 +040103020406030104010300040103010401030004010301040103050401030304010300 +040203000401030104010301040103000401030104010300040203000401030004010301 +040103080400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030704040302040003020400030504000301040603010400030804010302 +040103000401030104010301040103050401030004010301040103000401030104010308 +040103020402030504010300040103040401030104010305040103030401030004010301 +040103010401030104010300040103010401030004010301040103000402030c04000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030804000306 +040003020400030504000301040603010400030804010302040103000405030104010302 +040403000401030104010300040103010401030804010302040103030404030004010304 +040503050401030304010300040103010401030104010301040103000401030104010300 +040103010401030204020309040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003070400030604000302040003050400030104060301 +040003080401030204010300040103050401030104010301040103000401030104010300 +040103010401030804010302040103020401030104010300040103040401030904010303 +040103000401030104010301040103010401030004010301040103000401030104010303 +040203090400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003080400030604000302040003050400030204040302040003080401030104010301 +040103010401030104010301040103010401030004010300040203000401030104010300 +040003060401030204010302040103010401030004010301040103000401030104010306 +040103010401030104020300040103010401030004020300040103010401030004010301 +040103000401030104010308040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003070408030204000305040003030402030304000308 +040403030403030204010302040203000401030004010300040103000401030204010307 +040103020401030304020300040103000403030204030308040303020401030004010303 +04010300040103010403030104010301040103010403030a040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +0400030004000300040003000400030004000300040003080400030a040003050400030a +040003660401032904000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +0400030004000300040003070400030a040003050400030a040003660401032a04000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +04000300040003000400030004000300040003000400030004000300040003080400030a +04000305040c036604010329040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +04000300040003000400030004000307040c03a604000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +040003000400030004000300040003000400030004000300040003000400030004000300 +04000300040003000400030004000300040003ff03ff03d402ff02ff02bb00ff00ff00ba +050000ff005b050100ff00ff000e050000ff005b050100b104a80502000204a8000504a8 +0502000204a8000504a80502000204a8000504a80502000204a8000504a80502000204a8 +000504a80502000204a8000504a80502000204a8000504a80502000204a8000504a80502 +000204a8000504a80502000204a8000504a80502000204a8000504a80502000204a80005 +04a8050200020407010404080100041601000404010004360100040601000433000504a8 +0502000204090100040a0100041c010004360100043b0005040801040434010004130100 +041a010004060100042b0502000204090100040301000400010104020100040001010403 +010204020100040001010403010204020104040201020402010004000101040301020403 +0102040a0102040201000400010104020104040201020403010204020100040001010403 +01020404010104170005040a01000436010004130100041a010004330502000204090100 +040301010401010004010101040101000401010004020100040101010401010004040100 +040401000403010004020100040101010401010004010100040201000401010004020100 +040801000402010004010101040101000403010004060100040201000402010004010101 +0401010004010100040201000403010104170005040a0100040301000400010104030102 +0403010204030102040a0102040201000402010004010104040101000400010104020100 +040201000401010404090102040201000400010104020104040201020403010204020100 +040001010403010204040101040f05020002040901000403010004020100040101000402 +010004010100040201000401010004080100040401000407010004010100040201000401 +010004050100040201000408010004020100040101000402010004030100040601000402 +01000402010004010100040201000401010004210005040a010004030101040101000401 +010004020100040101000402010004010100040201000408010004020100040101000402 +0100040301000403010104010100040101000402010004030100040a0100040201000401 +010104010100040301000406010004020100040201000401010104010100040101000402 +010004030101040f05020002040901000403010004020100040101000402010004010104 +040101000408010004040100040401030401010004020100040101000405010404080100 +040201000401010004020100040301000406010004020100040201000401010004020100 +04020102041e0005040a0100040301000409010004010100040501000402010004080100 +040201000401010004020100040301000403010004020100040101000402010004030100 +040a01000402010004010100040201000403010004060100040201000402010004010100 +040201000401010004190502000204090100040301000402010004010100040201000401 +010004050100040801000404010004030100040201000401010004020100040101000405 +0100040c0100040201000401010004020100040301000406010004020100040201000401 +01000402010004050100041d0005040a0100040301000406010304010100040501040408 +010004020100040101000402010004030100040301000402010004010100040201000403 +0100040a0100040201000401010004020100040301000406010004020100040201000401 +010004020100040201020416050200020409010004030100040201000401010004020100 +040101000402010004010100040801000404010004030100040201000401010004020100 +040101000402010004010100040201000408010004020100040101010401010004030100 +040601000402010004020100040101000402010004010100040201000403010104170005 +040a01000403010004050100040201000401010004050100040c01000402010004010100 +04020100040301000403010004020100040101000402010004030100040a010004020100 +040101000402010004030100040601000402010004020100040101000402010004050100 +041505020002040701040401010004020100040101000402010004020102040201000408 +0100040501010402010304010100040201000402010204030102040a0102040201000400 +01010405010104040100040301020402010004020100040201020404010104170005040a +010004030100040501000402010004010100040201000401010004020100040801000402 +01000401010004010101040301000403010104010100040101000401010104030100040a +010004020100040101010401010004030100040601000402010004020100040101000402 +0100040101000402010004030101040f050200020462010004440005040a010004030100 +040601030402010204030102040a01020403010104000100040401010401010004000101 +040301010400010004040101040901020402010004000101040501010404010004030102 +04020100040201000402010204040101040f050200020462010004440005044701000421 +0100043c0502000204620100044400050447010004210100043c0502000204a800050447 +010004210100043c0502000204a8000504a80502000204a8000504a80502000204a80005 +04a80502000204a8000504a80502000204a8000504a80502000204a8000504a805020002 +04a8000504a80502000204a8000504a80502000204a8000504a80502000204a8000504a8 +0502000204a8000504a80502000204a8000504a80502000204a8000504a80502000204a8 +000504a8050200020408050a04070104040801000416010004040100045f000504a80502 +000204080509000004090100040a0100041c0100045f000504a805020002040805010306 +000104090100040301000400010104020100040001010403010204020100040001010403 +010204020104040901020402010004000101040a01020402010004000101040301020402 +0100040201000401010004000101041f000504a805020002040805010306000104090100 +040301010401010004010101040101000401010004020100040101010401010004040100 +04040100040a010004020100040101010401010004080100040201000401010104010100 +040101000402010004010100040201000401010104010100041e00050409050a04070104 +043d01000447050200020408050103060001040901000403010004020100040101000402 +01000401010004020100040101000408010004040100040a010004020100040101000402 +010004080100040501000402010004050100040101000400010004000100040101000402 +0100041e000504090509000004090100043f010004470502000204080501030600010409 +01000403010004020100040101000402010004010104040101000408010004040100040a +010004020100040101000402010004090102040201000402010004020103040101000400 +0100040001000401010004020100041e0005040905010306000104090100040301000400 +0101040301020403010204030102040a0102040301020402010004000101040301010400 +010004470502000204080501030600010409010004030100040201000401010004020100 +04010100040501000408010004040100040a0100040201000401010004020100040c0100 +040101000402010004010100040201000401010004000100040001000401010004020100 +041e00050409050103060001040901000403010104010100040101000402010004010100 +040201000401010004020100040801000402010004010100040201000401010104010100 +040101000401010104470502000204080501030600010409010004030100040201000401 +0100040201000401010004020100040101000408010004040100040a0100040201000401 +010004020100040801000402010004010101040101000401010004020100040101000400 +0100040001000401010004020100041e0005040905010306000104090100040301000409 +010004010100040501000402010004080100040501000402010004010100040201000401 +010004020100044705020002040805010306000104070104040101000402010004010100 +040201000402010204020100040801000405010104090102040201000402010004090102 +04020100040001010403010304020100040001000402010004020100041e000504090501 +030600010409010004030100040601030401010004050104040901020402010404010100 +040201000401010004020100044705020002040805010008045b01000437000504090501 +030600010409010004030100040501000402010004010100040501000410010004010100 +04050100040201000401010004020100044705020002040805000009045b010004370005 +040905010306000104090100040301000405010004020100040101000402010004010100 +040201000408010004020100040101000402010004010100040201000401010004010101 +044705020002046f01000437000504090501030600010409010004030100040601030402 +010204030102040a01020403010204020100040201000402010104000100044705020002 +04a8000504090501000804930502000204a8000504090500000904930502000204a80005 +04a80502000204a8000504a805020002041b0501048a000504a805020002041a0503040e +01000404010204030102046a000504a80502000204190505040d01000406010004050100 +046a000504a8050200020418050203010502040b0100040001000405010004050100040a +010204020100040001010403010204020100040201000401010004000101040301020439 +000504a8050200020417050203030502040a010004000100040501000405010004090100 +040201000401010104010100040101000402010004010100040201000401010104010100 +04010100040201000438000504a805020002041605020305050204090100040001000405 +010004050100040901000405010004020100040501000401010004000100040001000401 +01000402010004010100043c000504a80502000204150002030700020407010004020100 +0404010004050100040a0102040201000402010004020103040101000400010004000100 +0401010004020100040201020439000504a8050200020416000203050002040801040404 +010004050100040d01000401010004020100040101000402010004010100040001000400 +0100040101000402010004050100043800050409050a0407010404430100044105020002 +041700020303000204090100040201000404010004050100040901000402010004010101 +040101000401010004020100040101000400010004000100040101000402010004010100 +0402010004380005040905090000040901000488050200020418000203010002040a0100 +040201000404010004050100040a01020402010004000101040301030402010004000100 +040201000402010004020102043900050409050103060001040901000403010004000101 +040301020403010204030102040901000400010104030102040301020403010204030102 +04020100040201000402010204330502000204190005042e010004580005040905010306 +000104090100040301010401010004010100040201000401010004020100040101000402 +010004080101040101000401010004020100040101000402010004010100040201000404 +010004020100040201000401010004020100043205020002041a0003042f010004580005 +040905010306000104090100040301000409010004010100040501000402010004080100 +040501000402010004010100040501000402010004040100040201000402010004010100 +04020100043205020002041b000104300100045800050409050103060001040901000403 +010004060103040101000405010404080100040501040401010004050104040401000403 +0100040001000402010404320502000204a8000504090501030600010409010004030100 +04050100040201000401010004050100040c010004050100040501000405010004080100 +04030100040001000402010004360502000204a800050409050103060001040901000403 +010004050100040201000401010004020100040101000402010004080100040501000402 +010004010100040201000401010004020100040401000404010004030100040201000432 +0502000204a8000504090501030600010409010004030100040601030402010204030102 +0409010004060102040301020403010204050100040401000404010204330502000204a8 +000504090501000804930502000204a80005040905000009049305020002041b0001048a +000504a805020002041a0003040c01040404010004120100044301020416000504a80502 +000204190005040b0100041c0100044501000416000504a8050200020418000204010002 +040a01000406010204020100040001010403010204020104040901020402010004000101 +0403010204020100040201000401010004000101040a0102040201000400010104050100 +0402010004020100040e000504a805020002041700020403000204090100040801000402 +010104010100040101000402010004030100040a01000402010004010101040101000401 +010004020100040101000402010004010101040101000408010004020100040101010401 +0100040401000402010004020100040e000504a805020002041600020405000204080103 +04050100040201000405010004070100040a010004050100040201000405010004010100 +040001000400010004010100040201000408010004020100040101000402010004040100 +0403010004010100040e000504a805020002041505020407050204070100040801000402 +01000406010204040100040b010204020100040201000402010304010100040001000400 +010004010100040201000408010004020100040101000402010004040100040301000401 +0100040e000504a805020002041605020405050204080100040801000402010004090100 +04030100040e010004010100040201000401010004020100040101000400010004000100 +040101000402010004080100040201000401010004020100040401000404010004000100 +040e000504a8050200020417050204030502040901000408010004020100040501000402 +010004030100040a01000402010004010101040101000401010004020100040101000400 +010004000100040101000402010004080100040201000401010004020100040401000404 +0101040f00050409000a04070104042701010418010004060100043a0502000204180502 +04010502040a010004080100040201000406010204050101040901020402010004000101 +040301030402010004000100040201000402010004090102040201000402010004040100 +04050100040f00050409000905000409010004280100041a010004420502000204190505 +043c010004390100040f0005040900010406050104090100040301000400010104030102 +0403010204030102040b0100040301000402010004010100040001010403010204020104 +0402010204030102040201000400010104030102042505020002041a0503043d01000436 +010004000100041000050409000104060501040901000403010104010100040101000402 +010004010100040201000401010004020100040801040401010004020100040101010401 +010004010100040201000403010004060100040201000402010004010101040101000401 +010004020100042405020002041b0501043e010004370100041100050409000104060501 +040901000403010004090100040101000405010004020100040a01000403010004020100 +040101000402010004010100040701000406010004020100040201000401010004020100 +0401010004280502000204a8000504090001040605010409010004030100040601030401 +010004050104040a01000403010004020100040101000402010004010100040701000406 +0100040201000402010004010100040201000402010204250502000204a8000504090001 +04060501040901000403010004050100040201000401010004050100040e010004030100 +040201000401010004020100040101000407010004060100040201000402010004010100 +040201000405010004240502000204a80005040900010406050104090100040301000405 +01000402010004010100040201000401010004020100040a010004030100040101010401 +010004020100040101000402010004030100040601000402010004020100040101000402 +0100040101000402010004240502000204a8000504090001040605010409010004030100 +040601030402010204030102040b01000404010104000100040101000402010004020102 +04050101040401000403010204020100040201000402010204250502000204a800050409 +0001050804930502000204a8000504090000050904930502000204a8000504a805020002 +04a8000504a80502000204a8000504a80502000204a8000504a80502000204a8000504a8 +0502000204a8000504a80502000204a8000504a80502000204a8000504a80502000204a8 +000504a80502000204a800050409000a040701040442010004420502000204a800050409 +00090500040901000444010004420502000204a800050409000104060501040901000403 +010004000101040301020403010204030102040a01020402010004020100040201020402 +0100040001010402010404020102043a0502000204a80005040900010406050104090100 +040301010401010004010100040201000401010004020100040101000402010004080100 +040201000401010004020100040101000402010004010101040101000403010004030100 +0402010004390502000204a8000504090001040605010409010004030100040901000401 +010004050100040201000408010004020100040101000402010004010100040201000401 +0100040201000403010004030100043d0502000204a80005040900010406050104090100 +040301000406010304010100040501040408010404020100040001000402010404010100 +040201000403010004040102043a0502000204a800050409000104060501040901000403 +010004050100040201000401010004050100040c01000406010004000100040201000405 +010004020100040301000407010004390502000204a80005040900010406050104090100 +040301000405010004020100040101000402010004010100040201000408010004020100 +040301000403010004020100040101000402010004030100040301000402010004390502 +00020408050a040701040408010004160100040401000420010204050100040901000429 +000504090001040605010409010004030100040601030402010204030102040a01020404 +01000404010204020100040201000404010104020102043a050200020408050900000409 +0100040a0100041c01000422010004100100042900050409000105080493050200020408 +050103060001040901000403010004000101040201000400010104030102040201000400 +01010403010204020104040901020402010004000101040c010004030102040201000400 +010104020100040101000426000504090000050904930502000204080501030600010409 +010004030101040101000401010104010100040101000402010004010101040101000404 +010004040100040a0100040201000401010104010100040b010004050100040201010401 +010004010100040001000427000504a80502000204080501030600010409010004030100 +0402010004010100040201000401010004020100040101000408010004040100040a0100 +040201000401010004020100040b01000405010004020100040201000401010104280005 +04a805020002040805010306000104090100040301000402010004010100040201000401 +0104040101000408010004040100040a0100040201000401010004020100040b01000405 +01000402010004020100040101010428000504a805020002040805010306000104090100 +0403010004020100040101000402010004010100040501000408010004040100040a0100 +040201000401010004020100040b01000405010004020100040201000401010004000100 +0427000504a8050200020408050103060001040901000403010004020100040101000402 +01000401010004020100040101000408010004040100040a010004020100040101000402 +0100040b010004050100040201000402010004010100040101000426000504a805020002 +040805010306000104070104040101000402010004010100040201000402010204020100 +0408010004050101040901020402010004020100040b0100040501000402010004020100 +04010100040201000425000504a8050200020408050100080494000504a8050200020408 +050000090494000504a80502000204a8000504a80502000204a8000504a80502000204a8 +000504a80502000204a8000504a80502000204a8000504a805020002041b0501048a0005 +04a805020002041a0503040e01000404010204030102040a01020405010004090100044a +000504a80502000204190505040d01000406010004050100040c010004100100044a0005 +04a8050200020418050203010502040b0100040001000405010004050100040c01000403 +010204020100040001010402010004010100040301020440000504a80502000204170502 +03030502040a0100040001000405010004050100040c0100040501000402010104010100 +04010100040001000403010004020100043f000504a80502000204160502030505020409 +0100040001000405010004050100040c0100040501000402010004020100040101010404 +01000443000504a805020002041500020307000204070100040201000404010004050100 +040c010004050100040201000402010004010101040501020440000504a8050200020416 +000203050002040801040404010004050100040c01000405010004020100040201000401 +01000400010004070100043f000504a80502000204170002030300020409010004020100 +0404010004050100040c0100040501000402010004020100040101000401010004020100 +04020100043f000504a8050200020418000203010002040a010004020100040401000405 +0100040c01000405010004020100040201000401010004020100040201020440000504a8 +05020002041900050488000504a805020002041a00030489000504a805020002041b0001 +048a000504a80502000204a8000504a80502000204a8000504a80502000204a8000504a8 +0502000204a8000504a80502000204a8000504a805020002041b0001048a000504a80502 +0002041a0003040c01040404010004120100040b01020405010004090100041b0102041d +000504a80502000204190005040b0100041c0100040d010004100100041d0100041d0005 +04a8050200020418000204010002040a0100040601020402010004000101040301020402 +0104040b01000403010204020100040001010402010004010100040a0102040201000400 +01010405010004020100040201000415000504a805020002041700020403000204090100 +040801000402010104010100040101000402010004030100040d01000405010004020101 +040101000401010004000100040a01000402010004010101040101000404010004020100 +040201000415000504a80502000204160002040500020408010304050100040201000405 +010004070100040d010004050100040201000402010004010101040b0100040201000401 +0100040201000404010004030100040101000415000504a8050200020415050204070502 +0407010004080100040201000406010204040100040d0100040501000402010004020100 +04010101040b010004020100040101000402010004040100040301000401010004150005 +04a80502000204160502040505020408010004080100040201000409010004030100040d +01000405010004020100040201000401010004000100040a010004020100040101000402 +01000404010004040100040001000415000504a805020002041705020403050204090100 +0408010004020100040501000402010004030100040d0100040501000402010004020100 +040101000401010004090100040201000401010004020100040401000404010104160005 +04a8050200020418050204010502040a010004080100040201000406010204050101040b +010004050100040201000402010004010100040201000409010204020100040201000404 +0100040501000416000504a80502000204190505047001000416000504a805020002041a +0503046e0100040001000417000504a805020002041b0501047001000418000504a80502 +000204a8000504a80502000204a8000504a80502000204a8000504a80502000204a80005 +04a80502000204a8000504a80502000204a8000504a80502000204a8000504a805020002 +04a8000504a80502000204a8000504a80502000204a8000504a80502000204a8000504a8 +0502000204a8000504a80502000204a8000505ab000205a8000405ac000105a9000305ad +000005aa00ff00ff00ff00ff001f04ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff04570005040f01040434010004130100041a01000406010004d3 +0005041101000436010004130100041a010004db00050411010004030100040001010403 +01020403010204030102040a010204020100040201000401010404010100040001010402 +010004020100040101040409010204020100040001010402010404020102040301020402 +010004000101040301020404010104b70005041101000403010104010100040101000402 +010004010100040201000401010004020100040801000402010004010100040201000403 +01000403010104010100040101000402010004030100040a010004020100040101010401 +010004030100040601000402010004020100040101010401010004010100040201000403 +010104b70005041101000403010004090100040101000405010004020100040801000402 +01000401010004020100040301000403010004020100040101000402010004030100040a +010004020100040101000402010004030100040601000402010004020100040101000402 +01000401010004c100050411010004030100040601030401010004050104040801000402 +01000401010004020100040301000403010004020100040101000402010004030100040a +010004020100040101000402010004030100040601000402010004020100040101000402 +01000402010204be0005041101000403010004050100040201000401010004050100040c +010004020100040101000402010004030100040301000402010004010100040201000403 +0100040a0100040201000401010004020100040301000406010004020100040201000401 +0100040201000405010004bd000504110100040301000405010004020100040101000402 +010004010100040201000408010004020100040101000401010104030100040301010401 +0100040101000401010104030100040a0100040201000401010104010100040301000406 +01000402010004020100040101000402010004010100040201000403010104b700050411 +010004030100040601030402010204030102040a01020403010104000100040401010401 +010004000101040301010400010004040101040901020402010004000101040501010404 +0100040301020402010004020100040201020404010104b70005044e01000421010004e4 +0005044e01000421010004e40005044e01000421010004e4000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff045700050416050104ff043e000504150503040c010404190100 +040d010004ff0401000504140505040d0100042a010004ff040100050413050203010502 +040c01000403010004000101040901000402010004020102040201000400010104030101 +0400010004020102040201000402010004f300050412050203030502040b010004030101 +040101000408010004020100040401000402010104010100040101000401010104010100 +04020100040101000402010004f300050411050203050502040a01000403010004020100 +040801000400010004000100040401000402010004020100040101000402010004010100 +0402010004010100040001000400010004f3000504100002030700020409010004030100 +040201000408010004000100040001000404010004020100040201000401010004020100 +040101000402010004010100040001000400010004f300050411000203050002040a0100 +040301000402010004080100040001000400010004040100040201000402010004010100 +04020100040101000402010004010100040001000400010004f300050412000203030002 +040b01000403010004020100040801000400010004000100040401000402010004020100 +0401010004010101040101000402010004010100040001000400010004f3000504130002 +03010002040a010404010100040201000409010004000100040501000402010004020100 +040201010400010004020102040301000400010004f400050414000504ff043c00050415 +000304ff043d00050416000104ff043e000504ff0457000504ff0457000504ff04570005 +04ff0457000504ff0457000504ff040600470408000504ff040600460500040800050467 +058d0410000104430501040800050467058c000004100001044305010408000504670501 +048900010410000104430501040800050467050104890001041000010443050104080005 +04160001044e0501048900010410000104070602043805010408000504150003040c0104 +041201010404010004030102041905010489000104100001040706000401060004370501 +0408000504140005040d010004130100040d010004190501048900010410000104070600 +040106000402060004000601040306020402060004020600040206020403060204140501 +040800050413000204010002040c010004040102040b0100040401020405010004030102 +041205010489000104100001040706000401060004020601040106000401060004020600 +040106000402060004010600040206000401060004020600041305010408000504120002 +04030002040b010004030100040201000408010404040100040501000402010004020100 +041105010489000104100001040706030402060004050600040206000401060004000600 +0400060004010600040506000402060004130501040800050411000204050002040a0100 +0403010004020100040a0100040601000405010004020100040201000411050104890001 +041000010407060004020600040106000405060004020600040106000400060004000600 +040206020402060404130501040800050410050204070502040901000403010004020100 +040a01000406010004050100040201040411050104890001041000010407060004020600 +040106000405060004020600040106000400060004000600040506000401060004170501 +040800050411050204050502040a01000403010004020100040a01000406010004050100 +040201000415050104890001041000010407060004020600040106000405060004020600 +040106000400060004000600040106000402060004010600040206000403060104040601 +040406010501040800050412050204030502040b01000403010004020100040a01000406 +010004050100040201000402010004110501048900010410000104070603040206000406 +060204030600040006000403060204030602040406010404060104040601050104080005 +0413050204010502040c010004040102040b010004060100040501000403010204120501 +0489000104100001044305010408000504140505044c0501048900010410000104430501 +0408000504150503044d05010489000104100001044305010408000504160501044e0501 +048900010410000104430501040800050467050104890001041000010443050104080005 +04670501008b04100001044305010408000504670500008c041000010443050104080005 +04ff0406000105450408000504ff0406000005460408000504ff0457000504ff04570005 +04ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff04570005 +04ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff04570005 +04ff0457000504ff0457000504ff0457000505ff0557000405ff0558000305ff055900ff +00ff00ff00ff001f04ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff04570005044c003b044b003b04460005044c003a +0500044b003a050004460005044c000104370501044b00010437050104460005044c0001 +04370501044b00010437050104460005044c000104370501044b00010437050104460005 +044c000104370501044b00010437050104460005044c000104370501044b000104370501 +04460005044c000104370501044b00010437050104460005044c000104370501044b0001 +0437050104460005044c000104150102040201000402010004160501044b000104070102 +041f01020409050104460005044c00010414010004020100040101000401010004170501 +044b00010406010004020100042001000409050104460005044c00010414010004020100 +040101000400010004180501044b00010406010004020100040201020402010004000101 +0403010204030102040501000409050104460005044c0001041401000402010004010101 +04190501044b000104060100040501000402010004010101040101000401010004020100 +0401010004020100040401000409050104460005044c0001041401000402010004010100 +0400010004180501044b0001040601000409010004010100040201000401010004050100 +04020100040401000409050104460005044c000104140100040201000401010004010100 +04170501044b000104060100040601030401010004020100040101000405010404040100 +0409050104460005044c00010414010004020100040101000401010004170501044b0001 +040601000402010004010100040201000401010004020100040101000405010004080100 +0409050104460005044c00010414010004020100040101000402010004160501044b0001 +040601000402010004010100040201000401010004020100040101000402010004010100 +04020100040401000409050104460005044c000104150102040201000402010004160501 +044b00010407010204030103040101000402010004020102040301020405010004090501 +04460005044c000104370501044b00010437050104460005044c000104370501044b0001 +0437050104460005044c000104370501044b00010437050104460005044c000104370501 +044b00010437050104460005044c000104370501044b00010437050104460005044c0001 +04370501044b00010437050104460005044c000104370501044b00010437050104460005 +044c000104370501044b00010437050104460005044c000104370501044b000104370501 +04460005044c000104370501044b00010437050104460005044c00010539044b00010539 +04460005044c0000053a044b0000053a0446000504ff0457000504ff0457000504ff0457 +000504ff0457000504ff0457000504ff045700010500000204ff045700000501000204ff +0457 +%%EndData +end +%%PageTrailer +%%Trailer +%%BoundingBox: 0 53 250 318 +%%EOF |