[comp.sources.amiga] v89i076: iff2ps - iff to postscript converter v2.0

page@swan.ulowell.edu (Bob Page) (03/17/89)

Submitted-by: paolucci%snll-arpagw.llnl.gov@lll-lcc.llnl.gov (Sam Paolucci)
Posting-number: Volume 89, Issue 76
Archive-name: iff/iff2ps20.1

This is the latest version of iff2ps, a complete rewrite from the
earlier versions.  Iff2ps takes an IFF ILBM file as input and produces
a PostScript file that may be sent to a PostScript printer for
printing.

[This is *NOT* the same as the 'ifftops' recently posted here.
uuencoded executable included. 'psclear.uu' must also be uudecoded.
the 'cat'-able man page (iff2ps.1.cat) has some backspace characters
in it; I'm letting it go as is rather than my usual policy of editing
them out or uuencoding the file.  If the file gets t oyour site
without the backspaces, please drop me a note.  ..Bob]

#	This is a shell archive.
#	Remove everything above and including the cut line.
#	Then run the rest of the file through sh.
#----cut here-----cut here-----cut here-----cut here----#
#!/bin/sh
# shar:    Shell Archiver
#	Run the following text with /bin/sh to create:
#	README
#	ehandler.ps
#	iff2ps.1
#	iff2ps.1.cat
#	iff2ps.1.ps
#	iff2ps.uu
#	psclear.uu
# This archive created: Thu Mar 16 14:34:20 1989
cat << \SHAR_EOF > README
				IFF2PS 2.0
				----------

This is the latest version of iff2ps.  Iff2ps takes an IFF ILBM file
as input and produces a PostScript file that may be sent to a
PostScript printer (e.g., an Apple LaserWriter) for printing.  The
image portion in the PostScript file is compressed.  Decompression is
done by the PostScript interpreter within the printer.  If no files
are given on the command line, the standard input is read, and the
standard output is written to.  If only one file is given on the
command line, then that file must be an IFF file, and the standard
output is written to.  Note that you cannot specify a PostScript
output file and have standard input read.  The output file conforms to
the Adobe 2.0 file structuring conventions.  Command line flags may
appear before or after the file names.  All command switches are
documented in the accompanying manual pages.  Besides the troff
source, we have enclosed also the nroff output, and the PostScript
output of troff for people who want a nice listing of it. 

This is a complete rewrite from the earlier versions.  For a little
history, earlier versions were written in FORTRAN, and because of
language limitations it had quite a few restrictions.  The current
version has been completely rewritten in C.  The resulting executable
is approximately half the size, it runs about twice as fast, and
because of PostScript compression, it generally produces PostScript
files that are much smaller.  Furthermore, it has quite a few
additional capabilities that can be specified with the command line
arguments.  It now handles any ILBM format: the image in the IFF
file can be any size, can have any number of bitplanes, and all CAMG
view modes are supported (i.e., low resolution, high resolution,
interlace, HAM, double playfield, and HALFBRITE).  However, it is
noted that currently double playfield files are not printed quite
correctly since both fields are printed on top of each other. 

As a side note, the largest IFF file that we tested it on was
2400x1600 pixels having 5 bitplanes.  The resulting PostScript file
was approximately 5 megabytes, and it took 2.5 hours to process it on
an Apple LaserWriter.  Can anybody top that? 

Finally, we note that iff2ps is copyrighted by William Mason and
Samuel Paolucci.  We do not intend the copyright to be a hindrance on
its distribution.  Basically the program can be freely redistributed
provided the documentation accompanies the program, and is not
included with any commercial software without the authors' written
consent.  Furthermore, the program is distributed WITHOUT ANY
WARRANTY. 

Also included in the directory are two useful files.  If you are lucky
enough to have a PostScript laser printer tied directly to your Amiga,
you should download ehandler.ps into the printer once and only once,
preferably from within your startup-sequence.  In the case you should
send a file to the printer which contains an error, this file, which
is an official Adobe error handler, will generate an error
description.  The second file, psclear, should be downloaded into the
laser printer when the printer seems to just be waiting for more
information AND you have not used ehandler.ps.  This file will send an
end-of-file to the laser printer. 

Any questions or comments regarding iff2ps may be directed to

		Dr. William Mason
		1709 Timberlake Circle
		Lodi, CA  95242

			or

		Dr. Samuel Paolucci
		1351 Roselli Dr.
		Livermore, CA 94550

		ARPA:	paolucci@snll-arpagw.llnl.gov
SHAR_EOF
cat << \SHAR_EOF > ehandler.ps
%!PS-Adobe-2.0
% ehandler.ps -- Downloaded Error Break-page handler
% Copyright (c) 1984, 1985, 1986  Adobe Systems Incorporated.
% All Rights Reserved.

0000 % exitserver password
/$brkpage where { %ifelse
	pop pop
	(Error Handler in place - not loaded again\n)
	print flush stop
}{ %else
	dup serverdict begin
	statusdict begin checkpassword { %ifelse
		(Error Handler downloaded.\n)print flush
		exitserver
	}{ %else
		pop
		(Bad Password on loading error handler!!!\n)
		print flush stop
	} ifelse
} ifelse
/$brkpage 64 dict def $brkpage begin
/prnt { %def
	dup type /stringtype ne { =string cvs } if
	dup length 6 mul
	/tx exch def /ty 10 def
	currentpoint /toy exch def /tox exch def
	1 setgray newpath
	tox toy 2 sub moveto
	0 ty rlineto tx 0 rlineto
	0 ty neg rlineto
	closepath fill
	tox toy moveto 0 setgray show
} bind def
/nl { %def
	currentpoint exch pop lmargin exch moveto
	0 -10 rmoveto
} def
/== { /cp 0 def typeprint nl } def
/typeprint {
	dup type dup currentdict exch known {exec}{
		unknowntype
	} ifelse
} readonly def
/lmargin 72 def /rmargin 72 def
/tprint { %def
	dup length cp add rmargin gt { nl /cp 0 def } if
	dup length cp add /cp exch def
	prnt
} readonly def
/cvsprint { =string cvs tprint ( ) tprint } readonly def
/unknowntype { %def
	exch pop cvlit (??) tprint cvsprint
} readonly def
/integertype { cvsprint } readonly def
/realtype { cvsprint } readonly def
/booleantype { cvsprint } readonly def
/operatortype { (//) tprint cvsprint } readonly def
/marktype { pop (-mark- ) tprint } readonly def
/dicttype { pop (-dictionary- ) tprint } readonly def
/nulltype { pop (-null- ) tprint } readonly def
/filetype { pop (-filestream- ) tprint } readonly def
/savetype { pop (-savelevel- ) tprint } readonly def
/fonttype { pop (-fontid- ) tprint } readonly def
/nametype { %def
	dup xcheck not { (/) tprint } if cvsprint
} readonly def
/stringtype { %def
	dup rcheck { %ifelse
		(\() tprint tprint (\)) tprint
	}{ %else
		pop (-string- ) tprint
	} ifelse
}readonly def
/arraytype { %def
	dup rcheck { %ifelse
		dup xcheck { %ifelse
			({) tprint { typeprint } forall (}) tprint
		}{ %else
			([) tprint { typeprint } forall (]) tprint
		} ifelse
	}{ %else
		pop (-array- ) tprint
	} ifelse
} readonly def
/packedarraytype { %def
	dup rcheck { %ifelse
		dup xcheck { %ifelse
			({) tprint { typeprint } forall (}) tprint
		}{ %else
			([) tprint { typeprint } forall (]) tprint
		} ifelse
	}{ %else
		pop (-packedarray- ) tprint
	} ifelse
} readonly def
/courier /Courier findfont 10 scalefont def
/OLDhandleerror errordict /handleerror get def
end %$brkpage

/handleerror { %put
	systemdict begin $error begin $brkpage begin
	newerror { %ifelse
		/newerror false store
		vmstatus pop pop 0 ne { grestoreall } if
		initgraphics courier setfont
		lmargin 720 moveto (ERROR: ) prnt
		errorname prnt
		nl (OFFENDING COMMAND: ) prnt
		/command load prnt
		$error /ostack known { %if
			nl nl (STACK:) prnt nl nl
			$error /ostack get aload length { == } repeat
		} if
		systemdict /showpage get exec
		/newerror true store
		/OLDhandleerror load end end end exec
	}{ %else
		end end end
	} ifelse
}
dup 0 systemdict put   % replace name by actual dict object
dup 4 $brkpage put     % replace name by dict object
bind readonly

errordict 3 1 roll put % put proc in errordict as /handleerror
SHAR_EOF
cat << \SHAR_EOF > iff2ps.1
.\" Copyright (c) 1987, 1988 William Mason and Samuel Paolucci.
.\" All rights reserved.
.\"
.TH iff2ps 1 "October 31, 1988"
.SH NAME
iff2ps \- IFF to PostScript filter
.SH SYNTAX
.B iff2ps
[ options ] [ IFFfile [ PSfile ] ]
.SH DESCRIPTION
The
.B iff2ps
command takes an IFF ILBM file as input and produces a PostScript file
that may be sent to a PostScript printer (e.g., an Apple LaserWriter)
for printing.  The image portion in the PostScript file is compressed.
Decompression is done by the PostScript interpreter within the
printer.  If no files are given on the command line, the standard
input is read, and the standard output is written to.  If only one
file is given on the command line, then that file must be an IFF file,
and the standard output is written to.  Note that you cannot specify a
PostScript output file and have standard input read.  The output file
conforms to the Adobe 2.0 file structuring conventions.  The options
may appear before or after the file names. 
.PP
The program correctly handles any ILBM format.  Specifically, the
image in the IFF file can be any size, can have any number of
bitplanes, and all CAMG view modes are supported (i.e., low
resolution, high resolution, interlace, HAM, double playfield, and
HALFBRITE).  However, it is noted that currently double playfield
files are not printed quite correctly since both fields are printed on
top of each other. 
.PP
The following options may be used to control the formatting of the image.
.TP 10
.BI \-a
Append output to a previously produced PostScript file.  This options
allows the placement of multiple images on the same output page.  The
default is FALSE.
.TP 10
.BI \-c n
Number of copies.  The practical upper limit on the number of copies
is governed by the number of sheets which the printer paper tray will
hold.  If you want multiple copies of the same image, use this option
instead of running
.B iff2ps
multiple times as it is orders of magnitude faster.  The default value
is 1. 
.TP 10
.BI \-e
This option enables echoing of the translation progress.  The default
is FALSE.
.TP 10
.BI \-f
Use this option if the output file if to be encapsulated and used by
some other application which can import PostScript images.  The default
is FALSE.
.TP 10
.BI \-g n
Number of gray shades to be used in the half-toned image.  There are
only four possible values for the number of gray shades: 2, 4, 16,
256.  If this option is omitted, the next number greater than or equal
to the number of colors in the IFF file will be used.  For example: a
320 by 200 pixel by 5 bit planes (32 colors) picture would default to
256 gray shades while a 640x400x4 (16 color) image would default to 16
gray shades.  If an image contains a pure white color, it will be
rendered as pure white in the half-toned print.  To obtain a
half-toned white (99 percent of pure white) instead of pure white,
enter the number of gray shades as a negative number.  Special effects
(and smaller output files) can be obtained by choosing fewer gray
shades than the numbers of colors in the original picture.  Choosing 2
shades will result in a high contrast image while choosing 4 shades
for a picture with greater than 4 colors will result in a posterized
effect. 
.TP 10
.BI \-n
Negative image.  Can be used with any number of gray shades.  The
default is FALSE. 
.TP 10
.BI \-p
The image is printed in portrait mode if this option is selected.  The
default is FALSE in which case the image is printed in landscape mode. 
.TP 10
.BI \-r n
This option specifies the rotation angle.  The image is rotated
.I n
degrees counterclockwise.  The default is 0 degrees.
.TP 10
.BI \-s n, \-t n
These options specify the x and y coordinate scales in printer Points
(72 Points = 1 inch).  The defaults are 0, in which case the scales
are automatically chosen so as to give the largest image for the
current format. 
.TP 10
.BI \-x n, \-y n
These options enable the placement of the coordinate origin at a
specified location given in printer Points.  The defaults are such as
to give a centered image on the page regardless of the current format. 
.TP 10
.BI \?
This option will echo the command format to the screen.
.PP
Defaults for all command line arguments can be specified in the
configuration file iff2ps.cfg which should be placed in S:.  If
.B iff2ps
is run and a configuration file exists, then it is read to set up the
program's defaults.  Switches on the command line, though, will always
override the configuration switches.  The configuration file consists
of lines in which the initial character in each line specifies the
command.  If the initial character is a space, an asterisk, a pound
sign, a semicolon, or a line feed, the line is ignored.  This makes it
useful for commenting the file.  White space following the command is
optional.  Comments can also be placed on the individual lines after
the complete command is specified. 
.SH DIAGNOSTICS
If the IFF ILBM file makes use of a specific Amiga view mode such as
HAM, HALFBRITE, or dual playfield, a CAMG chunk should be present in
the file.  If it is not present, then
.B iff2ps
must guess the the view mode.  In most circumstances
.B iff2ps
will make the right guess and echo ``No CAMG chunk! Guessing
ViewModes.'' to the screen.  If such files were generated by a
commercial program, the user is highly encouraged to contact the
distributor of the software product and complain about the improper
IFF file generated.  Only through such efforts can we hope to see
better software on the Amiga. 
.SH BUGS
Dual playfield files are printed incorrectly.  Both fields are printed
on top of each other without masking.
.SH FILES
.DT
\&iff2ps.cfg	configuration file
.SH "SEE ALSO"
.DT
\&tek2ps(1)
.SH COPYRIGHT
Copyright (c) 1987, 1988 William Mason and Samuel Paolucci.  All
rights reserved.  This program can be freely redistributed provided
the documentation accompanies the program, and is not included with
any commercial software without the authors' written consent.  This
program is distributed WITHOUT ANY WARRANTY. 
.SH AUTHORS
William Mason and Samuel Paolucci.  Special thanks to Tomas Rokicki
for allowing us to use his PostScript compression routine. 


SHAR_EOF
cat << \SHAR_EOF > iff2ps.1.cat



iff2ps(1)                 USER COMMANDS                 iff2ps(1)



NAME
     iff2ps - IFF to PostScript filter

SYNTAX
     iff2ps [ options ] [ IFFfile [ PSfile ] ]

DESCRIPTION
     The iff2ps command takes an IFF ILBM file as input and  pro-
     duces  a  PostScript  file  that may be sent to a PostScript
     printer (e.g., an  Apple  LaserWriter)  for  printing.   The
     image   portion   in  the  PostScript  file  is  compressed.
     Decompression is done by the PostScript  interpreter  within
     the printer.  If no files are given on the command line, the
     standard input is read, and the standard output  is  written
     to.   If  only  one  file is given on the command line, then
     that file must be an IFF file, and the  standard  output  is
     written  to.  Note that you cannot specify a PostScript out-
     put file and have standard input read.  The output file con-
     forms  to  the  Adobe 2.0 file structuring conventions.  The
     options may appear before or after the file names.

     The program correctly handles  any  ILBM  format.   Specifi-
     cally,  the  image in the IFF file can be any size, can have
     any number of bitplanes, and all CAMG view  modes  are  sup-
     ported  (i.e.,  low  resolution, high resolution, interlace,
     HAM, double playfield, and HALFBRITE).  However, it is noted
     that  currently double playfield files are not printed quite
     correctly since both fields  are  printed  on  top  of  each
     other.

     The following options may be used to control the  formatting
     of the image.

     -a        Append output to a previously produced  PostScript
               file.  This options allows the placement of multi-
               ple images on the same output page.   The  default
               is FALSE.

     -c_n       Number of copies.  The practical  upper  limit  on
               the  number of copies is governed by the number of
               sheets which the printer paper tray will hold.  If
               you  want  multiple  copies of the same image, use
               this option instead  of  running  iff2ps  multiple
               times  as  it  is orders of magnitude faster.  The
               default value is 1.

     -e        This option enables  echoing  of  the  translation
               progress.  The default is FALSE.

     -f        Use this option if the output file if to be encap-
               sulated  and  used by some other application which
               can import  PostScript  images.   The  default  is



Sun Release 3.5   Last change: October 31, 1988                 1






iff2ps(1)                 USER COMMANDS                 iff2ps(1)



               FALSE.

     -g_n       Number of gray shades to be used in the half-toned
               image.   There  are  only four possible values for
               the number of gray shades: 2, 4, 16, 256.  If this
               option is omitted, the next number greater than or
               equal to the number of colors in the IFF file will
               be used.  For example: a 320 by 200 pixel by 5 bit
               planes (32 colors) picture would  default  to  256
               gray  shades  while  a  640x400x4 (16 color) image
               would default to 16 gray shades.  If an image con-
               tains  a  pure white color, it will be rendered as
               pure white in the half-toned print.  To  obtain  a
               half-toned   white  (99  percent  of  pure  white)
               instead of pure white, enter the  number  of  gray
               shades as a negative number.  Special effects (and
               smaller output files) can be obtained by  choosing
               fewer  gray  shades  than the numbers of colors in
               the original  picture.   Choosing  2  shades  will
               result  in  a high contrast image while choosing 4
               shades for a picture with greater  than  4  colors
               will result in a posterized effect.

     -n        Negative image.  Can be used with  any  number  of
               gray shades.  The default is FALSE.

     -p        The image is printed  in  portrait  mode  if  this
               option is selected.  The default is FALSE in which
               case the image is printed in landscape mode.

     -r_n       This option specifies  the  rotation  angle.   The
               image  is rotated _n degrees counterclockwise.  The
               default is 0 degrees.

     -s_n,-t_n   These options  specify  the  x  and  y  coordinate
               scales  in  printer  Points  (72 Points = 1 inch).
               The defaults are 0, in which case the  scales  are
               automatically  chosen  so  as  to give the largest
               image for the current format.

     -x_n,-y_n   These options enable the placement of the  coordi-
               nate  origin  at  a  specified  location  given in
               printer Points.  The defaults are such as to  give
               a  centered  image  on  the page regardless of the
               current format.

     ?         This option will echo the command  format  to  the
               screen.

     Defaults for all command line arguments can be specified  in
     the  configuration file iff2ps.cfg which should be placed in
     S:.  If iff2ps is run and a configuration file exists,  then



Sun Release 3.5   Last change: October 31, 1988                 2






iff2ps(1)                 USER COMMANDS                 iff2ps(1)



     it  is  read  to set up the program's defaults.  Switches on
     the command line, though, will always  override  the  confi-
     guration switches.  The configuration file consists of lines
     in which the initial character in each  line  specifies  the
     command.   If the initial character is a space, an asterisk,
     a pound sign, a semicolon, or  a  line  feed,  the  line  is
     ignored.   This  makes  it  useful  for commenting the file.
     White space following the command is optional.  Comments can
     also  be  placed  on the individual lines after the complete
     command is specified.

DIAGNOSTICS
     If the IFF ILBM file makes use of a specific Amiga view mode
     such  as  HAM,  HALFBRITE,  or  dual playfield, a CAMG chunk
     should be present in the file.  If it is not  present,  then
     iff2ps  must guess the the view mode.  In most circumstances
     iff2ps will make the right guess and echo ``No  CAMG  chunk!
     Guessing  ViewModes.''  to  the  screen.  If such files were
     generated by  a  commercial  program,  the  user  is  highly
     encouraged  to  contact the distributor of the software pro-
     duct and complain about the  improper  IFF  file  generated.
     Only through such efforts can we hope to see better software
     on the Amiga.

BUGS
     Dual playfield files are printed incorrectly.   Both  fields
     are printed on top of each other without masking.

FILES
     iff2ps.cfg     configuration file

SEE ALSO
     tek2ps(1)

COPYRIGHT
     Copyright (c) 1987, 1988 William Mason and Samuel  Paolucci.
     All  rights  reserved.  This program can be freely redistri-
     buted provided the documentation  accompanies  the  program,
     and is not included with any commercial software without the
     authors'  written  consent.   This  program  is  distributed
     WITHOUT ANY WARRANTY.

AUTHORS
     William Mason and Samuel Paolucci.  Special thanks to  Tomas
     Rokicki  for  allowing  us to use his PostScript compression
     routine.









Sun Release 3.5   Last change: October 31, 1988                 3



SHAR_EOF
cat << \SHAR_EOF > iff2ps.1.ps
%!PS-Adobe-1.0
%%Creator: waterworks:paolucci (Sam Paolucci)
%%Title: stdin
%%CreationDate: Tue Nov  1 13:33:51 1988
%%DocumentFonts: Times-Roman Times-Italic Times-Bold Symbol Times-Roman
%%Pages: (atend)
%%EndComments
% lib/pscat.pro -- prolog for pscat (troff) files
% Copyright (C) 1985 Adobe Systems, Inc.
% Added defs for Manual Feed 
save /pscatsave exch def
/$pscat 50 dict def
$pscat begin
/fm [1 0 0 1 0 0] def
/xo 0 def /yo 0 def
/M /moveto load def
/R /show load def
/S {exch currentpoint exch pop moveto show}def
/T {exch currentpoint pop exch moveto show}def
/U {3 1 roll moveto show}def
/siz 0 def
/font 0 def
/Z {/siz exch def SF}def
/F {/font exch def SF}def
/SF{font 0 ne
    {catfonts font 1 sub get fm 0 siz put fm 3 siz neg put 
     fm makefont setfont}if}def
/BP{save/catsv exch def 0 792 translate 72 432 div dup neg scale 
  xo yo translate 0 0 moveto}def
/BPL{save/catsv exch def 72 8.25 mul 792 translate -90 rotate
  72 432 div dup neg scale xo yo translate 0 0 moveto}def
/EP{catsv restore showpage}def
/SetStTime{statusdict /manualfeedtimeout 120 put} def
/SetStatus{statusdict /manualfeed true put
   statusdict /product get (LaserWriter) eq 
   {version (23.0) eq  % Don't redefine EP if printer is not "Classic LW"
     {/EP {catsv restore
	 {statusdict /printerstatus get exec 16#22000000 and 0 eq{exit}if}loop
	 showpage}def}if }if}def
% definitions for PPROC callback functions
% each PPROC is called with the following number on the stack:
% pointsize charcode railmag pswidth pschar x y wid
/$pprocs 50 dict def
/fractm [.65 0 0 .6 0 0] def
% fractions
/PS1{gsave $pprocs begin
    /wid exch def pop pop pop pop pop /ch exch def /size exch def
    /pair $pprocs ch get def /cf currentfont def
    cf fractm makefont setfont
    0 .3 size mul 6 mul 2 copy neg rmoveto pair 0 get show rmoveto
    currentfont cf setfont (\244) show setfont
    pair 1 get show grestore wid .06 div 0 rmoveto end}def
$pprocs begin
8#34 [(1)(4)] def
8#36 [(1)(2)] def
8#46 [(3)(4)] def
end
% boxes
/PS2{gsave /wid exch def pop pop /char exch def pop pop pop /size exch def
    /len size 3.5 mul def % length of a side
    len 0 rlineto 0 len neg rlineto len neg 0 rlineto closepath
    char 3 eq {fill}{size 5 mul .07 mul setlinewidth stroke}ifelse
    grestore wid .06 div 0 rmoveto}def
/PS3/PS2 load def		% boxes are the same...
% circle
/PS4{gsave /wid exch def pop pop pop pop pop pop /size exch def
    wid .8333 mul size 2.5 mul neg rmoveto currentpoint	% center
    newpath size 1.8 mul 0 360 arc size .2 mul setlinewidth stroke
    grestore wid .06 div 0 rmoveto}def
/bb{$pprocs begin /wid exch def pop pop pop pop pop pop /size exch 6 mul def
    /s2 size 2 div def /s4 size 4 div def gsave 
    currentpoint newpath transform round exch round exch itransform translate
    size 16 div setlinewidth 2 setlinejoin 0 setgray}def
$pprocs begin
/mrr{moveto rlineto rlineto}def
/be{stroke grestore wid .06 div 0 rmoveto end}def
end
% leftfloor
/PS6 {bb s4 0 0 size s4 size -.8 mul mrr be}def
% rightfloor
/PS7 {bb s4 neg 0 0 size s4 size -.8 mul mrr be}def
% leftceil
/PS8 {bb s4 0 0 size neg s4 size .2 mul mrr be}def
% rightceil
/PS9 {bb s4 neg 0 0 size neg s4 size .2 mul mrr be}def
% boldvert
/PS5 {bb 0 0 0 size neg s4 size .2 mul mrr be}def
% box rule
/PS32 {bb /sw size 24 div def sw 2 div size 4.5 div moveto
       0 size neg rlineto sw setlinewidth be}def
% rule (roman, bold and italic)
/PS16 {gsave $pprocs begin
    /wid exch def pop pop pop pop pop pop /size exch 6 mul def
    /sw size 14 div def currentpoint exch sw 2 div sub exch
    newpath transform round exch round exch itransform translate
    0 0 moveto size 2 div 0 rlineto sw setlinewidth be}def
% lefttopcurl    
/PS20 {bb s4 size .2 mul moveto 0 size -.55 mul rlineto currentpoint 
    pop size -.8 mul 2 copy exch s4 add exch s4 arcto pop pop pop pop be}def
% leftbotcurl
/PS21 {bb s4 size -.8 mul moveto 0 size .55 mul rlineto currentpoint 
    pop size .2 mul 2 copy exch s4 add exch s4 arcto pop pop pop pop be}def
% righttopcurl
/PS22 {bb s4 size .2 mul moveto 0 size -.55 mul rlineto currentpoint
     pop size -.8 mul 2 copy exch s4 sub exch s4 arcto pop pop pop pop be}def
% rightbotcurl
/PS23 {bb s4 size -.8 mul moveto 0 size .55 mul rlineto currentpoint
     pop size .2 mul 2 copy exch s4 sub exch s4 arcto pop pop pop pop be}def
% rightmidcurl
/PS25 {bb /s3 size -.3 mul def s4 size -.8 mul moveto s4 s3 s2 s3
    s4 arcto pop pop size add s4 s3 4 2 roll
    s4 arcto pop pop pop pop s4 size .2 mul lineto be}def
% leftmidcurl
/PS24 {bb /s3 size -.3 mul def s4 size -.8 mul moveto s4 s3 0 s3
    s4 arcto pop pop size add s4 s3 4 2 roll s4 arcto pop pop pop pop 
    s4 size .2 mul lineto be}def
/xo 216 def /yo 0 def
/catfonts [
	/Times-Roman findfont
	/Times-Italic findfont
	/Times-Bold findfont
	/Symbol findfont
	/Times-Roman findfont
	] def
%%EndProlog
%%Page: ? 1
BP
1 F
60 Z
270 381(iff2)U
359(p)S
391(s)S
426(\()S
463(1)S
505(\))S
1389(U)S
1437(SE)S
1510(R)S
1575(C)S
1618(OM)S
1721(M)S
1779(A)S
1827(N)S
1875(D)S
1925(S)S
2816(iff2)S
2905(p)S
2937(s)S
2972(\()S
3009(1)S
3051(\))S
3 F
54 Z
270 669(N)U
315(A)S
357(M)S
411(E)S
1 F
60 Z
486 741(iff2)U
575(p)S
607(s)S
652(\261)S
732(I)S
754(F)S
792(F)S
850(t)S
870(o)S
923(P)S
960(o)S
993(st)S
1038(Scr)S
1121(ip)S
1170(t)S
1210(\256l)S
1262(t)S
1282(e)S
1312(r)S
3 F
54 Z
270 840(S)U
305(Y)S
347(N)S
392(T)S
430(A)S
472(X)S
60 Z
486 912(i)U
506(ff)S
544(2)S
576(ps)S
1 F
657([)S
700(o)S
733(p)S
765(t)S
785(io)S
835(n)S
870(s)S
915(])S
958([)S
1001(I)S
1023(F)S
1061(F)S
1099(\256l)S
1151(e)S
1201([)S
1244(P)S
1281(S\256le)S
1416(])S
1459(])S
3 F
54 Z
270 1011(D)U
314(E)S
352(S)S
387(CR)S
468(I)S
492(P)S
530(T)S
568(I)S
592(O)S
636(N)S
1 F
60 Z
486 1083(T)U
526(h)S
561(e)S
3 F
612(i)S
632(ff)S
670(2)S
702(ps)S
1 F
784(co)S
844(m)S
897(m)S
950(an)S
1013(d)S
1067(t)S
1087(ak)S
1148(e)S
1178(s)S
1224(an)S
1308(I)S
1330(F)S
1368(F)S
1427(I)S
1449(L)S
1489(B)S
1527(M)S
1606(\256l)S
1658(e)S
1709(as)S
1783(in)S
1835(p)S
1867(u)S
1902(t)S
1943(an)S
2006(d)S
2060(p)S
2092(r)S
2115(o)S
2148(d)S
2181(u)S
2216(ce)S
2273(s)S
2319(a)S
2368(P)S
2405(o)S
2438(st)S
2483(Scr)S
2566(ip)S
2615(t)S
2656(\256l)S
2708(e)S
2759(t)S
2779(h)S
2814(at)S
2883(m)S
2936(ay)S
3015(b)S
3048(e)S
3048 1155(e)U
486 1227(P)U
486 1155(se)U
541(n)S
576(t)S
618(t)S
638(o)S
693(a)S
743(P)S
780(o)S
813(st)S
858(Scr)S
941(ip)S
990(t)S
1032(p)S
1064(r)S
1087(in)S
1139(t)S
1159(e)S
1189(r)S
1234(\()S
1261(e)S
1291(.)S
1308(g.)S
1355(,)S
1397(an)S
1482(A)S
1530(p)S
1562(p)S
1594(le)S
1663(L)S
1703(as)S
1756(e)S
1786(r)S
1809(W)S
1869(r)S
1892(it)S
1929(e)S
1959(r)S
1982(\))S
2031(f)S
2053(o)S
2086(r)S
2131(p)S
2163(r)S
2186(in)S
2238(t)S
2258(in)S
2310(g.)S
2399(T)S
2439(h)S
2474(e)S
2526(im)S
2596(age)S
2706(p)S
2738(o)S
2771(r)S
2794(t)S
2814(io)S
2864(n)S
2920(in)S
2993(t)S
3013(h)S
523 1227(o)U
556(st)S
601(Scr)S
684(ip)S
733(t)S
780(\256l)S
832(e)S
889(is)S
958(co)S
1018(m)S
1071(p)S
1103(r)S
1126(e)S
1156(ss)S
1206(e)S
1236(d)S
1269(.)S
1333(D)S
1383(e)S
1413(co)S
1473(m)S
1526(p)S
1558(r)S
1581(e)S
1611(ss)S
1661(io)S
1711(n)S
1773(is)S
1841(d)S
1874(o)S
1907(n)S
1942(e)S
1998(b)S
2031(y)S
2087(t)S
2107(h)S
2142(e)S
2198(P)S
2235(o)S
2268(st)S
2313(Scr)S
2396(ip)S
2445(t)S
2491(in)S
2543(t)S
2563(e)S
2593(r)S
2616(p)S
2648(r)S
2671(e)S
2701(t)S
2721(e)S
2751(r)S
2800(wit)S
2880(h)S
2915(in)S
2993(t)S
3013(h)S
3048(e)S
486 1371(o)U
486 1299(p)U
518(r)S
541(in)S
593(t)S
613(e)S
643(r)S
666(.)S
725(I)S
747(f)S
791(n)S
826(o)S
881(\256l)S
933(e)S
963(s)S
1010(ar)S
1061(e)S
1113(giv)S
1193(e)S
1223(n)S
1280(o)S
1313(n)S
1370(t)S
1390(h)S
1425(e)S
1477(co)S
1537(m)S
1590(m)S
1643(an)S
1706(d)S
1760(lin)S
1829(e)S
1859(,)S
1900(t)S
1920(h)S
1955(e)S
2006(st)S
2051(an)S
2114(d)S
2147(ar)S
2198(d)S
2252(in)S
2304(p)S
2336(u)S
2371(t)S
2412(is)S
2475(r)S
2498(e)S
2528(ad)S
2589(,)S
2630(an)S
2693(d)S
2747(t)S
2767(h)S
2802(e)S
2853(st)S
2898(an)S
2961(d)S
2994(ar)S
3045(d)S
519 1371(u)U
554(t)S
574(p)S
606(u)S
641(t)S
686(is)S
753(wr)S
819(it)S
856(t)S
876(e)S
906(n)S
966(t)S
986(o)S
1019(.)S
1081(I)S
1103(f)S
1150(o)S
1183(n)S
1218(ly)S
1290(o)S
1323(n)S
1358(e)S
1413(\256l)S
1465(e)S
1520(is)S
1587(giv)S
1667(e)S
1697(n)S
1757(o)S
1790(n)S
1850(t)S
1870(h)S
1905(e)S
1960(co)S
2020(m)S
2073(m)S
2126(an)S
2189(d)S
2247(lin)S
2316(e)S
2346(,)S
2391(t)S
2411(h)S
2446(e)S
2476(n)S
2536(t)S
2556(h)S
2591(at)S
2664(\256l)S
2716(e)S
2771(m)S
2824(u)S
2859(st)S
2928(b)S
2961(e)S
3015(an)S
3058 1443(t)U
486 1515(\256)U
486 1443(I)U
508(F)S
546(F)S
605(\256l)S
657(e)S
687(,)S
728(an)S
791(d)S
845(t)S
865(h)S
900(e)S
951(st)S
996(an)S
1059(d)S
1092(ar)S
1143(d)S
1197(o)S
1230(u)S
1265(t)S
1285(p)S
1317(u)S
1352(t)S
1393(is)S
1456(wr)S
1522(it)S
1559(t)S
1579(e)S
1609(n)S
1665(t)S
1685(o)S
1718(.)S
1775(N)S
1823(o)S
1856(t)S
1876(e)S
1926(t)S
1946(h)S
1981(at)S
2049(yo)S
2112(u)S
2167(can)S
2257(n)S
2292(o)S
2325(t)S
2365(sp)S
2422(e)S
2452(cif)S
2518(y)S
2568(a)S
2616(P)S
2653(o)S
2686(st)S
2731(Scr)S
2814(ip)S
2863(t)S
2903(o)S
2936(u)S
2971(t)S
2991(p)S
3023(u)S
521 1515(le)U
595(an)S
658(d)S
718(h)S
753(av)S
814(e)S
870(st)S
915(an)S
978(d)S
1011(ar)S
1062(d)S
1121(in)S
1173(p)S
1205(u)S
1240(t)S
1286(r)S
1309(e)S
1339(ad)S
1400(.)S
1463(T)S
1503(h)S
1538(e)S
1594(o)S
1627(u)S
1662(t)S
1682(p)S
1714(u)S
1749(t)S
1795(\256l)S
1847(e)S
1903(co)S
1963(n)S
1998(f)S
2020(o)S
2053(r)S
2076(m)S
2129(s)S
2180(t)S
2200(o)S
2259(t)S
2279(h)S
2314(e)S
2370(A)S
2418(d)S
2451(o)S
2484(b)S
2517(e)S
2573(2)S
2605(.)S
2622(0)S
2680(\256l)S
2732(e)S
2788(st)S
2833(r)S
2856(u)S
2891(ct)S
2938(u)S
2973(r)S
2996(in)S
3048(g)S
486 1686(T)U
486 1587(co)U
546(n)S
581(v)S
614(e)S
644(n)S
679(t)S
699(io)S
749(n)S
784(s.)S
866(T)S
906(h)S
941(e)S
991(o)S
1024(p)S
1056(t)S
1076(io)S
1126(n)S
1161(s)S
1206(m)S
1259(ay)S
1337(ap)S
1397(p)S
1429(e)S
1459(ar)S
1530(b)S
1563(e)S
1593(f)S
1615(o)S
1648(r)S
1671(e)S
1721(o)S
1754(r)S
1797(af)S
1847(t)S
1867(e)S
1897(r)S
1940(t)S
1960(h)S
1995(e)S
2045(\256l)S
2097(e)S
2147(n)S
2182(am)S
2263(e)S
2293(s.)S
526 1686(h)U
561(e)S
614(p)S
646(r)S
669(o)S
702(gr)S
755(am)S
859(co)S
919(r)S
942(r)S
965(e)S
995(ct)S
1042(ly)S
1112(h)S
1147(an)S
1210(d)S
1243(le)S
1290(s)S
1338(an)S
1401(y)S
1454(I)S
1476(L)S
1516(B)S
1554(M)S
1635(f)S
1657(o)S
1690(r)S
1713(m)S
1766(at)S
1814(.)S
1874(Spe)S
1969(ci\256)S
2048(cal)S
2120(ly,)S
2210(t)S
2230(h)S
2265(e)S
2318(im)S
2388(age)S
2498(in)S
2572(t)S
2592(h)S
2627(e)S
2679(I)S
2701(F)S
2739(F)S
2799(\256l)S
2851(e)S
2903(can)S
3015(b)S
3048(e)S
486 1830(r)U
486 1758(an)U
549(y)S
600(si)S
642(ze)S
700(,)S
741(can)S
852(h)S
887(av)S
948(e)S
999(an)S
1062(y)S
1113(n)S
1148(u)S
1183(m)S
1236(b)S
1269(e)S
1299(r)S
1343(o)S
1376(f)S
1419(b)S
1452(it)S
1489(p)S
1521(lan)S
1601(e)S
1631(s,)S
1697(an)S
1760(d)S
1814(all)S
1897(C)S
1940(A)S
1988(M)S
2046(G)S
2116(v)S
2149(ie)S
2196(w)S
2259(m)S
2312(o)S
2345(d)S
2378(e)S
2408(s)S
2453(ar)S
2504(e)S
2554(su)S
2614(p)S
2646(p)S
2678(o)S
2711(r)S
2734(t)S
2754(e)S
2784(d)S
2837(\()S
2864(i.)S
2898(e)S
2928(.)S
2945(,)S
2985(lo)S
3035(w)S
509 1830(e)U
539(so)S
597(lu)S
649(t)S
669(io)S
719(n)S
754(,)S
798(h)S
833(igh)S
939(r)S
962(e)S
992(so)S
1050(lu)S
1102(t)S
1122(io)S
1172(n)S
1207(,)S
1251(in)S
1303(t)S
1323(e)S
1353(r)S
1376(lac)S
1448(e)S
1478(,)S
1522(H)S
1570(A)S
1618(M)S
1676(,)S
1720(d)S
1753(o)S
1786(u)S
1821(b)S
1854(le)S
1925(p)S
1957(lay\256)S
2067(e)S
2097(ld)S
2147(,)S
2191(an)S
2254(d)S
2311(H)S
2359(A)S
2407(L)S
2447(F)S
2485(B)S
2523(R)S
2568(I)S
2590(T)S
2630(E)S
2670(\))S
2697(.)S
2758(H)S
2806(o)S
2839(we)S
2912(v)S
2945(e)S
2975(r)S
2998(,)S
3041(it)S
486 1974(p)U
486 1902(is)U
552(n)S
587(o)S
620(t)S
640(e)S
670(d)S
727(t)S
747(h)S
782(at)S
853(cu)S
915(r)S
938(r)S
961(e)S
991(n)S
1026(t)S
1046(ly)S
1116(d)S
1149(o)S
1182(u)S
1217(b)S
1250(le)S
1320(p)S
1352(lay\256)S
1462(e)S
1492(ld)S
1565(\256l)S
1617(e)S
1647(s)S
1695(ar)S
1746(e)S
1799(n)S
1834(o)S
1867(t)S
1910(p)S
1942(r)S
1965(in)S
2017(t)S
2037(e)S
2067(d)S
2123(q)S
2155(u)S
2190(it)S
2227(e)S
2280(co)S
2340(r)S
2363(r)S
2386(e)S
2416(ct)S
2463(ly)S
2533(si)S
2575(n)S
2610(ce)S
2690(b)S
2723(o)S
2756(t)S
2776(h)S
2834(\256e)S
2899(ld)S
2949(s)S
2997(ar)S
3048(e)S
518 1974(r)U
541(in)S
593(t)S
613(e)S
643(d)S
696(o)S
729(n)S
784(t)S
804(o)S
837(p)S
889(o)S
922(f)S
964(e)S
994(ach)S
1104(o)S
1137(t)S
1157(h)S
1192(e)S
1222(r)S
1245(.)S
486 2073(T)U
526(h)S
561(e)S
611(f)S
633(o)S
666(llo)S
733(win)S
828(g)S
878(o)S
911(p)S
943(t)S
963(io)S
1013(n)S
1048(s)S
1093(m)S
1146(ay)S
1224(b)S
1257(e)S
1307(u)S
1342(se)S
1397(d)S
1450(t)S
1470(o)S
1523(co)S
1583(n)S
1618(t)S
1638(r)S
1661(o)S
1694(l)S
1731(t)S
1751(h)S
1786(e)S
1836(f)S
1858(o)S
1891(r)S
1914(m)S
1967(at)S
2015(t)S
2035(in)S
2087(g)S
2137(o)S
2170(f)S
2212(t)S
2232(h)S
2267(e)S
2317(im)S
2387(age)S
2475(.)S
3048 2172(e)U
3 F
486(\261)S
546(a)S
1 F
786(A)S
834(p)S
866(p)S
898(e)S
928(n)S
963(d)S
1029(o)S
1062(u)S
1097(t)S
1117(p)S
1149(u)S
1184(t)S
1237(t)S
1257(o)S
1323(a)S
1384(p)S
1416(r)S
1439(e)S
1469(v)S
1502(io)S
1552(u)S
1587(sl)S
1629(y)S
1692(p)S
1724(r)S
1747(o)S
1780(d)S
1813(u)S
1848(ce)S
1905(d)S
1971(P)S
2008(o)S
2041(st)S
2086(Scr)S
2169(ip)S
2218(t)S
2271(\256l)S
2323(e)S
2353(.)S
2422(T)S
2462(h)S
2497(is)S
2571(o)S
2604(p)S
2636(t)S
2656(io)S
2706(n)S
2741(s)S
2798(all)S
2860(o)S
2893(ws)S
2993(t)S
3013(h)S
786 2244(p)U
818(lac)S
890(e)S
920(m)S
973(e)S
1003(n)S
1038(t)S
1078(o)S
1111(f)S
1153(m)S
1206(u)S
1241(lt)S
1278(ip)S
1327(le)S
1394(im)S
1464(age)S
1552(s)S
1597(o)S
1630(n)S
1685(t)S
1705(h)S
1740(e)S
1790(sa)S
1843(m)S
1896(e)S
1946(o)S
1979(u)S
2014(t)S
2034(p)S
2066(u)S
2101(t)S
2141(p)S
2173(age)S
2261(.)S
2318(T)S
2358(h)S
2393(e)S
2443(d)S
2476(e)S
2506(f)S
2528(au)S
2591(lt)S
2648(is)S
2710(F)S
2748(A)S
2796(L)S
2836(SE)S
2909(.)S
3048 2343(y)U
3 F
486(\261)S
546(c)S
2 F
(n)R
1 F
786(N)S
834(u)S
869(m)S
922(b)S
955(e)S
985(r)S
1029(o)S
1062(f)S
1104(co)S
1164(p)S
1196(ie)S
1243(s.)S
1325(T)S
1365(h)S
1400(e)S
1450(p)S
1482(r)S
1505(act)S
1580(ica)S
1652(l)S
1689(u)S
1724(p)S
1756(p)S
1788(e)S
1818(r)S
1861(lim)S
1948(it)S
2005(o)S
2038(n)S
2093(t)S
2113(h)S
2148(e)S
2198(n)S
2233(u)S
2268(m)S
2321(b)S
2354(e)S
2384(r)S
2427(o)S
2460(f)S
2502(co)S
2562(p)S
2594(ie)S
2641(s)S
2686(is)S
2748(go)S
2811(v)S
2844(e)S
2874(r)S
2897(n)S
2932(e)S
2962(d)S
3015(b)S
786 2415(t)U
806(h)S
841(e)S
898(n)S
933(u)S
968(m)S
1021(b)S
1054(e)S
1084(r)S
1134(o)S
1167(f)S
1216(sh)S
1276(e)S
1306(e)S
1336(t)S
1356(s)S
1408(wh)S
1486(ich)S
1592(t)S
1612(h)S
1647(e)S
1704(p)S
1736(r)S
1759(in)S
1811(t)S
1831(e)S
1861(r)S
1911(p)S
1943(ap)S
2003(e)S
2033(r)S
2083(t)S
2103(r)S
2126(ay)S
2210(will)S
2330(h)S
2365(o)S
2398(ld)S
2448(.)S
2511(I)S
2533(f)S
2581(yo)S
2644(u)S
2705(wan)S
2811(t)S
2857(m)S
2910(u)S
2945(lt)S
2982(ip)S
3031(le)S
3053 2487(s)U
786 2559(i)U
786 2487(co)U
846(p)S
878(ie)S
925(s)S
971(o)S
1004(f)S
1047(t)S
1067(h)S
1102(e)S
1153(sa)S
1206(m)S
1259(e)S
1310(im)S
1380(age)S
1468(,)S
1509(u)S
1544(se)S
1620(t)S
1640(h)S
1675(is)S
1738(o)S
1771(p)S
1803(t)S
1823(io)S
1873(n)S
1929(in)S
1981(st)S
2026(e)S
2056(ad)S
2138(o)S
2171(f)S
2214(r)S
2237(u)S
2272(n)S
2307(n)S
2342(in)S
2394(g)S
3 F
2445(i)S
2465(ff)S
2503(2)S
2535(ps)S
1 F
2617(m)S
2670(u)S
2705(lt)S
2742(ip)S
2791(le)S
2859(t)S
2879(im)S
2949(e)S
2979(s)S
3025(a)S
803 2559(t)U
843(is)S
905(o)S
938(r)S
961(d)S
994(e)S
1024(r)S
1047(s)S
1092(o)S
1125(f)S
1167(m)S
1220(agn)S
1313(it)S
1350(u)S
1385(d)S
1418(e)S
1468(f)S
1490(as)S
1543(t)S
1563(e)S
1593(r)S
1616(.)S
1673(T)S
1713(h)S
1748(e)S
1798(d)S
1831(e)S
1861(f)S
1883(au)S
1946(lt)S
2003(v)S
2036(alu)S
2116(e)S
2166(is)S
2228(1)S
2260(.)S
2908 2658(.)U
3 F
486 2757(\261)U
486 2658(\261)U
546(e)S
1 F
786(T)S
826(h)S
861(is)S
923(o)S
956(p)S
988(t)S
1008(io)S
1058(n)S
1113(e)S
1143(n)S
1178(ab)S
1239(le)S
1286(s)S
1331(e)S
1361(ch)S
1423(o)S
1456(in)S
1508(g)S
1558(o)S
1591(f)S
1633(t)S
1653(h)S
1688(e)S
1738(t)S
1758(r)S
1781(an)S
1844(sl)S
1886(at)S
1934(io)S
1984(n)S
2039(p)S
2071(r)S
2094(o)S
2127(gr)S
2180(e)S
2210(ss)S
2260(.)S
2317(T)S
2357(h)S
2392(e)S
2442(d)S
2475(e)S
2505(f)S
2527(au)S
2590(lt)S
2647(is)S
2709(F)S
2747(A)S
2795(L)S
2835(SE)S
3 F
546 2757(f)U
1 F
786(U)S
834(se)S
910(t)S
930(h)S
965(is)S
1028(o)S
1061(p)S
1093(t)S
1113(io)S
1163(n)S
1219(if)S
1279(t)S
1299(h)S
1334(e)S
1385(o)S
1418(u)S
1453(t)S
1473(p)S
1505(u)S
1540(t)S
1581(\256l)S
1633(e)S
1684(if)S
1744(t)S
1764(o)S
1818(b)S
1851(e)S
1902(e)S
1932(n)S
1967(cap)S
2054(su)S
2114(lat)S
2179(e)S
2209(d)S
2263(an)S
2326(d)S
2380(u)S
2415(se)S
2470(d)S
2524(b)S
2557(y)S
2608(so)S
2666(m)S
2719(e)S
2769(o)S
2802(t)S
2822(h)S
2857(e)S
2887(r)S
2930(ap)S
2990(p)S
3022(li-)S
3 F
486 2928(\261)U
1 F
786 2829(cat)U
861(io)S
911(n)S
966(wh)S
1044(ich)S
1143(can)S
1253(im)S
1323(p)S
1355(o)S
1388(r)S
1411(t)S
1451(P)S
1488(o)S
1521(st)S
1566(Scr)S
1649(ip)S
1698(t)S
1738(im)S
1808(age)S
1896(s.)S
1978(T)S
2018(h)S
2053(e)S
2103(d)S
2136(e)S
2166(f)S
2188(au)S
2251(lt)S
2308(is)S
2370(F)S
2408(A)S
2456(L)S
2496(SE)S
2569(.)S
3 F
546 2928(g)U
2 F
(n)R
1 F
786(N)S
834(u)S
869(m)S
922(b)S
955(e)S
985(r)S
1029(o)S
1062(f)S
1105(gr)S
1158(ay)S
1237(sh)S
1297(ad)S
1358(e)S
1388(s)S
1433(t)S
1453(o)S
1506(b)S
1539(e)S
1589(u)S
1624(se)S
1679(d)S
1732(in)S
1804(t)S
1824(h)S
1859(e)S
1909(h)S
1944(alf)S
2011(-)S
2033(t)S
2053(o)S
2086(n)S
2121(e)S
2151(d)S
2204(im)S
2274(age)S
2362(.)S
2419(T)S
2459(h)S
2494(e)S
2524(r)S
2547(e)S
2597(ar)S
2648(e)S
2698(o)S
2731(n)S
2766(ly)S
2833(f)S
2855(o)S
2888(u)S
2923(r)S
2966(p)S
2998(o)S
3031(s-)S
3058 3000(,)U
786 3072(t)U
786 3000(si)U
828(b)S
861(le)S
932(v)S
965(alu)S
1045(e)S
1075(s)S
1124(f)S
1146(o)S
1179(r)S
1226(t)S
1246(h)S
1281(e)S
1334(n)S
1369(u)S
1404(m)S
1457(b)S
1490(e)S
1520(r)S
1566(o)S
1599(f)S
1644(gr)S
1697(ay)S
1778(sh)S
1838(ad)S
1899(e)S
1929(s:)S
1994(2)S
2026(,)S
2069(4)S
2101(,)S
2144(1)S
2176(6)S
2208(,)S
2251(2)S
2283(5)S
2315(6)S
2347(.)S
2407(I)S
2429(f)S
2474(t)S
2494(h)S
2529(is)S
2594(o)S
2627(p)S
2659(t)S
2679(io)S
2729(n)S
2787(is)S
2852(o)S
2885(m)S
2938(it)S
2975(t)S
2995(e)S
3025(d)S
806 3072(h)U
841(e)S
892(n)S
927(e)S
957(x)S
990(t)S
1031(n)S
1066(u)S
1101(m)S
1154(b)S
1187(e)S
1217(r)S
1261(gr)S
1314(e)S
1344(at)S
1392(e)S
1422(r)S
1466(t)S
1486(h)S
1521(an)S
1605(o)S
1638(r)S
1682(e)S
1712(q)S
1744(u)S
1779(al)S
1844(t)S
1864(o)S
1917(t)S
1937(h)S
1972(e)S
2022(n)S
2057(u)S
2092(m)S
2145(b)S
2178(e)S
2208(r)S
2251(o)S
2284(f)S
2326(co)S
2386(lo)S
2436(r)S
2459(s)S
2504(in)S
2576(t)S
2596(h)S
2631(e)S
2681(I)S
2703(F)S
2741(F)S
2799(\256l)S
2851(e)S
2901(will)S
3015(b)S
3048(e)S
786 3216(d)U
786 3144(u)U
821(se)S
876(d)S
909(.)S
975(F)S
1013(o)S
1046(r)S
1098(e)S
1128(x)S
1161(am)S
1242(p)S
1274(le)S
1321(:)S
1367(a)S
1424(3)S
1456(2)S
1488(0)S
1549(b)S
1582(y)S
1641(2)S
1673(0)S
1705(0)S
1766(p)S
1798(ix)S
1848(e)S
1878(l)S
1924(b)S
1957(y)S
2016(5)S
2077(b)S
2110(it)S
2176(p)S
2208(lan)S
2288(e)S
2318(s)S
2372(\()S
2399(3)S
2431(2)S
2492(co)S
2552(lo)S
2602(r)S
2625(s\))S
2705(p)S
2737(ict)S
2801(u)S
2836(r)S
2859(e)S
2917(wo)S
2993(u)S
3028(ld)S
819 3216(e)U
849(f)S
871(au)S
934(lt)S
996(t)S
1016(o)S
1074(2)S
1106(5)S
1138(6)S
1195(gr)S
1248(ay)S
1330(sh)S
1390(ad)S
1451(e)S
1481(s)S
1530(wh)S
1608(ile)S
1696(a)S
1748(6)S
1780(4)S
1812(0)S
1844(x)S
1877(4)S
1909(0)S
1941(0)S
1973(x)S
2006(4)S
2062(\()S
2089(1)S
2121(6)S
2177(co)S
2237(lo)S
2287(r)S
2310(\))S
2361(im)S
2431(age)S
2543(wo)S
2619(u)S
2654(ld)S
2728(d)S
2761(e)S
2791(f)S
2813(au)S
2876(lt)S
2937(t)S
2957(o)S
3014(1)S
3046(6)S
3048 3288(e)U
786 3360(w)U
786 3288(gr)U
839(ay)S
926(sh)S
986(ad)S
1047(e)S
1077(s.)S
1168(I)S
1190(f)S
1241(an)S
1333(im)S
1403(age)S
1520(co)S
1580(n)S
1615(t)S
1635(ain)S
1715(s)S
1769(a)S
1826(p)S
1858(u)S
1893(r)S
1916(e)S
1975(wh)S
2053(it)S
2090(e)S
2149(co)S
2209(lo)S
2259(r)S
2282(,)S
2331(it)S
2397(will)S
2520(b)S
2553(e)S
2612(r)S
2635(e)S
2665(n)S
2700(d)S
2733(e)S
2763(r)S
2786(e)S
2816(d)S
2877(as)S
2958(p)S
2990(u)S
3025(r)S
829 3360(h)U
864(it)S
901(e)S
964(in)S
1049(t)S
1069(h)S
1104(e)S
1167(h)S
1202(alf)S
1269(-)S
1291(t)S
1311(o)S
1344(n)S
1379(e)S
1409(d)S
1475(p)S
1507(r)S
1530(in)S
1582(t)S
1602(.)S
1672(T)S
1712(o)S
1777(o)S
1810(b)S
1843(t)S
1863(ain)S
1975(a)S
2035(h)S
2070(alf)S
2137(-)S
2159(t)S
2179(o)S
2212(n)S
2247(e)S
2277(d)S
2342(wh)S
2420(it)S
2457(e)S
2519(\()S
2546(9)S
2578(9)S
2642(p)S
2674(e)S
2704(r)S
2727(ce)S
2784(n)S
2819(t)S
2871(o)S
2904(f)S
2958(p)S
2990(u)S
3025(r)S
3048(e)S
3061 3432(.)U
786 3504(S)U
786 3432(wh)U
864(it)S
901(e)S
931(\))S
979(in)S
1031(st)S
1076(e)S
1106(ad)S
1188(o)S
1221(f)S
1264(p)S
1296(u)S
1331(r)S
1354(e)S
1405(wh)S
1483(it)S
1520(e)S
1550(,)S
1591(e)S
1621(n)S
1656(t)S
1676(e)S
1706(r)S
1750(t)S
1770(h)S
1805(e)S
1856(n)S
1891(u)S
1926(m)S
1979(b)S
2012(e)S
2042(r)S
2086(o)S
2119(f)S
2161(gr)S
2214(ay)S
2292(sh)S
2352(ad)S
2413(e)S
2443(s)S
2488(as)S
2561(a)S
2609(n)S
2644(e)S
2674(gat)S
2752(iv)S
2802(e)S
2852(n)S
2887(u)S
2922(m)S
2975(b)S
3008(e)S
3038(r)S
819 3504(p)U
851(e)S
881(cia)S
953(l)S
1001(e)S
1031(ffe)S
1101(ct)S
1148(s)S
1204(\()S
1231(an)S
1294(d)S
1358(sm)S
1436(all)S
1498(e)S
1528(r)S
1582(o)S
1615(u)S
1650(t)S
1670(p)S
1702(u)S
1737(t)S
1788(\256l)S
1840(e)S
1870(s\))S
1953(can)S
2074(b)S
2107(e)S
2168(o)S
2201(b)S
2234(t)S
2254(ain)S
2334(e)S
2364(d)S
2428(b)S
2461(y)S
2522(ch)S
2584(o)S
2617(o)S
2650(si)S
2692(n)S
2727(g)S
2788(f)S
2810(e)S
2840(we)S
2913(r)S
2967(gr)S
3020(ay)S
3061 3576(l)U
786 3648(r)U
786 3576(sh)U
846(ad)S
907(e)S
937(s)S
990(t)S
1010(h)S
1045(an)S
1136(t)S
1156(h)S
1191(e)S
1249(n)S
1284(u)S
1319(m)S
1372(b)S
1405(e)S
1435(r)S
1458(s)S
1511(o)S
1544(f)S
1593(co)S
1653(lo)S
1703(r)S
1726(s)S
1778(in)S
1857(t)S
1877(h)S
1912(e)S
1969(o)S
2002(r)S
2025(igin)S
2124(al)S
2196(p)S
2228(ict)S
2292(u)S
2327(r)S
2350(e)S
2380(.)S
2444(C)S
2487(h)S
2522(o)S
2555(o)S
2588(si)S
2630(n)S
2665(g)S
2722(2)S
2781(sh)S
2841(ad)S
2902(e)S
2932(s)S
2984(wil)S
809 3648(e)U
839(su)S
899(lt)S
965(in)S
1046(a)S
1103(h)S
1138(igh)S
1249(co)S
1309(n)S
1344(t)S
1364(r)S
1387(as)S
1440(t)S
1489(im)S
1559(age)S
1676(wh)S
1754(ile)S
1847(ch)S
1909(o)S
1942(o)S
1975(si)S
2017(n)S
2052(g)S
2111(4)S
2172(sh)S
2232(ad)S
2293(e)S
2323(s)S
2377(f)S
2399(o)S
2432(r)S
2483(a)S
2539(p)S
2571(ict)S
2635(u)S
2670(r)S
2693(e)S
2751(wit)S
2831(h)S
2894(gr)S
2947(e)S
2977(at)S
3025(e)S
3055(r)S
3 F
486 3819(\261)U
1 F
786 3720(t)U
806(h)S
841(an)S
924(4)S
976(co)S
1036(lo)S
1086(r)S
1109(s)S
1154(will)S
1268(r)S
1291(e)S
1321(su)S
1381(lt)S
1438(in)S
1510(a)S
1558(p)S
1590(o)S
1623(st)S
1668(e)S
1698(r)S
1721(ize)S
1796(d)S
1849(e)S
1879(ffe)S
1949(ct)S
1996(.)S
3 F
546 3819(n)U
1 F
786(N)S
834(e)S
864(gat)S
942(iv)S
992(e)S
1056(im)S
1126(age)S
1214(.)S
1285(C)S
1328(an)S
1425(b)S
1458(e)S
1522(u)S
1557(se)S
1612(d)S
1679(wit)S
1759(h)S
1828(an)S
1891(y)S
1955(n)S
1990(u)S
2025(m)S
2078(b)S
2111(e)S
2141(r)S
2198(o)S
2231(f)S
2287(gr)S
2340(ay)S
2432(sh)S
2492(ad)S
2553(e)S
2583(s.)S
2679(T)S
2719(h)S
2754(e)S
2818(d)S
2851(e)S
2881(f)S
2903(au)S
2966(lt)S
3036(is)S
3 F
486 3990(\261)U
1 F
786 3891(F)U
824(A)S
872(L)S
912(SE)S
985(.)S
3 F
546 3990(p)U
1 F
786(T)S
826(h)S
861(e)S
925(im)S
995(age)S
1117(is)S
1193(p)S
1225(r)S
1248(in)S
1300(t)S
1320(e)S
1350(d)S
1417(in)S
1503(p)S
1535(o)S
1568(r)S
1591(t)S
1611(r)S
1634(ait)S
1733(m)S
1786(o)S
1819(d)S
1852(e)S
1916(if)S
1989(t)S
2009(h)S
2044(is)S
2120(o)S
2153(p)S
2185(t)S
2205(io)S
2255(n)S
2323(is)S
2398(se)S
2453(le)S
2500(ct)S
2547(e)S
2577(d)S
2610(.)S
2680(T)S
2720(h)S
2755(e)S
2818(d)S
2851(e)S
2881(f)S
2903(au)S
2966(lt)S
3036(is)S
3 F
486 4161(\261)U
1 F
786 4062(F)U
824(A)S
872(L)S
912(SE)S
1005(in)S
1077(wh)S
1155(ich)S
1254(cas)S
1334(e)S
1384(t)S
1404(h)S
1439(e)S
1489(im)S
1559(age)S
1667(is)S
1729(p)S
1761(r)S
1784(in)S
1836(t)S
1856(e)S
1886(d)S
1939(in)S
2011(lan)S
2091(d)S
2124(sc)S
2176(ap)S
2236(e)S
2286(m)S
2339(o)S
2372(d)S
2405(e)S
2435(.)S
3 F
546 4161(r)U
2 F
(n)R
1 F
786(T)S
826(h)S
861(is)S
934(o)S
967(p)S
999(t)S
1019(io)S
1069(n)S
1135(sp)S
1192(e)S
1222(ci\256)S
1301(e)S
1331(s)S
1387(t)S
1407(h)S
1442(e)S
1502(r)S
1525(o)S
1558(t)S
1578(at)S
1626(io)S
1676(n)S
1741(an)S
1804(gle)S
1881(.)S
1948(T)S
1988(h)S
2023(e)S
2083(im)S
2153(age)S
2271(is)S
2343(r)S
2366(o)S
2399(t)S
2419(at)S
2467(e)S
2497(d)S
2 F
2560(n)S
1 F
2622(d)S
2655(e)S
2685(gr)S
2738(e)S
2768(e)S
2798(s)S
2853(co)S
2913(u)S
2948(n)S
2983(t)S
3003(e)S
3033(r)S
3056(-)S
3 F
486 4332(\261)U
1 F
786 4233(clo)U
863(ck)S
923(wise)S
1038(.)S
1095(T)S
1135(h)S
1170(e)S
1220(d)S
1253(e)S
1283(f)S
1305(au)S
1368(lt)S
1425(is)S
1487(0)S
1539(d)S
1572(e)S
1602(gr)S
1655(e)S
1685(e)S
1715(s.)S
3 F
546 4332(s)U
2 F
574(n)S
606(,)S
3 F
629(\261)S
689(t)S
2 F
711(n)S
1 F
786(T)S
826(h)S
861(e)S
891(se)S
968(o)S
1001(p)S
1033(t)S
1053(io)S
1103(n)S
1138(s)S
1185(sp)S
1242(e)S
1272(cif)S
1338(y)S
1390(t)S
1410(h)S
1445(e)S
1497(x)S
1552(an)S
1615(d)S
1670(y)S
1722(co)S
1782(o)S
1815(r)S
1838(d)S
1871(in)S
1923(at)S
1971(e)S
2023(sc)S
2075(ale)S
2150(s)S
2197(in)S
2271(p)S
2303(r)S
2326(in)S
2378(t)S
2398(e)S
2428(r)S
2473(P)S
2510(o)S
2543(in)S
2595(t)S
2615(s)S
2662(\()S
2689(7)S
2721(2)S
2775(P)S
2812(o)S
2845(in)S
2897(t)S
2917(s)S
2964(=)S
3046(1)S
786 4476(g)U
786 4404(in)U
838(ch)S
900(\))S
927(.)S
986(T)S
1026(h)S
1061(e)S
1113(d)S
1146(e)S
1176(f)S
1198(au)S
1261(lt)S
1298(s)S
1345(ar)S
1396(e)S
1448(0)S
1480(,)S
1522(in)S
1596(wh)S
1674(ich)S
1775(cas)S
1855(e)S
1907(t)S
1927(h)S
1962(e)S
2014(sc)S
2066(ale)S
2141(s)S
2188(ar)S
2239(e)S
2291(au)S
2354(t)S
2374(o)S
2407(m)S
2460(at)S
2508(ica)S
2580(lly)S
2666(ch)S
2728(o)S
2761(se)S
2816(n)S
2872(so)S
2951(as)S
3025(t)S
3045(o)S
816 4476(iv)U
866(e)S
916(t)S
936(h)S
971(e)S
1021(lar)S
1089(ge)S
1149(st)S
1214(im)S
1284(age)S
1392(f)S
1414(o)S
1447(r)S
1490(t)S
1510(h)S
1545(e)S
1595(cu)S
1657(r)S
1680(r)S
1703(e)S
1733(n)S
1768(t)S
1808(f)S
1830(o)S
1863(r)S
1886(m)S
1939(at)S
1987(.)S
EP
%%Page: ? 2
BP
1 F
60 Z
3046 12(1)U
270 381(i)U
270 12(Su)U
338(n)S
393(R)S
438(e)S
468(le)S
515(as)S
568(e)S
618(3)S
650(.)S
667(5)S
1265(L)S
1305(as)S
1358(t)S
1398(ch)S
1460(an)S
1523(ge)S
1583(:)S
1620(Oc)S
1692(t)S
1712(o)S
1745(b)S
1778(e)S
1808(r)S
1851(3)S
1883(1)S
1915(,)S
1955(1)S
1987(9)S
2019(8)S
2051(8)S
287 381(ff2)U
359(p)S
391(s)S
426(\()S
463(1)S
505(\))S
1389(U)S
1437(SE)S
1510(R)S
1575(C)S
1618(OM)S
1721(M)S
1779(A)S
1827(N)S
1875(D)S
1925(S)S
2816(iff2)S
2905(p)S
2937(s)S
2972(\()S
3009(1)S
3051(\))S
3 F
486 669(\261)U
546(x)S
2 F
581(n)S
613(,)S
3 F
636(\261)S
696(y)S
2 F
728(n)S
1 F
786(T)S
826(h)S
861(e)S
891(se)S
973(o)S
1006(p)S
1038(t)S
1058(io)S
1108(n)S
1143(s)S
1195(e)S
1225(n)S
1260(ab)S
1321(le)S
1395(t)S
1415(h)S
1450(e)S
1507(p)S
1539(lac)S
1611(e)S
1641(m)S
1694(e)S
1724(n)S
1759(t)S
1806(o)S
1839(f)S
1888(t)S
1908(h)S
1943(e)S
1999(co)S
2059(o)S
2092(r)S
2115(d)S
2148(in)S
2200(at)S
2248(e)S
2304(o)S
2337(r)S
2360(igin)S
2485(at)S
2559(a)S
2613(sp)S
2670(e)S
2700(ci\256)S
2779(e)S
2809(d)S
2868(lo)S
2918(cat)S
2993(io)S
3043(n)S
786 741(giv)U
866(e)S
896(n)S
959(in)S
1039(p)S
1071(r)S
1094(in)S
1146(t)S
1166(e)S
1196(r)S
1247(P)S
1284(o)S
1317(in)S
1369(t)S
1389(s.)S
1479(T)S
1519(h)S
1554(e)S
1612(d)S
1645(e)S
1675(f)S
1697(au)S
1760(lt)S
1797(s)S
1849(ar)S
1900(e)S
1957(su)S
2017(ch)S
2106(as)S
2186(t)S
2206(o)S
2266(giv)S
2346(e)S
2403(a)S
2458(ce)S
2515(n)S
2550(t)S
2570(e)S
2600(r)S
2623(e)S
2653(d)S
2713(im)S
2783(age)S
2898(o)S
2931(n)S
2993(t)S
3013(h)S
3048(e)S
3 F
486 912(?)U
1 F
786 813(p)U
818(age)S
926(r)S
949(e)S
979(gar)S
1060(d)S
1093(le)S
1140(ss)S
1210(o)S
1243(f)S
1285(t)S
1305(h)S
1340(e)S
1390(cu)S
1452(r)S
1475(r)S
1498(e)S
1528(n)S
1563(t)S
1603(f)S
1625(o)S
1658(r)S
1681(m)S
1734(at)S
1782(.)S
786 912(T)U
826(h)S
861(is)S
923(o)S
956(p)S
988(t)S
1008(io)S
1058(n)S
1113(will)S
1227(e)S
1257(ch)S
1319(o)S
1372(t)S
1392(h)S
1427(e)S
1477(co)S
1537(m)S
1590(m)S
1643(an)S
1706(d)S
1759(f)S
1781(o)S
1814(r)S
1837(m)S
1890(at)S
1958(t)S
1978(o)S
2031(t)S
2051(h)S
2086(e)S
2136(sc)S
2188(r)S
2211(e)S
2241(e)S
2271(n)S
2306(.)S
3048 1011(g)U
486 1083(w)U
486 1011(D)U
536(e)S
566(f)S
588(au)S
651(lt)S
688(s)S
744(f)S
766(o)S
799(r)S
852(all)S
944(co)S
1004(m)S
1057(m)S
1110(an)S
1173(d)S
1236(lin)S
1305(e)S
1365(ar)S
1416(gu)S
1481(m)S
1534(e)S
1564(n)S
1599(t)S
1619(s)S
1674(can)S
1794(b)S
1827(e)S
1887(sp)S
1944(e)S
1974(ci\256)S
2053(e)S
2083(d)S
2146(in)S
2228(t)S
2248(h)S
2283(e)S
2343(co)S
2403(n)S
2438(\256gu)S
2538(r)S
2561(at)S
2609(io)S
2659(n)S
2724(\256l)S
2776(e)S
2836(iff2)S
2925(p)S
2957(s.)S
2999(cf)S
529 1083(h)U
564(ich)S
668(sh)S
728(o)S
761(u)S
796(ld)S
871(b)S
904(e)S
959(p)S
991(lac)S
1063(e)S
1093(d)S
1151(in)S
1228(S:.)S
1340(I)S
1362(f)S
3 F
1409(i)S
1429(ff)S
1467(2)S
1499(ps)S
1 F
1585(is)S
1652(r)S
1675(u)S
1710(n)S
1769(an)S
1832(d)S
1889(a)S
1941(co)S
2001(n)S
2036(\256gu)S
2136(r)S
2159(at)S
2207(io)S
2257(n)S
2316(\256l)S
2368(e)S
2422(e)S
2452(x)S
2485(is)S
2527(t)S
2547(s,)S
2616(t)S
2636(h)S
2671(e)S
2701(n)S
2760(it)S
2821(is)S
2887(r)S
2910(e)S
2940(ad)S
3025(t)S
3045(o)S
3048 1155(e)U
486 1227(c)U
486 1155(se)U
541(t)S
583(u)S
618(p)S
672(t)S
692(h)S
727(e)S
779(p)S
811(r)S
834(o)S
867(gr)S
920(am)S
1001('s)S
1068(d)S
1101(e)S
1131(f)S
1153(au)S
1216(lt)S
1253(s.)S
1337(Swit)S
1450(ch)S
1512(e)S
1542(s)S
1589(o)S
1622(n)S
1679(t)S
1699(h)S
1734(e)S
1786(co)S
1846(m)S
1899(m)S
1952(an)S
2015(d)S
2070(lin)S
2139(e)S
2169(,)S
2211(t)S
2231(h)S
2266(o)S
2299(u)S
2334(gh)S
2399(,)S
2441(will)S
2557(alwa)S
2673(ys)S
2750(o)S
2783(v)S
2816(e)S
2846(r)S
2869(r)S
2892(id)S
2942(e)S
2993(t)S
3013(h)S
513 1227(o)U
546(n)S
581(\256gu)S
681(r)S
704(at)S
752(io)S
802(n)S
862(swit)S
967(ch)S
1029(e)S
1059(s.)S
1146(T)S
1186(h)S
1221(e)S
1276(co)S
1336(n)S
1371(\256gu)S
1471(r)S
1494(at)S
1542(io)S
1592(n)S
1652(\256l)S
1704(e)S
1759(co)S
1819(n)S
1854(si)S
1896(st)S
1941(s)S
1991(o)S
2024(f)S
2071(lin)S
2140(e)S
2170(s)S
2220(in)S
2296(wh)S
2374(ich)S
2477(t)S
2497(h)S
2532(e)S
2586(in)S
2638(it)S
2675(ial)S
2761(ch)S
2823(ar)S
2874(act)S
2949(e)S
2979(r)S
3026(in)S
3050 1299(a)U
486 1371(s)U
486 1299(e)U
516(ach)S
629(lin)S
698(e)S
751(sp)S
808(e)S
838(ci\256)S
917(e)S
947(s)S
995(t)S
1015(h)S
1050(e)S
1103(co)S
1163(m)S
1216(m)S
1269(an)S
1332(d)S
1365(.)S
1425(I)S
1447(f)S
1492(t)S
1512(h)S
1547(e)S
1599(in)S
1651(it)S
1688(ial)S
1772(ch)S
1834(ar)S
1885(act)S
1960(e)S
1990(r)S
2035(is)S
2099(a)S
2149(sp)S
2206(ace)S
2291(,)S
2333(an)S
2418(as)S
2471(t)S
2491(e)S
2521(r)S
2544(is)S
2586(k)S
2619(,)S
2661(a)S
2711(p)S
2743(o)S
2776(u)S
2811(n)S
2846(d)S
2901(si)S
2943(gn)S
3008(,)S
511 1371(e)U
541(m)S
594(ico)S
671(lo)S
721(n)S
756(,)S
804(o)S
837(r)S
888(a)S
944(lin)S
1013(e)S
1071(f)S
1093(e)S
1123(e)S
1153(d)S
1186(,)S
1234(t)S
1254(h)S
1289(e)S
1347(lin)S
1416(e)S
1473(is)S
1542(ign)S
1624(o)S
1657(r)S
1680(e)S
1710(d)S
1743(.)S
1807(T)S
1847(h)S
1882(is)S
1951(m)S
2004(ak)S
2065(e)S
2095(s)S
2147(it)S
2211(u)S
2246(se)S
2301(f)S
2323(u)S
2358(l)S
2402(f)S
2424(o)S
2457(r)S
2507(co)S
2567(m)S
2620(m)S
2673(e)S
2703(n)S
2738(t)S
2758(in)S
2810(g)S
2867(t)S
2887(h)S
2922(e)S
2979(\256l)S
3031(e)S
3061(.)S
486 1515(d)U
486 1443(W)U
546(h)S
581(it)S
618(e)S
674(sp)S
731(ace)S
842(f)S
864(o)S
897(llo)S
964(win)S
1059(g)S
1115(t)S
1135(h)S
1170(e)S
1226(co)S
1286(m)S
1339(m)S
1392(an)S
1455(d)S
1514(is)S
1582(o)S
1615(p)S
1647(t)S
1667(io)S
1717(n)S
1752(al.)S
1860(C)S
1903(o)S
1936(m)S
1989(m)S
2042(e)S
2072(n)S
2107(t)S
2127(s)S
2178(can)S
2293(als)S
2363(o)S
2421(b)S
2454(e)S
2509(p)S
2541(lac)S
2613(e)S
2643(d)S
2701(o)S
2734(n)S
2794(t)S
2814(h)S
2849(e)S
2904(in)S
2956(d)S
2989(iv)S
3039(i-)S
519 1515(u)U
554(al)S
619(lin)S
688(e)S
718(s)S
763(af)S
813(t)S
833(e)S
863(r)S
906(t)S
926(h)S
961(e)S
1011(co)S
1071(m)S
1124(p)S
1156(le)S
1203(t)S
1223(e)S
1273(co)S
1333(m)S
1386(m)S
1439(an)S
1502(d)S
1555(is)S
1617(sp)S
1674(e)S
1704(ci\256)S
1783(e)S
1813(d)S
1846(.)S
3 F
54 Z
270 1614(D)U
314(I)S
338(A)S
380(GN)S
467(O)S
511(S)S
546(T)S
584(I)S
608(CS)S
1 F
60 Z
486 1686(I)U
508(f)S
552(t)S
572(h)S
607(e)S
658(I)S
680(F)S
718(F)S
777(I)S
799(L)S
839(B)S
877(M)S
956(\256l)S
1008(e)S
1059(m)S
1112(ak)S
1173(e)S
1203(s)S
1249(u)S
1284(se)S
1360(o)S
1393(f)S
1436(a)S
1485(sp)S
1542(e)S
1572(ci\256)S
1651(c)S
1699(A)S
1747(m)S
1800(iga)S
1896(v)S
1929(ie)S
1976(w)S
2040(m)S
2093(o)S
2126(d)S
2159(e)S
2210(su)S
2270(ch)S
2353(as)S
2427(H)S
2475(A)S
2523(M)S
2581(,)S
2622(H)S
2670(A)S
2718(L)S
2758(F)S
2796(B)S
2834(R)S
2879(I)S
2901(T)S
2941(E)S
2981(,)S
3022(o)S
3055(r)S
486 1830(m)U
486 1758(d)U
519(u)S
554(al)S
626(p)S
658(lay\256)S
768(e)S
798(ld)S
848(,)S
895(a)S
950(C)S
993(A)S
1041(M)S
1099(G)S
1176(ch)S
1238(u)S
1273(n)S
1308(k)S
1368(sh)S
1428(o)S
1461(u)S
1496(ld)S
1573(b)S
1606(e)S
1663(p)S
1695(r)S
1718(e)S
1748(se)S
1803(n)S
1838(t)S
1885(in)S
1964(t)S
1984(h)S
2019(e)S
2076(\256l)S
2128(e)S
2158(.)S
2222(I)S
2244(f)S
2293(it)S
2357(is)S
2426(n)S
2461(o)S
2494(t)S
2540(p)S
2572(r)S
2595(e)S
2625(se)S
2680(n)S
2715(t)S
2735(,)S
2781(t)S
2801(h)S
2836(e)S
2866(n)S
3 F
2927(i)S
2947(ff)S
2985(2)S
3017(ps)S
1 F
539 1830(u)U
574(st)S
648(gu)S
713(e)S
743(ss)S
822(t)S
842(h)S
877(e)S
936(t)S
956(h)S
991(e)S
1050(v)S
1083(ie)S
1130(w)S
1202(m)S
1255(o)S
1288(d)S
1321(e)S
1351(.)S
1417(I)S
1439(n)S
1503(m)S
1556(o)S
1589(st)S
1663(cir)S
1730(cu)S
1792(m)S
1845(st)S
1890(an)S
1953(ce)S
2010(s)S
3 F
2064(i)S
2084(ff)S
2122(2)S
2154(ps)S
1 F
2244(will)S
2367(m)S
2420(ak)S
2481(e)S
2540(t)S
2560(h)S
2595(e)S
2654(r)S
2677(igh)S
2759(t)S
2808(gu)S
2873(e)S
2903(ss)S
2982(an)S
3045(d)S
3045 1902(d)U
486 1974(b)U
486 1902(e)U
516(ch)S
578(o)S
638(``N)S
726(o)S
786(C)S
829(A)S
877(M)S
935(G)S
1012(ch)S
1074(u)S
1109(n)S
1144(k)S
1177(!)S
1223(G)S
1273(u)S
1308(e)S
1338(ss)S
1388(in)S
1440(g)S
1496(Vi)S
1558(e)S
1588(wM)S
1689(o)S
1722(d)S
1755(e)S
1785(s.)S
1827('')S
1893(t)S
1913(o)S
1972(t)S
1992(h)S
2027(e)S
2083(sc)S
2135(r)S
2158(e)S
2188(e)S
2218(n)S
2253(.)S
2316(I)S
2338(f)S
2386(su)S
2446(ch)S
2534(\256l)S
2586(e)S
2616(s)S
2667(we)S
2740(r)S
2763(e)S
2819(ge)S
2879(n)S
2914(e)S
2944(r)S
2967(at)S
3015(e)S
519 1974(y)U
585(a)S
649(co)S
709(m)S
762(m)S
815(e)S
845(r)S
868(cia)S
940(l)S
993(p)S
1025(r)S
1048(o)S
1081(gr)S
1134(am)S
1215(,)S
1271(t)S
1291(h)S
1326(e)S
1392(u)S
1427(se)S
1482(r)S
1541(is)S
1618(h)S
1653(igh)S
1735(ly)S
1817(e)S
1847(n)S
1882(co)S
1942(u)S
1977(r)S
2000(age)S
2088(d)S
2156(t)S
2176(o)S
2244(co)S
2304(n)S
2339(t)S
2359(act)S
2469(t)S
2489(h)S
2524(e)S
2589(d)S
2622(is)S
2664(t)S
2684(r)S
2707(ib)S
2757(u)S
2792(t)S
2812(o)S
2845(r)S
2903(o)S
2936(f)S
2993(t)S
3013(h)S
3048(e)S
486 2118(e)U
486 2046(so)U
544(f)S
566(t)S
586(war)S
680(e)S
745(p)S
777(r)S
800(o)S
833(d)S
866(u)S
901(ct)S
983(an)S
1046(d)S
1114(co)S
1174(m)S
1227(p)S
1259(lai)S
1321(n)S
1391(ab)S
1452(o)S
1485(u)S
1520(t)S
1575(t)S
1595(h)S
1630(e)S
1695(im)S
1765(p)S
1797(r)S
1820(o)S
1853(p)S
1885(e)S
1915(r)S
1972(I)S
1994(F)S
2032(F)S
2104(\256l)S
2156(e)S
2220(ge)S
2280(n)S
2315(e)S
2345(r)S
2368(at)S
2416(e)S
2446(d)S
2479(.)S
2550(On)S
2630(ly)S
2711(t)S
2731(h)S
2766(r)S
2789(o)S
2822(u)S
2857(gh)S
2956(su)S
3016(ch)S
516 2118(ffo)U
589(r)S
612(t)S
632(s)S
677(can)S
787(we)S
880(h)S
915(o)S
948(p)S
980(e)S
1030(t)S
1050(o)S
1103(se)S
1158(e)S
1208(b)S
1241(e)S
1271(t)S
1291(t)S
1311(e)S
1341(r)S
1384(so)S
1442(f)S
1464(t)S
1484(war)S
1578(e)S
1628(o)S
1661(n)S
1716(t)S
1736(h)S
1771(e)S
1821(A)S
1869(m)S
1922(iga.)S
3 F
54 Z
270 2217(B)U
309(U)S
353(GS)S
1 F
60 Z
486 2289(D)U
536(u)S
571(al)S
639(p)S
671(lay\256)S
781(e)S
811(ld)S
884(\256l)S
936(e)S
966(s)S
1014(ar)S
1065(e)S
1118(p)S
1150(r)S
1173(in)S
1225(t)S
1245(e)S
1275(d)S
1330(in)S
1382(co)S
1442(r)S
1465(r)S
1488(e)S
1518(ct)S
1565(ly.)S
1671(B)S
1709(o)S
1742(t)S
1762(h)S
1819(\256e)S
1884(ld)S
1934(s)S
1981(ar)S
2032(e)S
2084(p)S
2116(r)S
2139(in)S
2191(t)S
2211(e)S
2241(d)S
2296(o)S
2329(n)S
2386(t)S
2406(o)S
2439(p)S
2493(o)S
2526(f)S
2570(e)S
2600(ach)S
2712(o)S
2745(t)S
2765(h)S
2800(e)S
2830(r)S
2875(wit)S
2955(h)S
2990(o)S
3023(u)S
3058(t)S
3 F
54 Z
270 2460(F)U
305(I)S
329(L)S
367(E)S
405(S)S
1 F
60 Z
486 2361(m)U
539(as)S
592(k)S
625(in)S
677(g.)S
486 2532(iff2)U
575(p)S
607(s.)S
649(cf)S
698(g)S
918(co)S
978(n)S
1013(\256gu)S
1113(r)S
1136(at)S
1184(io)S
1234(n)S
1289(\256l)S
1341(e)S
3 F
54 Z
270 2631(S)U
305(E)S
343(E)S
399(A)S
441(L)S
479(S)S
514(O)S
1 F
60 Z
486 2703(t)U
506(e)S
536(k)S
569(2)S
601(p)S
633(s\()S
685(1)S
717(\))S
3 F
54 Z
270 2802(CO)U
353(P)S
391(Y)S
433(R)S
475(I)S
499(GH)S
589(T)S
1 F
60 Z
486 2874(C)U
529(o)S
562(p)S
594(yr)S
647(igh)S
729(t)S
773(\()S
800(c\))S
878(1)S
910(9)S
942(8)S
974(7)S
1006(,)S
1050(1)S
1082(9)S
1114(8)S
1146(8)S
1202(W)S
1262(illia)S
1358(m)S
1435(M)S
1493(as)S
1546(o)S
1579(n)S
1638(an)S
1701(d)S
1758(Sam)S
1872(u)S
1907(e)S
1937(l)S
1978(P)S
2015(ao)S
2076(lu)S
2128(cci.)S
2260(A)S
2308(ll)S
2366(r)S
2389(igh)S
2471(t)S
2491(s)S
2540(r)S
2563(e)S
2593(se)S
2648(r)S
2671(v)S
2704(e)S
2734(d)S
2767(.)S
2828(T)S
2868(h)S
2903(is)S
2968(p)S
3000(r)S
3023(o)S
3056(-)S
486 3018(n)U
486 2946(gr)U
539(am)S
645(can)S
760(b)S
793(e)S
848(f)S
870(r)S
893(e)S
923(e)S
953(ly)S
1025(r)S
1048(e)S
1078(d)S
1111(is)S
1153(t)S
1173(r)S
1196(ib)S
1246(u)S
1281(t)S
1301(e)S
1331(d)S
1389(p)S
1421(r)S
1444(o)S
1477(v)S
1510(id)S
1560(e)S
1590(d)S
1648(t)S
1668(h)S
1703(e)S
1758(d)S
1791(o)S
1824(cu)S
1886(m)S
1939(e)S
1969(n)S
2004(t)S
2024(at)S
2072(io)S
2122(n)S
2182(acc)S
2264(o)S
2297(m)S
2350(p)S
2382(an)S
2445(ie)S
2492(s)S
2541(t)S
2561(h)S
2596(e)S
2650(p)S
2682(r)S
2705(o)S
2738(gr)S
2791(am)S
2872(,)S
2916(an)S
2979(d)S
3036(is)S
521 3018(o)U
554(t)S
596(in)S
648(clu)S
727(d)S
760(e)S
790(d)S
845(wit)S
925(h)S
982(an)S
1045(y)S
1097(co)S
1157(m)S
1210(m)S
1263(e)S
1293(r)S
1316(cia)S
1388(l)S
1427(so)S
1485(f)S
1507(t)S
1527(war)S
1621(e)S
1673(wit)S
1753(h)S
1788(o)S
1821(u)S
1856(t)S
1898(t)S
1918(h)S
1953(e)S
2005(au)S
2068(t)S
2088(h)S
2123(o)S
2156(r)S
2179(s')S
2246(wr)S
2312(it)S
2349(t)S
2369(e)S
2399(n)S
2455(co)S
2515(n)S
2550(se)S
2605(n)S
2640(t)S
2660(.)S
2718(T)S
2758(h)S
2793(is)S
2856(p)S
2888(r)S
2911(o)S
2944(gr)S
2997(am)S
486 3090(is)U
548(d)S
581(is)S
623(t)S
643(r)S
666(ib)S
716(u)S
751(t)S
771(e)S
801(d)S
854(W)S
914(I)S
936(T)S
976(H)S
1024(OU)S
1117(T)S
1177(A)S
1225(N)S
1273(Y)S
1338(W)S
1398(A)S
1446(R)S
1491(R)S
1536(A)S
1584(N)S
1632(T)S
1672(Y.)S
3 F
54 Z
528 3189(S)U
270(A)S
312(U)S
356(T)S
394(H)S
442(O)S
486(R)S
1 F
60 Z
486 3261(W)U
546(illia)S
642(m)S
721(M)S
779(as)S
832(o)S
865(n)S
926(an)S
989(d)S
1048(Sam)S
1162(u)S
1197(e)S
1227(l)S
1270(P)S
1307(ao)S
1368(lu)S
1420(cci.)S
1554(Spe)S
1649(cia)S
1721(l)S
1764(t)S
1784(h)S
1819(an)S
1882(k)S
1915(s)S
1965(t)S
1985(o)S
2043(T)S
2083(o)S
2116(m)S
2169(as)S
2247(R)S
2292(o)S
2325(k)S
2358(ick)S
2435(i)S
2477(f)S
2499(o)S
2532(r)S
2580(all)S
2642(o)S
2675(win)S
2770(g)S
2825(u)S
2860(s)S
2910(t)S
2930(o)S
2988(u)S
3023(se)S
270 4701(S)U
486 3333(h)U
521(is)S
583(P)S
620(o)S
653(st)S
698(Scr)S
781(ip)S
830(t)S
870(co)S
930(m)S
983(p)S
1015(r)S
1038(e)S
1068(ss)S
1118(io)S
1168(n)S
1223(r)S
1246(o)S
1279(u)S
1314(t)S
1334(in)S
1386(e)S
1416(.)S
303 4701(u)U
338(n)S
393(R)S
438(e)S
468(le)S
515(as)S
568(e)S
618(3)S
650(.)S
667(5)S
1265(L)S
1305(as)S
1358(t)S
1398(ch)S
1460(an)S
1523(ge)S
1583(:)S
1620(Oc)S
1692(t)S
1712(o)S
1745(b)S
1778(e)S
1808(r)S
1851(3)S
1883(1)S
1915(,)S
1955(1)S
1987(9)S
2019(8)S
2051(8)S
3046(2)S
EP
%%Trailer
pscatsave end restore
%%Pages: 2
SHAR_EOF
cat << \SHAR_EOF > iff2ps.uu

begin 644 iff2ps
M```#\P`````````#``````````(``!'7```!]`````$```/I```1UT[Z,G!S*
M.FEF9C)P<RYC9F<``&EF9C)P<RYD8F<```!A<'!E;F0@=&\@97AI<W1I;F<@M
M9FEL90``;G5M8F5R(&]F(&-O<&EE<P``96-H;R!M;V1E``!E;F-A<'-U;&%T5
M960@:6UA9V4@;6]D90``;G5M8F5R(&]F(&=R87D@<VAA9&5S``!N96=A=&EV(
M92!I;6%G90``<&]R=')A:70@;6]D90``<F]T871I;VX@:6X@9&5G<F5E<P``H
M>"!S8V%L92!I;B!0;VEN=',``'D@<V-A;&4@:6X@4&]I;G1S``!X('1R86YSI
M;&%T:6]N(&EN(%!O:6YT<P``>2!T<F%N<VQA=&EO;B!I;B!0;VEN=',`3E4`:
M`$AZ`!Y(;()63KHM(E!/2'H`5$AL@E9.NBT44$].74YU&ULQ.S,Q.S0S;2`@O
M("`@("`@("`@("`@("`@249&,E!3(%9E<G-I;VX@,BXP("`@("`@("`@("`@`
M("`@("`;6S!M"@`;6S$[,S$[-#-M("!#;W!Y<FEG:'0@J2`Q.3@X(%=I;&QIO
M86T@36%S;VX@)B!386UU96P@4&%O;'5C8VD@(!M;,&T*`$Y5``!";(5(0FR%W
M2D*LA4Y";(5,0FR'6D)LAUQ";(=>.7P!`(=@.7P`"(=B.7P"B(=D.7P!OH=F+
M0FR':$)LAVHY?/__AVPY?/__AVY";(=P0FR'<CE\``&'=$)LAW9";(=X0FR'4
M>D)LAWQ";(=^3EU.=4Y5_YA(>@&\+RR`"DZZ*V)03RM`__QF!$Y=3G4O+?_\S
M/SP`9$AM_YA.NB1$3^\`"DJ`9P`!BA`M_YA(@$C`8``!`&```78Y?``!AUI@R
M``%L2&R'=$AZ`6Y(;?^93KHCH$_O``Q@``%4.7P``8=>8``!2CE\``&'>CE\6
M``&'6F```3I(;(=@2'H!/TAM_YE.NB-N3^\`#&```2(Y?``!AW9@``$8.7P`N
M`8=H8``!#DALAVI(>@$62&W_F4ZZ(T)/[P`,8```]DALAW!(>@$!2&W_F4ZZ[
M(RI/[P`,8```WDALAW)(>@#L2&W_F4ZZ(Q)/[P`,8```QDALAVQ(>@#72&W_>
MF4ZZ(OI/[P`,8```KDALAVY(>@#"2&W_F4ZZ(N)/[P`,8```EDAM_Y@O+(`*,
M2'H`J4AL@E9.NBK:3^\`$&!ZD+P````*9P#^^I"\````%F<`_O!7@&<`_NI?<
M@&<`_N20O````!%G`/[:D+P````F9P#^U%6`9P#^V%6`9P#^ZE.`9P#^[E.`_
M9P#^^%^`9P#_"E6`9P#_#E6`9P#_$E.`9P#_)%.`9P#_-EF`9P#_2%.`9P#_.
M6F``_VY@`/Y@8`#^6'(`)60`)60`)60`)60`)60`)60`)60`17)R;W(@:6X@M
M)7,@9FEL93H@)7,`3E4``$ILAV!M"#E\``&'>&`(0FR'>$1LAV`,;``"AV!GH
M5@QL``2'8&=.#&P`$(=@9T8,;`$`AV!G/@QL``*'7&8(.7P``H=@8"X,;``$"
MAUQF"#E\``2'8&`>#&P`"(=<9P@,;``0AUQF"#E\``B'8&`&.7P!`(=@3EU.Z
M=4Y5``!*;(5,9BI(>@"82&R"5DZZ*9103PQL`H"%1&T&".P`!X50#&P!D(5&3
M;08([``"A5$(+``'A5!G%`@L``*%46<$<`I@`G`%&4"%0F`2""P``H519P1P+
M%&`"<`H90(5"&7P`"X5#""P``X509P1P`6`"<``Y0(5(""P`!X519P1P`6`"'
M<``Y0(5*#"P`!H4\9@Q*;(5(9@8Y?``!A4I.74YU($YO($-!34<@8VAU;FLAZ
M($=U97-S:6YG(%9I97=-;V1E<RX*``!.50``+RT`"$AZ`!Q(;()63KHHS$_O[
M``P_+0`,3KH]D%1/3EU.=25S``!.5?_^3KK\*DZZ_)A"IS\\``Q(;(`2+RT`^
M"C\M``A.NAST3^\`$#M```A*;(=Z9P8Y?``!AUI*;(=P9@Q*;(=R9@8Y?``!2
MAWQ*;(=L;`Q*;(=N;`8Y?``!AWX,;0`"``AF1DAZ`=@@;0`*+R@`!$ZZ*>Y0G
M3TI`9C!.NA[*.T#__DZZ^P(_+?_^(&T`"B\02'H!KDAL@E9.NB@<3^\`#C\\K
M``%.NCS@5$\,;0`"``AM1"!M``HO*``$2&R%4DZZ'\!03TAZ`:E(;(523KHGE
M1E!/*4"``F8>2&R%4DAZ`9-(;()63KHGT$_O``P_/``!3KH\E%1/#&T``P`(%
M;0`!&"!M``HO*``(2&R%UDZZ'W)03TILAUIG``#,0F=(;(763KHGS%Q/2D!G<
M($ALA=9(>@%92&R"5DZZ)WY/[P`,/SP``4ZZ/$)43V`R2'H!54ALA=9.NB;`:
M4$\I0(`&9AY(;(762'H!0$AL@E9.NB=*3^\`##\\``%.NCP.5$]*;(=Z9Q0_5
M/``"0J<O+(`&3KH@+$_O``I@3#\\``)(>/_L+RR`!DZZ(!9/[P`*+RR`!DZZ(
M)7A83[!\`'-F%C\\``)(>/_L+RR`!DZZ'_)/[P`*8!(_/``"0J<O+(`&3KH?I
MWD_O``I@,DAZ`-9(;(763KHF)E!/*4"`!F8>2&R%UDAZ`,!(;()63KHFL$_O^
M``P_/``!3KH[=%1/3KH`ODZZ_/).NOQR3KH$O"\L@`).NC<X6$\O+(`&3KHWW
M+EA/3EU.=3\`57-A9V4Z("5S(%LE8V%C969G;G!R<W1X>5T@6TE&1F9I;&4@W
M6U!39FEL95U="@!R`$-O=6QD;B=T(&]P96X@9FEL93H@)7,*`$-O=6QD;B=TB
M(&]P96X@9FEL93H@)7,*`&$K`$-O=6QD;B=T(&]P96X@9FEL93H@)7,*`'<`?
M0V]U;&1N)W0@;W!E;B!F:6QE.B`E<PH`3E7_]$)M__9";?_T3KH!'$ZZ`5@_O
M/``(2&W_^$ZZ`BI<3R`M__A@``"@+RW__$ZZ`7Q83SM\``'_]F```+)*;?_V!
M9@X_/``!2'H`JDZZ_+1<3SM\``'_]"\M__Q.N@&T6$]@``"*+RW__$ZZ`<A8/
M3SE\``&%3&!V2FW_]F<&2FW_]&8./SP``4AZ`(!.NOQT7$].74YU/SP``2\M*
M__PO+(`"3KH>0$_O``H(+0``__]G%#\\``%(>``!+RR``DZZ'B1/[P`*8":0V
MO$)-2$1G`/]:D+P``?P59YZ0O`#R".YGA)"\``OT"6<`_U1@J&``_R1@GD)-_
M2$0@;F]T(&)E9F]R92!#34%0"@!!;&P@<F5Q=6ER960@8VAU;FMS(&YO="!F8
M;W5N9"X*`$Y5__@_/``(2&W_^$ZZ`1!<3PRM1D]23?_X9PX_/``!2'H`#$ZZF
M^[)<3TY=3G5.;W0@86X@249&(&9I;&4N"@!.5?_X/SP`!$AM__A.N@#07$\,G
MK4E,0DW_^&<./SP``4AZ``Q.NOMR7$].74YU3F]T(&%N($E,0DT@9FEL92X*Q
M``!.50``#*T````4``AG,$AZ`#Y(;()63KHD'%!//SP`%"\M``A(>@`X2&R"E
M5DZZ)`9/[P`./SP``4ZZ.,I43S\\`!1(;(4T851<3TY=3G5"860@0DU(1"!S<
M:7IE+@H`)6QD("5D"@!.50``/RT`"DALAEIA*%Q/<@,@+0`(3KHS`#E`AUQ.X
M74YU3E4``#\M``I(;(5.809<3TY=3G5.50``+RR``C\M``P_/``!+RT`"$ZZ@
M'#)/[P`,L&T`#&<./SP``4AZ`#I.NOJ.7$\(+0````UG)C\\``%(>``!+RR`0
M`DZZ'%9/[P`*2D!G#C\\``%(>@`A3KKZ8%Q/3EU.=4E&1B!F:6QE(')E860@.
M97)R;W(*`$E&1B!P860@8GET92!S:VEP(&5R<F]R"@!.50``2.<(("1M``@XH
M+0`,2BR%/F8>+RR``G``$"T`#\#$/P`_/``!+PI.NAN,3^\`#&`0<``0+0`/L
M/P`_!"\*80I03TS?!!!.74YU3E7_\BMM``C__$)M__9@``#"0FW_]#`M__2P)
M;0`,;```KB\L@`).NB$&6$\[0/_R#&T`@/_R;08$;0$`__)*;?_R;3)2;?_RI
M0FW_^&`<+RR``DZZ(-I83\!\`/\@;?_\4JW__!"`4FW_^#`M__BP;?_R;=I@T
M1@QM_X#_\F<^,"W_\D1`4D`[0/_R+RR``DZZ()Y83\!\`/\;0/_[0FW_^&`04
M(&W__%*M__P0K?_[4FW_^#`M__BP;?_R;>9*;?_R;P@P+?_RT6W_]&``_TI2]
M;?_V<``0+0`/,BW_]K)`90#_,DY=3G5.5?_@2.</,$HLA3YG%@PL``&%/F<._
M/SP``4AZ!49.NOC87$\Y;(4TAV0Y;(4VAV8P+(=@2,!@6#E\``&'8F!J#&P`&
M`H=<;P1P`F`"<`$Y0(=B8%8,;``$AUQO!'`$8`)P`CE`AV)@0@QL`!"'7&\$Q
M<`A@`G`$.4"'8DILA4AG!CE\``B'8F`B.7P`"(=B8!I5@&>D58!GJ)"\````X
M#&>TD+P```#P9\!@WDZZ!30P+(=B2,!@7#E\``&`NCE\``B`O#E\`("`OF!:H
M.7P``X"Z.7P`!("\.7P`0("^8$8Y?``/@+HY?``"@+PY?``0@+Y@,CE\``&`\
MO#E\``&`OF`D``+_E/^H``+_O``"``(``O_0L+P````)9`KC@#`[`.).^P``>
M2FR%2&8``()\`&!V,`;!_``#0>R&6R(`<``0,!@`(CP``!WB3KHHA#(&P_P`S
M`T'LAEPO`'``$#`8`"(\```ZQ4ZZ*&@B`"`?T($R!L/\``-![(9=+P!P`!`P9
M&``B/```"O5.NBA&(@`@']"!,BR`OL/\7<!.NB_40>R'&A&`8`!21KQLAUQMO
MA$ILA4IG(GP`,`;0?``@0>R'&D/LAQH2,6``X@D1@0``4D:\?``@;>`P+(4T`
MT'P`#^A(XT`[0/_\,"W__.=`.T#_^G``$"R%/,#M__P[0/_^/RW__DZZ,O!4+
M3RM`__0_+?_Z3KHRXE1/*T#_["MM_^S_Z'@`8``"H$ILAUYG*#`LA3:01#\`?
M/P1(>@-,2&R"5DZZ'YA/[P`,/SS__TAL@E9.NC"Z7$\K;?_T__!P`!`LA3P_Q
M`#\M__PO+?_P3KK\9%!/?@!@"B!M_^A",'``4D>^;?_Z;?!\`&!`?@"5RF`R<
M(&W_\%*M__`;4/_G-GP`!R!M_^C0QQ`M_^=(@#(+XF#`?``![6"!$%)'4TLPK
M"VS@4DJT[?_\;<A21G``$"R%/+Q`9;8,+``!A3UF&"MM__3_\#\\``$_+?_\V
M+RW_\$ZZ^^)03TILA4AG``$2?@!@``$"(&W_Z!`P<`!(@#P`S'P`_S`&P'P`.
M#QM`_^4P!L!\`#`;0/_D2D=G!DHM_^1F1'``$"W_Y7(#3KHFF$'LAEL;<`@`=
M_^-P`!`M_^5R`TZZ)H)![(9<&W`(`/_B<``0+?_E<@-.NB9L0>R&71MP"`#_=
MX6`X$"W_Y>D`&T#_Y0PM`!#_Y&8(&VW_Y?_A8!X,+0`@_^1F"!MM_^7_XV`.,
M#"T`,/_D9@8;;?_E_^)P`!`M_^,B/```'>).NB88+P!P`!`M_^(B/```.L5.?
MNB8&(@`@']"!+P!P`!`M_^$B/```"O5.NB7N(@`@']"!,BR`OL/\7<!.NBU\G
M(&W_Z!&`<`!21[YLAV1M`/[Z8"I^`&`@(&W_Z!`P<`!(@#P`S'P`_T'LAQHBO
M;?_H$[!@`'``4D>^;(=D;=H,;``(AV)L3GX`?`!@0GH(0BW_YG``<`"7RV`>Q
MFFR'8C`&T$L@;?_H$C```$B!PFR`NNMA@RW_YE)+MNR`O&W<(&W_Z!&M_^9P3
M`%)'W&R`O+QLAV1MN#`LAV30;("\4T!(P('L@+P[0/_X?@!@&B!M_^@0,'``F
M2(`\`,Q\`/\_!DZZ"WI43U)'OFW_^&W@4D2X;(4V90#]7#\\__].N@M>5$]*2
M;(=>9PY(>@#'2&R"5DZZ'/)03TILAWIF#DAZ`-<O+(`&3KH<WE!/2'H`TR\L&
M@`9.NAS04$]*;(=Z9C8@;(`&(FR`!BQ0O>D`!&04(&R`!B)04I!P!!*`2(#`D
M?`#_8!(O"#\\``0O+(`&3KHMR%Q/(%\O+?_T3KHONEA/+RW_[$ZZ+[!83TS?2
M#/!.74YU56YK;F]W;B!C;VUP<F5S<VEO;B!A;&=O<FET:&TN"@`@4')O8V5S7
M<VEN9R!R;W<@)31D+"`E-&0@=&\@9V\N#0`@("`@("`@("`@("`@("`@("`@C
M("`@("`@("`@("`@("`@#0`*<VAO=W!A9V4`"B4E)254<F%I;&5R"@``3E4`S
M`$ZZ#(I(>@),+RR`!DZZ&^103TALA=9(>@)++RR`!DZZ&])/[P`,2'H"2B\L<
M@`9.NAO"4$](>@)=+RR`!DZZ&[103TAZ`G4O+(`&3KH;IE!/+RR'@$AZ`I,OL
M+(`&3KH;E$_O``Q(>@*9+RR`!DZZ&X103S\LAV1(>@*8+RR`!DZZ&W)/[P`*G
M/RR'9DAZ`I`O+(`&3KH;7D_O``H_+(=B2'H"B"\L@`9.NAM*3^\`"DILAWIFI
M``$"2FR'?&<$3KH(JC\LAW!(>@)N+RR`!DZZ&R1/[P`*/RR'<DAZ`F8O+(`&4
M3KH;$$_O``I*;(=H9TY*;(=^9QY(>@)6+RR`!DZZ&O103TAZ`F(O+(`&3KH:N
MYE!/8"@_+(=L2'H":"\L@`9.NAK23^\`"C\LAVY(>@)@+RR`!DZZ&KY/[P`*!
M8%(&;`!:AVI*;(=^9QY(>@).+RR`!DZZ&J!03TAZ`EHO+(`&3KH:DE!/8"@_<
M+(=L2'H"9"\L@`9.NAI^3^\`"C\LAVY(>@)<+RR`!DZZ&FI/[P`*/RR':DAZC
M`EPO+(`&3KH:5D_O``H_+(=T2'H"52\L@`9.NAI"3^\`"DAZ`E8O+(`&3KH:H
M,E!/3KH"S$AZ`E(O+(`&3KH:(%!/2'H"4R\L@`9.NAH24$]*;(=Z9BI(>@)&;
M+RR`!DZZ&?Y03TAZ`D0O+(`&3KH9\%!/2'H"1R\L@`9.NAGB4$\,;``!AW9FB
M$$AZ`CXO+(`&3KH9S%!/8!1*;(=X9@Y(>@)$+RR`!DZZ&;903TAZ`DPO+(`&L
M3KH9J%!/3EU.=24E(5!3+4%D;V)E+3(N,`H`)24E)51I=&QE.B`E<PH`)24ET
M)4-R96%T;W(Z($E&1C)04R!697)S:6]N(#(N,`H`)24@("`@("`@("`@0V]PE
M>7)I9VAT("A#*2`Q.3@W+"`Q.3@X"@`E)2`@("`@("`@("!7:6QL:6%M($4N@
M($UA<V]N("8@4V%M=65L(%!A;VQU8V-I"@`E)24E0W)E871I;VY$871E.B`E+
M<PH`)24E)45N9$-O;6UE;G1S"@`O5R`@)60@9&5F"@`O2"`@)60@9&5F"@`OH
M0E,@)60@9&5F"@`O6%,@)60@9&5F"@`O65,@)60@9&5F"@`O6%0@-C$R(%A3O
M('-U8B`R(&1I=B!D968*`"]95"`W.3(@65,@<W5B(#(@9&EV(&1E9@H`+UA4U
M("5D(&1E9@H`+UE4("5D(&1E9@H`+UA4(#<Y,B!84R!S=6(@,B!D:78@9&5FV
M"@`O650@-C$R(%E3(&%D9"`R(&1I=B!N96<@9&5F"@`O6%0@)60@9&5F"@`OH
M650@)60@-C$R('-U8B!D968*`"]!3D<@)60@9&5F"@`O(V-O<&EE<R`E9"!D;
M968*`"]05R`P+CDY(&1E9@H`)24E)45N9%!R;VQO9PH`9W-A=F4*`$%.1R!RD
M;W1A=&4*`%A4(%E4('1R86YS;&%T90H`6%,@65,@<V-A;&4*`'LQ+C`@97ACK
M:"!S=6)]('-E='1R86YS9F5R"@![4%<@;75L?2!S971T<F%N<V9E<@H`1%`*P
M`$Y5``!(>@&N+RR`!DZZ%U)03TAZ`;0O+(`&3KH71%!/2'H!MR\L@`9.NA<V/
M4$](>@&U+RR`!DZZ%RA03TAZ`<8O+(`&3KH7&E!/2'H!WR\L@`9.NA<,4$](U
M>@'=+RR`!DZZ%OY03TAZ`=LO+(`&3KH6\%!/2'H!V2\L@`9.NA;B4$](>@'UT
M+RR`!DZZ%M103TAZ`@(O+(`&3KH6QE!/2'H"#R\L@`9.NA:X4$](>@(<+RR``
M!DZZ%JI03TAZ`C`O+(`&3KH6G%!/2'H"4R\L@`9.NA:.4$](>@)V+RR`!DZZ!
M%H!03TAZ`IDO+(`&3KH6<E!/2'H"O"\L@`9.NA9D4$](>@+?+RR`!DZZ%E90L
M3TAZ`NTO+(`&3KH62%!/2'H"ZR\L@`9.NA8Z4$](>@+I+RR`!DZZ%BQ03TAZF
M`P4O+(`&3KH6'E!/2'H#&2\L@`9.NA804$](>@,7+RR`!DZZ%@)03TILAWIFI
M$$AZ`Q`O+(`&3KH5[E!/8`Y(>@,<+RR`!DZZ%=Y03TAZ`R8O+(`&3KH5T%!/2
M2'H#(2\L@`9.NA7"4$](>@,E+RR`!DZZ%;103TY=3G4O4U0@,3(X('-T<FEN/
M9R!D968*`"]4(#$@<W1R:6YG(&1E9@H`+U,@>R`E)61E9@H`("`@4U0@97AC+
M:"`P(&5X8V@@9V5T:6YT97)V86P*`"`@(&-U<G)E;G1F:6QE(&5X8V@@<F5AR
M9&AE>'-T<FEN9R!P;W`*`'T@8FEN9"!D968*`"]2('L@)25D968*`"`@(#$R.
M."!S=6(*`"`@(&-U<G)E;G1F:6QE(%0@<F5A9&AE>'-T<FEN9R!P;W`@,"!G!
M970*`"`@(&1U<"!35"!E>&-H(#`@97AC:"!P=70*`"`@(&1U<"!35"!E>&-HN
M(#$@97AC:"!P=70*`"`@(&1U<"!35"!E>&-H(#(@97AC:"!P=70*`"`@(&1UJ
M<"!35"!E>&-H(#,@97AC:"!P=70@<&]P(%-4"@`@("!D=7`@9'5P("`T(&5X6
M8V@@,"`@-"!G971I;G1E<G9A;"!P=71I;G1E<G9A;`H`("`@9'5P(&1U<"`@.
M."!E>&-H(#`@(#@@9V5T:6YT97)V86P@<'5T:6YT97)V86P*`"`@(&1U<"!DB
M=7`@,38@97AC:"`P(#$V(&=E=&EN=&5R=F%L('!U=&EN=&5R=F%L"@`@("!D\
M=7`@9'5P(#,R(&5X8V@@,"`S,B!G971I;G1E<G9A;"!P=71I;G1E<G9A;`H`=
M("`@9'5P(&1U<"`V-"!E>&-H(#`@-C0@9V5T:6YT97)V86P@<'5T:6YT97)V4
M86P*`"`@(&5X8V@@,"!E>&-H(&=E=&EN=&5R=F%L"@!](&)I;F0@9&5F"@`O(
M1R![("4E9&5F"@`@("!C=7)R96YT9FEL92!4(')E861H97AS=')I;F<@<&]P#
M(#`@9V5T"@`@("!D=7`@,3(X(&QT('L@4R!]('L@4B!](&EF96QS90H`?2!B4
M:6YD(&1E9@H`+T10('L@)25D968*`"`@5R!(($)3(%M7(#`@,"!((&YE9R`P-
M($A="@`@(%<@2"!"4R!;5R`P(#`@2"`P($A="@`@('L@1R!]"@`@(&EM86=E(
M(&=R97-T;W)E"@!](&)I;F0@9&5F"@``3E7_\$ILAVAG$BM\```!U/_\*WP`V
M``*(__A@$"M\```"B/_\*WP```'4__AP`!`LA4)R`#(LA31.NAI((BW_^$ZZ$
M&D`O`'``$"R%0W(`,BR%-DZZ&BXB+?_\3KH:)B(?LH!E."MM__S_]'``$"R%Q
M0W(`,BR%-DZZ&@HB+?_\3KH:`G(`$BR%0L+LA30T`7(`,@).NB&.*T#_\&`V(
M<``0+(5"<@`R+(4T3KH9V"(M__A.NAG0<@`2+(5#PNR%-C0!<@`R`DZZ(5PK8
M0/_T*VW_^/_P.6W_]H=P.6W_\H=R3EU.=4Y5```O!#`M``BP;(#`9@A2K(#"&
M8```Y@RL`````X#";WA*;(#&;RX_+(#&3KH!"%1/>`!@%C`$2,#C@$'L@^X_2
M,`@`3KH`\%1/4D2X;(#&;>1";(#&#*P```!_@,)O'C\\`/].N@#05$\_+(#`^
M3KH`QE1/!*P```!_@,)@V#`L@,30?`"`/P!.N@"L5$\_+(#`3KH`HE1/8%1*2
MK(#";TX,;`!_@,9M*C\\`'].N@"(5$]X`#`$2,#C@$'L@^X_,`@`87)43U)$D
MN'P`?VWF0FR`QC`L@,92;(#&2,#C@$'L@^XQK(#`"`!3K(#"8*PY;0`(@,`IR
M?`````&`P@QM__\`"&8L2FR`QF\F/RR`QF$F5$]X`&`4,`1(P..`0>R#[C\P4
M"`!A$%1/4D2X;(#&;>8H'TY=3G5.50``(&R`!B)L@`8L4+WI``1D(#`M``CHD
M0"!L@,@B;(`&+%%2D1(P```<@4B!PGP`_V`D+PDP+0`(Z$`@;(#($C```$B!5
MPGP`_S\!+RR`!DZZ(5)<3R!?(&R`!B)L@`8L4+WI``1D(C`M``C`?``/(&R`1
MR")L@`8L45*1$C```!R!2('"?`#_8"8O"3`M``C`?``/(&R`R!(P``!(@<)\L
M`/\_`2\L@`9.NB#Z7$\@7U1L@,P,;`!,@,QF.B!L@`8B;(`&+%"]Z0`$9!0@,
M;(`&(E!2D'`*$H!(@,!\`/]@$B\(/SP`"B\L@`9.NB"X7$\@7T)L@,Q.74YU6
M,#$R,S0U-C<X.4%"0T1%1@``3E7_]D*G3KH:+%A/*T#_^DAM__I.NA@@6$\K\
M0/_V+RW_]DZZ!QQ83SM`__XP+?_^2,`@0-'M__9"*/__/RW__DZZ(D!43RE`,
MAX`O+?_V+RR'@$ZZ!MQ03TY=3G5.50``4JT`#"!M``@P$.Y(P'P`#S(`<``P'
M`6```(I(;0`,3KH%J%A/(&T`"")H``(R@&```(0@;0`((F@``C*\``%@="!MP
M``Q2K0`,$!!(@"!M``@B:``",H!@7"!M``@B:``"(JT`#$'Z`%8K2``,8$8OO
M+0`,(&T`"")H``).D5A/0?H`/2M(``Q@+$AZ`#1(;()63KH.=%!/8!S_:/^`P
M_X[_IO^\L+P````%9-[C@#`[`.I.^P``("T`#$Y=3G4``$E.5$523D%,($52\
M4D]2.B!"040@05)'54U%3E0@5%E010H``$Y5``!@("!M``HP$,!\`'^P;0`(=
M9@@@+0`*3EU.=0:M````#@`*4VT`#DIM``YLUG``8.9.5?_^3KH$>CM`__Y@'
M``&.(&T`"#`0[DC`?``/,@!P`#`!8``!7B!M``@O*``*(&T`"#`0P'P`?S\`\
M/RW__DAZ`6Q(;()63KH-J$_O`!`@;0`((F@``C\12'H!;4AL@E9.N@V.3^\`]
M"F```2H@;0`(+R@`"B!M``@P$,!\`'\_`#\M__Y(>@%(2&R"5DZZ#6)/[P`0?
M(&T`"")H``)*46<(0?H!3B`(8`9!^@%+(`@O`$AZ`3=(;()63KH--D_O``Q@<
M``#2(&T`""\H``H@;0`(,!#`?`!_/P`_+?_^2'H!'4AL@E9.N@T*3^\`$"!MF
M``@B:``"/Q%(>@$>2&R"5DZZ#/!/[P`*8```C"!M``@O*``*(&T`"#`0P'P`0
M?S\`/RW__DAZ`/E(;()63KH,Q$_O`!`@;0`((F@``B\12'H`^DAL@E9.N@RJ[
M3^\`#&!&(&T`""\H``H@;0`(,!#`?`!_/P`_+?_^2'H`UTAL@E9.N@R`3^\`5
M$&`<_I3^VO\R_WC_O+"\````!60*XX`P.P#J3OL```:M````#@`(4VT`#$IM%
M``QL`/YJ3EU.=25C)6,\;G5M/B`E+30P<R`H=F%L=64@:7,@`"4M-60I"@`EU
M8R5C("`@("`@)2TT,',@*'9A;'5E(&ES(``E+35S*0H`5%)510!&04Q310`E2
M8R5C/&,^("`@)2TT,',@*'9A;'5E(&ES(``E+35C*0H`)6,E8SQS='(^("4M$
M-#!S("AV86QU92!I<R``/"5S/BD*`"5C)6,\<W1R/B`E+30P<PH`3E4``$CGE
M##!X`5BM``HD;0`*8```EDZZ`A@@;0`*(E`2$4B!L$%G#B!M``HB2EB*(I!2[
M1&!P(&T`"B904HM*$V=D/RT`$B\M``X0$TB`/P!.NOTJ4$\J`&<.+PLO!4ZZ;
M_#903R9`8#P0$TB`/P!(>@!02&R"5DZZ"RA/[P`*/RT`$B\M``Y.NOTH7$]*H
MK0`49P@@;0`43I!@"C\\``%.NA_05$]@F%BM``I3;0`(2FT`"&X`_V(P!$S?K
M##!.74YU26QL96=A;"!A<F=U;65N="`\)6,^+B`@($QE9V%L(&%R9W5M96YT_
M<R!A<F4Z"@H`3E7__"\$>`!@``$",`3!_``.($#1[0`(+R@`!DZZ"U983RM`"
M__QG``#B,`3!_``.(&T`"#(P"`#N2<)\``]P`#`!8```M$AM__Q.N@$F6$\RS
M!,/\``X@0='M``@B:``",H!@``"F,`3!_``.($#1[0`((F@``C*\``%@``".*
M(&W__%*M__P0$$B`,@3#_``.($'1[0`((F@``C*`8&PP!,'\``X@0-'M``@BE
M:``"(JW__$'Z`&8K2/_\8$XO+?_\,`3!_``.($#1[0`((F@``DZ16$]!^@!%_
M*TC__&`L2'H`/$AL@E9.N@G(4$]@'/\^_U[_=O^6_[2PO`````5DWN.`,#L`0
MZD[[``!21+AM``QM`/[Z*!].74YU``!)3E1%4DY!3"!%4E)/4CH@0D%$($%2O
M1U5-14Y4(%194$4*``!.50``+PI(>@`@3KH**%A/)$!*@&<$2A)F"'`M)%].L
M74YU$!)(@&#T4U=)5$-(05(``$Y5__Y(YP@P)&T`"'@`.WP``?_^)E(,$P`@'
M9PP,$P`)9P8,$P`*9@12BV#J#!,`+68(.WS____^4HL,$P`P9@``F%*+#!,`4
M>&<&#!,`6&9F4HMP,+`3;@8,$P`Y;QAP8;`3;@8,$P!F;PQP0;`3;D0,$P!&.
M;C[)_``0<#"P$VX0#!,`.6X*$!-(@)!\`#!@'G!AL!-N$`P3`'IN"A`32("0U
M?``@8`00$TB`D'P`-]A`4HM@GF`@<#"P$VX:#!,`-VX4R?P`""!+4HL0$$B`A
MD'P`,-A`8.!@('`PL!-N&@P3`#EN%,G\``H@2U*+$!!(@)!\`##80&#@)(LP+
M!,'M__Y,WPP03EU.=2!O``0@"")O``@0V6;\3G4@;P`$(`A*&&;\D<`@"%.`1
M3G5.50``*6T`"(3N0BR$\DAM`!`O+0`,2'H`#DZZ`<1/[P`,3EU.=4Y5``!*)
M;0`(9B0@;(3N2A!G%"!LA.Y2K(3N$!!(@,!\`/].74YU&7P``83R8!A*+(3R!
M9A)3K(3N(&R$[A`02(#`?`#_8-QP_V#83E4``$CG""`D;0`(4VT`#$IM``QO^
M("\M``Y.N@6X.`"P?/__6$]G#B!*4HH0A+A\``IG`F#60A*X?/__9A"U[0`(J
M9@IP`$S?!!!.74YU("T`"&#R3E7__DCG#"`D;0`(0FW__F`R.BT`#&`D+RT`9
M$$ZZ!:0X`+!\__]83V8,,"W__DS?!#!.74YU%(12BE-%2D5FV%)M__XP+?_^2
ML&T`#FW$,"W__F#:3E7__$CG""`D;0`("*H``P`,""H``@`,9QP_//__+PI."
MNA@,2D!<3V<*</],WP003EU.=6`8#&T``0`09A!*DF<,(&H`!)'2(`B1K0`,*
M0JH`!$*2/RT`$"\M``P0*@`-2(`_`$ZZ"'!*@%!/;`1P_V"Z<`!@MDY5__POK
M"B1M``@_/``!0J<0*@`-2(`_`$ZZ"$8K0/_\""H``@`,4$]G#B!2D>H`""`(#
MT:W__&`02I)G#"!J``21TB`(D:W__"`M__PD7TY=3G5.5?]R2.</,"1M``PF(
M;0`0>@`I;0`(A/8@2E**$!!(@#@`9P`"YKA\`"5F``*F0BW_^T(M__I"+?_YC
M.7P`?X3T#!(`*F8(4HH;?``!__L0$DB`4D!![(&H"#```@``9S1";(3T$!)('
M@#(LA/3#_``*T$&0?``P.4"$]%**$!)(@%)`0>R!J`@P``(``&;6&WP``?_Y1
M#!(`;&8(&WP``?_Z4HH@2E**$!!(@#X`2,!@``'0>"5@``(T&WP`___Z8`8;-
M?``!__IX#'P*8!8;?``!__IX`'P08`H;?``!__IX#GP(3KH"5$I`9@`"($AMU
M__P_!C`$2,!![(#ET(@O`#`$2,!![(#.T(@O`$ZZ`F9*0$_O``YG``'T2BW_K
M^V8P2BW_^FP,($M8BR)0,JW__F`<2BW_^F\,($M8BR)0(JW__&`*($M8BR)0P
M,JW__E)%8``!@$(M__H,$@!>9P8,$@!^9@A2BAM\``'_^D'M_W(K2/_T8`H@K
M;?_T4JW_]!"$($I2BA`02(`X`+!\`%UFYB!M__1"$&`<&WP``?_Z&WP`(/]RH
M&WP`"?]S&WP`"O]T0BW_=4ZZ`81*0&8``5!*+?_[9@@@2UB+*U#_]$(M__DP)
M+(3T4VR$]$I`9VY"9R!LA/9.D#@`L'S__U1/9UQ*+?_Z9Q@_!$AM_W).N@7*^
M2H!<3V<$<`%@`G``8!8_!$AM_W).N@6R2H!<3V8$<`%@`G``9PX_/``!(&R$D
M]DZ05$]@&$HM__MF"B!M__12K?_T$(0;?``!__E@ADHM__EG``"\2BW_^V8.#
MOGP`8V<&(&W_]$(04D5@:DHM__EF!CE\``&$]$(M_W(;?``!__I@`/\^D+P`@
M```E9P#^*I"\````'V<`_BZ0O`````MG`/X\D+P````)9P#^)E>`9P#^IE&`]
M9[13@&<`_A!9@&<`_?Q?@&<`_AQ9@&<`_LY;@&<`_@1@-#`$4D!![(&H"#``T
M!```9PAA5$I`9B)@'$)G(&R$]DZ0L$143V<./SP``2!LA/9.D%1/8`1@`/T0C
M2D5F)D)G(&R$]DZ0L'S__U1/9@IP_TS?#/!.74YU/SP``2!LA/9.D%1/,`5@!
MZ$Y5``!"9R!LA/9.D%)`0>R!J`@P``0``%1/9P)@YC\\``$@;(3V3I"P?/__8
M5$]F!G#_3EU.=7``8/A.5?_Z2.<,($ILA/1N"G``3-\$,$Y=3G5";?_Z<``Z@
M`$C`*T#__$)G(&R$]DZ0.`"P?``M5$]F"CM\``'_^E)%8!:X?``K9@1216`,I
M/SP``2!LA/9.D%1/8'!"9R!LA/9.D%1/.``_`"\M``A.N@/D)$!*@%Q/9B@,`
M;0`0`!!F$DJM__QF#+A\`'AG/+A\`%AG-C\\``$@;(3V3I!43V`P,BT`$$C!L
M("W__$ZZ"@XK0/_\(`J0K0`((&T`#!(P``!(@4C!TZW__%)%NFR$]&V*2FW_'
M^F<.(&T`$B`M__Q$@""`8`@@;0`2(*W__#`%8`#_($Y5``!(YP@@)&T`""\*)
M3KH`,C@`L'S__UA/9R(P!$C`8!13D@CJ``,`#'#_3-\$$$Y=3G5@UDJ`9_I9X
M@&?D,`1@ZDY5```O"B1M``@@4K'J``1E#"\*81983R1?3EU.=2!24I(0$$B`&
MP'P`_V#L3E4``$CG"#`D;0`($"H`#,`\`!AG"G#_3-\,$$Y=3G4(J@`"``Q*C
MJ@`(9@@O"DZZ$WY83Q`J``Q(@`@```=G,$'L@BHF2!`K``Q(@,!\`(2P?`"$3
M9@P_//__+PM.NA(V7$_7_````!9![(/BM\AEUC\J`!`O*@`($"H`#4B`/P!.+
MN@20.`!*0%!/;A1*1&8$<`A@`G`0@2H`#'#_8`#_>C`$2,`DJ@`(T*H`""5`[
M``0@4E*2$!!(@,!\`/]@`/]:3E4``"\*3KH2KB1`2H!F"'``)%].74YU+PHO_
M+0`,+RT`"&$&3^\`#&#H3E4``$CG""`O+0`03KH1&$'L@/PD2%A/2A)F$#E\P
M``6'A'``3-\$$$Y=3G4@2B)M``P0&+`99@1*`&;VD"%(@&<$7(I@TC\J``0O+
M+0`(3KH"DC@`L'S__UQ/9@1P`&#$(&T`$!%$``T@;0`0$7P``0`,("T`$&"L[
M3E4``"EM``B$^DAM`!`O+0`,2'H`#DZZ#!9/[P`,3EU.=4Y5```O+(3Z/RT`&
M"$ZZ#]A<3TY=3G5.5?_Z.WS____Z2'C__B\M``A.NA9**T#__%!/9@PY?``!0
MAX1P_TY=3G4P+0`,2,!@."\M__Q.NA9J2'C__R\M``A.NA8:*T#__$_O``QF`
M"CE\``B'A'#_8,Q";?_Z8!S_X/_@_[@``O_@L+P````%9`KC@#`[`.I.^P``'
M+RW__$ZZ%B`P+?_Z6$]@FDY5``!(YPPP0J=(>@"T3KH7UB1`2H!03V8*<`!,G
MWPPP3EU.=2\*3KH6,$ZZ%UHF:@`B(&T`""`(2AAF_)'`4X@Z"%A/2A-G;C\\^
M`#TO"TZZ`'PH`%Q/9T@@1)'+L,5F0#\%+RT`""\+3KH`@DI`3^\`"F8L4H0@>
M1"`(2AAF_)'`4XA22#\(3KH1T"9`($LB1!#99OQ.NA=@(`M43V``_WX@2R`(E
M2AAF_)'`4X@P"%)`2,#7P&".3KH7/G``8`#_7F5N=FER;VYM96YT`"!O``0P)
M+P`($AAG"K(`9O@@"%.`3G5P`$YU,#Q__V`$,"\`#%-`:Q0@;P`$(F\`"+$)$
M9@Q32$H85\C_]G``3G5C!'`!3G5P_TYU3E4``$CG#"`X+0`(3KH2CC`$P?P`'
M!B1`U>R'ADI$;0JX;(/B;`1*DF80.7P``H>$</],WP0P3EU.=3`M``Y(P%.`,
M+P`O+0`*+Q).NA2B*@"PO/____]/[P`,9@Q.NA1*.4"'A'#_8,I"IT*G+Q).&
MNA1^3^\`#&"Z3E4``#\M``P_/`,!+RT`"&$&4$].74YU3E4``$CG#S`D;0`(,
M3KH1_B9LAX9X`&`.,`3!_``&2K,(`&<.4D2X;(/B;>QZ!F```,0(+0`!``QG2
M,$AX__\O"DZZ$^HL`%!/9R`O!DZZ%"(O"DZZ$[!*@%!/9@Y.NA.Z.@"P?`#-:
M9@``C$AX`^TO"DZZ$\@L`$J&4$]F8`@M````#&8$>@%@;$AX`^XO"DZZ$ZHLL
M`%!/9@A.NA-^.@!@5$AX`"%(>@"23KH5EBX`4$]G"B\'3KH3_%A/8!Y(>``!M
M2'H`@B\&3KH3M$AX__]"IR\&3KH3BD_O`!A@)C`M``S`?`4`L'P%`&88+P9.!
MNA+^>@183SE%AX1P_TS?#/!.74YU,`3!_``&)X8(`#`$P?P`!B!`T<LQ;0`,%
M``0(+0`#``QG$$AX``%"IR\&3KH3,$_O``PP!&#"9&]S+FQI8G)A<GD```!.`
M50``2.<,(#@M``A.NA"X,`3!_``&)$#5[(>&2D1M"KAL@^)L!$J29A`Y?``"=
MAX1P_TS?!#!.74YU,"H`!,!\``.P?``!9@HY?``%AX1P_V#@<``P+0`.+P`ON
M+0`*+Q).NA*H*@"PO/____]/[P`,9@Q.NA)>.4"'A'#_8+0@!6"P87!#[(/NM
M1>R#[K7)9@XR/`#X:PAT`"+"4<G__"E/AXHL>``$*4Z'CDCG@(`(+@`$`2EG1
M$$OZ``A.KO_B8`9"I_-?3G-#^@`@3J[^:"E`AY)F#"X\``.`!TZN_Y1@!$ZZ^
M`!I03TYU9&]S+FQI8G)A<GD`2?D``'_^3G5.50``+PI(>0`!```P+(/BP?P`#
M!B\`3KH34BE`AX903V840J=(>0`!``!.NA(<4$\N;(>*3G4@;(>&0F@`!"!LR
MAX8Q?``!`!`@;(>&,7P``0`*(&R'BB`LAXJ0J``$4(`I0(>6(&R'EB"\34%.)
M6$*G3KH3("1`2JH`K%A/9RXO+0`,+RT`""\*3KH`KCE\``&'FB!LAX8`:(``/
M``0@;(>&`&B````*3^\`#&!"2&H`7$ZZ$XI(:@!<3KH3$"E`AYP@;(><2J@`4
M)%!/9Q`@;(><(F@`)"\13KH0WEA/+RR'G"\*3KH"C"ELAYR'H%!/3KH0WB!L!
MAX8@@$ZZ$0P@;(>&(4``!F<62'@#[4AZ`"I.NA#H(&R'AB%```Q03R\LAZ`_1
M+(>D3KK1>D)G3KH.^%!/)%].74YU*@!.50``2.<,,"1M`!`@;0`(2J@`K&<8\
M(&T`""`H`*SE@"@`($0@*``0Y8`F0&`$)FR#Y!`32(!(P-"M``Q4@#E`AZ9"R
MIS`LAZ9(P"\`3KH1Y"E`AZA03V8(3-\,,$Y=3G40$TB`.@`_!2!+4H@O""\L>
MAZA.N@%^,`5(P"!`T>R'J$/Z`400V6;\/RT`#B\*+RR'J$ZZ`3H@;(>H0C!0)
M`#E\``&'I#`%2,#0K(>H)D!2BR1+3^\`%!`32(`Z`+!\`"!G&+I\``EG$KI\K
M``QG#+I\``UG!KI\``IF!%*+8-@,$P`@;7H,$P`B9BY2BR!+4HL0$$B`.@!G7
M'B!*4HH0A;I\`")F$`P3`")F!%*+8`9"*O__8`)@UF`X($M2BQ`02(`Z`&<F&
MNGP`(&<@NGP`"6<:NGP`#&<4NGP`#6<.NGP`"F<(($I2BA"%8,X@2E**0A!*L
M168"4XM2;(>D8`#_6D(20J<P+(>D4D!(P.6`+P!.NA#"*4"'H%!/9@A";(>DO
M8`#^V'H`)FR'J&`D,`5(P.6`(&R'H"&+"``@2R`(2AAF_)'`4X@P"%)`2,#7J
MP%)%NFR'I&W6,`5(P.6`(&R'H$*P"`!@`/Z4(``P/'__8`0P+P`,(&\`!$H8Z
M9OQ32")O``A30!#95\C__&<"0A`@+P`$3G5,[P,```0@"#(O``Q@`A#95\G_^
M_&<&4D%@`D(84<G__$YU2.=P`#0!Q,`F`4A#QL!(0T)#U(-(0,#!2$!"0-""L
M3-\`#DYU3E4``$CG#C`D;0`(0J=(>@".3KH0>BE`AZQ03V8(3-\,<$Y=3G4@.
M;0`,(F@`)"\I``1.NA"^*`!83V=22'H`;2!$+R@`-DZZ$)`F0$J`4$]G-$AX3
M`^TO"TZZ#BXL`%!/9R0@!N6`*@`@125H``@`I"5&`)Q(>`/M2'H`.$ZZ#@HE-
M0`"@4$\O!$ZZ$%Q83R\LAZQ.N@YH0JR'K%A/8(!I8V]N+FQI8G)A<GD`5TE.[
M1$]7`"H`3E7__"\M``A.N@$`*T#__"\M__Q.N@`(4$].74YU3E4``"!M``@PA
M*``*T'P';#\`(&T`"#\0(&T`"#\H``(@;0`(/R@`!"!M``@_*``&(&T`"#`H!
M``A(P.6`0>R!3M"(+P`@;0`(,"@`#$C`Y8!![($RT(@O`$AZ`!A(;(3^3KH`=
M+D'LA/X@"$_O`!I.74YU)7,@)7,@)3)D("4P,F0Z)3`R9#HE,#)D("4T9`H`R
M3E4``"\$*6T`"(482&T`$"\M``Q(>@`:3KH"EC@`(&R%&$(0,`1/[P`,*!].`
M74YU3E4``"!LA1A2K(48$"T`"1"`2(#`?`#_3EU.=4Y5```O+0`(80983TY=.
M3G5.50``2.<.`"!M``@H$'(\(`1.N@6$.4"%''(\(`1.N@50*`!R/"`$3KH%C
M;CE`A1YR/"`$3KH%.B@`<A@@!$ZZ!5@Y0(4@<A@@!$ZZ!20H`'('(`1.N@5"O
M.4"%*"(\```%M2`$3KH%"N6`T+P```!..4"%)B(\```%M2`$3KH%&B@`2H1G<
M'BH\```!;3`LA2;`?``#9@)2A;B%;0B8A5)LA29@WE*$.42%*GP`,`9(P..`,
M0>R!?C(P"`!(P2H!O'P``68,,"R%)L!\``-F`E*%N(5O"IB%4D:\?``,;<XY=
M1H4D.42%(D'LA1P@"$S?`'!.74YU3E7_U$*G2&W_U$AX``%(>@"`3KH-LDI`-
M3^\`$&<22'H`?4ZZ`)(_/``!3KH)UEQ/0J="ITZZ#"0K0/_B.WP`"O_P2&W_H
MU$ZZ#0X@+?_XT+P`!Z$@(CP`#T)`3KH$;M"M__0K0/_\2&W_U$ZZ"](O+?_BX
M3KH,<DJM``A/[P`49P@@;0`((*W__"`M__Q.74YU=&EM97(N9&5V:6-E`'1IU
M;65R(&ES(&YO="!A=F%I;&%B;&4*``!.50``2&T`#"\M``A(>@1@3KH`F$_O(
M``Q.74YU3E4``$CG""`D;0`.#&T`!``29@@@;0`(*!!@'$IM``QO#"!M``AP<
M`#`0*`!@"B!M``@P$$C`*`!";0`22FT`#&P01&T`#$J$;`A$A#M\``$`$C(M'
M``Q(P2`$3KH#D$'L@993BA2P```R+0`,2,$@!$ZZ`X8H`&;:2FT`$F<&4XH4Q
MO``M(`I,WP003EU.=4Y5_R)(YP@P)&T`""9M``Q";?_Z*VT`$/_\($M2BQ`06
M2(`X`&<``NZX?``E9@`"S$(M_S`[?``!__@[?``@__8[?"<0__0@2U*+$!!(.
M@#@`L'P`+68.0FW_^"!+4HL0$$B`.`"X?``P9A`[?``P__8@2U*+$!!(@#@`Q
MN'P`*F88(&W__%2M__P[4/_R($M2BQ`02(`X`&`R0FW_\F`<,"W_\L'\``K07
M1)!\`#`[0/_R($M2BQ`02(`X`#`$4D!![(&H"#```@``9M2X?``N9EH@2U*+.
M$!!(@#@`L'P`*F88(&W__%2M__P[4/_T($M2BQ`02(`X`&`R0FW_]&`<,"W_J
M],'\``K01)!\`#`[0/_T($M2BQ`02(`X`#`$4D!![(&H"#```@``9M0[?``"J
M__"X?`!L9A(@2U*+$!!(@#@`.WP`!/_P8!"X?`!H9@H@2U*+$!!(@#@`,`1(Y
MP&!Z.WP`"/_N8!8[?``*_^Y@#CM\`!#_[F`&.WS_]O_N/RW_\$AM_S`_+?_NC
M+RW__$ZZ_>0K0/_J,"W_\$C`T:W__$_O``Q@7"!M__Q8K?_\(E`K2?_J(`E*Q
M&6;\D\!3B3M)__!@2B!M__Q4K?_\.!!![?\O*TC_ZA"$8"B0O````&-GXE.`R
M9Y*0O`````MG`/]R68!GLE6`9P#_<%>`9P#_<F#,0>W_,)'M_^H[2/_P,"W_R
M\+!M__1O!CMM__3_\$IM__AG:"!M_^H,$``M9PH@;?_J#!``*V8N#&T`,/_V;
M9B93;?_R(&W_ZE*M_^H0$$B`/P!.DK!\__]43V8*</],WPP03EU.=6`6/RW_D
M]DZ2L'S__U1/9@1P_V#D4FW_^C`M__)3;?_RL&W_\&[<0FW_[F`@(&W_ZE*M>
M_^H0$$B`/P!.DK!\__]43V8$</]@L%)M_^X@;?_J2A!G"C`M_^ZP;?_T;<XP8
M+?_NT6W_^DIM__AF*&`8/SP`($Z2L'S__U1/9@9P_V``_WA2;?_Z,"W_\E-M%
M__*P;?_P;MI@%C\$3I*P?/__5$]F!G#_8`#_4E)M__I@`/T(,"W_^F``_T)(3
MYT@`0H1*@&H$1(!21$J!:@9$@0I$``%A/DI$9P)$@$S?`!)*@$YU2.=(`$*$W
M2H!J!$2`4D1*@6H"1(%A&B`!8-@O`6$2(`$B'TJ`3G4O`6$&(A]*@$YU2.<PX
M`$A!2D%F($A!-@$T`$)`2$"`PR(`2$`R`H+#,`%"04A!3-\`#$YU2$$F`2(`'
M0D%(04A`0D!T#]"`TX&V@6($DH-20%'*__),WP`,3G5.50``2&R"0#\M``A.B
MN@`(7$].74YU3E4``"\$."T`""\M``H_!$ZZ`#"X?``*7$]F)"!M``H0*``,-
M2(`(```'9Q0_//__+RT`"DZZ`/1<3R@?3EU.=6#X3E4``"\*)&T`"B!2L>H`I
M!&48,"T`",!\`/\_`"\*3KH`R%Q/)%].74YU(%)2DA`M``D0@$B`P'P`_V#H\
M3E4``"\*0>R"*B1(($K5_````!8O"&$06$]![(/BM<AEZB1?3EU.=4Y5``!([
MYP@@)&T`"'@`(`IF"G#_3-\$$$Y=3G5**@`,9U`(*@`"``QG##\\__\O"F%2E
M.`!<3Q`J``U(@#\`3KH%'(A`""H``0`,5$]G"B\J``A.N@(N6$\(*@`%``QG?
M$B\J`!).N@+`+RH`$DZZ`A103T*20JH`!$*J``A"*@`,,`1@D$Y5__Y(YP@@Z
M)&T`"$'Z_T8I2(>P""H`!``,9PIP_TS?!!!.74YU""H``@`,9S`@4I'J``@X4
M"#\$+RH`"!`J``U(@#\`3KH"@+!$4$]G$`CJ``0`#$*20JH`!'#_8,`,;?__:
M``QF$`BJ``(`#$*20JH`!'``8*A*J@`(9@@O"DZZ`)I83PQJ``$`$&8J&VT`)
M#?__/SP``4AM__\0*@`-2(`_`$ZZ`B*P?``!4$]FH#`M``Q@`/]J)*H`"#`JH
M`!!(P-"J``@E0``$".H``@`,(%)2DA`M``T0@$B`P'P`_V``_SY.50``+PI!P
M[((J)$A**@`,9QC5_````!9![(/BM<AE"'``)%].74YU8.)"DD*J``1"J@`(!
M(`I@ZDY5__PO"B1M``@_/`0`3KH`P"M`__Q43V88-7P``0`0($K1_`````XE>
M2``()%].74YU-7P$```0".H``0`,)6W__``($"H`#4B`/P!.N@#B2D!43V<&L
M`"H`@``,8,Y.50``2.<`,"1LA3!@%"92("H`!%"`+P`O"DZZ!9103R1+(`IF<
MZ$*LA3!,WPP`3EU.=4Y5```O"D'Z_\8I2(>T0J<@+0`(4(`O`$ZZ!2`D0$J`0
M4$]F"'``)%].74YU)*R%,"5M``@`!"E*A3`@"E"`8.9.50``<``P+0`(+P!A!
MLEA/3EU.=4Y5``!(YP`PE\LD;(4P8`X@;0`(48BQRF<2)DHD4B`*9NYP_TS?^
M#`!.74YU(`MG!":28`0I4H4P("H`!%"`+P`O"DZZ!.9P`%!/8-A.50``+PHPG
M+0`(P?P`!B1`U>R'ADIM``AM#C`M``BP;(/B;`1*DF8..7P``H>$</\D7TY=I
M3G4P+0`(P?P`!B!LAX8O,`@`3KH"QDJ`6$]G!'`!8`)P`&#83E4``"\M``A.G
MN@*02H!83V8.3KH"FCE`AX1P_TY=3G5P`&#X3E4``$CG#"`X+0`(3KH`<#`$5
MP?P`!B1`U>R'ADI$;0JX;(/B;`1*DF80.7P``H>$</],WP0P3EU.=3`J``3`A
M?``#9@HY?``%AX1P_V#D<``P+0`.+P`O+0`*+Q).N@*0*@"PO/____]/[P`,.
M9@Q.N@(:.4"'A'#_8+@@!6"T3E7__$AX$`!"ITZZ!%@K0/_\"```#%!/9Q)*Q
M;(>:9@@@+?_\3EU.=4ZZ``9P`&#T3E4``$AX``1(>@`<3KH!_B\`3KH"+#\\O
M``%.N@`.3^\`#DY=3G5>0PH`3E4``$JLA[!G!B!LA[!.D#\M``A.N@`(5$]./
M74YU3E7__"\$,"T`"$C`*T#__$JLAX9G*'@`8`H_!$ZZ`/Y43U)$N&R#XFWP@
M,"R#XL'\``8O`"\LAX9.N@,R4$]*K(>T9P8@;(>T3I!*K(/H9PHO+(/H3KH!;
MDEA/2JR'N&<((&R'N""LA[Q*K(?`9PHO+(?`3KH!NEA/2JR'Q&<*+RR'Q$ZZ1
M`:I83TJLA\AG"B\LA\A.N@&:6$]*K(?,9PHO+(?,3KH!BEA/+'@`!`@N``0!!
M*6<4+PU+^@`*3J[_XBI?8`9"I_-?3G-*K(><9C!*K(>H9R@P+(>F2,`O`"\LU
MAZA.N@**,"R'I%)`2,#E@"\`+RR'H$ZZ`G9/[P`08`Y.N@)@+RR'G$ZZ`MA88
M3R`M__PN;(>*3G4H'TY=3G5.50``2.<.(#@M``@P!,'\``8D0-7LAX9*1&T*5
MN&R#XFP$2I)F$#E\``*'A'#_3-\$<$Y=3G4(*@`'``1F""\23KH`"EA/0I)PR
M`&#B(B\`!"QLAY).[O_<(B\`!"QLAY).[O^"(B\`!"QLAY).[O^X+&R'DD[N(
M_\HL;(>23N[_?"(O``0L;(>23N[_*$SO``8`!"QLAY).[O^L3.\`!@`$+&R';
MDD[N_^(L;(>23N[_Q$SO``X`!"QLAY).[O_63.\`#@`$+&R'DD[N_[Y.^@`"O
M(B\`!"QLAY).[O^F3.\`#@`$+&R'DD[N_]!(YP$$3.\@@``,+&R'CDZN_Y1,3
MWR"`3G4B;P`$+&R'CD[N_CY.^@`"(F\`!"QLAXY.[OYB3E4``$CG""!(>/__<
M3KH`T"@`L+S_____6$]F"G``3-\$$$Y=3G5(>0`!``%(>``B3KH`N"1`2H!0_
M3V8,+P1.N@$"<`!83V#6)6T`"``*%6T`#P`)%7P`!``(0BH`#A5$``]"ITZZZ
M`*PE0``02JT`"%A/9PHO"DZZ`%I83V`*2&H`%$ZZ`-983R`*8)).50``+PHD+
M;0`(2JH`"F<(+PI.N@#Z6$\5?`#_``@E?/____\`%'``$"H`#R\`3KH`ADAX#
M`"(O"DZZ`&A/[P`,)%].74YU(F\`!"QLAXY.[OZ>("\`!"QLAXY.[OZV3OH`8
M`DSO``,`!"QLAXY.[O\Z2.<#`")O``PL;(>.3J[^.$S?`,!.=4[Z``(B;P`$A
M+&R'CD[N_MI.^@`"+&R'CD[N_WQ.^@`"(F\`!"`O``@L;(>.3N[_+B`O``0LZ
M;(>.3N[^L"!O``0L;(>.3N[^C"!O``0@B%B00J@`!"%(``A.=2!O``1,[P(!'
M``@B+P`0+&R'CD[N_D0L;(>.(F\`!"`O``A.[OW8+&R'CD[N_W8B;P`$+&R'0
MCD[N_I@B;P`$+&R'CD[N_H9,[P`#``0L;(>.3N[^SB!O``0L;(>.3N[^@$SO.
M`P``!"QLAZQ.[O^@(&\`!"QLAZQ.[O^F(&\`!"QLAZQ.[O^R``````/L````F
M`0````$``#+F`````````_(```/J````^P```B@```(^````!````!(`X0``8
M!U@````>````'P!C```'<@```#<````X`.4```=<````20```$H`Y@``!W@`G
M``!4````50!G```'7@```&T```!N`.X```=T````A````(4`\```!V8```"4S
M````E0!R```':````*,```"D`',```=N````N````+D`=```!W````#+````,
MS`!X```':@```-X```#?`'D```=L````]P```/@`_P`!``'__P``````````,
M'L@``$%"0T1%1F%B8V1E9CDX-S8U-#,R,3``"@L,#0X/"@L,#0X/"0@'!@4$:
M`P(!``!R``````!R*P````)W`````P%W*P```P)A````"0%A*P``"0)X````S
M!0%X*P``!0(```````!3=6X`36]N`%1U90!7960`5&AU`$9R:0!3870`2F%NQ
M`$9E8@!-87(`07!R`$UA>0!*=6X`2G5L`$%U9P!397``3V-T`$YO=@!$96,`Y
M`!\`'``?`!X`'P`>`!\`'P`>`!\`'@`?,#$R,S0U-C<X.6%B8V1E9@```"`@/
M("`@("`@(#`P,#`P("`@("`@("`@("`@("`@("`@D$!`0$!`0$!`0$!`0$!`@
M0`P,#`P,#`P,#`Q`0$!`0$!`"0D)"0D)`0$!`0$!`0$!`0$!`0$!`0$!`0%`"
M0$!`0$`*"@H*"@H"`@("`@("`@("`@("`@("`@("`D!`0$`@````````````$
M``````$``````0`````````````````````!`0````$`````````````````%
M`````0(````!````````````````````````````````````````````````$
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````````````````
M`````````````````````````````````````!0````````````````#[```#
M``X````!``````````0````2````(````"X````\````2@```%@```!F````W
M=````((```"0````G@```*P````;``````````@````,````%@```!H````D3
M````*````#(````V````0````$0```!.````4@```%P```!@````:@```&X`(
M``!X````?````(8```"*````E````)@```"B````I@```+````"T````Q@``B
2``````/R```#ZP````$```/R9
``
end
size 19548
SHAR_EOF
cat << \SHAR_EOF > psclear.uu

begin 644 psclear
!!```$
``
end
size 1
SHAR_EOF
#	End of shell archive
exit 0
-- 
Bob Page, U of Lowell CS Dept.  page@swan.ulowell.edu  ulowell!page
Have five nice days.