2000-02-07 Jason Molenda (jsm@bugshack.cygnus.com)

* gdb/config/i386/windows.mh,
	 gdb/doc/GDBvn.texi, gdb/doc/remote.texi,
	 gdb/testsuite/gdb.base/README, gdb/testsuite/gdb.base/crossload.exp,
	 gdb/testsuite/gdb.base/i486-elf.u, gdb/testsuite/gdb.base/i860-elf.u,
	 gdb/testsuite/gdb.base/m68k-aout.u,
	 gdb/testsuite/gdb.base/m68k-aout2.u,
	 gdb/testsuite/gdb.base/m68k-elf.u, gdb/testsuite/gdb.base/mips-ecoff.u,
	 gdb/testsuite/gdb.base/sparc-aout.u,
	 gdb/testsuite/gdb.base/sparc-elf.u,
	 gdb/tui/Makefile,
	 readline/ChangeLog: These files have been removed over the course
	 of the last year, but weren't cvs removed from the old GDB repository
	 on sourceware.
This commit is contained in:
Jason Molenda 2000-02-08 03:37:34 +00:00
parent 2b266721c4
commit 1171f8d754
15 changed files with 0 additions and 9082 deletions

View File

@ -1,17 +0,0 @@
# gdbwin.o and ser-win32s.c have to be named because they have
# _initialize functions that need to be found by init.c
# gui.ores has to be named, or else msvc won't link it in.
XDEPFILES = \
mswin/gdbwin.o \
mswin/ser-win32s.o \
mswin/gui.ores \
mswin/libwingdb.a
$(XDEPFILES):
rootme=`pwd` ; export rootme ; \
( cd mswin ; \
$(MAKE) $(FLAGS_TO_PASS) all )
XM_FILE=xm-windows.h
MMALLOC=
SER_HARDWIRE =

View File

@ -1 +0,0 @@
@set GDBVN 4.18

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +0,0 @@
Information about the various executables found in this test:
BFD CPU Objfile
Executable Target Type Type Info about compilation machine
---------- ------ ---- ------- -------------------------------
i486-elf elf-little i486 ELF NCR 3000, /usr/ccs/ATT/cc
i860-elf elf-big i860 ELF Stratus
m68k-elf elf-big m68k ELF Amiga 3000 UX, /usr/ccs/bin/cc
m68k-aout a.out-newsos3 m68k a.out Sony NEWS
m68k-aout2 a.out-sunos-big m68k a.out SunOS 4.1, gcc cygnus-2.0.1
sparc-aout a.out-sunos-big sparc a.out Sun 4, SunOS 4.1.1, gcc 2.1
sparc-elf elf-big sparc ELF Sun 4, Solaris 1.0, gcc 2.0.2
mips-ecoff ecoff-bigmips mips ecoff IRIX 4.0.1

View File

@ -1,380 +0,0 @@
# Copyright (C) 1992, 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@prep.ai.mit.edu
# This file was written by Fred Fish. (fnf@cygnus.com)
# Rob Savoye changed it to use gdb_test (rob@cygnus.com)
if $tracelevel then {
strace $tracelevel
}
set prms_id 0
set bug_id 0
# FIXME: The configure.in for this test should look for --with-targets
# and deal accordingly. Until that has been done, skip the whole thing.
# With a minimal bfd (the default), few if any of these tests work.
verbose "FIXME: all the crossload tests ignored"
return
foreach i "m68k-elf m68k-aout m68k-aout2 mips-ecoff i486-elf sparc-aout i860-elf sparc-elf" {
remote_exec build "cd ${objdir}/${subdir} ; uudecode ${srcdir}/${subdir}/$i.u "
}
# FIXME: These tests don't work for the i960, because
# bfd/config/i960-bout.mt sets SELECT_VECS. I could use setup_xfail
# for each test, but rebooting the board between each one takes a long
# time so I'm just punting the whole file.
if [istarget "i960-*-*"] then {
if $verbose>1 then {
warning "FIXME: crossload test case doesn't run on the i960."
}
continue
}
# FIXME: These tests don't work for the a29k, because SELECT_VECS is
# used when compiling bfd. It would be nice if there were some better
# way of detecting this case.
if [istarget "a29k-*-*"] then {
if $verbose>1 then {
warning "FIXME: crossload test case doesn't run on the a29k."
}
continue
}
# Test if gdb can automatically determine the bfd format of an
# executable and read it's symbols.
proc bfddefault {} {
global GDB
global GDBFLAGS
global gdb_prompt
global objdir
global subdir
global binfile
global bfdformat
global file_loaded
gdb_unload
set file_loaded 0
send_gdb "file $objdir/$subdir/$binfile\n"
gdb_expect {
-re "A program is being debugged already. Kill it.*y or n." {
send_gdb "y\n"
exp_continue
}
-re "Reading symbols from $objdir/$subdir/$binfile\[.\]+done\..*$gdb_prompt $" {
pass "$binfile ($bfdformat) auto format"
}
-re "Reading symbols from $objdir/$subdir/$binfile\[.\]+.no debugging symbols found.\[.\]+done\..*$gdb_prompt $" {
pass "$binfile ($bfdformat) auto format (but no symbols found)"
}
-re "File format not recognized.*$gdb_prompt $" {
fail "$binfile ($bfdformat) auto format (format not recognized)"
return
}
-re "File format is ambiguous.*$gdb_prompt $" {
fail "$binfile ($bfdformat) auto format (format is ambiguous)"
return
}
-re "$gdb_prompt $" {
fail "$binfile ($bfdformat) auto format"
return
}
timeout {
fail "(timeout) $binfile ($bfdformat) auto format"
return
}
}
if [gdb_test "info target" ".*file type $bfdformat" ""]==0 then {
set file_loaded 1
} else {
fail "$binfile ($bfdformat) wrong format found"
}
}
# Test if gdb can read symbols from an executable when the bfd format
# is explicitly set via the environment variable GNUTARGET.
proc bfdexplicit {} {
global GDB
global GDBFLAGS
global gdb_prompt
global subdir
global objdir
global det_file
global binfile
global bfdformat
global file_loaded
gdb_unload
set file_loaded 0
# Once GDB 4.10 (the last to lack `set gnutarget') is forgotten,
# change this to use set gnutarget.
if [gdb_test "set env GNUTARGET=$bfdformat" "" ""]!=0 then {
fail "setting GNUTARGET=$bfdformat in environment"
return
}
send_gdb "file $objdir/$subdir/$binfile\n"
gdb_expect {
-re "A program is being debugged already. Kill it.*y or n." {
send_gdb "y\n"
exp_continue
}
-re "Reading symbols from $objdir/$subdir/$binfile\[.\]+done\..*$gdb_prompt $" {
pass "$binfile ($bfdformat) explicit format"
}
-re "Invalid target.*$gdb_prompt $" {
fail "$binfile ($bfdformat) explicit format (invalid target)"
return
}
-re "$gdb_prompt $" {
fail "$binfile ($bfdformat) explicit format"
return
}
timeout {
fail "(timeout) $binfile ($bfdformat) explicit format"
return
}
}
set file_loaded 1
}
proc test_ptype_functions {} {
global gdb_prompt
global binfile
global bfdformat
global det_file
send_gdb "ptype main\n"
gdb_expect {
-re "type = int \[)(\]+\r\n$gdb_prompt $" {}
timeout { fail "(timeout) $binfile ($bfdformat) function main" ; return }
}
# set up a list of lists of command and patterns
set command [list { "ptype v_char_func" "type =(\ unsigned\ |\ signed\ |\ )char \[)(\]+" }\
{ "ptype v_short_func" "type = (short|short int) \[)(\]+" } \
{ "ptype v_int_func" "type = int \[)(\]+" } \
{ "ptype v_long_func" "type = (long|long int|int) \[)(\]+" } \
{ "ptype v_float_func" "type = float \[)(\]+" } \
{ "ptype v_double_func" "type = double \[)(\]+" } ]
foreach i $command {
if [gdb_test [lindex $i 0] [lindex $i 1] ""] then {
fail "$binfile ($bfdformat) \"[lindex $i 0]\" function types"
return
}
}
pass "$binfile ($bfdformat) ptype function types"
}
# Note that plain chars can be either signed or unsigned.
proc test_ptype_plain_types {} {
global gdb_prompt
global binfile
global bfdformat
# set up a list of lists of command and patterns
set command [list { "ptype v_char" "type =(\ unsigned\ |\ signed\ |\ )char" }\
{ "ptype v_short" "type = short" } \
{ "ptype v_int" "type = int" } \
{ "ptype v_long" "type = long" } \
{ "ptype v_float" "type = float" } \
{ "ptype v_double" "type = double" } ]
foreach i $command {
if [gdb_test [lindex $i 0] [lindex $i 1] ""] then {
fail "$binfile ($bfdformat) \"[lindex $i 0]\" plain C types"
return
}
}
pass "$binfile ($bfdformat) ptype plain C types"
}
# Note that if compiled with pre-ANSI compilers, the "signed" keywords are
# defined away and the variables default to plain types. So accept either.
proc test_ptype_signed_types {} {
global gdb_prompt
global binfile
global bfdformat
global det_file
# set up a list of lists of command and patterns
set command [list { "ptype v_signed_char" "type =(\ signed\ |\ )char" }\
{ "ptype v_signed_short" "type =(\ signed\ |\ )short" } \
{ "ptype v_signed_int" "type =(\ signed\ |\ )int" } \
{ "ptype v_signed_long" "type =(\ signed\ |\ )long" } ]
foreach i $command {
if [gdb_test [lindex $i 0] [lindex $i 1] ""] then {
if [expr [string match "ecoff-bigmips" $bfdformat]+[string match "ptype v_signed_char" [lindex $i 0]]]==2 then {
setup_xfail "*-*-*"
}
fail "$binfile ($bfdformat) \"[lindex $i 0]\" signed C types"
return
}
}
pass "$binfile ($bfdformat) ptype signed C types"
}
proc test_ptype_unsigned_types {} {
global gdb_prompt
global binfile
global bfdformat
global det_file
# set up a list of lists of command and patterns
set command [list { "ptype v_unsigned_char" "type = unsigned char" }\
{ "ptype v_unsigned_short" \
"type = (unsigned short|short unsigned int)" } \
{ "ptype v_unsigned_int" "type = unsigned int" } \
{ "ptype v_unsigned_long" \
"type = (unsigned long|long unsigned int)" } ]
foreach i $command {
if [gdb_test [lindex $i 0] [lindex $i 1] ""] then {
fail "$binfile ($bfdformat) \"[lindex $i 0]\" unsigned C types"
return
}
}
pass "$binfile ($bfdformat) ptype unsigned C types"
}
# Note that plain chars can be either signed or unsigned.
proc test_ptype_array_types {} {
global gdb_prompt
global binfile
global bfdformat
global det_file
# set up a list of lists of command and patterns
set command [list { "ptype v_char_array" "type =(\ unsigned\ |\ signed\ |\ )char \\\[2\\\]" }\
{ "ptype v_short_array" \
"type = (short|short int) \\\[2\\\]" } \
{ "ptype v_int_array" "type = int \\\[2\\\]" } \
{ "ptype v_long_array" "type = (long|long int) \\\[2\\\]" } \
{ "ptype v_float_array" "type = float \\\[2\\\]" } \
{ "ptype v_double_array" "type = double \\\[2\\\]" } ]
foreach i $command {
if [gdb_test [lindex $i 0] [lindex $i 1] ""] then {
fail "$binfile ($bfdformat) \"[lindex $i 0]\" C array types"
return
}
}
pass "$binfile ($bfdformat) ptype C array types"
}
proc test_ptype_pointer_types {} {
global gdb_prompt
global binfile
global bfdformat
global det_file
# set up a list of lists of command and patterns
set command [list { "ptype v_char_pointer" "type =(\ unsigned\ |\ signed\ |\ )char \*" }\
{ "ptype v_short_pointer" "type = (short|short int) \*" } \
{ "ptype v_int_pointer" "type = int \*" } \
{ "ptype v_long_pointer" "type = (long|long int) \*" } \
{ "ptype v_float_pointer" "type = float \*" } \
{ "ptype v_double_pointer" "type = double \*" } ]
foreach i $command {
if [gdb_test [lindex $i 0] [lindex $i 1] ""] then {
fail "$binfile ($bfdformat) \"[lindex $i 0]\" C pointer types"
return
}
}
pass "$binfile ($bfdformat) ptype C pointer types"
}
proc loadandtest { args } {
global verbose
global GDB
global GDBFLAGS
global gdb_prompt
global subdir
global objdir
global binfile
global bfdformat
global file_loaded
set binfile [ lindex $args 0 ]
set bfdformat [ lindex $args 1 ]
set fixme [ lindex $args 2 ]
if ![file exists $objdir/$subdir/$binfile] then {
perror "$objdir/$subdir/$binfile does not exist"
return 0
}
gdb_exit
gdb_start
if $fixme then { setup_xfail "*-*-*" }
bfddefault
if $fixme then { setup_xfail "*-*-*" }
if [string match $bfdformat "elf-big"] then {
if [string match $binfile "i860-elf"] then {
setup_xfail "*-*-*"
}
}
bfdexplicit
if $file_loaded==1 then {
test_ptype_functions
if $fixme then { setup_xfail "*-*-*" }
test_ptype_plain_types
if $fixme then { setup_xfail "*-*-*" }
test_ptype_signed_types
if $fixme then { setup_xfail "*-*-*" }
test_ptype_unsigned_types
if $fixme then { setup_xfail "*-*-*" }
test_ptype_array_types
if $fixme then { setup_xfail "*-*-*" }
test_ptype_pointer_types
}
}
# Run tests for each of the test executables.
# If the third argument is 1, the tests will be expected to fail.
# We should extract the information about available tests and bfd formats
# from the makefile or some other control file (FIXME).
loadandtest m68k-elf "elf32-m68k" 0
# I'm getting an XPASS for explicit format on this one
loadandtest m68k-aout "a.out-newsos3" 1
loadandtest m68k-aout2 "a.out-sunos-big" 0
loadandtest mips-ecoff "ecoff-bigmips" 0
loadandtest i486-elf "elf32-i386" 0
loadandtest sparc-aout "a.out-sunos-big" 0
loadandtest sparc-elf "elf32-sparc" 0
#FIXME: i860 support is unlikely to be working in the near future
# so suppress this test until it is working. -fnf
#loadandtest i860-elf "elf32-i860" 0
gdb_test "set gnutarget auto" ""

View File

@ -1,287 +0,0 @@
begin 777 i486-elf
M?T5,1@$! 0 ( P ! W(($"#0 !\+@ #0 ( %
M "@ %0 1 8 T -( $" "@ H 4 P -0
M !, ! ! - #2 ! @ * 8
M "@& % ! $ !<!@ 7)8$" "4 2 ( < $
M @ ( & " E@0( ' !P O=7-R+VQI8B]L:6)C
M+G-O+C$ , , !@ L * ! (
M $ 4 # " D '
M $ "<@@0(' !( * I)@$" 1 /'_#P &"6! @$
M$0 + !@ !<A@0( !$ \?\? K(($"$ 2 )@ /"6! @
M $0#Q_RT #,@@0( !( R /(8$" 0 1 H /P +R"
M! @ $@ $D !DE@0( !$ \?]? @)8$" 1 /'_ %]C
M;&5A;G5P %]E;F0 7V5N=FER;VX 7V5T97AT &%T97AI= !?961A=&$ 97AI
M= !?;&EB7W9E<G-I;VX 7U]F<'-T87)T %]'3$]"04Q?3T9&4T547U1!0DQ%
M7P!?1%E.04U)0P O=7-R+VQI8B]L:6)C+G-O+C$ '"6! @' 0 =)8$" <%
M !XE@0(!PD 'R6! @'!P PP /\U:)8$"/\E;)8$" #_)7"6! AH
M .G@_____R5TE@0(: @ #IT/____\E>)8$"&@0 Z<#_____)7R6
M! AH& .FP____:@!J (OL4KB<@@0(A<!T#6B<@@0(Z+;___^#Q 2X@)8$
M"(7 = 7HI?___V@XA@0(Z)O___^+10B-5(40B15@E@0(4HU5#%)0Z%_____H
MCO___^@! 0 @\0,4.B0____:@"X 0 )H !P#TP^L&,\#K ,G#58OL
MZ_60D)#K!C/ ZP#)PU6+[.OUD)"0ZP8SP.L R<-5B^SK]9"0D.L&,\#K ,G#
M58OLZ_60D)#K!C/ ZP#)PU6+[.OUD)"0ZP8SP.L R<-5B^SK]9"0D.L&,\#K
M ,G#58OLZ_60D)#K!C/ ZP#)PU6+[.OUD)"0ZP8SP.L R<-5B^SK]9"0D.L&
M,\#K ,G#58OLZ_60D)#K!C/ ZP#)PU6+[.OUD)"0ZP8SP.L R<-5B^SK]9"0
MD.L*W05 A@0(ZP#)PU6+[.OQD)"0ZPK=!4B&! CK ,G#58OLZ_&0D)#I\P$
M )#&!?B7! @ Q@5TEP0( <8%.I<$" )FQP5LEP0( P!FQP5<EP0(! !FQP4$
MEP0(!0#'!1"7! @& QP7PE@0(!P ,<%])8$" @ #'!6B7! @)
MQP7\E@0("@ ,<%>)<$" L "A4(8$"*,\EP0(H5B&! BC#)<$"*%4A@0(
MHPB7! B@^)<$"*+4EP0(H'27! BB.)<$"* ZEP0(HOB6! AFH6R7! AFHWR7
M! AFH5R7! AFHTB7! AFH027! AFHX"7! BA$)<$"*,<EP0(H?"6! BCC)<$
M"*'TE@0(HU"7! BA:)<$"*/PEP0(H?R6! BC0)<$"*%XEP0(HV"7! BA/)<$
M"*/@EP0(H0R7! BC+)<$"*$(EP0(HRB7! C'!827! CXEP0(QP7LEP0(=)<$
M",<%B)<$"#J7! C'!>B7! ALEP0(QP6<EP0(7)<$",<% )<$" 27! C'!4R7
M! @0EP0(QP64EP0(\)8$",<%6)<$"/26! C'!7"7! AHEP0(QP7<EP0(_)8$
M",<%&)<$"'B7! C'!=B7! @\EP0(QP6@EP0(")<$",<%))<$" ( #'!127
M! @" QP60F 0( 0 ,<%_)<$" $ "AF)<$"*, F 0(9J&<F 0(9J.4
MF 0(R<-5B^SI!O[__Y ## ,A"
M :4 ("6! @ **"! BR@@0(PH($"-*"! @!
M : P "(@@0(#0 #B&! @$ Z( $" 4 #L@00(!@ "R!
M! @* >P L 0 %0 # 9)8$" ( @ %
M !$ 7 :(($" $
M 0 \?\ U( $" # $ .B ! @ P " L
M@00( , P [($$" # 0 &B"! @ P %
M "(@@0( , !@ C(($" # < -R"! @ P (
M XA@0( , "0 /(8$" # H %R6! @
M P + !DE@0( , # @)8$" # T /"6! @
M P . , #P # !
M P 1 , $@ # !,
M P 4 H 0 \?\1 $ /'_
M& ! #Q_R0 0 \?\L $
M /'_-@ ! #Q_ST !,@P0(#0 !( " !) \)8$" 0
M 1 X 5@ /26! @$ $0 . &4 XA@0( !( "0!K ^)8$
M" ( 1 X @0 #2$! @! @ $@ ( (8 #\E@0(! !$ #@"4
M )<$" 0 1 X K0 )R"! @< $@ +8 "DF 0( !$ \?^[
M !)<$" ( 1 X S )R#! @- $@ ( .( (EP0(" !$
M#@#K $)<$" 0 1 X \0 -R"! @ $@ ( /@ 4EP0(!
M !$ #@ # 0 8)8$" 0 1 L # $ !B7! @$ $0 . "0! <EP0(
M" !$ #@ P 0 ))<$" 0 1 X . $ %R#! @- $@ ( $L! H
MEP0($ !$ #@!: 0 7(8$" 1 /'_80$ #B7! @" $0 . '4!
M ZEP0( 0 !$ #@"% 0 /)<$" 0 1 X C0$ $"7! @( $0 .
M *$! "L@@0(0 !( "H 0 8)8$" 0 A L L $ -R#! @-
M$@ ( +P! #\@P0(#0 !( " #1 0 2)<$" 0 1 X Y@$ $R7! @$
M $0 . /0! #PE@0( !$ \?_[ 0 ?(,$" T 2 @ " ( %"7
M! @( $0 . !T" !8EP0(! !$ #@ T @ K(,$" T 2 @ /P(
M %R7! @" $0 . $X" ,A 0($0 !( " !; @ S(($" 2
M8 ( &"7! @( $0 . '8" !HEP0(! !$ #@!] @ ;)<$" ( 1
M X A0( '"7! @$ $0 . )0" !TEP0( 0 !$ #@"B @ >)<$" 0
M 1 X L@( 'R7! @$ $0 . , " " EP0(! !$ #@#7 @ /(8$
M" 0 1 H Y ( $N#! @ $@ ( .P" "$EP0(! !$ #@#[ @
MB)<$" 0 1 X $P, (R7! @( $0 . "8# "\@@0( !( P
M P E)<$" 0 1 X 10, )B7! @$ $0 . $P# !DE@0( !$
M\?]B P G)<$" 0 1 X >0, *"7! @$ $0 . (H# !<E@0(!
M !$ "P"< P I)<$"!@ 1 X I@, +R7! @8 $0 . + # #4EP0(
M @ !$ #@"] P V)<$" 0 1 X S0, -R7! @$ $0 . .,# @
MA 0($0 !( " #Q P O(,$" T 2 @ P0 ("6! @ $0#Q_PP$
M #@EP0(" !$ #@ :! Z)<$" 0 1 X *@0 .R#! @- $@ (
M #T$ #LEP0(! !$ #@!3! \)<$" @ 1 X 8 0 (B"! @
M$@ & &8$ #XEP0( 0 !$ #@!M! _)<$" 0 1 X =00 &R#! @-
M $@ ( (H$ F 0(D !$ #@"1! C(,$" T 2 @ I00 )"8
M! @$ $0 . *\$ "4F 0(" !$ #@"X! S(,$" T 2 @ S 0
M )R8! @( $0 . !I-#@V+F5L9@!C<G0Q+G, 8W)T:2YS '9A;'5E<RU8
M="YC &=D8FUE+F, <VA?9&%T82YC &-R=&XN<P!V7V-H87)?9G5N8P!V7W-I
M9VYE9%]I;G0 =E]U;G-I9VYE9%]I;G0 7V9I;FD =E]U;G-I9VYE9%]C:&%R
M7V%R<F%Y &UA:6X =E]S:6=N961?;&]N9P!V7W5N<VEG;F5D7W-H;W)T7W!O
M:6YT97( 7V-L96%N=7 7V5N9 !V7W5N<VEG;F5D7W-H;W)T '9?=6YS:6=N
M961?<VAO<G1?9G5N8P!V7V1O=6)L90!V7VEN= !?<W1A<G0 ;F]N<')I;6%R
M>0!?96YV:7)O;@!V7W5N<VEG;F5D7VQO;F=?<&]I;G1E<@!V7VEN=%]A<G)A
M>0!P<FEM87)Y '9?<VEG;F5D7V-H87)?9G5N8P!V7V1O=6)L95]A<G)A>0!?
M971E>'0 =E]S:6=N961?8VAA<E]A<G)A>0!V7W5N<VEG;F5D7V-H87( =E]F
M;&]A= !V7W-I9VYE9%]L;VYG7V%R<F%Y &%T97AI= !E;G9I<F]N '9?;&]N
M9U]F=6YC '9?=6YS:6=N961?;&]N9U]F=6YC '9?<VEG;F5D7W-H;W)T7V%R
M<F%Y '9?:6YT7W!O:6YT97( 7V5D871A '9?<VAO<G1?9G5N8P!V7W5N<VEG
M;F5D7VEN=%]A<G)A>0!V7W5N<VEG;F5D7VEN=%]P;VEN=&5R '9?:6YT7V9U
M;F, =E]S:6=N961?<VAO<G0 =E]F;&]A=%]F=6YC &5X:70 =E]U;G-I9VYE
M9%]L;VYG7V%R<F%Y '9?;&]N9P!V7W-H;W)T '9?;&]N9U]P;VEN=&5R '9?
M<VEG;F5D7V-H87( =E]U;G-I9VYE9%]L;VYG '9?<VAO<G1?87)R87D =E]U
M;G-I9VYE9%]S:&]R=%]A<G)A>0!?;&EB7W9E<G-I;VX 7VUC;W5N= !V7V-H
M87)?<&]I;G1E<@!V7W5N<VEG;F5D7V-H87)?<&]I;G1E<@!V7W-I9VYE9%]I
M;G1?87)R87D 7U]F<'-T87)T '9?<VEG;F5D7VEN=%]P;VEN=&5R '-?;&EN
M:P!?1TQ/0D%,7T]&1E-%5%]404),15\ =E]S:6=N961?<VAO<G1?<&]I;G1E
M<@!V7V1O=6)L95]P;VEN=&5R %]?;&]N9V1O=6)L95]U<V5D '9?<W1R=6-T
M,0!V7W-T<G5C=#( =E]C:&%R7V%R<F%Y '9?9FQO871?<&]I;G1E<@!V7W-I
M9VYE9%]L;VYG7W!O:6YT97( =E]D;W5B;&5?9G5N8P!V7W-I9VYE9%]I;G1?
M9G5N8P!?1%E.04U)0P!V7V9L;V%T7V%R<F%Y '9?<VAO<G1?<&]I;G1E<@!V
M7W-I9VYE9%]L;VYG7V9U;F, =E]S:6=N961?8VAA<E]P;VEN=&5R '9?;&]N
M9U]A<G)A>0!?:6YI= !V7V-H87( 8VQU;FME<@!V7W5N<VEG;F5D7V-H87)?
M9G5N8P!U7VQI;FL =E]S:6=N961?<VAO<G1?9G5N8P!S<&]R='-C87( =E]U
M;FEO;C( =E]U;G-I9VYE9%]I;G1?9G5N8P!V7W5N:6]N N:6YT97)P "YH
M87-H "YD>6YS>6T +F1Y;G-T<@ N<F5L+G!L= N:6YI= N<&QT "YT97AT
M "YF:6YI "YR;V1A=&$ +F1A=&$ +F=O= N9'EN86UI8P N8G-S "YS>6UT
M86( +G-T<G1A8@ N<VAS=')T86( +F-O;6UE;G0 +F1E8G5G "YL:6YE $ H
M(REL:6)C+6DS.#8Z;&EB8RUI,S@V+V-S=2]C<G0Q+G,),2XQ. !A<SH@*%-#
M1$4I(#4N," @,#0O,3DO.3 0"@C*6QI8F,M:3,X-CIC<W4O8W)T:2YS"3$N
M,@!A<SH@*%-#1$4I(#4N," @,#0O,3DO.3 0"@C*6QI8F,M<&]R=#IG96XO
M=F%L=65S+5AT+F,),2XS $ H(REL:6)C.FEN8R]S>6YO;GEM<RYH"3$N,S,
M0"@C*6AE860Z;6%T:"YH"3(N,3$N,2XR-P!A8V]M<#H@*%-#1$4I(#4N," @
M,#0O,3DO.3 ;W!T:6TZ("A30T1%*2 U+C @(# T+S$Y+SDP &%S.B H4T-$
M12D@-2XP(" P-"\Q.2\Y, !A8V]M<#H@*%-#1$4I(#4N," @,#0O,3DO.3
M87,Z("A30T1%*2 U+C @(# T+S$Y+SDP $ H(REL:6)C+6DS.#8Z9V5N+W-H
M7V1A=&$N8PDQ+C, 86-O;7 Z("A30T1%*2 U+C @(# T+S$Y+SDP &]P=&EM
M.B H4T-$12D@-2XP(" P-"\Q.2\Y, !A<SH@*%-#1$4I(#4N," @,#0O,3DO
M.3 0"@C*6QI8F,M:3,X-CIL:6)C+6DS.#8O8W-U+V-R=&XN<PDQ+C4 87,Z
M("A30T1%*2 U+C @(# T+S$Y+SDP "!L9" Z("A30T1%*2 U+C @(# T+S$Y
M+SDP +@ !$ $@!P%@ . !G9&)M92YC #8! 0 !$!3(,$""$!-88$
M" 8! !T 3 !( 3@$ #@ =%]S=')U8W0 M@ 8 *@ T $@!U
M . !V7V-H87)?;65M8F5R %4 0 C 8 ! '*P T $@"@
M. !V7W-H;W)T7VUE;6)E<@!5 0 (P & 0" !RD - !( R0 #@
M=E]I;G1?;65M8F5R %4 !P C 8 ! 0 '*@ T $@#S . !V7VQO
M;F=?;65M8F5R %4 "@ C 8 ! @ '*P T $@ > 0 . !V7V9L;V%T
M7VUE;6)E<@!5 X (P & 0, !RP - !( 2@$ #@ =E]D;W5B;&5?
M;65M8F5R %4 #P C 8 !! '! !L 3 !( ; ( #@ +C!F86ME
M +8 & "H - !( DP$ #@ =E]C:&%R7VUE;6)E<@!5 $ (P & 0
M !RL - !( O@$ #@ =E]S:&]R=%]M96UB97( 50 $ ", !@ $ @
M <I #0 2 .<! X '9?:6YT7VUE;6)E<@!5 < (P & 0$ !RH
M - !( $0( #@ =E]L;VYG7VUE;6)E<@!5 H (P & 0( !RL -
M !( / ( #@ =E]F;&]A=%]M96UB97( 50 . ", !@ $# <L #0 2
M &@" X '9?9&]U8FQE7VUE;6)E<@!5 \ (P & 00 !P0 <
M%P 2 (L# X '1?=6YI;VX M@ ( *@ T $@"R @ . !V7V-H87)?
M;65M8F5R %4 0 C 8 ! '*P T $@#= @ . !V7W-H;W)T7VUE
M;6)E<@!5 0 (P & 0 !RD - !( !@, #@ =E]I;G1?;65M8F5R
M %4 !P C 8 ! '*@ T $@ P P . !V7VQO;F=?;65M8F5R %4
M"@ C 8 ! '*P T $@!; P . !V7V9L;V%T7VUE;6)E<@!5 X
M(P & 0 !RP - !( AP, #@ =E]D;W5B;&5?;65M8F5R %4 #P C
M 8 ! '! !L 7 !( J00 #@ +C%F86ME +8 " "H -
M !( T , #@ =E]C:&%R7VUE;6)E<@!5 $ (P & 0 !RL - !(
M^P, #@ =E]S:&]R=%]M96UB97( 50 $ ", !@ $ <I #0 2 "0$
M X '9?:6YT7VUE;6)E<@!5 < (P & 0 !RH - !( 3@0 #@
M=E]L;VYG7VUE;6)E<@!5 H (P & 0 !RL - !( >00 #@ =E]F
M;&]A=%]M96UB97( 50 . ", !@ $ <L #0 2 *4$ X '9?9&]U
M8FQE7VUE;6)E<@!5 \ (P & 0 !P0 J !@ 2 -<$ X '9?
M8VAA<E]F=6YC %4 0 1 4R#! @A 5F#! @$ ,0 8 $@ ,!0 . !V
M7W-I9VYE9%]C:&%R7V9U;F, 50 " !$!7(,$""$!:8,$" 0 S !@ 2
M $,% X '9?=6YS:6=N961?8VAA<E]F=6YC %4 P 1 6R#! @A 7F#! @$
M *P 8 $@!R!0 . !V7W-H;W)T7V9U;F, 50 $ !$!?(,$""$!B8,$
M" 0 R !@ 2 *@% X '9?<VEG;F5D7W-H;W)T7V9U;F, 50 % !$!
MC(,$""$!F8,$" 0 T !@ 2 . % X '9?=6YS:6=N961?<VAO<G1?
M9G5N8P!5 8 $0&<@P0((0&I@P0(! "D & !( #08 #@ =E]I;G1?
M9G5N8P!5 < $0&L@P0((0&Y@P0(! # & !( 008 #@ =E]S:6=N
M961?:6YT7V9U;F, 50 ( !$!O(,$""$!R8,$" 0 R !@ 2 '<& X
M '9?=6YS:6=N961?:6YT7V9U;F, 50 ) !$!S(,$""$!V8,$" 0 J
M!@ 2 *4& X '9?;&]N9U]F=6YC %4 "@ 1 =R#! @A >F#! @$ ,0
M 8 $@#:!@ . !V7W-I9VYE9%]L;VYG7V9U;F, 50 + !$![(,$""$!^8,$
M" 0 S !@ 2 !$' X '9?=6YS:6=N961?;&]N9U]F=6YC %4 # 1
M ?R#! @A 0F$! @$ *P 8 $@! !P . !V7V9L;V%T7V9U;F, 50 .
M !$!#(0$""$!'80$" 0 L !@ 2 ' ' X '9?9&]U8FQE7V9U;F,
M50 / !$!((0$""$!,80$" 0 5 %0 2 *X' "# 4 >H' 5
M!0 2 )H' "# 4 >H' 0 !0 2 *H' !5 < ! #P ! !(
MZ@< )4 "C "@ @ " 0 ( "
M"'( +@ !D 3 !( >P@ #@ ;&EN:P"V )@ F #0 2 "D( X
M &YE>'0 @P % 'J!P (P & 0 !RH - !( 4P@ #@ ;&EN:V9U
M;F, @P % %P!P (P & 0$ !R0 - !( =P@ #@ <W1U9F8 <@"N
M!P (P & 0( !P0 5 %0 2 +D( "# 4 >H' 5 !0 2
M *4( "# 4 >H' 0 !0 2 +4( !5 < ! #P ! !( ]0@
M )4 "C "@ @ " 0 ( " "'(
M+@ !P 7 !( B0D #@ ='5?;&EN:P"V ) F #0 2 #<) X
M &YE>'0 @P % 'J!P (P & 0 !RH - !( 80D #@ ;&EN:V9U
M;F, @P % %[" (P & 0 !R0 - !( A0D #@ <W1U9F8 <@"Y
M" (P & 0 !P0 Z ! 2 ,<) X "XR9F%K90"V 0 #S
M !L @ &)L=64 0 &=R965N !R960 ! #X $ !( "0H
M #@ 8V]L;W)S +8 ! /, 'P " <&EN:P ! <'5R<&QE !Y
M96QL;W< ! #( $ !( /PH #@ +C-F86ME +8 ! /, $P !
M9F]R9 8VAE=GD ! #$ $ !( = H #@ 8V%R<P"V 0 #S
M !0 0 '!O<G-C:&4 &)M=P $ ,@ 0 $@"J"@ . N-&9A
M:V4 M@ $ \P 3 $ !44E5% !&04Q310 $ ' !8 $@#&
M"@ . !B;V]L96%N '( = H #$ $ !( ^PH #@ 8G9A;', M@ $
M\P 3 $ !T<G5E !F86QS90 $ '0 !8 $@ 8"P . !B;V]L
M96%N,@!R ,8* !& ! 2 &(+ X &UI<V]R9&5R960 M@ $ \P C
M , !T:')E90 >F5R;P ! ;VYE ( !T=V\ ! ", &
M !( B0L #@ ;6%I;@!5 < $0$TA 0((0$UA@0(! "< ' !( L L
M #@ <W!O<G1S8V%R '( /PH ", !0 #D)@$""4 ' !( U0L #@ 8VQU
M;FME<@!R D* C 4 _R7! @H !P 2 /T+ X &YO;G!R:6UA<GD
M<@#'"0 (P % ,4EP0()0 < $@ B# . !P<FEM87)Y '( B0D ",
M!0 #))<$""0 ' !( 1@P #@ =5]L:6YK '( ]0@ ", !0 # )@$""<
M ' !( ;0P #@ <U]L:6YK (, !0 !Z@< ", !0 #F)<$""8 ' !(
MDPP #@ =E]U;FEO;C( <@"+ P (P % .4F 0()0 < $@"X# . !V
M7W5N:6]N '( ; ( ", !0 #G)@$""< ' !( WPP #@ =E]S=')U8W0R
M '( 3@$ ", !0 #O)<$""< ' !( !@T #@ =E]S=')U8W0Q '( +@
M ", !0 #I)<$""\ ' !( -0T #@ =E]D;W5B;&5?<&]I;G1E<@!C ,
M 0\ (P % .@EP0(+@ < $@!C#0 . !V7V9L;V%T7W!O:6YT97( 8P #
M $. ", !0 #V)<$"#8 ' !( F0T #@ =E]U;G-I9VYE9%]L;VYG7W!O
M:6YT97( 8P # $, ", !0 #&)<$"#0 ' !( S0T #@ =E]S:6=N961?
M;&]N9U]P;VEN=&5R &, P !"P C 4 ]R7! @M !P 2 /H- X '9?
M;&]N9U]P;VEN=&5R &, P !"@ C 4 W"7! @U !P 2 "\. X '9?
M=6YS:6=N961?:6YT7W!O:6YT97( 8P # $) ", !0 #6)<$"#, ' !(
M8@X #@ =E]S:6=N961?:6YT7W!O:6YT97( 8P # $( ", !0 #E)<$""P
M ' !( C@X #@ =E]I;G1?<&]I;G1E<@!C , 0< (P % -,EP0(-P
M < $@#%#@ . !V7W5N<VEG;F5D7W-H;W)T7W!O:6YT97( 8P # $& ",
M!0 # )<$"#4 ' !( ^@X #@ =E]S:6=N961?<VAO<G1?<&]I;G1E<@!C
M , 04 (P % .<EP0(+@ < $@ H#P . !V7W-H;W)T7W!O:6YT97(
M8P # $$ ", !0 #Z)<$"#8 ' !( 7@\ #@ =E]U;G-I9VYE9%]C:&%R
M7W!O:6YT97( 8P # $# ", !0 #B)<$"#0 ' !( D@\ #@ =E]S:6=N
M961?8VAA<E]P;VEN=&5R &, P ! @ C 4 ^R7! @M !P 2 +\/ X
M '9?8VAA<E]P;VEN=&5R &, P ! 0 C 4 X27! @D 0 2 .,/ "5
M HP 0 ( ! "%4 #P L !P 2 \0 X '9?9&]U8FQE
M7V%R<F%Y '( OP\ ", !0 #*)<$""0 ! !( ,Q )4 "C ! @
M $ (50 . "L ' !( 7A #@ =E]F;&]A=%]A<G)A>0!R \0
M C 4 ^"7! @D 0 2 ((0 "5 HP 0 ( ! "%4
M# S !P 2 +40 X '9?=6YS:6=N961?;&]N9U]A<G)A>0!R %X0 C
M 4 V"7! @D 0 2 -D0 "5 HP 0 ( ! "%4 "P Q
M !P 2 H1 X '9?<VEG;F5D7VQO;F=?87)R87D <@"U$ (P % -
MEP0() $ $@ N$0 E0 *, $ " 0 A5 H *@ <
M$@!8$0 . !V7VQO;F=?87)R87D <@ *$0 (P % /PEP0() $ $@!\
M$0 E0 *, $ " 0 A5 D ,@ < $@"N$0 . !V7W5N
M<VEG;F5D7VEN=%]A<G)A>0!R %@1 C 4 U"7! @D 0 2 -(1 "5
M HP 0 ( ! "%4 " P !P 2 (2 X '9?<VEG;F5D
M7VEN=%]A<G)A>0!R *X1 C 4 XR7! @D 0 2 "82 "5 HP 0
M ( ! "%4 !P I !P 2 $\2 X '9?:6YT7V%R<F%Y '(
M A( ", !0 #')<$""0 ! !( <Q( )4 "C ! @ $ (
M50 & #0 ' !( IQ( #@ =E]U;G-I9VYE9%]S:&]R=%]A<G)A>0!R $\2
M C 4 X"7! @D 0 2 ,L2 "5 HP 0 ( ! "%4
M!0 R !P 2 /T2 X '9?<VEG;F5D7W-H;W)T7V%R<F%Y '( IQ( ",
M!0 #2)<$""0 ! !( (1, )4 "C ! @ $ (50 $ "L
M ' !( 3!, #@ =E]S:&]R=%]A<G)A>0!R /T2 C 4 WR7! @D
M 0 2 ' 3 "5 HP 0 ( ! "%4 P S !P 2 *,3 X
M '9?=6YS:6=N961?8VAA<E]A<G)A>0!R $P3 C 4 _B6! @D 0 2
M ,<3 "5 HP 0 ( ! "%4 @ Q !P 2 /@3 X '9?
M<VEG;F5D7V-H87)?87)R87D <@"C$P (P % ,XEP0() $ $@ <%
ME0 *, $ " 0 A5 $ *@ < $@!&% . !V7V-H87)?
M87)R87D <@#X$P (P % /4EP0() < $@!J% . !V7V1O=6)L90!5
M \ (P % ,(EP0((P < $@"-% . !V7V9L;V%T %4 #@ C 4 SR7
M! @K !P 2 +@4 X '9?=6YS:6=N961?;&]N9P!5 P (P % -XEP0(
M*0 < $@#A% . !V7W-I9VYE9%]L;VYG %4 "P C 4 _R6! @B
M!P 2 ,5 X '9?;&]N9P!5 H (P % -HEP0(*@ < $@ M%0 . !V
M7W5N<VEG;F5D7VEN= !5 D (P % /TE@0(* < $@!5%0 . !V7W-I
M9VYE9%]I;G0 50 ( ", !0 #\)8$""$ ' !( =A4 #@ =E]I;G0 50 '
M ", !0 #$)<$""P ' !( HA4 #@ =E]U;G-I9VYE9%]S:&]R= !5 8
M(P % ,$EP0(*@ < $@#,%0 . !V7W-I9VYE9%]S:&]R= !5 4 (P %
M -<EP0((P < $@#O%0 . !V7W-H;W)T %4 ! C 4 VR7! @K
M!P 2 !H6 X '9?=6YS:6=N961?8VAA<@!5 , (P % ,ZEP0(*0 <
M$@!#%@ . !V7W-I9VYE9%]C:&%R %4 @ C 4 W27! @B !P 2 &46
M X '9?8VAA<@!5 $ (P % /XEP0(! < "2 @ 3(,$"'D
M #__P !Z __\0 >P /__( 'T #__S !^ __]
M ?P /__4 ($ #__V "" __]P @P /__@ (4
M #__Y "& __^@ AP /__L (D #__\ "* ___4
M L@ /__Z +4 #__^X "V ___U MP /___ +D
M #__P,! "Z __\, 0 NP /__%0$ +T #__QX! "^ __\H
M 0 OP /__,@$ ,$ #__SP! #" __]& 0 PP /__4 $ ,4
M #__UH! #& __]D 0 R0 /__> $ ,H #__X(! #+ __^,
M 0 S0 /__E@$ ,X #__Z(! #/ __^N 0 T0 /__N@$ -(
M #__\0! #3 ___. 0 U0 /__V $ -8 #__^(! #7 ___L
M 0 V0 /__]@$ -H #__P " #< __\4 @ W0 /__'@( -X
M #__R@" #@ __\R @ X0 /__/ ( .( #__T8" #D __]0
M @ Y0 /__6@( .8 #__V0" #H __]N @ Z0 /__> ( .H
M #__X(" #L __^, @ [0 /__E@( .\ #__Z " #P __^J
M @ \0 /__M ( /( #__[X" #T ___( @ ]@ /__T@( /<
M #__]X" ___I @
M 0 $ " U( $"-0 3
M ! D % @ .B ! CH 1 , !
M 0 / "P ( L@00(+ $ , $ 0 0 0
M%P , " [($$".P! ![ ! !\ )
M @ &B"! AH @ ( , ' ! @ H 0 8
M "(@@0(B ( $ 0 +@ $ & C(($
M"(P" !0 $ ! #, ! !@ -R"! C< @
M60, ! Y 0 8 XA@0(. 8 $
M 0 /P $ " /(8$"#P& @
M $ $< ! P %R6! A<!@ " !
M !- 0 , !DE@0(9 8 !P 0 $
M4@ 8 # @)8$"( & !P ! $ " %L (
M P /"6! CP!@ M $ ! !@ @
M \ 8 ' 0 ' 0 0 : ,
M / - #4! ! ' # #$$@
MD 0 !Z 0 5!, "("
M $ @P $ '@5 !P%@
M $ (H ! #H*P D@( 0
%
end

View File

@ -1,314 +0,0 @@
begin 775 i860-elf
M?T5,1@$" 0 " < ! 32 #0 #-4 T "
M!0 H !4 $0 8 T 0- "@ H 4 P
M -0 !, ! ! - $#0 (
M\ "/ % 0 $ DD I) "8 "7 8 !
M @ "4P "E, ' !P O=7-R+VQI8B]L:6)C
M+G-O+C$ , , !P P + @
M # !0 & ! D * "
M ! 0 $M !,$@ H "N
M !$ __$ / I* 01 + & &20 $0#_\0 !\
M !+L F!( F IO 1 /_Q +0 $R0 $@
M #( !D0 !!$ H _ 3" 2 20 *3 $0#_
M\0 %\ "E, !$ __$ 7V-L96%N=7 7V5N9 !?96YV:7)O;@!?971E
M>'0 871E>&ET %]E9&%T80!E>&ET %]L:6)?=F5R<VEO;@!?7V9P<W1A<G0
M7T=,3T)!3%]/1D93151?5$%"3$5? %]$64Y!34E# "]U<W(O;&EB+VQI8F,N
M<V\N,0 I/ @0 I0 !@0 I1 "@0 I
M2 " 0 * ! @ H * 7_RDY[!\ !?>*35 /@
M%_\I/>P? #D'0 0 #X &O___;OO0 [!\ .P> ! /@ %_\I0>^] #D
M'0 ,[!X &O__^\7_RE%[!\ .0= !A /@ :___Z.^] #L'P [!X $
M^ 7_RE)[[T .0= "3L'@ :___X: #( 4'$ 81"__"@0P '$
M!>P0 #40@ /6@ N80$M"@ ;___X.??*4SL'@ ;___VUO@ +L$
MH) .80&0!O___8H &___\>@ ;___VZ82 (4< 1AE( &()2& ?
MY9$I[!\ &P )J$<0 4;___UZ "@$ H $?@^ "$'P !H\$ * _
M "@ 0 #X * "@ H ,@ P<0!@!A$+_\* 0 "$0P %&,
M 81_ !"GX@ 0 ( * #( ,'$ 8 81"__"@$ A$, !1C &$?P 0
MI^( $ " "@ R #!Q & &$0O_PH! (1# 48P !A'\ $*?B !
M @ H ,@ P<0!@!A$+_\* 0 "$0P %&, 81_ !"GX@ 0 ( *
M #( ,'$ 8 81"__"@$ A$, !1C &$?P 0I^( $ " "@ R
M#!Q & &$0O_PH! (1# 48P !A'\ $*?B ! @ H ,@ P<0!@!
MA$+_\* 0 "$0P %&, 81_ !"GX@ 0 ( * #( ,'$ 8 81"__"@
M$ A$, !1C &$?P 0I^( $ " "@ R #!Q & &$0O_PH! (1#
M 48P !A'\ $*?B ! @ H ,@ P<0!@!A$+_\* 0 "$0P %&,
M 81_ !"GX@ 0 ( * #( ,'$ 8 81"__"@$ A$, !1C &$?P 0
MI^( $ " "@ R #!Q & &$0O_PH! (1# 48P !A'\ $*?B !
M @ H ,@ P<0!@!A$+_\$@( <F$0P %&, 81_ !"GX@ 0 ( *
M #( ,'$ 8 81"__!(" ')A$, !1C &$?P 0I^( $ " "@ R
M#!Q & &$0O_P[!\ (1# "4' !#^4"S _EXD3L'P [!\ )0< *4' #
M#^7B"A_EXCSL'P [!\ )0< 24' %'^7B+!_EX=3L'P [!\ )0< :4
M' ''^7AX1_EX<7L'P [!\ )0< B4' )'^7AP1_EXCGL'P [!\ )0<
M J4' +'^7AS1_EXDGL'P )_ 9(NP? O\"H.[!\ "?P&1CL'P +_ I
MV.P? '_"K,[!\ _EXJCL'P !_PJ1.P? /Y>(([!\ ?\*@KL'P
M#^7AR.P? 7_"H\[!\ !_EXDSL'P %_PJ+.P? ?Y>(8[!\ !?\*=3L
M'P '^7B4.P? 7_"GA[!\ !_EX>WL'P %_PIQ>P? ?Y>)=[!\ !?\
M*<'L'P '^7B(>P? 7_"HY[!\ !_EXL7L'P %_PIS>P? ?Y>(1[!\
M !?\*DGL'P '^7B,>P? G\"H.[!\ "_P*K;L'P )_ IV.P? O\"GX
M[!\ .?\*LSL'P '^7B5>P? #G_"I$[!\ !_EXL'L'P Y_PJ"NP? ?
MY>)9[!\ .?\*CSL'P '^7BO>P? #G_"HL[!\ !_EXFWL'P Y_PIU.P?
M ?Y>'1[!\ .?\*>#L'P '^7B'>P? #G_"G$[!\ !_EXF7L'P Y_PI
MP.P? ?Y>(I[!\ .?\*CCL'P '^7B0>P? #G_"G,[!\ !_EXK'L'P
MY_PJ2.P? ?Y>'I[!\ .?\*@SL'P '^7BK>P? #G_"G8[!\ !_EXG'L
M'P [!\ )0< *4' "'^7A]1_EX>7L'P [!\ )0< &4' !'^7C:1_E
MXM'L'P %_PJ:>P? ?Y>+9[!\ !?\*WCL'P '^7C<.P? 48P !A'\
M$*?B ! @ H $ " "@ H 0&D !"R
M I3 2W $O@ !,4 3, $
M !H # $K - 9 0 !#H !0 $@ & 1,
M H ![ "P ! 5 , "DP @ # 4
M!P !< !)\ $
M 0 __$ 0U # ! $.@ P @
M !$P , , 2 # $ $GP P !0
M !*P , 8 2P # ' $T P
M" !D , D 9$ # * *20
M P "P "DP , P I3 # - *<
M P #@ , \ # 0
M P $0 , !( # 3
M P % < 0 __$ . $ /_Q
M %0 ! #_\0 "$ 0 __$ I $
M /_Q ,P ! #_\0 #H "G !!$ X !) IQ
M 01 . 5@ $_@ @$@ " &( !D !( D !H I
MR (1 . ?@ %B@ +8$@ " (, "G, !!$ X "1
M IT 01 . J@ $X !,$@ +, "N !$ __$
M "X IU (1 . R0 %, @$@ " -\ "G8 "!$
M X #H IX 01 . [@ $T@ $@ " /4 "GD
M!!$ X $ I* 01 + !"0 *>@ $$0 #@ 2$ "GL
M "!$ X $M I] 01 . !-0 %" @$@ " 4@
M "GX $!$ X %7 9) 1 /_Q !7@ *@@ "$0 #@
M 7( "H* 1$ X &" J# 01 . !B@ *A ($0
M#@ 9X !30 F!( &E I* 0A + !K0 %6 @
M$@ " ;D "H8 !!$ X '. 5L " 2 ( !XP *AP
M $$0 #@ ?$ "F\ !$ __$ 'X 4< " 2 ( "!0
M*B ($0 #@ AH "HH !!$ X (Q 4Z " 2 ( "
M/ *BP "$0 #@ DL !78 (!( @ )8 7< 2
M "70 *C ($0 #@ G, "HX !!$ X )Z J/ (1
M . "@@ *D $$0 #@ I$ "I$ 1$ X *? J2
M 01 . "KP *DP $$0 #@ KT "I0 !!$ X +4 9
M$ 01 * "X0 $]@ $@ " ND "I4 !!$ X +X
M J6 01 . #$ *EP ($0 #@ R, !8@ !(
M ,M J9 01 . #0@ *F@ $$0 #@ TD "DP !$
M__$ -? J; 01 . #=@ *G $$0 #@ X< "DD
M!!$ L .9 J> !@1 . #HP *I 8$0 #@ ZT "JH
M A$ X .Z JK 01 . #R@ *K $$0 #@ ^
M !8 (!( @ /N 5$ " 2 ( $ *4P $0#_\0
M! D "JT "!$ X 07 JO 01 . $)P %8@ @$@
M" !#H "K !!$ X 10 JQ @1 . $70 $K
M$@ !@ !&, "K, 1$ X 1J JT 01 . $<@ %$@
M @$@ " !(< "K8 D!$ X 2. K: 01 . $F
M%)@ @$@ " !*P "MP "!$ X 2U K> @1 . $
MO0 %3@ @$@ " !G9&)M90!C<G0Q+G, 8W)T:2YS '9A;'5E<RU8="YC
M &=D8FUE+F, <VA?9&%T82YC &-R=&XN<P!V7W5N<VEG;F5D7VEN= !V7W-I
M9VYE9%]I;G0 =E]C:&%R7V9U;F, 7V9I;FD =E]U;G-I9VYE9%]C:&%R7V%R
M<F%Y &UA:6X =E]S:6=N961?;&]N9P!V7W5N<VEG;F5D7W-H;W)T7W!O:6YT
M97( 7V-L96%N=7 7V5N9 !V7W5N<VEG;F5D7W-H;W)T '9?=6YS:6=N961?
M<VAO<G1?9G5N8P!V7V1O=6)L90!V7VEN= !?<W1A<G0 ;F]N<')I;6%R>0!?
M96YV:7)O;@!V7W5N<VEG;F5D7VQO;F=?<&]I;G1E<@!V7VEN=%]A<G)A>0!P
M<FEM87)Y '9?<VEG;F5D7V-H87)?9G5N8P!V7V1O=6)L95]A<G)A>0!?971E
M>'0 =E]S:6=N961?8VAA<E]A<G)A>0!V7W5N<VEG;F5D7V-H87( =E]F;&]A
M= !V7W-I9VYE9%]L;VYG7V%R<F%Y &%T97AI= !E;G9I<F]N '9?;&]N9U]F
M=6YC '9?<VEG;F5D7W-H;W)T7V%R<F%Y '9?=6YS:6=N961?;&]N9U]F=6YC
M '9?:6YT7W!O:6YT97( 7V5D871A '9?<VAO<G1?9G5N8P!V7W5N<VEG;F5D
M7VEN=%]A<G)A>0!V7W5N<VEG;F5D7VEN=%]P;VEN=&5R '9?:6YT7V9U;F,
M=E]S:6=N961?<VAO<G0 =E]F;&]A=%]F=6YC &5X:70 =E]U;G-I9VYE9%]L
M;VYG7V%R<F%Y '9?;&]N9P!V7W-H;W)T '9?;&]N9U]P;VEN=&5R '9?<VEG
M;F5D7V-H87( =E]U;G-I9VYE9%]L;VYG '9?<VAO<G1?87)R87D =E]U;G-I
M9VYE9%]S:&]R=%]A<G)A>0!?;&EB7W9E<G-I;VX 7VUC;W5N= !V7V-H87)?
M<&]I;G1E<@!V7W5N<VEG;F5D7V-H87)?<&]I;G1E<@!V7W-I9VYE9%]I;G1?
M87)R87D 7U]F<'-T87)T '9?<VEG;F5D7VEN=%]P;VEN=&5R '-?;&EN:P!?
M1TQ/0D%,7T]&1E-%5%]404),15\ =E]S:6=N961?<VAO<G1?<&]I;G1E<@!V
M7V1O=6)L95]P;VEN=&5R %]?;&]N9V1O=6)L95]U<V5D '9?<W1R=6-T,0!V
M7W-T<G5C=#( =E]C:&%R7V%R<F%Y '9?9FQO871?<&]I;G1E<@!V7W-I9VYE
M9%]L;VYG7W!O:6YT97( =E]D;W5B;&5?9G5N8P!V7W-I9VYE9%]I;G1?9G5N
M8P!?1%E.04U)0P!V7V9L;V%T7V%R<F%Y '9?<VAO<G1?<&]I;G1E<@!V7W-I
M9VYE9%]L;VYG7V9U;F, =E]S:6=N961?8VAA<E]P;VEN=&5R '9?;&]N9U]A
M<G)A>0!?:6YI= !V7V-H87( 8VQU;FME<@!V7W5N<VEG;F5D7V-H87)?9G5N
M8P!U7VQI;FL <W!O<G1S8V%R '9?<VEG;F5D7W-H;W)T7V9U;F, =E]U;FEO
M;C( =E]U;FEO;@!V7W5N<VEG;F5D7VEN=%]F=6YC N:6YT97)P "YH87-H
M "YD>6YS>6T +F1Y;G-T<@ N<F5L82YP;'0 +FEN:70 +G!L= N=&5X= N
M9FEN:0 N<F]D871A "YD871A "YG;W0 +F1Y;F%M:6, +F)S<P N<WEM=&%B
M "YS=')T86( +G-H<W1R=&%B "YC;VUM96YT "YD96)U9P N;&EN90 D2&5A
M9&5R.B O<"]20U,O=71I;#(M,BXQ+W5S<B]S<F,O;&EB+VQI8F,O:3@V,"]C
M<W4O8W)T,2YS+'8@,BXQ(#DR+S U+S$T(# W.C$V.C(P(&1A=FED;V9F($5X
M<" D $ H(RE&5%@@,BXQ+C N,2!S8V1E.B]U<W(O8V-S+VQI8B]C<G0Q+F\
M)$AE861E<CH@+W O4D-3+W5T:6PR+3(N,2]U<W(O<W)C+VQI8B]L:6)C+VDX
M-C O8W-U+V-R=&DN<RQV(#(N,2 Y,B\P-2\Q-" P-SHQ-CHR,2!D879I9&]F
M9B!%>' @) ! *",I1E18(#(N,2XP+C$@<V-D93HO=7-R+V-C<R]L:6(O8W)T
M:2YO "1(96%D97(Z("]P+U)#4R]U=&EL,BTR+C$O=7-R+W-R8R]L:6(O;&EB
M8R]P;W)T+V=E;B]V86QU97,M6'0N8RQV(#(N,2 Y,B\P-2\Q-" P-SHR-SHP
M,B!D879I9&]F9B!%>' @) D2&5A9&5R.B O<"]20U,O=71I;#(M,BXQ+W5S
M<B]S<F,O;&EB+VQI8F,O:6YC+W-Y;F]N>6US+F@L=B R+C$@.3(O,#4O,30@
M,#<Z,C(Z,3D@9&%V:61O9F8@17AP("0 )$AE861E<CH@+W O4D-3+W5T:6PR
M+3(N,2]U<W(O<W)C+VAE860O;6%T:"YH+'8@,BXQ(#DR+S U+S$T(# W.C$R
M.C4W(&1A=FED;V9F($5X<" D &%C;VUP.B H4T-$12D@-2XP(#$R+S X+S@Y
M &%S.B H4T-$12D@-2XP(#$R+S X+S@Y $ H(RE&5%@@,BXQ+C N,2!S8V1E
M.B]U<W(O8V-S+VQI8B]V86QU97,M6'0N;P!A8V]M<#H@*%-#1$4I(#4N," Q
M,B\P."\X.0!A<SH@*%-#1$4I(#4N," Q,B\P."\X.0 D2&5A9&5R.B O<"]2
M0U,O=71I;#(M,BXQ+W5S<B]S<F,O;&EB+VQI8F,O:3@V,"]G96XO<VA?9&%T
M82YC+'8@,BXQ(#DR+S U+S$T(# W.C$W.C4T(&1A=FED;V9F($5X<" D &%C
M;VUP.B H4T-$12D@-2XP(#$R+S X+S@Y &%S.B H4T-$12D@-2XP(#$R+S X
M+S@Y $ H(RE&5%@@,BXQ+C N,2!S8V1E.B]U<W(O8V-S+VQI8B]L:6)C+G-O
M "1(96%D97(Z("]P+U)#4R]U=&EL,BTR+C$O=7-R+W-R8R]L:6(O;&EB8R]I
M.#8P+V-S=2]C<G1N+G,L=B R+C$@.3(O,#4O,30@,#<Z,38Z,C(@9&%V:61O
M9F8@17AP("0 0"@C*4946" R+C$N,"XQ('-C9&4Z+W5S<B]C8W,O;&EB+V-R
M=&XN;P @;&0@.B H4T-$12D@-2XP(#$R+S X+S@Y "X $0 2 6< X
M9V1B;64N8P !-@ $!$0 $_ !(0 &0 !!@ = !, $@ 4X
M.'1?<W1R=6-T "V & "H #0 2 =0 X=E]C:&%R7VUE;6)E<@
M50 ! ", !@0 !P "L #0 2 H X=E]S:&]R=%]M96UB97( %4
M! C 8$ @< I T $@ ,D .'9?:6YT7VUE;6)E<@ 50 ' ",
M!@0 $!P "H #0 2 \P X=E]L;VYG7VUE;6)E<@ 50 * ", !@0
M (!P "L #0 2 !'@ X=E]F;&]A=%]M96UB97( %4 #@ C 8$
M# < L T $@ 4H .'9?9&]U8FQE7VUE;6)E<@ 50 / ", !@0 0
M!P 0 ; !, $@ FP ."XP9F%K90 M@ !@ J T $@ 9,
M.'9?8VAA<E]M96UB97( %4 0 C 8$ < K T $@ ;X .'9?
M<VAO<G1?;65M8F5R !5 0 (P &! (' *0 - !( 'G #AV7VEN
M=%]M96UB97( %4 !P C 8$ ! < J T $@ A$ .'9?;&]N9U]M
M96UB97( %4 "@ C 8$ " < K T $@ CP .'9?9FQO871?;65M
M8F5R !5 X (P &! P' + - !( )H #AV7V1O=6)L95]M96UB
M97( %4 #P C 8$ $ < $ ' 7 !( .+ #AT7W5N:6]N "V
M " "H #0 2 "L@ X=E]C:&%R7VUE;6)E<@ 50 ! ", !@0
M!P "L #0 2 "W0 X=E]S:&]R=%]M96UB97( %4 ! C 8$ <
M I T $@ P8 .'9?:6YT7VUE;6)E<@ 50 ' ", !@0 !P "H
M#0 2 #, X=E]L;VYG7VUE;6)E<@ 50 * ", !@0 !P "L #0 2
M #6P X=E]F;&]A=%]M96UB97( %4 #@ C 8$ < L T $@
M X< .'9?9&]U8FQE7VUE;6)E<@ 50 / ", !@0 !P 0 ; !<
M$@ !*D ."XQ9F%K90 M@ @ J T $@ ] .'9?8VAA<E]M96UB
M97( %4 0 C 8$ < K T $@ _L .'9?<VAO<G1?;65M8F5R
M !5 0 (P &! ' *0 - !( 0D #AV7VEN=%]M96UB97( %4
M!P C 8$ < J T $@ !$X .'9?;&]N9U]M96UB97( %4 "@ C
M 8$ < K T $@ !'D .'9?9FQO871?;65M8F5R !5 X (P &
M! ' + - !( 2E #AV7V1O=6)L95]M96UB97( %4 #P C 8$
M < $ *@ & !( 37 #AV7V-H87)?9G5N8P 50 ! 1$ !/X
M 2$ !08 ! #$ !@ 2 %# X=E]S:6=N961?8VAA<E]F=6YC !5
M (!$0 %" !(0 %$ $ ,P & !( 5# #AV7W5N<VEG;F5D7V-H
M87)?9G5N8P 50 # 1$ !1( 2$ !1H ! "L !@ 2 %<@ X=E]S
M:&]R=%]F=6YC !5 0!$0 %' !(0 %) $ ,@ & !( 6H #AV
M7W-I9VYE9%]S:&]R=%]F=6YC !5 4!$0 %)@!(0 %+@ $ - &
M !( 7@ #AV7W5N<VEG;F5D7W-H;W)T7V9U;F, %4 !@$1 4P $A 4
MX 0 I 8 $@ !@T .'9?:6YT7V9U;F, %4 !P$1 4Z $A 5
M" 0 P 8 $@ !D$ .'9?<VEG;F5D7VEN=%]F=6YC !5 @!$0
M%1 !(0 %3 $ ,@ & !( 9W #AV7W5N<VEG;F5D7VEN=%]F=6YC
M !5 D!$0 %3@!(0 %5@ $ *@ & !( :E #AV7VQO;F=?9G5N
M8P 50 * 1$ !5@ 2$ !6 ! #$ !@ 2 &V@ X=E]S:6=N961?
M;&]N9U]F=6YC !5 L!$0 %8@!(0 %:@ $ ,P & !( <1 #AV
M7W5N<VEG;F5D7VQO;F=?9G5N8P 50 , 1$ !6P 2$ !70 ! "L
M!@ 2 '0 X=E]F;&]A=%]F=6YC !5 X!$0 %=@!(0 %?@ $
M+ & !( =P #AV7V1O=6)L95]F=6YC !5 \!$0 %@ !(0 %B $
M %0 5 !( >N (, !0$ ?J %0 % !( >: (, !0$ ?J
M$ % !( >J %4 !P 0 \ $ $@ !^H E0 *, * "
M ( $ @ @@ <@ "X 9 !, $@ "'L
M.&QI;FL +8 "8 )@ - !( @I #AN97AT "# 4! 'Z@ C 8$
M < J T $@ "%, .&QI;FMF=6YC "# 4! '< C 8$
M! < D T $@ "'< .'-T=69F !R 'K@ C 8$ " < $
M%0 5 !( BY (, !0$ ?J %0 % !( BE (, !0$ ?J $ %
M !( BU %4 !P 0 \ $ $@ "/4 E0 *, * "
M ( $ @ @@ <@ "X < !< $@ "8D .'1U
M7VQI;FL +8 "0 )@ - !( DW #AN97AT "# 4! 'Z@ C 8$
M < J T $@ "6$ .&QI;FMF=6YC "# 4! (>P C 8$
M < D T $@ "84 .'-T=69F !R (N0 C 8$ < $
M.@ $ !( G' #@N,F9A:V4 +8 $ /, &P )B;'5E %G<F5E
M;@ <F5D 0 ^ 0 $@ "@D .&-O;&]R<P M@ 0 \P ?
M G!I;FL 7!U<G!L90 >65L;&]W 0 R 0 $@
M"C\ ."XS9F%K90 M@ 0 \P 3 69O<F0 &-H979Y 0
M Q 0 $@ "G0 .&-A<G, +8 $ /, % %P;W)S8VAE !B
M;7< ! #( ! 2 *J@ X+C1F86ME "V ! #S !, !5%)5
M10 1D%,4T4 ! !P %@ 2 *Q@ X8F]O;&5A;@ <@ "G0
M Q 0 $@ "OL .&)V86QS "V ! #S !, !=')U90 9F%L
M<V4 ! !T %@ 2 +& X8F]O;&5A;C( '( K& 1@ $ !(
M MB #AM:7-O<F1E<F5D "V ! #S ", #=&AR964 'IE<F\
M 6]N90 "='=O 0 C 8 $@ "XD .&UA:6X %4 !P$1
M 6* $A 9 0 G < $@ "[ .'-P;W)T<V-A<@ <@ "C\
M(P % P *V@ E < $@ "]4 .&-L=6YK97( '( H) ", !0, "K0
M * ' !( O] #AN;VYP<FEM87)Y !R )QP C 4# IY "4
M!P 2 ,(@ X<')I;6%R>0 <@ "8D (P % P *?0 D < $@ #$8
M.'5?;&EN:P <@ "/4 (P % P *M@ G < $@ #&T .'-?;&EN:P
M@P % 0 !^H (P % P *F@ F < $@ #), .'9?=6YI;VXR !R #
MBP C 4# K< "4 !P 2 ,N X=E]U;FEO;@ <@ FP (P % P
M*W@ G < $@ #-\ .'9?<W1R=6-T,@ <@ 4X (P % P *I G
M < $@ #08 .'9?<W1R=6-T,0 <@ "X (P % P *G@ O < $@
M#34 .'9?9&]U8FQE7W!O:6YT97( &, P$ #P C 4# J< "X !P 2
M -8P X=E]F;&]A=%]P;VEN=&5R !C ,! X (P % P *JP V <
M$@ #9D .'9?=6YS:6=N961?;&]N9U]P;VEN=&5R !C ,! P (P % P
M*>@ T < $@ #<T .'9?<VEG;F5D7VQO;F=?<&]I;G1E<@ 8P # 0 +
M ", !0, "JP +0 ' !( WZ #AV7VQO;F=?<&]I;G1E<@ 8P # 0 *
M ", !0, "I -0 ' !( XO #AV7W5N<VEG;F5D7VEN=%]P;VEN=&5R
M !C ,! D (P % P *B@ S < $@ #F( .'9?<VEG;F5D7VEN=%]P
M;VEN=&5R !C ,! @ (P % P *F0 L < $@ #HX .'9?:6YT7W!O
M:6YT97( &, P$ !P C 4# J' #< !P 2 .Q0 X=E]U;G-I9VYE
M9%]S:&]R=%]P;VEN=&5R !C ,! 8 (P % P *= U < $@ #OH
M.'9?<VEG;F5D7W-H;W)T7W!O:6YT97( &, P$ !0 C 4# J; "X
M!P 2 /* X=E]S:&]R=%]P;VEN=&5R !C ,! 0 (P % P *KP V
M < $@ #UX .'9?=6YS:6=N961?8VAA<E]P;VEN=&5R !C ,! , (P %
M P *E@ T < $@ #Y( .'9?<VEG;F5D7V-H87)?<&]I;G1E<@ 8P #
M 0 " ", !0, "K +0 ' !( ^_ #AV7V-H87)?<&]I;G1E<@ 8P #
M 0 ! ", !0, "I4 ) ! !( _C )4 "C ! @ 0@
M50 / + ' !( ! / #AV7V1O=6)L95]A<G)A>0 <@ #[\ (P % P
M*?@ D $ $@ $#, E0 *, $ " !" !5 X K <
M$@ $%X .'9?9FQO871?87)R87D '( ! / ", !0, "JT ) ! !(
M !"" )4 "C ! @ 0@ 50 , ,P ' !( !"U #AV7W5N
M<VEG;F5D7VQO;F=?87)R87D '( !!> ", !0, "HP ) ! !( !#9
M )4 "C ! @ 0@ 50 + ,0 ' !( !$* #AV7W-I9VYE
M9%]L;VYG7V%R<F%Y !R 0M0 C 4# J$ "0 0 2 1+@"5
MHP 0 ( $( %4 "@ "H !P 2 16 X=E]L;VYG7V%R<F%Y
M !R 1"@ C 4# JQ "0 0 2 1? "5 HP 0 (
M $( %4 "0 #( !P 2 1K@ X=E]U;G-I9VYE9%]I;G1?87)R87D '(
M !%8 ", !0, "H@ ) ! !( !'2 )4 "C ! @ 0@
M50 ( , ' !( !(" #AV7W-I9VYE9%]I;G1?87)R87D '( !&N ",
M!0, "I< ) ! !( !(F )4 "C ! @ 0@ 50 '
M*0 ' !( !)/ #AV7VEN=%]A<G)A>0 <@ $@( (P % P *>P D $
M$@ $G, E0 *, $ " !" !5 8 T < $@ $J< .'9?
M=6YS:6=N961?<VAO<G1?87)R87D '( !)/ ", !0, "I0 ) ! !(
M !++ )4 "C ! @ 0@ 50 % ,@ ' !( !+] #AV7W-I
M9VYE9%]S:&]R=%]A<G)A>0 <@ $J< (P % P *A@ D $ $@ $R$
ME0 *, $ " !" !5 0 K < $@ $TP .'9?<VAO<G1?
M87)R87D '( !+] ", !0, "I, ) ! !( !-P )4 "C ! @
M 0@ 50 # ,P ' !( !.C #AV7W5N<VEG;F5D7V-H87)?87)R
M87D '( !-, ", !0, "G( ) ! !( !/' )4 "C ! @
M 0@ 50 " ,0 ' !( !/X #AV7W-I9VYE9%]C:&%R7V%R<F%Y !R
M 3HP C 4# J" "0 0 2 4' "5 HP 0 ( $(
M %4 0 "H !P 2 41@ X=E]C:&%R7V%R<F%Y !R 3^ C 4# J
MJ "0 !P 2 4:@ X=E]D;W5B;&4 %4 #P C 4# IV ", !P 2
M 4C0 X=E]F;&]A= 50 . ", !0, "H, *P ' !( !2X #AV7W5N
M<VEG;F5D7VQO;F< %4 # C 4# J2 "D !P 2 4X0 X=E]S:6=N
M961?;&]N9P 50 + ", !0, "G, (@ ' !( !4# #AV7VQO;F< %4
M"@ C 4# J. "H !P 2 5+0 X=E]U;G-I9VYE9%]I;G0 %4 "0 C
M 4# IP "@ !P 2 550 X=E]S:6=N961?:6YT !5 @ (P % P
M*<0 A < $@ %78 .'9?:6YT !5 < (P % P *> L < $@
M%:( .'9?=6YS:6=N961?<VAO<G0 %4 !@ C 4# IU "H !P 2 5
MS X=E]S:6=N961?<VAO<G0 %4 !0 C 4# J+ ", !P 2 5[P X
M=E]S:&]R= 50 $ ", !0, "H\ *P ' !( !8: #AV7W5N<VEG;F5D
M7V-H87( %4 P C 4# J"@ "D !P 2 60P X=E]S:6=N961?8VAA
M<@ 50 " ", !0, "I$ (@ ' !( !9E #AV7V-H87( %4 0 C 4#
M JS 0 ' "D@ $_ !Y__\ ( >O__ ,
M 'O__P %@ !]__\ " ?O__ J '___P - "!__\
M #X @O__ !( (/__P 4@ "%__\ %P AO__ !F
M (?__P < ")__\ 'H BO__ "$ ++__P C@ "U__\
M )$ MO__ "3 +?__P E@ "Y__\ )D NO__ "<
M +O__P GP "]__\ *( OO__ "E +___P J #!__\
M *L PO__ "N ,/__P L0 #%__\ +0 QO__ "X
M ,G__P O #*__\ , R___ #$ ,W__P R #.__\
M ,P S___ #0 -'__P U #2__\ -@ T___ #<
M -7__P X #6__\ .0 U___ #H -G__P [ #:__\
M / W/__ #T -W__P ^ #>__\ /P X/__ $
M .'__P !! #B__\ 0@ Y/__ $, .7__P !$ #F__\
M 10 Z/__ $8 .G__P !' #J__\ 2 [/__ $D
M .W__P !* #O__\ 2P \/__ $O /'__P !,@ #R__\
M 34 ]/__ $X /;__P !/ #W__\ 3P /__ %$
M $
M ! @ $-0 #4 $P 0 ) !0
M ( !#H Z $@ # 0 $ #P L " 1
M, 3 #0 ! ( $ $ !< # @ $@ (
M >P 0 ? ! ( !)\ "? #
M # !P 0 , *0 P & 2L K 0
M 0 " "\ , !@ $L + @
M$ @ T # 8 !- #0 !< ! (
M .@ P & 9 "0 0 0 " $
M ! @ &1 D0 % " !( 0
M , "DD )) @ 0 3@ $ # I
M, "3 < 0 ! %, & P *4P E,
M < 0 ! @ !< " , "G )P <
M @ 80 ( "< < $
M !P $ $ &D # !# $T0
M 0 !Q P 5D0 )$ $
M >P $ %B( 0N ! (0
M ! !I0 6< ! "+ 0
> PP I( $
end

View File

@ -1,459 +0,0 @@
begin 777 m68k-aout
M !"P $ ! #$@
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M $Y6__!(USB 2^X !$GM 0F3$J<9ORYTV4"68PCS $ 0O.0 $ 0O"R\5
M8?\ %"WOP #"\ 8?\ -.6(],[CB __!.7DYU3E8 $Y>3G4 $@.
M $C7 !P & ).7DYU2 X 2-< ' 8 DY>3G5(#@ !(UP
M< !@ "3EY.=4@. $C7 !P & ).7DYU2 X 2-< ' 8
M DY>3G5(#@ !(UP < !@ "3EY.=4@. $C7 !"@& ).7DYU
M2 X 2-< $* 8 DY>3G5(#@ !(UP 0H!@ "3EY.=4@.
M $C7 !"@& ).7DYU2 X 2-< $* 8 DY>3G5(#@ !(UP
M0H!@ "3EY.=4@. $C7 #R %P/8 DY>3G5(#@ !(UP \@!<
M#V ).7DYU2 X 2-< $(Y 0-!/\ $ ! V$_P @ $#@S_ #
M 0.C/\ 0 ! \,_P !0 $#YP!B/ 00' '(\ !!$< @CP $$AP
M"2/ 03' *(\ !!0< LCP $%0C_$+( !!8(_Q :0 07"/\
M $& 3^0 $#0 !!D$_D ! V 09A/Y 0. $&@S^0 $#H
M !!L,_D ! \ 0<#/Y 0/@ $'0C^0 $$ !!\(_D !!$ 0A"/Y
M 02 $(PC^0 $$P !"4(_D !!0 0G"/Y 05 $*0C^0 $%@
M !"L(_D !!< 0M"/Y 08 $+@C_ $#0 !#$(_P ! V 0R"/\
M 0. $,PC_ $#H !#0(_P ! \ 0U"/\ 0/@ $-@C_ $$
M !#<(_P !!$ 0X"/\ 02 $.0C_ $$P !#H(_P !!0 0["/\
M 05 $/ C_ $%@ !#T(_P !!< 0^' "(\ !'4< (CP $=AP
M 2/ 1X' !(\ !'<(_D !$\ 11#/Y 1+ $31.7DYU0"@C*61B
M>'AX+G,)-2XR("A"97)K96QE>2D@-R\Q,B\X-0 2'D !'H('D !'D3I!8
MCTYR"HQ.5@ 8?\ 6+RX "&'_ %%B/3EY.=0 3E8 $Y>3G5.5@
M< %.0"/ 3Y'#_3EY.=0
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M ! , $YU ! *",I8W)T,"YC"30N-B H0F5R:V5L97DI(#,O,S O
M.#, !
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M ! 0 &0 "P0 )( !4 $V0 !4 &X
M /8 3X <H
MC( IX Q8 WX
M ^( !"8 !'( !*(
M !,B $ !/" $ !32 $ !8"
M ( !:R ( !?2 ( !D2 0 !
MFB 0 !JB 0 !O" 0 !QB 0
M !UR 0 !ZB 0 !]2 @ " B $
M "'2 $ "-2 $ "62 ( "=2
M ( "CB ( "LR 0 "S2 0 "
MY" 0 #!R 0 #&" 0 #," 0
M #2B 0 #9B @ #A" $ #FB $
M #M" $ #TR ( #ZB ( $!2
M ( $)2 0 $.B 0 $4R 0 $
M<2 0 $A" 0 $GB 0 $NB 0
M $T2 @ $ZH !C___L% %@R !@ %D2 !@
M &*X C___L% &O" @ &R" @ '6B0
M $ !4 $0 'D !> ':20 $ !H $0 'H !R '
M?R0 $ !\ $0 'L "& 'ER0 ( "0 $0 'T ":
M 'IR0 ( "D $0 'X "N 'OB0 ( "X $0 '\
M #" 'UR0 0 #, $0 ($ #6 'Y20 0 #@ $0
M (( #J '^B0 0 #T $0 (, #^ ($20 0 $(
M $0 (4 $2 (("0 0 $< $0 (8 $F (-B0 0 $P
M $0 (< $Z (3B0 0 %$ $0 (D %. (7B0 @
M %: $0 (H %D (<( )C___L% (W" )@ (YX
M )#___L% ))R ) ),B 0 )5H 3___L% )
M?2 0 )C" 0 )JH 3___L% )QB 0
M )U( 3___L% )\H 3___L% *#H 3___L% *&X 3_
M__L% *2"0 0 %P $0 +( %Z $0 +, %Z $0
M +0 %Z $0 +4 %Z $0 +8 & $0 +< &(
M $0 +@ &0 $0 +D &0 $0 +H &8 $0 +L &@
M $0 +P &H $0 +T &H $0 +X &P $0 +\
M &X $0 , ' $0 ,$ ' $0 ,( '( $0
M ,, '0 $0 ,0 '8 $0 ,4 '8 $0 ,8 'B
M $0 ,< 'V $0 ,@ 'V $0 ,D 'V $0 ,H (
M $0 ,L (* $0 ,P (4 $0 ,T (4 $0 ,X
M (> $0 ,\ (H $0 - (R $0 -$ (R $0
M -( (\ $0 -, )& $0 -0 )0 $0 -4 )0
M $0 -8 ): $0 -< )D $0 -@ )N $0 -D )N
M $0 -H )X $0 -L *, $0 -P *, $0 -T
M *6 $0 -X *@ $0 -\ *J $0 . *J $0
M .$ *T $0 .( *^ $0 ., +( $0 .0 +(
M $0 .4 +2 $0 .8 +< $0 .< +F $0 .@ +F
M $0 .D +P $0 .H +Z $0 .L ,$ $0 .P
M ,$ $0 .T ,. $0 .X ,8 $0 .\ ,8 $0
M / ,@ $0 /$ ,H $0 /( ,P $0 /, ,X
M $0 /0 ,X $0 /4 -" $0 /8 -" $0 /< -,
M *4 0 /< -0 *5 0 -0 *7 0 .( *8P0 !N(
M .D *:P0 Y8 .L *<P0 !N( .T *? < !7( ! $ *A04
M!0X *BP4 WX %P *D04 Z .( *EP4 !BX !* *
MHP< )( ! ( *J@D !T8 ! T *L@D !^X ! V *P0D !&8 ! X
M *T@D !YH ! Z *VPD $P ! \ *ZPD =H ! ^ *_0D !_
M !! +! D "$0 !!$ +$@D !H !!( +(@D ![D !!, +*@D
M"&$ !!0 +.0D !-D !!4 +2@D !L@ !!8 +4PD !6L !!< +
M70D !W, !!D +:PD !ET !!F +@ D !&D !!H +EPD ID !!L
M +I@D &T !!P +O D !2, !!T +U D !MT !!\ +X0D @,
M !"$ +]0D 0D !", ,"PD ;L !"4 ,&0D *4 !"< ,+@D
M!T\ !"D ,10D <T !"L ,5 D +D !"T ,9 D "%( !#$ ,
M= D _H !#( ,BPD !,@ !#, ,I D !B8 !#0 ,M0D !A0 !#4
M ,S0D !ZP !#8 ,YPD !?H !#< ,]@D \X !#@ -# D "(0
M !#D -) D JX !#H -- D !O0 !#L -2PD !\( !#P -9 D
M O8 !#T -=0D !T0 !#X -APD !RL !#\ -D@D !RP !$4 -
MG0D !\8 !$L -I@D !R !$T -L 4 ZL !4 -O04 !V\ !H
M -T04 !G4 !\ -YP4 !8T "0 -]04 !'< "D ."@4 H,
M "X .(04 !Z\ #, .+04 /, #@ .0 4 !,4 #T .504
M ,\ $( .8@4 !), $< .=@4 YD $P .C 4 !2< %$ .
MF@4 !)T %: .J0D !T4 !$\ .L0D !X4 !%$ .N0D !\\ !'4
M .P@D G< !'8 .S@D !)X !'< .UPD O@ !'@ .X@D 2<
M !'D .ZP4 :D -T .] 4 ;0 .$ ._0< !,8 ! P /!P4
M Y8 .D /$04 !N( .L /& 4 "!P .T /'PD !Y< !/D /
M)F-R=# N;P!G9&)M92YO &=D8FUE+F, :6YT.G0Q/7(Q.RTR,30W-#@S-C0X
M.S(Q-#<T.#,V-#<[ &-H87(Z=#(]<C([,#LQ,C<[ &QO;F<Z=#,]<C$[+3(Q
M-#<T.#,V-#@[,C$T-S0X,S8T-SL <VAO<G0Z=#0]<C$[+3,R-S8X.S,R-S8W
M.P!U;G-I9VYE9"!C:&%R.G0U/7(Q.S [,C4U.P!U;G-I9VYE9"!S:&]R=#IT
M-CUR,3LP.S8U-3,U.P!U;G-I9VYE9"!L;VYG.G0W/7(Q.S [+3$[ '5N<VEG
M;F5D(&EN=#IT.#UR,3LP.RTQ.P!F;&]A=#IT.3UR,3LT.S [ &1O=6)L93IT
M,3 ]<C$[.#LP.P!V;VED.G0Q,3TQ,0 _/S\Z=#$R/3$ =E]C:&%R.D<R '9?
M<VEG;F5D7V-H87(Z1S( =E]U;G-I9VYE9%]C:&%R.D<U '9?<VAO<G0Z1S0
M=E]S:6=N961?<VAO<G0Z1S0 =E]U;G-I9VYE9%]S:&]R=#I'-@!V7VEN=#I'
M,0!V7W-I9VYE9%]I;G0Z1S$ =E]U;G-I9VYE9%]I;G0Z1S@ =E]L;VYG.D<Q
M '9?<VEG;F5D7VQO;F<Z1S$ =E]U;G-I9VYE9%]L;VYG.D<X '9?9FQO870Z
M1SD =E]D;W5B;&4Z1S$P '9?8VAA<E]A<G)A>3I',3,]87(Q.S [,3LR '9?
M<VEG;F5D7V-H87)?87)R87DZ1S$S '9?=6YS:6=N961?8VAA<E]A<G)A>3I'
M,30]87(Q.S [,3LU '9?<VAO<G1?87)R87DZ1S$U/6%R,3LP.S$[- !V7W-I
M9VYE9%]S:&]R=%]A<G)A>3I',34 =E]U;G-I9VYE9%]S:&]R=%]A<G)A>3I'
M,38]87(Q.S [,3LV '9?:6YT7V%R<F%Y.D<Q-SUA<C$[,#LQ.S$ =E]S:6=N
M961?:6YT7V%R<F%Y.D<Q-P!V7W5N<VEG;F5D7VEN=%]A<G)A>3I',3@]87(Q
M.S [,3LX '9?;&]N9U]A<G)A>3I',3< =E]S:6=N961?;&]N9U]A<G)A>3I'
M,3< =E]U;G-I9VYE9%]L;VYG7V%R<F%Y.D<Q. !V7V9L;V%T7V%R<F%Y.D<Q
M.3UA<C$[,#LQ.SD =E]D;W5B;&5?87)R87DZ1S(P/6%R,3LP.S$[,3 =E]C
M:&%R7W!O:6YT97(Z1S(Q/2HR '9?<VEG;F5D7V-H87)?<&]I;G1E<CI',C$
M=E]U;G-I9VYE9%]C:&%R7W!O:6YT97(Z1S(R/2HU '9?<VAO<G1?<&]I;G1E
M<CI',C,]*C0 =E]S:6=N961?<VAO<G1?<&]I;G1E<CI',C, =E]U;G-I9VYE
M9%]S:&]R=%]P;VEN=&5R.D<R-#TJ-@!V7VEN=%]P;VEN=&5R.D<R-3TJ,0!V
M7W-I9VYE9%]I;G1?<&]I;G1E<CI',C4 =E]U;G-I9VYE9%]I;G1?<&]I;G1E
M<CI',C8]*C@ =E]L;VYG7W!O:6YT97(Z1S(U '9?<VEG;F5D7VQO;F=?<&]I
M;G1E<CI',C4 =E]U;G-I9VYE9%]L;VYG7W!O:6YT97(Z1S(V '9?9FQO871?
M<&]I;G1E<CI',C<]*CD =E]D;W5B;&5?<&]I;G1E<CI',C@]*C$P '1?<W1R
M=6-T.E0R.3US,C1V7V-H87)?;65M8F5R.C(L,"PX.W9?<VAO<G1?;65M8F5R
M.C0L,38L,38[=E]I;G1?;65M8F5R.C$L,S(L,S([=E]L;VYG7VUE;6)E<CHQ
M+#8T+#,R.W9?9FQO871?;65M8F5R.CDL.38L,S([=E]D;W5B;&5?;65M8F5R
M.C$P+#$R."PV-#L[ '9?<W1R=6-T,3I',CD =E]S=')U8W0R.D<S,#US,C1V
M7V-H87)?;65M8F5R.C(L,"PX.W9?<VAO<G1?;65M8F5R.C0L,38L,38[=E]I
M;G1?;65M8F5R.C$L,S(L,S([=E]L;VYG7VUE;6)E<CHQ+#8T+#,R.W9?9FQO
M871?;65M8F5R.CDL.38L,S([=E]D;W5B;&5?;65M8F5R.C$P+#$R."PV-#L[
M '1?=6YI;VXZ5#,Q/74X=E]C:&%R7VUE;6)E<CHR+# L.#MV7W-H;W)T7VUE
M;6)E<CHT+# L,38[=E]I;G1?;65M8F5R.C$L,"PS,CMV7VQO;F=?;65M8F5R
M.C$L,"PS,CMV7V9L;V%T7VUE;6)E<CHY+# L,S([=E]D;W5B;&5?;65M8F5R
M.C$P+# L-C0[.P!V7W5N:6]N.D<S,0!V7W5N:6]N,CI',S(]=3AV7V-H87)?
M;65M8F5R.C(L,"PX.W9?<VAO<G1?;65M8F5R.C0L,"PQ-CMV7VEN=%]M96UB
M97(Z,2PP+#,R.W9?;&]N9U]M96UB97(Z,2PP+#,R.W9?9FQO871?;65M8F5R
M.CDL,"PS,CMV7V1O=6)L95]M96UB97(Z,3 L,"PV-#L[ '9?8VAA<E]F=6YC
M.D8R '9?<VEG;F5D7V-H87)?9G5N8SI&,@!V7W5N<VEG;F5D7V-H87)?9G5N
M8SI&-0!V7W-H;W)T7V9U;F,Z1C0 =E]S:6=N961?<VAO<G1?9G5N8SI&- !V
M7W5N<VEG;F5D7W-H;W)T7V9U;F,Z1C8 =E]I;G1?9G5N8SI&,0!V7W-I9VYE
M9%]I;G1?9G5N8SI&,0!V7W5N<VEG;F5D7VEN=%]F=6YC.D8X '9?;&]N9U]F
M=6YC.D8Q '9?<VEG;F5D7VQO;F=?9G5N8SI&,0!V7W5N<VEG;F5D7VQO;F=?
M9G5N8SI&. !V7V9L;V%T7V9U;F,Z1CD =E]D;W5B;&5?9G5N8SI&,3 ;&EN
M:SI4,S,]<S$U,FYE>'0Z,S0]*C,S+# L,S([;&EN:V9U;F,Z,S4]*C,V/68S
M-"PS,BPS,CMS='5F9CHS-SUA<C$[,#LP.S,X/6%R,3LP.S$[,SD]87(Q.S [
M,CLR.2PV-"PQ,34R.SL <U]L:6YK.D<S- !T=5]L:6YK.E0T,#UU,30T;F5X
M=#HS-"PP+#,R.VQI;FMF=6YC.C,U+# L,S([<W1U9F8Z,S<L,"PQ,34R.SL
M=5]L:6YK.D<T, !P<FEM87)Y.D<T,3UE<F5D.C L9W)E96XZ,2QB;'5E.C(L
M.P!C;VQO<G,Z5#0R/65Y96QL;W<Z,"QP=7)P;&4Z,2QP:6YK.C(L.P!N;VYP
M<FEM87)Y.D<T,@!C;'5N:V5R.D<T,SUE8VAE=GDZ,"QF;W)D.C$L.P!C87)S
M.E0T-#UE8FUW.C L<&]R<V-H93HQ+#L <W!O<G1S8V%R.D<T- !B;V]L96%N
M.G0T-3UE1D%,4T4Z,"Q44E5%.C$L.P!B=F%L<SI4-#8]969A;'-E.C L=')U
M93HQ+#L 8F]O;&5A;C(Z=#0V &UI<V]R9&5R960Z5#0W/65T=V\Z,BQO;F4Z
M,2QZ97)O.C L=&AR964Z,RP[ &UA:6XZ1C$ +6QG %]S8V-S:60 97AI="YO
M &9A:V-U+F\ 7V5X:70N;P!C97)R;W(N;P!?96YV:7)O;@!S=&%R= !?;6%I
M;@!?97AI= !?;6]N8V]N=')O; !M8V]U;G0 7W9?8VAA<@!?=E]S:6=N961?
M8VAA<@!?=E]U;G-I9VYE9%]C:&%R %]V7W-H;W)T %]V7W-I9VYE9%]S:&]R
M= !?=E]U;G-I9VYE9%]S:&]R= !?=E]I;G0 7W9?<VEG;F5D7VEN= !?=E]U
M;G-I9VYE9%]I;G0 7W9?;&]N9P!?=E]S:6=N961?;&]N9P!?=E]U;G-I9VYE
M9%]L;VYG %]V7V9L;V%T %]V7V1O=6)L90!?=E]C:&%R7V%R<F%Y %]V7W-I
M9VYE9%]C:&%R7V%R<F%Y %]V7W5N<VEG;F5D7V-H87)?87)R87D 7W9?<VAO
M<G1?87)R87D 7W9?<VEG;F5D7W-H;W)T7V%R<F%Y %]V7W5N<VEG;F5D7W-H
M;W)T7V%R<F%Y %]V7VEN=%]A<G)A>0!?=E]S:6=N961?:6YT7V%R<F%Y %]V
M7W5N<VEG;F5D7VEN=%]A<G)A>0!?=E]L;VYG7V%R<F%Y %]V7W-I9VYE9%]L
M;VYG7V%R<F%Y %]V7W5N<VEG;F5D7VQO;F=?87)R87D 7W9?9FQO871?87)R
M87D 7W9?9&]U8FQE7V%R<F%Y %]V7V-H87)?<&]I;G1E<@!?=E]S:6=N961?
M8VAA<E]P;VEN=&5R %]V7W5N<VEG;F5D7V-H87)?<&]I;G1E<@!?=E]S:&]R
M=%]P;VEN=&5R %]V7W-I9VYE9%]S:&]R=%]P;VEN=&5R %]V7W5N<VEG;F5D
M7W-H;W)T7W!O:6YT97( 7W9?:6YT7W!O:6YT97( 7W9?<VEG;F5D7VEN=%]P
M;VEN=&5R %]V7W5N<VEG;F5D7VEN=%]P;VEN=&5R %]V7VQO;F=?<&]I;G1E
M<@!?=E]S:6=N961?;&]N9U]P;VEN=&5R %]V7W5N<VEG;F5D7VQO;F=?<&]I
M;G1E<@!?=E]F;&]A=%]P;VEN=&5R %]V7V1O=6)L95]P;VEN=&5R %]V7W-T
M<G5C=#$ 7W9?<W1R=6-T,@!?=E]U;FEO;@!?=E]U;FEO;C( 7W9?8VAA<E]F
M=6YC %]V7W-I9VYE9%]C:&%R7V9U;F, 7W9?=6YS:6=N961?8VAA<E]F=6YC
M %]V7W-H;W)T7V9U;F, 7W9?<VEG;F5D7W-H;W)T7V9U;F, 7W9?=6YS:6=N
M961?<VAO<G1?9G5N8P!?=E]I;G1?9G5N8P!?=E]S:6=N961?:6YT7V9U;F,
M7W9?=6YS:6=N961?:6YT7V9U;F, 7W9?;&]N9U]F=6YC %]V7W-I9VYE9%]L
M;VYG7V9U;F, 7W9?=6YS:6=N961?;&]N9U]F=6YC %]V7V9L;V%T7V9U;F,
M7W9?9&]U8FQE7V9U;F, 7W-?;&EN:P!?=5]L:6YK %]P<FEM87)Y %]N;VYP
M<FEM87)Y %]C;'5N:V5R %]S<&]R='-C87( 7U]D8F%R9W, 7U]D8G-U8F,
M7U]D8G-U8FX 7U]L9U]F;&%G %]?8VQE86YU< !?7V5X:70 8V5R<F]R %]E
M<G)N;P
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
%
end

File diff suppressed because it is too large Load Diff

View File

@ -1,298 +0,0 @@
begin 777 m68k-elf
M?T5,1@$" 0 " 0 !@ $> #0 #"0 T "
M!0 H !4 $0 8 T@ - "@ H 4 P
M -0 !, ! ! -( #0 )
MC "8P % @ $ G @ IP "4 "6 < "
M @ ">2 "GD ' !P O=7-R+VQI8B]L:6)C
M+G-O+C$ &$ ,
M 4 P !P 0
M + ! @
M
M "@
M ( )
M
M
M
M
M!@ ! "02 "H +!@
M$0#_\0 ^ "G$ !!$ H 8@ )P 1 /_Q 'P
M !:$@ ": "I4 !$ __$ M 2 ,H
M!-@ $$0 " #\ !( !)@ IR 1 /_Q
M7X *>0 $0#_\0!?8VQE86YU< !?96YD %]E;G9I<F]N %]E=&5X= !A
M=&5X:70 7V5D871A &5X:70 7VQI8E]V97)S:6]N %]?9G!S=&%R= !?1TQ/
M0D%,7T]&1E-%5%]404),15\ 7T193D%-24, +W5S<B]L:6(O;&EB8RYS;RXQ
M " "G4 %%0 " "G8 !%0 " "G< )%0 " "G@ '
M%0 !.=4YQ+SL!< );9.^P%Q EL@ !.^P%Q EJB\\ &#_
M____W$[[ 7$ "6:+SP ,8/_____(3OL!<0 )8HO/ !A@_____[1.
M^P%Q E>B\\ )&#_____H"\\@ )O$ZY@ $*%A/(#R 0\9_\ .
M+P!.N8 !"A83Y_\ #"Z60>X !"]( 1*F&;\(\B "G$+T@ "$ZY@ $
M$$ZY@ $4$ZY@ 'K"Z 3KF 1D3G5.<0 !(#O____Q([P 3R-_
M 7 $< !@_P 3R-] 7 $3.\ $3EY.=4@._____$CO
M!/(W\ !< 1P &#_ !/(WT !< 1,[P 1.7DYU2 [____\
M2.\ $\C?P %P !' 8/\ $\C?0 %P !$SO !$Y>3G5(
M#O____Q([P 3R-_ 7 $< !@_P 3R-] 7 $3.\ $
M3EY.=4@._____$CO !/(W\ !< 1P &#_ !/(WT !< 1,
M[P 1.7DYU2 [____\2.\ $\C?P %P !' 8/\ $\C?0 %P
M !$SO !$Y>3G5(#O____Q([P 3R-_ 7 $< !@_P 3R
M-] 7 $3.\ $3EY.=4@._____$CO !/(W\ !< 1P &#_
M !/(WT !< 1,[P 1.7DYU2 [____\2.\ $\C?P %P
M!' 8/\ $\C?0 %P !$SO !$Y>3G5(#O____Q([P 3R-_
M 7 $< !@_P 3R-] 7 $3.\ $3EY.=4@._____$CO
M!/(W\ !< 1P &#_ !/(WT !< 1,[P 1.7DYU2 [____\
M2.\ $\C?P %P !' 8/\ $\C?0 %P !$SO !$Y>3G5(
M#O____Q([P 3R-_ 7 $\CQ4 8/\ $\C?0 %P
M !$SO !$Y>3G5(#O____Q([P 3R-_ 7 $\CQ4
M 8/\ $\C?0 %P !$SO !$Y>3G5(#O____Q([P 3R-_
M 7 $0CF "MD$_P 8 *N 3_ "@ JI#/\ . "K8,_P !( *L@S
M_ %@ J;"/\ !H *G@C_ > "I8(_P (@ J7"/\ "8
M*M0C_ J "ID(_P +@ JY"/\0L@ ( *J@C_$!I " "IP(_P
M @ J=!/Y@ K9( *T 3^8 *N" "J@$_F "JD@ J8#/Y@ JV(
M*N@S^8 *LB "JT,_F "IL@ J["/Y@ J>( *H0C^8 *EB "KX(_F
M "I<@ JO"/Y@ JU( *UPC^8 *F2 "JL(_F "KD@ JS"/Y@ JJ(
M*TPC^8 *G" "J0(_F "IT@ JE"/\@ K9( *O C_( *N" "M8(_R
M "JD@ J]"/\@ JV( *U0C_( *LB "L((_R "IL@ J:"/\@ J>(
M*K@C_( *EB "L (_R "I<@ JQ"/\@ JU( *MPC_( *F2 "M((_R
M "KD@ J@"/\@ JJ( *T0C_( *G" "L,(_P "@ JC"/\ H
M*GPC_ & "P (_P !@ K:"/Y@ K!( *W S^8 +!" "P(\C?0
M %P !$SO !$Y>3G5.=4YQ " "GD " 0P
M@ $1( !%B 1L 0 &@ ,@ $$ V F\ !( .@
M %@ #9 : *D "@ 'L + $ !4 X
M*<@ " , !0 ' %X ^
M 0 ! #_\0 " #4 , $
M@ Z # " ( J0 P P " -D , 0
M @ #X # % ( !! P !@ " 04 ,
M < @ $> # ( ( ";P P "0 " "G
M , H @ IR # + ( *>0 P # " "I8
M , T # . P #P
M , ! # 1 P $@
M , !, # 4 "@ ! #_
M\0 !$ 0 __$ 8 $ /_Q )
M! #_\0 "P 0 __$ V $ /_Q /8 !-P
M R$@ " $F "I8 !!$ T !6@ J7 01 - 98
M";P $@ "0 &N "I@ A$ T "!@ 'K A 2 (
MAH *F0 $$0 #0 )2 "IH !!$ T "M@ $/ "02
M MH +!@ $0#_\0 +N "IL A$ T #,@ %U@ #(2
M ( XH *G ($0 #0 .N "IX !!$ T #Q@ $>
M 2 ( ^( *GP $$0 #0 0. "G$ !!$ H $,@ J
M@ 01 - !)( *H0 ($0 #0 3" "J, !!$ T $X
M@ %#@ #(2 ( !2X *I 0$0 #0 5J G !$ __$
M %A@ JH (1 - !=8 *J0 !$0 #0 86 "JH !!$
M T &-@ JK @1 - !H8 !"@ !:$@ :B "G$
M!"$ H &P@ &G@ #(2 ( !O( !P( R$@ " =& "JT
M !!$ T 'F@ JN 01 - !]( *E0 $0#_\0 ?N
M 5R ,A( @ ((@ JO @1 - "'8 *L0 $$0 #0
M C2 8( ,A( @ (_@ JR (1 - "3H !S0 \$@
M" EN 1D !( )@@ JS @1 - "=H *M0 $
M$0 #0 GV "K8 A$ T *%@ JW 01 - "E( *N
M !$0 #0 J* "KD !!$ T *R@ JZ 01 - "P(
M*NP $$0 #0 M> 38 !!$ @ +D@ $U 2 ( "
M[( *O $$0 #0 ON "KT !!$ T ,3@ J^ @1 -
M #)H !% $@ S" "L !!$ T -%@ K! 01
M - #3( *<@ $0#_\0 V* "L( !!$ T -Y@ K#
M 01 - #BH *< $$0 "@ YR "L0 &!$ T .F@ K
M* !@1 - #L( *T "$0 #0 [V "M$ !!$ T /-
M@ K2 01 - #XX !W \$@ " _& 8Z ,A( @
M 0#@ IY 1 /_Q $#( *TP ($0 #0 !!J "M4 !!$
M T 0J@ &T #(2 ( $/8 *U@ $$0 #0 !%. "M<
M"!$ T 1@@ $$ 2 & $9H *V0 !$0 #0 !&V "MH
M !!$ T 1U@ %0 #(2 ( $BH *W "0$0 #0 !)&
M 6D ,A( @ 2E@ L 01 - $KX + @ ($0 #0
M!+B 9L ,A( @ 3,@ L$ @1 - &TV.&LN96QF &-R=#$N
M<P!C<G1I+G, =F%L=65S+5AT+F, 9V1B;64N8P!S:%]D871A+F, 8W)T;BYS
M '9?8VAA<E]F=6YC '9?<VEG;F5D7VEN= !V7W5N<VEG;F5D7VEN= !?9FEN
M:0!V7W5N<VEG;F5D7V-H87)?87)R87D ;6%I;@!V7W-I9VYE9%]L;VYG '9?
M=6YS:6=N961?<VAO<G1?<&]I;G1E<@!?8VQE86YU< !?96YD '9?=6YS:6=N
M961?<VAO<G0 =E]U;G-I9VYE9%]S:&]R=%]F=6YC '9?9&]U8FQE '9?:6YT
M %]S=&%R= !N;VYP<FEM87)Y %]E;G9I<F]N '9?=6YS:6=N961?;&]N9U]P
M;VEN=&5R '9?:6YT7V%R<F%Y '!R:6UA<GD =E]S:6=N961?8VAA<E]F=6YC
M '9?9&]U8FQE7V%R<F%Y %]E=&5X= !V7W-I9VYE9%]C:&%R7V%R<F%Y '9?
M=6YS:6=N961?8VAA<@!V7V9L;V%T '9?<VEG;F5D7VQO;F=?87)R87D 871E
M>&ET &5N=FER;VX =E]L;VYG7V9U;F, =E]U;G-I9VYE9%]L;VYG7V9U;F,
M=E]S:6=N961?<VAO<G1?87)R87D =E]I;G1?<&]I;G1E<@!?961A=&$ =E]S
M:&]R=%]F=6YC '9?=6YS:6=N961?:6YT7V%R<F%Y '9?=6YS:6=N961?:6YT
M7W!O:6YT97( =E]I;G1?9G5N8P!V7W-I9VYE9%]S:&]R= !V7V9L;V%T7V9U
M;F, 97AI= !V7W5N<VEG;F5D7VQO;F=?87)R87D =E]L;VYG '9?<VAO<G0
M=E]L;VYG7W!O:6YT97( =E]S:6=N961?8VAA<@!V7W5N<VEG;F5D7VQO;F<
M=E]S:&]R=%]A<G)A>0!V7W5N<VEG;F5D7W-H;W)T7V%R<F%Y %]L:6)?=F5R
M<VEO;@!?;6-O=6YT '9?8VAA<E]P;VEN=&5R '9?=6YS:6=N961?8VAA<E]P
M;VEN=&5R '9?<VEG;F5D7VEN=%]A<G)A>0!?7V9P<W1A<G0 =E]S:6=N961?
M:6YT7W!O:6YT97( <U]L:6YK %]'3$]"04Q?3T9&4T547U1!0DQ%7P!V7W-I
M9VYE9%]S:&]R=%]P;VEN=&5R '9?9&]U8FQE7W!O:6YT97( 7U]L;VYG9&]U
M8FQE7W5S960 =E]S=')U8W0Q '9?<W1R=6-T,@!V7V-H87)?87)R87D =E]F
M;&]A=%]P;VEN=&5R '9?<VEG;F5D7VQO;F=?<&]I;G1E<@!V7V1O=6)L95]F
M=6YC '9?<VEG;F5D7VEN=%]F=6YC %]$64Y!34E# '9?9FQO871?87)R87D
M=E]S:&]R=%]P;VEN=&5R '9?<VEG;F5D7VQO;F=?9G5N8P!V7W-I9VYE9%]C
M:&%R7W!O:6YT97( =E]L;VYG7V%R<F%Y %]I;FET '9?8VAA<@!C;'5N:V5R
M '9?=6YS:6=N961?8VAA<E]F=6YC '5?;&EN:P!V7W-I9VYE9%]S:&]R=%]F
M=6YC '-P;W)T<V-A<@!V7W5N:6]N,@!V7W5N<VEG;F5D7VEN=%]F=6YC '9?
M=6YI;VX "YI;G1E<G +FAA<V@ +F1Y;G-Y;0 N9'EN<W1R "YR96QA+G!L
M= N:6YI= N<&QT "YT97AT "YF:6YI "YD871A "YG;W0 +F1Y;F%M:6,
M+F)S<P N<WEM=&%B "YS=')T86( +G!E<V5L "YS:'-T<G1A8@ N8V]M;65N
M= N9&5B=6< +FQI;F4 0"@C*6QI8F,M;3,R.FTT+F1E9@DQ+C0 0"@C*6QI
M8F,M;3,R.F-S=2]C<G0Q+G,),2XQ. ! *",I;&EB8RUM,S(Z;30N9&5F
M"3$N- ! *",I;&EB8RUM,S(Z8W-U+V-R=&DN<PDQ+C, 87,Z("A#1%,I(#4N
M," Q+S(O.3 0"@C*6QI8F,M;3,R.FTT+F1E9@DQ+C0 0"@C*6QI8F,M
M;3,R.F-S=2]C<G1N+G,),2XV "!L9" Z("A#1%,I(#4N," Q+S(O.3
M "X $0 2 6< X9V1B;64N8P !-@ $!$8 !-P!(8 ";P!!@
M = !, $@ 4X .'1?<W1R=6-T "V & "H #0 2 =0 X=E]C
M:&%R7VUE;6)E<@ 50 ! ", !@0 !P "L #0 2 H X=E]S:&]R
M=%]M96UB97( %4 ! C 8$ @< I T $@ ,D .'9?:6YT7VUE
M;6)E<@ 50 ' ", !@0 $!P "H #0 2 \P X=E]L;VYG7VUE;6)E
M<@ 50 * ", !@0 (!P "L #0 2 !'@ X=E]F;&]A=%]M96UB97(
M %4 #@ C 8$ # < L T $@ 4H .'9?9&]U8FQE7VUE;6)E<@
M50 / ", !@0 0!P 0 ; !, $@ FP .'XP9F%K90 M@ !@
M J T $@ 9, .'9?8VAA<E]M96UB97( %4 0 C 8$ < K
M T $@ ;X .'9?<VAO<G1?;65M8F5R !5 0 (P &! (' *0 -
M !( 'G #AV7VEN=%]M96UB97( %4 !P C 8$ ! < J T $@
M A$ .'9?;&]N9U]M96UB97( %4 "@ C 8$ " < K T $@ CP
M.'9?9FQO871?;65M8F5R !5 X (P &! P' + - !( )H #AV
M7V1O=6)L95]M96UB97( %4 #P C 8$ $ < $ ' 7 !( .+
M #AT7W5N:6]N "V " "H #0 2 "L@ X=E]C:&%R7VUE;6)E<@
M50 ! ", !@0 !P "L #0 2 "W0 X=E]S:&]R=%]M96UB97( %4
M! C 8$ < I T $@ P8 .'9?:6YT7VUE;6)E<@ 50 ' ",
M!@0 !P "H #0 2 #, X=E]L;VYG7VUE;6)E<@ 50 * ", !@0
M !P "L #0 2 #6P X=E]F;&]A=%]M96UB97( %4 #@ C 8$
M < L T $@ X< .'9?9&]U8FQE7VUE;6)E<@ 50 / ", !@0
M!P 0 ; !< $@ !*D .'XQ9F%K90 M@ @ J T $@ ]
M.'9?8VAA<E]M96UB97( %4 0 C 8$ < K T $@ _L .'9?
M<VAO<G1?;65M8F5R !5 0 (P &! ' *0 - !( 0D #AV7VEN
M=%]M96UB97( %4 !P C 8$ < J T $@ !$X .'9?;&]N9U]M
M96UB97( %4 "@ C 8$ < K T $@ !'D .'9?9FQO871?;65M
M8F5R !5 X (P &! ' + - !( 2E #AV7V1O=6)L95]M96UB
M97( %4 #P C 8$ < $ *@ & !( 37 #AV7V-H87)?9G5N
M8P 50 ! 1& 3< 2& 4. ! #$ !@ 2 %# X=E]S:6=N961?
M8VAA<E]F=6YC !5 (!$8 !0X!(8 !4 $ ,P & !( 5# #AV
M7W5N<VEG;F5D7V-H87)?9G5N8P 50 # 1& 5 2& 5R ! "L
M!@ 2 %<@ X=E]S:&]R=%]F=6YC !5 0!$8 !7(!(8 !:0 $
M,@ & !( 6H #AV7W-I9VYE9%]S:&]R=%]F=6YC !5 4!$8 !:0!(8
M!=8 $ - & !( 7@ #AV7W5N<VEG;F5D7W-H;W)T7V9U;F, %4
M!@$1@ %U@$A@ &" 0 I 8 $@ !@T .'9?:6YT7V9U;F, %4
M!P$1@ &" $A@ &.@ 0 P 8 $@ !D$ .'9?<VEG;F5D7VEN=%]F
M=6YC !5 @!$8 !CH!(8 !FP $ ,@ & !( 9W #AV7W5N<VEG
M;F5D7VEN=%]F=6YC !5 D!$8 !FP!(8 !IX $ *@ & !( :E
M #AV7VQO;F=?9G5N8P 50 * 1& :> 2& ;0 ! #$ !@ 2 &
MV@ X=E]S:6=N961?;&]N9U]F=6YC !5 L!$8 !M !(8 !P( $
M,P & !( <1 #AV7W5N<VEG;F5D7VQO;F=?9G5N8P 50 , 1& <" 2&
M <T ! "L !@ 2 '0 X=E]F;&]A=%]F=6YC !5 X!$8 !S0!
M(8 !W $ + & !( =P #AV7V1O=6)L95]F=6YC !5 \!$8
M!W !(8 !ZP $ %0 5 !( >N (, !0$ ?J %0 % !( >:
M (, !0$ ?J $ % !( >J %4 !P 0 \ $ $@ !^H E0
M *, * " ( $ @ @@ <@ "X
M 9 !, $@ "'L .&QI;FL +8 "8 )@ - !( @I #AN97AT "#
M 4! 'Z@ C 8$ < J T $@ "%, .&QI;FMF=6YC "# 4!
M '< C 8$ ! < D T $@ "'< .'-T=69F !R 'K@ C 8$
M " < $ %0 5 !( BY (, !0$ ?J %0 % !( BE (,
M!0$ ?J $ % !( BU %4 !P 0 \ $ $@ "/4 E0 *,
M* " ( $ @ @@ <@ "X <
M !< $@ "8D .'1U7VQI;FL +8 "0 )@ - !( DW #AN97AT "#
M 4! 'Z@ C 8$ < J T $@ "6$ .&QI;FMF=6YC "# 4!
M (>P C 8$ < D T $@ "84 .'-T=69F !R (N0 C 8$
M < $ .@ $ !( G' #A^,F9A:V4 +8 $ /, &P )B
M;'5E %G<F5E;@ <F5D 0 ^ 0 $@ "@D .&-O;&]R
M<P M@ 0 \P ? G!I;FL 7!U<G!L90 >65L;&]W
M 0 R 0 $@ "C\ .'XS9F%K90 M@ 0 \P 3 69O<F0
M &-H979Y 0 Q 0 $@ "G0 .&-A<G, +8 $ /, % %P
M;W)S8VAE !B;7< ! #( ! 2 *J@ X?C1F86ME "V
M! #S !, !5%)510 1D%,4T4 ! !P %@ 2 *Q@ X8F]O
M;&5A;@ <@ "G0 Q 0 $@ "OL .&)V86QS "V ! #S !, !
M=')U90 9F%L<V4 ! !T %@ 2 +& X8F]O;&5A;C( '(
M K& 1@ $ !( MB #AM:7-O<F1E<F5D "V ! #S ", #=&AR
M964 'IE<F\ 6]N90 "='=O 0 C 8 $@ "XD
M.&UA:6X %4 !P$1@ 'K $A@ )O 0 G < $@ "[ .'-P;W)T
M<V-A<@ <@ "C\ (P % X + E < $@ "]4 .&-L=6YK97( '(
M H) ", !0. "MH * ' !( O] #AN;VYP<FEM87)Y !R )QP C
M 4#@ J? "4 !P 2 ,(@ X<')I;6%R>0 <@ "8D (P % X *HP
M D < $@ #$8 .'5?;&EN:P <@ "/4 (P % X *W G < $@
M#&T .'-?;&EN:P @P % 0 !^H (P % X *P0 F < $@ #), .'9?
M=6YI;VXR !R #BP C 4#@ L" "4 !P 2 ,N X=E]U;FEO;@
M<@ FP (P % X +! G < $@ #-\ .'9?<W1R=6-T,@ <@ 4X
M(P % X *R@ G < $@ #08 .'9?<W1R=6-T,0 <@ "X (P % X
M*Q O < $@ #34 .'9?9&]U8FQE7W!O:6YT97( &, P$ #P C 4#
M@ K# "X !P 2 -8P X=E]F;&]A=%]P;VEN=&5R !C ,! X (P %
M X *T0 V < $@ #9D .'9?=6YS:6=N961?;&]N9U]P;VEN=&5R !C
M ,! P (P % X *H T < $@ #<T .'9?<VEG;F5D7VQO;F=?<&]I
M;G1E<@ 8P # 0 + ", !0. "M( +0 ' !( WZ #AV7VQO;F=?<&]I
M;G1E<@ 8P # 0 * ", !0. "K< -0 ' !( XO #AV7W5N<VEG;F5D
M7VEN=%]P;VEN=&5R !C ,! D (P % X *L0 S < $@ #F( .'9?
M<VEG;F5D7VEN=%]P;VEN=&5R !C ,! @ (P % X *P L < $@
M#HX .'9?:6YT7W!O:6YT97( &, P$ !P C 4#@ JN #< !P 2 .
MQ0 X=E]U;G-I9VYE9%]S:&]R=%]P;VEN=&5R !C ,! 8 (P % X *F@
M U < $@ #OH .'9?<VEG;F5D7W-H;W)T7W!O:6YT97( &, P$ !0 C
M 4#@ K" "X !P 2 /* X=E]S:&]R=%]P;VEN=&5R !C ,! 0
M(P % X *U0 V < $@ #UX .'9?=6YS:6=N961?8VAA<E]P;VEN=&5R
M !C ,! , (P % X *O0 T < $@ #Y( .'9?<VEG;F5D7V-H87)?
M<&]I;G1E<@ 8P # 0 " ", !0. "M8 +0 ' !( ^_ #AV7V-H87)?
M<&]I;G1E<@ 8P # 0 ! ", !0. "KP ) ! !( _C )4 "C !
M @ 0@ 50 / + ' !( ! / #AV7V1O=6)L95]A<G)A>0
M<@ #[\ (P % X *I D $ $@ $#, E0 *, $ " !
M" !5 X K < $@ $%X .'9?9FQO871?87)R87D '( ! / ", !0.
M "M, ) ! !( !"" )4 "C ! @ 0@ 50 , ,P '
M !( !"U #AV7W5N<VEG;F5D7VQO;F=?87)R87D '( !!> ", !0. "K,
M ) ! !( !#9 )4 "C ! @ 0@ 50 + ,0 ' !(
M !$* #AV7W-I9VYE9%]L;VYG7V%R<F%Y !R 0M0 C 4#@ JK "0
M 0 2 1+@"5 HP 0 ( $( %4 "@ "H !P 2 16 X
M=E]L;VYG7V%R<F%Y !R 1"@ C 4#@ K7 "0 0 2 1? "5
MHP 0 ( $( %4 "0 #( !P 2 1K@ X=E]U;G-I9VYE9%]I
M;G1?87)R87D '( !%8 ", !0. "J\ ) ! !( !'2 )4 "C !
M @ 0@ 50 ( , ' !( !(" #AV7W-I9VYE9%]I;G1?87)R
M87D '( !&N ", !0. "KX ) ! !( !(F )4 "C ! @
M 0@ 50 ' *0 ' !( !)/ #AV7VEN=%]A<G)A>0 <@ $@( (P %
M X *H0 D $ $@ $G, E0 *, $ " !" !5 8 T
M < $@ $J< .'9?=6YS:6=N961?<VAO<G1?87)R87D '( !)/ ", !0.
M "KL ) ! !( !++ )4 "C ! @ 0@ 50 % ,@ '
M !( !+] #AV7W-I9VYE9%]S:&]R=%]A<G)A>0 <@ $J< (P % X *K0
M D $ $@ $R$ E0 *, $ " !" !5 0 K < $@
M$TP .'9?<VAO<G1?87)R87D '( !+] ", !0. "KH ) ! !( !-P
M )4 "C ! @ 0@ 50 # ,P ' !( !.C #AV7W5N<VEG
M;F5D7V-H87)?87)R87D '( !-, ", !0. "I@ ) ! !( !/' )4
M "C ! @ 0@ 50 " ,0 ' !( !/X #AV7W-I9VYE9%]C
M:&%R7V%R<F%Y !R 3HP C 4#@ JH "0 0 2 4' "5 HP 0
M ( $( %4 0 "H !P 2 41@ X=E]C:&%R7V%R<F%Y !R
M 3^ C 4#@ K0 "0 !P 2 4:@ X=E]D;W5B;&4 %4 #P C 4#
M@ J< ", !P 2 4C0 X=E]F;&]A= 50 . ", !0. "JH *P '
M !( !2X #AV7W5N<VEG;F5D7VQO;F< %4 # C 4#@ JY "D !P 2
M 4X0 X=E]S:6=N961?;&]N9P 50 + ", !0. "ID (@ ' !( !4#
M #AV7VQO;F< %4 "@ C 4#@ JU "H !P 2 5+0 X=E]U;G-I9VYE
M9%]I;G0 %4 "0 C 4#@ J7 "@ !P 2 550 X=E]S:6=N961?:6YT
M !5 @ (P % X *E@ A < $@ %78 .'9?:6YT !5 < (P % X
M*G@ L < $@ %:( .'9?=6YS:6=N961?<VAO<G0 %4 !@ C 4#@ J
M; "H !P 2 5S X=E]S:6=N961?<VAO<G0 %4 !0 C 4#@ JR
M ", !P 2 5[P X=E]S:&]R= 50 $ ", !0. "K8 *P ' !( !8:
M #AV7W5N<VEG;F5D7V-H87( %4 P C 4#@ JI "D !P 2 60P X
M=E]S:6=N961?8VAA<@ 50 " ", !0. "K@ (@ ' !( !9E #AV7V-H
M87( %4 0 C 4#@ K9 0 ' "DH !-P !Y__\
M >O__ ,@ 'O__P &0 !]__\ "6 ?O__ R '__
M_P /H "!__\ $L @O__ !7@ (/__P 9 "%__\ '"
M AO__ !] (?__P B8 ")__\ )8 BO__ "E ++_
M_P M "U__\ +F MO__ "[ +?__P O0 "Y__\ +\
M NO__ #! +O__P PP "]__\ ,4 OO__ #'@ +__
M_P R@ #!__\ ,R PO__ #/ ,/__P T8 #%__\ -0
M QO__ #6@ ,G__P VX #*__\ -X R___ #@@ ,W_
M_P XP #.__\ .6 S___ #H -'__P ZH #2__\ .T
M T___ #O@ -7__P \@ #6__\ /2 U___ #W -G_
M_P ^8 #:__\ /P W/__ $! -W__P ! X #>__\ 08
M X/__ $(@ .'__P !"P #B__\ 0V Y/__ $0 .7_
M_P !$H #F__\ 14 Z/__ $7@ .G__P !&@ #J__\ 1R
M [/__ $? .W__P !(8 #O__\ 20 \/__ $F@ /'_
M_P !*0 #R__\ 2N ]/__ $N /;__P !,( #W__\ 3,
M /__ $X
M $ ! H -0 #4 $P 0
M ) !0 * #H Z ;P # 0 $
M#P L "@ "I J0 # ! $ $ $ !< #
M H V0 -D >P 0 ? ! *
M /@ #X # # !P 0 , *0 $ &@ $$
M!! $ $ "\ ! !H !!0 04
M9 ! !0 T 0 : 1X $> !40
M 0 .@ $ &@ )O ";P $
M $ $ ! X *< G " !
M !& 0 . "G( )R !P 0 $
M2P 8 #@ IY ">0 !P ! $ " %0 (
M X *E@ I8 !P " !9 @
M *6 !P / ' 0 0 80 ,
M$5@ 34 ! &D # !8L
M ! !P P 6+ )
M $ >@ $ %KP #/
M $ (, ! !>, 6< !
J "* 0 M_ I0 0
end

View File

@ -1,671 +0,0 @@
begin 777 mips-ecoff
M 6 "2G<_%0 # 8 X <!"P(* @ $ )= $ !P ! 0
M $ 0 //___X -T $ "*@"YT97AT $ !P !
M < !E0 !P " N:6YI= ! &Q 0!L0
M( &Q " +F1A=&$ 0 $ "I "
M 0"YL:70X $ *D! "I 0 JD
M @ N;&ET- ! "J 0 J@ $ *J
M 0 +G-D871A 0 JP$ *L & "JP , "
M "YS8G-S $ +$! "Q % # ! N8G-S
M ! #% 0 Q0 ":\ " <G-R8P
M " (^D
M \'! !)Z4 !"><BH DI@ $ 00@*^%@90 PC A)[W_Z*^&@#"OH 4 #P
M(0P0!L>OA(&0#! !9 ,$ %H @(8^$@9"/A8&4CX: , P0 .L
M#! !I ! ("$ - ^ " GO0 ( ^ " @^"$#X (
M /@ @ ! A ^ " #X ( /@ @ ! A ^ "
M #X ( /@ @ ! A ^ " #X ( /@ @ ! A ^
M" #X ( /@ @ ! A ^ " #X ( /@ @ ! A
M ^ " #X ( /@ @ ! A ^ " #X ( /@ @
M ! A ^ " #X ( /@ @ ! A ^ " #X ( /@
M @ ! A ^ " #X ( /@ @ ! A ^ " #X (
M /@ @ ! A ^ " #X ( $2 #X ( /@ @
M ^ " !$@ 1( ( /@ @ ^ " #X ( *. @) D
M#@ !HXZ D20/ *CCX"2)!@ Z>8@)0D&0 $IYF EB0( 6GB("8) D !J^)
M@)PD"@ 'KXJ H"0+ BOBX"D) P ":^,@*@D#0 *KXV K"0. NOCH"PQX2
M( #GA("TQX> $,>&@!3GAX"XYX: O)./@) HX^ P).8@)$
MHYB PI.9@)( HYF Q(>(@)0 IXB R(>)@)8 IXF S)>*@)@
M IXJ T(^+@)P KXN V(^,@* KXR X(^-@*0 KXV Z(^.
M@*@ KXZ \(^/@*P KX^ ^(^8@+ KYB! ,>(@+0 YXB!
M",>+@+C'BH"\/ $0 .0K8_#D*F/T)YF D*^9@1 GB("1KXB!%">)@)*OB8$8
M)XJ E*^*@1PGBX"6KXN!(">,@)BOC($D)XV G*^-@2@GCH"@KXZ!+">/@*2O
MCX$P)YB J*^8@30GF8"LKYF!.">(@+"OB($\)XF M*^)@4 GBH"XKXJ!1"0+
M *OBX%<) P J^,@6 D#0 !KXV!:"0. &OCH%DCX^!6#P!$ "L+V,PAYB!
M2 "GF(%0 ^ " $"$#X ( #X (
M)[W]4 " &"$D#O__K[\ '!1@ !&OK@ D/ 00 P0 ;0DA ($$$ !0! &"&0
M3P !7@ @ DYB 0 3 # ! ", ! A)X. 1#P%
M$ "C@(! )*4"$">D C ,$ 'TKZ,"L(^C K GI (^#! !] !@*"$GI (P#! "
M( *"$$0 1 $ @(2>E "PD!@("#! "**^D "@D 0("%$$ "(^D "@\!!
M)(0 ">E "P,$ (P) 8" J^@ "2/I H#! "] "/H@ D (^_ !PG
MO0*P ^ " )[W_X*^_ !P,$ ,.KZ0 ( P0 R@ CZ0 ( P0
M!4P C[\ '">] " #X ( ">]_^"/@H PK[$
M&*^P !0 @(@AK[\ '!1 , 0( A$ %0 $"&/CH P (W/
M$> #P $"&.!0 (@("$,$ '7)A !!! , 0!@A$ !@!@$"&.
M!0 !2@__<"(" A 0(8^_ !R/L 4C[$ & /@ @GO0 @D*( )"#
M DI0 !$$, !"0& #T0 ,) 8 /20& #T 8! A%$8 R2$ $#X ( * 0
M(9"B "0@P )*4 1!#__@ 8! A%& " $"&0KO__ !3. 0 ! A
M ^ " "@$"$ ! A ^ " @! A@*@ #2- ,1 D :1P(H"I $
MKG@@$2 'P " J@ " !% !J(K @*L YBL ,18 4J(P "&D
M__V!Z !(>\ !!$ !,@A $@>G__@ 1( . ('J__\ $4
M"8GL__V!ZP F>P !5@__&LC ^ " #X (N(P Z"* *@B0 !
M ^ "*"( "0" ^T ,$. P ($ 50 /@ @
M ) (#ZP P0X # @0!5 ^ " 0P : ( X(1"D
M !@ A0@J%" ""C! ! IA @ (((*A @ 0HP0 0$ 6RC! ! HP0 0%"
M!0 PH@ #,(, Q!# L $, !P IA@A@*( "2E $DA !
M%*/__*""__\#X ( . 0(1! !@D 0 !$$$ #R0! (000 ' ("B D
MI0 !)(0 23&__\0 .H(+__X2B DI0 ")(0 B3&__X0 (I(+__H"B
M "$HP !H(( "2E ,DA #),;__:2#__XHP0 @%" %BC! !",H@ C*,
M!(RH B,J0 ,C*H $(RK !2,K 8C*T '*R" "L@P $K(@ "*R) RLB@ 0
MK(L %*R, !@DI0 @)(0 ("3&_^ 0 /_JK(W__"C! ! 4( .*,$ !(RB ",
MHP $C*@ "(RI RL@@ K(, !*R( @DI0 0)(0 $"3&__ 0 /_RK(G__"C!
M 04(/^U (RB DI0 $)(0 !"3&__P0 /_XK(+__"C! ! IB@@%"
M!0"&(" PH@ #,(, Q!# T $,#_K0 DI?__)(3__P"F&". H@
M)*7__R2$__\4H__\H(( 0/@ @ X! A$$ &"0! ,000 /) $ A!! <
M @*+__R2E__\DA/__),;__Q Z@@@ A*+__B2E__XDA/_^),;__A
M BD@@ @*+__X2C__V@@O__)*7__22$__TDQO_]I(, "C! " 4( 6*,$
M$(RB__R,H__XC*C_](RI__",JO_LC*O_Z(RL_^2,K?_@K(+__*R#__BLB/_T
MK(G_\*R*_^RLB__HK(S_Y"2E_^ DA/_@),;_X! _^JLC0 *,$ $!0@ XH
MP0 $C*+__(RC__B,J/_TC*G_\*R"__RL@__XK(C_]"2E__ DA/_P),;_\!
M__*LB0 *,$ !!0@_[, C*+__"2E__PDA/_\),;__! __BL@@
M ) (#[@ P0X # @0!5 ^ " $"$0@ /
M) ( 8^#@& *&$ (! @ HD @ ! -P@#P!$ +@@A)&, :PD B"O
M@X!@ ^ " $"$D @ ! ^ " "/@X!@)[W_X*^_ !ROL0 8K[ %!A@
M \D8O__/ \0 "7O B G" /!$0 "8Q B !SX ACA@ # /@)
M "80__P"$0@K$"#_^0 "/OP <C[ %(^Q !@#X ()[T ((^.@' GO?_@
M/ \0 *^P !@E[P0U/! 0 '/""NOOP <%" $280!#0\&! CQ@+ 3
M % P0 W8" " A$ P ,$ -& @ @(8^9@' F$ 0 AD(*Q0@
M__$ C[\ '(^P !@#X ()[T (">]_]BOL 8 (" (:^_ !P6 #) /_
M_Q "4D O__D@( # P3@"#$< %#!8 @P3P &) $ A7A 8 !@A
M#! #=@( ("$0 " $ 8(0 &"&2! -#! "]*^C "2/HP D!$$ @ D
M ___D@( # P6 ($P !@ ".! (#! &&J^C "2/HP DK@ "(X9
M BB ,K@ !@$"&N&0 $C[\ '(^P !@#X ()[T *">]_^"OL 8 ("
M(18 !.OOP <CXZ <#P/$ E[P0U/! 0 '/""L4( *)A $-!( ,
M#! #=@( ("&/F(!P)A $ (8""L4(/_X ! #@ ! AD@, # P
M8@ "%$ ##!H 2.!0 D@0 #20& $,$ 9P 4H(XX9 BN 0(1
M "FN&0 $,&@ !!4 " P;0 @$$ 'C!M "". @ ( !! !HP;0 @C@D
M! 20@K$" %3!M " ,$ 14 @ @(9(# P ,&H !!5 XP;0 @
M,&L A%@ LP;0 @C@( " 00 ',&T ((X, 0 $P(*Q0@_^X
M ,&T (!&@ 0 !@A$ B0#__\ !@A & 0(8^_ !R/L 8 ^ "">]
M " GO?^PK[ '*^_ "ROLP H *" (:^R "2OL0 @KZ0 4)(# PD$0!")!(
M!B03 (P;@!2%BX )3!L !:2#P -/!D0 /P( #.,@ACSD"H(X" 0
M %D(*Q @ $\ CZ@ 4"0! J@2 C@D ! E*@ !K@H !).K %,
M $6$ ! "/H@!0$ 8(^_ "P,$ 14 @ @(20!__\400 $CZ, 4!
M ,D ___CZ, 4 0 !4 & 0(3!L !863 4,'@ $H^M % GI0!,HZT
M3)($ VN #! &>"0& $D 0 !%$$ ! "/H@!0$ 18^_ "R2#@ ,
M) +__S7/ " 0 _H@\ ##!X !(6> 0 (X" @ $$ # ".
M&0 $ !19 P C@@ 5 ( #!I $05( & 8(0P0
M!)H" " A$ @! &"$ !@A$& P 0 D) +__Y(# P ,&H
M1!5 _Z<P;@!2#! $5 ( ("&. @ "1"__\$00 &K@( ).D %,,$ /(
M @ H(1 J2#P ,CZL 4(X, 0 H8L (X- 0 ):X :X. 22
M#P , #'X " 3 $CZ, 4! ,D ___CZ, 4 8! AC[\ +(^P
M !R/L0 @C[( )(^S "@#X ()[T 4">]_^"OOP 4 ( X(8SC B0[P ,C.X
M! !@*"$Q^ !$K.4 !!, @!Q3 CD/D #3P)$ E*0*@ !E @ $)("$0 *
MK. )#J T\#! )8P"H *6( !;" AC(T !HQ CK.( (SB
M !$$ ! ! &"$0 " 8(0! &"&,C@ C.\ ! !S\ C P,(*A @
M H KZ4 '*^F !@ X" A#! %-J^G ""/I0 <CZ8 &(^G " &,
M#P $"&0Y -KZ< ( P0!GBOI@ 8CZ8 &(^G " 0P@ ' 0(9#Y PD O__
M-R@ (! *@Z , 0(8^_ !0GO0 @ ^ " GO?_HK[\ %)"" PD
M 0 ",$X $A'! P ,$\ @A7@ 8D ?_O#! &@R0$ D0 R) +__R0!
M_^\ 0< D-QD J"9 R,@P ( !1@ < #! $W:^D !B/I 8
M (R# @ C(@ ! 4: @ 0(9") P ,2H 1!5 !L ! A
MD(L #3P-$ EK0*@ M@@ &-*"&,K@ '#>".LCP C(( $
M00 $ $ 8(1 ( !@A $ 8(8RX ",F0 $ ,90",! P@J$" !
M$"$,$ 4V $"&/OP 4)[T & /@ @ )[W_X*^_ !0 @"@AD*X
M#)"C TQSP $$> # !@,"$\&1 )SE@" &P, #&1 A -(@#P!$ *0@A
MK*( ""1( @0 TK"@"H"C! (0( 3 !3 8 / ,0 "1C$ "L
MHP ($ !0!@$"$\ Q )&- *RC @ 8! AD*L #3P!$ "V" "P((21*
M( 0 ?K"H"H*^E " D!" (#! %5*^F !R/I0 @CZ8 '!! RLH@ (D*T
M#)"Y V,KP (/ $0 #6N @ &4" H*X # H""$E^" $ #*PX J \"Q
MD*P #25K8 @ !DC 2L0(3P!$ #&B "T((:RB @D2@ (K"H"H(RN @
MP" AK*X ! P0!HBOI0 @CZ4 (!! F/OP 4D*( # P3P $%> !(^_
M !0T60! H+D #(^_ !0GO0 @ ^ " "0C@ -/ ,0 .>( ;Q@AC&,"
MH(R8 0 '@0(P1! , ^ "*R# 2,F0 !9""H0( "
M *R" #X ( ) (#Z0 P#X ( #P!$ "L
M(@P8 ^ ""0"__\GO?^HK[8 +*^R !ROOP TK[< ,*^U "B/CH%PK[0 )*^S
M ""OL0 8 ("0(:^P !01P $ "P(8^%@800 +)Y6!<">"@70GE8%PKX*!
M?#1/ &OCX%P-K@ 0*@."&OF(%T $ H(:^'@7B/AX%X)!?__R04__X X(@A
M P(8XC & 0(3!9 $7( = B" (0!@@"&. @ )D0 !P $(((P
M2 !%0 #@ $(( "(#@AKX>!>!2P *N(@ B H(8XC &" (8X"
M ,$D 1$@__8 B00(0("""L4( # %$(*Q @ &H & 0
M(0(@@"$ 5(@D A$(*Q0@_]L CXJ!? 2"@ # ! 2OA8&$
M$C4 !23& &OA8&$$ :P $"$DQ@ !+,$ A0@_\P )D, !P #&(*O
MHP X *"((0 ("$,$ :@KX6!A(^+@7R/HP X)6P !!!, P 0( A)&8'_P &
M,L(P1 #$( $ &,T D#0 $ :08(P!@L"$ 0X A$ "@#6,"&/A8&$CXZ!
M? !Q7@C _ @P!X,",DQ@@ 8RP@ &,T "!L@A S (*Q @ 0\ 7__
M$ 00 $"$\ 7__-"'@ 0#!""L4( - ,"8(3P$?_\TA. #! &H*^F $B/
MI@!(%%< !#P!@ 0 S 0(3P!@ T(2 ,$P(0P0!J P" A%%< !0
M ,$ :L @ @(1 "@ ! ACXB!? (32"$!-E C)4O__*T0 "N"P CXR!
M? ( *"$EC0 $$@T !3:B &-C@ #7/ &MCP CA@ "OF(%\
MCYF!?! _W>O(@ $ X(0#P""L0( &-.D 8SH KXB!@*SC T
MZ0 !$+$ !*XI "OAX%X$ !*^%@80 X"@AKX6!A*^'@7@F(@ $C[\ -(^P
M !2/L0 8C[( '(^S ""/M DC[4 *(^V "R/MP P ^ "">] %@0@ - ( 0
M(22"__RO@H%XC$X "0!__X!P7@DK$\ (Q9 "/F(%\ !<9 (
MKX*!A /@ @ )[W_R*^P !@ @( A$@ .*^_ !R. O_\ #!. $1
MP ( % 8(P( ("$,$ 8:KZ4 /(^E #R. O_\ !0&", QB#KZ, ) "@
M("$,$ 54KZ4 /(^C "2/I0 \$$ !0! ("$04 # !2@ 0DIP #$
M(0" $"$DIP # <X@@#C""L0( " #@&"&OI T @ H(0 #,( ,$ (P
MKZ< ((^D #2/IP @ % (*Q @ ! =X@ !/&"$ < @K%" "P
M<,@C !E @X^8@8 "$B $E0(1 2M6 #! %5 "@("$ 0" A ( 0(8^_
M !R/L 8 ^ "">] #@ "0" _L ,$. P ($ 50
M /@ @ ) (#[ P0X # @0!5 ^ " "/@H&8
M ^ " "OA(&8 ^ " " $"$ ">]_["OOP <#! &@*^D %"/
MI !0KZ( )"0%5 @,$ :\)Z8 * 1! <D @ !CZ0 ) P0!H, $ @
M$"$D @ !C[\ '">] % #X ( #P#$ ",8PJ$) (#
M^0"#("$ ,%. !#P!$ 8! A ^ "*PD"H0($ 50 #P"$ ",0@J
M """"L0( " ! ("$D @/Y #!3@__0\ 1 K"0*A /@ @
M ! A D @0> #!#@ , "! %4 #X (
M #X (
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M (" @(" @(" @*"@H*"@@(" @(" @(" @(" @(" @("!($! 0$! 0$! 0
M$! 0$! 0A(2$A(2$A(2$A! 0$! 0$!"!@8&!@8$! 0$! 0$! 0$! 0$! 0$!
M 0$! 1 0$! 0$(*"@H*"@@(" @(" @(" @(" @(" @(" @("$! 0$"
M
M
M 0(#! 4&!P@)
M"@L,#0X/$!$2$Q05%A<8&1H;'!T>'R A(B,D)28G*"DJ*RPM+B\P,3(S-#4V
M-S@Y.CL\/3X_0&%B8V1E9F=H:6IK;&UN;W!Q<G-T=79W>'EZ6UQ=7E]@04)#
M1$5&1TA)2DM,34Y/4%%24U155E=865I[?'U^?P
M
M
M !#2%)#3$%34P O;&EB+V-H<F-L
M87-S+P
M
M
M ! 8"
M
M
M
M
M
M
M
M
M $ " 0 ! 8!@0 & 8!@(
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M 0 *= $ "G0
M 0&D $+(
M 0 &%S8VEI
M $ *=
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M < D""@ !D + P8 - ,R $Y ]L
M "$P 3%P A, !4J !B0 %ST '@ 8Q@ !< !K
MB (< &SX,/ @X# 00-! T$ 0(*"! !9 \# 0$!%@P% A(! 0(04%!04%
M!04%!04%!08',!$1(1$1(1$1(1$1(A,R$A(B$A(B$A(B$A(B%"$1$2$1$2$1
M$2$1$2$1(1$1$2(B$P$!,-" BP6(, "1$0,/ 4$A0F5! B)0& Z __*!
M \2$P4PX#$7%!$8 !<2$1@!$1)08! 0$! 0$! 0$! 0$! 0$! P$! 0$! 0
M$! 0$! 0$! 0$! P$" 0$! $!$1$0 0$1$10/ A,A 2$8( "A 0$7$0(! @
M$.! \($ "A(2,! @$!#0<! @$!#0<! @\# 0X(( #! 0$! 0$! 0(! 0$! 0
M$)" D0$-!R$! 0$" 0$-!0$!#0<A 0(! 0T( $,! T$ 0$7$0$! @$" 0
MX$#P@0 *$A(P$" 0$-!P$" 0$-!P$"#P,!#@@@ ,$! 0$! 0$! @$! 0$! 0
MD( "1 0T'(0$! 0(! 0T% 0$-!R$! @$!#0 ! 1$2$6%!(B!"<7%##0,- R
MT#&$ H3,103 T#0010C$R 5$"$2$Q! X! @\!,",-!V$R8T)"#P(?!(!!@(
M !@!" )2& H 1(8 3(0(. @\!02$!#P$/!H" 81%#$8""@' D @X2#P$. H
M!A@(!!@ $!#P$/ T 102$1$C(Q48&!@&) ) T#'02!#P,B@(-R 2\!#P$1#P
M. $@$/ 8 !$3. 1%! 1 !)A</ %<)1PT#0PX1 @X# 10A 5&$#P$!<6(! 0
M$B@A$Q% \!(0\!'P<1'P(A PX" W(Q%#\"81(B,1$4!"P$ 0D'(3$A @X$ B
M$A @(. E& ) T'$S%3$"@ )@/_WA +%1$5(. C$200%A<4$/ R% 0$1$1
M ! 1$1%"0"$!0,!0\!0B$20A(/ @$2#P$2$3$" 0$1$1 ! 1$1$
M @ /____\ !@ '0 . &<
M : 0 : #_____ !T 'P ((
M "$ &@ ' & ' _____P =
M !\ "/ DP !L !\ " !\ /____\
M '0 ? G@ * > "$ #_____
M !T 'P 'D !Y !@ E !@
M _____P = !\ !Z >@ $ P *0
M P /____\ '0 ? >P 'L "
M2 "T 2 #_____ !T 'P 'T !]
M P & Q & _____P = !\
M !^ ?@ 0 !X -0 !X /____\
M '0 ? ?P '\ % D #D D #_____
M !T 'P ($ "! !@ *@ ] *@
M_____P = !\ "" @@ < # 00 #
M /____\ '0 ? @P (, ( V
M $4 V #_____ !T 'P (4 "%
M"0 / !) / _____P = !\ "&
M A@ H $( 30 $( /____\
M'0 ? AP (< + !( %$ !( #_____
M !T 'P (D ") # 3P !5 3P ____
M_P = !\ "* B@ T %< A0 %<
M /____\ '0 ? L@ /< . $
M #_____ !T 'P ( "
M " ( #___UL_____P "L = !\ !?
M@P 0 " _____/____\ " '0 ?
M '0 "X $ @ , /____S_____
M @ !T 'P !X F (P # (P _____P
M = !\ S .0 D 0
M /____\ '0 ? 8@ )H $
M #_____ !T 'P X 2
M ! _____P = !\ . $@
M 0 /____\ '0 ?
M* 2X $ #_____
M !T 'P X 3 # _____P
M = !\ 7 ' !( !0 !* P _____/__
M__\ " '0 ? (0 "4 $ $ @ $
M /____S_____ @ !T 'P "H ] '@ #
M 'H ! #____T_____P * = !\ !. 90 X
M $X !0 $Z 0 _____/____\ " '0 ? <@
M (D B "@ < "@@ \ /___]S_____ !0 !T
M'P )H "Z -0 !+ ) !+( #____T_____P
M ( = !\ #2 W@ %8 7( "P 7* _____/____\
M !@ '0 ? Z@ /@ !K &U T &U@ /__
M__3_____ @ !T 'P 0, $; > "#@ / "
M#@ _____P = !\ $I !, )4
M 0 /____\ '0 ? #@ \
M $ #_____ !T 'P
M !$ > & (#_ #____<_____P
M6 = !\ !D Q0 ,8 " ,< /____\
M '0 ? S -L !. #6 H #7@ $ /___^3_
M____ X !T 'P .8 $! 5 !
M _____P = !\ . $@
M 0 /____\ '0 ? #@ !(
M $ #_____ !T 'P !\
M C P # P _____P =
M !\ J , $ 0 " ____S/____\
M % '0 ? '@ "@ $ #_____
M !T 'P !< ? # $ "P
M _____P = !\ E +P @ 0
M /____\ '0 ? #@ !(
M 0 L( + # (K___ %0! < 8( " %0 &@@( "
M '0! B@8( & '0 @@( $ *0! C 8( * *0 P@
M( & ,0! CP8( . ,0 @@( ( 0 @( 0
M L( " 0 @( 0 L( " 0 @(
M 0 L( " 0 @( 0 L( "* 0@ !AI8 )
M 2P E8 ( 60 ! E8 # : " E8 $ =0 $ E
M8 % @P & E8 & D@ ( E8 ' A8 ! H@
M !AI8 1 IP E8 ( M0 ! E8 # Q " E8 $
MT0 $ E8 % WP & E8 & [@ ( E8 ' A8 )
M _@ AM8 9 !!@ E8 ( !% E8 # !(P E
M8 $ !, E8 % !/@ E8 & !30 E8 '
M A8 1 !70 AM8 A !8@ E8 ( !< E8 # !
M?P E8 $ !C E8 % !F@ E8 & !J0 E8 '
M A8 9 !N0! E 8( "' <( D @@
M( B !N0 !@@( A !Q0! F@8( ") <( H
M @@( F !Q0 !@@( E !V ! H 8( "+ <( L
M @@( J !V !@@( I ![0! I@8( "- <( P
M @@( N ![0 !@@( M !^@! K 8( "/ <
M( T @@( R !^@ !@@( Q "#@! L@8( "1
M <( X @@( V "#@ !@@( U ") ! N 8( "3
M <( \ @@( Z ") !@@( Y "+P! O@8( "5
M <( ! @@( ^ "+P !@@( ] "00! Q 8
M( "7 <( !$ @@( !" "00 !@@( !! "50!
M R@8( "9 <( !( @@( !& "50 !@@( !% "
M80! T 8( "; <( !, @@( !* "80 !@@( !)
M "= ! U@8( "= <( !0 @@( !. "= !@@
M( !- "B0! W 8( "? <( !4 P@( !2 "B0
M !P@( !1 "E@! XP8( "A <( !8 ! @( !6 "
ME@ " @( !5 "I )AI8 !> "J0 E8 "F "K@ " E8 "I
M "MP $ E8 "L A8 !9 "O0 )!M8 !C "Q0 E
M8 #$ "R@ E8 #' "TP E8 #* A8 !> "V0
M 1Q8 !H "W@ E8 #B "X@ $E8 #C "Z (E8 #D
M A8 !C "[0 1Q8 !M "] E8 #K "^P $E8 #L
M # @ (E8 #M A8 !H #!P 1Q8 !Q ## E
M8 #T #$@ $E8 #U A8 !M #%P 1Q8 !U #'
M E8 #\ #( $E8 #] A8 !Q #* 1Q8 !Y #
M+0 E8 $$ #,P $E8 $% A8 !U #. I8 $&
M #0 1Q8 !^ #1@ E8 $, #3 $E8 $- A
M8 !Z #40 I8 $. #6@ 1Q8 "% #90 (E8 $4 #:0
M $E8 $5 #;0 E8 $6 #<@ ,E8 $7 A8 !_ #
M> ! ZP8( $8 <( "( = @( "& #> > @( "%
M 0 @( 0 L( $ % ! !9 8( - % @@
M( ! 0 @( 0 L( % "1 "L )K___ % !
M!: 8( - % .P@( " 0 @( 0 L( $
M#@! !I 8( - #@ #0@( ! 0 @( 0 L( &
M "@! !M 8( - "@ (P@( ! $0! !UPX( / $0 '0@
M( # 0 @( 0 L( ) #@! !] 8( " %0!
M"!@4+___ (@! "& 4+___ *0! "&@4+___ , ! "&P4+___
M-P! "' 4+___ #@ *@@( ! 0 @( 0 L( %
M #0! "( 8( " $P! ")@4+___ #0 " @( ! 0 @
M( 0 L( " 0 @( 0 L( " 0
M @( 0 L( % #0! "* 8( " $P! "+@4+___
M#0 " @( ! 0 @( 0 L( 9 #0! ", 8( "
M % ! "/ 4+___ 'P! "0P4+___ ,0! "1@4+___ /P! "2P4
M+___ 0P! "304+___ 40! "604+___ 7 ! "7P4+___ 9P!
M"9@4+___ < ! "9@4+___ ? ! "?04+___ B ! "C 4+___
MDP! "E04+___ GP! "G04+___ L@! "H@4+___ P ! "J04+___
M S@! "M04+___ V0! "NP4+___ Y ! "P@4+___ [@! "P@4
M+___ ^P! "V04+___ !" ! "Z 4+___ #0 P0@( ! 0
M @( 0 L( % #@! "] 8( " %0! "^@4+___
M#@ " @( ! 0 @( 0 L( ( "A "N )K___
M $Q B (3___ '@! "_ 8( - '@ $@@( # )0! ##@8
M( / )0 &@@( % 0 @( 0 L( 2 "@!
M#* 8( - "@ '@@( ! $P! #1@8( / $P , @( #
M&@! #=@8( 1 &@ 4@@( % (0! #R 8( 3 (0 C @( '
M *0! $5 8( 5 *0 1@@( ) ,@! $F@8( 7 ,@ 0P@
M( + .@! $W08( 9 .@ 60@( - 0P! %-@8( ; 0P
M % @( / 0 @( 0 L( $ # ! %3 8( "
M# ! @( ! 0 @( 0 L( $ #@! %4 8( "
M #@ ! @( ! 0 @( 0 L( " 0 @
M( 0 L( " 0 @( 0 L( - "A
M"_ )S___ $1 "_@)S___ &! "_P)S___ 'Q # )S___
M)A # 0)S___ +P! %5 8( - +P Q@@( & -@! &&@8( /
M -@ $ @( ( .P! &*@8( 1 .P 1 @( * 0 @
M( 0 L( % #@! &< 8( " %0! &=@4+___ #@
M " @( ! 0 @( 0 L( % #@! &> 8( "
M%0! &?@4+___ #@ " @( ! 0 @( 0 L( &
M # ! &@ 8( - # P@( ! %0! &@P8( / %0 P@
M( # 0 @( 0 L( $ "P! &B 8( - "P
M %0@( ! 0 @( 0 L( ( #0! &H 8( "
M#0 "@@( ! $P! &J@4+___ %P! &K 8( & ' ! &LP4+___
M %P #@@( $ 0 @( 0 L( % #@! &O 8
M( " %0! &P@4+___ #@ " @( ! 0 @( 0
M L( " 0 @( _____P $ /____\
M!@ #_____ @ _____P * &
M @ 0 & " H + P 4 ' "0 !H #
M # __ ! 0 @# # __ ! 0
M @# # __ ! 0 @$ # __ !
M 0 ! $ # __ ! 0 ! % # __ !
M 0 ! & # __ ! 0 " & # __ !
M 0 " ' # __ ! 0 " ( # __ !
M 0 " ( # __ ! 0 " ) # __
M! 0 " * # __ ! 0 " + #
M__ ! 0 $ # ! P 0 , $ $ ! ! 0 4 $ &
M ! !@ 0 < $ ( ! " 0 D $ * ! "P 0 P #__________PP
M #_\ ! P #__________PP #_\ ) T #_________
M_PT #_\ 1 T #__________PT #_\ 9 "4#
M *0, M P #$$ -00 Y!0 #T&
M 008 !%!P $D( 30@ !1"0
M %4* 60L , __________\, ! __ 60 , !(0__
M60 , #,P__ 0 #_\ $ " P/_P 0
M $ ) __ ! !( , ! __ 60 -
M __________\, ! __ 60 , !(0__ 60 , #,P__ 0
M #_\ $ " P/_P 0 $ ) __
M! !( - __ 7@ . __________\
M . __ 8P . __________\ .
M __ : . __________\ X #_\ !M X
M #__________P #@ /_P '$ #@ /__________
M . __ =0 . __________\ X #_\ !Z
M X #__________P ")!@ &
M @ 0 & " H + P 4 ' "0 !H
M #!@ & @ 0 & " H + P
M 4 ' "0 !H $!@ & @ 0 &
M" H + P 4 ' "0 !H #!@ &
M @ 0 & " H + P 4 ' "0 !H
M # P 0 4# ! _____P ( /____\
M! #_____ 0 _____P 8 /____\
M ! !@ ( $ !@ @ * "P , %
M !P D : !08 '&@ & @ 0
M & " H + P 4 ' "0 !H #&@
M 4& !P8 )!@ L& #08 /
M!@ !$& _____P # /____\ P
M !@ ( $ !@ @ * "P , % !P D
M : 8 " ! 8 ( "@ L # !0
M < ) &@ & @ 0 & " H +
M P 4 ' "0 !H (&@ 0 H: #!H $ #_
M____ 0 _____P $ & @ 0
M & " H + P 4 ' "0 !H #!@
M 4& 8 " ! 8 ( "@ L #
M!0 < ) &@ ,& _____P # /____\
M !P #_____ 0 &-R=#%T97AT+G, 4U1!4E1&
M4DT 7U]S=&%R= !?;6]N8V]N=')O; !?;6-O=6YT %]S<')O8VUO;G-T87)T
M O8F%B82]C>7!R97-S+W5S<B]I;F-L=61E+W)E9V1E9BYH O8F%B82]C
M>7!R97-S+W5S<B]I;F-L=61E+V%S;2YH !C<G0Q=&EN:70N<P 9V1B;64N
M8P \+S1$96)U9R\^ '!U<&EL.B]C>6=I;G0O<&QA>2]F;F8O9V1B;64N8P W
M,#(S-#@S-CD -3,X-@!T7W-T<G5C= !V7V-H87)?;65M8F5R '9?<VAO<G1?
M;65M8F5R '9?:6YT7VUE;6)E<@!V7VQO;F=?;65M8F5R '9?9FQO871?;65M
M8F5R '9?9&]U8FQE7VUE;6)E<@ N1C$Q '9?8VAA<E]M96UB97( =E]S:&]R
M=%]M96UB97( =E]I;G1?;65M8F5R '9?;&]N9U]M96UB97( =E]F;&]A=%]M
M96UB97( =E]D;W5B;&5?;65M8F5R '1?=6YI;VX =E]C:&%R7VUE;6)E<@!V
M7W-H;W)T7VUE;6)E<@!V7VEN=%]M96UB97( =E]L;VYG7VUE;6)E<@!V7V9L
M;V%T7VUE;6)E<@!V7V1O=6)L95]M96UB97( +D8Q,P!V7V-H87)?;65M8F5R
M '9?<VAO<G1?;65M8F5R '9?:6YT7VUE;6)E<@!V7VQO;F=?;65M8F5R '9?
M9FQO871?;65M8F5R '9?9&]U8FQE7VUE;6)E<@!V7V-H87)?9G5N8P!V7W-I
M9VYE9%]C:&%R7V9U;F, =E]U;G-I9VYE9%]C:&%R7V9U;F, =E]S:&]R=%]F
M=6YC '9?<VEG;F5D7W-H;W)T7V9U;F, =E]U;G-I9VYE9%]S:&]R=%]F=6YC
M '9?:6YT7V9U;F, =E]S:6=N961?:6YT7V9U;F, =E]U;G-I9VYE9%]I;G1?
M9G5N8P!V7VQO;F=?9G5N8P!V7W-I9VYE9%]L;VYG7V9U;F, =E]U;G-I9VYE
M9%]L;VYG7V9U;F, =E]F;&]A=%]F=6YC '9?9&]U8FQE7V9U;F, ;&EN:P!N
M97AT &QI;FMF=6YC '-T=69F '1U7VQI;FL ;F5X= !L:6YK9G5N8P!S='5F
M9@ N1C(Y ')E9 !G<F5E;@!B;'5E &-O;&]R<P!Y96QL;W< <'5R<&QE '!I
M;FL +D8S,0!C:&5V>0!F;W)D &-A<G, 8FUW '!O<G-C:&4 +D8S,P!&04Q3
M10!44E5% &)O;VQE86X 8G9A;', 9F%L<V4 =')U90!B;V]L96%N,@!M:7-O
M<F1E<F5D '1W;P!O;F4 >F5R;P!T:')E90!M86EN !G96XO<W1U8F9P97-T
M87)T+F, 7U]R96%D96YV7W-I9V9P90 8W1Y<&4N8P!F:7)S=%]C86QL %]S
M971C:')C;&%S<P 9V5N+V-U97AI="YC &5X:70 &=E=&5N=BYC &=E=&5N
M=@!N=FUA=&-H !G96XO<W1R8W!Y+G, <W1R8W!Y #$D,# P,# P,# P, D
M9&]C:#, )&1O8V@R "1D;V-H,0 D9&]C:# '-Y<R]?;W!E;BYS %]O<&5N
M #DD,# P,# P,# P, +V)A8F$O8WEP<F5S<R]U<W(O:6YC;'5D92]S>7,N
M<P +V)A8F$O8WEP<F5S<R]U<W(O:6YC;'5D92]S>7,O<WES8V%L;"YH !S
M>7,O7W)E860N<P!?<F5A9 Y)# P,# P,# P,# &=E;B]B8V]P>2YS &UE
M;6-P>0!G;V9O<G=A<F1S &9O<G=A<F1S7V)Y=&5C;W!Y #DY)# P,# P,# P
M,# <F5T &9O<G=A;&EG;F%B;&4 9F]R=U]C;W!Y,@!F;W)W7V-O<'DS &9O
M<G=A<F1S &9O<G=A<F1S7S,R &9O<G=A<F1S7S$V &9O<G=A<F1S7S0 9V]B
M86-K=V%R9', 8F%C:W=A<F1S7V)Y=&5C;W!Y #DY)# P,# P,# P,#$ 8F%C
M:V%L:6=N86)L90!B86-K7V-O<'DR &)A8VM?8V]P>3, 8F%C:W=A<F1S &)A
M8VMW87)D<U\S,@!B86-K=V%R9'-?,38 8F%C:W=A<F1S7S0 '-Y<R]?8VQO
M<V4N<P!?8VQO<V4 .20P,# P,# P,# P !A=&5X:70N8P!?7VYE>'1F;@!?
M7V5X:71?9FYS &%T97AI= !?7V-A;&Q?97AI=&9N<P 9FQS8G5F+F, 7V-L
M96%N=7 9F-L;W-E &9F;'5S: !?9FQS8G5F %]X9FQS8G5F %]W<G1C:&L
M7V9I;F1B=68 7V)U9G-Y;F, '-Y<R]E>&ET+G, 7V5X:70 &-R="]C97)R
M;W(N<P!?8V5R<F]R !D871A+F, &UP7V1E9BYC !M86QL;V,N8P!A;&QO
M8W, 86QL;V-P &%L;&]C= !A;&QO8W@ 86QL;V-E;F0 ;6%L;&]C &9R964
M<F5A;&QO8P <WES+U]L<V5E:RYS %]L<V5E:P Y)# P,# P,# P,# '-Y
M<R]?=W)I=&4N<P!?=W)I=&4 .20P,# P,# P,# P !?;W-E<G)O<BYC %]O
M<V5R<F]R %]S971O<V5R<F]R !?:7-A='1Y+F, 7VES871T>0 <WES+U]S
M8G)K+G, 7W-B<FL 97)R %]B<FL ,20P,# P,# P,# P !S>7,O7VEO8W1L
M+G, 7VEO8W1L #DD,# P,# P,# P, 8W)T;FEN:70N<P 7V5N=FER;VX
M96YV:7)O;@!?7T%R9V, 7U]!<F=V &5R<FYO %]?<W1A<G0 7V=P %]?:7-T
M87)T %]?<F5A9&5N=E]S:6=F<&4 7W-E=&-H<F-L87-S &UA:6X 97AI= !?
M;6]N8V]N=')O; !?;6-O=6YT %]S<')O8VUO;G-T87)T '9?8VAA<@!V7W-I
M9VYE9%]C:&%R '9?=6YS:6=N961?8VAA<@!V7W-H;W)T '9?<VEG;F5D7W-H
M;W)T '9?=6YS:6=N961?<VAO<G0 =E]I;G0 =E]S:6=N961?:6YT '9?=6YS
M:6=N961?:6YT '9?;&]N9P!V7W-I9VYE9%]L;VYG '9?=6YS:6=N961?;&]N
M9P!V7V9L;V%T '9?9&]U8FQE '9?8VAA<E]A<G)A>0!V7W-I9VYE9%]C:&%R
M7V%R<F%Y '9?=6YS:6=N961?8VAA<E]A<G)A>0!V7W-H;W)T7V%R<F%Y '9?
M<VEG;F5D7W-H;W)T7V%R<F%Y '9?=6YS:6=N961?<VAO<G1?87)R87D =E]I
M;G1?87)R87D =E]S:6=N961?:6YT7V%R<F%Y '9?=6YS:6=N961?:6YT7V%R
M<F%Y '9?;&]N9U]A<G)A>0!V7W-I9VYE9%]L;VYG7V%R<F%Y '9?=6YS:6=N
M961?;&]N9U]A<G)A>0!V7V9L;V%T7V%R<F%Y '9?9&]U8FQE7V%R<F%Y '9?
M8VAA<E]P;VEN=&5R '9?<VEG;F5D7V-H87)?<&]I;G1E<@!V7W5N<VEG;F5D
M7V-H87)?<&]I;G1E<@!V7W-H;W)T7W!O:6YT97( =E]S:6=N961?<VAO<G1?
M<&]I;G1E<@!V7W5N<VEG;F5D7W-H;W)T7W!O:6YT97( =E]I;G1?<&]I;G1E
M<@!V7W-I9VYE9%]I;G1?<&]I;G1E<@!V7W5N<VEG;F5D7VEN=%]P;VEN=&5R
M '9?;&]N9U]P;VEN=&5R '9?<VEG;F5D7VQO;F=?<&]I;G1E<@!V7W5N<VEG
M;F5D7VQO;F=?<&]I;G1E<@!V7V9L;V%T7W!O:6YT97( =E]D;W5B;&5?<&]I
M;G1E<@!V7W-T<G5C=#$ =E]S=')U8W0R '9?=6YI;VX =E]U;FEO;C( =E]C
M:&%R7V9U;F, =E]S:6=N961?8VAA<E]F=6YC '9?=6YS:6=N961?8VAA<E]F
M=6YC '9?<VAO<G1?9G5N8P!V7W-I9VYE9%]S:&]R=%]F=6YC '9?=6YS:6=N
M961?<VAO<G1?9G5N8P!V7VEN=%]F=6YC '9?<VEG;F5D7VEN=%]F=6YC '9?
M=6YS:6=N961?:6YT7V9U;F, =E]L;VYG7V9U;F, =E]S:6=N961?;&]N9U]F
M=6YC '9?=6YS:6=N961?;&]N9U]F=6YC '9?9FQO871?9G5N8P!V7V1O=6)L
M95]F=6YC '-?;&EN:P!U7VQI;FL <')I;6%R>0!N;VYP<FEM87)Y &-L=6YK
M97( <W!O<G1S8V%R %]C='EP90!G971E;G8 <W1R8W!Y %]O<&5N %]R96%D
M &UE;6-P>0!?8VQO<V4 7U]T<F%P7V9P95]O=F5R<FED90!?7V-A;&Q?97AI
M=&9N<P!?8VQE86YU< !?97AI= !?8V5R<F]R &%T97AI= !?8G5F96YD=&%B
M %]I;V( 7W-P<F]C960 7VQA<W1B=68 7W-I8G5F %]S;V)U9@!?<VUB=68
M9F9L=7-H &9C;&]S90!F<F5E %]L<V5E:P!?>&9L<V)U9@!?9FQS8G5F %]W
M<FET90!?=W)T8VAK %]B=69S>6YC %]S971O<V5R<F]R %]F:6YD8G5F &UA
M;&QO8P!?:7-A='1Y %]L;V-K %]U;&]C:P!?;FQO8VL 7VEL;V-K %]F;&]C
M:P!?=VQO8VL 7V-L;V-K %]T;&]C:P!?8W1L;V-K %]D;&]C:P!?8V%S %]U
M<U]R<W1H<F5A9%]S=&1I;P!?<V)R:P!?8G)K ')E86QL;V, 7V]S97)R;W(
M7VEO8W1L &5N9 !?;6EN8G)K %]C=7)B<FL 7V5N9 $ !P $
M 0 + "$ 0 $
M %&8 ? $ !P $ ! ) L "
M $ 0 4 %'8 $ !
MP $ !D (0 T " $ 0
M H %'8 $ !P $ "% #0 \
M " \ !'8
M $ "4 $ "2 #?0 !$ "* (0 ,\
M $ \ 0 !&@ ! ! 0 !\ _ $ %D $ 0/
M )0 )L $ \ ( 3 $ $J #P !$
M ! 8 %X ! $ %H $ 0T (0 )\ % \@
M #L 4 $ $Y #P !( ! 8 %\ 7 $ &
MD $ 15 $P *0 $ !+0 T 5 $ %(
M #P !, ! 8 '8 , $ &T $ 1H &0 *@
M & !.@ $ 6 ( %7 $0 !0 ! 8
M (( 0 $ 'T $ 2! /@ *X ) !>@ "H
M 8 $ %H ! !4 %&8 )( J $ (@ $ 2_
M ( +< % !I @ 9 $ %L ! !H
M %&8 +P % $ (@ $ 3? (0 +P "
M ! $ !\ %'8 $ (
M@ $ 4 *0 +X " ! $
M "0 %'8 $ (H $ 4I ( ,
M % !K @ : $ %P ! "D %&8
M ,$ % $ (P $ 5) !% ,4 9 !M ,8
M ; $ %T ! "X %&8 ,8 "T $ +T $ 9=
M (@ -X % ">@ @ < $ %X ! #,
M %&8 7H % $ +\ $ 9_ - ., ( "@@
M "P = ( %\ $0 #@ ! 8 7\ ( $ ,
MH $ :S 3 .L 2 "K@ B( ? @ &-
M '0 #D ! 8 8< "; $ 5, $ ;_ $@ /T
M $ $T 0 G $ &J ! #H %&8
M B( " $ 50 $ <1 %@ 0$ $ $U 0
M H $ &N ! #\ #&8 B0 # $ 54 $ <G
M " 04 " &R #0 $(
M ! 8 $ 54 $ <O "@ 0< "
M &_ #0 $, ! 8 $ 5
M4 $ <Y 0P 0D - $V 1L I , ',
M $P $0 ! 8 B< !N $ 9P $ =\ (@ 18
M % %\P @ L $ '? ! $4 %&8
M I4 % $ 9X $ >> (@ 1L % %^P @
M M $ 'C ! $H %&8 IH % $ : $ ?
M (0 2 & & P 8 N ( 'G $0 $\
M ! 8 I\ # $ :( $ ?A $P 28 $ &"0
M !4 P $ 'X #P % ! 8 J( ) $ :
M@ $ ?T *0 2H ( &'@ !H Q ( ('
M " %$ %&8 JL 0 $ :\ $ @= (@ 3(
M % &. @ S $ (/ ! %8 %&8
M KL %$$ ;$ $ @_ # 3< "
M %L !'8 $ !
M @ ( 0 $ " @ ! 0 (
M " P 0 % !@ < ( "0 ( " 0
M $ * 0 ( + # H ! @ L ,
M"@ $ " "P P - 0 ( + # X "
M @ $ ! #P $ " "P P 0 $0 !(
M ! @ L , $P $ " % !4 6 %P
M $ " "P P 8 0 ( + # !D :
M&P $ " "P P < 0 ( + # !T
M ! "K %K___ D0 JP!:___P 1$ ,$ 7/__\
M &! #!0%S___ !\0 P8!<___P E $ !P!@@
M ( +1 BH 4K___ P #$ 0!L<%L___P 4 Z $ %
MD!@@ $ & 2P! !: 8( " ! %@ 0 .L&" A0 < !=
M $ &D!@@ $ 8@! B@8( $ &X 0 (P&" !@
M !V $ "/!@@ @ $ A1 "Q %P ( ! (P0 L1!< "
M 0 ":$ +$@7 @ $ JA "Q0%P # ! +(0 L6!<
M P 0 #!$ +& 7 D $ TA "QP%P $ ! -@0 L@
M!< ! 0 #E$ +) 7 H $ ]! "R@%P % ! /L0
M LL!< !0 0 $)$ +, 7 L $ !&1 "S0%P & !
M 2$0 LX!< !P 0 $J$ +0 7 T $ !-Q "T(%P 3
M! 4L0 M$!< &0 0 %A$ +2 7 !\ $ !;Q "TP%P E
M ! 800 M0!< *P 0 &;$ +6 7 #$ $ !IQ "V %
MP W ! ;H0 MH!< /0 0 '/$ +< 7 $, $ !W!
M"W@%P !) ! ? 0 N !< 3P 0 (&$ +B 7 %4 $ "
M%! 8_ $8 !; ! B,0 N0!< 80 0 (R$ +E 7 &( $
M "2! "Y@%P !C ! F 0 N<!< 9 0 )P$ +H 7 &4
M $ "AQ "Z0%P !F ! J 0 NH!< 9P 0 *N$ +K 7
M &@ $ "PQ "[ %P !I ! MH0 NT!< :@ 0 +I$ +
MN 7 &L $ "_Q "[P%P !L ! Q<0 O !< ;0 0 ,G
M$ +Q 7 &X $ #.! 8\ $8 !R ! T(0 &/8!& > 0
M -,$ +R 7 'X $ #5! "] %P "$ ! UT 0 )0&" (0
M 0 -I $ ":!@@ "4 $ #? ! H 8( I ! Y$ 0 *8&"
M+0 0 .> $ "L!@@ #$ $ #L@! L@8( U ! \@ 0 +@
M&" .0 0 /3 $ "^!@@ #T $ #Y0! Q 8( !! ! _D
M0 ,H&" 10 0 0% $ #0!@@ $D $ $& ! U@8( !- !
M!"T 0 -P&" 40 0 0Z $ #C!@@ %4 $ $2! "]@%P "^
M! !$\0 &,P!& W 0 16$ +W 7 .4 $ $7A "^ %P #N
M ! !&D0 OD!< ]@ 0 1Q$ +Z 7 /X & $>Q $
M3___ " !(( 0 ;0&" 0 D 2) $ 'T!@@ $ * $D !
M"( 8( ! #0 !)8 0 B@&" 0 X 2< $ (P!@@ $ / $
MHP! "] 8( ! !P !*H0 K0!:___P ! 2^ $ ,.!@@ 4 1
M $S0! #* 8( ! $@ !-8 0!4P&" 0 !, 3< $ 50!@@ $
M 0 $Y ! "_ 8( # % !.L0 *@!$___P !0 3V$ $- 1/
M__\ 5 $^Q "P %K___ % !000 KP!:___P !0 4-$ 0
M 1O__\ 4 %%! 0 $;___ % !1L0 & (!&___P !$ 4B
M $ -V!@@ 4 1 %*0! #1@8( # %@ !3 0!AH&" " !<
M 4U $ 9P!@@ $ 1 %/ ! $5 8( ) $0 !44 0 \@&" !P
M !@ 5- $ 9X!@@ $ 1 %5 ! $F@8( + $0 !5P 0!38&"
M#P !D 5E $ :#!@@ , 1 %<0! $W08( - %@ !7H 0!50
M&" !@ !H 6! $ :(!@@ $ 5 %B1 #!P%S___ %0 !8\0
M P@!<___P !4 66$ ,) 7/__\ 5 %G1 #"@%S___ %0
M!:00 PL!<___P !4 6K$ ,, 7/__\ 5 %LA ##0%S___
M%0 !;D0 PX!<___P !4 7 $ ,/ 7/__\ 5 %R! #$ %S___
M %0 !<\0 Q$!<___P !4 74$ +! 6O__\ ; %YP! &H 8
M( ! &P !>T 0!JP&" ! !8 7R $ 8J!@@ H 9 %^@!
M&@ 8( ! ' !@, 0!KP&" 0 !L 8*$ "G0!1O__\ ; &
I#A "H $3___ &P !A80 J$!$___P __\ 8>$ "G0!1O__\;
end

View File

@ -1,732 +0,0 @@
begin 777 sparc-aout
M@0,!"P ( " #YP " @ "\$" T .@0)(#H$25
M*B "E *@!)0"0 H7 0U"+@H , C" &((@) 0* 0! 0 "@$
M ! @$ 0 $ -6<(Z @0 ( P$ ! @$ 0 )WCOV@O (KA7B
M*!$ B0$B(,0 2Y(0( "L$ (D@.@7$ $N4$" @@*(@(!* $\!
MPA.@7H"@80L2@ !+ 0 .@#H&#" Z!DX@.@:*0% &2!( 1+P "*X5XDB0
M$" E! @!1<@ "6$N "F! %D #2:$" IA ") " !32 Z!DE! @!Q<@
M "6$N 2F! %D "N:$ 4+P "*X5XG01 (D!(B&T ".2$" JA
M",(#H&B D ! H "R\ BN%>)(D 3 $I(0 !&4$" '%R )82X!*8$ 5
M0 %YH0( #" Z!PH 3 >8CH'SJ(Z" [".@A , C" &((PB.@B , !#"
M &"@PB.@C , B"$&!DPB.@D) 0( &?Q DA @?(''X B!Z $( !H(0
M( 40@ $@A @1Q" *"$" #D= @ J 0! @</@" $ "0$" "D@7@
M!-0%P ""$" $D= @ ) 0('^"$" !D= @ 0 O=7-R+VQI8B]L9"YS;P O
M9&5V+WIE<F\ &6-R=# Z(&YO("]U<W(O;&EB+VQD+G-O"@
M F8W)T,#H@+W5S<B]L:6(O;&0N<V\@;6%P<&EN9R!F86EL=7)E"@
M !1C<G0P.B!N;R O9&5V+WIE<F\* "=X[^0L! @ #" &!Q^ (@>@
M )WCOY"P$" ,( 8''X B!Z G>._D+ 0( P@ !@<?@"('H "=X[^0
ML! @ #" &!Q^ (@>@ )WCOY"P$" ,( 8''X B!Z G>._D+ 0( P
M@ !@<?@"('H "=X[^0L! @ #" &!Q^ (@>@ )WCOY"P$" ,( 8''
MX B!Z G>._D+ 0( P@ !@<?@"('H "=X[^0L! @ #" &!Q^ (@>@
M )WCOY"P$" ,( 8''X B!Z G>._D+ 0( P@ !@<?@"('H
MG>._D!$ C! B. ,( 8''X B!Z G>._D!$ !#!&B"H,( 8''X B!
MZ 0L@ )WCOWA #D 0 !$ !# *B,0$0 $)(0( '2*B)8$0 $)(0
M( +2*B%X$0 $)(0( /2,B$P$0 $)(0( 32,B$($0 $)(0( 72,B'@$0
M$)(0( ;2(B'($0 $)(0( ?2(B&@$0 $)(0( C2(B$ $0 $)(0( G2(B,(
M$0 $)(0( K2(B)($0 $)(0( O2(B%@$0 $!, C4 F.TU"(A*!$ ! 3
M 0U!I@L-0Z(8@1 0$P $-0*8Q#4*B&P$0 $!, !#4"F)8U"HAF!$
M ! 3 0U IA>-0J(.@1 0$P $-0283#4,B)H$0 $!, !#4$F$(U#(B
M,!$ ! 3 0U!)AX-0R(5@1 0$P $-0"8<C4(B% $0 $!, !#4 F&@
MU"(A.!$ ! 3 0U )A -0B(B@1 0$P $-0"8PC4(B&H$0 $!, !#4
M F)(U"(AD!$ ! 3 0U )A8-0B(. 1 0$P $-0"82C4(B)@$0 $!,
M !#4&F&(U#HA$!$ ! 5 0DA*C$-(B(/@1 0%0 $)(2HEC2(B#8$0
M$!4 !"2$J%XTB(AP!$ ! 5 0DA*A,-(B(7 1 0%0 $)(2H0C2(B%0
M$0 $!4 !"2$J'@TB(C !$ ! 5 0DA*AR-(B(E 1 0%0 $)(2H:#2
M(B(@$0 $!4 !"2$J$ TB(A2!$ ! 5 0DA*C"-(B(/ 1 0%0 $)(2
MHDC2(B#0$0 $!4 !"2$J%@TB(AN!$ ! 5 0DA*A*-(B(6@1 0%0
M$)(2H8C2(B'8$0 $)(0( +2(B#($0 $)(0( +2(B(X$0 $)(0( '2(B'0
M$0 $)(0( '2(B'H$0 $!, !#4 F) U"(B<!$ ! 3 0U!)A(-0R(8"!
MQ^ (@>@ )WCOY 1 0U (C(("BO_\2@ -DA(C(- "8 2 HB H "900
M( "6 F $DA @ )("8 30 D +@*(@ !*___V4 J !DI* 2 H1 0HA(C
M(*$J8 +0! 1G\( * $/_R I" -+___= $ !&!Q^ (@>@ )WCOY 1 0
MT@(C'("B8 "@ )H!(C'- $ "?P@ H 0@!- $ " HB $K__^P$ 1
M )D!(BB$ !E62$" @<?@"('H "=X[^0$P $- "8+R HB $H !) 0
M( %____GT")@O(''X B!Z 0&P 26____Q 0'@ F6____
MM 0(0 66____K 0) $V6____3 4 6 2@
M & H 7 ! !D ) 50 T A (@ "T
M G 1_____\ -@ #_____ $$ !@
M #X " %0 P R *@ K ,P "0 U
M!P "0 ! ( , : " #@ + , X <
M #P !L 0 )0 !$ = $@ !X 3 'P !0
M Y %0 "( 6 *P !< !& & ", 9 ,0
M !H G &P "8 < * !T J '@ "D ?
M/P " !! (0 "P C +P "4 N )@ H
M "D [ + #8 M -P "X T +P #T
M P .@ #$ !/ ,@ S 0@ #0 -0
M $4 W / #@ ! .0 Z #L !4
M/ %( ] 0P #X !$ /P $D ! 2 $(
M 0P !$ 30 $4 !* 1@ $P !' 2P $@
M !0 20 $X !+ 40 $P !3 30 !.
M $\ 4 !1 %( 4P !0 '
MC ,[@ '!P &X0 0,@ ."0 %S 0R@ 3!0 %#@ (" 9
M 0 #8@ E 0 &X@ L!0 #?@ ([@ R!P %<@ 0*
M [!P '.0 0 !% 0 #H !+!0 \P (QP !>!0 'KP
M(P@ !J"0 'SP 0,@ !S!0 "@P (O0 "*"0 &] 0- "A"0 #
M^@ 0-@ "X"0 '3P 0. #/"0 $:0 0.@ #F"0 "K@ 0/ #V
M"0 (4@ 0/@ $&"0 &@ 00 $6"0 3 00@ $F"0 N0 01
M $V"0 'Q@ 02 $_"0 &R 02@ %("0 'F@ 03 %1!0 $DP
M(U@ %E!0 ';P (J0 %Y"0 " P 03@ &-!0 SP (T0 &:!0 #
MJP (I &G"0 &W0 04 &T!0 $I@ )TP &\"0 (A 04@ '4
M"0 &% 05 'L"0 %(P 05@ ($"0 $V0 06 (5"0 "]@ 06@
M (F"0 &)@ 07 (W"0 $9@ 07@ )("0 '( 08 )2"0 %:P
M08@ )<!0 $Q0 (S )Q!0 $=P (N *&"0 I0 09 *;"0 &
M70 09@ *P!0 %)P (X0 *^!0 %C0 (LP +,"0 (1 0: +:
M"0 !NP 0:@ +H"0 '<P 0; +V"0 'P@ 0;@ ,/"0 $R 0<
M ,H"0 '\ 0<@ ,O"0 "^ 0= ,Z"0 '1 0=@ -,"0 !V@
M0> ->"0 $G@ 0>@ -G"0 '*P 0? -R"0 '+ 0@@ -]!0 #
MF0 (VP .3!0 &=0 (K@ .I"0 #S@ 0B ._"0 !"0 0B@ /5
M"0 ;0 0C /K"0 "=P 0C@ /W"0 '10 0D /_!0 $G0 (YP
M 0."0 (80 0D@ 0="0 %^@ 0E 0L"0 '[@ 0E@ 0["0 !S0
M0F 1*"0 "F0 0F@ 19"0 'A0 0G 1A"0 'K 0P 1["0 '
MN0 0P@ 2#"0 '1@ 0Q 2+ 0 &= 24!P "F 0, 2F
M"0 '<0 0Q@ 2U"0 "TP 0R 3$!0 &>0 )P 37!0 &B0 )H@
M 3J!P %H 0+A?971E>'0 7V5D871A %]E;F0 <W1A<G0 <W1A<G1?9FQO
M870 7U]E>&ET %]M86EN %]E;G9I<F]N %]?1%E.04U)0P!?97AI= !?=E]S
M:6=N961?:6YT7V9U;F, 7W9?:6YT7V9U;F, 7W!R:6UA<GD 7W9?=6YS:6=N
M961?<VAO<G1?9G5N8P!?=E]S:6=N961?;&]N9U]P;VEN=&5R %]V7W-I9VYE
M9%]C:&%R7W!O:6YT97( 7W9?=6YS:6=N961?;&]N9U]A<G)A>0!?=E]U;G-I
M9VYE9%]C:&%R7V%R<F%Y %]V7VQO;F=?<&]I;G1E<@!?=E]C:&%R7W!O:6YT
M97( 7W9?=6YS:6=N961?:6YT %]V7W-I9VYE9%]S:&]R= !?=E]D;W5B;&5?
M87)R87D 7W9?=6YI;VX 7W9?9FQO870 7W9?<VAO<G0 7W9?<VEG;F5D7VQO
M;F=?9G5N8P!?=E]S:6=N961?8VAA<E]F=6YC %]V7W-I9VYE9%]I;G1?87)R
M87D 7W9?;&]N9U]F=6YC %]V7V-H87)?9G5N8P!?=E]I;G1?87)R87D 7U]?
M;6%I;@!?=E]U;G-I9VYE9%]I;G1?<&]I;G1E<@!?=E]S:6=N961?<VAO<G1?
M<&]I;G1E<@!?=E]U;G-I9VYE9%]S:&]R=%]A<G)A>0!?=E]U;G-I9VYE9%]L
M;VYG %]V7V9L;V%T7W!O:6YT97( 7W9?<VAO<G1?<&]I;G1E<@!?=E]U;G-I
M9VYE9%]C:&%R %]V7W5N:6]N,@!?=E]D;W5B;&4 7W9?=6YS:6=N961?:6YT
M7V9U;F, 7W9?<VEG;F5D7W-H;W)T7V9U;F, 7W9?<VEG;F5D7VQO;F=?87)R
M87D 7W9?<VEG;F5D7V-H87)?87)R87D 7W9?9FQO871?9G5N8P!?=E]S:&]R
M=%]F=6YC %]V7W-I9VYE9%]I;G0 7W9?;&]N9U]A<G)A>0!?=E]C:&%R7V%R
M<F%Y %]V7W5N<VEG;F5D7VQO;F=?<&]I;G1E<@!?=E]U;G-I9VYE9%]C:&%R
M7W!O:6YT97( 7W9?:6YT %]S<&]R='-C87( 7W9?9&]U8FQE7W!O:6YT97(
M7W9?=6YS:6=N961?<VAO<G0 7V-L=6YK97( 7W9?<W1R=6-T,0!?=E]S=')U
M8W0R %]V7W5N<VEG;F5D7VQO;F=?9G5N8P!?=E]U;G-I9VYE9%]C:&%R7V9U
M;F, 7W9?<VEG;F5D7VEN=%]P;VEN=&5R %]V7W5N<VEG;F5D7VEN=%]A<G)A
M>0!?=E]S:6=N961?<VAO<G1?87)R87D 7VYO;G!R:6UA<GD 7W-?;&EN:P!?
M=E]D;W5B;&5?9G5N8P!?=E]S:6=N961?;&]N9P!?=E]I;G1?<&]I;G1E<@!?
M=E]S:6=N961?8VAA<@!?=E]F;&]A=%]A<G)A>0!?=E]S:&]R=%]A<G)A>0!?
M=5]L:6YK %]V7W5N<VEG;F5D7W-H;W)T7W!O:6YT97( 7W9?;&]N9P!?=E]C
M:&%R %]O;E]E>&ET %]?97AI=%]D=6UM>5]D96-L %]?7T-43U)?3$E35%]?
M %]?7T143U)?3$E35%]? %]?7V1O7V=L;V)A;%]C=&]R<P!?7U]D;U]G;&]B
M86Q?9'1O<G, 7U]E>&ET7V1U;6UY7W)E9@ "]U<W(O;&]C86PO;&EB
M+V=C8RUL:6(O<W5N-"\R+C$O.B]U<W(O;&]C86PO;&EB+P 3
MD( 0 & &,
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M # ! # 0"0 3
M@ $T@ $!< ! 8 !W@ >H *6 5 .2 !0 "
M / 0 # @<!@ $ "=X[^@?____ $ "=X[^@?___^0$ &=
MX[^@?___]@$ *=X[^@?___\P$ , $!I
M ! P
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M 0& ! X$ @( !4$ BD !T$
M BD "QD BD %5D BD %V
M '^ )& +B -&
M .^ 0V 2> 4F
M 6R 8F :6 ;>
M <J >* >Z
M HB !$ !Y BD !$ !Y BE !$ !Y B
MG QHD BD !$ !Z BI !$ !Z BJ !$ !Z
M BL RDD BI !$ ![ BN !$ ![ BO !$
M ![ BQ T D BN !$ !] BS !$ !] BT
M !$ !] BV UDD BS !$ !^ BX !$ !^ B
MY !$ !^ B[ VDD BX !$ !_ B] !$ !_
M B^ !$ !_ C X D B] !$ "! C" !$
M "! C# !$ "! C% YDD C" !$ "" C'
M !$ "" C( !$ "" C* Z<D C' !$ "# C
M, !$ "# C- !$ "# C/ [PD C, !$ "%
M C1 !$ "% C2 !$ "% C4 ],D C1 !$
M "& C6 !$ "& C7 !$ "& C9 ^(D C6
M !$ "' C; !$ "' C< !$ "' C> _@D C
M; !$ ") CA !$ ") CB !$ ") CE !! D
M CA !$ "* CG !$ "* CH !$ "* CK !"$D
M CG !#. !)^ !-^
M!0: !2* !4" !5R
M !6F !$ "R CN !$ "U CQ !$ "V
M CS !$ "W CV !$ "Y CY !$ "Z C\ !$
M "[ C_ !$ "] D" !$ "^ D% !$ "_ D(
M !$ #! D+ !$ #" D. !$ ## D1 !$ #% D
M4 !$ #& D8 !$ #) D< !$ #* D@ !$ #+
M DD !$ #- DH !$ #. DL !$ #/ DP !$
M #1 DT !$ #2 DX !$ #3 D\ !$ #5 E
M !$ #6 E$ !$ #7 E( !$ #9 E, !$ #: E
M0 !$ #< E4 !$ #= E8 !$ #> E< !$ #@
M E@ !$ #A ED !$ #B EH !$ #D EL !$
M #E EP !$ #F ET !$ #H EX !$ #I E\
M !$ #J F !$ #L F$ !$ #M F( !$ #O F
M, !$ #P F/ !$ #Q F2 !$ #R F5 !$ #T
M F8 !$ #V F< !$ #W F@ !$ #W F@ !98D
M CN !9X@ !:@@ !;H@
M!<X@ !=D@ !>L@ !?\@
M !@@@ !A@@ !BH@ !C0@
M !D4@ !E@@ !F0@ !G$@
M !HP@ !J\@ !M0@
M!O @ !PD@ !RX@ !T@@
M !U\@ !X(@ !YT@ ![4@
M !]D@ !_8@ "!0@ ""H@
M "$@@ "&@@ "'\@
M")H@ "+H@ ",\@ ".@@
M "08@ "1P@ "38@ "54@
M "6T@ "88@ "90@ "B\@
M "CL@ "LX@ "MD@
M"N0@ "P@@ "Q<@ "S4@
M "T,$ FB "TP$ FB "UL& ! O "VID
M FB "WUD FB "XF "ZN "[V
M "^2 "_V #!N
M##F #%. #'6 #)B
M #+6 #-& #.. #/:
M #0Z #1J #6N #7B
M #8* #8V #;:
M#=R #?$D FB #@<@ #AXD G
M #C0D G3 #C\$ G> #D<$ G> #E9D
M G> #FED G> #G6 #I> #JF
M #M" #NF #P>
M#R6 #S^ #V& #X2
M #Z& #[V #\^ #^*
M #_J $ : $%> $&2
M $&Z $'F $**
M$,B $-T@ $/$@ $0X@
M $2 $ G> $21D G> !$ /__ G> $2L% >,
M SN $3(' ;A ! R $3D) 7, !#* $3X% 4. @( $40%
M -^ CN $4H' 5R ! H $5,% #S C' $68% >O C"
M$7() ?/ ! R $7L% *# B] $9() ;T ! T $:D) /Z !
MV $< ) =/ ! X $=<) 1I ! Z $>X) *N ! \ $?X) A2
M ! ^ $@X) : !! $AX) !, !!" $BX) "Y !!$ $CX)
M ?& !!( $D<) ;( !!* $E ) >: !!, $ED% 23 C6
M$FT% =O BI $H$) (# !!. $I4% #/ C1 $J(% .K B
MD $J\) ;= !!0 $KP% 2F G3 $L0) B$ !!2 $MP) 84
M !!4 $O0) 4C !!6 $PP) 39 !!8 $QT) +V !!: $RX)
M 8F !!< $S\) 1F !!> $U ) <@ !!@ $UH) 5K !!B
M$V0% 3% C, $WD% 1W BX $XX) "E !!D $Z,) 9= !!
MF $[@% 4G CA $\8% 6- BS $]0) A$ !!H $^() &[
M !!J $_ ) =S !!L $_X) ?" !!N %!<) 3( !!P %# )
M ?P !!R %#<) +X !!T %$() =$ !!V %%0) ': !!X
M%&8) 2> !!Z %&\) <K !!\ %'H) <L !"" %(4% .9 C
M; %)L% 9U BN %+$) /. !"( %,<) $) !"* %-T) !M
M !", %/,) )W !". %/\) =% !"0 %0<% 2= CG %18)
M AA !"2 %24) 7Z !"4 %30) ?N !"6 %4,) '- !"8
M%5() *9 !": %6$) >% !"< %6D) >L !# %8,) >Y !#
M" %8L) =& !#$ %9,' *8 ! P %:4) =Q !#& %;0) +3
M !#( %<,% 9Y G %=8% :) FB %>D' 6@ ! N %?I?
M7T193D%-24, 8W)T,"YO &=D8FUE+F\ 9V-C,E]C;VUP:6QE9"X +VAO;64O
M9VYU+V=D8B]W;W)K+VYE=R]D979O+V=D8G1E<W0O=#$P+P!G9&)M92YC &EN
M=#IT,3UR,3LM,C$T-S0X,S8T.#LR,30W-#@S-C0W.P!C:&%R.G0R/7(R.S [
M,3(W.P!L;VYG(&EN=#IT,SUR,3LM,C$T-S0X,S8T.#LR,30W-#@S-C0W.P!U
M;G-I9VYE9"!I;G0Z=#0]<C$[,#LM,3L ;&]N9R!U;G-I9VYE9"!I;G0Z=#4]
M<C$[,#LM,3L <VAO<G0@:6YT.G0V/7(Q.RTS,C<V.#LS,C<V-SL ;&]N9R!L
M;VYG(&EN=#IT-SUR,3LP.RTQ.P!S:&]R="!U;G-I9VYE9"!I;G0Z=#@]<C$[
M,#LV-34S-3L ;&]N9R!L;VYG('5N<VEG;F5D(&EN=#IT.3UR,3LP.RTQ.P!S
M:6=N960@8VAA<CIT,3 ]<C$[+3$R.#LQ,C<[ '5N<VEG;F5D(&-H87(Z=#$Q
M/7(Q.S [,C4U.P!F;&]A=#IT,3(]<C$[-#LP.P!D;W5B;&4Z=#$S/7(Q.S@[
M,#L ;&]N9R!D;W5B;&4Z=#$T/7(Q.S@[,#L =F]I9#IT,34],34 =%]S=')U
M8W0Z5#$V/7,R-'9?8VAA<E]M96UB97(Z,BPP+#@[=E]S:&]R=%]M96UB97(Z
M-BPQ-BPQ-CMV7VEN=%]M96UB97(Z,2PS,BPS,CMV7VQO;F=?;65M8F5R.C,L
M-C0L,S([=E]F;&]A=%]M96UB97(Z,3(L.38L,S([=E]D;W5B;&5?;65M8F5R
M.C$S+#$R."PV-#L[ '1?=6YI;VXZ5#$W/74X=E]C:&%R7VUE;6)E<CHR+# L
M.#MV7W-H;W)T7VUE;6)E<CHV+# L,38[=E]I;G1?;65M8F5R.C$L,"PS,CMV
M7VQO;F=?;65M8F5R.C,L,"PS,CMV7V9L;V%T7VUE;6)E<CHQ,BPP+#,R.W9?
M9&]U8FQE7VUE;6)E<CHQ,RPP+#8T.SL =E]C:&%R7V9U;F,Z1C( =E]S:6=N
M961?8VAA<E]F=6YC.D8Q, !V7W5N<VEG;F5D7V-H87)?9G5N8SI&,3$ =E]S
M:&]R=%]F=6YC.D8V '9?<VEG;F5D7W-H;W)T7V9U;F,Z1C8 =E]U;G-I9VYE
M9%]S:&]R=%]F=6YC.D8X '9?:6YT7V9U;F,Z1C$ =E]S:6=N961?:6YT7V9U
M;F,Z1C$ =E]U;G-I9VYE9%]I;G1?9G5N8SI&- !V7VQO;F=?9G5N8SI&,P!V
M7W-I9VYE9%]L;VYG7V9U;F,Z1C, =E]U;G-I9VYE9%]L;VYG7V9U;F,Z1C4
M=E]F;&]A=%]F=6YC.D8Q,@!V7V1O=6)L95]F=6YC.D8Q,P!L:6YK.E0Q.#US
M,34R;F5X=#HQ.3TJ,3@L,"PS,CML:6YK9G5N8SHR,#TJ,C$]9C$Y+#,R+#,R
M.W-T=69F.C(R/6%R,3LP.S [,C,]87(Q.S [,3LR-#UA<C$[,#LR.S$V+#8T
M+#$Q-3([.P!T=5]L:6YK.E0R-3UU,30T;F5X=#HQ.2PP+#,R.VQI;FMF=6YC
M.C(P+# L,S([<W1U9F8Z,C(L,"PQ,34R.SL 8V]L;W)S.E0R-CUE>65L;&]W
M.C L<'5R<&QE.C$L<&EN:SHR+#L 8V%R<SI4,C<]96)M=SHP+'!O<G-C:&4Z
M,2P[ &)O;VQE86XZ=#(X/65&04Q313HP+%12544Z,2P[ &)V86QS.E0R.3UE
M9F%L<V4Z,"QT<G5E.C$L.P!B;V]L96%N,CIT,CD ;6ES;W)D97)E9#I4,S ]
M971W;SHR+&]N93HQ+'IE<F\Z,"QT:')E93HS+#L ;6%I;CI&,0!V7V-H87(Z
M1S( =E]S:6=N961?8VAA<CI',3 =E]U;G-I9VYE9%]C:&%R.D<Q,0!V7W-H
M;W)T.D<V '9?<VEG;F5D7W-H;W)T.D<V '9?=6YS:6=N961?<VAO<G0Z1S@
M=E]I;G0Z1S$ =E]S:6=N961?:6YT.D<Q '9?=6YS:6=N961?:6YT.D<T '9?
M;&]N9SI',P!V7W-I9VYE9%]L;VYG.D<S '9?=6YS:6=N961?;&]N9SI'-0!V
M7V9L;V%T.D<Q,@!V7V1O=6)L93I',3, =E]C:&%R7V%R<F%Y.D<S,3UA<C$[
M,#LQ.S( =E]S:6=N961?8VAA<E]A<G)A>3I',S(]87(Q.S [,3LQ, !V7W5N
M<VEG;F5D7V-H87)?87)R87DZ1S,S/6%R,3LP.S$[,3$ =E]S:&]R=%]A<G)A
M>3I',S0]87(Q.S [,3LV '9?<VEG;F5D7W-H;W)T7V%R<F%Y.D<S- !V7W5N
M<VEG;F5D7W-H;W)T7V%R<F%Y.D<S-3UA<C$[,#LQ.S@ =E]I;G1?87)R87DZ
M1S,V/6%R,3LP.S$[,0!V7W-I9VYE9%]I;G1?87)R87DZ1S,V '9?=6YS:6=N
M961?:6YT7V%R<F%Y.D<S-SUA<C$[,#LQ.S0 =E]L;VYG7V%R<F%Y.D<S.#UA
M<C$[,#LQ.S, =E]S:6=N961?;&]N9U]A<G)A>3I',S@ =E]U;G-I9VYE9%]L
M;VYG7V%R<F%Y.D<S.3UA<C$[,#LQ.S4 =E]F;&]A=%]A<G)A>3I'-# ]87(Q
M.S [,3LQ,@!V7V1O=6)L95]A<G)A>3I'-#$]87(Q.S [,3LQ,P!V7V-H87)?
M<&]I;G1E<CI'-#(]*C( =E]S:6=N961?8VAA<E]P;VEN=&5R.D<T,STJ,3
M=E]U;G-I9VYE9%]C:&%R7W!O:6YT97(Z1S0T/2HQ,0!V7W-H;W)T7W!O:6YT
M97(Z1S0U/2HV '9?<VEG;F5D7W-H;W)T7W!O:6YT97(Z1S0U '9?=6YS:6=N
M961?<VAO<G1?<&]I;G1E<CI'-#8]*C@ =E]I;G1?<&]I;G1E<CI'-#<]*C$
M=E]S:6=N961?:6YT7W!O:6YT97(Z1S0W '9?=6YS:6=N961?:6YT7W!O:6YT
M97(Z1S0X/2HT '9?;&]N9U]P;VEN=&5R.D<T.3TJ,P!V7W-I9VYE9%]L;VYG
M7W!O:6YT97(Z1S0Y '9?=6YS:6=N961?;&]N9U]P;VEN=&5R.D<U,#TJ-0!V
M7V9L;V%T7W!O:6YT97(Z1S4Q/2HQ,@!V7V1O=6)L95]P;VEN=&5R.D<U,CTJ
M,3, =E]S=')U8W0Q.D<Q-@!V7W-T<G5C=#(Z1S4S/7,R-'9?8VAA<E]M96UB
M97(Z,BPP+#@[=E]S:&]R=%]M96UB97(Z-BPQ-BPQ-CMV7VEN=%]M96UB97(Z
M,2PS,BPS,CMV7VQO;F=?;65M8F5R.C,L-C0L,S([=E]F;&]A=%]M96UB97(Z
M,3(L.38L,S([=E]D;W5B;&5?;65M8F5R.C$S+#$R."PV-#L[ '9?=6YI;VXZ
M1S$W '9?=6YI;VXR.D<U-#UU.'9?8VAA<E]M96UB97(Z,BPP+#@[=E]S:&]R
M=%]M96UB97(Z-BPP+#$V.W9?:6YT7VUE;6)E<CHQ+# L,S([=E]L;VYG7VUE
M;6)E<CHS+# L,S([=E]F;&]A=%]M96UB97(Z,3(L,"PS,CMV7V1O=6)L95]M
M96UB97(Z,3,L,"PV-#L[ '-?;&EN:SI',3D =5]L:6YK.D<R-0!P<FEM87)Y
M.D<U-3UE<F5D.C L9W)E96XZ,2QB;'5E.C(L.P!N;VYP<FEM87)Y.D<R-@!C
M;'5N:V5R.D<U-CUE8VAE=GDZ,"QF;W)D.C$L.P!S<&]R='-C87(Z1S(W %]?
M;6%I;BYO &=C8S)?8V]M<&EL960N %]I;FET:6%L:7IE9"XP "]G;G4O9V-C
M+V=C8S(O<W)C+P N+VQI8F=C8S(N8P!I;G0Z=#$]<C$[+3(Q-#<T.#,V-#@[
M,C$T-S0X,S8T-SL 8VAA<CIT,CUR,CLP.S$R-SL ;&]N9R!I;G0Z=#,]<C$[
M+3(Q-#<T.#,V-#@[,C$T-S0X,S8T-SL =6YS:6=N960@:6YT.G0T/7(Q.S [
M+3$[ &QO;F<@=6YS:6=N960@:6YT.G0U/7(Q.S [+3$[ '-H;W)T(&EN=#IT
M-CUR,3LM,S(W-C@[,S(W-C<[ &QO;F<@;&]N9R!I;G0Z=#<]<C$[,#LM,3L
M<VAO<G0@=6YS:6=N960@:6YT.G0X/7(Q.S [-C4U,S4[ &QO;F<@;&]N9R!U
M;G-I9VYE9"!I;G0Z=#D]<C$[,#LM,3L <VEG;F5D(&-H87(Z=#$P/7(Q.RTQ
M,C@[,3(W.P!U;G-I9VYE9"!C:&%R.G0Q,3UR,3LP.S(U-3L 9FQO870Z=#$R
M/7(Q.S0[,#L 9&]U8FQE.G0Q,SUR,3LX.S [ &QO;F<@9&]U8FQE.G0Q-#UR
M,3LX.S [ '9O:60Z=#$U/3$U ')E9U]C;&%S<SI4,38]94Y/7U)%1U,Z,"Q'
M14Y%4D%,7U)%1U,Z,2Q&4%]214=3.C(L04Q,7U)%1U,Z,RQ,24U?4D5'7T-,
M05-315,Z-"P[ '!T<F1I9F9?=#IT,0!S:7IE7W0Z=#$ =V-H87)?=#IT. !L
M;VYG;&]N9SI4,3<]<SAH:6=H.C,L,"PS,CML;W<Z,RPS,BPS,CL[ &QO;F=?
M;&]N9SIT,3@]=3AS.C$W+# L-C0[;&PZ-RPP+#8T.SL 9G5N8U]P='(Z=#$Y
M/2HR,#UF,34 7U]D;U]G;&]B86Q?9'1O<G,Z1C$U %]E>&ET7V1U;6UY7W)E
M9CI',C$]*C$ 7U]D;U]G;&]B86Q?8W1O<G,Z1C$U %]?;6%I;CI&,34 7V5X
M:70N;P!G8V,R7V-O;7!I;&5D+@ O9VYU+V=C8R]G8V,R+W-R8R\ +B]L:6)G
M8V,R+F, :6YT.G0Q/7(Q.RTR,30W-#@S-C0X.S(Q-#<T.#,V-#<[ &-H87(Z
M=#(]<C([,#LQ,C<[ &QO;F<@:6YT.G0S/7(Q.RTR,30W-#@S-C0X.S(Q-#<T
M.#,V-#<[ '5N<VEG;F5D(&EN=#IT-#UR,3LP.RTQ.P!L;VYG('5N<VEG;F5D
M(&EN=#IT-3UR,3LP.RTQ.P!S:&]R="!I;G0Z=#8]<C$[+3,R-S8X.S,R-S8W
M.P!L;VYG(&QO;F<@:6YT.G0W/7(Q.S [+3$[ '-H;W)T('5N<VEG;F5D(&EN
M=#IT.#UR,3LP.S8U-3,U.P!L;VYG(&QO;F<@=6YS:6=N960@:6YT.G0Y/7(Q
M.S [+3$[ '-I9VYE9"!C:&%R.G0Q,#UR,3LM,3(X.S$R-SL =6YS:6=N960@
M8VAA<CIT,3$]<C$[,#LR-34[ &9L;V%T.G0Q,CUR,3LT.S [ &1O=6)L93IT
M,3,]<C$[.#LP.P!L;VYG(&1O=6)L93IT,30]<C$[.#LP.P!V;VED.G0Q-3TQ
M-0!R96=?8VQA<W,Z5#$V/65.3U]214=3.C L1T5.15)!3%]214=3.C$L1E!?
M4D5'4SHR+$%,3%]214=3.C,L3$E-7U)%1U]#3$%34T53.C0L.P!P=')D:69F
M7W0Z=#$ <VEZ95]T.G0Q '=C:&%R7W0Z=#@ ;&]N9VQO;F<Z5#$W/7,X:&EG
M:#HS+# L,S([;&]W.C,L,S(L,S([.P!L;VYG7VQO;F<Z=#$X/74X<SHQ-RPP
M+#8T.VQL.C<L,"PV-#L[ &9U;F-?<'1R.G0Q.3TJ,C ]9C$U %]E>&ET7V1U
M;6UY7V1E8VPZ1S$ 7U]#5$]27TQ)4U1?7SI',C$]87(Q.S [,3LQ.0!?7T14
M3U)?3$E35%]?.D<R,0 M;&< ;&EB9RYS %]E=&5X= !?961A=&$ 7V5N9 !S
M=&%R= !?;6%I;@!?96YV:7)O;@!?=E]S:6=N961?:6YT7V9U;F, 7W9?:6YT
M7V9U;F, 7W!R:6UA<GD 7W9?=6YS:6=N961?<VAO<G1?9G5N8P!?=E]S:6=N
M961?;&]N9U]P;VEN=&5R %]V7W-I9VYE9%]C:&%R7W!O:6YT97( 7W9?=6YS
M:6=N961?;&]N9U]A<G)A>0!?=E]U;G-I9VYE9%]C:&%R7V%R<F%Y %]V7VQO
M;F=?<&]I;G1E<@!?=E]C:&%R7W!O:6YT97( 7W9?=6YS:6=N961?:6YT %]V
M7W-I9VYE9%]S:&]R= !?=E]D;W5B;&5?87)R87D 7W9?=6YI;VX 7W9?9FQO
M870 7W9?<VAO<G0 7W9?<VEG;F5D7VQO;F=?9G5N8P!?=E]S:6=N961?8VAA
M<E]F=6YC %]V7W-I9VYE9%]I;G1?87)R87D 7W9?;&]N9U]F=6YC %]V7V-H
M87)?9G5N8P!?=E]I;G1?87)R87D 7U]?;6%I;@!?=E]U;G-I9VYE9%]I;G1?
M<&]I;G1E<@!?=E]S:6=N961?<VAO<G1?<&]I;G1E<@!?=E]U;G-I9VYE9%]S
M:&]R=%]A<G)A>0!?=E]U;G-I9VYE9%]L;VYG %]V7V9L;V%T7W!O:6YT97(
M7W9?<VAO<G1?<&]I;G1E<@!?=E]U;G-I9VYE9%]C:&%R %]V7W5N:6]N,@!?
M=E]D;W5B;&4 7W9?=6YS:6=N961?:6YT7V9U;F, 7W9?<VEG;F5D7W-H;W)T
M7V9U;F, 7W9?<VEG;F5D7VQO;F=?87)R87D 7W9?<VEG;F5D7V-H87)?87)R
M87D 7W9?9FQO871?9G5N8P!?=E]S:&]R=%]F=6YC %]V7W-I9VYE9%]I;G0
M7W9?;&]N9U]A<G)A>0!?=E]C:&%R7V%R<F%Y %]V7W5N<VEG;F5D7VQO;F=?
M<&]I;G1E<@!?=E]U;G-I9VYE9%]C:&%R7W!O:6YT97( 7W9?:6YT %]S<&]R
M='-C87( 7W9?9&]U8FQE7W!O:6YT97( 7W9?=6YS:6=N961?<VAO<G0 7V-L
M=6YK97( 7W9?<W1R=6-T,0!?=E]S=')U8W0R %]V7W5N<VEG;F5D7VQO;F=?
M9G5N8P!?=E]U;G-I9VYE9%]C:&%R7V9U;F, 7W9?<VEG;F5D7VEN=%]P;VEN
M=&5R %]V7W5N<VEG;F5D7VEN=%]A<G)A>0!?=E]S:6=N961?<VAO<G1?87)R
M87D 7VYO;G!R:6UA<GD 7W-?;&EN:P!?=E]D;W5B;&5?9G5N8P!?=E]S:6=N
M961?;&]N9P!?=E]I;G1?<&]I;G1E<@!?=E]S:6=N961?8VAA<@!?=E]F;&]A
M=%]A<G)A>0!?=E]S:&]R=%]A<G)A>0!?=5]L:6YK %]V7W5N<VEG;F5D7W-H
M;W)T7W!O:6YT97( 7W9?;&]N9P!?=E]C:&%R %]?97AI=%]D=6UM>5]D96-L
M %]?7T-43U)?3$E35%]? %]?7T143U)?3$E35%]? %]?7V1O7V=L;V)A;%]C
M=&]R<P!?7U]D;U]G;&]B86Q?9'1O<G, 7U]E>&ET7V1U;6UY7W)E9@
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
(
end

View File

@ -1,336 +0,0 @@
begin 777 sparc-elf
M?T5,1@$" 0 " ( ! $/% #0 #;0 T "
M!0 H !< $P 8 T $ - "@ H 4 P
M -0 !$ ! ! - ! #0 3
M= $W0 % $ $ !.H (3J #L "M < 0
M @ % P A0, (@ !P O=7-R+VQI8B]L9"YS
M;RXQ %, !H 2P .@ &( W 5
M 4P %\ !D 4 $ !* 5P #8
M20 #, M /P %X "4 < 0P !1
M * !" "0 !; , #$ R 1P $4
M !. 8 C +@ %@ /0 (
M $0 !< 2 + !/ !6
M &< !: 60 &8 .P %T
M +P !E !A
M
M
M (0
M *@ "D
M 9 'P
M "8 ; !T !H ^ 00 "L U
M 7 "( $P
M $8 X 4@ #0 !- #P
M G %4 !@ > Y 8P
M $ U # ! ! .@ P
M @ 0/< , , $*7 # $ !#M@
M P !0 0[D , 8 $/" # ' !#Q0
M P " 1-P , D $3@ # * "
M$Z@ P "P A0 , P (4# # -
M "%)@ P #@ , \ # 0
M P $0 , !( #
M 3 P % , !4
M # 6 0 "%)@ ($0 #@ D 1-P !( D / (4
MH 01 . %@ "%*@ "0$0 #@ !T A4X !!$ X T
M (5/ 01 . .@ "%4 !$0 #@ $@ A5$ !!$ X
M !6 (52 @1 . 7P "%5 ($0 #@ '4 A58 "!$
M X "* (58 01 . GP "%60 $$0 #@ *< A5H
M!!$ X "T $09 !02 ( R0 !#X@ 4$@ " -4 A5P
M "!$ X #> (5> 01 . Z "%7P "$0 #@ /X
M A5^ A$ X $/ (5@ @1 . !(P !#P@ $@ !P
M 2D A6( A$ X $X $/Q !02 ( !10 "%8P $$0
M#@ 4T A60 A$ X %: (5F !@1 . !9 "%; 8
M$0 #@ 6X A7( !!$ X %U (5S 01 . !A "%=
M $$0 #@ 9P 1!0 %!( @ &O (5U 01 . !Q@ "
M%=@ "$0 #@ <X 0_L %!( @ 'D (4# 1 /_Q !
M[0 !$*@ +($@ " ?( 1. !!$ H '_ $0D !@2 (
M "#0 "%=H "$0 #@ B$ 1 4 %!( @ (S (5W 01
M . "0P "%> $$0 #@ E( A7H $!$ X )A $/%
M '02 ( ": "%)0 $0#_\0 F\ 1 H %!( @ *# (5
M^ @1 . "CP "%@ $$0 #@ I< 1!X &!( @ *D
M $0/ !02 ( "L "%@0 ($0 #@ L, A90 !"$ X
M ++ (6# 01 . "W "%A $$0 #@ O( 0_8 %!(
M @ ,& (6% 01 . #%0 "%A@ $$0 #@ RT 0^P
M%!( @ -" (67 1 /_Q #1P "%AP $$0 #@ UX A8@
M !!$ X -L (6) $1 . #? "%B@ $$0 #@ XP
M A8L !!$ X .< $3J 1 /_Q #HP "%C ($0 #@
M [$ A8X !!$ X /& (4 1 /_Q #W !$ 4$@
M" ^< 0^< %!( @ /Z (6/ 01 . $" "%D !
M$0 #@ ! \ A9$ !!$ X 0: (62 @1 . $)P "$^0
M 0$@ !"P A/8 6!( 0S (3\ @2 $.0 "
M%E $$0 #@ !$( A94 !!$ X 1; (66 01 . '9?
M=6YI;VX 7V9I;FD <U]L:6YK '5?;&EN:P!V7W-I9VYE9%]S:&]R=%]P;VEN
M=&5R '9?:6YT '9?<VEG;F5D7V-H87( =E]I;G1?<&]I;G1E<@!V7V1O=6)L
M90!V7W5N<VEG;F5D7VQO;F=?87)R87D =E]U;G-I9VYE9%]I;G1?87)R87D
M=E]S:6=N961?:6YT7W!O:6YT97( 8VQU;FME<@!V7W-I9VYE9%]I;G0 =E]U
M;G-I9VYE9%]L;VYG7V9U;F, =E]C:&%R7V9U;F, =E]U;FEO;C( <W!O<G1S
M8V%R '9?=6YS:6=N961?8VAA<E]A<G)A>0!V7W5N<VEG;F5D7W-H;W)T '9?
M<VEG;F5D7VQO;F=?87)R87D 7VEN:70 =E]S:6=N961?<VAO<G0 =E]S:&]R
M=%]F=6YC '9?9FQO870 =E]C:&%R7V%R<F%Y '9?<W1R=6-T,0!V7W-T<G5C
M=#( =E]L;VYG '9?;&]N9U]P;VEN=&5R '9?=6YS:6=N961?;&]N9U]P;VEN
M=&5R '9?<VEG;F5D7VQO;F=?9G5N8P!V7W5N<VEG;F5D7VEN=%]P;VEN=&5R
M '9?<VAO<G0 =E]U;G-I9VYE9%]S:&]R=%]F=6YC %]$64Y!34E# &UA:6X
M7VQI8E]V97)S:6]N '9?9&]U8FQE7V9U;F, =E]S:6=N961?8VAA<E]A<G)A
M>0!V7W-I9VYE9%]I;G1?9G5N8P!V7W5N<VEG;F5D7VQO;F< =E]U;G-I9VYE
M9%]I;G0 =E]D;W5B;&5?87)R87D 7W-T87)T %]E9&%T80!V7W5N<VEG;F5D
M7VEN=%]F=6YC '9?:6YT7V%R<F%Y '!R:6UA<GD =E]F;&]A=%]F=6YC '9?
M;&]N9U]F=6YC '9?<VEG;F5D7VEN=%]A<G)A>0!E;G9I<F]N '9?9&]U8FQE
M7W!O:6YT97( =E]S:6=N961?8VAA<E]P;VEN=&5R '9?<VEG;F5D7W-H;W)T
M7V9U;F, =E]C:&%R7W!O:6YT97( =E]U;G-I9VYE9%]C:&%R7W!O:6YT97(
M=E]U;G-I9VYE9%]C:&%R7V9U;F, 7V5N9 !V7W5N<VEG;F5D7W-H;W)T7V%R
M<F%Y '9?<VEG;F5D7VQO;F< =E]U;G-I9VYE9%]C:&%R '9?<VAO<G1?<&]I
M;G1E<@!V7V9L;V%T7W!O:6YT97( 7V5T97AT '9?9FQO871?87)R87D =E]S
M:6=N961?<VAO<G1?87)R87D 7T=,3T)!3%]/1D93151?5$%"3$5? '9?:6YT
M7V9U;F, =E]S:6=N961?8VAA<E]F=6YC '9?<VAO<G1?87)R87D =E]C:&%R
M &YO;G!R:6UA<GD =E]L;VYG7V%R<F%Y &5X:70 871E>&ET %]E>&ET %]E
M;G9I<F]N '9?=6YS:6=N961?<VAO<G1?<&]I;G1E<@!V7W-I9VYE9%]L;VYG
M7W!O:6YT97( ;&EB8RYS;RXQ A90 !E$P A/8 !C%0
M A/D !B%0 A/P !D%0 "=X[^@@<?@"('H "\$" X .@0*(#
MH$2<(Z @@) 0* 20$ !0 !!*@$ 1 !$D!(C<$ 028! ?___
M\ $ "0$ 0DA $94L( *4 J $E 1 "A< (66$N)0U"+ $ $X!
M0 !!&P$ ! $$< 0 )WCOY"P$" ,( 8''X B!Z G>._D+ 0( P
M@ !@<?@"('H "=X[^0L! @ #" &!Q^ (@>@ )WCOY"P$" ,( 8''
MX B!Z G>._D+ 0( P@ !@<?@"('H "=X[^0L! @ #" &!Q^ (@>@
M )WCOY"P$" ,( 8''X B!Z G>._D+ 0( P@ !@<?@"('H "=X[^0
ML! @ #" &!Q^ (@>@ )WCOY"P$" ,( 8''X B!Z G>._D+ 0( P
M@ !@<?@"('H "=X[^0L! @ #" &!Q^ (@>@ )WCOY 1 !$P0(CB#"
M &!Q^ (@>@ )WCOY 1 !$P1HCD#" &!Q^ (@>@ )WCOY 1 "%P"HB
M0!$ (62$" !TBHA0!$ (62$" "TBHB)!$ (62$" #TC(AV!$ (62$" $
MTC(AB!$ (62$" %TC(A?A$ (62$" &TB(A/!$ (62$" 'TB(A:!$ (62
M$" (TB(AX!$ (62$" )TB(AR!$ (62$" *TB(B(!$ (62$" +TB(AW!$
M (43 !$U )CF-0B(8P1 "%$P 1-0:8Z#4.B%($0 A1, (74"F) U"HA
MD!$ (43 "%U IA0-0J(=H1 "%$P A=0*8B34*B%\$0 A1, (74$F'8
MU#(B/!$ (43 "%U!)AB-0R(C@1 "%$P A=0287[4,B(<$0 A1, (74
M F$\U"(A^!$ (43 "%U )A:-0B(@01 "%$P A=0"8>#4(B%8$0 A1,
M (74 F'(U"(B2!$ (43 "%U )B(-0B(8 1 "%$P A=0"8=S4(B%0$0
MA1, (74 F&,U"(B,!$ (43 "%U!IA2-0Z(>@1 "%%0 A9(2HD#2(B(4
M$0 A14 (62$J% TB(B$!$ (45 "%DA*B)-(B(A@1 "%%0 A9(2H=C2
M(B(H$0 A14 (62$J&(TB(A.!$ (45 "%DA*A?M(B(E01 "%%0 A9(2
MH3S2(B%$$0 A14 (62$J%HTB(A8!$ (45 "%DA*AX-(B(=01 "%%0
MA9(2H<C2(B',$0 A14 (62$J(@TB(B6!$ (45 "%DA*AW-(B(= 1 "%
M%0 A9(2H8S2(B(L$0 A14 (62$J%(TB(B#!$ (62$" "TB(B !$ (62
M$" "TB(B1!$ (62$" !TB(A>!$ (62$" !TB(A9!$ (43 "%U )@H-0B
M(*@1 "%$P A=028)C4,B%P@<?@"('H "=X[^@@<?@"('H
M 0 0L@ ! :0
M , # P
MO__S 0 , #PPO__P 0 , $@PO__M 0 $ A0,
M ! $<0 P 0\( #0 !$W $ $ Z 4 0I<
M!@ ! ]P * $>P L 0 %0 # (3J ( D
M % < 7 $.Y < 0[8 " # ) #
M ! $ /_Q !
M -0 P 0 0#H , ( $#W # #
M !"EP P ! 0[8 , 4 $.Y # &
M !#P@ P !P 0\4 , @ $3< #
M ) !$X P "@ A.H , L (4
M # , "% P P #0 A28 , X
M # / P $ , !$
M # 2 P $P , !0
M # 5 P %@ < 0
M__$ . $ /_Q &@ ! #_\0 "(
M 0 __$ I (4F @1 . ,0 !$W $@ "0 #< A2@
M !!$ X ^ (4J ) 1 . 10 "%3@ $$0 #@ %P
M A4\ !!$ X !B (50 $1 . < "%40 $$0 #@
M 'X A5( "!$ X "' (54 @1 . G0 "%5@ ($0
M#@ +( A5@ !!$ X #' (59 01 . SP "%6@ $
M$0 #@ -P 1!D %!( @ #Q $/B !02 ( _0 "%7
M ($0 #@ 08 A5X !!$ X $0 (5? (1 . !)@ "
M%7X "$0 #@ 3< A6 "!$ X %+ $/" 2 ' !
M40 "%8@ "$0 #@ 6 0_$ %!( @ %M (5C 01 .
M !=0 "%9 "$0 #@ 8( A68 &!$ X &, (5L !@1
M . !E@ "%<@ $$0 #@ 9T A7, !!$ X &L (5T
M 01 . !Q !$% 4$@ " =< A74 !!$ X 'N (5
MV (1 . !]@ !#^P 4$@ " @P A0, !$ __$ (5
M $0J L@2 ( "&@ !$X $$0 "@ B< 1"0 &!( @
M (U (5V@ (1 . "20 !$!0 4$@ " EL A7< !!$
M X )K (5X 01 . ">@ "%>@ 0$0 #@ HD 0\4
M=!( @ *0 (4E 1 /_Q "EP !$"@ 4$@ " JL A7X
M "!$ X *W (6 01 . "OP !$'@ 8$@ " LP
M 1 \ %!( @ +8 (6! @1 . "ZP "%E $(0 #@
M O, A8, !!$ X ,$ (6$ 01 . #&@ !#]@ 4$@
M" RX A84 !!$ X ,] (6& 01 . #50 !#[ 4
M$@ " VH A9< !$ __$ -O (6' 01 . #A@ "%B
M $$0 #@ Y0 A8D 1$ X .D (6* 01 . #M "
M%BP $$0 #@ \0 1.H !$ __$ /+ (6, @1 . #
MV0 "%C@ $$0 #@ ^X A0 !$ __$ 0$ $0 !02 (
M $#P !#YP 4$@ " !"( A8\ !!$ X 0P (60 $1
M . $-P "%D0 $$0 #@ !$( A9( "!$ X 1/ (3Y
M ! 2 $5 "$]@ !8$@ !%L A/P "!( 1A (6
M4 01 . $:@ "%E0 $$0 #@ !(, A98 !!$ X 9V1B
M;64 8W)T:2YS '9A;'5E<RU882YC &=D8FUE+F, 8W)T;BYS '9?=6YI;VX
M7V9I;FD <U]L:6YK '5?;&EN:P!V7W-I9VYE9%]S:&]R=%]P;VEN=&5R '9?
M:6YT '9?<VEG;F5D7V-H87( =E]I;G1?<&]I;G1E<@!V7V1O=6)L90!V7W5N
M<VEG;F5D7VQO;F=?87)R87D =E]U;G-I9VYE9%]I;G1?87)R87D =E]S:6=N
M961?:6YT7W!O:6YT97( 8VQU;FME<@!V7W-I9VYE9%]I;G0 =E]U;G-I9VYE
M9%]L;VYG7V9U;F, =E]C:&%R7V9U;F, =E]U;FEO;C( <W!O<G1S8V%R '9?
M=6YS:6=N961?8VAA<E]A<G)A>0!V7W5N<VEG;F5D7W-H;W)T '9?<VEG;F5D
M7VQO;F=?87)R87D 7VEN:70 =E]S:6=N961?<VAO<G0 =E]S:&]R=%]F=6YC
M '9?9FQO870 =E]C:&%R7V%R<F%Y '9?<W1R=6-T,0!V7W-T<G5C=#( =E]L
M;VYG '9?;&]N9U]P;VEN=&5R '9?=6YS:6=N961?;&]N9U]P;VEN=&5R '9?
M<VEG;F5D7VQO;F=?9G5N8P!V7W5N<VEG;F5D7VEN=%]P;VEN=&5R '9?<VAO
M<G0 =E]U;G-I9VYE9%]S:&]R=%]F=6YC %]$64Y!34E# &UA:6X 7VQI8E]V
M97)S:6]N '9?9&]U8FQE7V9U;F, =E]S:6=N961?8VAA<E]A<G)A>0!V7W-I
M9VYE9%]I;G1?9G5N8P!V7W5N<VEG;F5D7VQO;F< =E]U;G-I9VYE9%]I;G0
M=E]D;W5B;&5?87)R87D 7W-T87)T %]E9&%T80!V7W5N<VEG;F5D7VEN=%]F
M=6YC '9?:6YT7V%R<F%Y '!R:6UA<GD =E]F;&]A=%]F=6YC '9?;&]N9U]F
M=6YC '9?<VEG;F5D7VEN=%]A<G)A>0!E;G9I<F]N '9?9&]U8FQE7W!O:6YT
M97( =E]S:6=N961?8VAA<E]P;VEN=&5R '9?<VEG;F5D7W-H;W)T7V9U;F,
M=E]C:&%R7W!O:6YT97( =E]U;G-I9VYE9%]C:&%R7W!O:6YT97( =E]U;G-I
M9VYE9%]C:&%R7V9U;F, 7V5N9 !V7W5N<VEG;F5D7W-H;W)T7V%R<F%Y '9?
M<VEG;F5D7VQO;F< =E]U;G-I9VYE9%]C:&%R '9?<VAO<G1?<&]I;G1E<@!V
M7V9L;V%T7W!O:6YT97( 7V5T97AT '9?9FQO871?87)R87D =E]S:6=N961?
M<VAO<G1?87)R87D 7T=,3T)!3%]/1D93151?5$%"3$5? '9?:6YT7V9U;F,
M=E]S:6=N961?8VAA<E]F=6YC '9?<VAO<G1?87)R87D =E]C:&%R &YO;G!R
M:6UA<GD =E]L;VYG7V%R<F%Y &5X:70 871E>&ET %]E>&ET %]E;G9I<F]N
M '9?=6YS:6=N961?<VAO<G1?<&]I;G1E<@!V7W-I9VYE9%]L;VYG7W!O:6YT
M97( '9A;'5E<RU882YC "]D:79E+W)E;&5A<V4O8BUS>7-I9FEX+W5S<B]S
M<F,O;&EB+VQI8F,O '!O<G0O9V5N+W9A;'5E<RU882YC 6'0@.R!6/3(N
M, !M86EN %]L:6)?=F5R<VEO;@ O=&UP "]U<W(O8V-S+VQI8B]V86QU97,M
M6&$N;P 9V1B;64N8P O=&UP+P!G9&)M92YC &=C8S)?8V]M<&EL960N &EN
M=#IT,3UR,3LM,C$T-S0X,S8T.#LR,30W-#@S-C0W.P!C:&%R.G0R/7(R.S [
M,3(W.P!L;VYG(&EN=#IT,SUR,3LM,C$T-S0X,S8T.#LR,30W-#@S-C0W.P!U
M;G-I9VYE9"!I;G0Z=#0]<C$[,#LM,3L ;&]N9R!U;G-I9VYE9"!I;G0Z=#4]
M<C$[,#LM,3L <VAO<G0@:6YT.G0V/7(Q.RTS,C<V.#LS,C<V-SL ;&]N9R!L
M;VYG(&EN=#IT-SUR,3LP.RTQ.P!S:&]R="!U;G-I9VYE9"!I;G0Z=#@]<C$[
M,#LV-34S-3L ;&]N9R!L;VYG('5N<VEG;F5D(&EN=#IT.3UR,3LP.RTQ.P!S
M:6=N960@8VAA<CIT,3 ]<C$[+3$R.#LQ,C<[ '5N<VEG;F5D(&-H87(Z=#$Q
M/7(Q.S [,C4U.P!F;&]A=#IT,3(]<C$[-#LP.P!D;W5B;&4Z=#$S/7(Q.S@[
M,#L ;&]N9R!D;W5B;&4Z=#$T/7(Q.S@[,#L =F]I9#IT,34],34 =%]S=')U
M8W0Z5#$V/7,R-'9?8VAA<E]M96UB97(Z,BPP+#@[=E]S:&]R=%]M96UB97(Z
M-BPQ-BPQ-CMV7VEN=%]M96UB97(Z,2PS,BPS,CMV7VQO;F=?;65M8F5R.C,L
M-C0L,S([=E]F;&]A=%]M96UB97(Z,3(L.38L,S([=E]D;W5B;&5?;65M8F5R
M.C$S+#$R."PV-#L[ '1?=6YI;VXZ5#$W/74X=E]C:&%R7VUE;6)E<CHR+# L
M.#MV7W-H;W)T7VUE;6)E<CHV+# L,38[=E]I;G1?;65M8F5R.C$L,"PS,CMV
M7VQO;F=?;65M8F5R.C,L,"PS,CMV7V9L;V%T7VUE;6)E<CHQ,BPP+#,R.W9?
M9&]U8FQE7VUE;6)E<CHQ,RPP+#8T.SL =E]C:&%R7V9U;F,Z1C( =E]S:6=N
M961?8VAA<E]F=6YC.D8Q, !V7W5N<VEG;F5D7V-H87)?9G5N8SI&,3$ =E]S
M:&]R=%]F=6YC.D8V '9?<VEG;F5D7W-H;W)T7V9U;F,Z1C8 =E]U;G-I9VYE
M9%]S:&]R=%]F=6YC.D8X '9?:6YT7V9U;F,Z1C$ =E]S:6=N961?:6YT7V9U
M;F,Z1C$ =E]U;G-I9VYE9%]I;G1?9G5N8SI&- !V7VQO;F=?9G5N8SI&,P!V
M7W-I9VYE9%]L;VYG7V9U;F,Z1C, =E]U;G-I9VYE9%]L;VYG7V9U;F,Z1C4
M=E]F;&]A=%]F=6YC.D8Q,@!V7V1O=6)L95]F=6YC.D8Q,P!L:6YK.E0Q.#US
M,34R;F5X=#HQ.3TJ,3@L,"PS,CML:6YK9G5N8SHR,#TJ,C$]9C$Y+#,R+#,R
M.W-T=69F.C(R/6%R,3LP.S [,C,]87(Q.S [,3LR-#UA<C$[,#LR.S$V+#8T
M+#$Q-3([.P!T=5]L:6YK.E0R-3UU,30T;F5X=#HQ.2PP+#,R.VQI;FMF=6YC
M.C(P+# L,S([<W1U9F8Z,C(L,"PQ,34R.SL 8V]L;W)S.E0R-CUE>65L;&]W
M.C L<'5R<&QE.C$L<&EN:SHR+#L 8V%R<SI4,C<]96)M=SHP+'!O<G-C:&4Z
M,2P[ &)O;VQE86XZ=#(X/65&04Q313HP+%12544Z,2P[ &)V86QS.E0R.3UE
M9F%L<V4Z,"QT<G5E.C$L.P!B;V]L96%N,CIT,CD ;6ES;W)D97)E9#I4,S ]
M971W;SHR+&]N93HQ+'IE<F\Z,"QT:')E93HS+#L ;6%I;CI&,0!V7V-H87(Z
M1S( =E]S:6=N961?8VAA<CI',3 =E]U;G-I9VYE9%]C:&%R.D<Q,0!V7W-H
M;W)T.D<V '9?<VEG;F5D7W-H;W)T.D<V '9?=6YS:6=N961?<VAO<G0Z1S@
M=E]I;G0Z1S$ =E]S:6=N961?:6YT.D<Q '9?=6YS:6=N961?:6YT.D<T '9?
M;&]N9SI',P!V7W-I9VYE9%]L;VYG.D<S '9?=6YS:6=N961?;&]N9SI'-0!V
M7V9L;V%T.D<Q,@!V7V1O=6)L93I',3, =E]C:&%R7V%R<F%Y.D<S,3UA<C$[
M,#LQ.S( =E]S:6=N961?8VAA<E]A<G)A>3I',S(]87(Q.S [,3LQ, !V7W5N
M<VEG;F5D7V-H87)?87)R87DZ1S,S/6%R,3LP.S$[,3$ =E]S:&]R=%]A<G)A
M>3I',S0]87(Q.S [,3LV '9?<VEG;F5D7W-H;W)T7V%R<F%Y.D<S- !V7W5N
M<VEG;F5D7W-H;W)T7V%R<F%Y.D<S-3UA<C$[,#LQ.S@ =E]I;G1?87)R87DZ
M1S,V/6%R,3LP.S$[,0!V7W-I9VYE9%]I;G1?87)R87DZ1S,V '9?=6YS:6=N
M961?:6YT7V%R<F%Y.D<S-SUA<C$[,#LQ.S0 =E]L;VYG7V%R<F%Y.D<S.#UA
M<C$[,#LQ.S, =E]S:6=N961?;&]N9U]A<G)A>3I',S@ =E]U;G-I9VYE9%]L
M;VYG7V%R<F%Y.D<S.3UA<C$[,#LQ.S4 =E]F;&]A=%]A<G)A>3I'-# ]87(Q
M.S [,3LQ,@!V7V1O=6)L95]A<G)A>3I'-#$]87(Q.S [,3LQ,P!V7V-H87)?
M<&]I;G1E<CI'-#(]*C( =E]S:6=N961?8VAA<E]P;VEN=&5R.D<T,STJ,3
M=E]U;G-I9VYE9%]C:&%R7W!O:6YT97(Z1S0T/2HQ,0!V7W-H;W)T7W!O:6YT
M97(Z1S0U/2HV '9?<VEG;F5D7W-H;W)T7W!O:6YT97(Z1S0U '9?=6YS:6=N
M961?<VAO<G1?<&]I;G1E<CI'-#8]*C@ =E]I;G1?<&]I;G1E<CI'-#<]*C$
M=E]S:6=N961?:6YT7W!O:6YT97(Z1S0W '9?=6YS:6=N961?:6YT7W!O:6YT
M97(Z1S0X/2HT '9?;&]N9U]P;VEN=&5R.D<T.3TJ,P!V7W-I9VYE9%]L;VYG
M7W!O:6YT97(Z1S0Y '9?=6YS:6=N961?;&]N9U]P;VEN=&5R.D<U,#TJ-0!V
M7V9L;V%T7W!O:6YT97(Z1S4Q/2HQ,@!V7V1O=6)L95]P;VEN=&5R.D<U,CTJ
M,3, =E]S=')U8W0Q.D<Q-@!V7W-T<G5C=#(Z1S4S/7,R-'9?8VAA<E]M96UB
M97(Z,BPP+#@[=E]S:&]R=%]M96UB97(Z-BPQ-BPQ-CMV7VEN=%]M96UB97(Z
M,2PS,BPS,CMV7VQO;F=?;65M8F5R.C,L-C0L,S([=E]F;&]A=%]M96UB97(Z
M,3(L.38L,S([=E]D;W5B;&5?;65M8F5R.C$S+#$R."PV-#L[ '9?=6YI;VXZ
M1S$W '9?=6YI;VXR.D<U-#UU.'9?8VAA<E]M96UB97(Z,BPP+#@[=E]S:&]R
M=%]M96UB97(Z-BPP+#$V.W9?:6YT7VUE;6)E<CHQ+# L,S([=E]L;VYG7VUE
M;6)E<CHS+# L,S([=E]F;&]A=%]M96UB97(Z,3(L,"PS,CMV7V1O=6)L95]M
M96UB97(Z,3,L,"PV-#L[ '-?;&EN:SI',3D =5]L:6YK.D<R-0!P<FEM87)Y
M.D<U-3UE<F5D.C L9W)E96XZ,2QB;'5E.C(L.P!N;VYP<FEM87)Y.D<R-@!C
M;'5N:V5R.D<U-CUE8VAE=GDZ,"QF;W)D.C$L.P!S<&]R='-C87(Z1S(W N
M:6YT97)P "YH87-H "YD>6YS>6T +F1Y;G-T<@ N<F5L82YB<W, +G)E;&$N
M<&QT "YI;FET "YT97AT "YF:6YI "YR;V1A=&$ +G!L= N9V]T "YD>6YA
M;6EC "YB<W, +G-Y;71A8@ N<W1R=&%B "YS=&%B+FEN9&5X<W1R "YS=&%B
M<W1R "YS:'-T<G1A8@ N8V]M;65N= N<W1A8BYI;F1E> N<W1A8@ 87,Z
M($,@1&5V96QO<&UE;G0@4V5T(" H0T13*2!34$%20V]M<&EL97)S(#(N," Q
M."!-87D@,3DY,@H &%S.B!#($1E=F5L;W!M96YT(%-E=" @*$-$4RD@4U!!
M4D-O;7!I;&5R<R R+C @,3@@36%Y(#$Y.3(* ! *",I4W5N3U,@-2XP(&9C
M<RX@($IU;F4@,3DY,@ 87,Z($,@1&5V96QO<&UE;G0@4V5T(" H0T13*2!3
M4$%20V]M<&EL97)S(#(N," Q."!-87D@,3DY,@H 1T-#.B H1TY5*2!C>6=N
M=7,M,BXP+C( &%S.B!#($1E=F5L;W!M96YT(%-E=" @*$-$4RD@4U!!4D-O
M;7!I;&5R<R R+C @,3@@36%Y(#$Y.3(* &QD.B H4T=5*2!3=6Y/4R]35E(T
M("A,2RTQ+C I $ ' B0 UD #=D #
M &LX ' X $X\ *A=6!@ %DJ
M %X@ $ "\ +# ED $/B
M ]D $/B !<\ ": $B
M %J (& )J +B
M -: /" 1* 36
M 5* 6Z 8"
M 9. :N ;> E&
M N,D $/B !$ !Y !$ !Y ! !$ !Y
M # O(D $/G !$ !Z !$ !Z ! !$
M !Z # PDD $/L !$ ![ !$ ![ !
M !$ ![ # R(D $/Q !$ !] !$ !]
M! !$ !] # S(D $/V !$ !^ !$ !^
M ! !$ !^ # TDD $/[ !$ !_ !$
M !_ ! !$ !_ # V(D $0 !$ "!
M !$ "! ! !$ "! # W D $0% !$ ""
M !$ "" ! !$ "" # X4D $0* !$ "#
M !$ "# ! !$ "# # YPD $0/ !$
M "% !$ "% ! !$ "% # ZLD $04
M !$ "& !$ "& ! !$ "& # \$D $0
M9 !$ "' !$ "' ! !$ "' # ]DD
M $0> !$ ") !$ ") ! !$ ") $ ^HD
M $0D !$ "* !$ "* ! !$ "* $
M _R !&B !*B !,^
M !.N !0F !26 !3*
M !5\D $0J !$ "R !$ "U ! !$
M "V # !$ "W & !$ "Y ) !$ "Z ,
M !$ "[ / !$ "] 2 !$ "^ 5 !$ "_
M8 !$ #! ; !$ #" > !$ ## A !$ #%
M D !$ #& H !$ #) L !$ #* P !$
M #+ T !$ #- X !$ #. \ !$ #/ !
M !$ #1 !$ !$ #2 !( !$ #3 !, !$ #5 !
M0 !$ #6 !4 !$ #7 !8 !$ #9 !< !$ #:
M !@ !$ #< !D !$ #= !H !$ #> !L !$
M #@ !P !$ #A !T !$ #B !X !$ #D !\
M !$ #E " !$ #F "$ !$ #H "( !$ #I "
M, !$ #J "0 !$ #L "4 !$ #M "8 !$ #O
M "< !$ #P "? !$ #Q "B !$ #R "E !$
M #T "H !$ #V "L !$ #W "P !$ #W "P
M!6<@ !7$@ !8,@ !9<@
M !:(@ !;0@ !<@@ !=$@
M !>$@ !?,@ !?T@ !@X@
M !B$@ !BT@ !CH@
M!E4@ !G@@ !IT@ !KD@
M !M(@ !O<@ !Q$@ !R@@
M !TL@ !V8@ !WX@ !Z(@
M ![\@ !]T@ !_,@
M"!$@ "#$@ "$@@ "&,@
M "(,@ ")@@ "+$@ ",\@
M ".4@ "/\@ "1X@ "38@
M "4\@ "5T@ "?@@
M"@0@ "I<@ "J(@ "JT@
M "M$@ "N @ "OX@
M ! 0 (
M 0#4 U !$ $ "0 4 " $ Z
M .@ +T P $ ! \ + @ ! ]P /< &
M@ 0 7 ! ! 7 P ( 0I< *7 !'L
M $ 'P 0 " $.V #M@ , P X
M $ # "D $ @ !#N0 [D ) , + !
M P S 0 8 0\( /" P 0
M.0 $ & $/% #Q0 1< $ #\ !
M !@ !$W !-P # ! !% 0 (
M 1. 3@ "@ @ 30 $ ' (3J
M$Z@ !8 $ ! %( ! P "% !0
M# ! 0 !7 !@ , A0, 4# (@ $
M 0 ( 8 @ # (4F %)@ '$
M ( &4 " !28 &T ! < !
M ! !M P ;: !)D $
M=0 , ( $ ") ! (0 #
M ""* +# 0 "- P
M KE@ +( $ EP $
M+$@ %) ! * ! "V4
M8 ! P "L 0 M] "-P
, 0 ,
end

View File

@ -1,182 +0,0 @@
# Generated automatically from Makefile.in by configure.
# Copyright 1998 Free Software Foundation, Inc.
# This file is part of GDB.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
all: libtui.a
srcdir=.
SHELL = /bin/sh
CC=gcc
CFLAGS=-g -O2
AR=ar
RANLIB=ranlib
# Host and target-dependent makefile fragments come in here.
# Host: Sun 4 or Sparcstation, running SunOS 4
XDEPFILES= ser-tcp.o
XM_FILE= xm-sun4os4.h
NAT_FILE= nm-sun4os4.h
NATDEPFILES= fork-child.o infptrace.o inftarg.o corelow.o sparc-nat.o
HOST_IPC=-DBSD_IPC
GDBSERVER_DEPFILES= low-sparc.o
# Setting XM_CLIBS=-lresolv would let us use the DNS, but that would screw
# anyone who wants to use NIS, which includes at least one Cygnus customer
# (PR 3593). So leave it this way until/unless we find a resolver which can
# get names from either DNS or NIS from the same GDB binary.
# Target: Sun 4 or Sparcstation, running SunOS 4
TDEPFILES= sparc-tdep.o solib.o
TM_FILE= tm-sun4os4.h
# End of host and target-dependent makefile fragments
# Where is our "include" directory? Typically $(srcdir)/../include.
# This is essentially the header file directory for the library
# routines in libiberty.
INCLUDE_DIR = $(srcdir)/../../include
INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
# Configured by the --with-mmalloc option to configure.
MMALLOC =
MMALLOC_CFLAGS =
# Where is the BFD library? Typically in ../bfd.
BFD_DIR = ../../bfd
BFD_SRC = $(srcdir)/$(BFD_DIR)
BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
# Where is the READLINE library? Typically in ../readline.
READLINE_DIR = ../../readline
READLINE_SRC = $(srcdir)/$(READLINE_DIR)
READLINE_CFLAGS = -I$(READLINE_SRC)
# Where is the INTL library? Typically in ../intl.
INTL_DIR = ../../intl
INTL_SRC = $(srcdir)/$(INTL_DIR)
INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
# Where is the TCL library? Typically in ../tcl.
TCL_CFLAGS = @TCLHDIR@
# Where is the TK library? Typically in ../tk.
TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
# Where is Itcl? Typically in ../itcl.
ITCL_CFLAGS = @ITCLHDIR@
# Where is Tix? Typically in ../tix.
TIX_CFLAGS = @TIXHDIR@
X11_CFLAGS = @TK_XINCLUDES@
ENABLE_IDE= @ENABLE_IDE@
GUI_CFLAGS_X = -I$(srcdir)/../../libgui/src
IDE_CFLAGS_X = -I$(srcdir)/../../libidetcl/src -I$(srcdir)/../../libide/src \
`if [ x"$(ENABLE_IDE)" != x ] ; then \
echo -DIDE -I$(srcdir)/../../ilu/runtime/mainloop;\
fi`
IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
ENABLE_CFLAGS=
# -I. for config files.
# -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
# -I$(srcdir)/config for more generic config files.
# It is also possible that you will need to add -I/usr/include/sys if
# your system doesn't have fcntl.h in /usr/include (which is where it
# should be according to Posix).
DEFS = -DHAVE_CONFIG_H
GDB_CFLAGS = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config $(DEFS)
# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
# from the config directory.
GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
#PROFILE_CFLAGS = -pg
# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
$(GDB_CFLAGS) $(READLINE_CFLAGS) $(BFD_CFLAGS) \
$(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) $(INTL_CFLAGS) \
$(ENABLE_CFLAGS)
HEADERS = tuiIO.h tuiData.h tuiGeneralWin.h tuiLayout.h tuiStack.h \
tuiSource.h tuiCommand.h tuiWin.h tuiDisassem.h \
tuiSourceWin.h tuiRegs.h tuiDataWin.h
SOURCES = tui.c tuiData.c tuiSource.c tuiStack.c tuiIO.c \
tuiGeneralWin.c tuiLayout.c tuiWin.c tuiCommand.c \
tuiDisassem.c tuiSourceWin.c tuiRegs.c tuiDataWin.c
OBJECTS = tui.o tuiData.o tuiSource.o tuiStack.o tuiIO.o \
tuiGeneralWin.o tuiLayout.o tuiWin.o tuiCommand.o \
tuiDisassem.o tuiSourceWin.o tuiRegs.o tuiDataWin.o \
tuiInit.o
# Prevent Sun make from putting in the machine type. Setting
# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
.c.o:
$(CC) -c $(INTERNAL_CFLAGS) $<
.SUFFIXES: .cpp
.c.cpp:
$(CC) -E $(INTERNAL_CFLAGS) $< > $@
libtui.a: $(OBJECTS)
rm -f libtui.a
$(AR) rc libtui.a $(OBJECTS)
$(RANLIB) libtui.a
tui.o: tui.c tui.h tuiData.h tuiLayout.h tuiIO.h tuiRegs.h tuiWin.h
tuiCommand.o: tui.h tuiData.h tuiWin.h tuiIO.h
tuiData.o: tui.h tuiData.h
tuiDataWin.o: tui.h tuiData.h tuiRegs.h
tuiDisassem.o: tui.h tuiData.h tuiLayout.h tuiSourceWin.h tuiStack.h
tuiGeneralWin.o: tui.h tuiData.h tuiGeneralWin.h
tuiIO.o: tui.h tuiData.h tuiIO.h tuiCommand.h tuiWin.h
tuiLayout.o: tui.h tuiData.h tuiGeneralWin.h tuiStack.h tuiRegs.h \
tuiDisassem.h
tuiRegs.o: tui.h tuiData.h tuiLayout.h tuiWin.h
tuiSource.o: tui.h tuiData.h tuiStack.h tuiSourceWin.h tuiSource.h
tuiSourceWin.o: tui.h tuiData.h tuiStack.h tuiSourceWin.h tuiSource.h \
tuiDisassem.h
tuiStack.o: tui.h tuiData.h tuiStack.h tuiSourceWin.h
tuiWin.o: tui.h tuiData.h tuiGeneralWin.h tuiStack.h tuiSourceWin.h \
tuiDataWin.h
tuiInit.o: tuiInit.c
tuiInit.c: $(SOURCES)
@echo Making tuiInit.c
@rm -f init.c-tmp
@echo '/* Do not modify this file. */' >init.c-tmp
@echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
@echo '#include "ansidecl.h"' >>init.c-tmp
@echo 'extern void initialize_tui_files PARAMS ((void));' >>init.c-tmp
@echo 'void initialize_tui_files PARAMS ((void)) {' >>init.c-tmp
@-( cd $(srcdir) ; grep '^_initialize_[a-z_0-9A-Z]* *(' $(SOURCES) ) 2>/dev/null \
| sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/' >>init.c-tmp
@echo '}' >>init.c-tmp
@mv init.c-tmp tuiInit.c
clean:
rm -f *.o *.a

View File

@ -1,982 +0,0 @@
1999-04-22 Jason Molenda (jsm@bugshack.cygnus.com)
* Makefile.in (install): Make comment about this change more explicit.
1999-04-22 Jason Molenda (jsm@bugshack.cygnus.com)
* Makefile.in (install): Don't install the final libreadline.a
or .h files.
Tue Mar 23 10:56:08 1999 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
Patches from Robert Hoehne <robert.hoehne@gmx.net>:
* display.c: Change some terminal calls to work on DJGPP.
* terminal.c: Likewise.
* Makefile.in: Remove . from the VPATH directive.
Tue Mar 9 14:58:13 1999 Geoffrey Noer <noer@cygnus.com>
* support/config.sub: Recognize cygwin*, not just cygwin32.
Tue Feb 9 10:38:57 1999 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* configure.in: Do not use the ./support directory.
* configure: Regenerate.
Wed Jan 6 12:24:19 1999 Christopher Faylor <cgf@cygnus.com>
* configure.in: Use LOCAL_CFLAGS rather than CFLAGS for
searching libtermcap directory.
* configure: Regenerate.
Thu Dec 31 12:07:01 1998 Christopher Faylor <cgf@cygnus.com>
* configure.in: Search devo libtermcap directory for termcap.h
when compiling for cygwin.
* configure: Regenerated.
1998-12-30 Michael Meissner <meissner@cygnus.com>
* Makefile.in (install): Only try to copy libreadline.a and
libhistory.a if they exist.
Tue Dec 29 23:49:20 1998 Christopher Faylor <cgf@cygnus.com>
* cross-build/cygwin.cache: Add a couple more known settings.
* configure.in: Fix typo.
* configure: Regenerated.
Tue Dec 29 18:11:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* cross-build: new directory.
* cross-build/cygwin.cache: new file. Used for Cygwin cross builds.
* configure.in: added tests for cross-build for Cygwin.
1998-12-24 Jason Molenda (jsm@bugshack.cygnus.com)
* Makefile.in: Add CYGNUS LOCAL comment.
* acconfig.h: Add missing defines.
* config.h.bot: Add missing content.
* configure, config.h.in: Regenerated.
Wed Dec 23 16:21:41 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Makefile.in: comment out the rule to rebuild configure by
running autoconf.
Tue Dec 22 10:00:30 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* shell.c (savestring): ifdef'd it out.
* Imported new version of Readline 2.2.1. Removed all the Cygnus
local changes.
New files: acconfig.h, aclocal.m4, ansi_stdlib.h, callback.c,
config.h.in, configure, histexpand.c, histfile.c, histlib.h,
histsearch.c, input.c, kill.c, macro.c, nls.c, posixdir.h,
posixjmp.h, posixstat.h, rlconf.h, rltty.h, rlwinsize.h, shell.c,
tcap.h, terminal.c, undo.c, util.c, support directory.
Removed files: sysdep*, config directory.
Fri Dec 4 15:25:41 1998 David Taylor <taylor@texas.cygnus.com>
The following changes were made by Jim Blandy
<jimb@zwingli.cygnus.com> and David Taylor
<taylor@texas.cygnus.com> as part of a project to merge in changes
made by HP; HP did not create ChangeLog entries.
* config/mp-enable-tui: New file.
(TUI_CFLAGS): Search devo's include directory, as long as we're
totally ruining modularity.
(INCLUDE_SRCDIR): New var.
(GDB_TUI_SRCDIR): Fix syntax error.
* configure.in: Check the --enable-tui flag; if it's set, include
a makefile fragment that #defines TUI and adds the needed #include
directories.
(*-*-hpux*): New host; use sysdep-hpux.h.
* Makefile.in (.c.o): Check the variable set in the makefile
fragment above.
* display.c (term_goto): declare it.
(insert_some_chars): set it.
(delete_chars): set it.
* readline.c: add tui include files surrounded by TUI.
(rl_reset): new function, move some of rl_abort functionality to
here.
(rl_abort): call rl_reset.
(rl_getc): tui changes.
(init_terminal_io): tui changes.
* readline.h (tui_version, fputc_unfiltered, fputs_unfiltered,
tui_tputs): declare if TUI is defined.
* rltty.c (prepare_terminal_settings): additional comment.
* signals.c: add tui include files surrounded by TUI. move #if
and #endif to column 1 so HP's compiler will accept them. Remove
declaration of tuiDoAndReturnToTop since it's declared in tui.h.
(rl_handle_sigwinch): call tuiDoAndReturnToTop if TUI defined.
(rl_handle_sigwinch_on_clear): define if TUI defined.
(rl_set_signals): if TUI, avoid infinite recursion.
(rl_clear_signals): install rl_handle_sigwinch_on_clear.
* sysdep-hpux.h: New file.
Mon Nov 2 15:26:33 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: Check cygwin* instead of cygwin32*.
Tue Jul 28 09:43:27 1998 Jeffrey A Law (law@cygnus.com)
* sysdep-hpux11.h: New file.
* configure.in (*-*-*-hpux11*): Use sysdep-hpux11.h.
Thu Jul 23 17:48:21 1998 Ian Lance Taylor <ian@cygnus.com>
* configure.bat: Remove obsolete file.
* examples/configure.bat: Remove obsolete file.
Wed May 13 13:41:53 1998 Ian Lance Taylor <ian@cygnus.com>
* sysdep-6irix.h: New file.
* configure.in (*-*-irix6*): New host; use sysdep-6irix.h.
* Makefile.in (isearch.o, search.o): Depend upon sysdep.h.
(Makefile): Depend upon $(srcdir)/configure.in.
Thu Apr 9 11:59:38 1998 Ian Dall (<Ian.Dall@dsto.defence.gov.au>
* configure.in (host==netbsd): Include config/mh-bsd44.
* config/mh-bsd44: New file.
Wed Dec 3 16:48:20 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
* rltty.c: fix typos.
Tue Oct 8 08:59:24 1996 Stu Grossman (grossman@critters.cygnus.com)
* tilde.c (tilde_word_expand): __MSDOS___ -> __MSDOS__
Sat Oct 05 11:24:34 1996 Mark Alexander <marka@cygnus.com>
* rldefs.h: On Linux, include <termios.h> to fix compile error
in <termcap.h>.
Wed Sep 4 18:06:51 1996 Stu Grossman (grossman@critters.cygnus.com)
* rldefs.h: Enable HANDLE_SIGNALS for cygwin32.
Thu Aug 29 16:59:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
* configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
Fri Aug 16 17:49:57 1996 Stu Grossman (grossman@critters.cygnus.com)
* complete.c: Include <pwd.h> if not DOS, and if cygwin32 or not
win32.
* configure.in: Add test for *-*-cygwin32* to use config/mh-posix.
* readline.c: Move decl of tgetstr to rldefs.h.
* (_rl_set_screen_size): Remove redundant ifdef MINIMALs.
* rldefs.h: Don't do MINIMAL for cygwin32. Cygwin32 now uses
full-blown readline, except for termcap.
Sun Aug 11 21:06:26 1996 Stu Grossman (grossman@critters.cygnus.com)
* rldefs.c: Get rid of define of SIGALRM if _WIN32 or __MSDOS__.
* Don't define ScreenCols/ScreenRows/... if cygwin32.
* sysdep-norm.h: Don't include <malloc.h> if cygwin32.
Sun Aug 11 14:59:09 1996 Fred Fish <fnf@cygnus.com>
* rldefs.h: If __osf__is defined, include <termio.h> instead of
<sgtty.h>.
Fri Aug 9 08:54:26 1996 Stu Grossman (grossman@critters.cygnus.com)
* bind.c complete.c history.c readline.c: Don't include sys/file.h.
* complete.c display.c parens.c readline.c rldefs.h rltty.c
signals.c tilde.c: Change refs to _MSC_VER and __WIN32__ to _WIN32.
* signals.c (rl_signal_handler): Ifdef out kill if _WIN32.
* sysdep-norm.h: Ifdef out include of dirent.h if _WIN32.
Include malloc.h if _WIN32.
Thu Jul 18 15:59:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
* rldefs.h (sys/uio.h) Before sys/stream.h is included under AIX,
include sys/uio.h, which prevents an undefined structure used in a
prototype message from being generated.
Tue Jun 25 23:05:55 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
* Makefile.in (datadir): Set to $(prefix)/share.
(docdir): Removed.
Sun May 26 15:14:42 1996 Fred Fish <fnf@cygnus.com>
From: David Mosberger-Tang <davidm@azstarnet.com>
* sysdep-linux.h: New file.
* display.c: Add include of "sysdep.h" to get HAVE_VARARGS_H.
* configure.in: Change pattern i[345]86-*-linux* into *-*-linux* to
support non-x86 based Linux platforms.
Sun Apr 7 22:06:11 1996 Fred Fish <fnf@cygnus.com>
From: Miles Bader <miles@gnu.ai.mit.edu>
* config/mh-gnu: New file.
* configure.in (*-*-gnu*): New host.
Sun Apr 7 13:21:51 1996 Fred Fish <fnf@cygnus.com>
From: Robert Lipe <robertl@dgii.com>
* configure.in: SCO OpenServer 5 (a.k.a 3.2v5*) is more like
SCO 3.2v4 than 3.2v2.
Wed Jan 3 18:22:10 1996 steve chamberlain <sac@slash.cygnus.com>
* readline.c, display.c, complete.c: Add _MSC_VER to list of
things which can't do most things.
Thu Nov 16 15:39:05 1995 Geoffrey Noer <noer@cygnus.com>
* complete.c: Change WIN32 to __WIN32__, added #else return NULL
to end of that define.
Tue Oct 31 10:38:58 1995 steve chamberlain <sac@slash.cygnus.com>
* display.c, parens.c, readline.c, rldefs.h: Change use of
WIN32 to __WIN32__.
Tue Oct 10 11:07:23 1995 Fred Fish <fnf@cygnus.com>
* Makefile.in (BISON): Remove macro.
Tue Oct 10 08:49:00 1995 steve chamberlain <sac@slash.cygnus.com>
* complete.c (filename_completion_function): Enable for
win32 when not MSC.
Sun Oct 8 04:17:19 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* configure.in: Handle powerpc-ibm-aix* like rs6000-ibm-aix*.
Sat Oct 7 20:36:16 1995 Michael Meissner <meissner@cygnus.com>
* rltty.c (outchar): Return an int, like tputs expects.
* signals.c (_rl_output_character_function): Ditto.
Fri Sep 29 15:19:23 1995 steve chamberlain <sac@slash.cygnus.com>
Fixes for when the host WIN32, but not MSC.
* complete.c: Sometimes have pwd.h
* parens.c: WIN32 has similar restrictions to __GO32__.
* readline.c (__GO32__): Some of this moved into rldefs.h
* signals.c (__GO32__): Likewise.
* rldefs.h (MSDOS||WIN32) becomes MSDOS||MSC.
(WIN32&&!WIN32): New definitions.
Wed Sep 20 12:57:17 1995 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in (maintainer-clean): New synonym for realclean.
Wed Mar 1 13:33:43 1995 Michael Meissner <meissner@tiktok.cygnus.com>
* rltty.c (outchar): Provide prototype for outchar, to silence
type warnings in passing outchar to tputs on systems like Linux
that have full prototypes.
* signals.c (_rl_output_character_function): Provide prototype to
silence type warnings.
Sun Jan 15 14:10:37 1995 Steve Chamberlain <sac@splat>
* rldefs.h: Define MINIMAL for __GO32__ and WIN32.
* complete.c, display.c, readline.c, rltty.c: Test MINIMAL
instead of __GO32__.
Wed Aug 24 13:04:47 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* configure.in: Change i[34]86 to i[345]86.
Sat Jul 16 13:26:31 1994 Stan Shebs (shebs@andros.cygnus.com)
* configure.in (m88*-harris-cxux7*): Recognize.
* sysdep-cxux7.h: New file.
Fri Jul 8 13:18:33 1994 Steve Chamberlain (sac@jonny.cygnus.com)
* rttty.c (control_meta_key_on): Remove superfluous testing of
__GO32__.
Thu Jun 30 15:21:54 1994 Steve Chamberlain (sac@jonny.cygnus.com)
* rltty.c (control_meta_key_on): Don't compile if __GO32__ is
defined.
(rltty_set_default_bindings): Likewise.
* display.c (insert_some_chars, delete_chars): row_start should be
a short.
* parens.c (rl_insert_close): No FD_SET if using __GO32__.
* readline.c (rl_gather_tyi): Strip off spurious high bits.
Sun Jun 12 03:51:52 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* history.c: Swap inclusion of rldefs.h and chardefs.h to avoid
CTRL macro redefinition.
Mon May 9 18:29:42 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* readline.c (readline_default_bindings): Don't compile if
__GO32__ is defined.
(_rl_set_screen_size): Likewise.
* rltty.c (rltty_set_default_bindings): Likewise.
(control_meta_key): Likewise.
* display.c: If __GO32__ is defined, include <sys/pc.h>.
* parens.c: If __GO32__ is defined, undefine FD_SET.
* signals.c: Include SIGWINCH handling in the set of things which
is not done if HANDLE_SIGNALS is not set.
Fri May 6 13:38:39 1994 Steve Chamberlain (sac@cygnus.com)
* config/mh-go32: New fragment.
* configure.in (host==go32): Use go32 fragment.
Wed May 4 14:36:53 1994 Stu Grossman (grossman@cygnus.com)
* chardefs.h, rldefs.h: Move decls of string funcs from chardefs.h
to rldefs.h so that they don't pollute apps that include
readline.h.
* history.c: include rldefs.h to get decls of string funcs.
Wed May 4 12:15:11 1994 Stan Shebs (shebs@andros.cygnus.com)
* configure.in (rs6000-bull-bosx*): New configuration, RS/6000
variant.
Wed Apr 20 10:43:52 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* configure.in: Use mh-posix for sunos4.1*.
Wed Apr 13 21:28:44 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
* rltty.c (set_tty_settings): Don't set readline_echoing_p.
(rl_deprep_terminal) [NEW_TTY_DRIVER]: Set readline_echoing_p.
Sun Mar 13 09:13:12 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in: Add TAGS target.
Wed Mar 9 18:01:31 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* isearch.c, search.c: Include sysdep.h.
Thu Mar 3 17:40:03 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
* configure.in: For ISC, use mh-sysv, not mh-isc.
Thu Feb 24 04:13:53 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* Merge in changes from bash-1.13.5. Merge changes from glob/tilde.c
into tilde.c and use it. Add system function declarations where
necessary. Check for __GO32__, not _GO32_ consistently.
* Makefile.in: Update dependencies.
* rltty.c: Include <sys/file.h> to match include file setup
in readline.c for rldefs.h. Otherwise we get inconsistent
TTY_DRIVER definitions in readline.c and rltty.c.
* bind.c, complete.c: Do not include <sys/types.h>, it is already
included via sysdep.h, which causes problems if <sys/types.h> has
no multiple inclusion protection.
* readline.c (_rl_set_screen_size): Reestablish test for
TIOCGWINSZ_BROKEN.
* rldefs.h: Define S_ISREG if necessary.
Fri Feb 18 08:56:35 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in: Add search.o rule for Sun make.
Wed Feb 16 16:35:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
* rltty.c: #if out some code if __GO32__.
Tue Feb 15 14:07:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
* readline.c (_rl_output_character_function), display.c:
Return int, not void, to conform with the expected arg of tputs.
* readline.c (init_terminal_io): tgetflag only takes 1 arg.
* readline.c (_rl_savestring): New function.
* chardefs.h: To avoid conflicts and/or warnings, define
savestring as a macro wrapper for _rl_savestring.
* display.c (extern term_xn): It's an int flag, not a string.
* charsdefs.h, rldefs.h: Remove HAVE_STRING_H-related junk.
Sat Feb 5 08:32:30 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in: Remove obsolete rules for history.info and
readline.info.
Thu Jan 27 17:04:01 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
* chardefs.h: Only declare strrchr if it is not #define'd.
Tue Jan 25 11:30:06 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* rldefs.h: Accept __hpux as well as hpux for HP compiler in ANSI mode.
Fri Jan 21 17:31:26 1994 Jim Kingdon (kingdon@lisa.cygnus.com)
* chardefs.h, tilde.c: Just declare strrchr rather than trying to
include a system header.
Fri Jan 21 14:40:43 1994 Fred Fish (fnf@cygnus.com)
* Makefile.in (distclean, realclean): Expand local-distclean
inline after doing recursion. You can't recurse after removing
Makefile. Make them depend on local-clean.
* Makefile.in (local-distclean): Remove now superfluous target.
Mon Jan 17 12:42:07 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
* readline.c (doing_an_undo): Delete second declaration, since it
confuses the alpha-osf1 native compiler.
Sun Jan 16 12:33:11 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* complete.c, bind.c: Include <sys/stat.h>.
* complete.c: Define X_OK if not defined by a system header.
* chardefs.h: Don't declare xmalloc.
* keymaps.h: Include "chardefs.h" not <readline/chardefs.h>.
* Makefile.in (clean mostlyclean distclean realclean): Recurse
into subdirectories as well as doing this directory. Add clean-dvi
target.
Sat Jan 15 19:36:12 1994 Per Bothner (bothner@kalessin.cygnus.com)
* readline.c, display.c: Patches to allow use of all 80
columns on most terminals (those with am and xn).
Merge in changes from bash-1.13. The most obvious one is
that the file readline.c has been split into multiple files.
* bind.c, complete.c, dispay.c, isearch.c, parens.c, rldefs.h,
rltty.c, search.c signals.c, tilde.c, tilde.h, xmalloc.c: New files.
Sat Dec 11 16:29:17 1993 Steve Chamberlain (sac@thepub.cygnus.com)
* readline.c (rl_getc): If GO32, trim high bit from getkey,
otherwise fancy PC keys cause grief.
Fri Nov 5 11:49:47 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* configure.in: Add doc to configdirs.
* Makefile.in (info dvi install-info clean-info): Recurse into doc.
Fri Oct 22 07:55:08 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* configure.in: Add * to end of all OS names.
Tue Oct 5 12:33:51 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* readline.c: Add stuff for HIUX to place where we detect termio
vs. sgtty (ugh, but I don't see a simple better way).
Wed Sep 29 11:02:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* readline.c (parser_if): Free tname when done with it (change
imported from from bash 1.12 readline).
Tue Sep 7 17:15:37 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* configure.in (m88k-*-sysvr4*): Comment out previous change.
Fri Jul 2 11:05:34 1993 Ian Lance Taylor (ian@cygnus.com)
* configure.in (*-*-riscos*): New entry; use mh-sysv.
Wed Jun 23 13:00:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* configure.in: Add comment.
Mon Jun 14 14:28:55 1993 Jim Kingdon (kingdon@eric)
* configure.in (m88k-*-sysvr4*): Use sysdep-norm.h.
Sun Jun 13 13:04:09 1993 Jim Kingdon (kingdon@cygnus.com)
* Makefile.in ({real,dist}clean): Remove sysdep.h.
Thu Jun 10 11:22:41 1993 Jim Kingdon (kingdon@cygnus.com)
* Makefile.in: Add mostlyclean, distclean, and realclean targets.
Fri May 21 17:09:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* config/mh-isc: New file.
* configure.in: Use it.
Sat Apr 17 00:40:12 1993 Jim Kingdon (kingdon at calvin)
* readline.c, history.c: Don't include sys/types.h; sysdep.h does.
* config/mh-sysv: Define TIOCGWINSZ_BROKEN.
readline.c: Check it.
Wed Mar 24 02:06:15 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
* Makefile.in: add installcheck & dvi targets
Fri Mar 12 18:36:53 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* configure.in: recognize *-*-solaris2* instead of *-*-solaris* (a
number of people want to call SunOS 4.1.2 "solaris1.0"
and get it right)
Tue Mar 2 21:25:36 1993 Fred Fish (fnf@cygnus.com)
* sysdep-sysv4.h: New file for SVR4.
* configure.in (*-*-sysv4*): Use sysdep-sysv4.h.
* configure.in (*-*-ultrix2): Add triplet from Michael Rendell
(michael@mercury.cs.mun.ca)
Tue Dec 15 12:38:16 1992 Ian Lance Taylor (ian@cygnus.com)
* configure.in (i[34]86-*-sco3.2v4*): use mh-sco4.
* config/mh-sco4: New file, like mh-sco but without defining
_POSIX_SOURCE.
Wed Nov 11 21:20:14 1992 John Gilmore (gnu@cygnus.com)
* configure.in: Reformat to one-case-per-line.
Handle SunOS 3.5, as per Karl Berry, <karl@claude.cs.umb.edu>.
Wed Nov 4 15:32:31 1992 Stu Grossman (grossman at cygnus.com)
* sysdep-norm.h: Remove some crud, install dire warning.
Thu Oct 22 01:08:13 1992 Stu Grossman (grossman at cygnus.com)
* configure.in: Make SCO work again...
Mon Oct 12 15:04:07 1992 Ian Lance Taylor (ian@cygnus.com)
* readline.c (init_terminal_io): if tgetent returns 0, the
terminal type is unknown.
Thu Oct 1 23:44:14 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* configure.in: use cpu-vendor-os triple instead of nested cases
Wed Sep 30 12:58:57 1992 Stu Grossman (grossman at cygnus.com)
* readline.c (rl_complete_internal): Cast alloca to (char *) to
avoid warning.
Fri Sep 25 12:45:05 1992 Stu Grossman (grossman at cygnus.com)
* readline.c (clear_to_eol, rl_generic_bind): Make static.
(rl_digit_loop): Add arg to call to rl_message().
* vi_mode.c (rl_vi_first_print): Add arg to call to
rl_back_to_indent().
Wed Aug 19 14:59:07 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in: always create installation directories, use full
file name for install target.
Wed Aug 12 15:50:57 1992 John Gilmore (gnu@cygnus.com)
* readline.c (last_readline_init_file): Fix typo made by Steve
Chamberlain/DJ Delorie. Proper control file name is ~/.inputrc,
not ~/inputrc.
Thu Jun 25 16:15:27 1992 Stu Grossman (grossman at cygnus.com)
* configure.in: Make bsd based systems use sysdep-obsd.h.
Tue Jun 23 23:22:53 1992 Per Bothner (bothner@cygnus.com)
* config/mh-posix: New file, for Posix-compliant systems.
* configure.in: Use mh-posix for Linux (free Unix clone).
Tue Jun 23 21:59:20 1992 Fred Fish (fnf@cygnus.com)
* sysdep-norm.h (alloca): Protect against previous definition as
a macro with arguments.
Fri Jun 19 15:48:54 1992 Stu Grossman (grossman at cygnus.com)
* sysdep-obsd.h: #include <sys/types.h> to make this more Kosher.
Fri Jun 19 12:53:28 1992 John Gilmore (gnu at cygnus.com)
* config/mh-apollo68v, mh-sco, mh-sysv, mh-sysv4}: RANLIB=true.
Mon Jun 15 13:50:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* configure.in: use mh-sysv4 on solaris2
Mon Jun 15 12:28:24 1992 Fred Fish (fnf@cygnus.com)
* config/mh-ncr3000 (INSTALL): Don't use /usr/ucb/install,
it is broken on ncr 3000's.
* config/mh-ncr3000 (RANLIB): Use RANLIB=true.
Mon Jun 15 01:35:55 1992 John Gilmore (gnu at cygnus.com)
* readline.c: Make new SIGNALS_* macros to parameterize the
ugly changes in signal blocking. Use them throughout,
reducing #ifdef HAVE_POSIX_SIGNALS and HAVE_BSD_SIGNALS clutter
significantly. Make all such places use POSIX if available,
to avoid losing with poor `sigsetmask' emulation from libiberty.
Sun Jun 14 15:19:51 1992 Stu Grossman (grossman at cygnus.com)
* readline.c (insert_some_chars): Return void.
Thu Jun 11 01:27:45 1992 John Gilmore (gnu at cygnus.com)
* readline.c: #undef PC, which Solaris2 defines in sys/types.h,
clobbering the termcap global variable PC.
Tue Jun 9 17:30:23 1992 Fred Fish (fnf@cygnus.com)
* config/{mh-ncr3000, mh-sysv4}: Change INSTALL to use
/usr/ucb/install.
Mon Jun 8 23:10:07 1992 Fred Fish (fnf@cygnus.com)
* readline.h (rl_completer_quote_characters): Add declaration.
* readline.c (rl_completer_quote_characters): Add global var.
* readline.c (strpbrk): Add prototype and function.
* readline.c (rl_complete_internal): Add code to handle
expansion of quoted strings.
Mon May 11 12:39:30 1992 John Gilmore (gnu at cygnus.com)
* readline.c: Can't initialize FILE *'s with stdin and stdout,
because they might not be constant. Patch from Tom Quinn,
trq@dinoysos.thphys.ox.ac.uk.
Tue Apr 28 21:52:34 1992 John Gilmore (gnu at cygnus.com)
* readline.h: Declare rl_event_hook (which already existed).
Suggested by Christoph Tietz <tietz@zi.gmd.dbp.de>.
Wed Apr 22 18:08:01 1992 K. Richard Pixley (rich@rtl.cygnus.com)
* configure.in: remove subdirs declaration. The obsolete semantic
for subdirs has been usurped by per's new meaning.
Tue Apr 21 11:54:23 1992 K. Richard Pixley (rich@cygnus.com)
* Makefile.in: rework CFLAGS so that they can be set on the
command line to make. Remove MINUS_G. Default CFLAGS to -g.
Fri Apr 10 23:02:27 1992 Fred Fish (fnf@cygnus.com)
* configure.in: Recognize new ncr3000 config.
* config/mh-ncr3000: New NCR 3000 config file.
Wed Mar 25 10:46:30 1992 John Gilmore (gnu at cygnus.com)
* history.c (stifle_history): Negative arg treated as zero.
Tue Mar 24 23:46:20 1992 K. Richard Pixley (rich@cygnus.com)
* config/mh-sysv: INSTALL_PROG -> INSTALL.
Mon Feb 10 01:41:35 1992 Brian Fox (bfox at gnuwest.fsf.org)
* history.c (history_do_write) Build a buffer of all of the lines
to write and write them in one fell swoop (lower overhead than
calling write () for each line). Suggested by Peter Ho.
* vi_mode.c (rl_vi_subst) Don't forget to end the undo group.
Sat Mar 7 00:15:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
* Makefile.in: remove FIXME's on info and install-info targets.
Fri Mar 6 22:02:04 1992 K. Richard Pixley (rich@cygnus.com)
* Makefile.in: added check target.
Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
* Makefile.in, configure.in: removed traces of namesubdir,
-subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
copyrights to '92, changed some from Cygnus to FSF.
Fri Feb 21 14:37:32 1992 Steve Chamberlain (sac at rtl.cygnus.com)
* readline.c, examples/fileman.c: patches from DJ to support DOS
Thu Feb 20 23:23:16 1992 Stu Grossman (grossman at cygnus.com)
* readline.c (rl_read_init_file): Make sure that null filename is
not passed to open() or else we end up opening the directory, and
read a bunch of garbage into keymap[].
Mon Feb 17 17:15:09 1992 Fred Fish (fnf at cygnus.com)
* readline.c (readline_default_bindings): Only make use of VLNEXT
when both VLNEXT and TERMIOS_TTY_DRIVER is defined. On SVR4
<termio.h> includes <termios.h>, so VLNEXT is always defined.
* sysdep-norm.h (_POSIX_VERSION): Define this for all SVR4
systems so that <termios.h> gets used, instead of <termio.h>.
Fri Dec 20 12:04:31 1991 Fred Fish (fnf at cygnus.com)
* configure.in: Change svr4 references to sysv4.
Tue Dec 10 04:07:20 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: infodir belongs in datadir.
Fri Dec 6 23:23:14 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: remove spaces following hyphens, bsd make can't
cope. added clean-info. added standards.text support. Don't
know how to make info anymore.
* configure.in: commontargets is no longer a recognized hook, so
remove it. new subdir called doc.
Thu Dec 5 22:46:10 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: idestdir and ddestdir go away. Added copyrights
and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
and mandir now keyed off datadir by default.
Fri Nov 22 09:02:32 1991 John Gilmore (gnu at cygnus.com)
* sysdep-obsd.h: Rename from sysdep-newsos.h.
* configure.in: Use sysdep-obsd for Mach as well as NEWs.
* sysdep-norm.h, sysdep-aix.h: Add <sys/types.h>, which POSIX
requires to make <dirent.h> work. Improve Sun alloca decl.
Thu Nov 21 18:48:08 1991 John Gilmore (gnu at cygnus.com)
* Makefile.in: Clean up ../glob/tilde.c -> tilde.o path.
Clean up makefile a bit in general.
Thu Nov 21 14:40:29 1991 Stu Grossman (grossman at cygnus.com)
* configure.in, config/mh-svr4: Make SVR4 work.
* readline.c: Move config stuff to sysdep.h, use typedef dirent
consistently, remove refs to d_namlen (& D_NAMLEN) to improve
portability. Also, update copyright notice.
readline.h: remove config stuff that I added erroneously in the
first place.
* emacs_keymap.c, funmap.c, history.c, keymaps.c, vi_keymap.c,
vi_mode.c: move config stuff to sysdep.h, update copyright notices.
Tue Nov 19 15:02:13 1991 Stu Grossman (grossman at cygnus.com)
* history.c: #include "sysdep.h".
Tue Nov 19 10:49:17 1991 Fred Fish (fnf at cygnus.com)
* Makefile.in, config/hm-sysv, config/hm-sco: Change SYSV to
USG to match current usage.
* readline.c: Add USGr4 to list of defined things to check for
to use <dirent.h> style directory access.
* config/hm-svr4: New file for System V Release 4 (USGr4).
Mon Nov 18 23:59:52 1991 Stu Grossman (grossman at cygnus.com)
* readline.c (filename_completion_function): use struct dirent
instead of struct direct.
Fri Nov 1 07:02:13 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c (rl_translate_keyseq) Make C-? translate to RUBOUT
unconditionally.
Mon Oct 28 11:34:52 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c; Use Posix directory routines and macros.
* funmap.c; Add entry for call-last-kbd-macro.
* readline.c (rl_prep_term); Use system EOF character on POSIX
systems also.
Thu Oct 3 16:19:53 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c; Make a distinction between having a TERMIOS tty
driver, and having POSIX signal handling. You might one without
the other. New defines used HAVE_POSIX_SIGNALS, and
TERMIOS_TTY_DRIVER.
Tue Jul 30 22:37:26 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: rl_getc () If a call to read () returns without an
error, but with zero characters, the file is empty, so return EOF.
Thu Jul 11 20:58:38 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: (rl_get_next_history, rl_get_previous_history)
Reallocate the buffer space if the line being moved to is longer
the the current space allocated. Amazing that no one has found
this bug until now.
Sun Jul 7 02:37:05 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c:(rl_parse_and_bind) Allow leading whitespace.
Make sure TERMIO and TERMIOS systems treat CR and NL
disctinctly.
Tue Jun 25 04:09:27 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: Rework parsing conditionals to pay attention to the
prior states of the conditional stack. This makes $if statements
work correctly.
Mon Jun 24 20:45:59 1991 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: support for displaying key binding information
includes the functions rl_list_funmap_names (),
invoking_keyseqs_in_map (), rl_invoking_keyseqs (),
rl_dump_functions (), and rl_function_dumper ().
funmap.c: support for same includes rl_funmap_names ().
readline.c, funmap.c: no longer define STATIC_MALLOC. However,
update both version of xrealloc () to handle a null pointer.
Thu Apr 25 12:03:49 1991 Brian Fox (bfox at gnuwest.fsf.org)
* vi_mode.c (rl_vi_fword, fWord, etc. All functions use
the macro `isident()'. Fixed movement bug which prevents
continious movement through the text.
Fri Jul 27 16:47:01 1990 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c (parser_if) Allow "$if term=foo" construct.
Wed May 23 16:10:33 1990 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c (rl_dispatch) Correctly remember the last command
executed. Fixed typo in username_completion_function ().
Mon Apr 9 19:55:48 1990 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: username_completion_function (); For text passed in
with a leading `~', remember that this could be a filename (after
it is completed).
Thu Apr 5 13:44:24 1990 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: rl_search_history (): Correctly handle case of an
unfound search string, but a graceful exit (as with ESC).
* readline.c: rl_restart_output (); The Apollo passes the address
of the file descriptor to TIOCSTART, not the descriptor itself.
Tue Mar 20 05:38:55 1990 Brian Fox (bfox at gnuwest.fsf.org)
* readline.c: rl_complete (); second call in a row causes possible
completions to be listed.
* readline.c: rl_redisplay (), added prompt_this_line variable
which is the first character character following \n in prompt.
Sun Mar 11 04:32:03 1990 Brian Fox (bfox at gnuwest.fsf.org)
* Signals are now supposedly handled inside of SYSV compilation.
Wed Jan 17 19:24:09 1990 Brian Fox (bfox at sbphy.ucsb.edu)
* history.c: history_expand (); fixed overwriting memory error,
added needed argument to call to get_history_event ().
Thu Jan 11 10:54:04 1990 Brian Fox (bfox at sbphy.ucsb.edu)
* readline.c: added mark_modified_lines to control the
display of an asterisk on modified history lines. Also
added a user variable called mark-modified-lines to the
`set' command.
Thu Jan 4 10:38:05 1990 Brian Fox (bfox at sbphy.ucsb.edu)
* readline.c: start_insert (). Only use IC if we don't have an im
capability.
Fri Sep 8 09:00:45 1989 Brian Fox (bfox at aurel)
* readline.c: rl_prep_terminal (). Only turn on 8th bit
as meta-bit iff the terminal is not using parity.
Sun Sep 3 08:57:40 1989 Brian Fox (bfox at aurel)
* readline.c: start_insert (). Uses multiple
insertion call in cases where that makes sense.
rl_insert (). Read type-ahead buffer for additional
keys that are bound to rl_insert, and insert them
all at once. Make insertion of single keys given
with an argument much more efficient.
Tue Aug 8 18:13:57 1989 Brian Fox (bfox at aurel)
* readline.c: Changed handling of EOF. readline () returns
(char *)EOF or consed string. The EOF character is read from the
tty, or if the tty doesn't have one, defaults to C-d.
* readline.c: Added support for event driven programs.
rl_event_hook is the address of a function you want called
while Readline is waiting for input.
* readline.c: Cleanup time. Functions without type declarations
do not use return with a value.
* history.c: history_expand () has new variable which is the
characters to ignore immediately following history_expansion_char.
Sun Jul 16 08:14:00 1989 Brian Fox (bfox at aurel)
* rl_prep_terminal ()
BSD version turns off C-s, C-q, C-y, C-v.
* readline.c -- rl_prep_terminal ()
SYSV version hacks readline_echoing_p.
BSD version turns on passing of the 8th bit for the duration
of reading the line.
Tue Jul 11 06:25:01 1989 Brian Fox (bfox at aurel)
* readline.c: new variable rl_tilde_expander.
If non-null, this contains the address of a function to call if
the standard meaning for expanding a tilde fails. The function is
called with the text sans tilde (as in "foo"), and returns a
malloc()'ed string which is the expansion, or a NULL pointer if
there is no expansion.
* readline.h - new file chardefs.h
Separates things that only readline.c needs from the standard
header file publishing interesting things about readline.
* readline.c:
readline_default_bindings () now looks at terminal chararacters
and binds those as well.
Wed Jun 28 20:20:51 1989 Brian Fox (bfox at aurel)
* Made readline and history into independent libraries.