[comp.os.minix] ash for PC Minix

simmy@ocean.ocean.fsu.edu (Simmule Turner) (09/26/89)

This is the license/man-page/binary of a Bourne shell, that I found
will rumaging around the net.  I'll post the source, and my patches
to get it running once I clean things up.
The CRC of ash is '58291 2080  ash'.
-------- Cut here for ash.sh ----------
echo x - LICENSE
sed '/^X/s///' > LICENSE << '/'
X		    ASH GENERAL PUBLIC LICENSE
X
X  1. You may copy and distribute ash code or code derived from it in
Xsource or object form, provided that you conspicuously and appropriately
Xpublish on each copy a valid copyright notice "Copyright 1989 by Kenneth
XAlmquist." (or with whatever year is appropriate); keep intact the
Xnotices on all files that refer to this License Agreement and to the
Xabsence of any warranty; and give any other recipients of the ash program
Xa copy of this License Agreement along with the program.
X
X  2. You may not copy, sublicense, distribute or transfer ash except as
Xexpressly provided under this License Agreement.  Any attempt otherwise
Xto copy, sublicense, distribute or transfer ash is void and your rights
Xto use ash under this License agreement shall be automatically terminated.
XHowever, parties who have received computer software programs from you
Xwith this License Agreement will not have their licenses terminated so
Xlong as such parties remain in full compliance.
X
X
X			   NO WARRANTY
X
X  Because ash is licensed free of charge, I provide absolutely no
Xwarranty, to the extent permitted by applicable state law.  Except
Xwhen otherwise stated in writing, Kenneth Almquist and/or other
Xparties provide ash "as is" without warranty of any kind, either
Xexpressed or implied, including, but not limited to, the implied
Xwarranties of merchantability and fitness for a particular purpose.
XThe entire risk as to the quality and performance of the program is
Xwith you.  Should the ash program prove defective, you assume the cost
Xof all necessary servicing, repair or correction.
X
X In no event unless required by applicable law will Kenneth Almquist
Xand/or any other party who may modify and redistribute ash as permitted
Xabove, be liable to you for damages, including any lost profits, lost
Xmonies, or other special, incidental or consequential damages arising
Xout of the use or inability to use (including but not limited to loss
Xof data or data being rendered inaccurate or losses sustained by third
Xparties or a failure of the program to operate with programs provided
Xby other parties) the program, even if you have been advised of the
Xpossibility of such damages, or for any claim by any other party.
/
echo x - ash.1
sed '/^X/s///' > ash.1 << '/'
X.TH ASH 1
X.\"	Copyright (C) 1989 by Kenneth Almquist.
X.de h \" subheading
X.sp
X.ti -0.3i
X.B "\\$1"
X.PP
X..
X.de d \" begin display
X.sp
X.in +4
X.nf
X..
X.de e \" end display
X.in -4
X.fi
X.sp
X..
X.de c \" command, etc.
X.br
X.HP 5
X\fB\\$1\fR
X.br
X..
X.de b \" begin builtin command
X.HP 5
X.B \\$1
X..
X.SH NAME
Xash \- a shell
X.SH SYNOPSIS
X.B ash
X[
X.B -efIijnsxz
X] [
X.B +efIijnsxz
X] [
X.B -c
X.I command
X] [
X.I arg
X] ...
X.SH COPYRIGHT
X.if n Copyright (C) 1989 by Kenneth Almquist.
X.if t Copyright \(co 1989 by Kenneth Almquist.  
X.SH DESCRIPTION
X.I Ash
Xis a version of
X.I sh
Xwith features similar to those of the System V shell.
XThis manual page lists all the features of
X.I ash
Xbut concentrates on the ones not in other shells.
X.h "Invocation"
XIf the
X.B -c
Xoptions is given, then the shell executes the specified shell command.
XThe
X.B -s
Xflag cause the shell to read commands from the standard input (after
Xexecuting any command specified with the
X.B -c
Xoption.
XIf neither the
X.B -s
Xor
X.B -c
Xoptions are set, then the first
X.I arg
Xis taken as the name of a file to read commands from.
XIf this is impossible because there are no arguments following
Xthe options, then
X.I ash
Xwill set the
X.B -s
Xflag and will read commands from the standard input.
X.PP
XThe shell sets the initial value of the positional parameters from the
X.IR arg s
Xremaining after any
X.I arg
Xused as the name of a file of commands is deleted.
X.PP
XThe flags (other than
X.BR -c )
Xare set by preceding them with ``-'' and cleared by preceding them
Xwith ``+''; see the
X.I set
Xbuiltin command for a list of flags.
XIf no value is specified for the
X.B -i
Xflag, the
X.B -s
Xflag is set, and the standard input and output of the shell
Xare connected to terminals, then the
X.B -i
Xflag will be set.
XIf no value is specified for the
X.B -j
Xflag, then the
X.B -j
Xflag will be set if the
X.B -i
Xflag is set.
X.PP
XWhen the shell is invoked with the
X.B -c
Xoption, it is good practice to include the
X.I -i
Xflag if the command was entered interactively by a user.
XFor compatibility with the System V shell, the
X.I -i
Xoption should come after the
X.B -c
Xoption.
X.PP
XIf the first character of argument zero to the shell is ``-'',
Xthe shell is assumed to be a login shell, and the files
X.B /etc/profile
Xand
X.B .profile
Xare read if they exist.
XIf the environment variable SHINIT is set on entry to the shell,
Xthe commands in SHINIT are normally parsed and executed.  SHINIT is
Xnot examined if the shell is a login shell, or if it the shell is running a
Xshell procedure.   (A shell is considered to be running a shell
Xprocedure if neither the
X.B -s
Xnor the
X.B -c
Xoptions are set.)
X.h "Control Structures"
XA
X.I list
Xis a sequence of zero or more commands separated by newlines,
Xsemicolons, or ampersands, and optionally terminated by one of these
Xthree characters.  (This differs from the System V shell, which
Xrequires a list to contain at least one command in most cases.)  The
Xcommands in a list are executed in the order they are written.
XIf command is followed by an ampersand, the shell starts the command
Xand immediately proceed onto the next command; otherwise it waits
Xfor the command to terminate before proceeding to the next one.
X.PP
X``&&'' and ``||'' are binary operators.
X``&&'' executes the first command, and then executes the second command
Xiff the exit status of the first command is zero.  ``||'' is similar,
Xbut executes the second command iff the exit status of the first command
Xis nonzero.  ``&&'' and ``||'' both have the same priority.
X.PP
XThe ``|'' operator is a binary operator which feeds the standard output
Xof the first command into the standard input of the second command.
XThe exit status of the ``|'' operator is the exit status of the second
Xcommand.  ``|'' has a higher priority than ``||'' or ``&&''.
X.PP
XAn
X.I if
Xcommand looks like
X.d
X\fBif\fR list
X\fBthen\fR	list
X.ti -\w'[ 'u
X[ \fBelif\fR list
X  \fBthen\fR	list ] ...
X.ti -\w'[ 'u
X[ \fBelse\fR	list ]
X\fBfi\fR
X.e
X.PP
XA
X.I while
Xcommand looks like
X.d
X\fBwhile\fR list
X\fBdo\fR	list
X\fBdone\fR
X.e
XThe two lists are executed repeatedly while the exit status of the first
Xlist is zero.  The
X.I until
Xcommand is similar, but has the word
X.B until
Xin place of
X.B while
X repeats until the exit status of the first list
Xis zero.
X.PP
XThe
X.I for
Xcommand looks like
X.d
X\fBfor\fR variable \fBin\fR word...
X\fBdo\fR	list
X\fBdone\fR
X.e
XThe words are expanded, and then the list is executed repeatedly with
Xthe variable set to each word in turn.
X.B do
Xand
X.B done
Xmay be replaced with
X``{'' and ``}''.
X.PP
XThe
X.I break
Xand
X.I continue
Xcommands look like
X.d
X\fBbreak\fR [ num ]
X\fBcontinue\fR [ num ]
X.e
X.I Break
Xterminates the
X.I num
Xinnermost
X.I for
Xor
X.I while
Xloops.
X.I Continue
Xcontinues with the next iteration of the
X.IRnum'th
Xinnermost loop.
XThese are implemented as builtin commands.
X.PP
XThe
X.I case
Xcommand looks like
X.d
X\fBcase\fR word \fBin\fR
Xpattern\fB)\fR list \fB;;\fR
X\&...
X\fBesac\fR
X.e
XThe pattern can actually be one or more patterns (see
X.I Patterns
Xbelow), separated by ``|'' characters.
X.PP
XCommands may be grouped by writing either
X.d
X\fB(\fRlist\fB)\fR
X.e
Xor
X.d
X\fB{\fR list; \fB}\fR
X.e
XThe first of these executes the commands in a subshell.
X.PP
XA function definition looks like
X.d
Xname \fB( )\fR command
X.e
XA function definition is an executable statement; when executed it installs
Xa function named
X.B name
Xand returns an exit status of zero.
XThe command is normally a list enclosed between ``{'' and ``}''.
X.PP
XVariables may be declared to be local to a function by using a
X.I local
Xcommand.  This should appear as the first staement of a function,
Xand looks like
X.d
X\fBlocal\fR [ variable | \fB-\fR ] ...
X.e
X.I Local
Xis implemented as a builtin command.
X.PP
XWhen a variable is made local, it inherits the initial value and
Xexported and readonly flags from the variable with the same name in the
Xsurrounding scope, if there is one.  Otherwise, the variable is
Xinitially unset.
X.I Ash
Xuses dynamic scoping, so that if you make the variable
X.B x
Xlocal to function
X.IR f ,
Xwhich then calls function
X.IR g ,
Xreferences to the variable
X.B x
Xmade inside
X.I g
Xwill refer to the variable
X.B x
Xdeclared inside
X.IR f ,
Xnot to the global variable named
X.BR x .
X.PP
XThe only special parameter than can be made local is ``\fB-\fR''.
XMaking ``\fB-\fR'' local any shell options that are changed via the
X.I set
Xcommand inside the function to be restored to their original values
Xwhen the function returns.
X.PP
XThe
X.I return
Xcommand looks like
X.d
X\fBreturn\fR [ exitstatus ]
X.e
XIt terminates the currently executing function.
X.I Return
Xis implemented as a builtin command.
X.h "Simple Commands"
XA simple command is a sequence of words.  The execution of a simple
Xcommand proceeds as follows.  First, the leading words of the form
X``name=value'' are stripped off and assigned to the environment of
Xthe command.  Second, the words are expanded.  Third, the first
Xremaining word is taken as the command name that command is located.
XFourth, any redirections are performed.  Fifth, the command is
Xexecuted.  We look at these operations in reverse order.
X.PP
XThe execution of the command varies with the type of command.
XThere are three types of commands:  shell functions, builtin commands,
Xand normal programs.
X.PP
XWhen a shell function is executed, all of the shell positional parameters
X(except $0, which remains unchanged) are set to the parameters to the shell
Xfunction.  The variables which are explicitly placed in the environment
Xof the command (by placing assignments to them before the function name)
Xare made local to the function and are set to values given.
XThen the command given in the function definition is executed.
XThe positional parameters are restored to their original values when
Xthe command completes.
X.PP
XShell builtins are executed internally to the shell, without spawning
Xa new process.
X.PP
XWhen a normal program is executed, the shell runs the program, passing
Xthe parameters and the environment to the program.  If the program is
Xa shell procedure, the shell will interpret the program in a subshell.
XThe shell will reinitialize itself in this case, so that the effect
Xwill be as if a new shell had been invoked to handle the shell procedure,
Xexcept that the location of commands located in the parent shell will
Xbe remembered by the child.  If the program is a file beginning with
X``#!'', the remainder of the first line specifies an interpreter for
Xthe program.  The shell (or the operating system, under Berkeley UNIX)
Xwill run the interpreter in this case.  The arguments to the interpreter
Xwill consist of any arguments given on the first line of the program,
Xfollowed by the name of the program, followed by the arguments passed
Xto the program.
X.h "Redirection"
XInput/output redirections can be intermixed with the words in a simple
Xcommand and can be placed following any of the other commands.  When
Xredirection occurs, the shell saves the old values of the file descriptors
Xand restores them when the command completes.  The ``<'', ``>'', and ``>>''
Xredirections open a file for input, output, and appending, respectively.
XThe ``<&digit'' and ``>&digit'' makes the input or output a duplicate
Xof the file descriptor numbered by the digit.  If a minus sign is used
Xin place of a digit, the standard input or standard output are closed.
X.PP
XThe ``<<\ word'' redirection
Xtakes input from a
X.I here
Xdocument.
XAs the shell encounters ``<<'' redirections, it collects them.  The
Xnext time it encounters an unescaped newline, it reads the documents
Xin turn.  The word following the ``<<'' specifies the contents of the
Xline that terminates the document.  If none of the quoting methods
X('', "", or \e) are used to enter the word, then the document is treated
Xlike a word inside double quotes:  ``$'' and backquote are expanded
Xand backslash can be used to escape these and to continue long lines.
XThe word cannot contain any variable or command substitutions, and
Xits length (after quoting) must be in the range of 1 to 79 characters.
XIf ``<<-'' is used in place of ``<<'', then leading tabs are deleted
X>from the lines of the document.  (This is to allow you do indent shell
Xprocedures containing here documents in a natural fashion.)
X.PP
XAny of the preceding redirection operators may be preceded by a single
Xdigit specifying the file descriptor to be redirected.  There cannot
Xbe any white space between the digit and the redirection operator.
X.h "Path Search"
XWhen locating a command, the shell first looks to see if it has a
Xshell function by that name.  Then, if PATH does not contain an
Xentry for "%builtin", it looks for a builtin command by that name.
XFinally, it searches each entry in PATH in turn for the command.
X.PP
XThe value of the PATH variable should be a series of entries separated
Xby colons.
XEach entry consists of a directory name, or a directory name followed
Xby a flag beginning with a percent sign.
XThe current directory should be indicated by an empty directory name.
X.PP
XIf no percent sign is present, then the entry causes the shell to
Xsearch for the command in the specified directory.  If the flag is
X``%builtin'' then the list of shell builtin commands is searched.
XIf the flag is ``%func'' then the directory is searched for a file which
Xis read as input to the shell.  This file should define a function
Xwhose name is the name of the command being searched for.
X.PP
XCommand names containing a slash are simply executed without performing
Xany of the above searches.
X.h "The Environment"
XThe environment of a command is a set of name/value pairs.  When the
Xshell is invoked, it reads these names and values, sets the shell
Xvariables with these names to the corresponding values, and marks
Xthe variables as exported.  The
X.I export
Xcommand can be used to mark additional variables as exported.
X.PP
XThe environment of a command is constructed by constructing name/value
Xpairs from all the exported shell variables, and then modifying this
Xset by the assignments which precede the command, if any.
X.h "Expansion"
XThe process of evaluating words when a shell procedure is executed is
Xcalled
X.IR expansion .
XExpansion consists of four steps:  variable substitution, command
Xsubstitution, word splitting, and file name generation.  If a word
Xis the expression following the word
X.B case
Xin a case statement, the file name
Xwhich follows a redirection symbol, or an assignment to the environment
Xof a command, then the word cannot be split into multiple words.  In
Xthese cases, the last two steps of the expansion process are omitted.
X.h "Variable Substitution"
XTo be written.
X.h "Command Substitution"
X.I Ash
Xaccepts two syntaxes for command substitution:
X.b
X`\fIlist\fR`
X.e
Xand
X.b
X$(\fIlist\fR)
X.e
XEither of these may be included in a word.
XDuring the command substitution process, the command (syntactly a
X.IR list )
Xwill be executed and anything that the command writes to the standard
Xoutput will be captured by the shell.  The final newline (if any) of
Xthe output will be deleted; the rest of the output will be substituted
Xfor the command in the word.
X.h "Word Splitting"
XWhen the value of a variable or the output of a command is substituted,
Xthe resulting text is subject to word splitting, unless the dollar sign
Xintroducing the variable or backquotes containing the text were enclosed
Xin double quotes.  In addition, ``$@'' is subject to a special type of
Xsplitting, even in the presence of double quotes.
X.PP
XAsh uses two different splitting algorithms.  The normal approach, which
Xis intended for splitting text separated by which space, is used if the
Xfirst character of the shell variable IFS is a space.  Otherwise an alternative
Xexperimental algorithm, which is useful for splitting (possibly empty)
Xfields separated by a separator character, is used.
X.PP
XWhen performing splitting, the shell scans the replacement text looking
Xfor a character (when IFS does not begin with a space) or a sequence of
Xcharacters (when IFS does begin with a space), deletes the character or
Xsequence of characters, and spits the word into two strings at that
Xpoint.  When IFS begins with a space, the shell deletes either of the
Xstrings if they are null.  As a special case, if the word containing
Xthe replacement text is the null string, the word is deleted.
X.PP
XThe variable ``$@'' is special in two ways.  First, splitting takes
Xplace between the positional parameters, even if the text is enclosed
Xin double quotes.  Second, if the word containing the replacement
Xtext is the null string and there are no positional parameters, then
Xthe word is deleted.  The result of these rules is that "$@" is
Xequivalent to "$1" "$2" ... "$\fIn\fR", where \fIn\fR is the number of
Xpositional parameters.  (Note that this differs from the System V shell.
XThe System V documentation claims that "$@" behaves this way; in fact
Xon the System V shell "$@" is equivalent to "" when there are no
Xpositional paramteters.)
X.h "File Name Generation"
XUnless the
X.B -f
Xflag is set, file name generation is performed after word splitting is
Xcomplete.  Each word is viewed as a series of patterns, separated by
Xslashes.  The process of expansion replaces the word with the names of
Xall existing files whose names can be formed by replacing each pattern
Xwith a string that matches the specified pattern.  There are two
Xrestrictions on this:  first, a pattern cannot match a string containing
Xa slash, and second, a pattern cannot match a string starting with a
Xperiod unless the first character of the pattern is a period.
X.PP
XIf a word fails to match any files and the
X.B -z
Xflag is not set, then the word will be left unchanged (except that the
Xmeta-characters will be converted to normal characters).  If the
X.B -z
Xflag is set, then the word is only left unchanged if none
Xof the patterns contain a character that can match anything besides
Xitself.  Otherwise the
X.B -z
Xflag forces the word to be replaced with the names of the files that it
Xmatches, even if there are zero names.
X.h "Patterns"
XA
X.I pattern
Xconsists of normal characters, which match themselves, and meta-characters.
XThe meta-characters are ``!'', ``*'', ``?'', and ``[''.  These characters lose
Xthere special meanings if they are quoted.  When command or variable
Xsubstitution is performed and the dollar sign or back quotes are not
Xdouble quoted, the value of the variable or the output of the command
Xis scanned for these characters and they are turned into meta-characters.
X.PP
XTwo exclamation points at the beginning of a pattern function as a ``not''
Xoperator, causing the pattern to match any string that the remainder of
Xthe pattern does
X.I not
Xmatch.  Other occurances of exclamation points in a pattern match
Xexclamation points.  Two exclamation points are required rather than one
Xto decrease the incompatibility with the System V shell (which does not
Xtreat exclamation points specially).
X.PP
XAn asterisk (``*'') matches any string of characters.
XA question mark matches any single character.
XA left bracket (``['') introduces a character class.  The end of the
Xcharacter class is indicated by a ``]''; if the ``]'' is missing then
Xthe ``['' matches a ``['' rather than introducing a character class.
XA character class matches any of the characters between the square
Xbrackets.  A range of characters may be specified using a minus sign.
XThe character class may be complemented by making an exclamation point
Xthe first character of the character class.
X.PP
XTo include a ``]'' in a character class, make it the first character listed
X(after the ``!'', if any).
XTo include a minus sign, make it the first or last character listed.
X.h "The /u Directory"
XBy convention, the name ``/u/user'' refers to the home directory of the
Xspecified user.  There are good reasons why this feature should be supported
Xby the file system (using a feature such as symbolic links) rather than
Xby the shell, but
X.I ash
Xis capable of performing this mapping if the file system doesn't.
XIf the mapping is done by
X.IR ash ,
Xsetting the
X.B -f
Xflag will turn it off.
X.h "Character Set"
X.I Ash
Xsilently discards nul characters.  Any other character will be handled
Xcorrectly by
X.IR ash ,
Xincluding characters with the high order bit set.
X.h "Job Names and Job Control"
XThe term
X.I job
Xrefers to a process created by a shell command, or in the case of a
Xpipeline, to the set of processes in the pipeline.  The ways to refer
Xto a job are:
X.b
X%\fInumber\fR
X%\fIstring\fR
X%%
X\fIprocess_id\fR
X.e
XThe first form identifies a job by job number.
XWhen a command is run,
X.I ash
Xassigns it a job number
X(the lowest unused number is assigned).
XThe second form identifies a job by giving a prefix of the command used
Xto create the job.  The prefix must be unique.  If there is only one job,
Xthen the null prefix will identify the job, so you can refer to the job
Xby writing ``%''.  The third form refers to the \fIcurrent job\fR.  The
Xcurrent job is the last job to be stopped while it was in the foreground.
X(See the next paragraph.)  The last form identifies a job by giving the
Xprocess id of the last process in the job.
X.PP
XIf the operating system that
X.I ash
Xis running on supports job control,
X.I ash
Xwill allow you to use it.
XIn this case, typing the suspend character (typically ^Z) while running
Xa command will return you to
X.I ash
Xand will make the suspended command the current job.  You can then continue
Xthe job in the background by typing
X.IR bg ,
Xor you can continue it in the foreground by typing
X.IR fg .
X.h "Atty"
XIf the shell variable ATTY is set, and the shell variable TERM is not
Xset to ``emacs'', then \fIash\fR generates appropriate escape sequences
Xto talk to
X.IR atty (1).
X.h "Exit Statuses"
XBy tradition, an exit status of zero means that a command has succeeded
Xand a nonzero exit status indicates that the command failed.  This is
Xbetter than no convention at all, but in practice it is extremely useful
Xto allow commands that succeed to use the exit status to return information
Xto the caller.  A variety of better conventions have been proposed, but
Xnone of them has met with universal approval.  The convention used by
X\fIash\fR and all the programs included in the \fIash\fR distribution is
Xas follows:
X.ta 1i,2i
X.nf
X	0	Success.
X	1	Alternate success.
X	2	Failure.
X	129-...	Command terminated by a signal.
X.fi
XThe \fIalternate success\fR return is used by commands to indicate various
Xconditions which are not errors but which can, with a little imagination,
Xbe conceived of as less successful than plain success.  For example,
X.I test
Xreturns 1 when the tested condition is false and
X.I getopts
Xreturns 1 when there are no more options.
XBecause this convention is not used universally, the
X.B -e
Xoption of
X.I ash
Xcauses the shell to exit when a command returns 1 even though that
Xcontradicts the convention described here.
X.PP
XWhen a command is terminated by a signal, the uses 128 plus the signal
Xnumber as the exit code for the command.
X.h "Builtin Commands"
XThis concluding section lists the builtin commands which are builtin
Xbecause they need to perform some operation that can't be performed by a
Xseparate process.  In addition to these, there are several other commands
X.RI ( catf ,
X.IR echo ,
X.IR expr ,
X.IR line ,
X.IR nlecho ,
X.IR test ,
X.RI  `` : '',
Xand
X.IR true )
Xwhich can optionally be compiled into the shell.  The builtin
Xcommands described below that accept options use the System V Release 2
X.IR getopt (3)
Xsyntax.
X.sp
X.b bg
X[
X.I job
X] ...
X.br
XContinue the specified jobs (or the current job if no jobs are given)
Xin the background.
XThis command is only available on systems with Bekeley job control.
X.b bltin
X.IR "command arg" ...
X.br
XExecute the specified builtin command.  (This is useful when you have a
Xshell function with the same name as a builtin command.)
X.b cd
X[
X.I directory
X]
X.br
XSwitch to the specified directory (default $HOME).
XIf the an entry for CDPATH appears in the environment of the cd command
Xor the shell variable CDPATH is set and the directory name does not
Xbegin with a slash, then the directories listed in CDPATH will be
Xsearched for the specified directory.  The format of CDPATH is the
Xsame as that of PATH.
XIn an interactive shell, the cd command will print out the name of the
Xdirectory that it actually switched to if this is different from the
Xname that the user gave.  These may be different either because
Xthe CDPATH mechanism was used or because a symbolic link was crossed.
X.b ".\fI\h'0.1i'file"
X.br
XThe commands in the specified file are read and executed by the shell.
XA path search is not done to find the file because the directories in
XPATH generally contain files that are intended to be executed, not read.
X.b eval
X.IR string ...
X.br
XThe strings are parsed as shell commands and executed.
X(This differs from the System V shell, which concatenates the arguments
X(separated by spaces) and parses the result as a single command.)
X.b exec
X[
X.IR "command arg" ...
X]
X.br
XUnless
X.I command
Xis omitted,
Xthe shell process is replaced with the specified program (which must be a real
Xprogram, not a shell builtin or function).
XAny redirections on the exec command are marked as permanent, so that they
Xare not undone when the exec command finishes.
XIf the command is not found, the exec command causes the shell to exit.
X.b exit
X[
X.I exitstatus
X]
X.br
XTerminate the shell process.  If
X.I exitstatus
Xis given it is used as the
Xexit status of the shell; otherwise the exit status of the preceding
Xcommand is used.
X.b export
X.IR name ...
X.br
XThe specified names are exported so that they will appear in the environment
Xof subsequent commands.  The only way to un-export a variable is to unset it.
X.I Ash
Xallows the value of a variable to be set at the same time it is exported
Xby writing
X.d
X\fBexport\fR name=value
X.e
XWith no arguments the export command lists the names of all exported variables.
X.b fg
X[
X.I job
X]
X.br
XMove the specified job or the current job to the foreground.
XThis command is only available on systems with Bekeley job control.
X.b getopts
X.I optstring
X.I var
X.br
XThe System V
X.I getopts
Xcommand.
X.b hash
X.B -rv
X.IR command ...
X.br
XThe shell maintains a hash table which remembers the locations of
Xcommands.  With no arguments whatsoever, the hash command prints
Xout the contents of this table.  Entries which have not been looked
Xat since the last
X.I cd
Xcommand are marked with an asterisk; it is possible for these entries
Xto be invalid.
X.sp
XWith arguments, the hash command removes the specified commands from
Xthe hash table (unless they are functions) and then locates them.
XWith the
X.B -v
Xoption,
X.I hash
Xprints the locations of the commands as it finds them.
XThe
X.B -r
Xoption causes the
X.I hash
Xcommand to delete all the entries in the hash table except for
Xfunctions.
X.b jobid
X[
X.I job
X]
X.br
XPrint the process id's of the processes in the job.  If the job argument
Xis omitted, use the current job.
X.b jobs
X.br
XThis command lists out all the background processes which are children
Xof the current shell process.
X.b lc
X[
X.I function-name
X]
X.br
XThe function name is defined to execute the last command entered.
XIf the function name is omitted, the last command executed is
Xexecuted again.  This command only works if the
X.B -i
Xflag is set.
X.b pwd
X.br
XPrint the current directory.  The builtin command may differ from the
Xprogram of the same name because the builtin command remembers what
Xthe current directory is rather than recomputing it each time.  This
Xmakes it faster.  However, if the current directory is renamed, the
Xbuiltin version of pwd will continue to print the old name for the
Xdirectory.
X.b read
X[
X.B -p
X.I prompt
X]
X[
X.B -e
X]
X.IR variable ...
X.br
XThe prompt is printed if the
X.B -p
Xoption is specified and the standard input is a terminal.  Then a
Xline is read from the standard input.  The trailing newline is deleted
X>from the line and the line is split as described
Xin the section on word splitting above, and the pieces are assigned to
Xthe variables in order.  If there are more pieces than variables, the
Xremaining pieces (along with the characters in IFS that separated them)
Xare assigned to the last variable.  If there are more variables than
Xpieces, the remaining variables are assigned the null string.
X.sp
XThe
X.B -e
Xoption causes any backslashes in the input to be treated specially.
XIf a backslash is followed by a newline, the backslash and the newline
Xwill be deleted.  If a backslash is followed by any other character,
Xthe backslash will be deleted and the following character will be treated
Xas though it were not in IFS, even if it is.
X.b readonly
X.IR name ...
X.br
XThe specified names are marked as read only, so that they cannot be
Xsubsequently modified or unset.
X.I Ash
Xallows the value of a variable to be set at the same time it is marked
Xread only by writing
X.d
X\fBreadonly\fR name=value
X.e
XWith no arguments the readonly command lists the names of all
Xread only variables.
X.b set
X[
X{
X.BI - options
X|
X.BI + options
X|
X.B --
X}
X]
X.IR arg ...
X.br
XThe
X.I set
Xcommand performs three different functions.
X.sp
XWith no arguments, it lists the values of all shell variables.
X.sp
XIf options are given, it sets the specified option flags, or clears
Xthem if the option flags are introduced with a
X.B +
Xrather than a
X.BR - .
XOnly the first argument to
X.I set
Xcan contain options.
XThe possible options are:
X.sp
X.ta 0.4i
X.in +0.4i
X.ti -0.4i
X\fB-e\fR	Causes the shell to exit when a command terminates with
Xa nonzero exit status, except when the exit status of the command is
Xexplicitly tested.  The exit status of a command is considered to be
Xexplicitly tested if the command is used to control an
X.IR if ,
X.IR elif ,
X.IR while ,
Xor
X.IR until ;
Xor if the command is the left hand operand of an ``&&'' or ``||''
Xoperator.
X.sp
X.ti -0.4i
X\fB-f\fR	Turn off file name generation.
X.sp
X.ti -0.4i
X\fB-I\fR	Cause the shell to ignore end of file conditions.
X(This doesn't apply when the shell a script sourced using the ``.''
Xcommand.)  The shell will in fact exit if it gets 50 eof's in a
Xrow.
X.sp
X.ti -0.4i
X\fB-i\fR	Make the shell interactive.  This causes the shell to
Xprompt for input, to trap interrupts, to ignore quit and terminate signals,
Xand to return to the main command loop rather than exiting on error.
X.sp
X.ti -0.4i
X\fB-j\fR	Turns on Berkeley job control, on systems that support it.
XWhen the shell starts up, the
X.B -j
Xis set by default if the
X.B -i
Xflag is set.
X.sp
X.ti -0.4i
X\fB-n\fR	Causes the shell to read commands but not execute them.
X(This is marginally useful for checking the syntax of scripts.)
X.sp
X.ti -0.4i
X\fB-s\fR	If this flag is set when the shell starts up, the shell
Xreads commands from its standard input.  The shell doesn't examine the
Xvalue of this flag any other time.
X.sp
X.ti -0.4i
X\fB-x\fR	If this flag is set, the shell will print out each
Xcommand before executing it.
X.sp
X.ti -0.4i
X\fB-z\fR	If this flag is set, the file name generation process
Xmay generate zero files.  If it is not set, then a pattern which does
Xnot match any files will be replaced by a quoted version of the pattern.
X.in -0.4i
X.sp
XThe third use of the set command is to set the values of the shell's
Xpositional parameters to the specified
X.IR args .
XTo change the positional parameters without changing any options,
Xuse ``\fB--\fR'' as the first argument to
X.IR set .
XIf no args are present, the set command will leave the value of the
Xpositional parameters unchanged, so to set the positional parameters
Xto set of values that may be empty, execute the command
X.d
Xshift $#
X.e
Xfirst to clear out the old values of the positional parameters.
X.b setvar
X.I variable
X.I value
X.br
XAssigns
X.I value
Xto
X.IR variable .
X(In general it is better to write
X.I variable=value
Xrather than using
X.IR setvar .
X.I Setvar
Xis intended to be used in functions that assign values to variables whose
Xnames are passed as parameters.)
X.b shift
X[
X.I n
X]
X.br
XShift the positional parameters
X.I n
Xtimes.
XA shift sets the value of $1 to the value of $2, the value of $2 to
Xthe value of $3, and so on, decreasing the value of $# by one.
XIf there are zero positional parameters, shifting doesn't do anything.
X.b trap
X[
X.I action
X]
X.IR signal ...
X.br
XCause the shell to parse and execute
X.I action
Xwhen any of the specified signals are received.
XThe signals are specified by signal number.
X.I Action
Xmay be null or omitted;
Xthe former causes the specified signal to be ignored and the latter
Xcauses the default action to be taken.
XWhen the shell forks off a subshell, it resets trapped (but not ignored)
Xsignals to the default action.
XThe trap command has no effect on signals that were ignored on entry
Xto the shell.
X.b umask
X[
X.I mask
X]
X.br
XSet the value of umask (see
X.IR umask (2))
Xto the specified octal value.  If the argument is omitted, the umask
Xvalue is printed.
X.b unset
X.IR name ...
X.br
XThe specified variables and functions are unset and unexported.
XIf a given name corresponds to both a variable and a function, both the
Xvariable and the function are unset.
X.b wait
X[
X.I job
X]
X.br
XWait for the specified job to complete and return the exit status of the
Xlast process in the job.  If the argument is omitted, wait for all jobs
Xto complete and the return an exit status of zero.
X.SH EXAMPLES
XThe following function redefines the \fIcd\fR command:
X.d
Xcd() {
X	if bltin cd "$@"
X	then	if test -f .enter
X		then	. .enter
X		else	return 0
X		fi
X	fi
X}
X.e
XThis function causes the file ``.enter'' to be read when you enter a
Xdirectory, if it exists.  The \fIbltin\fR command is used to access the
Xreal \fIcd\fR command.  The ``return 0'' ensures that the function will
Xreturn an exit status of zero if it successfully changes to a directory
Xthat does not contain a ``.enter'' file.  Redefining existing commands
Xis not always a good idea, but this example shows that you can do it if
Xyou want to.
X.PP
XThe suspend function distributed with
X.I ash
Xlooks like
X.d
X# Copyright (C) 1989 by Kenneth Almquist.  All rights reserved.
X# This file is part of ash, which is distributed under the terms
X# specified by the Ash General Public License.
X
Xsuspend() {
X	local -
X	set +j
X	kill -TSTP 0
X}
X.e
XThis turns off job control and then sends a stop signal to the current
Xprocess group, which suspends the shell.  (When job control is turned
Xon, the shell ignores the TSTP signal.)  Job control will be turned back
Xon when the function returns because ``-'' is local to the function.
XAs an example of what \fInot\fR to do, consider an earlier version of
X\fIsuspend\fR:
X.d
Xsuspend() {
X	suspend_flag=$-
X	set +j
X	kill -TSTP 0
X	set -$suspend_flag
X}
X.e
XThere are two problems with this.  First, \fBsuspend_flag\fR is a global
Xvariable rather than a local one, which will cause problems in the
X(unlikely) circumstance that the user is using that variable for some
Xother purpose.  Second, consider what happens if shell received an interrupt
Xsignal after it executes the first \fIset\fR command but before it executes
Xthe second one.  The interrupt signal will abort the shell function, so
Xthat the second \fIset\fR command will never be executed and job control
Xwill be left off.  The first version of \fIsuspend\fR avoids this problem
Xby turning job control off only in a local copy of the shell options.  The
Xlocal copy of the shell options is discarded when the function is terminated,
Xno matter how it is terminated.
X.SH HINTS
XShell variables can be used to provide abbreviations for things which
Xyou type frequently.  For example, I set
X.br
X\h'1i'export h=$HOME
X.br
Xin my .profile so that I can type the name of my home directory simply
Xby typing ``$h''.
X.PP
XWhen writing shell procedures, try not to make assumptions about what is
Ximported from the environment.  Explicitly unset or initialize all variables,
Xrather than assuming they will be unset.  If you use cd, it is a good idea
Xto unset CDPATH.
X.PP
XPeople sometimes use ``<&-'' or ``>&-'' to provide no input to a command
Xor to discard the output of a command.  A better way to do this is
Xto redirect the input or output of the command to
X.BR /dev/null .
X.PP
XWord splitting and file name generation are performed by default,
Xand you have to explicitly use double quotes to suppress it.  This is
Xbackwards, but you can learn to live with it.  Just get in the habit of
Xwriting double quotes around variable and command substitutions, and
Xomit them only when you really want word splitting and file name generation.
XIf you want word splitting but not file name generation, use the
X.B -f
Xoption.
X.SH AUTHORS
XKenneth Almquist
X.SH "SEE ALSO"
Xecho(1), expr(1), line(1), pwd(1), true(1).
X.SH BUGS
XWhen command substitution occurs inside a here document, the commands inside
Xthe here document are run with their standard input closed.  For example,
Xthe following will not word because the standard input of the
X.I line
Xcommand will be closed when the command is run:
X.d
Xcat <<-!
XLine 1: $(line)
XLine 2: $(line)
X!
X.e
X.PP
XUnsetting a function which is currently being executed may cause strange
Xbehavior.
X.PP
XThe shell syntax allows a here document to be terminated by an end of file
Xas well as by a line containing the terminator word which follows the ``<<''.
XWhat this means is that if you mistype the terminator line, the shell
Xwill silently swallow up the rest of your shell script and stick it
Xin the here document.
/
echo x - ash.uue
sed '/^X/s///' > ash.uue << '/'
Xbegin 755 ash
XM 0,@!"    !PJP  8A<  - *        ,CH       ")XXL/@\,"B<A T> !
XMV*,  %!34>@' (/$!E#H)ZE5B>6#[!!65\=&\@  C4;Z4.AXEEL)P'4#Z<\ 
XM@SX"'P)U&>@/IZ-V%\<&=!<! ,<&BA<  ,=&\@, ZQR#?O( = Z /H\7 '0'
XM@SYT%P!U"+@" %#HDX%;Z$2#@SX"'P!U78L>0 N+1P)(B4<"BQY "X-_ @!]
XM)?\V0 OH:&];BQY "[@* %#_-XL?@\,!4XL>0 M8B0=;6(@'ZQN+'D +N H 
XM4/\WBQ^#PP%3BQY "UB)!UM8B >X)@M0Z-]O6XU&]%#H-GM;QP8 'P  @S[^
XM'@!T ^CO?(-^\@%U NM4@W[R G0#Z:< Z8( C4[ZB0X$'^A IJ-V%\<&=!<!
XM .A1@HU&]%#HUGI;_W8&_W8$Z*P"6UN+7@:#/P!T)HM>!HL?@#\M=1S'1O(!
XM +@J %#H0P%;QT;R @"X. !0Z#8!6^LK@#Z2%P!U!X,^BA< =!VX0@!0Z/N5
XM6XE&\(-^\ !T#,=&\@( _W;PZ,$;6\=&\@, @SZ*%P!T"/\VBA?HK1M;@#Z2
XM%P!U!X,^BA< =0BX 0!0Z P 6_\VN!?H3(!;Z<ZH58GE@^P,5E>-1OA0Z"UZ
XM6\=&]   @SYZ'P!T ^BW?S'_@#Z/%P!T'H-^! !T&$>X 0!0Z T\6S' 4.@!
XM8%NX&@M0Z+9N6U?H&0=;B<:!_JP7=1^ /HX7 '4#Z6L @W[T,GP"ZV.X2@!0
XMZ(%M6_]&].M+"?9T1X ^D1< =4 )_W0S_P8 'X,^<!< = C_-G 7Z'5X6XL.
XM<A>)#G 75NC^=%NC<A?_#@ ?=0J#/OX> '0#Z'![,<!05N@;&UM;C4;X4.B6
XM>5OI3?^-1OA0Z(MY6^G[IU6)Y5!6_P8 'S' 4/]V!.@=I%M;B<8)]GP*N $ 
XM4%;H8&M;6_\. !]U"H,^_AX = /H'7L)]GT#Z<&G,<!0Z.S^6^@C;.FTIU6)
XMY5!65XM^!/\& !\QP%!7Z-.C6UN)Q@GV? RX 0!05N@6:UM;ZPI7N&8 4.@H
XM>UM;_PX 'W4*@S[^'@!T ^C'>C' 4.B=_EOHU&OI9*=5B>56BW8&QP:X%P  
XM@WX$ GP=N $ 4/]T NAF:EM;BTP"B0ZZ%S' 4.AJ_EOHH6NAN!?I+Z=5B>6#
XM?@0!?@V+7@;_=P+HMW];H[@7_S:X%^B+?EOI#Z=5B>6#?@0!?A2+7@;_-G 7
XM_W<"Z"Q76ULQP%#K.O\& !__-G(7Z!]W6XL.<!>)#G(7QP9P%P  _PX 'W4*
XM@S[^'@!T ^@<>C' 4/\V<A?HQ!E;6_\VN!=8Z;2F58GE4%97BWX&B3Y\%X-^
XM! !^!8,&?!<"OHP7@?Z5%W,&Q@0"1NOTN $ 4.B^ %N+'GP7@S\ =0R#/HH7
XM '4%Q@:2%P& /H\7 G4C@#Z2%P%U'#' 4.B(D5L)P'01N $ 4.A\D5L)P'0%
XMQ@:/%P& /I 7 G4(B@Z/%X@.D!>^C!>!_I47<PN / )U \8$ $;K[XL-B0Z(
XM%X ^DA< =2:#/HH7 '4?BQY\%X,&?!<"BP^)#H@7B0ZZ%S' 4/\VNA?H#VE;
XM6XL.?!>)#H(7BQY\%X,_ '0+_P9^%X,&?!<"Z^R@CQ>84.@3?5OIQJ55B>6#
XM[ 965\<&BA<  (L>?!?_-XLW6 G =0/IC "#!GP7 HGS1HH'F(G'@_\M=1/'
XM1OP! ( \+74<@'P! '46Z6< @_\K=0?'1OP  .L'@P9\%_[K5(GS1HH'F(G'
XM"?]T/X/_8W4O@WX$ '0I@#P =0N+'GP7@P9\%P*+-PGV= >#/HH7 '0(N'X 
XM4.C<>%N)-HH7ZPO_=OQ7Z!  6UOKM8-^! !T ^ED_^D9I56)Y5!6BD8$F%"X
XM= !0Z!656UN)Q@GV=0Z*1@284+B, %#HF7A;6XGP+70 B<.+1@:(AXP7Z>*D
XM58GE@^P&5E<Q_XG[T>,#7@2#/P!T T?K\8GX0-'@4.@,=5N)1OZ+=OZ+7@2#
XM/P!T%(M>!(-&! +_-^@S=5N)!(/& NODQP0  +A^%U#H&@!;Q@: %P&)/GX7
XMBT[^B0Z"%\<&A!<  .EWI%6)Y5!65XM^!(!] @!T&HMU!(,\ '0+_S3HC9E;
XM@\8"Z_#_=03H@9E;Z4ND58GE@^P&5E>_ 0"#?@0!?@R+7@;_=P+HS'Q;B<<Y
XM/GX7?02+/GX7_P8 'XL.?A<I^8D.?A>+-H(73PG_?!* /H 7 '0&_S3H,YE;
XM@\8"Z^F+#H(7B4[ZB?.#Q@*+!XM>^HD'BU[Z_S>#1OH"6 G = +KY,<&A!< 
XM /\. !]U"H,^_AX = /H&'<QP.F]HU6)Y8-^! %U#O]V!O]V!.@]8%M;4.LX
XM_P8 'S' 4.C6_5N@CQ>84.C<>EN+'GP7@S\ = C_-GP7Z*'^6_\. !]U"H,^
XM_AX = /HQW8QP%!8Z6RC58GE@^P05E>#?@0#= BXH !0Z/IV6X,^A!< =0Z+
XM#H(7B0Z$%\<&AA<  (L.AA>)S@G)= 6 / !U:8L>A!>+-PGV= N /"UU!D: 
XM/ !U0HL.A!<K#H(7NP( B<B9]_M 4+B^ %"X"@!0C4;Q4.CM:8/$"#' 4(U&
XM\5"XP@!0Z.];@\0&QP:$%P  N $ 4.FT (,&A!<"@#PM=0B ? $ =0+KK(GS
XM1HH'B$;[BUX&BW\"B@684(I&^YA9.<%T(H ] '44BD;[F%"XR@!0Z&UI6UO&
XM1OL_ZTI'@#TZ==1'Z]%'@#TZ=3N / !U(8L>A!?_-XLW6 G =12*1ON84+C>
XM %#H.&E;6\9&^S_K%8,&A!<",<!05KCV %#H5%N#Q 8Q]HDVAA>*1ON(1O'&
XM1O( BUX&,<!0C4;Q4/]W!.@Q6X/$!C' 4%CI(:)5B>6#[ 965XL.>!>)S@G)
XM= 6 / !U,(L>?!>+-PGV= N /"UU!D: / !U!C' 4.F  (,&?!<"@#PM=0N 
XM? $ =04QP%#K:XGS1HH'B$;[BWX$B@684(I&^YA9.<%T'( ] '4.BD;[F%"X
XM_@!0Z%9U6UM'@#TZ==I'Z]='@#TZ=2B / !U'8L>?!>#!GP7 HLW"?9U#HI&
XM^YA0N!(!4.@E=5M;B39Z%S'VB39X%XI&^YA06.EKH56)Y5!6BTX$B0ZF%X,^
XMIA< = R+'JP8@\,$4^AL9EO'!J07  #H&@F)Q@GV=0:XK!=0ZQ>#_@%U!3' 
XM4.L-_P:L%[@! %#H!@!;4%CI':%5B>6#[ 965^A^"(-^! !U$8L>HA> OR@!
XM '0&,<!0Z;\ Z,  B<;HR0A0Z:P @SP!= 6#/ )U!\=$ @$ ZRF#/ -U!L<$
XM! #K'K@& %#H?'%;B<?'!00 B74"QT4$  ")_NL$_P:L%^B("#T! '4,Z)<'
XM@WX$ '0'5NME_P:L%^@&"(L>HA> OR@! '0#5NM0Z%$ B4;\N 8 4.@O<5N)
XMQ\<%  ")=0*+1OR)102)_NET_X,^JA< = 7H30?K ^A'8U;K'(-^! !T"+C_
XM_U#HQ!%;_P:L%U;K![ND 5CI))!8Z3>@58GE@^P(5E?H3P")Q^C^!XE&^(-^
XM^ 1U!\=&^ 8 ZQ2#?O@%=0?'1O@' .L'_P:L%U?K(N@C (E&_+@& %#HIW!;
XMB<:+1OB)!(E\ HM&_(E$!(GWZ[=8Z=V?58GE@^P(5E?H8@")1O[HHP<]!@!U
XM3;@& %#H<7!;B<?'!0( QT4"  "X! !0Z%YP6XG&B74$BT;^B40"B7;XN 0 
XM4.A(<%N)QN@A (E$ HM>^(DWZ%T'/08 =.#'!   B7[^_P:L%XM&_NEPGU6)
XMY8/L$E97Z-(&Z#D'4.G7 [@( %#H"'!;B<?'!0@ ,<!0Z"[^6XE% N@:!ST.
XM '0(N X 4.BQ$%LQP%#H%/Y;B44$B?[H_@8]$ !U.+@( %#HS&];B40&BW0&
XMQP0( #' 4.CN_5N)1 +HV@8]#@!T"+@. %#H<1!;,<!0Z-3]6XE$!.O @SZB
XM%P]U##' 4.C!_5N)1 ;K"<=$!@  _P:L%^BB!CT1 '4#Z4,#N!$ 4.@V$%OI
XM. .X!@!0Z&)O6XG'@SZB%Q)U!K@) %#K!+@* %"/!3' 4.AY_5N)10+H908]
XM%0!T"+@5 %#H_ ];,<!0Z%_]6XE%!.A+!CT6 '4#Z>P"N!8 4.C?#UOIX0+H
XM-08]# !U$X,^F!< =0S_-J 7Z(D/6PG =0BX&@-0Z!,06[@( %#HZ&Y;B<?'
XM!0L BPZ@%XE-!NC]!3T, '5>@SZ8%P!U5[@P U#_-J 7Z.>+6UL)P'5&C4;Z
XMB4;XZ-<%/0P =2FX" !0Z*5N6XG&QP0/ (L.H!>)3 2+#IX7B4P&BU[XB3>-
XM1 *)1OCKSXM>^,<'  "+1OJ)10+K(+@( %#H;6Y;B<;'! \ QT0$F ''1 8 
XM ,=$ @  B74"@SZB%P%T#X,^HA<"= BX__]0Z @/6^CW!.A>!8E&[H-^[A5U
XM!\=&[A8 ZQ6#?NX7=0?'1NX8 .L(N/__4.C=#ELQP%#H0/Q;B44$Z"P%.4;N
XM=0/IS0'_=N[HP0Y;Z<,!N 8 4.CM;5N)Q\<%# #H"04]# !T"+@, %#HH Y;
XMN @ 4.C/;5N)QHEU L<$#P"+#J 7B4P$BPZ>%XE,!L=$ @  Z-4$/0$ =0+K
XM]H,^HA<,=1&X- -0_S:@%^B]BEM;"<!T"+@X U#HK Y;C44$B4;TZ#L$Z*($
XM/0P = /IQ@"X" !0Z&UM6XE&]HM&]HM>](D'BU[VQP<- (M>]H/#!(E>^+@(
XM %#H2FU;B4;ZBT;ZBU[XB0>+7OK'!P\ BU[ZBPZ@%XE/!(M>^HL.GA>)3P;H
XM1@0]!@!T NL;BU[Z@\,"B5[XZ#,$/0P =+>X# !0Z,H-6^NMBU[ZQT<"  "#
XM/J(7"'0(N @ 4.BQ#5LQP%#H%/M;BU[VB4<&Z/T#B4;N@W[N&G4&_P:L%^L.
XM@W[N"70(N D 4.B$#5N+7O:#PP*)7O3I+/^+7O3'!P  @SZB%QIT;[@: %#H
XM8@U;ZV6X!@!0Z(]L6XG'QP4% #' 4.BU^EN)10+'100  .B< ST( '1 N @ 
XM4.@S#5OK-C' 4.B4^EN)Q^B! ST8 '0EN!@ 4.@8#5OK&_\&K!?H; !0ZV6X
XM__]0Z 0-6^L'N[(!6.FCF(U&\HE&\.A. ST+ '46BPZ<%XG.BU[PB0^-1 *)
XM1O#H% 'KXO\&K!>+7O#'!P  @W[R '0>@ST%=!.X!@!0Z/!K6XG&QP0# (E\
XM HGWBT;RB44$5UCI*)M5B>6#[ I65\=&_@  C4;^B<>-1OJ)1OCHY (]# !U
XM);@( %#HLFM;B<;'! \ BPZ@%XE,!(L.GA>)3 :)-8U$ HG'Z].#/J(7"W46
XMBPZ<%XG.BU[XB0^-1 *)1OCH?@#KMH,^HA<'=4*+7OZ#PP(YWW4XC4;Z.4;X
XM=3#H@0(]" !T"+@( %#H& Q;_W0$Z-4+6PG =0BX2 -0Z%\,6\<$#@#H$_N)
XM1 )6ZR__!JP7QP4  (M>^,<'  "X" !0Z!AK6XG&QP0! ,=$ @  BT;^B40$
XMBT;ZB40&5ECI2II5B>6#[ A6BS:<%^@3 CT, '0(N/__4.BJ"UN#/!5T ^FC
XM (L.FA>)3OR#/I@7 '4$QP06 (M>_(-_!@!T#XL>H!> /PEU!O\&H!?K\?\V
XMH!?H^ I;"<!T%_\VH!?H!9!;B4;X@W[X '0&@W[X3WX(N%H#4.BG"UO_-J 7
XMZ&XL6XM>_(L.H!>)3P2+7OS'!P  @SZJ%P!U"HM._(D.JA?IDP"+#JH7B4[Z
XMBU[Z@S\ = J+7OJ+!XE&^NONBT;\BU[ZB0?I;P"#/!-T!8,\%'5 BQZ@%XH'
XMF"TP #T) '</BQZ@%XH'F"TP (E$!NL.BQZ@%X _+74/QT0&__^+'J 7@'\!
XM '0ON( #4.@1"UOK);@( %#HY&E;B40&BW0&QP0/ ,=$ @  BPZ@%XE,!(L.
XMGA>)3 ;I$YE5B>504%97@SZJ%P!T;HLVJA>+#(D.JA>#/J07 '02BQZF&(/#
XM!%/H!UY;QP:D%P  BUP"_W0&_W0$@S\5=0:XCPY0ZP2XC0U0Z(E:4.@D H/$
XM"+@( %#H:6E;B<?'!0\ QT4"  "+#J 7B4T$BPZ>%XE-!HM< HE_!NN+Z9.8
XM58GE4%!65^A@ (G'@_\!=07H;?_K\8/_#'5(@SZ8%P!U0;YZ 8,\ '0YBQR*
XM!YB+'J 74(H'F%DYP74B_S:@%_\TZ":&6UL)P'43B? M>@&Y @"9]_D%#0"C
XMHA?K!8/& NO"_P:L%^DIF%6)Y5!6@SZL%P!T!N@- %#K!N@' (G&5ECI#IA5
XMB>505H,^K!< = W'!JP7  #_-J(7Z5(!@SZD%P!T$HL>IAB#PP13Z %=6\<&
XMI!<  (L.\ J)#I87_P[:''P.BQ[8'/\&V!R*!YA0ZP3HGEE07H/^('3B@_X)
XM=0+KVU;I\0#KU>AH68G&@_X*= B!_G__= +K[NB 6NN^Z%%9/0H =2'_!O *
XMBP[P"HD.EA>#/J87 '2CBQZF&(/#!%/HBEQ;ZY7H4EKIL #_!O *BPZF%XD.
XMI!?'!J(7 0#_-J(7Z:< QP:B%P  _S:B%^F: .C\6#TF '4-QP:B%P0 _S:B
XM%^F% .@16L<&HA<# /\VHA?I=0#HUU@]? !U#,<&HA<% /\VHA?K8>CM6<<&
XMHA<& /\VHA?K4NBT6#T[ '4,QP:B%PD _S:B%^L^Z,I9QP:B%P( _S:B%^LO
XMQP:B%P< _S:B%^LCQP:B%P@ _S:B%^L7N]H!6.G5DS' 4%"XBPQ05N@( (/$
XM"%!8Z9^658GE@^QT5E>+1@2)1OZ+#O *B0Z6%\=&I   @7X&C0UU!<=&I $ 
XMQT:F  #'1J@  ,=&H@  BPXP$8E._(L.,A&)#NX>Z;@"@S[N'@-]!N@M:8E&
XM_(M>_@->!HH'F%#IO0&!?@:+#'4#Z=@!_P[N'HM>_(M&_H@'_T;\_P;P"H,^
XMIA< = R+'J88@\,$4^@L6UOHS%>)1O[I90+_#NX>BU[\BT;^B ?_1OSI>0&#
XM?@@ = :#?J0 = W_#NX>BU[\Q@>!_T;\_P[N'HM>_(M&_H@'_T;\Z4X!Z(97
XMB4;^@7[^?_]U$_\.[AZ+7OS&!US_1OSHEECI+@&#?OX*=1F#/J87 '4#Z1X!
XMBQZF&(/#!%/HJEI;Z0\!@WZD '0K@W[^7'0E@W[^8'0?@W[^)'09@W[^(G4&
XM@WX( '0-_P[N'HM>_,8'7/]&_(M>_H"_CPX*=0W_#NX>BU[\Q@>!_T;\_P[N
XM'HM>_(M&_H@'_T;\_T:FZ;( QT8&CP[IJ@#'1@:-#<=&I $ Z9T @WX( '02
XM_P[N'HM>_(M&_H@'_T;\Z84 QT8&BPS_1J;'1J0  .EU (-^H@!^$O].HO\.
XM[AZ+7OS&!X/_1OSK7?\.[AZ+7OR+1OZ(!_]&_.M,@SZH%P!T'8%^!HL,=1:+
XM#C 1.4[\=5/'!J(7"@#_-J(7Z9X%QT:@ 0#I#02#?J( =0+K-O\.[AZ+7OR+
XM1OZ(!_]&_.L'NPH"6.EAA/\.VAQ\#HL>V!S_!M@<B@>84.L$Z$-64(]&_ND$
XM_H%^!HL,= Z#?@@ =0BXC@-0Z!H&6X-^H@!T$(L.\ J)#I87N*H#4.@$!EO_
XM#NX>BU[\Q@< _T;\BT;\*P8P$8E&^HL.,!&)3OR#?@@ =42#?OX^= :#?OX\
XM=36#?J8 =2^#?OH"?RF+7OR /P!U ^GS (M>_(H'F"TP #T) '<0Z>( QP:B
XM%PL _S:B%^G(!.BT5HM.IHD.F!>+3JB)#IX7_W;ZZ"1F6XM._(D.H!?'!J(7
XM# #_-J(7Z9P$@WX( '4#Z3_]@WX* '0.@W[^"74(Z$E5B4;^Z_*+7@B*!Y@Y
XM1OYT ^D=_;A0 %"-1JI0Z-946UL)P'4#Z0G]C4:JB4:>BUX(@\,!B5Z<BUZ<
XM@#\ =!J+7IZ*!YB+7IQ0B@>863G!=0C_1I[_1ISKWHM>GH _"G4<BUZ<@#\ 
XM=13'1OY___\&\ J+#J87B0ZD%^FT_(U&JE#H'HE;4(U&JE#H]55;6^F?_(M>
XM_(H'B$:?N H 4.B78UN)1IR#?OX^=3N+7IS'1P0! .B45(E&_H-^_CYU"HM>
XMG,<'$@#IG@"#?OXF=0J+7IS'!Q, Z8X BUZ<QP<0 .B15>F! (M>G,='!   
XMZ%E4B4;^@W[^/'54N @ 4.@W8UN)1IR+7IS'1P0  (M>G,<'%0"X" !0Z!UC
XM6Z.:%XL>FA>+1IR)1P+H'E2)1OZ#?OXM=0N+'IH7QT<& 0#K)XL>FA?'1P8 
XM .@H5>L9@W[^)G4)BUZ<QP<4 .L*BUZ<QP<1 .@-58!^GP!T#8I&GY@M, "+
XM7IR)1P2+3IR)#IP7Z2S^Z,-3B4;^@W[^('09@W[^"703@W[^"G0-@W[^(G0'
XM@7[^?_]U$_\.[AZ+7OS&!R3_1OSHNU3I4_V#?OXH=0C'1J   .DR ?\.[AZ+
XM7OS&!X+_1OR+1OPK!C 1B4:<_P[N'HM>_,8' ?]&_,=&G@$ @W[^>W4+Z$Y3
XMB4;^QT:>  "+7OZ*AY$/F*@.=#C_#NX>? V+7OR+1OZ(!_]&_.L1Z/ACB4;\
XMBU[\BT;^B ?_1OSH$U.)1OZ+7OZ*AY$/F*@/=<KK*8M>_HJ'D0^8J!%U"+BV
XM U#H  -;_P[N'HM>_(M&_H@'_T;\Z-Q2B4;^_P[N'GP+BU[\Q@<]_T;\ZP_H
XMF6.)1OR+7OS&!SW_1OS'1IH  (-^G@!U-(-^_CIU"\=&FB  Z*!2B4;^_W;^
XMN)X!4.C=@%M;B4:8@WZ8 '4"ZY"+1I@MG@% B4:>ZP/HH5.#?J0 = 6!3II 
XM (M&G@M&FHM>G ,>,!&(!X-^G@%U ^D9_/]&HND3_(L.J!>)3IR-1I)0Z)E\
XM6PG =">#?I@ = ?_=ICHGH5;QP:H%P  BTZ0B0X$'[@! %#_-@0?Z(%\6UO_
XM!@ ?QT:8  "+1OPK!C 1B4:.@WZ. 'X:_W:.Z']@6XE&F/]VCO]VF/\V,!'H
XM;FB#Q :+#@0?B4Z0C4Z2B0X$'_\. !]U"H,^_AX = /H5F.-1JB)1IZ+7IZ#
XM/P!T"HM>GHL'B4:>Z^ZX! !0Z))@6XM>GHD'BUZ>BQ_'!P  BTZ@B0ZH%S' 
XM4.BI[EN)1IJ#?J  = :X"@!0ZP2X" !0CT:,Z(+W.4:,= ?_=HSH&@%;BUZ>
XMBQ^+1IJ)1P*+1HXY!C(1?P7H6V'K\HL.,!&)3OR+#C(1B0[N'H-^F !T0_]V
XMCO]V_/]VF.BR9X/$!HM>C@->_(E>_(L.[AXK3HZ)#NX>_P8 '_]VF.AVA%O'
XM1I@  /\. !]U"H,^_AX = /HA&*+3IR)#J@7BTZ0B0X$'_\.[AZ+1J0%A/^+
XM7OR(!_]&_(-^H !U ^F-^NF*^ECI_HY5B>504%:+=@2)\T:*!XA&_9@)P'0>
XMBD;]F#V!_W4#1NOGBD;]F(G#@+^+# IUVC' 4.L$N $ 4%CIPXY5B>505HMV
XM!(H$F(G#BH>1#YBH#G4%,<!0ZQU&@#P =!.*!)B)PXJ'D0^8J ]U[#' 4.L$
XMN $ 4%CIAXY5B>6#[$"#?@0 ?">+7@31X_^W1 &+'J(7T>/_MT0!N,@#4+A 
XM %"-1L!0Z$M5@\0*ZQR+'J(7T>/_MT0!N.8#4+A  %"-1L!0Z"U5@\0(C4; 
XM4.@$ %OI+HY5B>6#/KH7 '06_S:6%_\VNA>X] -0N"8+4.BW5(/$"/]V!+C^
XM U"X)@M0Z*94@\0&,<!0Z)IA6^GSC56)Y8/L!E97@WX$ 7\#Z9< BUX&BW\"
XM@WX$ G\#Z8, BS8P$8L.,A&)#NX>BUX&@\,$B5[Z@#T =!__#NX>? J)^T>*
XM!X@$1NOKZ#M@B<:)^T>*!X@$1NO<BU[Z@T;Z HL_"?]U NL7_P[N'GP&Q@0@
XM1NO!Z!%@B<;&!"!&Z[;_#NX>? ;&! !&ZPGH^E^)QL8$ $:+#C(1*P[N'E'H
XM EY;B<=7Z < 6Z&X%^E#C56)Y8/L"%:-1OA0Z*->6[@! %#_=@3H$U%;6S' 
XM4.BWZUN)QH'^K!=T$S' 4%;H&@!;6XU&^%#HE5Y;Z][H<%&-1OA0Z(A>6^GY
XMC%6)Y5:+=@17BWX&"?9U ^GFC/\TZ3L!,<!0_W0"Z.#_6UN#/K(7 '0#Z2T!
XM5_]T!.C-_UM;Z2$!N ( 4/]T NB^_UM;@SZR%P!T ^D+ 8,^N!< = /I 0%7
XM_W0$Z*'_6UOI]0"X @!0_W0"Z)+_6UN#/K(7 '0#Z=\ @SZX%P!U ^G5 %?_
XM= 3H=?];6^G) /]T!.@M UNX 0!0_W0$Z",M6UM7_W0"Z%;_6UOH*S#IIP!7
XM5NB+ EM;Z9T 5U;H@0);6^F3 +@" %#_= +H,/];6X,^LA< = /I?0"#/K@7
XM '4+5_]T!.@6_UM;ZVN#? 8 =&57_W0&Z 7_6UOK6E;HA0!;ZU-6Z 0!6^M,
XM5U;HM@%;6^M#_W0"_W0$Z X\6UO'!K@7  #K,%;HV@);ZRDQP%!75NC3!(/$
XM!NL<_S2X- 10Z(126UNX&@M0Z-916^L'NQ $6.F(>X,^>A\ = /HG6+WQP$ 
XM=12 /HP7 '05@SZX%P!T#O?' @!U"/\VN!?H[F);Z7"+58GE4%:+=@17_P:N
XM%S'_N ( 4/]T NA?_EM;@SZR%P!T*H,^LA<"=0[_#K 7?PC'!K(7  #KV(,^
XMLA<!=3W_#K 7?S?'!K(7  #K+X,\"74)@SZX%P!T"^LA@SZX%P!U NL8,<!0
XM_W0$Z S^6UN+/K@7@SZR%P!TENNG_PZN%XD^N!?IZHI5B>6#[ Y65XU&\E#H
XM25Q;C4;\B4;^BUX$BW<""?9T'K@! %"-1OQ05NA/#(/$!H,^LA< = /I=@"+
XM= +KWHM>_L<'  #'!K@7  #_!JX7BW[\"?]T58M>!#' 4/]U O]W!NB+0X/$
XM!HM>!#' 4/]W!.A^_5M;@SZR%P!T*H,^LA<"=0[_#K 7?PC'!K(7  #K%8,^
XMLA<!=1+_#K 7?PS'!K(7  #K!(L]ZZ?_#JX7C4;R4.C 6UOI,(I5B>6#[ Y6
XM5XU&\E#HCUM;C4;XB4;ZBUX$,<!0C4;X4/]W NB;"X/$!HM>!(MW! GV=#R#
XM/K(7 '4UBWP$"?]T*8M>^/]W E?HQ1Q;6PG =!2#/K(7 '47_W8&_W0&Z-?\
XM6UOK"HM] NO3BW0"Z\"-1O)0Z$9;6^FVB56)Y5!05HMV!%<QP(,\!'4!0(E&
XM_/]T!.AF %NX 0!05N@3(EM;B<?_=OQ65^@#(X/$!@G =26#?OP = 6!9@;]
XM_S' 4/]T!.@W*EM;BT8&#0$ 4/]T NAD_%M;@W[\ '4<_P8 'U?H(21;H[@7
XM_PX 'W4*@S[^'@!T ^B.7.DUB56)Y8/L!E:+=@0)]G0S@SP1= J#/!!T!8,\
XM$G4?C4;ZB4;\,<!0C4;Z4/]T!NB6"H/$!HM>^HM' HE$"(MT NO)Z?*(58GE
XM@^P,5E?'1OH  (M>!(MW! GV= ?_1OJ+-.OU_P8 '_]V^O]V!.A'(5M;B4;^
XMO___BUX$BW<$"?9U ^F[ /]T N@1"5O'1O;__X,\ '09C4;T4.A&>%L)P'T-
XM5^B A%NX1 10Z"U<6XM>!/]W O]T O]V_NCU(8/$!@G =6/_#@ ?=0J#/OX>
XM '0#Z+=;"?]^%3' 4.A'A%LQP%!7Z/,L6UM7Z#F$6X-^]@!\*/]V].@LA%N#
XM?O8!=!NX 0!0Z!Z$6[@! %#_=O;HQRQ;6_]V]N@+A%NX 0!0_W0"Z!C[6UL)
XM_WP%5^CV@UN+?O3_=O;H[(-;BS3I/O__#@ ?=0J#/OX> '0#Z#Q;BUX$@W\"
XM '4>_P8 '_]V_NBH(ENCN!?_#@ ?=0J#/OX> '0#Z!5;Z;R'58GE@^P,5HMV
XM!E>+?@2-1O10Z!596\<$___'1 (  ,=$!   QT0&  "#/0%U#U:X! !05^B8
XM (/$!NF' (U&_%#H)7=;"<!]"+A6!%#H$5M;N $ 4%?HY!];6XE&^K@" %!7
XM_W;ZZ- @@\0&"<!U0L<& !\  (,^_AX = /HDEK_=OSH)H-;@W[^ 70;N $ 
XM4.@8@UNX 0!0_W;^Z,$K6UO_=O[H!8-;N $ 4%?H%/I;6_]V_NCT@EN+1OR)
XM!(M&^HE$!HU&]%#H?5A;Z>V&58GE@^Q"5E>-1OI0Z$Q86XU&](E&]HU&\(E&
XM\L=&Z $ BUX$BT<$B4;X@W[X '1OBU[XBT<$B4;D@W[H '0_BU[DB@>8B<.*
XMAY$/F*@.="[_1N2+7N2*!YB)PXJ'D0^8J ]U[(M>Y( _/742,<!0C4;P4/]V
XM^.@%"(/$!NL6N $ 4(U&]%#_=OCH\@>#Q ;'1N@  (M>^(M' HE&^.N+BU[V
XMQP<  (M>\L<'  "+7@3_=P;H OU;QT;L  "+1O2)1N:#?N8 = W_1NR+7N:+
XM!XE&YNOMBT;L0-'@4.B_5EN)1NZ+1O2)1N:#?N8 =!F+7N:+1P*+7NZ)!X-&
XM[@*+7N:+!XE&YNOABU[NQP<  ,=&O@  @#Z/%P!T%H,^M!< =0^#?NP ?@F+
XM7NZ+1_Z)1KZ+1NS1X/?8B<,#7NZ)7NZ /I,7 '4#Z>  _PXH"WT5N"8+4.@,
XM2UN+'B8+Q@<K_P8F"^L+BQXF"\8'*_\&)@N+1O")1N:#?N8 =#K_#B@+?16X
XM)@M0Z-I*6XL>)@O&!R#_!B8+ZPN+'B8+Q@<@_P8F"XM>YO]W NAA2EN+7N:+
XM!XE&YNO BT;TB4;F@W[F '0Z_PXH"WT5N"8+4.B42EN+'B8+Q@<@_P8F"^L+
XMBQXF"\8'(/\&)@N+7N;_=P+H&TI;BU[FBP>)1N;KP/\.* M]%;@F"U#H6DI;
XMBQXF"\8'"O\&)@OK"XL>)@O&!PK_!B8+N"8+4.CQ2EN#?NP =0W'1MH! ,=&
XMW   Z7T BU[NN $ 4(U&VE#_-^@(+X/$!H-^VO]U$<<&N!<" +@F"U#HMTI;
XMZ8:$@W[: 75-@W[< '5'@T;N O].['4"ZSR+7N[_-^AV,5N)1MR#?MP ?22+
XM7N[_-[AH!%"X)@M0Z/5*@\0&QP:X%P( N"8+4.AJ2EOI.82#?MP =+F+7@2#
XM?P( =2J#?MH =0;V1@8!=![V1@8$=0/II0"#?MH!=0^#?MP$= F#?MP&= /I
XMD "X 0!0_W8$Z'<<6UN)1MB+7@2+1P*)1N+V1@8$=!G'1N(" (U&WE#H@W-;
XM"<!]"+AX!%#H;U=;_W;B_W8$_W;8Z#H=@\0&"<!T ^FT _9&!@1T.,<& !\ 
XM (,^_AX = /H\U;_=M[HAW];@W[@ 70;N $ 4.AY?UNX 0!0_W;@Z"(H6UO_
XM=N#H9G];@4X& 0"#?MH"= /I8 &XB@10Z$5;6_]V[NA-6UN+7@2X 0!0_W<&
XMZ!<D6UNX?A=0C4;$4+D% .CO;<8&@!< BT;L2*-^%XM>[H/# HD>@A?'!H07
XM  #_!@ ?BP[&&(E.PL<&QA@  /\. !]U"H,^_AX = /H5%:-1M)0Z!-O6PG 
XM=$6#/@(? G4*C4;$4.AMWEOK%KA^%U#H8]Y;C4;$4+A^%U"Y!0#H?VWH2D*+
XM3L*)#L88BT[0B0X$'[@! %#_-@0?Z-UN6UN+#@0?B4[0C4[2B0X$'XM&\(E&
XMYH-^Y@!T%(M>YO]W N@%05N+7N:+!XE&YNOF_P:T%S' 4/]VW.AZ]5M;_PZT
XM%_\& !_HYT&+3L*)#L88N'X74.C@W5N-1L10N'X74+D% .C\;(M.T(D.!!_H
XM(";_#@ ?=0J#/OX> '0#Z(15@SZR%P-U#,<&LA<  ,<&L!<  /9&!@%U ^E7
XM O\VN!?HA5E;Z4P"@W[: 70#Z6D!N)P$4.C<65O_=N[HY%E;@W[<!W4%,<!0
XMZP2X 0!0CT;B@WX&!'49QP8T"P  BPXV"XD.,@O'!C@+0 "!3N(" (M>!/]V
XMXO]W!NA^(EM;BPZZ%XE.SHM.\(D.MA?'1L#__XU&TE#HLFU;"<!T'8L. A^)
XM3L"#?L  =0:X@@!0ZP2X @!0CP:X%^M BPX$'XE.T(U.THD.!!^+7NZ+#XD.
XMNA>+7NZ#PP*)'GP7QP9X%P  BU[<T>.+AZP'_W;N_W;L_]!;6Z.X%^A+1\<&
XM/@L:"\<&0 LF"^B81X-^P )T%8M.SHD.NA?V1@8!= C_-K@7Z(586XM.T(D.
XM!!^#?L#_=#6#?L !=1B#?MP =!*#?MP$= R#?MP&= :#?MP'=0?_=L#H"U1;
XMQP8 'P  @S[^'@!T ^@>5(-^W =T ^BA)(-^!@1T ^G[ (M>"(L.-@N)3P*+
XM#C(+*PXV"XM>"(E/!,<&-@L  .G: +BP!%#H<UA;_W;NZ'M86^C=)(M>!#' 
XM4/]W!NA#(5M;@W[P '0GBQZR&(/#!5/H?W9;0%#H#U%;B4;DBQZR&(/#!5/_
XM=N3HPGQ;6^L*BQZR&(/#!8E>Y(M&\(E&YH-^Y@!T&8M>YK@1 %#_=P+H_#E;
XM6XM>YHL'B4;FZ^'HPSN)1NK_=MS_=N3_=NK_=N[HT"2#Q CK1(-^X@!U(/\&
XM !__=MCHQ!I;H[@7_PX 'W4J@S[^'@!T(^@Q4^L>@W[B G48BT;>BUX(B0?_
XM=N#HM7M;BUX(BT;8B4<&@WZ^ '00,<!0_W:^N,($4.BN.(/$!HU&^E#H*E%;
XMZ9I_58GE4%!6BW8$@SP!=2&+7 3_=P3HP?!;"<!T$XM<!#' 4(U&_%#_=P3H
XMUBF#Q ;I:7]5B>7_-K87Z DZ6Z&X%^E9?U6)Y5!65XM^!KX! (-^! %^"?]U
XM NC:5UN)QCDVKA=]!(LVKA<)]GX9BQV /V-U!K@" %#K!+@! %"/!K(7B3:P
XM%S' Z1!_58GE4%:+-K@7@WX$ 7X,BUX&_W<"Z)-76XG&@SZT%P!T#,<&LA<#
XM ,<&L!<! (GPZ=Y^58GE,<#IUWY5B>6#?@0!?BC&!H\7 #' 4.@*5EN+'K(8
XM,<!0@\,%4^A?.HM>!E"#PP)3Z',C@\0(,<#IH7Y5B>6+3@:)#C01,<!04/]V
XM!.@< (/$!HL.SA<K#C 14?\V,!'_=@;HN4J#Q ;I<7Y5B>6#[ 965XM>!(M/
XM!HD.S!>+#C 1B0[.%XL.,A&)#NX>QP;$%P  QP;"%P  _W8(_W<$Z.  6UN#
XM?@8 =0/I+7[_#NX>? V+'LX7Q@< _P;.%^L1Z*Y0H\X7BQ[.%\8' /\&SA>+
XM#C(1*P[N'E'HKDY;B<?'!L 7OA>#?@@ ="*XOA=05^@X"5M;BQ[ %\<'  #'
XM!L 7OA?_-KX7Z&\*6^L7N 0 4.AV3EN)QHE\ HL>P!>)-XDVP!>#/L07 '0N
XM_P8 'XL>Q!>+!XE&^O\VQ!?HS');BT[ZB0[$%_\. !]UUX,^_AX =-#HV%#K
XMRXL>P!?'!P  @SZ^%P!T%HM>!HM? HL.OA>)#XM>!HL.P!>)3P+I6'U5B>50
XM5HMV!%>+?@:)\T:*!XA&_YA0Z;L Z;\ "?]T*/\.[AY\#XL>SA>*1O^(!_\&
XMSA?K$^BW3Z/.%XL>SA>*1O^(!_\&SA>)\T:*!XA&__\.[AY\#XL>SA>*1O^(
XM!_\&SA?KI^B'3Z/.%XL>SA>*1O^(!_\&SA?KDE=6Z!D"6UN)QNN'BD;_F"4!
XM (L>S!=74/]W NA& (/$!HL>S!>+#XD.S!?I9/__#NX>?!"+'LX7BD;_B ?_
XM!LX7Z4[_Z"Y/H\X7BQ[.%XI&_X@'_P;.%^DX_[O$!%CIH'GI>GQ5B>6![*( 
XM5E>+-LX7B? K!C 1B89B_X-^!@!T!KB-#5#K!+B+#%"/AF#__P8 '[O$%[D(
XM .B>9XV>:O^Y" #HDVB+#L(7B8YH_XL.S!>)CF;_BPXT$8F.7O_'!C01__^+
XM#C(1*P[N'E'HOTQ;B<>-1OA0_W8$Z$7T6UM65^@"3UM;C9YJ_[D( .A*9[O$
XM%[D( .A :(N.:/^)#L(7BXYF_XD.S!>+CE[_B0XT$8M^^L:&9?\ _T[\?4*#
XM?O@ ?0/IDP"X@ !0C89V_U#_=OCH]G>#Q :)1O:#?O8 ?0F#/A B!'4"Z]R#
XM?O8 ?P+K9XV&=O^)QXM&]DB)1OR)^T>*!XB&9?^ OF7_ '2I@WX( '0EBH9E
XM_YB)PP.>8/^ /PIU%?\.[AY\!L8$@4;K">C@38G&Q@2!1O\.[AY\"HJ&9?^(
XM!$;I;O_HQTV)QHJ&9?^(!$;I7_^ OF7_"G4%_P;N'DZ#?O@ ? ?_=OCH_'9;
XM@W[Z '0'_W;ZZ#%P6X-^_@!T!_]V_NC'%5N#?@8 =12)\"L&,!$QR5%0_[9B
XM_^C>!8/$!HDVSA?_#@ ?=0J#/OX> '0#Z!E.Z<!Z58GE@^P45HMV!%>)\T:*
XM!YB)1OR+1OPE!P")1OZ)=OK'1O(  (H$F(G#BH>1#YBH#G4%QT;R 0"X/0!0
XM5NB-:EM;0(G&@W[R '02BU[ZB@>84.B0 EN)1O0Q_^LF_W;ZZ#\U6XG'"?]T
XM"_9&_"!T#H ] '4),?_'1O0  .L%QT;T 0"+#LX7*PXP$8E.\(-^] !U ^FN
XM (-^_@-U ^FE (-^\@!T&HM&_"5  (M>^O]V!E"*!YA0Z)H"@\0&Z84 ]D;\
XM0'0&N(T-4.L$N(L,4(]&[H ] '1M@WX& '0QB@68B<,#7NZ /PIU)/\.[AY\
XM#8L>SA?&!X'_!LX7ZQ'H5DRCSA>+'LX7Q@>!_P;.%_\.[AY\%8G[1S' B@=0
XMBQ[.%UB(!_\&SA?KJ>@J3*/.%XG[1S' B@=0BQ[.%UB(!_\&SA?KCH-^_@-U
XM##' @W[T '4!0(E&]/9&_$!T#XM>^H _0'4L@SY^%P%T)8-^] !U!H-^_@%U
XM&8M&_"5  (L.SA<K#C 14%'_=O#H-@2#Q :#?O0 = /IYP"#?OX!=0/IW@"#
XM?OX#= :#?OX"=0S_=@96Z++[6UOIQ@"+#C01B4[LQP8T$?__,<!05NB9^UM;
XM@S[N'@!U#^A\2Z/.%XL>SA?&!P#K!XL>SA?&!P"+3NR)#C01BU[P QXP$8E>
XM[H-^_@5U.#' 4/]V[O]V^NBU,8/$!HM&[BL&SA>)PP,>SA>)'LX7BT;N*P;.
XM%RL&[A[WV*/N'H%F_-__Z0C^B@28/8/_=!C_=NZX' 50N"8+4.@5/X/$!C' 
XM4.@)3%OV1OP@= :X.@50ZP2X?A]0B? K1OI(_W;Z4+@@!5#HYTN#Q B#?OX!
XM=%G'1NX! (GS1HH'F(E&]H-^]H%U T;K[H-^]H1T!H-^]H5U$H-^] !TW(L>
XMS!>+#XD.S!?KT(-^]H)U$XGS1HH'F"4' #T! '2\_T;NZ[>#?O:#=;'_3NYU
XMK(GPZ=MW58GE4%: ?@0A=0R#/D@%_W55,<!0ZU2 ?@1 = : ?@0J=0Z+'H(7
XM@S\ =3LQP%#K.HI&!)@M,0"(1@2*1@28/0@ =R.+-H(7B?.#Q@*#/P!U!3' 
XM4.L4BD8$F$B(1@2*1@28"<!]X;@! %!8Z6UW58GE@^PL5E>*1@284.E6 HL^
XM=A?K$(L^N!?K"HL^?A?K!(L^2 6-1OV)QL9&_0"Y"@")^)GW^8/",$Z(%(GX
XMF??YB<<)_W7G@#P =0/I'0+_#NX>?!6)\T8QP(H'4(L>SA=8B ?_!LX7Z]WH
XME4FCSA>)\T8QP(H'4(L>SA=8B ?_!LX7Z\+'1MH  (M>VH"_=   =0/IU0&+
XM7MJ OXP7 '0X_P[N'GP7BU[:,<"*AW0 4(L>SA=8B ?_!LX7ZQOH04FCSA>+
XM7MHQP(J'= !0BQ[.%UB(!_\&SA?_1MKKK(-^" !T!L9&V0#K!,9&V2"#?@8 
XM= :XC0U0ZP2XBPQ0CT;4BPZ"%XE.UHM>UH-&U@*+-PGV=0/I5 & / !T9XH$
XMF(G# U[4@#\*=23_#NX>? V+'LX7Q@>!_P;.%^L1Z,)(H\X7BQ[.%\8'@?\&
XMSA?_#NX>?!6)\T8QP(H'4(L>SA=8B ?_!LX7ZZ_HEDBCSA>)\T8QP(H'4(L>
XMSA=8B ?_!LX7ZY2+7M:#/P!U ^EY__\.[AY\$(L>SA>*1MF(!_\&SA?I8__H
XM6DBCSA>+'LX7BD;9B ?_!LX7Z4W_BS:(%X-^!@!T!KB-#5#K!+B+#%"/1M2 
XM/ !U ^F2 (H$F(G# U[4@#\*=23_#NX>? V+'LX7Q@>!_P;.%^L1Z 5(H\X7
XMBQ[.%\8'@?\&SA?_#NX>?!6)\T8QP(H'4(L>SA=8B ?_!LX7ZZSHV4>CSA>)
XM\T8QP(H'4(L>SA=8B ?_!LX7ZY&*1@28+3$ B$8$BD8$F#T( '<8BD8$F(G#
XMT>,#'H(7BS?I6O^[X 18Z2)RZ?QT58GE4%:#/L(7 '4%OL07ZQ"X" !0Z#%%
XM6XG&BQ["%XDWB3;"%XL>PA?'!P  BQ["%XM&!(E' HL>PA>+1@:)1P2+'L(7
XMBT8(B4<&Z:]T58GE@^P,5E>+1@2)1OJ#/L(7 '4#Z14!QT;^Q!>+7OZ+7P(#
XM7@2)WHM>_H-_!@!T!KA^'U#K"(L>Q!B#PP13CT;TBU[^BU\$ UX$.?-W ^F2
XM (EV]HH$F#V!_W4!1HGS1HH'F%#_=O3H4&1;6PG =-&+1OHY1O9W"(M>]( _
XM('0DBU[VQ@< N 0 4.C11%N)QXM&^HE% HM>!HM? HD_BUX&B7\"BU[T@#\@
XM=3&+7OZ+7P0#7@0Y\W<"ZR*)=O:*!)@]@?]U 4:)\T:*!YA0_W;TZ.9C6UL)
XMP'72BW;VB7;ZZ5[_BU[^BP>)1OZ#?OX = /I*/^+7OJ /P!U$(M>]( _('1&
XMBT8$.4;Z=CZX! !0Z$M$6XG'BT;ZB44"BUX&BU\"B3^+7@:)?P+K'K@$ %#H
XM*T1;B<>+1OJ)10*+7@:+7P*)/XM>!HE_ NE@<U6)Y8/L"%:+=@17"?9U ^G/
XM ( ^C1< = /IB "+1 *)1OZ+7O[_1OZ*!XA&^9@)P'4#Z6\ @'[Y*G02@'[Y
XM/W0,@'[Y6W0&@'[Y(775BP[ %XE._/\& !^#/KP7 '4+N  $4.A'0UNCO!?_
XM= +_-KP7Z'  6UO_-KP7Z!5H6\<&O!<  /\. !]U"H,^_AX = /H(D:+1OPY
XM!L 7=1J /I07 '4XBQ[ %XDW_W0"Z%,%6XDVP!?K)8L>P!?'!P  BU[\_S?H
XML0);B<>+7OR)/X,] '0$BSWK]XD^P!>+-.DJ_^E\<E6)Y8/L,E97QT;V  "+
XM1@:)1OJ+=@: /"IT!8 \/W4(QT;V 0#I7P" /%MU+8U$ 8G'@#TA=0%'B@68
XM/8'_=0%'@#TO=$& /0!U NLZ1X ]777EQT;V 0#K+8 \(748@'P!(742.78&
XM= : ?/\O=0?'1O8! .L0@#P =0+K((H$F#V!_W4!1H \+W4.@W[V '0"ZPJ-
XM1 &)1OI&Z7C_@W[V '5.BPZ\%SE.!'0#_T;VBW8&B@28/8'_=0%&BUX$B@2(
XM!_]&!( \ '4"ZP-&Z^.#?O8 =!&-1MA0_S:\%^@S;EM;"<!\"/\VO!?H;0%;
XMZ8IQB7;XBT8&.4;Z="2+=@8Y=OIV'(H$F#V!_W4!1HGS1C' B@=0BUX$6(@'
XM_T8$Z]^+#KP7.4X$=06^1 7K)8L>O!>#PP$Y7@1U#HL>O!> /R]U!;Y&!>L+
XMBS:\%XM>!,9'_P!6Z*-<6XE&UH-^U@!U ^D7<8L.O!<Y3@1T!XM>!,9'_R^+
XM7OB /P!U!\=&T@$ ZP['1M(  (M>^,8' /]&^,=&T   BU[Z@#\N=!2+7OJ*
XM!Y@]@?]U#(M>^H!_ 2YU _]&T(,^_AX = /IA #_=M;H2F%;B4;4@W[4 '4#
XMZ7$ BU[4@'\*+G4(@W[0 '4"Z]*+7M2#PPI3_W;ZZ%\!6UL)P'2_@W[2 '09
XMBU[4@\,*4_]V!.CH;%M;_S:\%^A( %OKH(MV!(M>U(/#"HE>SHM>SO]&SHH'
XMB 1&F G = +K[L9$_R__=OA6Z,']6UOI<O__=M;H_EI;@W[2 '4'BU[XQD?_
XM+^DA<%6)Y5!05E?_=@3H+V9;0%#HOT!;B<?_=@17Z'IL6UNX! !0Z*Q 6XG&
XMB7P"BQ[ %XDWB3; %^GH;U6)Y5!05E<Q_XMV! GV= 5'BS3K]U?_=@3H!0!;
XM6^G';U6)Y8/L"E97@WX& 7\&_W8$Z8, BT8&T?B)1OB+=@2+1OB)1O;_3O9\
XM!XEV_(LTZ_2+7OS'!P  _W;X_W8$Z+__6UN)1OR+1@8K1OA05NBO_UM;B<:-
XM1@2)QXM>_/]W O]T N@Y75M;"<!]$HDUB?>+-8,] '7CBT;\B07K%HM&_(D%
XMBW[\BP7_-8E&_%@)P'7(B37_=@18Z2QO58GE5HMV!%>+?@: /"%U&H!\ 2%U
XM%+@! %!7C40"4.@4 %M;62G!4>L(5U;H!P!;6U!8Z?9N58GE@^P.5E>+=@2+
XM?@:)\T:*!XA&^YA0Z64!B?M'B@>8B?-&4(H'F%DYP73A,<!0Z6(!B?M'@#\ 
XM==,QP%#I5 &*!(A&^Y@]@?]T+8!^^S]T)X!^^RIT(8!^^UMT&XH%F%"*1ON8
XM63G!= Z /0!U!C' 4.D? 4?KY5=6Z(+_6UL)P'0'N $ 4.D* 8G[1X _ '7F
XM,<!0Z?P B7;XBU[X@#\A=0/_1OB+7OB /P!U ^FV (M>^(H'F#V!_W4#_T;X
XM_T;XBU[X@#]===S'1O8  ( \(74$_T;V1L=&]   B?M'B@>(1O.)\T:*!XA&
XM^XI&^Y@]@?]U"(GS1HH'B$;[@#PM=3. ? %=="U&B@28/8'_=0%&BD;SF%"*
XM1ON863G!?!**1O.84(H$F%DYP7\%QT;T 0!&ZQ.*1O.84(I&^YA9.<%U!<=&
XM] $ B?-&B@>(1ON8/5T =9:+1O8Y1O1T ^FK_C' 4.LMB?M'B@>84(I&^YA9
XM.<%U ^F3_C' 4.L5NP0%6.F2:H ] '0%,<!0ZP2X 0!06.E=;56)Y5!05E>+
XM=@2*!)@]@?]T"XGS1H _ '7PZ4!MB?> / !T$XH$F#V!_W4!1HGS1HH'B 5'
XMZ^C&!0#I(&U5B>6#[ I65XU&^E#H?SY;BUX$BT\&B0[,%XL.,!&)#LX7BPXR
XM$8D.[A['!L(7   QP%#_=P3HC^];6_\.[AY\#8L>SA?&!P#_!LX7ZQ'H9C^C
XMSA>+'LX7Q@< _P;.%XL.,A$K#NX>4>AF/5N)QO]V!E;H?_U;6XG'C4;Z4.@L
XM/EN)^.F:;%6)Y3' 4.@& %LQP.F-;%6)Y8/L3%97,<!04.C:!UM;"<!^ NOQ
XMQT;^ 0"+-M@7BP[6%SE._GX#Z0,"@'P- '4#Z?$!@WP( '4(5NCS 5OIXP&#
XM?@0 = F ? X =0/IU &+1 B)1OR+? 8Y? 9U&?\U_W;^N'X%4+A  %"-1K10
XMZ HS@\0*ZQ3_-;B(!5"X0 !0C4:T4.CT,H/$"(U&M%#H!#%;C4:T4.@*8EN)
XM1O3&1K0 @WT"_W4#Z8H ]D4"_W4=N0@ BT4"T_A0N) %4+A  %"-1K10Z+,R
XM@\0(ZV>+10*)1OJ+1OHE?P ]' !W*HM&^B5_ (G#T>.#OQ(0 '09BT;Z)7\ 
XMB</1X_^W$A"-1K10Z/IG6UOK&8M&^B5_ %"XF 50N$  4(U&M%#H73*#Q CV
XM1OJ = VXH@50C4:T4.B>65M;C4:T4.A:,%O_=O2-1K10Z%UA6UD!P8E.](L>
XM/@N+1P)(B4<"BQX^"X-_ @!])?\V/@OHE3!;BQX^"[@@ %#_-XL?@\,!4XL>
XM/@M8B0=;6(@'ZQN+'CX+N"  4/\WBQ^#PP%3BQX^"UB)!UM8B ?_1O2#?O0>
XM?*+_=03HY"];BQX^"XM' DB)1P*+'CX+@W\" 'TE_S8^"^@P,%N+'CX+N H 
XM4/\WBQ^#PP%3BQX^"UB)!UM8B ?K&XL>/@NX"@!0_S>+'X/# 5.+'CX+6(D'
XM6UB(!_]._'\"ZP:#QP;I1/[&1 X @'P, G4%5N@- %O_1OZ#QA#I\?WI66I5
XMB>504%:+=@17_P8 'XM$"(E&_(M\!O]._'P3@7T$?A]T!_]U!.AB7UN#QP;K
XMZ#ET!G0'_W0&Z%%?6\9$#0#_#@ ?=0J#/OX> '0#Z& ]Z0=J58GE@^P&5E>#
XM?@0!?@Z+7@;_=P+H0@%;B<;K C'V"?9T4(!\# !U ^ET +@& /=D""T& (G#
XM UP&BT<"B4;\]D;\_W40N0@ BT;\T_@E_P")1OSK#(M&_"5_  6  (E&_( ^
XMCQ< =056Z$+_6_]V_.L\BS[8%XL>UA>Y! #3XP,>V!<Y^W<%,<!0ZR* ?0T 
XM= B ?0P =0+K!8/'$.O7,<!0N $ 4.B\!%M;Z7#_6.E5:56)Y5!05E>+7@;_
XM=P+HEP!;B<<Q]CEU"'\#Z84 N 8 ]^:)PP-=!O\WN+(%4.CW+UM;BQX^"XM'
XM DB)1P*+'CX+@W\" 'TQ_S8^"^A]+EM&.74(?@:X( !0ZP2X"@!0BQX^"_\W
XMBQ^#PP%3BQX^"UB)!UM8B ?KG48Y=0A^!K@@ %#K!+@* %"+'CX+_S>+'X/#
XM 5.+'CX+6(D'6UB(!^ES_S' Z:YH58GE@^P*5E>+?@0)_W4+N+8%4.@]/%OI
XM! & /25T ^FR (I% 9@M,  ]"0!W3XU% 5#H%$%;B4;^@W[^ '\#Z=P BP[6
XM%SE._GX#Z=  N00 BT;^T^ M$ ")PP,>V!> ?PT =0/IM@"Y! "+1O[3X"T0
XM (G# Q[8%U/IK@#'1O8  (LVV!>+#M87B4[X_T[X?#> ? T ="R#? @ ?B:+
XM7 ;_=P2-10%0Z&] 6UL)P'03@W[V '0*5[C&!5#HE#M;6XEV]H/&$.O$@W[V
XM '1/_W;VZU=7Z)- 6PG =$%7Z&A 6XE&^HLVV!>+#M87B4[X_T[X?"F ? T 
XM=!Z#? @ ?ABX!@#W9 @M!@")PP-<!HM&^CD'=0-6ZQ*#QA#KTE>XU 50Z"T[
XM6UOI@V=8Z7]G58GE4%!65XL^UA>+-M@73PG_? /IE #_!@ ?@S[6%P!U#;A 
XM %#HHS=;H]@7ZS2Y! "+%M87T^*#PD!2Z(TW6XG&N00 BQ;6%]/B4E;_-M@7
XMZ'@_@\0&_S;8%^A37%N)-M@7BQ[6%[D$ -/C Q[8%XG>OP0 3PG_?!^+#M87
XM,<!0_S;8%_\&UA>)R[D$ -/C6 '#6(A'#>O<_PX 'W4:@S[^'@!T$^@L.NL.
XM@'P- '4"ZP:#QA#I5O__!@ ?QD0, ,9$#0'&1 X QT0(  "#?@8!?A"X!@#W
XM9@90Z.XV6XE$!NL#B70&_PX 'W4*@S[^'@!T ^C>.8GPZ8-F58GE@^P*5HMV
XM!%?_!@ ?Z,MAB<>#__]U&/\. !]U"H,^_AX = /HL#FXY 50Z/@Y6PG_= /I
XMLP"+#G07B4[XQP9T%P  BP[6%XE.]HL.V!>)3OK_3O9\%HM>^H!_#0!T!_]V
XM^NC#^UN#1OH0Z^7H^"K_#@ ?=0J#/OX> '0#Z%@YZ' [@WX( 74YN ( 4.B0
XM/%NX P!0Z(@\6PGV= :#? @ =1\QP%#HR6%;,<!0N/ %4.@"8EM;"<!T"+CZ
XM!5#H9CE;@W[X '0?@#Z/%P!T&+@" %#H<SM;N , 4.AK.UNX#P!0Z&,[6U?K
XM:8-^" %U!(D^2 4)]G1*BT0(B<%!_W0&B4P(N08 ]^%; <.)7OJ)/XM>^L='
XM O__BU[ZQT<$?A^ /H\7 '0:@SYT%P!T$X-^!@!T#?]V!NC+ EN+7OJ)1P3_
XM#@ ?=0J#/OX> '0#Z(8X5UCI*V55B>504%:+=@17_P8 'X!\# !U#%:X 0!0
XMZ&T 6UOK[K@& /=D""T& (G# UP&BW\"]\?_ '4/N0@ B?C3^"7_ (E&_.L+
XMB?@E?P %@ ")1OQ6Z'WZ6\<&_AX  (GX)7\ /0( =0VX @!0Z(-A4.A245M;
XM_PX 'W4*@S[^'@!T ^C^-XM&_.FB9%6)Y8/L$E97C4;\4/]V!.CZ 5M;B4;^
XM@W[^_W4'@SX0(@1TY(-^_@!_!O]V_NG, ?\& !_'1O8  (LVV!>+'M87N00 
XMT^,#'M@7.?-W ^F, (!\#0!U ^E] ,=&] $ QT;R 0"+? :X!@#W9 B)PP-<
XM!CG[=CF#/?]U NLMBT;^.05U"8M&_(E% HEV]H-] O]U!\=&\@  ZQ"+10(E
XM_P ]?P!U!<=&]   @\<&Z[B#?O( ="*#?O0 = :X @!0ZP2X 0!0CT;NBD0,
XMF#E&[G0&BT;NB$0,@\80Z6#__PX 'W4*@S[^'@!T ^@+-X,^=!< =!N /H\7
XM '04@WX& '4#Z>@ BT8&.4;V= /IW0"+1OPE@ ")1O"!9OQ_ '4#Z=< @W[\
XM G4#Z<X @W[\#74#Z<4 BT8&.4;V=!'_=OZX$ 90_S9 "^@ *H/$!H-^_!Q_
XM&XM>_-'C@[\2$ !T#XM>_-'C_[<2$.A6*%OK$?]V_+@6!E#_-D +Z,XI@\0&
XM@W[P '0(N" &4.@U*%N+'D +BT<"2(E' HL>0 N#?P( ?27_-D +Z&\H6XL>
XM0 NX"@!0_S>+'X/# 5.+'D +6(D'6UB(!^L;BQY "[@* %#_-XL?@\,!4XL>
XM0 M8B0=;6(@'N"8+4.CF*%OK#8-^]@!T!XM>]L9'#@'_=OY8Z:)B58GEQP;4
XM%P$ Z9AB58GE@WX$ '4%,<!0ZPC_=@;H]UU;4%CI?F)5B>505K@R %#HO3);
XMB<:)-M(7QP;0%RX _W8$Z T 6XL>TA?&!P")\.E18E6)Y8/L"E:+=@17_S3I
XM* +_= +HZO];N# &4.@D EO_= 3HV_];Z18"_W0"Z-'_6[@T!E#H"P);_W0$
XMZ,+_6^G] ?]T NBX_UNX.@90Z/(!6_]T!.BI_UOIY &+1 2)1OR#?OP =0/I
XMU0&+7OS_=P+HC?];BU[\@S\ = BX0 90Z+\!6XM>_(L'B4;\Z].X1 90Z*T!
XM6_]T NAD_UNX1@90Z)X!6^F7 ?]T NA2_UOIC0&X2 90Z(D!6_]T NA _UNX
XM3 90Z'H!6_]T!.@Q_UNX5 90Z&L!6^ED ;A8!E#H8 %;ZPBX8 90Z%8!6_]T
XM N@-_UNX: 90Z$<!6_]T!.C^_ENX;@90Z#@!6^DQ ;AV!E#H+0%;_W0&Z"8!
XM6[A\!E#H'@%;Z1<!N(0&4.@3 5N+7 +_=P3H"0%;N(H&4.@! 5OI^@#_= 3H
XM]P!;N)(&4.CO %OIZ "+? 0)_W085^B>_EN#?0( = BXF@90Z-( 6XM] NOD
XMBWP&"?]U ^F_ +B<!E#HNP!;5^AT_EN+?0+KY_]T!.BJ %OIHP#'1OJ>!L=&
XM^ $ ZR['1OJ@!L=&^ $ ZR+'1OJD!L=&^ $ ZQ;'1OJH!L=&^   ZPK'1OJJ
XM!L=&^   BT;X.40$=!6+1 0%, "(1O;&1O< C4;V4.A0 %O_=OKH20!;@SP3
XM= 6#/!1U%XM$!@4P (A&]L9&]P"-1O90Z"H 6^LD_W0&Z-_]6^L;N*X&4.@7
XM %OK$;BT!E#H#0!;ZP>[2@58Z?I/Z0Y@58GE@^P(5E?'1O@  (,^T!< ?P/I
XM]U^+?@2+-M(7B?M'B@>(1ON8"<!U ^FE (I&^Y@]@?]U"XG[1XH'B 1&Z7P 
XMBD;[F#V"_W49Q@0D1O\.T!=^!,8$>T:)^T>*!YB)1OCK6H!^^SUU'X-^^ !T
XM&8M&^"4' "T! (G#BH>X!H@$1L=&^   ZS6*1ON8/8/_=0;&!'U&ZR:*1ON8
XM,<D]A?]U 4&8/83_=02!R0$ "<ET!O\&T!?K!HI&^X@$1O\.T!=^ ^E7_\8$
XM+D;&!"Y&Q@0N1HDVTA?I-%]5B>6#[!)65[X* $X)]GP&QD+N .OUBT8&)0( 
XMB$;O]D8& 70YN!8 4.A5+UN)1OPQ]H/^"GT7BU[\N/[_4(/# E.)\]'C6 '#
XMCP=&Z^2+#MH7BU[\B0^+3OR)#MH7BWX$"?]U ^F! (M%!(E&^/9&!@%T7HM>
XM_(U' HM>^-'C <.#/_YU3/\& !^X"@!0_W;XZ$0#6UN)QH/^_G06BU[\C4<"
XMBU[XT>,!PXDW_W;XZ'):6_\. !]U"H,^_AX = /HQS&#_OYU$;C2!E#H"C);
XMZP?_=OCH3%I;C4;N4%?H(P!;6XM] NEX_X!^[P!T!L<&/@LR"X!^\ !T!L<&
XM0 LR"^DP7E6)Y8/L!E97BWX$BT4$B4;^_P8 'XM>_@->!L8' /\UZ0X!BW4(
XM,<!05N@W6EM;B4;Z@W[Z 'T9N $ 4/\V$"+H/3);6U!6N.H&4.B',8/$!HM&
XM_CE&^G4#Z=P _W;^_W;ZZ&\"6UO_=OKHLUE;Z<< BW4(N+8!4%;HXDM;6XE&
XM^H-^^@!]RK@" %#_-A BZ.XQ6UM05KC^!E#H.#&#Q ;KKXMU"+@! %!6Z+=9
XM6UN)1OJ#?OH ?2RXM@%05NB>2UM;B4;Z@W[Z 'T9N ( 4/\V$"+HJC%;6U!6
XMN!0'4.CT,(/$!K@" % QP%!0_W;ZZ.98@\0(Z5G_@WT& 'PZBUT& UX&@#\ 
XM= N+7OX#7@;&!P'K)/]V_O]U!NBW 5M;ZQ=7Z"8 6XE&^NDE_^@61^L'N[X&
XM6.GA3/\. !]U"H,^_AX = /H/C#IY5Q5B>6#[ 96BW8$5XU&_%#H@$Q;"<!]
XM"+@J!U#H;#!;@SP5=22+7 ;_=P3HTU);B<>!_P 0?Q*+7 97_W<$_W;^Z.8H
XM@\0&ZW*X @!0,<!04.@/]H/$!@G =6#_=OSH=5A;N $ 4+@" %#HGUQ;6[@!
XM %"X P!0Z))<6UNX 0!04.B(7%M;,<!0N T 4.A\7%M;@SP5=1*+7 97_W<$
XM_W;^Z(8H@\0&ZPO_=O[_= ;HE=U;6S' 4.@-6UO_=O[H%5A;BT;\Z1Y<58GE
XM4%!65XLVVA<Q_X/_"GU$B?O1XXU$ @'#@S_^=#-7Z.I76XG[T>.-1 (!PX,_
XM 'P@B?O1XXU$ @'#5_\WZ(  6UN)^]'CC40" </_-^B\5UM'Z[?_!@ ?BPR)
XM#MH75NCL4%O_#@ ?=0J#/OX> '0#Z/\NZ:9;58GE4%!65XLVVA<)]G0X,?^#
XM_PI]+8G[T>.-1 (!PX,_ 'P/B?O1XXU$ @'#_S?H9%=;B?O1XXU$ @'#QP?^
XM_T?KSHLTZ\3I7%M5B>505O]V!O]V!.C72EM;B<8)]GT-@SX0(AAU!KC^_U#K
XM 598Z35;58GE4%!6BW8$5[@O %#_-.@N2UM;"<!T%?]V!E;_-.AL (/$!HL.
XM$"*)3OSK2<=&_ ( _S2-1@A0Z*4"6UN)QPG_=#/_3@I])X,^'A@ =2#_=@96
XM5^@V (/$!H,^$"("= Z#/A B%'0'BPX0(HE._%?H^2M;Z[RX! !0_W;\Z ,O
XM6UM0_S3H.BY;6^FF6E6)Y5!05HMV!E?_=@A6_W8$Z!=4@\0&@SX0(@1T[(L.
XM$"*)3OZ#?OX(=53H C0QP%#_=@3HCAU;6_\TZ/<J6Z.(%Z.Z%^@A'.A('8L^
XMV!R#/MH< GX9@#TC=12 ?0$A=0Z+1@2)!/]V"%;H' !;6XU$ E#H3[5;N ( 
XM4.A:+5N+3OZ)#A BZ1U:58GE@^P<5E>+#MH<@^D"B4[^BQ[8'(/# HG?C4;J
XMB<;_3OY\#8 ]('0%@#T)=0-'Z^Z#?OX ?0+K&(G[1XH'B$;YF#T* '4#Z9H 
XMC4;T.<9U"+@\!U#H:2U;BPXP$8E.^HL.,A&)#NX>_P[N'GP-BU[ZBD;YB ?_
XM1OKK$>@U+(E&^HM>^HI&^8@'_T;Z_T[^?!J)^T>*!XA&^9@]( !T#(!^^0ET
XM!H!^^0IUO?\.[AY\"XM>^L8' /]&^NL/Z/0KB4;ZBU[ZQ@< _T;Z_T;^3XL.
XM,A$K#NX>4>CR*5N)!(/& ND[_XU&[#G&=46+1NJ)1O:X2 =0_W;VZ/E&6UL)
XMP'00N$P'4/]V]NCI1EM;"<!U ^D(68M>]H _+W0/BU[V@#\ =0+K"O]&]NOI
XM_T;VZ\&-1NJ)\2G!B4[H@W[H '4(N% '4.AZ+%N+1@2)1N:+7N:#1N8"@S\ 
XM= +K\HM&YBM&! -&Z%#H "E;B4;DC4;JB<:+1N2)1N:#;N@"?!*)\X/& HL'
XMBU[FB0>#1N8"Z^B+=@2)\X/& HL'BU[FB0>+7N;_-X-&Y@)8"<!T NODBQZR
XM&#' 4(/#!5/_=@;_=N3H)?V#Q CI4UA5B>6#[ A65XM>!(,_ '4&,<!0Z:T 
XMBUX$BP>)1OJ+=OJ / !T#8 \.G0(@#PE= -&Z^Z)\"M&^E#_=@;H+TY;60'!
XM@\$"B4[XBT;X.08R$7T%Z-$IZ_*+/C 1.7;Z=!^)\"M&^E!7_W;ZZ#,P@\0&
XMB? K1OJ)PP'[B=_&!2]'_W8&5^A#5%M;QP8>&   @#PE=1)&B38>&( \ '0(
XM@#PZ= -&Z_. /#IU"HU$ 8M>!(D'ZP>+7@3'!P  _W;XZ$,H6U!8Z8Q758GE
XM@^P.5E>#?@0!?R._X!>!_QX8<Q2+-0GV= E6Z+< 6XLTZ_.#QP+KYC' 4.FC
XM ,=&^   N%P'4.@NM5N)1OJ#?OH =!J#?OIR=0DQP%#H> 5;Z^"#?OIV==K_
XM1OCKU8L>?!?_-XL'B4;R6 G =& QP%#_=O+H&09;6XG&"?9T%H-\! !T#8-\
XM! %U"H,^WA< ? /HN :X 0!0C4;T4/]V\NA. 8/$!H-^^ !T&X-^]/]T$C' 
XM4/]V\NC5!5M;B<96Z!( 6^C9'(,&?!<"ZY QP%!8Z;1658GE@^P&5HMV!%>#
XM? 0 =3"+1 *)1OZ+'K(8@\,%B5[\C40'4(U&_%#H-?Y;6XG'5^BY)UO_3OY]
XMYU?H@QM;ZRB#? 0!=0^-1 =0N& '4.@T'5M;ZQ.#? 0"=0V-1 =0N&P'4.@?
XM'5M;@'P& '15BQX^"XM' DB)1P*+'CX+@W\" 'TE_S8^"^B?&UN+'CX+N"H 
XM4/\WBQ^#PP%3BQX^"UB)!UM8B ?K&XL>/@NX*@!0_S>+'X/# 5.+'CX+6(D'
XM6UB(!XL>/@N+1P)(B4<"BQX^"X-_ @!])?\V/@OH2AM;BQX^"[@* %#_-XL?
XM@\,!4XL>/@M8B0=;6(@'ZQN+'CX+N H 4/\WBQ^#PP%3BQX^"UB)!UM8B ?I
XMF%55B>6#["Q65XM^!+@O %!7Z))%6UL)P'02BUX&QP<  (M>!L=' @  Z6U5
XM,<!05^AM!%M;B<8)]G0)@'P& '4#Z4P"@S[>%P!]0E?H60);B4;4@W[4 'PT
XM_P8 '[@! %!7Z#L$6UN)QL=$! $ BT;4B40"_PX 'W0#Z1,"@S[^'@!U ^D)
XM NAE*.D# L=&^O__"?9T%8-\! %U"8L.WA>)3OKK!HM$ HE&^HL>LAB#PP6)
XM7OC'1M8" ,=&_/__5XU&^%#H?_Q;6XE&]H-^]@!U ^F( ?]V]NCW)5O_1OR#
XM/AX8 '1I_S8>&+AX!U#H%"U;6PG =$17Z*T!6XE&U(-^U !] NNX_P8 '[@!
XM %!7Z(T#6UN)QL=$! $ BT;4B40"_PX 'W0#Z64!@S[^'@!U ^E; >BW)^E5
XM ?\V'ABX@ =0Z+\L6UL)P'4#Z7#_BU[V@#\O=1:+1OHY1OQ_#HM&^CE&_'P#
XMZ28!Z5+_C4;84/]V]NBZ4%M;"<!])X,^$"($=0+KYX,^$"("=0/I+_^#/A B
XM%'4#Z27_BPX0(HE.UND;_\=&U@T BT;<)0#P/0" = /I"/^#/AX8 '1!_W;V
XMZ/!)6T!0Z( D6_]V]N@5K%LQP%!7Z,<"6UN)Q@GV= :#? 0"= [_=O97N(8'
XM4.A,)X/$!O]V]NC7)%OID0#_=N#H2T!9.<%U"?9&W$!U(.FL_O]VXNB#/EDY
XMP74)]D;<"'4,Z9C^]D;< 74#Z8_^_P8 '[@! %!7Z&0"6UN)QL=$!   BT;\
XMB40"_PX 'W4_@S[^'@!T..B4)NLS"?9T ^CY H-^" !T'+@$ %#_=M;H=2=;
XM6U!7N)P'4/\V0 OHOAF#Q B+7@;'!___Z0E3QD0& (M$!(M>!HD'BUX&BT0"
XMB4<"Z?%258GE4%97BWX$ON@'@SP ="2+'(H'F%"*!9A9.<%U$5?_-.BD0%M;
XM"<!U!?]T NL)@\8$Z]>X__]06.FT4E6)Y5!05E>_X!>!_QX8<R:+-0GV=!N#
XM? 0 = V#? 0!=0N#/MX7 'P$QD0& 8LTZ^&#QP+KU.E[4E6)Y8/L"E97BQZR
XM&(/#!8G?BW8$QT;X#R?'1OH  ,=&]O__B@684(H$F%DYP70?BT;ZB4;X@#T 
XM=06 /#IT"H ].G4(@#P =0/_1OB)]X \ '4"ZRZ /"5U'8-^]@!]%XU$ 5"X
XMI =0Z'PJ6UL)P'0&BT;ZB4;V@#PZ=0/_1OI&1^N@@S[>%P!]#8-^]@!\!XM.
XM]HD.WA>#/MX7 'P+@W[V 'T%QT;X  #_=OCH"P!;BT[VB0[>%^G!456)Y8/L
XM!E97_P8 '[_@%X'_'AAS1(E^_(M>_/\WBS=8"<!T,(-\! !U"(M&!#E$ GT/
XM@WP$ 747BT8$.0;>%WP.BP2+7OR)!U;HIT9;Z\F)=OSKQ(/' NNV_PX 'W4*
XM@S[^'@!T ^BN).E5456)Y8/L!E97_P8 '[_@%X'_'AAS-(E^_(M>_/\WBS=8
XM"<!T((-\! )U%8L$BU[\B0?_= +H6"%;5NA+1EOKV8EV_.O4@\<"Z\;_#@ ?
XM=0J#/OX> '0#Z%(DZ?E058GE@^P(5E>+=@2*!)BY! #3X(E&_H \ '0.B?-&
XMB@>8 T;^B4;^Z^V!9O[_?[D? (M&_IGW^8G3T>.!P^ 7B5[XBS\)_W09_W8$
XMC44'4.A_/EM;"<!U NL'B7[XBSWKXX-^!@!T2@G_=4;_!@ ?_W8$Z)]&6P4(
XM %#HR2!;BU[XB0>+7OB+/\<%  #'103__\9%!@#_=@2-10=0Z-!,6UO_#@ ?
XM=0J#/OX> '0#Z)XCBT[XB0[<%XGXZ3Q058GE4%;_!@ ?BQ[<%XLWBP2)!U;H
XM5T5;_PX 'W4*@S[^'@!T ^AJ(^D24%6)Y5!65XM^!O\& !^X 0!0_W8$Z '_
XM6UN)QH-\! )U!_]T N@D(%N+!8E$!(M% HE$ O\. !]U"H,^_AX = /H)"/I
XMRT]5B>504/\& !_'1OP" /]V!NB''%N)1OZ-1OQ0_W8$Z)C_6UO_#@ ?=0J#
XM/OX> '0#Z.TBZ99/58GE4%8QP%#_=@3HC?Y;6XG&"?9T$(-\! )U"O]T NBL
XM'UOH,O_I;$]5B>6#["165[A^'U#H.ZU;BQY\%_\WBS=8"<!U&[@! %"X2 E0
XMZ&X*6UN)Q@GV=0BX3@E0Z-DB6X \+W06N $ 4+A<"5#H3@I;6XE&_(-^_ !U
XM!<=&_'X?5HU&_%#HN/9;6XG'"?]T,(U&W%!7Z)-+6UL)P'SBBT;@)0#P/0! 
XM===65^B]/%M;4%?H' !;6PG ?,4QP%#K#5:X9 E0Z' B6UOIQDY8Z<).58GE
XM5HMV!/\& !]6Z/@[6PG ?1;_#@ ?=0J#/OX> '0#Z/0AN/__4.LR5NAS %O_
XM#@ ?=0J#/OX> '0#Z-DA@WX& '04@#Z/%P!T#?\V,!&X= E0Z#T56ULQP%!8
XMZ6-.58GE4%!65XL.(!B)S@G)=04QP%#K)XL^(!B /"]T"( \ '0#1NOS@#P 
XM=0C'!B 8  #K",8$ $:)-B 85UCI(4Y5B>504%97Z&/[_W8$Z"Q$6T!0Z+P>
XM6Z,@&/]V!/\V(!CH<TI;6XLV,!&+#C(1B0[N'HM>!( _+W0]@SXB& !U ^G=
XM38L^(AB /0!T'_\.[AY\"HG[1XH'B 1&Z^OH6"")QHG[1XH'B 1&Z]R ??\O
XM=07_!NX>3NA%_XG'"?]T;+AX"5!7Z'$[6UL)P'42.38P$7/C_P;N'DZ /"]T
XMV>ON@#T =-*X? E05^A,.UM;"<!TQ/\.[AY\!L8$+T;K">CV'XG&Q@0O1H ]
XM '2J_P[N'GP*B?M'B@>(!$;KZ^C8'XG&B?M'B@>(!$;KW#DV,!%U%?\.[AY\
XM!L8$+T;K">BW'XG&Q@0O1H,^[AX =0KHIQ^)QL8$ .L#Q@0 @SXB& !T"/\V
XM(ACH*D);_S8P$>A_'5NC(ACIZ4Q5B>7H8@#_-B(8Z.D16XL>/@N+1P)(B4<"
XMBQX^"X-_ @!])?\V/@OH-1);BQX^"[@* %#_-XL?@\,!4XL>/@M8B0=;6(@'
XMZQN+'CX+N H 4/\WBQ^#PP%3BQX^"UB)!UM8B <QP.F#3%6)Y8'L# %65X,^
XM(A@ = /I;DS_!@ ?C8;T_E#H#SQ;"<!]"+A^"5#H^Q];N $ 4#' 4.C,Y%M;
XMB8;X_K@" % QP%#_MOC^Z+3E@\0&"<!U5O^V]/[H&4A;@[[V_@%T';@! %#H
XM"DA;N $ 4/^V]O[HLO!;6_^V]O[H]4=;,<!0N)H)4+B0"5#H)D6#Q 8QP%"X
XMK E0N)X)4.@518/$!KBP"5#H@!];_[;V_NC#1UO'AO;^__^-A@#_B<:-1@ I
XM\%!6_[;T_N@&2(/$!HG'"?]_#(/__W43@SX0(@1U# G_?MF)^P'SB=[KT?^V
XM]/[H@$=;QX;T_O___[;X_NA7YEN)AOK^@[[Z_@!T!S' 4.@5'UL)_WP.C88 
XM_SG&= : ?/\*= BXQ@E0Z/L>6\9$_P"-A@#_4.C8&UNC(AC_#@ ?=0J#/OX>
XM '0#Z(L>Z3)+58GE@^P45E?'1O@  ,=&]@  N-H)4.CXJ%N)1NR#?NP =!:#
XM?NQP=0F+#GH7B4[VZ^#'1O@! .O9@W[V '05,<!0Z!LV6PG = K_=O;H 1!;
XMZ/40BPY\%XG/"<EU"+C>"5#H<AY;N $ 4+CH"5#H[ 5;6XE&](-^] !U!<=&
XM]'X?QT;N  #'1O ! ,=&_   BS8P$8L.,A&)#NX>N $ 4(U&^U QP%#HUD:#
XMQ 8] 0!T",=&[@$ Z2H!@'[[ '4"Z]J#?OP =";'1OP  (!^^PITR?\.[AY\
XM"(I&^X@$1NN[Z.4<B<:*1ON(!$;KKH-^^ !T"X!^^UQU!?]&_.N=@'[["G4#
XMZ=P @W[P '0<BU[T@#\@=12*1ON84/]V].@>.EM;"<!T ^ER_\=&\   @W[\
XM '1!@'[[7'4[N $ 4(U&^U QP%#H-T:#Q 8] 0!T",=&[@$ Z8L _P[N'GP)
XMBD;[B 1&Z33_Z%X<B<:*1ON(!$;I)O^#?0( =$N*1ON84/]V].BX.5M;"<!T
XM.H,^[AX =0KH,AR)QL8$ .L#Q@0 ,<!0_S8P$?\UZ(L"@\0&@\<"QT;P 0"+
XM-C 1BPXR$8D.[A[IU?[_#NX>? F*1ON(!$;IQO[H\!N)QHI&^X@$1NFX_H,^
XM[AX =0KHVQN)QL8$ .L#Q@0 ,<!0_S8P$?\UZ#0"@\0&@\<"@ST =!$QP%"X
XM?A]0_S7H'0*#Q ;KYXM&[ND,256)Y8/L!E97BUX&BW<""?9U+O\& !\QP%#H
XM:C5;B<=7Z&,U6_\. !]U"H,^_AX = /H+AQ7N.P)4.BB#UM;ZS<Q_XH$F"TP
XM (E&^H-^^@AR#XM>!O]W KCR"5#H4QQ;6[D# (GXT^ #1OJ)QT: / !UT%?H
XM$#5;,<#ID$A5B>6#["Q65X-^! !T!L<&3!@* (,^3!@ =0/I<DB-1O)0Z-D9
XM6_8&MA@@=0J+'K@8@\,)4^L(BQZ^&(/#!5./1OPQ_SD^3!A_ ^GY +A^'U"-
XM1OQ0Z.7O6UN)1OJ#?OH =0/IX "+7OJ /P!U ^G1 (MV^H \ '0#1NOX@'S_
XM+W0#Z" RQD3_ (U&U%#_=OKHE41;6PG ?0K'1N(  ,=&Y   B?O1X]'C_W;D
XM_W;B_[<F&/^W)!CH2#@)P'YP@WX$ '5J@SX>& !T!O\V'ACK!+@&"E#HUPQ;
XMBQY "XM' DB)1P*+'D +@W\" 'TE_S9 "^@1#5N+'D +N H 4/\WBQ^#PP%3
XMBQY "UB)!UM8B ?K&XL>0 NX"@!0_S>+'X/# 5.+'D +6(D'6UB(!XG[T>/1
XMXXM&XHM.Y(F')!B)CR881^G^_HD^3!B-1O)0Z,L86^D[1U6)Y8/L!E97OA0*
XMBSP)_W0M]D4" 74B_W0$Z \(6XE&^HM>^HL'B06+7OJ)/XM$!(E%!(M$ HE%
XM H/&!NO-Z?I&58GE@^P,5E?'1O0  (MV!(GS1HH'F(G#BH>1#YBH#G4%QT;T
XM 0"*!)B)PXJ'D0^8J ]U$8 \ '0/@#P]=0+K",=&] $ 1NO>B? K1@2)QX-^
XM] !T#O]V!%>XD@I0Z#\:@\0&B?@% @")1OJ#?@8 =0>!3@@@ .L0_W;Z_W8&
XMZ)0\6UD!P8E.^O]V^NBY%EN)1O:+=O:+1@2)1OQ/"?]\#8M>_/]&_(H'B 1&
XMZ^[&!#U&Q@0 @WX& '0)_W8&5NBO0EM;_W8(_W;VZ 4 6UOI*495B>6#[ 96
XM5XM^!%?H"P=;B4;\BU[\BS<)]G4#Z9, _W0$5^@Q!UM;"<!U ^E^ /9$ @)T
XM';@] %!7Z/DU6ULI^(E&^E?_=OJXI@I0Z'\9@\0&_P8 'X'^KAAU"(U%!5#H
XM2_-;]D0"&'4'_W0$Z.LZ6X%D L?_BT8&"40"B7P$@?ZT&'0-@?ZZ&'4/]@:V
XM&"!T"+@! %#H /U;_PX 'W4*@S[^'@!T ^C5&.E\18LTZ6;_N 8 4.B]%5N)
XMQHM&!HE$ HE\!(M>_(L'B02+7OR)-^E5156)Y5!6_P8 'XMV! GV=!0QP%#_
XM= +HRQ5;4.@._UM;BS3KZ/\. !]U"H,^_AX = /H=QCI'T55B>505E>+?@17
XMZ (&6XG#BS<)]G0L5_]T!.@O!EM;"<!T&_9$ B!T!3' 4.L7N#T 4/]T!.CS
XM-%M;0%#K!XLTZ] QP%!8Z=5$58GE4%!65XL^MA<)_W0C_W8$_W4"Z.L%6UL)
XMP'00N#T 4/]U NBZ-%M;0%#K4(L]Z]G_=@3HC@5;B<.+-PGV=#K_=@3_= 3H
XMN05;6PG ="?V1 (@=0R#?@8 =0OV1 (!=04QP%#K%[@] %#_= 3H<31;6T!0
XMZP>+-.O",<!06.E31%6)Y8/L"E97QT;^  "_3AB!_YP8<QB+-0GV= WV1 (!
XM= /_1OZ+-.OO@\<"Z^*+1OY T>!0Z,P46XE&^(M&^(E&]K].&('_G!AS(8LU
XM"?9T%O9$ @%T#(M$!(M>]HD'@T;V HLTZ^:#QP+KV8M>]L<'  "+1OCIVD-5
XMB>6#[ 965[].&('_G!AS58E^^HM>^O\WBS=8"<!T0?9$ @%U(8L$BU[ZB0?V
XM1 ((=0?_= 3HTSA;]D0"!'745NC(.%OKS?9$ A!T#_]T!.@6%%N)1 2!9 +O
XM_XEV^NNS@\<"ZZ7H-OSI;D-5B>504%97OTX8@?^<&',ABS4)]G06]D0"('4,
XM_W0$N+H*4.@:"EM;BS3KYH/' NO9,<#I.$-5B>6#[ I65XM>!HL?@#]R=0:X
XM @!0ZP2X 0!0CT;V_S:V%^B]_5N#?@0!?FF+'GP7@P9\%P*+!XE&^H-^^@!U
XM ^D[ ;@] %#_=OKH]S);6XG'"?]T T?K+O]V^NC* UN)1OZ+7OZ+-PGV=!O_
XM=OK_= 3H\0-;6PG = B+1O8)1 +KJHLTZ^'_=O97_W;ZZ*W[@\0&ZY?'1OY.
XM&(%^_IP8<@/IV@"+7OZ+-PGV=0/IQP"+1O:%1 )U ^FW (M\!( ]/71:BQX^
XM"XM' DB)1P*+'CX+@W\" 'TF_S8^"^C.!UN+'CX+,<"*!5#_-XL?@\,!4XL>
XM/@M8B0=;6(@'ZQR+'CX+,<"*!5#_-XL?@\,!4XL>/@M8B0=;6(@'1^NABQX^
XM"XM' DB)1P*+'CX+@W\" 'TE_S8^"^AT!UN+'CX+N H 4/\WBQ^#PP%3BQX^
XM"UB)!UM8B ?K&XL>/@NX"@!0_S>+'X/# 5.+'CX+6(D'6UB(!XLTZ3+_@T;^
XM ND<_S' Z;1!58GE4%:#/K07 '4(N+X*4.A&%5N+'GP7@P9\%P*+-PGV= =6
XMZ @ 6^OJ,<#IAD%5B>6#[ 965_\& !^X" !0Z+\16XG'BUX$@#\M=2J+7@2 
XM?P$ =2&X"@!0Z*016XE%!K@* %#_=0:XC!=0Z)(9@\0&,?;IGP#_=@3H* );
XMB4;\BU[\BS<)]G03_W8$_W0$Z$\"6UL)P'4$BS3KZ0GV=42X/0!0_W8$Z!8Q
XM6UL)P'03N 0 4/]V!.B($5M0Z,OZ6UOK$+@$ % QP%#_=@3HZ?F#Q :+7OR+
XM-\=%!@  QT4$( #K,8M$!(E%!HM$ HE%!(%, @P N#T 4/]V!.C!,%M;"<!T
XM$#' 4/]V!.@T$5M0Z'?Z6UN)=0*+#L88B0V)/L88_PX 'W4*@S[^'@!T ^C7
XM$^E^0%6)Y5!05E>+#L88B<X)R71;BPR)#L88BWP""?]U&K@* %"XC!=0_W0&
XMZ)\8@\0&_W0&Z'LU6^LMBT0$)20 /2  =0G_=03HC0!;ZQGV10((=0?_=03H
XM6#5;BT0$B44"BT0&B44$5NA'-5OKF^D/0%6)Y5:+=@97BWX$@_\"?PI65^@J
XM %M;4.LA@_\#=1$QP%#_= 3_= +HZOB#Q ;K"+C0"E#H?1-;,<!06.G0/U6)
XMY5!6BUX&@\,"B=Z#/ !T$?\TZ"7P6_\TZ L 6X/& NOJ,<#IJ3]5B>504%97
XM_W8$Z(P 6XG'BS4)]G4#Z7T _W8$_W0$Z+0 6UL)P'1G_P8 '[@] %#_= 3H
XM?R];6T")PX _ '4&]D0" G00,<!0N'X?4/]V!.A;^(/$!H%D O[_@4P"( #V
XM1 ($=1;V1 ((=0?_= 3H:#1;BP2)!5;H7S1;_PX 'W4*@S[^'@!T ^AR$ND9
XM/XGWBS7I?/_I#S]5B>505HMV!%>*!)BY! #3X(G'@#P =!& /#UT#(GS1HH'
XMF 'XB<?KZKDG (GX,=+W\8G3T>.-ATX8Z=(^58GE5HMV!%>+?@:*!)B)^T=0
XMB@>863G!=0Z)\T: /SUUZ;@! %#K%( \/74,@'W_ '4&N $ 4.L#,<!06.F2
XM/E6)Y8/L!E97BW8$BWX&3PG_?CC_#MH<? Z+'M@<_P;8'(H'F%#K!.A* %"/
XM1OJ!?OI__W4*.78$=1$QP%#K$HM&^H@$1H-^^@IUP\8$ /]V!%CI/3Y5B>7_
XM#MH<? Z+'M@<_P;8'(H'F%#K!.@% %!8Z2 ^58GE@^P&5E>#/LH8 '0KBP[*
XM&(D.V!S'!LH8  "+#L@8B0[:'/\.VAQ\#XL>V!S_!M@<B@>84.G- (,^VAR=
XM= J+'O(*@W\* '4'N'__4.FU +@:"U#H\@-;N"8+4.CJ UN+'O(*BT\*B0[8
XM'(LVV!R+'O(*N  $4%;_=P+H[#F#Q :)1OJ#?OH ?QN#?OH ?0F#/A B!'4"
XMZ\?'!MH<G?^X?_]0ZV"+1OI(H]H<B?-&@#\ =0+K$_].^G_QBQ[8'/\&V!R*
XM!YA0ZSR-1/^)Q_].^GX-@#P = 6*!(@%1T;K[HL>\@HY?PIU ^ET_XL>\@J)
XM^"M'"DBCVAR+'M@<_P;8'(H'F%!8Z1,]58GE_P;:'/\.V!SI!SU5B>6+#M@<
XMB0[*&(L.VAR)#L@8BTX$B0[8'(M.!HD.VASIXSQ5B>504%97_P8 'S' 4/]V
XM!.@!.5M;B<8)]GT,_W8$N/0*4.A@$%M;@_X*?1^X"@!05NA0X5M;B<=6Z)0X
XM6PG_?0BX @M0Z#T06XG^_W8&5N@5 %M;_PX 'W4*@S[^'@!T ^C2#^EY/%6)
XMY8-^!@!T$NB8 +@ !%#HLPQ;BQ[R"HE'"HL>\@J#?P( ?@N+'O(*_W<"Z#HX
XM6XL>\@J+1@2)1P*+'O(*@W\* '4/N  $4.A[#%N+'O(*B4<*QP;:'   QP;P
XM"@$ Z1D\58GE5HMV!/\& !^#?@8 = /H+@")-M@<5N@6,ENCVAR+'O(*QT<*
XM  #'!O * 0#_#@ ?=0J#/OX> '0#Z"X/Z=8[58GE4%:+'O(*BP[:'(E/!(L>
XM\@J+#M@<B4\&BQ[R"HL.\ J)#[@, %#H]@M;B<:+#O(*B4P(QT0"__^)-O(*
XMZ90[58GE4%:+-O(*_P8 'X-\ @!\!_]T NAJ-UN#? H = ?_= KHGS!;BTP(
XMB0[R"E;HDS!;BQ[R"HM/!(D.VAR+'O(*BT\&B0[8'(L>\@J+#XD.\ K_#@ ?
XM=0J#/OX> '0#Z(8.Z2X[58GE@3[R"LP<= 7HC/_K\^D<.U6)Y>CG_XL>\@J#
XM?P( ?A2+'O(*_W<"Z/ V6XL>\@K'1P(  .GU.E6)Y?\V/@O_=@3H%P!;6^GC
XM.E6)Y?\V0 O_=@3H!0!;6^G1.E6)Y5:+=@97BWX$@#T =#*+1 )(B40"?1=6
XMZ"@ 6XG[1S' B@=0_S3_!%M8B ?KVXG[1S' B@=0_S3_!%M8B ?KR>F*.E6)
XMY5!6BW8$5X-\"/YU$<<$W!S'1 (0 (%,"@$ Z7< @WP$ '4H_P8 '_]T!NBG
XM"EN)1 2)!(M$!HE$ O\. !]U58,^_AX =$[HE WK28-\"/UU/HM\!O\& !^+
XM1 ;1X(E$!O]T!O]T!.B*"EM;B40$BT0&*?B)1 *)^P-<!(D<_PX 'W41@S[^
XM'@!T"NA0#>L%5N@A %N+1 )(B40"Z>DY58GEN!H+4.@, %NX)@M0Z 0 6^G5
XM.56)Y5:+=@2#? 0 = V+1 0Y!'0&@WP( 'T#Z;<YBP0K1 10_W0$_W0(Z.L%
XM@\0&"<!]!8%,"@$ BT0$B02+1 :)1 +ICCE5B>7_!@ ?@SX>"P!T%/\V'@OH
XMJBY;QP8>"P  QP8<"P  _PX 'W4*@S[^'@!T ^BQ#.E:.56)Y8/L!E97C48$
XMB<:#Q@*+?/Z#Q@*+1/Z)1OI6_W;Z5^BB (/$!NDN.56)Y5!05E>-1@2)QH/&
XM HM\_E97_S8^"^B! (/$!ND-.56)Y8/L%%97C48$B<:#Q@*+?/Z#Q@*+1/Z)
XM1NZ#Q@*+1/Z)1NR)?O*+1NZ)1O3'1OK^_\=&_   5O]V[(U&\E#H. "#Q ;_
XM3O1]$XU&\E#H,?Y;BU[RQ@< _T;RZPF+7O+&!P#_1O+V1OP!= N+1NY(B<,!
XM^\8' .F2.%6)Y8/L.%:+=@17BWX&B?M'B@>(1O^8"<!U ^FU!(!^_R5T+HM$
XM DB)1 )]%5;HU_U;,<"*1O]0_S3_!%M8B ?KS#' BD;_4/\T_P1;6(@'Z[S'
XM1N0  ,=&X@  QT;@  #'1M[__\=&W   @#TM=07_1N3K"( ](W4&_T;B1^OK
XM@#TJ=1"#1@@"BUX(BT?^B4;@1^LCB@68+3  /0D =QB)^T>*!Y@M, !0N H 
XM]V;@60'!B4[@Z]V /2YU/D> /2IU$(-&" *+7@B+1_Z)1MY'ZRC'1MX  (H%
XMF"TP #T) '<8B?M'B@>8+3  4+@* /=FWED!P8E.WNO=@#UL=03_1MQ'B@68
XM4.F] X-^W !T%8-&" 2+7@B+1_R+3_Z)1M2)3M;K$8-&" *+7@B+1_Z9B4;4
XMB5;6QT;8  "+1M2+3M:)1M")3M*#?M8 ?1B+1M2+3M;WV??8@]D B4;0B4[2
XMQT;8 0#'1LX* .M%QT;."@#K#,=&S@@ ZP7'1LX0 ,=&V   @W[< '05@T8(
XM!(M>"(M'_(M/_HE&T(E.TNL2@T8( HM>"#' BT_^B4[0B4;2C4;^B4;:BU[:
XMQ@< _W;2_W;0,<!04.C(,PG =#LQP+E""U'_=M+_=M!0_W;.Z!(U6P'#,<"*
XM!U#_3MJ+7MI8B <QP/]VTO]VT%#_=L[HH32)1M")5M+KM(U&_BM&VHE&S(-^
XMW@!]!<=&W@$ @W[B '04@#UO=0^+1LPY1MY_!XM&S$")1M['1L@  (-^X !T
XM6(M&S(E&RHM&WCE&RGT&BT;>B4;*BT;8 4;*BT;@*T;*B4;(@W[D '4O_T[(
XM?"J+1 )(B40"?1-6Z(K[6[@@ %#_-/\$6UB(!^O?N"  4/\T_P1;6(@'Z]&#
XM?M@ ="B+1 )(B40"?1-6Z%K[6[@M %#_-/\$6UB(!^L,N"T 4/\T_P1;6(@'
XMBT;>*T;,B4;>_T[>?"J+1 )(B40"?1-6Z"3[6[@P %#_-/\$6UB(!^O?N#  
XM4/\T_P1;6(@'Z]&+7MJ /P!T.(M$ DB)1 )]&E;H\OI;BU[:_T;:,<"*!U#_
XM-/\$6UB(!^O5BU[:_T;:,<"*!U#_-/\$6UB(!^O _T[(?0/IA@&+1 )(B40"
XM?1-6Z++Z6[@@ %#_-/\$6UB(!^O<N"  4/\T_P1;6(@'Z\Z#1@@"BUX(BT?^
XMB4;:QT;(  "#?N  =%S_=MKH'"M;B4;,@W[> 'P.BT;>.4;,?@:+1MZ)1LR+
XM1N K1LR)1LB#?N0 =2__3LA\*HM$ DB)1 )]$U;H/OI;N"  4/\T_P1;6(@'
XMZ]^X( !0_S3_!%M8B ?KT?]&WO].WG1 BU[:@#\ =#B+1 )(B40"?1I6Z 3Z
XM6XM>VO]&VC' B@=0_S3_!%M8B ?KT(M>VO]&VC' B@=0_S3_!%M8B ?KN_].
XMR'T#Z9@ BT0"2(E$ GT35NC$^5NX( !0_S3_!%M8B ?KW+@@ %#_-/\$6UB(
XM!^O.@T8( HM>"(M'_HA&_XM$ DB)1 )]%5;HC?E;,<"*1O]0_S3_!%M8B ?K
XM0S' BD;_4/\T_P1;6(@'ZS.+1 )(B40"?116Z%_Y6S' B@50_S3_!%M8B ?K
XM%C' B@50_S3_!%M8B ?K![M4"UCIYC!'Z3O[Z;PS58GE@^P&5E>+=@@Q_U;_
XM=@;_=@3HHS*#Q :)1OR#?OP ?AV)\"M&_(G&"?9_!?]V".LLBU[\ UX&B5X&
XM,?_KS8-^_ !U#D>#_PI^P8M&""GP4.L+@SX0(@1TLKC__U!8Z5DS58GE4%;_
XM=@C_=@;_=@3H?RF#Q :)QH/^_W4)@SX0(@1U NOAB?#I,3-5B>56BW8$"?9U
XM!3' 4.LSQP;R'   QP;P'   5N@G %N+#O < P[R'%'H4 -;H^X<BQ[R' ,>
XM[AR)'NP<5N@] 5M06.GJ,E6)Y5:+=@0)]G4#Z=PRBQS1XXL.\AP#CW0+B0[R
XM'/\TZ>P _W0$Z-?_6_]T NC0_UOIX@#_= ;HQO];_W0$Z+__6^G1 /]T!.C.
XM %OIQP#_= 3HJ_];_W0"Z*3_6^FV /]T!NB:_UO_= 3HD_];_W0"Z(S_6^F>
XM /\V\!S_= ;H@BA;0%D!P8D.\!S_= 3H;_];_W0"Z&C_6^EZ /]T!.A>_UO_
XM= +H5_];ZVK_= ;H3O];_W0$Z$?_6_]T NA _UOK4_]T!NA0 %O_-O <_W0$
XMZ# H6T!9 <&)#O <_W0"Z!W_6^LP_W0&Z!3_6_]T N@-_UOK(/]T N@$_UOK
XM%_]T!NC[_EO_= +H]/Y;ZP>[H@M8Z;PAZ=$Q58GE5HMV! GV=!"#!O(<!/]T
XM NC1_EN+-.OLZ;,Q58GE4%:+=@17"?9U!C' 4.EL 8L^[AR+'-'CBY]T"P,>
XM[AR)'NX<_S3I1P'_= 3HSO];B44$_W0"Z,3_6XE% NDW ?]T!NBW_UN)10;_
XM= 3HK?];B44$BT0"B44"Z1H!_W0$Z!T!6XE%!(M$ HE% ND' ?]T!.B'_UN)
XM103_= +H??];B44"Z?  _W0&Z'#_6XE%!O]T!.AF_UN)103_= +H7/];B44"
XMZ<\ _W0&Z P!6XE%!O]T!.A%_UN)103_= +H._];B44"Z:X _W0$Z"[_6XE%
XM!/]T N@D_UN)10+IEP#_= ;H%_];B44&_W0$Z W_6XE%!/]T N@#_UN)10+K
XM=_]T!NAZ %N)10;_= 3HJ@!;B44$_W0"Z./^6XE% NM7_W0&Z-?^6XE%!HM$
XM!(E%!/]T NC'_EN)10+K.XM$!HE%!HM$!(E%!/]T NBO_EN)10+K(_]T!NBC
XM_EN)10:+1 2)103_= +HD_Y;B44"ZP>[U@M8Z2$@BP2)!5=8Z2\P58GE4%!6
XM5XM^!(U&_HG&"?]T'8L.[AR)#(,&[AP$_W4"Z%G^6XL<B4<"BSV+-.O?QP0 
XM (M&_NGU+U6)Y8/L!E97BWX$BS;L'(L.[!R)3OJ)^T>*!X@$1I@)P'0"Z_&)
XM-NP<BT;ZZ<8O58GE5HMV! GV= 56Z.DD6^FT+U6)Y5!6_W8$Z.@B6XG&"?9U
XM"+@V$5#H/P-;B?#IE2]5B>56BW8$_W8&5NB0(UM;B<8)]G4(N$014.@< UN)
XM\.ER+U6)Y5!65XM^!%?H?R5;0%#HJ_];B<975NC,*UM;B?#I3R]5B>6#[ 96
XM5XM^!(GX0"7^_XG'.3XR$7U2B7[\@7[\^ %]!<=&_/@!_P8 'XM&_ 4" %#H
XM9O];B4;ZBPXN$8M>^HD/BU[Z@\,"B1XP$8M._(D.,A&+3OJ)#BX1_PX 'W4*
XM@S[^'@!T ^@Z HLV,!&)^P,>,!&)'C 1BPXR$2GYB0XR$8GPZ<<N58GE5HMV
XM! GV=16X"@!0N%(14+@" %#HJRV#Q ;HO!B+#C 1*?$##C(1B0XR$8DV,!'I
XMDRY5B>56BW8$BPXN$8D,BPXP$8E, HL.,A&)3 3I=2Y5B>505E>+?@3_!@ ?
XMBP4Y!BX1=!&+-BX1BPR)#BX15NB#(UOKYXM- HD.,!&+302)#C(1_PX 'W4*
XM@S[^'@!T ^B& >DM+E6)Y8/L"E97BPXR$='A@\%DB<^+#C 1B4[ZBPXR$8E.
XM^(L>+A&#PP(Y'C 1=4N!/BX1]!QT0_\& !^+-BX1BPR)#BX1B?@% @!05NA+
XM_EM;B<:+#BX1B0R)-BX1C4P"B0XP$8D^,A'_#@ ?=2Z#/OX> '0GZ P!ZR)7
XMZ&'^6XE&_O]V^/]V_O]V^NCM!8/$!HM._HD.,!$!/C(1Z8\M58GE5HMV!(GP
XM0"7^_XG&B?,#'C 1B1XP$8L.,A$I\8D.,A'I:BU5B>505HLV,A&#/C01 'PA
XM@?X !'P;5O\V,!'_-C01Z(OY@\0&B?!(H^X>_S8P$>L5Z C_BPXR$2GQ28D.
XM[AZ)\P,>,!%36.D@+56)Y5!6BPXR$2L.[AZ)SNC@_HL.,A$I\8D.[AZ)\P,>
XM,!&)V.GY+%6)Y5:+=@2+#C 1*?$##C(1B0XR$8DV,!&+1@8I\"L&,A'WV*/N
XM'NG/+%6)Y8,^!!\ =0/HUA:+3@2)#@(?N $ 4/\V!!_HW1A;6^FL+%6)Y8,^
XM !\ = ?_!OX>Z9LLQP;^'@  @SYT%P!T$( ^CQ< = DQP%#HL?];ZPBX@@!0
XMZ%8K6^ES+%6)Y?]V!O]V!+C0$5#H!@"#Q ;I72Q5B>504%97QP;^'@  _P8 
XM'XU&!(G&@\8"BWS^"?]U ^EZ (,^_!X =!+_-OP>N-@14+@F"U#HRO*#Q 96
XM5[@F"U#HA/.#Q :+'D +BT<"2(E' HL>0 N#?P( ?27_-D +Z&WQ6XL>0 NX
XM"@!0_S>+'X/# 5.+'D +6(D'6UB(!^L;BQY "[@* %#_-XL?@\,!4XL>0 M8
XMB0=;6(@'Z-+QN $ 4.CF_EOIL"M5B>505KY>$8,\ '09BT8$.01U#8M&!H5$
XM G0%_W0$ZQZ#Q@;KXO]V!+@.$U"X# !0N/ >4.AK\H/$"+CP'E!8Z6XK58GE
XM@^P&5E>#?@0!?RXQ]H/^''\AB?/1XX._0!\ =!.)\]'C_[= 'U:X-!-0Z _R
XM@\0&1NO:,<!0Z9X BUX&@\,"B=__->CA UL)P'0'QT;^  #K"HG[@\<"BP>)
XM1OZ#/0!U ^EP /\UZ)P#6XG&"?9\!8/^''X+_S6X/!-0Z)'^6UO_!@ ?@W[^
XM '0*_W;^Z&G[6XE&_HGST>.#OT ? '0,B?/1X_^W0!_H\A];B?/1XXM&_HF'
XM0!\)]G0%5NAS %O_#@ ?=0J#/OX> '0#Z/']@\<"ZX@QP%!8Z8\J58GE4%:^
XM0!^!_G@?=T6#/ !T.XL<@#\ =#3_!@ ?_S3HGA];QP0  ('^0!]T$(GP+4 ?
XMN0( F??Y4.@9 %O_#@ ?=0J#/OX> '0#Z)?]@\8"Z[7I.BI5B>6#[ 965XM>
XM!-'CB[= 'PGV=06_ 0#K#8 \ '0%OP( ZP._ P"#/G07 '0I@_\!=23_=@3K
XM&( ^CQ< =!B_ @#K$X ^CQ< = R_ P#K![L8$UCI!2>+1@1(B<.!PR0?B=Z 
XM/ !U*[@! %#_=@3H[2E;6XE&_(-^_/]U"+A*$U#H6OU;@W[\ 74%Q@0$ZP/&
XM! . / 1T!XH$F#G'=04QP%#K+U?K%<=&_   ZQ7'1OQB@>L.QT;\ 0#K![LH
XM$UCI7QF)^(@$_W;\_W8$Z(\I6UM06.EB*56)Y5:+=@2)\$B)PX"_)!\#=!:)
XM\$B)PX"_)!\$= JX 0!05NAA*5M;B?!(B</&AR0?!.DM*56)Y5:+=@2X8H%0
XM5NA#*5M;@_X"=0V#/D0? '4&Z&+\Z0HIB?!(B</&AP@? ?\&>A_I^2A5B>50
XM5KX! (GP2(G#@+\('P!T NL*@_X<? +K&T;KZ(GP2(G#QH<('P")\]'C_[= 
XM'^B FUOKS<<&>A\  .FX*%6)Y8L.!A\Y3@1U ^FJ*+@" %#H:/Y;N , 4.A@
XM_ENX#P!0Z%C^6XM.!(D.!A_IB"A5B>6#[ Y65XU&^E#HDQ1;"<!T NLUC4;T
XM4.B%%%L)P'0"ZS&-3OJ)#@0?BPY 'XE.\@G)=!6+7O* /P!T#<<&0!\  /]V
XM\NCYFEN-3O2)#@0?Z$CN_W8$Z PG6^DG*%6)Y>DC*%6)Y>D=*%6)Y>D7*%6)
XMY5!05ND-*%6)Y>D(*%6)Y>D"*%6)Y5:+=@97BWX$_TX(?A")^T>*!X@$1I@)
XMP'7NZ> GQ@0 Z=HG58GE4%:+=@2*!)A0BD8&F%DYP70-B?-&@#\ =>LQP%#K
XM 598Z;0G58GE4%!65XMV!HM^!/]."'P*B?M'B@>(!$;K\>F4)U6)Y5:+=@17
XMBWX&@#P =!>)\T:*!YB)^T=0B@>863G!=.DQP%#K!+@! %!8Z64G58GE5HMV
XM!%;H%P!;"<!U"E:X9!-0Z-SZ6UM6Z*846^E$)U6)Y5:+=@2*!)@M,  ]"0!V
XM!3' 4.L*1H \ '7JN $ 4%CI'R=5B>50Z-S?BPX  (E._HM>_H,_ '0FBU[^
XMN#T 4/\WZ D76UL)P'0.BU[^N D 4/\WZ,'@6UN#1OX"Z]+'!M8<S!B+#M8<
XMB0[2'.G3)E6)Y<<&K!<  ,<&LA<  ,<&KA<  ,<&M!<  (,^VA< = 7HCLKK
XM](,^ A\"= ;'!MH<  #H;>O'!CX+&@O'!D +)@N#/C8+ '0._S8V"^BR&UO'
XM!C8+  #I>"95B>50QT;^C!>!?OZ6%W,+BU[^Q@< _T;^Z^['!K@7  #'!D@%
XM___HILKH]-3H;.+H%NOHL?O'1OXD'X%^_D ?<Q.+7OZ /P-U!HM>_L8'!/]&
XM_NOFZ2 F58GE@^P*5E?'1O8  (M^!H-^! !T X/' HLU@ST =">XG!-05NC.
XM$UM;"<!U"/]&]H/' NL1N* 34%;HN!-;6PG =0.#QP*)^X/' HLW"?9U ^E(
XM 8GS1HH'B$;[F G =0/IUP" ?OM<= /I<0")\T:*!YA0ZV'&1OL(ZV(QP%#I
XM> '&1OL,ZU;&1OL*ZU#&1OL-ZTK&1OL)ZT3&1OMVZS[&1OL QT;X P#_3OA\
XM,(H$F"TP #T( ',EB?-&B@>8+3  4(I&^YBY P#3X%D!P8A.^^O53NL'NW03
XM6.EB(HL>/@N+1P)(B4<"BQX^"X-_ @!]*/\V/@OHF>I;BQX^"S' BD;[4/\W
XMBQ^#PP%3BQX^"UB)!UM8B ?I.?^+'CX+,<"*1OM0_S>+'X/# 5.+'CX+6(D'
XM6UB(!^D9_X,] '4#Z0/_BQX^"XM' DB)1P*+'CX+@W\" 'TF_S8^"^@TZEN+
XM'CX+N"  4/\WBQ^#PP%3BQX^"UB)!UM8B ?IR/Z+'CX+N"  4/\WBQ^#PP%3
XMBQX^"UB)!UM8B ?IJOZ#?O8 =56+'CX+BT<"2(E' HL>/@N#?P( ?27_-CX+
XMZ-7I6XL>/@NX"@!0_S>+'X/# 5.+'CX+6(D'6UB(!^L;BQX^"[@* %#_-XL?
XM@\,!4XL>/@M8B0=;6(@',<!06.D?)%6)Y5!6BUX&@\,"B=Z#/ !T9?\V/@O_
XM-.@UZ5M;BQX^"XM' DB)1P*+'CX+@W\" 'TE_S8^"^A<Z5N+'CX+N H 4/\W
XMBQ^#PP%3BQX^"UB)!UM8B ?K&XL>/@NX"@!0_S>+'X/# 5.+'CX+6(D'6UB(
XM!X/& NN6,<#II"-5B>50N $ 4(U&_U QP%#HWQ^#Q 8] 0!T6XL>/@N+1P)(
XMB4<"BQX^"X-_ @!])?\V/@OHX^A;BQX^"[@* %#_-XL?@\,!4XL>/@M8B0=;
XM6(@'ZQN+'CX+N H 4/\WBQ^#PP%3BQX^"UB)!UM8B >X 0!0ZV6+'CX+BT<"
XM2(E' HL>/@N#?P( ?2?_-CX+Z(CH6XL>/@LQP(I&_U#_-XL?@\,!4XL>/@M8
XMB0=;6(@'ZQV+'CX+,<"*1O]0_S>+'X/# 5.+'CX+6(D'6UB(!X!^_PIT ^DM
XM_S' 4%CIQR)5B>6#[!165[@ !%#H9_-;B4;\QT;V__^-1O!0Z,(.6PG =!O_
XM=O;HBQY;BT[NB0X$'[@! %#_-@0?Z+8.6UN+#@0?B4[NC4[PB0X$'X-&!@*+
XM7@;_-XL'B4;^6 G =0/IW@"+7OZ /RUU$(M>_H!_ 0!U!\=&^@  ZSK_!@ ?
XM,<!0_W;^Z'$>6UN)1OJ#?OH ?0S_=OZXI!-0Z,WU6UN+1OJ)1O;_#@ ?=0J#
XM/OX> '0#Z&;UN  $4/]V_/]V^NA1'H/$!HE&^(-^^ !^8($^/@LR"W5&BT;\
XMB4;L_T[X?-3_#C0+?1VX,@M0Z$WG6XM>[#' B@=0BQXR"UB(!_\&,@OK$XM>
XM[#' B@=0BQXR"UB(!_\&,@O_1NSKP/]V^/]V_+@! %#HFB"#Q ;KAX-^^@!U
XM ^D6__]V^NAX'5OI#/^+3NZ)#@0?Z7HA58GE@>RX %97BUX&BQ^*!XA&^\=&
XM]@$ @'[[='4'QT;V  #K0(!^^UMU.HM&!-'@+0( B<,#7@:X_!-0_S?H$0];
XM6PG = BX_A-0Z-'T6XM&!-'@+0( B<,#7@;'!P  QT;V  "+7@:#PP*)7O['
XMADC_  #'1O0  ,=&[@  C4;LB<>-AFS_B<:+7OZ#/P!U%<>&;/\" ,>&;O\ 
XM ,>&</\  .F? HM>_H-&_@*+!XE&_(-^_ !U"+@(%%#H8/1;BU[\@#\H=0^+
XM7OR ?P$ =0:#1O00Z\^+7OZ#/P!T/+C.%%#_=OSHT 5;6XE&\H-^\@!\)XU&
XMO#G'=0BX%A10Z!WT6X/'_(M&\HD%BU[RBH<6%9@#1O2)10+KBXM>_( _)W4O
XMBT;\B4;X_T;XBU[X@#\ = +K\_].^(M&_#E&^'81BU[X@#\G=0F+7OC&!P#_
XM1OS'!   BT;\B40"@\8&BU[^@T;^ HL'B4;\@W[\ '40@W[T '0#Z3[_QT;P
XM  #K1HM>_( _*74)BU[\@'\! '0LN/ 44/]V_.@=!5M;B4;R@W[R 'T#Z0[_
XM@T;R$(M>\HJ'%A68 T;TB4;PZPF#;O00?9OI\?Z-1NPYQW(#Z00!BT;P.44"
XM?0/I^0"+!8E&[(/&^HL=BH<X%8A&^X!^^P%U&8,\ '4-_W0"Z*0)6XE$ HE4
XM!,<$ 0#IC0"*1ON8/0( ?0/I@0"#/ %U*K@@ %#H!_!;B4;X_W0$_W0"N"X4
XM4+@@ %#_=OCH,>:#Q J+1OB)1 +K&8,\ G44BT0$"T0"= ?'1 (R%.L%QT0"
XM.!3'!   @'[[ W4O@[Y(_P!T$/]T O^V2/_HUPQ;6PG =!B+1 *)ADC_C89,
XM_U#_= +H?QM;6XF&2O^#?NP0?0+K",=&[   Z3C_@W[N '40C89(_U!6_S7H
XM#P&#Q ;K#8,]$G0%@ST0=0/_3NZ#Q@:#QP3I\OZ#?OP =0/I9P"-1KPYQW4#
XMZ1/^@W[R$G0&@W[R$W4:QT;R$@"#?NX =0R-1/I0Z)0 6PG = /_1NZ#?O(0
XM= :#?O(1=1K'1O(0 (-^[@!U#(U$^E#H;@!;"<!U _]&[H/'_(M&\HD%BT;P
XMB44"Z6']@W[V '1#@[YL_P!U#_^V;O^X.A10Z._D6UOK+8.^;/\!=13_MG#_
XM_[9N_[@^%%#HU>2#Q ;K$HN&</\+AF[_= BX1!10Z+_D6XV&;/]0Z 0 6^G@
XM'56)Y5:+=@2#/ !U#HM< H _ '44N $ 4.L1BT0$"T0"=0:X 0!0ZP,QP%!8
XMZ;(=58GE4%!6BW8&5_]V!.G6 E;HO?];F8E$ HE4!,<$ @#IR@*_! #K"+\"
XM .L#OP$ BUX(_W<,Z"\*63G!=0>Y!@#3Y^MGBUX(_W<.Z&8(63G!=5FY P#3
XMY^M2OP" ZPV_ $#K"+\ (.L#OP!@BUX(BT<()0#P.<=U%8M>"(-_ @!\#,=$
XM @$ QT0$  #K"L=$ @  QT0$  #'! ( Z4X"OP (ZPB_  3K [\  HM>"(5_
XM"'3:BUX(@W\" 'S1Z\.+7@B#?P( ? N+7@C_=Q3_=Q+K!#' 4%"/1 */1 3'
XM! $ Z0D"_W0$_W0"Z/('6UN9B40"B50$QP0" .GP 8M< H _ '6)Z7K__W0"
XMZ+X26YF)1 *)5 3'! $ Z= !C5P&N08 Z.<'B?.Y!@#HW@CIO $Q__]T"/]T
XM NA-"EM;"<!U 4>#?@05=0>X 0 I^(G'B?B9B40"B50$QP0" .F- 8M$"(M,
XM"CE$ G0#Z2#_.4P$= /I&/_I"?^+1 B+3 HY1 )U"#E,!'4#Z0+_Z?/^_W0$
XM_W0"_W0*_W0(Z(4,"<!_ ^GI_NG:_O]T!/]T O]T"O]T".AL# G ? /IT/[I
XMP?[_= 3_= +_= K_= CH4PP)P'X#Z;?^Z:C^_W0$_W0"_W0*_W0(Z#H,"<!]
XM ^F>_NF/_HM$ HM,! -$"!-,"HE$ HE,!.GE (M$ HM,!"M$"!M,"HE$ HE,
XM!.G0 (M$"(M4"O]T!/]T NAE&(E$ HE4!.FX (M$"@M$"'4(N$H44.@2[UO_
XM= 3_= +_= K_= CHSPF)1 *)5 3ID "+1 H+1 AU"+A<%%#HZNY;_W0$_W0"
XM_W0*_W0(Z#0*B40"B50$ZVG_= CHMP!;B4;\_W0"_W;\Z"0#6UL)P'0J@SZ 
XM'P!^$XL.F!^)3 *+'H0? UP"Q@< ZS:A@A^9B40"B50$QP0! .LF@SZ 'P!^
XM"(M< L8' .L7QT0"  #'1 0  ,<$ 0#K![NR$UCIK0KIP1I5B>6#[ 965XM>
XM!(I' 8A&^XMV!HL\@SP ="Z*10&84(I&^YA9.<%U&_]V!%?H:0A;6PG =0Z)
XM\"M&!KD" )GW^5#K"8/& NO+N/__4%CI<!I5B>6#[")65XM^!( ]7G4!1U?H
XM=A!;T>! 4.B3#5N)QHEV^HEV]HU&XHE&[,=&X   B?M'B@>(1OV84.D8 L8$
XM .D9 L8$ D;'1O(! .OBB7;VQ@0#@#U>=03&! 1'1L=&\ $ @#U==0:#?O !
XM=4. ?0$M=1J ?0)==!3&!"U&B@6(!$:*10*(!$:#QP/K'( ]+74/Q@0M1L8$
XM+4;&!"U&1^L(B?M'B@>(!$;'1O   .NR1\8$ $:)\"M&]HE&\NEO_X ] '0#
XMZ7H!Q@0(1NE@_X-^\@!U ^EJ <=&[@D @W[N"G4&N , 4.L$N $ 4(]&WHM>
XMW@'SB5[TBT;R]]B)PP'SB5[V3HM>W@'SB@2(!_].\G_QBW;VBT;NB 1&@W[N
XM"G0#Z7X QT;>  "*!9@M,  ]"0!W&(G[1XH'F"TP %"X"@#W9MY9 <&)3M[K
XMW8M&WH@$1H ]+'0(BT;>B 1&ZR]'QT;>  "*!9@M,  ]"0!W&(G[1XH'F"TP
XM %"X"@#W9MY9 <&)3M[KW8M&WH@$1H ]7'4&1X ]?70(N*844.AR[%M'BW;T
XMZ8;^B?M'B@>(1OV8/2@ =2[_1N"#?N )?@BXL!10Z$SL6\8$!4:+1N"(!$:+
XM7NR+1N"(!_]&[,=&\@  Z4K^@'[]*74GC4;B.4;L=0BXNA10Z!GL6\8$!D;_
XM3NR+7NR*!X@$1L=&\@  Z1W^@'[]>W4(QT;N"@#IO?Z*1OV8+3$ /0D <Q;&
XM! =&BD;]F"TP (@$1L=&\@( Z>W]Q@0!1HI&_8@$1L=&\@( Z=O]NVX46.DV
XM%8U&XCE&['0(N,044.BIZUN+3N")#H ?BT;ZZ?8758GE4%97BWX&B3Z6'[Z8
XM'X'^J!]W"<<$  "#Q@+K\5?_=@3H!0!;6^G+%U6)Y8/L&E97BW8$BWX&QT;Z
XM  "#?OH =!'_1O2+1O8Y1O1^ ^EA 8MV\HGS1HH'F%#I2@&)^"L&EA^C@A^X
XM 0!0Z9@!B?M'B@>8B?-&4(H'F%DYP72]Z2\!B?M'@#\ =;+I) ''1NX  .L%
XMQT;N 0#'1NP  (G[1XH'B$;G@#P =#V /"UU(XI&YYA&4(H$F%DYP7PGBD;G
XMF$90B@2863G!?QG'1NP! .L2BD;GF%"*!)A9.<%U!<=&[ $ 1NN^1HM&[CE&
XM['0#Z4C_Z;H B?-&B@>8B</1XXF_EA_I-/^*!)B)P]'CB?@KAY8?4(H$F(G#
XMT>./AX(?1ND7_XH$F(G#T>.+AY8?B4;JB?-&B@>8B</1XXN'@A^)1NC_3NA]
XM ^GP_HG[1XH'F(M>ZO]&ZE"*!YA9.<%TX^M.@#T =0/IT?[K1,=&^   QT;V
XM_W_K'8GS1HH'F(E&^(GS1HH'F(E&]H-^]@!U!<=&]O]_B7;RB7[PQT;T  #_
XM1OKIE?Z[BA18Z2\&Z8O^@W[Z '4%,<!0ZTG'1N@! (M>\H _!W42BU[RBD<!
XMF(G#T>.+AX(?B4;H_T[TBT;X.4;T?!R+1NCW9O2)PP->\%-6Z#/^6UL)P'3?
XMN $ 4.L#,<!06.GK%56)Y;@& %#HIA)0Z'4"6UOIVA55B>6#[ A6BW8$5\=&
XM_   QT;^   Q_XH$F(G#BH?/%9BH"'0#1NOO@#PM=01&OP$ B?-&B@>8+3  
XMB4;Z@W[Z"G,IN H ,=+_=O[_=OSH9Q*)1OR)5OXQP(M._(M6_@-.^A'"B4[\
XMB5;^Z\4)_W01BT;\BT[^]]GWV(/9 %%0ZP;_=O[_=OQ86NE,%8GCB?")^HM_
XM HMW!/*EB<:)UUN#Q 3_XU6)Y5!6BW8$5PGV= :#? 8 =0S'!A B#@"X__]0
XMZQ2+//]T!N@_"EM6Z#H*6U?H\Q!;4%CI_115B>505C' 4%!04%!0N"\ 4#' 
XM4.@&%(/$$(G&"?9] U;K!/\V3!=8Z=,458GEQP90%PATBTX$B0Y,%[@V %"X
XM 0!0Z%T46UL)P'T%,<!0ZP2X 0!06.FF%%B)\HG>B<.)R-'Y<P@PY*R)UE#_
XMXRG$B?B)Y_*EB=:)Q__C58GE@^P&5E<QP%#_=@3HI!!;6XG'"?]]!C' 4.EZ
XM +BJ'U!7Z&@06UL)P'4.BPZN'X'A /"!^0! =!!7Z#(06\<&$"(4 #' 4.M.
XMN @ 4.AO!UN)Q@GV=!&X  10Z&$'6XE$!H-\!@!U(8L.$"*)3OH)]G0%5N@Z
XM"5M7Z/,/6XM.^HD.$"(QP%#K#HD\QT0$  "+1 2)1 )66.GD$XGCBP>+7P*)
XM+XEG HE'!#' PS' 58GEBUX$BT8&"<!U 4"+#SM. '0(BVX ">UU]/2+;@"+
XM9P*+3P2)XXD/PXGZ6(G?B</1^7,&6*J)U__CB?")YO*EB?2)UXG&_^-5B>4Q
XMP%!04%!0_W8$N#P 4+@! %#HCA*#Q!#I:A-5B>4QP%!04%#_=@;_=@2X)0!0
XM,<!0Z&\2@\00Z4L358GE4%8QP%!04%!04+@8 % QP%#H4A*#Q!")Q@GV?0-6
XMZP3_-DP76.D?$U6)Y8/L!E97@SX   !T!H-^! !U!3' 4.M%BPX  (E._HM>
XM_H,_ '0SBW8$BU[^BS^*!)A0B@6863G!=0F / !T!$9'Z^N / !U"X ]/74&
XMC44!4.L)@T;^ NO%,<!06.F[$E6)Y?]V!#' 4+@, %"X 0!0Z (2@\0(Z:,2
XM58GE@^P&5HMV!%<Q_\=&^@  B@28H\@?@S[('R!T'(,^R!\)=!6#/L@?#70.
XM@S[('PIT!X,^R!\,=0-&Z]2 /"UU!D;'1OH! (GS1HH'F"TP (E&_(-^_ IS
XM#+@* /?GB<<#?OSKXH-^^@!T!XGX]]A0ZP%76.DH$E6)Y5!05E>+=@2+?@: 
XM/ !T$(H$F%"*!9A9.<%U!$9'Z^N / !U"H ] '4%,<!0ZR& / !U!KC__U#K
XM%H ] '4&N $ 4.L+B@284(H%F%DIP5%8Z=(158GE_W8$_W8&N @ 4+@! %#H
XM&1&#Q CINA%5B>504%97BW8$@#P = -&Z_B+?@:)^T>*!X@$1I@)P'0"Z_&+
XM1@3ICA%65XGFBUP&BT0(F8G7.<)U-B'2?03WVW0N,=*+3 J+1 PAP'T(]]CW
XMV1G0]]?W\Y'W\R'_?0?WV??8@]D B<I?7EN#Q C_XU*)QS';(?]]!_??]UP&
XM&=^+1 J+5 PATGT)]]KWV!G:]U3^N1  T>#1TM'3.=]W!W().50&=@3B[>L(
XM*U0&&?M XN-?ZZ565XGFBUP&BT0(F3G"=3HATGT$]]MT,C'2BTP*BT0,(<!]
XM!O?8]]D9T/?SD??S,=N#? P ?0?WV_?:@]L B=")VE]>6X/$"/_CB<<QVR'_
XM?0?WW_=<!AG?BT0*BU0,(=)]!O?:]]@9VKD0 -'@T=+1TSG?=P=R"3E4!G8$
XMXNWKL"M4!AG[0.+CZZ95B>6+1@0%0  QR5%145'_=@90N"D 4+@! %#H>0^#
XMQ!#I51!5B>505E>+?@0QP%!04%!04+@J %"X 0!0Z%</@\00B<8)]GP2BPY,
XM%XD-BPY.%XE- C' 4.L!5ECI%Q"+%RM' CM'!'<+T> !PXM?!H7;=0V)TX7;
XM=0>X% !0Z3H-_^-5B>505HMV!(H$F%"*1@:863G!= V)\T: /P!UZS' 4.L!
XM5ECIS0]5B>56BW8$B?.*A\\5F*@"= B)\"T@ %#K 598Z:X/58GE5HMV!(GS
XMBH?/%9BH 70(B? MX/]0ZP%66.F/#UM96EA6B>:'7 )>.=-_#WP&.<AW"70$
XMN/__PS' P[@! ,-5B>505HMV!%<)]G0&@WP& '4+QP80(@X ,<!0ZT^+1 0Y
XM1 )\"\=$!   BT0$B40"@WP$ '4=N  $4/]T!O\TZ%D @\0&B40$@WP$ '\%
XM,<!0ZQF+7 (#7 :)WXM$ @-%"(E$ HM% @L%=+)76.G[#E6)Y5!05E>+7@2#
XMPPZ)WXM>!(/# 8G>@#P = =&.?=V NOTB? K1@3IT Y5B>6#[!!65X-^!@!U
XM#<<&$"(. +C__U#I;@&XRA]0_W8$Z+D*6UL)P'0'N/__4.E7 8L.SA^!X0#P
XM@?D 0'0-QP80(A0 N/__4.D\ ;@! % QP%!0_W8$Z!T*@\0(B4;ZB5;\@W[\
XM 'T'N/__4.D8 8L.$"*)3OZ+?@8Y?@9T ^GY +@  E"XZ!]0_W8$Z(T*@\0&
XMB4;T@W[T_W4'@SX0(@1TWX-^] !_!O]V].G9 +[H'XM>]('#Z!\YWG(#Z:$ 
XM@SP =0/IDP QVXU'"@4$ %"-1 )0Z/S^6UD!P;L$ (G(F??[N0( T^")1O*+
XM7O(!^U.+7@@#7@98.=AV#<<&$"(6 +C__U#I?@ QP(L,B0V)10*)\"WH'YD#
XM1OH35OR)102)50:+1O*)10B*1!"(1O'&1!  ,=N#PPJ+1O(IV%"-1 )0C44*
XM4.A! (/$!HI&\8A$$(M>\@'[B=^#QA#I4?^+7O2!P^@?.=YW ^D+_\<&$"(%
XM +C__U#K#8M._HD.$"*)^"M&!E!8Z4,-58GE@^P&5E>+=@2+?@:+1@B)1OK_
XM3OI\#XG[1XH'B 1&F G = +K[/].^GP&Q@0 1NOUBT8$Z0H-58GE4%:+#NPA
XM TX$@<'_ X'A /R)SCDV["%W"5;HC );"<!T!3' 4.L<BQ[L(8EW_L=$_@  
XM_S;L(>C_ 5N)-NPAN $ 4%CIP0Q5B>6#[ Q65X-^! !U!<=&! ( QT;T  "#
XM?O0"<@/IH@"+1@1 )?[_!0( B4;V@S[N(0!U(K@$ %#H70);B<:)\$ E_O^)
XMQH/& HDV[B&)-NPAQT3^  #'1OX  (LVZB$)]G1,BT3^B4;ZBU[V ?.)WSE^
XM^G,"ZS&+1OJ-30(YP7,/BT;ZB47^B7S^BP2)!8D\@W[^ '0)BP2+7OZ)!^L&
XMBPR)#NHA5NL=B7;^BS3KL/]V]N@ _UL)P'4"ZP;_1O3I5?\QP%!8Z?8+58GE
XM@^P,5E>+1@9 )?[_!0( B4;VBUX$BT?^B4;ZBT;Z*T8$B4;TQT;^  "+-NHA
XM"?9T/#EV^G,"ZS4Y=OIU*8M>!(M$_HE'_H-^_@!T"8L$BU[^B0?K!HL,B0[J
XM(8M>!(M'_HE&^NL'B7;^BS3KP(M>]@->!(G?.7[Z<B"+1OJ-30(YP7,1BT;Z
XMB47^BUX$B7_^5^B1 %O_=@3K)_]V!NB3_EN)QPG_=04QP%#K%?]V]%?_=@3H
XM#P"#Q ;_=@3H9@!;5UCI+@M5B>56BW8&5XM^!(M&"/]." G = J)^T>*!X@$
XM1NOLZ0P+58GE4%!65XM&!/=F!HE&!/]V!.@V_EN)Q@GV=04QP%#K&(GWBT8$
XMB<&#Z0&)3@0)P'0&Q@4 1^OK5ECIS@I5B>504%97,?^+-NHA"?9T#3EV!',"
XMZP:)]XLTZ^^+7@2)-PG_= >+1@2)!>L'BTX$B0[J(0GV=!B+7@0Y=_YU$(M>
XM!(M$_HE'_HL$BUX$B0<)_W08BT8$.47^=1"+7@2+1_Z)1?Z+7@2+!XD%Z5X*
XM58GE4%8QP%!0_W8$4%!0N!$ 4#' 4.AE"8/$$(G&"?9U#8L.6A>)#E 6,<!0
XMZP2X__]06.DH"E6)Y5!05E>+/E 6BUX$ QY0%HG>@WX$ 'X$.?=W"H-^! !]
XM"CGW<P:X__]0ZQ!6Z)?_6PG =0-7ZP2X__]06.GE"56)Y5!05E<Q_XMV!(GS
XM1H _ '0#1^OUB?CIR0E5B>6#["I6BW8(5XM.!HD.4!>+3@2)#DP7_W8&Z<\"
XM,<"*3 (P[8E.]HE&^#' BDP#,.V)3O*)1O2Y" "+1O:+5OCC!M'@T=+B^@M&
XM\@M6]*-2%XD65!>+1 29HU87B198%XI$ 9BY" #3X%"*!)A9"<BC3A>X-@!0
XMN $ 4.CO"%M;B<=7Z6T",<"*###MB4[NB4;P,<"*3 $P[8E.ZHE&[#' BDP"
XM,.V)3N:)1N@QP(I, S#MB4[BB4;D,<"*3 0P[8E.WHE&X#' BDP%,.V)3MJ)
XM1MRY$ "+1NJ+5NSC!M'@T=+B^E*Y& "+5NZ+7O#C!M'BT=/B^ED)T G94;D(
XM (M6YHM>Z.,&T>+1T^+Z60G0"=E1,<F+5N*+7N3C!M'BT=/B^ED)T G9HU(7
XMB0Y4%S')BT;:BU;<XP;1X-'2XOI2N0@ BU;>BU[@XP;1XM'3XOI9"= )V:-6
XM%XD.6!>X-@!0N $ 4.@%"%M;B<=7Z8,!N#8 4+@! %#H\@=;6XG'N0@ BQ92
XM%XL>5!?C!M'[T=KB^H'B_P"!XP  B%0",<F+%E(7BQY4%^,&T?O1VN+Z@>+_
XM ('C  "(5 .+#E87BQ98%X'A__^!X@  B4P$N1  BQ96%XL>6!?C!M'[T=KB
XM^H'B__^!XP  B5;6B5[8BT;6BT[8)?\ @>$  (@$N0@ BT;6BU;8XP;1^M'8
XMXOHE_P"!X@  B$0!5^G7 +@V %"X 0!0Z$8'6UN)Q[D8 (L64A>+'E07XP;1
XM^]':XOJ!XO\ @>,  (@4N1  BQ92%XL>5!?C!M'[T=KB^H'B_P"!XP  B%0!
XMN0@ BQ92%XL>5!?C!M'[T=KB^H'B_P"!XP  B%0",<F+%E(7BQY4%^,&T?O1
XMVN+Z@>+_ ('C  "(5 .Y" "+%E87BQY8%^,&T?O1VN+Z@>+_ ('C  "(5 2Y
XM" "+%E87BQY8%^,&T?O1VN+Z@>+_ ('C  "(5 57ZQ.____'!A BZO]7ZP>[
XM4A98Z?<#6.G0!E6)Y?\V  "-1@90_W8$Z$0 @\0&Z;L&58GE4%:-1@:)QHGS
XM@\8"@S\ = +K]/\TC48&4/]V!.@< (/$!NF2!E6)Y?\V  #_=@;_=@3H!@"#
XMQ ;I?095B>6![!0(5E?'AO+W  #'AO#W  "+1@:)AO[WBT8(B8;\]XN>_O>#
XMAO[W H,_ '0&_X;R]^OLBY[\]X.&_/<"@S\ = ;_AO#WZ^R+AO#W X;R]]'@
XM!08 C9X ^ '#B=Z+GO+W ?,#GO#WC48 .<-R#<<&$"(' +C__U#I)P&-A@#X
XMB<>+AO+WB06#QP+'AO3W  "+AO+W.8;T]WU6C88 ^(GQ*<&)CNSWBX;L]XD%
XM@\<"BUX&@T8& HL'B8;V]XN>]O> /P!T(8N>]O?_AO;WB@>(!$:-1@ YQG+C
XMQP80(@< N/__4.F\ ,8$ $;_AO3WZZ#'!0  @\<"QX;T]P  BX;P]SF&]/=]
XM58V& /B)\2G!B8[L]XN&[/>)!8/' HM>"(-&" *+!XF&]O>+GO;W@#\ =""+
XMGO;W_X;V]XH'B 1&C48 .<9RX\<&$"(' +C__U#K4,8$ $;_AO3WZZ''!0  
XM@\<"C88 ^(GQ*<%!NP( B<B9]_O1X(F&[O<QP%"-A@#X4/]V!#' 4/^V[O?_
XM=@3HRP1;4+@[ % QP%#H^@.#Q!!06.G2!%6)Y5:+=@0QP%"X\"%05C' 4+@&
XM %!6Z)T$6U"X.P!0,<!0Z,P#@\00Z:<$58GE,<!04%!04%"X @!0,<!0Z+$#
XM@\00Z8T$58GE4%97BWX$,<!04%!04%"X!P!0,<!0Z) #@\00B<8)]GP*"?]T
XM!HL.3!>)#8GPZ5@$58GE4%:+3@2)#DP7BTX&BU8(B0Y2%XD65!>+3@J)#DX7
XMN!, 4+@! %#HT@-;6XG&"?9T!XGPF5)0ZPC_-E07_S92%UA:Z1$$58GE,<!0
XM4%!04/]V!+@& %"X 0!0Z!@#@\00Z?0#58GE4%8QP%!0_W8&4%#_=@2X' !0
XMN $ 4.CV H/$$(G&B?#IS0-5B>7_=@3_=@:X!0!0N $ 4.@3 X/$".FT U6)
XMY5!6,<!04/]V!E#_=@C_=@2X P!0N $ 4.BT H/$$(G&B?#IBP-5B>504%97
XMBW8$BWX&B?M'B@>(!$:8"<!T NOQBT8$Z6@#58GE4%97BWX$,<!0_W8&5U!0
XM5^@W UM0N!( 4+@! %#H90*#Q!")QHGPZ3L#58GE,<!04%!04%"X% !0,<!0
XMZ$8"@\00Z2(#B>-2B<'W9P1:4(G0]V<"6@'"B<B)T?=G @'*6X/$!/_C6UE:
XM6%:)YH=< EXYTW</<@8YR'<)= 2X___#,<##N $ PXL7BT\"@\,$27P3.P=U
XM]HM? H7;=0:X% !0ZP;_XXG3Z_#H7 #H  #H:0&X!@"ZD!;K,+@2 +JG%NLH
XMN!0 NKX6ZR"X 0"ZU1;K&+@" +KL%NL0N!( N@(7ZPBX$0"Z&1?K #';AQY&
XM%X7;= 50_]-8P[L6 %-2N ( 4.@[ .@3 8G"@_H5<Q'1XKMF%@'3BQ^%VW0$
XMB=KK'KLW%[D& (G"@>('  ,6, "(%TO1^M'ZT?KB[;HI%^NJ58GEQP;X(00 
XMBUX$B1[Z(8M>"(D>_"&+7@:)'@ BN/8A4+@! %"X 0"[]B&Y P#-((GL7<-6
XM5XGFBUP&BT0("<!U%S'2BTP*BT0,]_.1]_.)RE]>6X/$"/_CB<<QVXM$"HM4
XM#+D0 -'@T=+1TSG?=P=R"3E4!G8$XNWKU"M4!AG[0.+CZ\I65XGFBUP&BT0(
XM"<!U&S'2BTP*BT0,]_.1]_,QVXG0B=I?7EN#Q C_XXG',=N+1 J+5 RY$ #1
XMX-'2T=,YWW<'<@DY5 9V!.+MZ](K5 89^T#BX^O(58GE@SX.(@!T!HL.#B+_
XMT3' 4%!04%#_=@2X 0!0,<!0Z$4 @\00Z2$!58GE,<!04%!04/]V!+@! % Q
XMP%#H* "#Q!#I! %5B>4QP%!0_W8&4/]V"/]V!+@$ %"X 0!0Z 8 @\00Z>( 
XM58GEBTX(B0Y,%XM."HD.3A>+3@R)#E 7BTX.B0Y2%XM.$(D.5!>+3A*)#E87
XM_W8&_W8$Z%  6UOIIP!5B>504%97_W8*Z'T 6XG'B3Y,%XM."(D.3A>+3@J)
XM#E 7OE(7@_\.?Q2)^$\)P'0-BUX*_T8*B@>(!$;K[/]V!O]V!.@$ %M;ZUI5
XMB>505HM.!HD.2A>X2!=0_W8$Z%@ 6UN)Q@GV= -6ZQN#/DH7 'T0BPY*%_?9
XMB0X0(KC__U#K!/\V2A=8ZQQ5B>505HMV!%<Q_XGS1H _ '0#1^OUB?A ZP!?
XM7HGL7<->7^OXN0$ ZPJY @#K!;D# .L 58GEBT8$BUX&S2!=PU6)Y5!05HMV
XM!E>+1@31X"T" (G#B[\2(HM.!(D.3!>#_@%T! GV=0:)-E87ZQ2+1@31X"T"
XM (G#B;<2(L<&5A<]J[@P % QP%#H-/];6XE&_H-^_@!]$XM&!-'@+0( B<.)
XMOQ(B_W;^ZQN+1@31X"T" (G#B;<2(H-^_@%U!K@! %#K 5=8Z5'_4%-14E97
XM51X&B>.+7Q*)V$L!VXN?$B+_-DH74/_36(\&2A<''UU?7EI96UB/!F 7SP  
XM  ! *",I0V]P>7)I9VAT(#$Y.#D@8GD@2V5N;F5T:"!!;&UQ=6ES=   +V5T
XM8R]P<F]F:6QE   N<')O9FEL90  4TA)3DE4   *57-E(")E>&ET(B!T;R!L
XM96%V92!A<V@N"@  0V%N)W0@;W!E;B E<P!E9DEI:FYS>'H 0F%D("UC(&]P
XM=&EO;@!);&QE9V%L(&]P=&EO;B M)6,  %5S86=E.B!G971O<'1S(&]P='-T
XM<FEN9R!V87(  "5D  !/4%1)3D0  $EL;&5G86P@;W!T:6]N("TE8PH 3F\@
XM87)G(&9O<B M)6,@;W!T:6]N"@  3U!405)'  !);&QE9V%L(&]P=&EO;B M
XM)6,  $YO(&%R9R!F;W(@+25C(&]P=&EO;@ !          $! 0    $! 0$ 
XM   ! 0 !  $ )@(R CH"/@)" D@"3@)2 E8"6@)@ F0"< )V GP"A *, I0"
XMF@*B JH"L *V KX"P@+& LX"U@+: N "Y@+L O "]@+\ @ #! ,* PP##@,4
XM P  @D% /0  ?2TK/ST -PH   , )0K6"=H)H G]#@D !P"I#@L \PX, /,.
XM#0 P"Q( U@L3 -8+%  M#!< V X9 $L-W!,+ '__11,) +L2"@ L$R  NQ(C
XM .82)@!2$R@ O1,I ,D3.P":$UP _1)\ '<3]A4   H BQ12%,@49!5L%7D5
XMRA6+&*$5-!:=%&5N9"!O9B!F:6QE &YE=VQI;F4 (CLB "(F(@ B)B8B   B
XM?'PB   B?"( (B@B "(I(@ B.SLB   B8"( <F5D:7)E8W1I;VX =V]R9   
XM(FEF(@  (G1H96XB   B96QS92(  ")E;&EF(@  (F9I(@  (G=H:6QE(@ B
XM=6YT:6PB ")F;W(B ")D;R(  ")D;VYE(@  (GLB ")](@ B8V%S92(  ")E
XM<V%C(@  :68  '1H96X  &5L<V4  &5L:68  &9I  !W:&EL90!U;G1I; !F
XM;W( 9&\  &1O;F4  'L ?0!C87-E  !E<V%C  !"860@9F]R(&QO;W @=F%R
XM:6%B;&4 :6X  &EN  !E>'!E8W1I;F<@(FEN(@  0F%D(&9U;F-T:6]N(&YA
XM;64 26QL96=A;"!E;V8@;6%R:V5R(&9O<B \/"!R961I<F5C=&EO;@!"860@
XM9F0@;G5M8F5R %5N=&5R;6EN871E9"!Q=6]T960@<W1R:6YG  !-:7-S:6YG
XM("=])P!"860@<W5B<W1I='5T:6]N   E<R!U;F5X<&5C=&5D("AE>'!E8W1I
XM;F<@)7,I   E<R!U;F5X<&5C=&5D "5S.B E9#H@  !3>6YT87@@97)R;W(Z
XM("5S"@#3'@  #@"M'<8>OQXF'E(>2![.'?H=7!Z5'I4>G!ZC'M,>K!Y.;V1E
XM('1Y<&4@/2 E9 H 4&EP92!C86QL(&9A:6QE9   4&EP92!C86QL(&9A:6QE
XM9   )7,Z(&YO="!F;W5N9 H  %!I<&4@8V%L;"!F86EL960  %-H96QL(&9U
XM;F-T:6]N.B @ &)U:6QT:6X@8V]M;6%N9#H@(   ;F]R;6%L(&-O;6UA;F0Z
XM("  7P#>+08 @?]2+8+_L"V#_Q$NA/^[+87_NRT  !$N9#4( "$ 1#,C #XS
XM)  R,RH #30M *@S, #>-#\ .#-   $T #T% ('_LSL  !\]*@#9.S\ RSM;
XM #$\)7,* "4N*G,Z('!A<F%M971E<B E<VYO="!S970 ;G5L;"!O<B   "X 
XM+P#__VQ*   6 $Y(E4F92.9(YDC,2&=(@$CP2!E)(TE,269);$J#2=!)VDG^
XM2>9)\DD*2F)*8DI;)61=("5D(   (" @("5D( !%>&ET("5D %-I9VYA;" E
XM9  @*&-O<F4@9'5M<&5D*0  )60  $YO(&-U<G)E;G0@:F]B   E<SH@86UB
XM:6=U;W5S $YO('-U8V@@:F]B.B E<P!#86YN;W0@9F]R:P O9&5V+VYU;&P 
XM0V%N)W0@;W!E;B O9&5V+VYU;&P  "5D.B   %-I9VYA;" E9  @+2!C;W)E
XM(&1U;7!E9   .R   " F)B   "!\?"   "!\(  H "D :68@ #L@=&AE;B  
XM+BXN '=H:6QE(   =6YT:6P@   [(&1O(  [(&1O;F4  &9O<B   "!I;B N
XM+BX 8V%S92  (&EN("XN+@ H*2 N+BX  "  (  ^ #X^   ^)@  /  \)@  
XM/#PN+BX /S\_ 'TM*S\] (I-$  & ,],@4P 359-5DU_37]-3W5T(&]F(&9I
XM;&4@9&5S8W)I<'1O<G, 8V%N;F]T(&]P96X@)7,Z("5S  !C86YN;W0@8W)E
XM871E("5S.B E<P  8V%N;F]T(&-R96%T92 E<SH@)7,  %!I<&4@8V%L;"!F
XM86EL960  $)A9" C(2!L:6YE '-H  !A<V@ 0F%D(",A(&QI;F4 <G8  &)U
XM:6QT:6X@)7,  &9U;F-T:6]N("5S &)U:6QT:6X 9G5N8P  )7,@;F]T(&1E
XM9FEN960@:6X@)7,  "5S.B E<PH 8G5I;'1I;@ F*S<KR8<C6RH#<(2='+DK
XM8 -69Q2)) <"4SE!]#V! ^N&VFAOAJ5=7%]^*]$&?VI#!B%_L2N"8;YJAT!X
XM"   ?@@! (0( 0"." ( E @# )@(! ":" 4 H @& *8(!P"L" @ L@@) +H(
XM"0#$" H R@@* - ("@#2" L V@@, . (#0#F" X [ @/ / ($ #V"!$ _ @2
XM  0)$P ("10 #@D5 !8)%@ :"1< (@D8 "@)&0 N"1H , D: #8)&P \"1P 
XM0@D=      !B;'1I;@!B<F5A:P!C;VYT:6YU90  8V%T9@  8V0  "X 96-H
XM;P  979A;   97AE8P  97AI=   97AP;W)T  !R96%D;VYL>0  97AP<@  
XM=&5S=   6P!G971O<'1S &AA<V@  &IO8FED &IO8G,  &QC  !L:6YE  !L
XM;V-A; !N;&5C:&\  '!W9 !R96%D  !R971U<FX  '-E= !S971V87(  '-H
XM:69T '1R87   #H =')U90  =6UA<VL =6YS970 =V%I=   2$]-10  2$]-
XM12!N;W0@<V5T  !#1%!!5$@  &-A;B=T(&-D('1O("5S   E<PH +BX  "X 
XM4&EP92!C86QL(&9A:6QE9   +V)I;B]P=V0  '!W9  O=7-R+V)I;B]P=V0 
XM '!W9 !#86YN;W0@97AE8R O8FEN+W!W9   <'=D(&-O;6UA;F0@9F%I;&5D
XM  !E<#H 87)G(&-O=6YT $E&4P E+C1O"@!);&QE9V%L(&YU;6)E<CH@)7, 
XM 'EO=2!H879E(&UA:6P P!@, $0*NA@L $P*M!@L %(*KA@, %P*J!@, ' *
XMHA@, '@*G!@, ( *        2493/2 )"@!-04E,/0!-04E,4$%42#T 4$%4
XM2#TZ+V)I;CHO=7-R+V)I;@!04S$]0"   %!3,CT^(   4TA%3$Q615)3/6%S
XM:" P+C( )2XJ<SH@:7,@<F5A9"!O;FQY   E+BIS.B!I<R!R96%D(&]N;'D 
XM "5S"@!.;W0@:6X@82!F=6YC=&EO;@!,:7-T(&%S<VEG;FUE;G0@;F]T(&EM
XM<&QE;65N=&5D  $ S!Q#86XG="!O<&5N("5S $]U="!O9B!F:6QE(&1E<V-R
XM:7!T;W)S           $ 0           &0  @              _?\  !H+
XM)@LP,3(S-#4V-S@Y04)#1$5&  "8=@< 6 !W<V, 779D  =S;P!P<W, ;W5U
XM &ES> !W<P8 "  &  8 !@ &  8 !@ (  8 !@ (  8 "  (  @ "@ *  H 
XM"  (  @ " "[>   %@#(=]EWZG?T=_1W]'?(=\AW!7C(=\AW'7A!>%%X:'AH
XM>(MXBWB+>)MXFWBD>*1X5GH  !8 "'D?>3QY3WE/>4]Y"'D(>69Y"'D(>8=Y
XMJ'F_>=]YWWG_>?]Y_WD;>AMZ,WHS>@D "@H*"@H                     
XM                                                            
XM                                                            
XM                                  L!                        
XM    "P $  < "P,+"P                      "PL "P              
XM                         @    8                             
XM       +"     D "@H*"@H                                     
XM                                                            
XM                                                            
XM                   !                              H%  <     
XM  H                        *  H                             
XM       * @    8                                     "     D 
XM"@H*"@H                                                     
XM                                                            
XM                                                            
XM   !                              H       4   H             
XM           *  H                                    *        
XM                                                            
XM                                                            
XM                                                            
XM                                                            
XM                 !  $!       !   !    $! 0$! 0$! 0$      ! 0
XM @(" @(" @(" @(" @(" @(" @(" @(" @(     "  $! 0$! 0$! 0$! 0$
XM! 0$! 0$! 0$! 0$!           3!!4$%X09!!X$(@0CA"8$*P0M!"^$,P0
XMW!#H$/00 !$.$0  '!$                     *!%(86YG=7   $EN=&5R
XM<G5P= !1=6ET  !);&QE9V%L(&EN<W1R=6-T:6]N %1R86-E+T)05"!T<F%P
XM  !A8F]R= !%350@=')A<   1FQO871I;F<@97AC97!T:6]N  !+:6QL960 
XM $)U<R!E<G)O<@!-96UO<GD@9F%U;'0  $)A9"!S>7-T96T@8V%L; !"<F]K
XM96X@<&EP90!!;&%R;2!C86QL  !497)M:6YA=&5D  !5<V5R('-I9VYA;" Q
XM %5S97(@<VEG;F%L(#( 4&]W97(@9F%I;   4&]L;   ]!SV'/@!__]/=70@
XM;V8@<W!A8V4  $]U="!O9B!S<&%C90  <W1U;F%L;&]C"@  !  ' -X1#0 '
XM .H1!0 ' /P1 @ !  82 @ " !02 @ $ "H2%  ! #02%  " $(2%  $ %@2
XM%0 ' &(2%P ' '(2'  ' (82!@ ' )@2'@ ' +(2&@ ' ,@2"P $ -(2#  '
XM .02!P $ /82        )7,Z("5S   E<SH@  !I;G1E<G)U<'1E9 !P97)M
XM:7-S:6]N(&1E;FEE9 !)+T\@97)R;W( ;F\@<W5C:"!F:6QE  !D:7)E8W1O
XM<GD@;F]N97AI<W1E;G0 ;F]T(&9O=6YD &YO('-U8V@@9FEL90  9&ER96-T
XM;W)Y(&YO;F5X:7-T96YT &YO="!F;W5N9 !I<R!A(&1I<F5C=&]R>0  9FEL
XM92!T86)L92!O=F5R9FQO=P!F:6QE('-Y<W1E;2!F=6QL  !N;R!S=6-H(&1E
XM=FEC92!O<B!A9&1R97-S ')E860M;VYL>2!F:6QE('-Y<W1E;0!T97AT(&)U
XM<WD ;F]T(&5N;W5G:"!M96UO<GD ;F]T(&5N;W5G:"!M96UO<GD 87)G=6UE
XM;G0@;&ES="!T;V\@;&]N9P  97)R;W(@)60  *R  P " (V  P"9@ \ F8 8
XM@0$  @#\@ .!"H$E9#H@)7,* "5S.B!B860@=')A<   4VEG;F%L('-Y<W1E
XM;2!C86QL(&9A:6QE9 !);&QE9V%L(&YU;6)E<@  184) #  $85< $^%8@#G
XMA&, [81F /.$;@#YA'( _X1T  6%=@ +A2UN   M90  0V%N)W0@;W!E;B E
XM<P#*CP  (0#MC "-!8T*C3>-/(U!C4:-:XU\C8&-AHV<C<&-VHWEC?J-RH_Z
XMC<J/#HX.CCV.5HYLCH6.GHZWCM".Y8[ZCA*/.H]ACUT ;6ES<VEN9R!= '-Y
XM;G1A>"!E<G)O<@  17AP<F5S<VEO;B!T;V\@8V]M<&QE>   )60  '1R=64 
XM    )7,* "5L9 H  '1R=64* $1I=FES:6]N(&)Y('IE<F\  $1I=FES:6]N
XM(&)Y('IE<F\  &*2!@   %R0) #@D"H [Y N &*06P!MD%P R9'6D@  "@#W
XMD@>3'),GDRZ3D9.BD[^3_9,'E!.44D4@97)R;W(  %)%(&5R<F]R  !212!E
XM<G)O<@  4D4@97)R;W(  %H57!5@%605:!5L%7 5=!5X%7P5@!6$%8@5C!60
XM%905  "8%9P5GA6B%:05IA6J%:X5LA6V%;H5OA7"%<05QA7(%<H5S!4   ,,
XM# P,# P,# P,# P,# P! 0("! 0$! 0$! 0%!08&!@<  P,# P,# P,# P,#
XM 0("      (" 0$! 0$! 0$! 0$"(0 M<@  +7<  "UX   M9@  +60  "UC
XM   M8@  +7   "UU   M9P  +6L  "US   M=   +7H  "UN   M;P  ?  M
XM80  )@ ] "$]   M97$ +6YE "UG=  M;'0 +6QE "UG90 K "T *@ O "4 
XM.@  (" @(" @(" @*"@H*"@@(" @(" @(" @(" @(" @(""($! 0$! 0$! 0
XM$! 0$! 0! 0$! 0$! 0$!! 0$! 0$!!!04%!04$! 0$! 0$! 0$! 0$! 0$!
XM 0$! 1 0$! 0$$)"0D)"0@(" @(" @(" @(" @(" @(" @("$! 0$"  ,B*G
XMHP0 "'0WH@ETY* 1=$VA$G3CH@  U1;L%@       ) 6                
XM           9%Z<6IQ:^%D5R<F]R.B!$:79I<VEO;B!B>2 P( H 26QL96=A
XM;"!%32!I;G-T<G5C="=N"@!%<G(@:6X@14T@8V%S92!I;G-T<B * %9A<FEA
XM8FQE(&]U="!O9B!R86YG90H 17)R(&EN($5-('-E="!I;G-T<B * $9L;V%T
XM:6YG('!T(&YO="!I;7!L+@H 2&5A<"!O=F5R9FQO=R * $5-('1R87 @,# P
XM,# P,"!O8W1A; H ,B(R(@                                      
X! # P
X 
Xend
/
-------- End of cut for ash.sh ----------
--
Simmule Turner        |Arpa: simmy@nu.cs.fsu.edu        | "Wait until it is 
Florida State Univ    |Uucp: gatech!nu.cs.fsu.edu!simmy |  finished, it will
444 OSB               | Cis: 70651,67       Genie:simmy |  be great"        
Tallahassee, FL 32306 | Tel: +1 904 644 1573            |             simmy