#!/usr/bin/perl
    eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
	if $running_under_some_shell;

use strict;

use Config;
use File::Path qw(mkpath);
use Getopt::Std;

# Make sure read permissions for all are set:
if (defined umask && (umask() & 0444)) {
    umask (umask() & ~0444);
}

getopts('Dd:rlhaQe');
use vars qw($opt_D $opt_d $opt_r $opt_l $opt_h $opt_a $opt_Q $opt_e);
die "-r and -a options are mutually exclusive\n" if ($opt_r and $opt_a);
my @inc_dirs = inc_dirs() if $opt_a;

my $Exit = 0;

my $Dest_dir = $opt_d || $Config{installsitearch};
die "Destination directory $Dest_dir doesn't exist or isn't a directory\n"
    unless -d $Dest_dir;

my @isatype = qw(
	char	uchar	u_char
	short	ushort	u_short
	int	uint	u_int
	long	ulong	u_long
	FILE	key_t	caddr_t
	float	double	size_t
);

my %isatype;
@isatype{@isatype} = (1) x @isatype;
my $inif = 0;
my %Is_converted;
my %bad_file = ();

@ARGV = ('-') unless @ARGV;

build_preamble_if_necessary();

sub reindent($) {
    my($text) = shift;
    $text =~ s/\n/\n    /g;
    $text =~ s/        /\t/g;
    $text;
}

my ($t, $tab, %curargs, $new, $eval_index, $dir, $name, $args, $outfile);
my ($incl, $incl_type, $next);
while (defined (my $file = next_file())) {
    if (-l $file and -d $file) {
        link_if_possible($file) if ($opt_l);
        next;
    }

    # Recover from header files with unbalanced cpp directives
    $t = '';
    $tab = 0;

    # $eval_index goes into ``#line'' directives, to help locate syntax errors:
    $eval_index = 1;

    if ($file eq '-') {
	open(IN, "-");
	open(OUT, ">-");
    } else {
	($outfile = $file) =~ s/\.h$/.ph/ || next;
	print "$file -> $outfile\n" unless $opt_Q;
	if ($file =~ m|^(.*)/|) {
	    $dir = $1;
	    mkpath "$Dest_dir/$dir";
	}

	if ($opt_a) { # automagic mode:  locate header file in @inc_dirs
	    foreach (@inc_dirs) {
		chdir $_;
		last if -f $file;
	    }
	}

	open(IN,"$file") || (($Exit = 1),(warn "Can't open $file: $!\n"),next);
	open(OUT,">$Dest_dir/$outfile") || die "Can't create $outfile: $!\n";
    }

    print OUT
        "require '_h2ph_pre.ph';\n\n",
        "no warnings 'redefine';\n\n";

    while (defined (local $_ = next_line($file))) {
	if (s/^\s*\#\s*//) {
	    if (s/^define\s+(\w+)//) {
		$name = $1;
		$new = '';
		s/\s+$//;
		s/\(\w+\s*\(\*\)\s*\(\w*\)\)\s*(-?\d+)/$1/; # (int (*)(foo_t))0
		if (s/^\(([\w,\s]*)\)//) {
		    $args = $1;
		    my $proto = '() ';
		    if ($args ne '') {
			$proto = '';
			foreach my $arg (split(/,\s*/,$args)) {
			    $arg =~ s/^\s*([^\s].*[^\s])\s*$/$1/;
			    $curargs{$arg} = 1;
			}
			$args =~ s/\b(\w)/\$$1/g;
			$args = "my($args) = \@_;\n$t    ";
		    }
		    s/^\s+//;
		    expr();
		    $new =~ s/(["\\])/\\$1/g;       #"]);
		  EMIT:
		    $new = reindent($new);
		    $args = reindent($args);
		    if ($t ne '') {
			$new =~ s/(['\\])/\\$1/g;   #']);
			if ($opt_h) {
			    print OUT $t,
                            "eval \"\\n#line $eval_index $outfile\\n\" . 'sub $name $proto\{\n$t    ${args}eval q($new);\n$t}' unless defined(\&$name);\n";
                            $eval_index++;
			} else {
			    print OUT $t,
                            "eval 'sub $name $proto\{\n$t    ${args}eval q($new);\n$t}' unless defined(\&$name);\n";
			}
		    } else {
                      print OUT "unless(defined(\&$name)) {\n    sub $name $proto\{\n\t${args}eval q($new);\n    }\n}\n";
		    }
		    %curargs = ();
		} else {
		    s/^\s+//;
		    expr();
		    $new = 1 if $new eq '';
		    $new = reindent($new);
		    $args = reindent($args);
		    if ($t ne '') {
			$new =~ s/(['\\])/\\$1/g;        #']);

			if ($opt_h) {
			    print OUT $t,"eval \"\\n#line $eval_index $outfile\\n\" . 'sub $name () {",$new,";}' unless defined(\&$name);\n";
			    $eval_index++;
			} else {
			    print OUT $t,"eval 'sub $name () {",$new,";}' unless defined(\&$name);\n";
			}
		    } else {
		    	# Shunt around such directives as `#define FOO FOO':
		    	next if " \&$name" eq $new;

                      print OUT $t,"unless(defined(\&$name)) {\n    sub $name () {\t",$new,";}\n}\n";
		    }
		}
	    } elsif (/^(include|import|include_next)\s*[<\"](.*)[>\"]/) {
                $incl_type = $1;
                $incl = $2;
                if (($incl_type eq 'include_next') ||
                    ($opt_e && exists($bad_file{$incl}))) {
                    $incl =~ s/\.h$/.ph/;
		print OUT ($t,
			   "eval {\n");
                $tab += 4;
                $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
                    print OUT ($t, "my(\@REM);\n");
                    if ($incl_type eq 'include_next') {
		print OUT ($t,
			   "my(\%INCD) = map { \$INC{\$_} => 1 } ",
			           "(grep { \$_ eq \"$incl\" } ",
                                   "keys(\%INC));\n");
		print OUT ($t,
			           "\@REM = map { \"\$_/$incl\" } ",
			   "(grep { not exists(\$INCD{\"\$_/$incl\"})",
			           " and -f \"\$_/$incl\" } \@INC);\n");
                    } else {
                        print OUT ($t,
                                   "\@REM = map { \"\$_/$incl\" } ",
                                   "(grep {-r \"\$_/$incl\" } \@INC);\n");
                    }
		print OUT ($t,
			   "require \"\$REM[0]\" if \@REM;\n");
                $tab -= 4;
                $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
                print OUT ($t,
			   "};\n");
		print OUT ($t,
			   "warn(\$\@) if \$\@;\n");
                } else {
                    $incl =~ s/\.h$/.ph/;
		    print OUT $t,"require '$incl';\n";
                }
	    } elsif (/^ifdef\s+(\w+)/) {
		print OUT $t,"if(defined(&$1)) {\n";
		$tab += 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
	    } elsif (/^ifndef\s+(\w+)/) {
		print OUT $t,"unless(defined(&$1)) {\n";
		$tab += 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
	    } elsif (s/^if\s+//) {
		$new = '';
		$inif = 1;
		expr();
		$inif = 0;
		print OUT $t,"if($new) {\n";
		$tab += 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
	    } elsif (s/^elif\s+//) {
		$new = '';
		$inif = 1;
		expr();
		$inif = 0;
		$tab -= 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
		print OUT $t,"}\n elsif($new) {\n";
		$tab += 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
	    } elsif (/^else/) {
		$tab -= 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
		print OUT $t,"} else {\n";
		$tab += 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
	    } elsif (/^endif/) {
		$tab -= 4;
		$t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
		print OUT $t,"}\n";
	    } elsif(/^undef\s+(\w+)/) {
		print OUT $t, "undef(&$1) if defined(&$1);\n";
	    } elsif(/^error\s+(".*")/) {
		print OUT $t, "die($1);\n";
	    } elsif(/^error\s+(.*)/) {
		print OUT $t, "die(\"", quotemeta($1), "\");\n";
	    } elsif(/^warning\s+(.*)/) {
		print OUT $t, "warn(\"", quotemeta($1), "\");\n";
	    } elsif(/^ident\s+(.*)/) {
		print OUT $t, "# $1\n";
	    }
	} elsif (/^\s*(typedef\s*)?enum\s*(\s+[a-zA-Z_]\w*\s*)?/) { # { for vi
	    until(/\{[^}]*\}.*;/ || /;/) {
		last unless defined ($next = next_line($file));
		chomp $next;
		# drop "#define FOO FOO" in enums
		$next =~ s/^\s*#\s*define\s+(\w+)\s+\1\s*$//;
		# #defines in enums (aliases)
		$next =~ s/^\s*#\s*define\s+(\w+)\s+(\w+)\s*$/$1 = $2,/;
		$_ .= $next;
		print OUT "# $next\n" if $opt_D;
	    }
	    s/#\s*if.*?#\s*endif//g; # drop #ifdefs
	    s@/\*.*?\*/@@g;
	    s/\s+/ /g;
	    next unless /^\s?(typedef\s?)?enum\s?([a-zA-Z_]\w*)?\s?\{(.*)\}\s?([a-zA-Z_]\w*)?\s?;/;
	    (my $enum_subs = $3) =~ s/\s//g;
	    my @enum_subs = split(/,/, $enum_subs);
	    my $enum_val = -1;
	    foreach my $enum (@enum_subs) {
		my ($enum_name, $enum_value) = $enum =~ /^([a-zA-Z_]\w*)(=.+)?$/;
		$enum_name or next;
		$enum_value =~ s/^=//;
		$enum_val = (length($enum_value) ? $enum_value : $enum_val + 1);
		if ($opt_h) {
		    print OUT ($t,
			       "eval(\"\\n#line $eval_index $outfile\\n",
			       "sub $enum_name () \{ $enum_val; \}\") ",
			       "unless defined(\&$enum_name);\n");
		    ++ $eval_index;
		} else {
		    print OUT ($t,
			       "eval(\"sub $enum_name () \{ $enum_val; \}\") ",
			       "unless defined(\&$enum_name);\n");
		}
	    }
	} elsif (/^(?:__extension__\s+)?(?:extern|static)\s+(?:__)?inline(?:__)?\s+/
	    and !/;\s*$/ and !/{\s*}\s*$/)
	{ # { for vi
	    # This is a hack to parse the inline functions in the glibc headers.
	    # Warning: massive kludge ahead. We suppose inline functions
	    # are mainly constructed like macros.
	    while (1) {
		last unless defined ($next = next_line($file));
		chomp $next;
		undef $_, last if $next =~ /__THROW\s*;/
			       or $next =~ /^(__extension__|extern|static)\b/;
		$_ .= " $next";
		print OUT "# $next\n" if $opt_D;
		last if $next =~ /^}|^{.*}\s*$/;
	    }
	    next if not defined; # because it's only a prototype
	    s/\b(__extension__|extern|static|(?:__)?inline(?:__)?)\b//g;
	    # violently drop #ifdefs
	    s/#\s*if.*?#\s*endif//g
		and print OUT "# some #ifdef were dropped here -- fill in the blanks\n";
	    if (s/^(?:\w|\s|\*)*\s(\w+)\s*//) {
		$name = $1;
	    } else {
		warn "name not found"; next; # shouldn't occur...
	    }
	    my @args;
	    if (s/^\(([^()]*)\)\s*(\w+\s*)*//) {
		for my $arg (split /,/, $1) {
		    if ($arg =~ /(\w+)\s*$/) {
			$curargs{$1} = 1;
			push @args, $1;
		    }
		}
	    }
	    $args = (
		@args
		? "my(" . (join ',', map "\$$_", @args) . ") = \@_;\n$t    "
		: ""
	    );
	    my $proto = @args ? '' : '() ';
	    $new = '';
	    s/\breturn\b//g; # "return" doesn't occur in macros usually...
	    expr();
	    # try to find and perlify local C variables
	    our @local_variables = (); # needs to be a our(): (?{...}) bug workaround
	    {
		use re "eval";
		my $typelist = join '|', keys %isatype;
		$new =~ s['
		  (?:(?:__)?const(?:__)?\s+)?
		  (?:(?:un)?signed\s+)?
		  (?:long\s+)?
		  (?:$typelist)\s+
		  (\w+)
		  (?{ push @local_variables, $1 })
		  ']
		 [my \$$1]gx;
		$new =~ s['
		  (?:(?:__)?const(?:__)?\s+)?
		  (?:(?:un)?signed\s+)?
		  (?:long\s+)?
		  (?:$typelist)\s+
		  ' \s+ &(\w+) \s* ;
		  (?{ push @local_variables, $1 })
		  ]
		 [my \$$1;]gx;
	     }
	    $new =~ s/&$_\b/\$$_/g for @local_variables;
	    $new =~ s/(["\\])/\\$1/g;       #"]);
	    # now that's almost like a macro (we hope)
	    goto EMIT;
	}
    }
    $Is_converted{$file} = 1;
    if ($opt_e && exists($bad_file{$file})) {
        unlink($Dest_dir . '/' . $outfile);
        $next = '';
    } else {
        print OUT "1;\n";
	queue_includes_from($file) if $opt_a;
    }
}

if ($opt_e && (scalar(keys %bad_file) > 0)) {
    warn "Was unable to convert the following files:\n";
    warn "\t" . join("\n\t",sort(keys %bad_file)) . "\n";
}

exit $Exit;

sub expr {
    $new = '"(assembly code)"' and return if /\b__asm__\b/; # freak out.
    my $joined_args;
    if(keys(%curargs)) {
	$joined_args = join('|', keys(%curargs));
    }
    while ($_ ne '') {
	s/^\&\&// && do { $new .= " &&"; next;}; # handle && operator
	s/^\&([\(a-z\)]+)/$1/i;	# hack for things that take the address of
	s/^(\s+)//		&& do {$new .= ' '; next;};
	s/^0X([0-9A-F]+)[UL]*//i
	    && do {my $hex = $1;
		   $hex =~ s/^0+//;
		   if (length $hex > 8 && !$Config{use64bitint}) {
		       # Croak if nv_preserves_uv_bits < 64 ?
		       $new .=         hex(substr($hex, -8)) +
			       2**32 * hex(substr($hex,  0, -8));
		       # The above will produce "errorneus" code
		       # if the hex constant was e.g. inside UINT64_C
		       # macro, but then again, h2ph is an approximation.
		   } else {
		       $new .= lc("0x$hex");
		   }
		   next;};
	s/^(-?\d+\.\d+E[-+]?\d+)[FL]?//i	&& do {$new .= $1; next;};
	s/^(\d+)\s*[LU]*//i	&& do {$new .= $1; next;};
	s/^("(\\"|[^"])*")//	&& do {$new .= $1; next;};
	s/^'((\\"|[^"])*)'//	&& do {
	    if ($curargs{$1}) {
		$new .= "ord('\$$1')";
	    } else {
		$new .= "ord('$1')";
	    }
	    next;
	};
        # replace "sizeof(foo)" with "{foo}"
        # also, remove * (C dereference operator) to avoid perl syntax
        # problems.  Where the %sizeof array comes from is anyone's
        # guess (c2ph?), but this at least avoids fatal syntax errors.
        # Behavior is undefined if sizeof() delimiters are unbalanced.
        # This code was modified to able to handle constructs like this:
        #   sizeof(*(p)), which appear in the HP-UX 10.01 header files.
        s/^sizeof\s*\(// && do {
            $new .= '$sizeof';
            my $lvl = 1;  # already saw one open paren
            # tack { on the front, and skip it in the loop
            $_ = "{" . "$_";
            my $index = 1;
            # find balanced closing paren
            while ($index <= length($_) && $lvl > 0) {
                $lvl++ if substr($_, $index, 1) eq "(";
                $lvl-- if substr($_, $index, 1) eq ")";
                $index++;
            }
            # tack } on the end, replacing )
            substr($_, $index - 1, 1) = "}";
            # remove pesky * operators within the sizeof argument
            substr($_, 0, $index - 1) =~ s/\*//g;
            next;
        };
	# Eliminate typedefs
	/\(([\w\s]+)[\*\s]*\)\s*[\w\(]/ && do {
	    my $doit = 1;
	    foreach (split /\s+/, $1) {  # Make sure all the words are types,
	        unless($isatype{$_} or $_ eq 'struct' or $_ eq 'union'){
		    $doit = 0;
		    last;
		}
	    }
	    if( $doit ){
		s/\([\w\s]+[\*\s]*\)// && next;      # then eliminate them.
	    }
	};
	# struct/union member, including arrays:
	s/^([_A-Z]\w*(\[[^\]]+\])?((\.|->)[_A-Z]\w*(\[[^\]]+\])?)+)//i && do {
	    my $id = $1;
	    $id =~ s/(\.|(->))([^\.\-]*)/->\{$3\}/g;
	    $id =~ s/\b([^\$])($joined_args)/$1\$$2/g if length($joined_args);
	    while($id =~ /\[\s*([^\$\&\d\]]+)\]/) {
		my($index) = $1;
		$index =~ s/\s//g;
		if(exists($curargs{$index})) {
		    $index = "\$$index";
		} else {
		    $index = "&$index";
		}
		$id =~ s/\[\s*([^\$\&\d\]]+)\]/[$index]/;
	    }
	    $new .= " (\$$id)";
	};
	s/^([_a-zA-Z]\w*)//	&& do {
	    my $id = $1;
	    if ($id eq 'struct' || $id eq 'union') {
		s/^\s+(\w+)//;
		$id .= ' ' . $1;
		$isatype{$id} = 1;
	    } elsif ($id =~ /^((un)?signed)|(long)|(short)$/) {
		while (s/^\s+(\w+)//) { $id .= ' ' . $1; }
		$isatype{$id} = 1;
	    }
	    if ($curargs{$id}) {
		$new .= "\$$id";
		$new .= '->' if /^[\[\{]/;
	    } elsif ($id eq 'defined') {
		$new .= 'defined';
	    } elsif (/^\s*\(/) {
		s/^\s*\((\w),/("$1",/ if $id =~ /^_IO[WR]*$/i;	# cheat
		$new .= " &$id";
	    } elsif ($isatype{$id}) {
		if ($new =~ /{\s*$/) {
		    $new .= "'$id'";
		} elsif ($new =~ /\(\s*$/ && /^[\s*]*\)/) {
		    $new =~ s/\(\s*$//;
		    s/^[\s*]*\)//;
		} else {
		    $new .= q(').$id.q(');
		}
	    } else {
		if ($inif && $new !~ /defined\s*\($/) {
		    $new .= '(defined(&' . $id . ') ? &' . $id . ' : undef)';
		} elsif (/^\[/) {
		    $new .= " \$$id";
		} else {
		    $new .= ' &' . $id;
		}
	    }
	    next;
	};
	s/^(.)// && do { if ($1 ne '#') { $new .= $1; } next;};
    }
}


sub next_line
{
    my $file = shift;
    my ($in, $out);
    my $pre_sub_tri_graphs = 1;

    READ: while (not eof IN) {
        $in  .= <IN>;
        chomp $in;
        next unless length $in;

        while (length $in) {
            if ($pre_sub_tri_graphs) {
                # Preprocess all tri-graphs
                # including things stuck in quoted string constants.
                $in =~ s/\?\?=/#/g;                         # | ??=|  #|
                $in =~ s/\?\?\!/|/g;                        # | ??!|  ||
                $in =~ s/\?\?'/^/g;                         # | ??'|  ^|
                $in =~ s/\?\?\(/[/g;                        # | ??(|  [|
                $in =~ s/\?\?\)/]/g;                        # | ??)|  ]|
                $in =~ s/\?\?\-/~/g;                        # | ??-|  ~|
                $in =~ s/\?\?\//\\/g;                       # | ??/|  \|
                $in =~ s/\?\?</{/g;                         # | ??<|  {|
                $in =~ s/\?\?>/}/g;                         # | ??>|  }|
            }
	    if ($in =~ /^\#ifdef __LANGUAGE_PASCAL__/) {
		# Tru64 disassembler.h evilness: mixed C and Pascal.
		while (<IN>) {
		    last if /^\#endif/;
		}
		$in = "";
		next READ;
	    }
	    if ($in =~ /^extern inline / && # Inlined assembler.
		$^O eq 'linux' && $file =~ m!(?:^|/)asm/[^/]+\.h$!) {
		while (<IN>) {
		    last if /^}/;
		}
		$in = "";
		next READ;
	    }
            if ($in =~ s/\\$//) {                           # \-newline
                $out    .= ' ';
                next READ;
            } elsif ($in =~ s/^([^"'\\\/]+)//) {            # Passthrough
                $out    .= $1;
            } elsif ($in =~ s/^(\\.)//) {                   # \...
                $out    .= $1;
            } elsif ($in =~ /^'/) {                         # '...
                if ($in =~ s/^('(\\.|[^'\\])*')//) {
                    $out    .= $1;
                } else {
                    next READ;
                }
            } elsif ($in =~ /^"/) {                         # "...
                if ($in =~ s/^("(\\.|[^"\\])*")//) {
                    $out    .= $1;
                } else {
                    next READ;
                }
            } elsif ($in =~ s/^\/\/.*//) {                  # //...
                # fall through
            } elsif ($in =~ m/^\/\*/) {                     # /*...
                # C comment removal adapted from perlfaq6:
                if ($in =~ s/^\/\*[^*]*\*+([^\/*][^*]*\*+)*\///) {
                    $out    .= ' ';
                } else {                                    # Incomplete /* */
                    next READ;
                }
            } elsif ($in =~ s/^(\/)//) {                    # /...
                $out    .= $1;
            } elsif ($in =~ s/^([^\'\"\\\/]+)//) {
                $out    .= $1;
            } elsif ($^O eq 'linux' &&
                     $file =~ m!(?:^|/)linux/byteorder/pdp_endian\.h$! &&
                     $in   =~ s!\'T KNOW!!) {
                $out    =~ s!I DON$!I_DO_NOT_KNOW!;
            } else {
                if ($opt_e) {
                    warn "Cannot parse $file:\n$in\n";
                    $bad_file{$file} = 1;
                    $in = '';
                    $out = undef;
                    last READ;
                } else {
		die "Cannot parse:\n$in\n";
                }
            }
        }

        last READ if $out =~ /\S/;
    }

    return $out;
}


# Handle recursive subdirectories without getting a grotesquely big stack.
# Could this be implemented using File::Find?
sub next_file
{
    my $file;

    while (@ARGV) {
        $file = shift @ARGV;

        if ($file eq '-' or -f $file or -l $file) {
            return $file;
        } elsif (-d $file) {
            if ($opt_r) {
                expand_glob($file);
            } else {
                print STDERR "Skipping directory `$file'\n";
            }
        } elsif ($opt_a) {
            return $file;
        } else {
            print STDERR "Skipping `$file':  not a file or directory\n";
        }
    }

    return undef;
}


# Put all the files in $directory into @ARGV for processing.
sub expand_glob
{
    my ($directory)  = @_;

    $directory =~ s:/$::;

    opendir DIR, $directory;
        foreach (readdir DIR) {
            next if ($_ eq '.' or $_ eq '..');

            # expand_glob() is going to be called until $ARGV[0] isn't a
            # directory; so push directories, and unshift everything else.
            if (-d "$directory/$_") { push    @ARGV, "$directory/$_" }
            else                    { unshift @ARGV, "$directory/$_" }
        }
    closedir DIR;
}


# Given $file, a symbolic link to a directory in the C include directory,
# make an equivalent symbolic link in $Dest_dir, if we can figure out how.
# Otherwise, just duplicate the file or directory.
sub link_if_possible
{
    my ($dirlink)  = @_;
    my $target  = eval 'readlink($dirlink)';

    if ($target =~ m:^\.\./: or $target =~ m:^/:) {
        # The target of a parent or absolute link could leave the $Dest_dir
        # hierarchy, so let's put all of the contents of $dirlink (actually,
        # the contents of $target) into @ARGV; as a side effect down the
        # line, $dirlink will get created as an _actual_ directory.
        expand_glob($dirlink);
    } else {
        if (-l "$Dest_dir/$dirlink") {
            unlink "$Dest_dir/$dirlink" or
                print STDERR "Could not remove link $Dest_dir/$dirlink:  $!\n";
        }

        if (eval 'symlink($target, "$Dest_dir/$dirlink")') {
            print "Linking $target -> $Dest_dir/$dirlink\n";

            # Make sure that the link _links_ to something:
            if (! -e "$Dest_dir/$target") {
                mkpath("$Dest_dir/$target", 0755) or
                    print STDERR "Could not create $Dest_dir/$target/\n";
            }
        } else {
            print STDERR "Could not symlink $target -> $Dest_dir/$dirlink:  $!\n";
        }
    }
}


# Push all #included files in $file onto our stack, except for STDIN
# and files we've already processed.
sub queue_includes_from
{
    my ($file)    = @_;
    my $line;

    return if ($file eq "-");

    open HEADER, $file or return;
        while (defined($line = <HEADER>)) {
            while (/\\$/) { # Handle continuation lines
                chop $line;
                $line .= <HEADER>;
            }

            if ($line =~ /^#\s*include\s+<(.*?)>/) {
                push(@ARGV, $1) unless $Is_converted{$1};
            }
        }
    close HEADER;
}


# Determine include directories; $Config{usrinc} should be enough for (all
# non-GCC?) C compilers, but gcc uses an additional include directory.
sub inc_dirs
{
    my $from_gcc    = `LC_ALL=C $Config{cc} -v 2>&1`;
    if( !( $from_gcc =~ s:^Reading specs from (.*?)/specs\b.*:$1/include:s ) )
    { # gcc-4+ :
       $from_gcc   = `LC_ALL=C $Config{cc} -print-search-dirs 2>&1`;
       if ( !($from_gcc =~ s/^install:\s*([^\s]+[^\s\/])([\s\/]*).*$/$1\/include/s) )
       {
           $from_gcc = '';
       };
    };
    length($from_gcc) ? ($from_gcc, $Config{usrinc}) : ($Config{usrinc});
}


# Create "_h2ph_pre.ph", if it doesn't exist or was built by a different
# version of h2ph.
sub build_preamble_if_necessary
{
    # Increment $VERSION every time this function is modified:
    my $VERSION     = 2;
    my $preamble    = "$Dest_dir/_h2ph_pre.ph";

    # Can we skip building the preamble file?
    if (-r $preamble) {
        # Extract version number from first line of preamble:
        open  PREAMBLE, $preamble or die "Cannot open $preamble:  $!";
            my $line = <PREAMBLE>;
            $line =~ /(\b\d+\b)/;
        close PREAMBLE            or die "Cannot close $preamble:  $!";

        # Don't build preamble if a compatible preamble exists:
        return if $1 == $VERSION;
    }

    my (%define) = _extract_cc_defines();

    open  PREAMBLE, ">$preamble" or die "Cannot open $preamble:  $!";
        print PREAMBLE "# This file was created by h2ph version $VERSION\n";

        foreach (sort keys %define) {
            if ($opt_D) {
                print PREAMBLE "# $_=$define{$_}\n";
            }
	    if ($define{$_} =~ /^\((.*)\)$/) {
	      # parenthesized value:  d=(v)
		$define{$_} = $1;
	    };
	    if ($define{$_} =~ /^([+-]?(\d+)?\.\d+([eE][+-]?\d+)?)[FL]?$/ ) {
	      # float:
		print PREAMBLE
                    "unless (defined &$_) { sub $_() { $1 } }\n\n";
	    } elsif ($define{$_} =~ /^([+-]?\d+)U?L{0,2}$/i) {
	      # integer:
                print PREAMBLE
                    "unless (defined &$_) { sub $_() { $1 } }\n\n";
            } elsif ($define{$_} =~ /^\w+$/) {
                print PREAMBLE
                    "unless (defined &$_) { sub $_() { &$define{$_} } }\n\n";
            } else {
                print PREAMBLE
                    "unless (defined &$_) { sub $_() { \"",
                    quotemeta($define{$_}), "\" } }\n\n";
            }
        }
    close PREAMBLE               or die "Cannot close $preamble:  $!";
}


# %Config contains information on macros that are pre-defined by the
# system's compiler.  We need this information to make the .ph files
# function with perl as the .h files do with cc.
sub _extract_cc_defines
{
    my %define;
    my $allsymbols  = join " ",
        @Config{'ccsymbols', 'cppsymbols', 'cppccsymbols'};

    # Split compiler pre-definitions into `key=value' pairs:
    while( $allsymbols=~/([^\s]+)=((\\\s|[^\s])+)/g ) {
        $define{$1} = $2;	
        if ($opt_D) {
            print STDERR "$_:  $1 -> $2\n";
        }
    }

    return %define;
}


1;

##############################################################################
__END__

=head1 NAME

h2ph - convert .h C header files to .ph Perl header files

=head1 SYNOPSIS

B<h2ph [-d destination directory] [-r | -a] [-l] [headerfiles]>

=head1 DESCRIPTION

I<h2ph>
converts any C header files specified to the corresponding Perl header file
format.
It is most easily run while in /usr/include:

	cd /usr/include; h2ph * sys/*

or

	cd /usr/include; h2ph * sys/* arpa/* netinet/*

or

	cd /usr/include; h2ph -r -l .

The output files are placed in the hierarchy rooted at Perl's
architecture dependent library directory.  You can specify a different
hierarchy with a B<-d> switch.

If run with no arguments, filters standard input to standard output.

=head1 OPTIONS

=over 4

=item -d destination_dir

Put the resulting B<.ph> files beneath B<destination_dir>, instead of
beneath the default Perl library location (C<$Config{'installsitsearch'}>).

=item -r

Run recursively; if any of B<headerfiles> are directories, then run I<h2ph>
on all files in those directories (and their subdirectories, etc.).  B<-r>
and B<-a> are mutually exclusive.

=item -a

Run automagically; convert B<headerfiles>, as well as any B<.h> files
which they include.  This option will search for B<.h> files in all
directories which your C compiler ordinarily uses.  B<-a> and B<-r> are
mutually exclusive.

=item -l

Symbolic links will be replicated in the destination directory.  If B<-l>
is not specified, then links are skipped over.

=item -h

Put ``hints'' in the .ph files which will help in locating problems with
I<h2ph>.  In those cases when you B<require> a B<.ph> file containing syntax
errors, instead of the cryptic

	[ some error condition ] at (eval mmm) line nnn

you will see the slightly more helpful

	[ some error condition ] at filename.ph line nnn

However, the B<.ph> files almost double in size when built using B<-h>.

=item -D

Include the code from the B<.h> file as a comment in the B<.ph> file.
This is primarily used for debugging I<h2ph>.

=item -Q

``Quiet'' mode; don't print out the names of the files being converted.

=back

=head1 ENVIRONMENT

No environment variables are used.

=head1 FILES

 /usr/include/*.h
 /usr/include/sys/*.h

etc.

=head1 AUTHOR

Larry Wall

=head1 SEE ALSO

perl(1)

=head1 DIAGNOSTICS

The usual warnings if it can't read or write the files involved.

=head1 BUGS

Doesn't construct the %sizeof array for you.

It doesn't handle all C constructs, but it does attempt to isolate
definitions inside evals so that you can get at the definitions
that it can translate.

It's only intended as a rough tool.
You may need to dicker with the files produced.

You have to run this program by hand; it's not run as part of the Perl
installation.

Doesn't handle complicated expressions built piecemeal, a la:

    enum {
        FIRST_VALUE,
        SECOND_VALUE,
    #ifdef ABC
        THIRD_VALUE
    #endif
    };

Doesn't necessarily locate all of your C compiler's internally-defined
symbols.

=cut

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ELF              4   
      4    (      4   44               4  44                     `  `           `  ``0  @           t  tt               H  HH              Ptd
              Qtd                          /lib/ld-linux.so.2           GNU           	                 "       K9                e                          v                            )                   =                  E                         M       I      W             ;            ^                                     6                X              __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk exit setlocale strrchr dcgettext strlen strstr __errno_location __fprintf_chk malloc stderr rename bindtextdomain strerror __libc_start_main GLIBC_2.3.4 GLIBC_2.0                                   ti	         ii
          <    L  P  T  X  \  `  d  h  l	  p
  t  x  |
        UM       5D%H    %Lh    %Ph   %Th   %Xh   %\h    %`h(   %dh0   %hh8   p%lh@   `%phH   P%thP   @%xhX   0%|h`    %hh   %hp    %hx               1^PTRhhQVh3US    [`  tX[ÐUS= u?l-hX9v&    h9w[]Ít& '    Upt    t	$pÐL$qUWVSQ8ID$$L$ D$/   $NtD$$   nD$`$r*$r~|$$'  \  T$ D$ |$$R@T$(D$,   D$0   T$0D$ <T$(<$T$	   D$($T$,$D$4<$D$  9s1)v :*9u*D$,tt& PuT$4tfPu l$<$   D$0D$$9D$081Y[^_]aËD$ P}:u~:Bu:Bt\
   tKD$   D$$    \$D$   D$$$   D$   D$$    T\$D$$   D$81Y[^_]a $5D$   D$؊$    \$l$|$t$D$   D$$^$   "D$   D$ÊU]Ít& '    UWVS^   Õ   E )E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUS``tЋu[]US    [  Y[         /usr/share/locale util-linux -V --version %s (%s)
 util-linux 2.13-pre7 call: %s from to files...
 %s: out of memory
   %s: renaming %s to %s failed: %s
   ;      (           |  4        D 	FAAAAACP                          |
   8oh      
                      @                              oo   o                                                    t        ʄڄ
*:JZjz    rename.debug    } .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  $                +           0              3                             ;   o     &                H   o     0                W   	                        `   	                       i         ||                    d                           o                            u         88
                    {         TT
                             
                               P                           ``                             hh                             pp                             tt                           <<                            @@  L                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ELF              p4         4    (      4   44               4  44                                    cc  0               c c             H  HH              PtdX  XMXM4  4        Qtd                          /lib/ld-linux.so.2           GNU           	      S          !   S   W   ]   ݺ|(CE#<K8qXfUat1
                      4            I     9                  =            7      Q       2      $                   =                                          n           D             @     _       U            5            g                        <           q     +      C      #      2            E      2                                                   z      e      L            =                 l      E            *      +      =                        <      T                              2                        (             M                         '            =      $                  -     z      g      )                             "                  S      '            o            _     2                              `                       C      7      ;      f                  7      	            Z                   F                       p                 D      E      J                 4             g     s                   9                        8            W                        i            9      1       2                     2     j  <f     _  e     W  e     ?   
A       D       e     ^  e       e     ~   4     
 t       
 F  p
M             libcurl.so.3 __gmon_start__ _Jv_RegisterClasses curl_mfprintf curlx_tvdiff_secs curl_strequal curl_global_cleanup curl_global_init curl_getdate curl_mvfprintf curl_strnequal curl_version curl_slist_free_all curl_msprintf curl_easy_setopt curl_getenv curl_easy_escape curl_free curl_easy_strerror curl_formfree curl_msnprintf curlx_tvdiff curl_easy_cleanup curl_easy_init _fini curl_mvsnprintf curl_mprintf curl_easy_getinfo curl_formadd Curl_tvlong curl_slist_append curlx_tvnow curl_easy_perform curl_version_info libdl.so.2 libgssapi_krb5.so.2 libkrb5.so.3 libk5crypto.so.3 libcom_err.so.2 libidn.so.11 libssl.so.6 libcrypto.so.6 libz.so.1 libc.so.6 _IO_stdin_used fflush strcpy exit setlocale strrchr pipe __strdup getpwuid ftruncate64 __stack_chk_fail mkdir realloc stdin strtok isatty fgets calloc strlen memset strstr __errno_location tcsetattr fseek poll stdout fputc __strtoll_internal fputs memcpy fclose __strtol_internal malloc strcat __xstat64 __ctype_b_loc sscanf stderr fileno fwrite fread gettimeofday geteuid localtime strchr utime tcgetattr fopen64 access __libc_start_main __strtoul_internal _edata __bss_start _end GLIBC_2.4 GLIBC_2.3 GLIBC_2.2 GLIBC_2.1 GLIBC_2.0                                                                                                                                            ii
   o     ii
   y     ii
        ii
        ii
         8d	  eY  e[  eU  Hd  Ld  Pd  Td  Xd  \d  `d  dd  hd	  ld  pd  td
  xd  |d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d  d   d!  d"  d#  d$  d%  d&  d'  d(  d)  d*  d+  d,  d-  d.  d/   e0  e1  e2  e3  e4  e5  e6  e7   e8  $e9  (e:  ,e;  0e<  4e=  8e>  <e?  @e@  DeA  HeB  LeC  PeD  TeE  XeF  \eG  `eH  deI  heJ  leK  peL  teM  xeN  |eO  eP  eQ  eR  UU    ~   5@d%Dd    %Hdh    %Ldh   %Pdh   %Tdh   %Xdh    %\dh(   %`dh0   %ddh8   p%hdh@   `%ldhH   P%pdhP   @%tdhX   0%xdh`    %|dhh   %dhp    %dhx   %dh   %dh   %dh   %dh   %dh   %dh   %dh   %dh   p%dh   `%dh   P%dh   @%dh   0%dh    %dh   %dh    %dh   %dh   %dh  %dh  %dh  %dh   %dh(  %dh0  %dh8  p%dh@  `%dhH  P%dhP  @%dhX  0%dh`   %dhh  % ehp   %ehx  %eh  %eh  %eh  %eh  %eh  %eh  % eh  %$eh  p%(eh  `%,eh  P%0eh  @%4eh  0%8eh   %<eh  %@eh   %Deh  %Heh   %Leh  %Peh  %Teh  %Xeh   %\eh(  %`eh0  %deh8  p%heh@  `%lehH  P%pehP  @%tehX  0%xeh`   %|ehh  %ehp   %ehx  %eh      1^PTRh`hpQVh`US    [Ü  t&X[ÐUS=e u?c-cXe9v&    ece9we[]Ít& '    Uct    t	$cÐU	w$@<]Z]s]L]]x]T]]]hÐUSuv ؋X$_u[]É'    UVS   t=C3t$)Ct$Ct$$uÃ[^]Ív '    U]Éu օt$t4$]u]    ]u]Ív '    UWVS  EEe   U1ҋHXٽf٭߽٭E٭߽٭ߋE٭߽٭E$٭߽٭9
,   4  R߭P,$H1Q$٭۝٭~f0#9uЍ]Ƅ ݝL$$D$D$(   \$t$D$   $݅
HI\$\$D$B$A$A1QUe3     Č  [^_]9 |	 QAӉى1

׉1

9-}X)ǅ    ǅ    D$B$ 11	u9    U'    U   }tD$    D$    E $ɃÍv UE E]
USÃ$      t.     @    @    @    @    t   []É   쐍t& USÃD$    D$    D$    $S   rw1[]Í&    8"[]Í        USÃT$ $	   t0҃[]Ít& USÃt$D$    $D$S[]ÐU8  uƉ}e   E1]tD$:   $tUe3     ]u}]h<D$   D$    $$O\$t$D$D$   $
D$   T$$o  ! t  u ҋ+D2D$$
:TFD$D$$dX        UWVS,  e   E1ǅ       1v D$   4$D$r   D$
   4$*t  D$
   4$t  ! t  u ҃)t7D;D$$nt$߉$AC$2ҋUe3   u,  [^_]        U]Ӊuw    DPt$D$    D$
   D$    $v1ɉ]ȋu]Ív '    US$]tCEEeD$   D$   $D$#E\$D$e$+eD$$$[]Ít& U8  uu]U}e   E1   t$Me3
     ]u}]Í&    ED$T$D$   $~   D$	   D$   $D$CF   E   DB uy      )D$   D$CD$$   $
   D$F\P   D$$qf&    t& '    U(}}]]uOGɉEt^G\$D$ED$E$=]9؉t'E    tG$]u}]Ð1GWύ    D$$GuD$D$E$]USÃt!9t$D$(   []f1[]Í    UWVS,  Ue
   M1ɉ8-   11$ǅ    ǅ ƅ ǅ    t& vtkA$T$L$otϋ$D$  A vƅu   	     x-P  ǅ ƅ ƅ 4   411t	4     u# I<A t4x      R<A 8
  C<Ww5$h=vA ƅ %   Me3
     ,  [^_]Ë<-  <=  <+ǁ     $    +$D$
  u;HD$$   L$    
u.4x t"4ǅ : ,14p711vA8uɉ !ƅX I<A A 3   p  qlAl   9@
     xڸp(  /Rf   kǂ      !     rtD$-   $3!
  h   p      P1ۃ$
`Gu      b      MD$B$t     8D
ǅ    :@	  p0  4$Ë$\$A0b  $t$D$<D$\$w4$$[|BoO       @ "<   2   L     @u-    B  ҉   u䋅o  H@    N}      h   V8@N  _%        Ƃ   D$D$M$t  D$=   $  $@  $  $@   s(:@]	          ǅ   @ǄŨ   Ǆը   (D$   ŬD$$D$   $D$  @$   ,     F<;  $>PZD$$  (B% @$      0<+  <-     q=T~   lǂ     Wǀ     Bǁ     -ǂ     ǀ     ǁ      F</  $>F<$L?$DD$eP tG$eP tӉD$$=Cu$ex$1d    
  e@DAt@A$=D$(ʋ|$ڸ
lXp@p      D$$      5      <t<  @   +O  D$L$$   % 	  = 	  t  	   ,             @u'B   ҉   u䋅WHPЃA8   Q#qt$   4D$=   $$b   ]     @u'B   ҉   u䋅hY@KBD$:   $mt  P   G   1녋          ]D$$eD$    D$
   D$    $D$D$    $T$D$kڃhUT$$S	  =eb  ǅ       ǅ    Lމt$$tx\$T$$|$D$   D$   $t"u$`މ뎋P4t;=et<$R=   D$   $   r&룋ǂ     eǀ     IL$$Wn  e6   4  u;ei$\@D$$   ǅ   ҍ   tB   ǅ    @:<  P ǅ<    ǅ8     D$;   $D$,   Ƌ $t9sƅǅ,    ǅ    H  >,   l  ~,  ǅ,    ǅ    00DB uD$   \$$C  P,|$t$D$f$~  ! t  u ҉)! t  u ҋ,)Ȁx y  @ Xj  ;,
D$,   $lǅt $     @     
    C<u<,t/$     @    ,C    P   $   qd  @        CH8t	8B  ?    8sD$	   \$$zc	D$;   $B]  X  ǅ,    ǅ    1 ǅ,    ǅ    1?A      t&       t&    ,     2fʉ    
D$$o@$   A%A(    A,    o\  ǂ`     Zd  H   6   $$=D$$@$<VX  ATt$@T    @D$,   $1^ǀ      D$l$XӃǄŨ   ŬǄͨ   $D$(D$   D$   L$$8\$D$<$@$    ǅ,    ǅ    vD$<<1@u<    G$SZ  t<1ɋˋBRD9uꋅ<   $(D$   \$D$   L$D$   D$$  $D$9$\D$D$$Vne@t<   vHZO   t& |p'6	   b$     B0h  l          $D$        LD$ `D$\D$$   A`+A\A`D$($     \  ǁ`     $T$/   $L$   D$$D$   Y  B`    x  <+tj<-tH|  _       H  &p  .#t  HeD$$J@$<   D$$u$@$   @Xk`   Kr&<   [ǁ          0ǀ      D$    D$    D$$? É   B<+wU$?r}8  <  0  4  S

ˋD$p$   W<$*p``A    e@ @    e@iB    A    @    vƁ   dD5H=         I   .      D$H$`ƀ      z   _   ~D   c)e@   Ƃ   :u;:Au/e   XD$$%         Ƃ   heD$W$   \$D$$D$${D$p$   )D$$L$'    UWVSL  e   E14  : %  :{  :Ak  e     ǅ        1   <$-Ë! t  u ҃+<$DD$\  L$$D$
   <$uyD$   $L$tXT${vG  ǅ$V=    4$Sf      z   DA u/w
$T@t*DA    =   :   u։1 ; Z     1ۋ$1te:u:Aj  t?D$
T$L$D$D$$u<$$W$<$ DA u3=t.:t)Љ<"   DA uu1;et
$1Ue3   b  L  [^_]Ëڍ$B;     D$$vǅF$ÉFt!<"t<\t.u߅۾    <rtht<nu
   
   
냍D$D$t$D$D$   $<tt<vu   띹	   떍&    t& '    UWVSl}Ee   U1ҋ   EEȉ$MD  ]ȍEԋủ]ԃ$    uME      U   Et_}v1Ue3   w  e[^_]ËU$At$ D$BD$BD$&D$   D$E؉$낃}v2}  e U1tEM|
eo=e f  T$EUD$   D$$3벍E؋MD$ED$cL$$1M}T$D$Ѓ@EčE؉D$EL$L$$xEv  1U|$D$$TE  uą(  ]1%MD$D$$;ut6>9EwӋED$   D$   $D$/;uu9}   1HE.   B<_wʉL$MD$I$}tZ9uvxE>)9tl}uC9EvE؀8
uU|
   ED$.   D$I$At& C9EvE|
u|
u   +E<0U$
   T$}9}M$HA'R	q]ą뒋   $D$I  e         +E<0CM1   Mt\0;]sKE<
u=e    )D$ET$D$   މ$Oe    밃)=e u%E؉$D$AD$D$;   ET$D$   \$$lM$D$;<ID$E؉D$v   jE؉$D$AD$D$;L      $D$te   D$`   $;Ƈ      k    '    USÃ@t$Ct$   t$s   t$aCxt$RC0t$C   t$1C|t$"Ct$Ct$   t$CPt$CTt$Cht$   t$   t$   t$   t$}   t$kCt$\t  t$Jx  t$8  t$&   $  $  $|  $  $  $  $t[]fL$qUWVSQ  9Ie   E1D<D$  D$    $eǅD    ǅH    DvHtt	   $yы
eǅh    ǅd    ǅ    ǅ     ǅ    ǅ    ǅ    ǅ    ǅ    $   ƅl eD$$   $   /t^$ǅL   LUe3     eY[^_]aÉ$H$ ǅƅ\ǅp    ƅ ƅ $;  48$;  ǅ,2   (,  <D$   <B$D$u<A8-p  1P   ƅoǅL    @<0>-tD$TL9~uo u<뼉t$$Pt	ƅo ȍG19~	$TL"  T t넋Tǅ  ti  t   H   ƅn"     t+ "        ǅh    诽	  nǅL   Fv1tǅL    $    ǅL    #$fǅL   ǅL    $-;"  $D$q   $s c   tǅ|    8tC:   :B   
e||ǅ    \@  @  eǅ    ǅ     Bǅ    t$跾 IuQtM1\ t"  D$\D$D$d$.  L"  ǅd    dt	 u*d
  $%  x!     1\ t  D$`D$D$h$-  L!    D$$  ǅ    ǅpǅtǅ    hl  $$    ǅX    t$X@U  X   X$T$M   ht0D$X$"  X$艹  X 
  
   X	  yuT$X$y *  ƅ   D$$`g  D$$BtPD$/   $5t>    D$/   $
Å  D$\   $  D$    D$<$$T   $ËT$D$輹  {  TT$D$ $L$覺T$ط$誷D$9$  D$$   L$@z  ƅpt
 tǅǅD$   $L$   t$$$\t
p   `~YsuPX  T$D$T$D$D$e$訹  h   D$$ַtPD$/   $ɵ  D$?   $/ƅS&  $h$ҶD$薷    hD$SD$D$$T$u$臵  L  D$<D$'  <$D$ D$+N  <$޳@<\$D$'  <$貳D$D$,N  <$蚳\$D$'  <$膳D$D$N  <$n$ 	  tpD$u  <$T$D$4D$'  <$T$hD$'  <$D$ pD$*   <$%   D$pD$+   <$%   D$²pD$,   <$%   D$裲pD$-   <$%   D$脲1 D$.   <$D$dpD$0   <$%   D$EpD$2   <$%   D$&p        @   D$   D$3   <$pD$4   <$%   D$ӱpD$i   <$%   @D$贱pD$5   <$%   D$蕱`D$'  <$D${dD$'  <$D$aPD$'  <$D$GlL$D$'  <$-$D$
   <$D$q  i   D$ '  <$D$pD$:   <$D$İD$"'  <$D$誰<D$!'  <$D$萰TD$   <$D$vXD$   <$D$\D$u  <$T$D$8$ D$u  <$T$D$11Ҁ tT$D$D$u  <$D$&'  <$D$ɯD$''  <$D$误D$)'  <$D$蕯D$f'  <$D${D$g'  <$D$aD$h'  <$D$GD$*'  <$D$-D$   D$Q   <$  D$D$Q'  <$tD$D$q'  <$ծD$   D$@   <$轮   qu	 tD$   D$E   <$膮,D$D   <$D$lD$   <$D$QD$,'  <$D$7D$7'  <$D$D$m'  <$D$8D$-'  <$!T$ܭ D$/'  <$D$­tD$D$b'  <$褭D$`   <$D$艭D$    <$D$oD$!   <$D$U D$"   <$D$;D$4'  <$D$!D$5'  <$D$lD$=   <$D$@D$N'  <$D$ҬD$O'  <$D$踬 ǅ    ǅ    ǅ     ǅ$    ǅ(    ǅ,    ǅ0    t,0$ů  D$    D$
   D$    $$$}(
  D$V'  <$D$ګD$\'  <$D$D$]'  <$D$覫(D$N   <$D$茫tD$D$c'  <$nA	   	     2	  tJD$0D$~N  <$D$D$o'  <$D$   D$)   <$t<D$D$i'  <$ƪD$   D$Z   <$謪ۉL  D$v'  <$%D$zD$n   <$D$_ p	   3   8
   
  40		  #
  t  D$    D$q   <$@   A   Dt.D$D$'  <$譩HD$e   <$D$蓩\D$'  <$D$y`D$'  <$D$_lD$'  <$D$EhD$'  <$D$+dD$'  <$D$pD$'  <$D$|D$   <$D$ܨD$   <$D$xD$   <$D$觨D  tD$'  <$D$P`$%  @D<$L`  X  L   tNL.  LC  XD$D$   <$譧X-  c     `MbD$\ꋅ\D$)0AT$$D$^\D$    $    L$̪Tuѥ\\'	 ~
ǅ\'	 	   tws   $苨 $q\$t$$ѩD$   D$     $cǅ    ǅ    `I$#  @DD$T$T$$"  iX  9$R  tD$<$  \LtM\ tDl l)	  D$LD$L$$KL<S	  Xt,D$X$~u t$h tRtHLD$D$   <$+Lx$484D$$]|t|$$WXtX$?   PǅP    D$D$  <$肤P`D$   D$$@XD$D$   <$:X        xXD$$tPD$/   $t$x Pt$&Xt	8 $<;$	ǅL   ht$  t$դd  ǅ    ǅ$O   CD$    D$3   <$8A<cǅ     fD$$ۢƅ 
eƅ ƅS?D$    D$@   <$谢D$   D$Q   <$蘢D$   D$3   <${D$T$D$b   <$^D$    D$j   <$AD$    D$U   <$$D$D$T   <$D$D$k   <$$迣p  D$D$XN  <$財D$D$I'  <$蘡D$('  <$D$yyD$T$D$e$ץI$脥bD$   D$w   <$!QD$   D$w   <$'D$T$D$u  <$D$D$o   <$ʠD$D$   <$豠HD$   <$D$藠D$'  <$D$xD$<   <$D$^^D$X$   D$i  X$FX$2$H    D$$'  ǅ    H:L  \$D$4$踣D$    4$  D$$    赢   > t\$D$t$D$4$R똡eD$   $D$bl?($
   D$ 4$$zǅL   tD$   D$q   <$q`ǅ   D5\$D$D$ 4$dD$   D$y   <$D$   D$o   <$ǅ`   hL$D$$D$xD$  4$m/I   fd  
  4  t$D$[e$ۡ4$裞$蕞t& D$$L$nǅ    ǅ    D$   D$o   <$D$   D$q   <$˜L$  $ݠ,D$   D$o   <$p@D$`D$D$ $Š"ۋ/C'TD$D$$T$+4$>$0eVBt$$|Ëhth$Ŝt$賜<$8ttt$n    tt$   QTǅT    D$D$ @ <$訚T$&v  $CD$[u狅T   $蒜ǅL    ǅ|    Zt$$D$RlD$D$   $D$Pƅn =$Fh$Bpǅ    %   ҃ت8h$ǅL   $:C$КM$Mb$ܜ   詟t$D$e$觝$tEzt$D$ e${t$D$e$]}t$D$e$?_t$D$`e$!A$X$|T$ߦǅL   G$D$I*$舙ǅL   zdt$   ǅd    t$EBt$0At$Bǅ    $WǅL   y$|D$ǅL   Te#X$舘|UWVSEE싀   x9w+QfME@z(tYE9   v(   uыM$E9   w؋U싂  $MM[^_]ڗR0փx*EUMD
,$誗uUMRD,$萗X
UWVS\Ee   U1҉EEE$CE$E       EE    M]   U9]w EML$$ԕ
  EEEt$|$$賗]}   <#_uW_ DPtED$    D$
   D$$cMP   9MRD HMċX]ȋPŰPUЋPUԋ@Etkt~   L$$I+E$ E    Ue3   E   \[^_]ËME ًU$E    Eʍ}޾   E EEЍ]މT$D$LID$   D$$}$腖jE΋<<$oTC&    UWVS,}    E쀿   K  Ƈ        1M   tH@D H@         D$$I$   חD$D$UT$E$蒖E)E9   vE    E,[^_]r    UAU뿋AD$AD$LID$ED$U$"E)EQ
A$E\$D$UT$E$UU)UM   X[t ;   sqFVt1tGB
f;BfB
tfB
  뼋BB:BBTBB݋BB;BB9BBÃ,1[^_]Ð&    UWVSӃ\  E    tA{t<[t7}K  ]t& =  \   u      U$ʕM         [t1{   \[^_]Í    CEĉ@}Ѝ| WAE   U   躒E SPH  EG   D$ED$ED$ED$ED$D$I]ĉ$觔U  }Ѝ
  D$JD$P   $|$Ǔ}$ّ\   [^_]ID P}̍{  U@   fB  fB
  $    OMA   <\t5  <,"  <[    KW׉˃E<\uˍWUW]    ,  [t&   UȍKf"  G   }EfG  D$ED$ED$ED$ED$D$IEĉ$M  E;E  M}:AAEA     }GEĀ80  D$]   Uĉ$胏  P+MMЍE$  M9  A]+AE1k{	  [   }t	]<{tl<}v    <]qM̍
  D$lID$P   $L$艑{t	}{ Kv t}ȃEU}̍
  D$ID$P   $|$0d UB   D$B$MA8  Y  $]fC?}    EED$JD$P   D$
  $蜐UE8)ЃE<]B  <:[  UD$
  D$LJD$P   T$$6j]̍
  D$QID$P   $\$@UЍ
  D$JD$P   $T$'    U@af`ً]fC}QDPu>}]EfUMBR)E1E   1
  D$ID$P   $-a   MAEAAEAuڀ}]uԋEԋM̍E$Wt:}UGE1;
  D$LD$P   $觎E   뽍    '    U8}}u]<$肍$GƋE        t'D$   $`  蟋u4$Q   ]u}]Ív ǀ       <$     ƃ     E$tWUt	
   u 4$$ߋE       냋U
  D$D$   D$I$ڎ빋EUE1HUWVS,=e]tO<%tg<\uOC<r   <t  <nT  |$$\   .|$C$u,[^_]|$$Cs<%  <{t;|$$%   Ҍ|$$ÌT|$$
   讌fD$}   $ʉEt sU؈EߡL tdL1    ݠLtGD$4$t<ݤL   ]UߋE؃|$$	   et$D$L$>]UߋE؃|$$
   ڋ|$$%   SݤL$@LED$D$ 0 E$%ME\$D$J<$趌1ED$D$ 0 U$ED$D$ 0 뜍ED$D$ 0 ɍED$D$ 0 wED$ED$ 0 $荇E\$D$J<$UED$D$ 0 $OwED$D$	 0 ?ED$D$
 0 UED$D$   $+ED$J<$D$蔋ED$ED$   $ņED$D$   U$衆ED$J<$D$2ED$D$   E$cED$D$  E$?gE\|$$KUED$D$  $)ED$D$   7ED$D$ 0 ED$D$   MED$D$  ]USӃ   $D$ f諆 fD$eefefefef%eefefefe fe$fe(fe,fe0fe4fe8feD$    $ƈ   []D$ fD$   $裈   []Í        UD$    ]}}u$@M膄   1ơeD$E$E|$$D$y~YD8 ut$]u}]fe$
   D$Wڸ   ?뿻   tv  말U$^u1À8 t$fÉ'    U1҉IMSt؃[]1ҸNMu$̅tՋXt΀; ftǉ$袇뻐UMb}}]]uuM})؋]E)ȋu}i  +U]Ív U$]t$EuU)Q)$$$5TM$t$]
UE]Ð&    US$]ED$    $σEU؉S$[] U]Ít& '    UWVS^   U  諁E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUScctЋu[]US    [(U  蠆Y[                                     out of memory unknown error is unknown is ambiguous requires parameter is badly used here # %%-%ds %%5.1f%%%% 
%s curl:  Warning:  wb Failed to create the file %s
 wt Failed to open %s!
 singlecwd nocwd multicwd %d - %d bad range input
 rb %s&%s ;auto list %255[^=]= out of memory
 %127[^/]/%127[^;,
] filename= Error building form post!
 curl_formadd failed!
 ;type= %lld- host proxy Protocols:  Features:  Failed to read %s .curlrc %s%s%s <stdin> %s:%d: warning: '%s' %s
 %02d:%02d:%02d.%06d  %s%s  <= Recv SSL data <= Send SSL data %s== Info: %s => Send header => Send data <= Recv header <= Recv data %s%s, %zd bytes (0x%zx)
 %04zx:  %02x      option %s: %s
 --url no URL specified!
 CURL_CA_BUNDLE SSL_CERT_DIR SSL_CERT_FILE Build-time engines:   <none>   %s
 bad output glob!
 Error creating directory %s.
 ab Can't open '%s'!
 %s/%s https:// <stdout> 
[%d/%d]: %s --> %s
 --_curl_-- %s%s
 %s%c%s %s/?%s COLUMNS http Throwing away %lld bytes
 curl: (%d) %s
 http:// HTTP error FTP error AsynchDNS Debug GSS-Negotiate IDN IPv6 Largefile NTLM SPNEGO SSL SSPI krb4 libz CharConv * *a random-file *b egd-file *c connect-timeout ciphers *e disable-epsv *g trace *h trace-ascii *i limit-rate *j compressed *k *l negotiate *m *n *o *q ftp-create-dirs *r *s max-redirs *t proxy-ntlm *u crlf *v stderr *w interface *x *y max-filesize *z disable-eprt $a ftp-ssl $b ftp-pasv $c socks5 socks $d tcp-nodelay $e proxy-digest $f proxy-basic $g retry $h retry-delay $i retry-max-time $j 3p-url $k 3p-user $l 3p-quote $m ftp-account $n proxy-anyauth $o trace-time $p ignore-content-length $q ftp-skip-pasv-ip $r ftp-method $s local-port $t socks4 $u ftp-alternative-to-user $v ftp-ssl-reqd http1.0 tlsv1 sslv2 sslv3 ipv4 ipv6 append A user-agent cookie B use-ascii cookie-jar C continue-at da data-ascii db data-binary D dump-header referer Ea cacert Eb cert-type Ec key Ed key-type Ee pass Ef engine Eg capath  fail F form Fs form-string globoff G get help H include head junk-session-cookies insecure K config list-only location Lt location-trusted manual netrc no netrc-optional no-buffer output remote-name proxytunnel P ftpport ftp-port disable Q range remote-time silent show-error telnet-options T upload-file U proxy-user verbose V version write-out X http-request Y speed-limit speed-time time-cond progress-bar < had unsupported trailing garbage    expected a proper numerical parameter   the installed libcurl version doesn't support this  Enter %s password for user '%s':    curl: try 'curl --help' for more information
   You can only select one HTTP request!
  Usage: curl [options...] <url>  unsupported rate unit. Use G, M, K or B!
   unrecognized ftp file method '%s', using default
   Couldn't read data from file "%s", this makes an empty POST.
   Illegally formatted content-type field!
    curl_formadd failed, possibly the file %s is bad!
  Illegally formatted input field!
   error trying read config from the '%s' file
    built-in manual was disabled at build-time!
    A specfied range MUST include at least one dash (-). Appending one for you!
    curl 7.15.5 (i686-redhat-linux-gnu) %s
 Illegal date format for -z/--timecond (and not a file name). Disabling time condition. See curl_getdate(3) for valid date syntax.
  error initializing curl library
    curl/7.15.5 (i686-redhat-linux-gnu) %s  Remote file name has no length!
    You don't have permission to create %s.
    The directory name %s is too long.
 %s resides on a read-only file system.
 No space left on the file system that will contain the directory %s.
   Cannot create directory %s because you exceeded your quota.
    If this HTTPS server uses a certificate signed by a CA represented in
 the bundle, the certificate verification probably failed due to a
 problem with the certificate (it might be expired, or the name might
 not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
 the -k (or --insecure) option.
   More details here: http://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a "bundle"
 of Certificate Authority (CA) public keys (CA certs). The default
 bundle is named curl-ca-bundle.crt; you can specify an alternate file
 using the --cacert option.
   Transient problem: %s Will retry in %ld seconds. %ld retries left.
 Options: (H) means HTTP/HTTPS only, (F) means FTP only   -a/--append        Append to target file when uploading (F)     -A/--user-agent <string> User-Agent to send to server (H)      --anyauth       Pick "any" authentication method (H)     -b/--cookie <name=string/file> Cookie string or file to read cookies from (H)      --basic         Use HTTP Basic Authentication (H)    -B/--use-ascii     Use ASCII/text transfer  -c/--cookie-jar <file> Write cookies to this file after operation (H)   -C/--continue-at <offset> Resumed transfer offset   -d/--data <data>   HTTP POST data (H)      --data-ascii <data>  HTTP POST ASCII data (H)       --data-binary <data> HTTP POST binary data (H)      --negotiate     Use HTTP Negotiate Authentication (H)       --digest        Use HTTP Digest Authentication (H)      --disable-eprt  Inhibit using EPRT or LPRT (F)      --disable-epsv  Inhibit using EPSV (F)   -D/--dump-header <file> Write the headers to this file     --egd-file <file> EGD socket path for random data (SSL)     --tcp-nodelay   Use the TCP_NODELAY option   -e/--referer       Referer URL (H)  -E/--cert <cert[:passwd]> Client certificate file and password (SSL)       --cert-type <type> Certificate file type (DER/PEM/ENG) (SSL)        --key <key>     Private key file name (SSL)     --key-type <type> Private key file type (DER/PEM/ENG) (SSL)     --pass  <pass>  Pass phrase for the private key (SSL)       --engine <eng>  Crypto engine to use (SSL). "--engine list" for list        --cacert <file> CA certificate to verify peer against (SSL)     --capath <directory> CA directory (made using c_rehash) to verify                       peer against (SSL)      --ciphers <list> SSL ciphers to use (SSL)       --compressed    Request compressed response (using deflate or gzip)     --connect-timeout <seconds> Maximum time allowed for connection     --create-dirs   Create necessary local directory hierarchy      --crlf          Convert LF to CRLF in upload     -f/--fail          Fail silently (no output at all) on HTTP errors (H)     --ftp-account <data> Account data to send when requested by server (F)      --ftp-alternative-to-user <cmd> String to replace "USER [name]" (F)     --ftp-create-dirs Create the remote dirs if not present (F)     --ftp-method [multicwd/nocwd/singlecwd] Control CWD usage (F)       --ftp-pasv      Use PASV/EPSV instead of PORT (F)       --ftp-skip-pasv-ip Skip the IP address for PASV (F)
    --ftp-ssl       Try SSL/TLS for the ftp transfer (F)        --ftp-ssl-reqd  Require SSL/TLS for the ftp transfer (F)     -F/--form <name=content> Specify HTTP multipart POST data (H)      --form-string <name=string> Specify HTTP multipart POST data (H)     -g/--globoff       Disable URL sequences and ranges using {} and []     -G/--get           Send the -d data with a HTTP GET (H)     -h/--help          This help text   -H/--header <line> Custom header to pass to server (H)     --ignore-content-length  Ignore the HTTP Content-Length header   -i/--include       Include protocol headers in the output (H/F)     -I/--head          Show document info only  -j/--junk-session-cookies Ignore session cookies read from file (H)        --interface <interface> Specify network interface/address to use        --krb4 <level>  Enable krb4 with specified security level (F)    -k/--insecure      Allow connections to SSL sites without certs (H)     -K/--config        Specify which config file to read    -l/--list-only     List only names of an FTP directory (F)     --limit-rate <rate> Limit transfer speed to this rate       --local-port <num>[-num] Force use of these local port numbers
  -L/--location      Follow Location: hints (H)      --location-trusted Follow Location: and send authentication even                        to other hostnames (H)   -m/--max-time <seconds> Maximum time allowed for the transfer      --max-redirs <num> Maximum number of redirects allowed (H)      --max-filesize <bytes> Maximum file size to download (H/F)   -M/--manual        Display the full manual  -n/--netrc         Must read .netrc for user name and password     --netrc-optional Use either .netrc or URL; overrides -n     --ntlm          Use HTTP NTLM authentication (H)     -N/--no-buffer     Disable buffering of the output stream   -o/--output <file> Write output to <file> instead of stdout     -O/--remote-name   Write output to a file named as the remote file  -p/--proxytunnel   Operate through a HTTP proxy tunnel (using CONNECT)     --proxy-anyauth Pick "any" proxy authentication method (H)      --proxy-basic   Use Basic authentication on the proxy (H)       --proxy-digest  Use Digest authentication on the proxy (H)      --proxy-ntlm    Use NTLM authentication on the proxy (H)     -P/--ftp-port <address> Use PORT with address instead of PASV (F)   -q                 If used as the first parameter disables .curlrc  -Q/--quote <cmd>   Send command(s) to server before file transfer (F)   -r/--range <range> Retrieve a byte range from a HTTP/1.1 or FTP server     --random-file <file> File for reading random data from (SSL)     -R/--remote-time   Set the remote file's time on the local output      --retry <num>   Retry request <num> times if transient problems occur       --retry-delay <seconds> When retrying, wait this many seconds between each      --retry-max-time <seconds> Retry only within this period     -s/--silent        Silent mode. Don't output anything   -S/--show-error    Show error. With -s, make curl show errors when they occur      --socks4 <host[:port]> Use SOCKS4 proxy on given host + port        --socks5 <host[:port]> Use SOCKS5 proxy on given host + port        --stderr <file> Where to redirect stderr. - means stdout     -t/--telnet-option <OPT=val> Set telnet option     --trace <file>  Write a debug trace to the given file       --trace-ascii <file> Like --trace but without the hex output        --trace-time    Add time stamps to trace/verbose output  -T/--upload-file <file> Transfer <file> to remote site     --url <URL>     Spet URL to work with    -u/--user <user[:password]> Set server user and password    -U/--proxy-user <user[:password]> Set proxy user and password   -v/--verbose       Make the operation more talkative    -V/--version       Show version number and quit     -w/--write-out [format] What to output after completion     -x/--proxy <host[:port]> Use HTTP proxy on given port   -X/--request <command> Specify request command to use   -y/--speed-time    Time needed to trig speed-limit abort. Defaults to 30    -Y/--speed-limit   Stop transfer if below speed-limit for 'speed-time' secs     -z/--time-cond <time> Transfer based on a time condition    -0/--http1.0       Use HTTP 1.0 (H)     -1/--tlsv1         Use TLSv1 (SSL)  -2/--sslv2         Use SSLv2 (SSL)  -3/--sslv3         Use SSLv3 (SSL)     --3p-quote      like -Q for the source URL for 3rd party transfer (F)       --3p-url        source URL to activate 3rd party transfer (F)       --3p-user       user and password for source 3rd party transfer (F)  -4/--ipv4          Resolve name to IPv4 address     -6/--ipv6          Resolve name to IPv6 address     -#/--progress-bar  Display transfer progress as a progress bar `g`|un                                                                                                                                                                                                                                                                ˥",,,,,
,,,,,ά,,,,,,,,,,,	s,Ю|} d0"دX7,a(,,,,,,,֩`K<~٨ *ڦY@ݥLf[tGo
.OaGs8_%vŸ"ҾB]EWi{<!׽~M M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ~%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%kyeo    #-   7@   =    K   O   T   ^   c   j   n   s   x   }                                       NI                            H        G        ."    14   ?B    MP    UX   _b   ls   or                                                #&   /2   >A    OR    ]`    vy                                    v    R                  &   13   ^   ?B   MP   \^   j   	w   ru   |                                        y       q               $    l'    03    0   aD    ?K    QT    Mc    Pm   ht    ^          w    )              5                        `	   m         "$   p0   ;   E                            P0 h    !p!!!"P"x"""#T####($X$|$$%8%x%% &@&&&&('l'''((t(((@)x)),*l***8+\+++,H,,,-d---.X....</|///(0d0001\111$2d222,3t33 4D444 5X55506p666 7\7777<8t8889T999,:T:x:::;P;;; <    RA  B%0*d unmatched brace at pos %d
 illegal pattern at pos %d
 %c-%c%c%d%c %d-%d%c%d%c missing ']' curl: (%d) [globbing] %s
    internal error: invalid pattern type (%d)
  nested braces not supported at pos %d
  errpr: bad range specification after pos %d
    error: unsupported character (%c) after range at pos %d
    error: bad range specification after pos %d
    illegal character in range specification at pos %d
 %03ld %ld %.3f %.0f url_effective http_code http_connect time_total time_namelookup time_connect time_pretransfer time_starttransfer size_header size_request size_download size_upload speed_download speed_upload content_type num_connects time_redirect num_redirects ftp_entry_path    curl: unknown --write-out variable: '%s'
               ]3	W	k				
C





                 K   K
   K   %K   0K   @K   MK   ^K   qK   }K
   K   K   K   K	   K   K   K   K   K           /dev/tty CURL_HOME   $tI;0  %   HH  HI`  xI|  I  (J  HM  M  M  N(  xND  N`  N|  HP  Q  Q  XR  S  T@  T\  v|  {      X  H$  XD  hd    8          8  h\  |            |        PO   AE
   0   '   AB
D    L   ЖV   AB
E      l   0F   AB
FE          AB
I       =   AG
         AB
       [   AB
A       `d   AB
A      Л,   AB
A    0   /   AB
A     L  0d  AB
IEP      p  4  AB
I      V   AB
FE       @l   AB
D      e  AB
IL          AB
FFF        :   AB
A    ,   "  AB
I    L  0  AB
I    l  03  AB
F      p  AB
A (     `D)  D 	FAB
D        AB
F      	  AB
F        AB
F     4    AB
ACC      X  p  AB
FI   x  e  AB
F         AB
A         AB
QF     '   AB
     
^   AD
I       p
M   AG
FFF      ,  
A   AB
FG     L     AB
   d   2   AB
D                                    #     0     A     Q     ^     j     y          4
   oh   ȇ   ȁ
                     <d                              o,o   oj                                                     c        brҐ"2BRbrґ"2BRbrҒ"2BRbrғ"2BRbrҔ"2BRb    curl.debug  ƒ .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  `                +         ȁ                 3         ȇ                   ;   o   jj                  H   o   ,,
  `                W   	      
                   `   	      
                i         44                    d         LL                   o         pp  y                 u                             {         @@  >                           XMX  4                          N                            c                             c                             c                              c                           8d8                            <d<  P                         e                             e                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELF               4   s      4    (      4   44               4  44                     xn  xn            p                 p                 H  HH              Ptdpg  ppl  l        Qtd                          /lib/ld-linux.so.2           GNU           	      1         B `    1   3   KG->Kyc*                /      4             g                  H       G            T                                                                  n     6      w     )            L      g            <            C            2                             @            b                      S                   f      j       I      S            #      G            <                         [                                     '                   6                               o                        C      A      *      t                          i      <      "                        }            Z       B      z                            d       p       @/       P    )        __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk setlocale mbrtowc dcngettext optind fflush_unlocked dcgettext error iswprint realloc abort stdin __ctype_get_mb_cur_max calloc strlen fread_unlocked memset __errno_location __fprintf_chk memcpy fclose malloc mbsinit __ctype_b_loc stderr getopt_long fileno __getdelim __fpending strchr __vfprintf_chk fdopen __ctype_tolower_loc fcntl fopen64 bindtextdomain fwrite_unlocked __libc_start_main __overflow fputs_unlocked free __cxa_atexit __stack_chk_fail exit_failure version_etc_copyright close_stdout program_name GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.2 GLIBC_2.0                                                                     ii
   6     ii
   @     ti	   J     ii
   V     si	   `     ii
   l     ii
   v      	      2  3  )  4  +  5                  	  
      
                              $  (  ,  0   4!  8"  <#  @$  D%  H&  L'  P(  T*  X,  \-  `.  d/  h0  U	    O   5%    %h    %h   %h   %h   %h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @%hX   0%h`    %hh   %hp    %hx   %h   % h   %h   %h   %h   %h   %h   %h   p%h   `% h   P%$h   @%(h   0%,h    %0h   %4h    %8h   %<h   %@h  %Dh  %Hh  %Lh   %Ph(  %Th0  %Xh8  p%\h@  `%`hH  P%dhP  @%hhX  0        1^PTRh0h@QVh`US    [Àd  trX[ÐUS= u?-X9v&    9w[]Ít& '    Ut    t	$ÐU(]7  c  }ǉuME :u:GE} u~%D$<$C  t9E4$D$B  ud} t   ]Ћu}]É4$itT$|$ $    D$1뼍t& ƃ   0T$|$ $    D$1;0r4$1ct& '    UWVSE  ßb  tU0D$   D$$    Wt$D$   D$ $GE$|t& 0D$   D$$    t$D$   |$$   D$,0D$   D$$    t$$D$   D$$    |$$   D$0D$   D$$    Rt$$60HD$   D$$     t$$0$D$   D$$    t$$0TD$   D$$    t$$D$   D$$    T$$   D$D$   D$$    ZT$$   D$v L$qUWVSQ   I  /`  e   U1҉PLLMԉTp?D$$   N4$D$\4$Q$G  ƅZ ELPD$    |$t$D$$z   ctFt& %=~tZbt& tb=}tz$   럃wt$=   tMtuE    ƅZxfƃ    ƃ   c$    ARE   Fƃ   ƃ    3
D$D$'D$6D$;D$ID$D$     $IE  $    Mǃ   +   ǃ   (   x
Z L  Z        h  MuP!98\  ƅ[9PU  ƅ[LZ <Y  M}tuƅs :u:Gss [  %D$<$=  `  }EE    E    E    E    E    E    ǅx    ǅ|    E   E    @<0  v `@<D$
   t$|$$  U4:#   E|
  4 < /  4<	E    U   u   H  U1+U/\   9rD1/\  M4   4}ʉh< 
  <	  f    k  `  EU    UUeD$   D$$    MD$    $   L$D$Rt& E    EM41 /t	tuuu   у]}UuE    Dlt#9)t)
р9)Rtul9) lP #  	  =lD
   	  hs tUl:u
B:Afh>t*Zh0DF:zu㋍tUlEU 1  x|     D$   D$$    l$   T$D$$E M4TD$   D$$    B}HuD$    |$}T$D$t$|$$    `@E$`   s   MMw        |x  }}uY|   x    [;P      [[$u$+x}D$\|D$   t$D$$    UMt$|$T$L$D$D$    $    1K 4D< t<*<*Q4Eфl1;Us-u4<\?  ;Ur v E   =\UT<Es[  ƅ[ D$   D$$    uD$    $    t$D$ƅ[ JMM!11`<$`UT$T$ $    D$mU}8J t	t   +ED$   D$$    3uT$D$    $    t$D$1yVƃ   D$   D$$    E `D$
   <$m  B;B   \B   tA18T8L$$   D$   9w͋B;B    BU  B;B   *B1&<\tbȋB;B  B<$Q9s`><
uƋD$   D$   D$$;뽋D$   D$   D$$둋B;B   
B|$   艅dZ  $10D*hDzʋD9uB;dt?htx(D(9tEU     ;du  D$   D$$    rlD$D$$   t$$nnB;B    BED$   $    D$D$D$UMx|T$L$t$|$D$D$    $     u2P t	t  $VD$   D$$    St$ $   D$&9QB<\   <n7
PLPD$   D$$    D$    $    D$$   D$   뷍D$   D$$    lD$    $    D$D$   2D$\   <${\D$   D$$    D$$D$\   $<1D$
   $/D$    $sD$    $~D$*   $ip$ÐU)  zP  E]  Í&    U(]RP  u}  $E$Iu{tj 	EtxD$   D$$    Ƌ  ta$a
  t$D$D$E$D$]u}]ÄE    tyuEwЋD$Et$$D$+멋$ÐUE5O  t ]Í&       ]Í    UUO  tE]Ít& E  ]Ív UE$M@N  |$}t$t6ʃҍr11z$t$|$]Ív   &    U]bN  uu}ǋ $$   E0  tHFBFBFBFBFBFBFBF B E]Ћu}]Í  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]rM  uƉ}D$   D$$    29t
]u}]Ãu捶        UWVSM     EEUMe   U1҉E}EwMfE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$r  t  z  }uHt& v>U       B[<!w &    9u֍    E؉$U$u E>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EOUM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUUƍE    t!t& M9MvUEM1u<$}EEUE    E    E    E7E  E   }E   E}  E   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$EE 'E   UE   E ;E "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋} S-  v U(}}]qD  ut?UMƋ |$ED$E$EU]u}]Ív   빐&    UWVS
ÕD  ,EUM&E EEE  U;   rlփ.     9          D$   $%     D$    )ȉ   T$$b   EUE   0xT$E܋Ut$<$D$T$9w[pU䋃   4Ѝ  9t<$b   E4$%  UǉBEU܉t$<$D$ET$D$PEU,[^_]$   %           H<*          UVS{C  @Uuԋ  Eԋ  E؋  E܋  E   E䋃$  E苃(  E싃,  E0  T$4$D$   EU14$@[^]Ð&    USgB  ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USEFA  $    D$ED$[]Í&    '    USE	ÔA  U  M[]    USgA  E$    D$[]Ðt& U(]2A  u}UE T$UD$    $    EET$D$x<$E#  U|$T$ƋE4$D$ED$EU]u}]ÐUE #Eg@@ܺ@vT2@@    @    @    ]ÐUW}VEΉ	։ʁ   	ց   	Ή0OΉ	։ʁ   	ց   	ΉpOΉ	։ʁ   	ց   	ΉpOΉ	։ʁ   	   	ΉpOΉ	։ʁ   	ց   	Ήp^_]ÐUWV  EUщLMHU	PMRTUIXMR\UI`J9ȉJvBLM9H\  v H1DD	DDD   D%   	\@	ʉuU`PPH@
yZUƋ\3X#T3\\\ƋTXt3X#P3XyZ<<EyZ8t81!3tdU1t#t1yZ4d}ȋd4xx 1#d1yZxủ3 #x3 hyZƋE 1!1Ћ |MhM؍yZh00|1!3|yZ,,l|yZ1#1ȉ$l}܋l$1#l1yZupǉ3#3yZƋE1ЋM!1ЋpM썄yZp  1!3yZtyZ1#1ȉtt}1#tx1yZu􉍌MǉЋU3#3yZƋE3E1Љ1ȋEyZ3x!3xEUĉ1ЉM܋U1ȋx1ЉyZE1!3EU3EȉE1ЋUE1ЋEEEyZ1#X1UẺU1EU1EU1UUUč:yZ1!1|ME艕UȉU1ʋMU1|U313U2nUUȋU<MԉhE1ʋMh1h1ʉhhn3|3UƉƉMЋEU1Eĉ1ы|13nU1ƋMЋMԉƋE܉1Eȉ1ы133nǉǋE؉Mԋ3E EUM1ЋE1ȋM܉EEnE؋ 3t1ЋUE1EЉt1ыt1 tnt11ЋUM܋M\E1\1щ\Eԋ1 \\Mn13UE쉍$M䉍1E؉1ы11n13MMƋ$UȉƋE1E܉1щ133$9n$ƋMM3MƋẺ(UL1L1ыLLn(33MMUǉǋE1E䉍1щ1M3(nM1UǋǋE1E艍1ы(1n13M􋍸ЋU؉M쉅,3E1Ћ1ȉnE11Љ,3MċUE11ыU1n13,M,ƋƋE3Eȉ0ME1ЋE1ȋEnEE013ЉUE3E̋ME1ЋUE1ȋMEE8nEċ301ǋǋE3EЉE1ЉE1ȋ0EEEȍnM134h3UE11lŰ13
nMǋ43U1ʋMǋE1334UЍ2n43U8E1ʋ183
nM1ƋUԋUƋE3E11EE؋ܼ	#8!M	ЋUt3E1Ћ81ȋxܼE܋!	!	ȋM\<U3E1Ћ1ȋ`8ܼE<!Mǋ	#	ЋUǋ3E11E䋍<ܼ<!#	ȋM<3U@E1ʋL3M12ܼƋ@U苕@	#!	ЋUƋE11ыPܼ!M싍	#@	Ћ UЋ3EM11ȋ@Eܼ 3M	!!	ЋUDE1 1ы9ܼM 	#3U!	ȋMǋD1ǋ $E1 UܼDD$#$!	DU܋HM3E1ЋH1ȋM0ܼEH!3M	#$	ЋUƋƋE1$1MܼM	#H!M	ЋU(E3E1ЋH1EܼEĉ	!!	ȋM(ELU3E1Ћ(1ȋ(E8ܼEȋL!,Mǋ(	#	ЋUǋl3E1Ћ1pܼLE̋L,#,!	ЍL3UPE1E12ܼƋPUЋP	#,!	ЋUƋ3E1ЋU1Ћ,Eԍܼ	#P!	ЋM3ME0U1P1Mܼ0M؋x3M	!!	ЋUTE11|09ܼM܋0`	#!3U	ȋMǋT1ʋTǋ0XM4E1dUܼTxT4#4!	ЋUx3E1ЋX1ȋ0ܼ!E䋅X3M	#4	Ѝ4EȋU114M荔bʋXP3M13Ẻ81U1ыX11TM썌bʋU8EЉ\3M113389bƋ\M8Ɖ3u3u3u艍<u􋅸\ bʉȋ33\Ƌ3}3}3}Ɖ3<3}bǉǋ`<3E3E3EEbʉl3`1lhh@E3E3E3EE`bʋM11@EdU3E1Ћ1ȉEEčbʉU13@dE@3E1ЋDM1ȉEEȍ0bʋD13dƋƋdp3u3u3uh3D3u̍>bƋ3}؋DƉЋh3}3}3h3}Ѝbʋǉǋ3E3E3EEԍbʉd31d``lE3E3E3EbʉE؋11l|3E3E3EЉE܋bʉ13llpd3E3E3EE0bʋp133E3E3E8bʋE䋅p3}3}3}13}pbʋ11ǉǋEM1E1E1X31bʉMM1ƉHUƋEЉ1ʋM11ʋMbʋH3U3M1ƋX3MƋE3M0H13bƋƋEP0PTP@XEXxP\xHP`PH9LvM Ġ  ^_]Í    UWVS}D#  G7E   E   E   E   uww9uvGG	щ	%   	E   	э    L щ%   		E   	щL Ew +EE$D$D$[E|$4$D$pE<$D$[^_]E   E   E@   
U(E]}}upÓ"  uy?wKu]u}]Ív Ur UЋU|$47T$$袼?   Ur빋U?Et$T$$u뒍       )9ǉ}wBU UЋU$T$UT$7UEB@BwNEE)8E빋E@UD$@   D$$Et$`D$E$ݻ?D$ET$$EP?PET$UE$D$蘻mt& '    U   ]!  uX4$hEt$D$E$BE4$D$]u]É'    UWVS:     Ee   U1ҋ} $1   )D$|$D$   $萺Ɓ   tc   v tu1 D$$B1Ue3   u[  [^_]Ët$D$$=뱋D$   D$$KE }  U(E]ß  }D$Eu$t
$v]u}]f$x   xB<$ruE4$D$uԷ1E4$U貹UE賷E<$1U!UE{USL  ED$   D$    $軹[]ÐUSEÑ  D$E$Էt[]f  t& '    U]EO  uu$t$Ot
]u]Åt@  UE}}]~	  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅  fU]Ò  uu4$&t
]u]Åt  &    U]R  uu4$Ut$T$$胷]u]ÐU]  uu4$f4$D$]u]Ðt& U]G  uu4$t$D$    $]u]U1҉Muu]Â  9w*΋EL$$|t]u]Í    tg  &    U1҉Muu]"  9wΉ$賶t
]u]Åt  t& USMUS  ɋt"=w#D$$[[]Ðt& u@  UWV1S,EÍ  M}EtЃEBu  |$EL$D$   D$D$U$"D$   D$$    D$  D$   D$D$E$۳LD$   D$$    譴UT$$莳	wTuD$   D$$    mt$D$   D$U$b,[^_]uD$   D$$    $t$D$   D$E$,[^_]ËuD$   nuD$   뤋u`D$   Eu<D$   xuD$   u.D$   LuD$   uD$    |$ED$   D$D$U$<
US$EED$E  D$ED$ED$E$T$[]ÐUSL  D$   $    |D$蘲D$    D$D$$bU]Ít& '    UWVSe  跰PEP)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1Sj  tD$ED$    $葰[]ÐUS,÷  dUS  tЋu[]US    [l   Y[                     - SHA1 FIPS-180-1 
Report bugs to <%s>.
 bug-coreutils@gnu.org /usr/share/locale David Madore Scott Miller Ulrich Drepper 5.97 GNU coreutils sha1sum bctw standard input %s: too many checksum lines  ( %s: FAILED open or read
 FAILED OK %s: %s
 %s: read error %02x \n \\ binary check status text warn help version Try `%s --help' for more information.
  Usage: %s [OPTION] [FILE]...
Print or check %s (%d-bit) checksums.
With no FILE, or when FILE is -, read standard input.

    -b, --binary            read in binary mode
    -c, --check             read %s sums from the FILEs and check them
     -t, --text              read in text mode (default)
  
The following two options are useful only when verifying checksums:
      --status            don't output anything, status code shows success
  -w, --warn              warn about improperly formatted checksum lines

        --help     display this help and exit
          --version  output version information and exit
   
The sums are computed as described in %s.  When checking, the input
should be a former output of this program.  The default mode is to print
a line with checksum, a character indicating type (`*' for binary, ` ' for
text), and name for each FILE.
    the --binary and --text options are meaningless when verifying checksums    the --status option is meaningful only when verifying checksums the --warn option is meaningful only when verifying checksums   %s: %llu: improperly formatted %s checksum line %s: no properly formatted %s checksum lines found   WARNING: %llu of %llu listed files could not be read    WARNING: %llu of %llu listed file could not be read WARNING: %llu of %llu computed checksums did NOT match  WARNING: %llu of %llu computed checksum did NOT match 0123456789abcdefwrite error %s: %s " ` ' literal shell shell-always c escape clocale  00=߸ظui_UGGGGGGGGGGGGGGGGGĵGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGhh`````````````````````````````                                                                                                 %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
   
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 ~hR<&memory exhausted    Copyright %s %d Free Software Foundation, Inc.  ;h  ,   p           8  0T  `p  л  `       0  @  0`       0  `       (  L  h    `      p  ,  `P  l              `,  L   l  P      `         zR |            AB
FNE     @   ]   AB
F,   `       D 	FAB
D             AM
          ķ   AB
FQ         *    AB
         Ը-    AB
         h    AB
ISI      ,  4    AB
FNF     P  Y    AB
B      p  T    AB
FNE       
   AB
C      h    AB
FFN       X   AB
C         AB
B       H+    AB
A   4  \+    AB
D   P  p-    AB
D   l  2    AB
D     *    AB
A     +    AB
A          AB
FQ        L?    AB
         p    AB
AD       0   AB
H     @  !   AB
F    `  u   AB
LF        W    AB
IN      \   AB
C      \    AB
IX        3    AB
A     ,5    AB
D      P@    AB
FQ     @  p~    AB
IFP     d  9    AB
FN      ?    AB
FN      ;    AB
FN      ,@    AB
FN      LY    AD
NF      L    AD
NF    $  M    AB
D    @  a   AB
BF      d  <B    AB
D     p[    AB
A                                                                                                                                                                                                                                                                                                                                                                                                                                    y        b           c                      t           w           ~        }                ksy             
   8oh      
                        `              h   H         oo   o|                                                            h                                >N^n~Ίފ.>N^n~΋ދ.>N^n~Όތ          |   sha1sum.debug   ` .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  4                +           `              3                            ;   o   ||  l                H   o                     W   	      hh  H                `   	        `              i         
                    d         ((
                  o           
  8M                 u         88Z                    {         ``Z  
                           ppg  l                          h                              p                             p                             p                               p                              p                           q  (                          q                            llr                             r  H                                r                                  r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ELF              4   7      4    (      4   44               4  44                     4  4           4     l           @5  @@               H  HH              Ptd.  ЮЮ4  4        Qtd                          /lib/ld-linux.so.2           GNU           	      &         @ 0 `	d    &   )   KF->Kyc*                u       g                  c      T      O            {                                         m       n     )                   <                         C      =           '            @            ^           H             O       I                        G             <                                                   '                   6                        p      C      
      *      Y                         _            +            6            d             k                             s      /              $      __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk setlocale mbrtowc optind dcgettext error puts iswprint realloc abort __ctype_get_mb_cur_max calloc strlen memset __errno_location __fprintf_chk memcpy fclose malloc mbsinit __ctype_b_loc stderr getlogin getopt_long __fpending __vfprintf_chk bindtextdomain opterr __libc_start_main fputs_unlocked free __cxa_atexit __stack_chk_fail exit_failure version_etc_copyright close_stdout usage program_name GLIBC_2.2 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.0                                                             ii
        ii
        ii
        ti	        ii
        si	        ii
               '  )   *  $   ((  ,#  0+  @  D  H  L  P  T  X  \  `	  d
  h  l  p
  t  x  |                            !  "  $  %  UU    w   58%<    %@h    %Dh   %Hh   %Lh   %Ph    %Th(   %Xh0   %\h8   p%`h@   `%dhH   P%hhP   @%lhX   0%ph`    %thh   %xhp    %|hx   %h   %h   %h   %h   %h   %h   %h   %h   p%h   `%h   P%h   @%h   0%h    %h   %h    %h   %h       1^PTRhPh`QVh@US    [$;  tX[ÐUS= u?-X9v&    9w[]Ít& '    Ut    t	$ÐU(E](  c:  u}tQ0XD$   D$$    t$D$   D$ $E$0D$   D$$    tt$$   D$>D$   D$$    :|$$^>D$   D$$    |$$26D$   D$$    t$$"D$   D$$    9T$$   D$    '    L$qUWVS  8  Q(yyE싃8ED$$   OD$4$4$$  aD$D$    |$D$pD$uD$D$E$?  ED$    D$    |$D$E$t$    9E"ti$F$    j$  D$   $    ƍD$?t$D$    $    D$$   뎍D$   D$$    D$    $    D$$   $ÐU)  .7  E]   Í&    U(]7  u}  $*E$u{tji 	EtxD$   D$$    1Ƌ   ta$A  t$D$D$E$D$]u}]ÄE    tyuEwЋD$Et$$D$_멋$ÐU8]5  u}}>    t">     ]u}]Í&    D$D$ED$    $   D$-thtvt& u$    t& UE D$EED$ED$ED$ $  $    UE	5  t ]Í&       ]Í    UU4  tE]Ít& E  ]Ív UE$Mdß4  |$}t$t6ʃҍr11z$t$|$]Ív   &    U]64  uu}ǋ $$   E  tHFBFBFBFBFBFBFBF B E]Ћu}]Í  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]F3  uƉ}D$   D$$    9t
]u}]Ãu捶        UWVS2     EEUMe   U1҉E}EwM fE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$Fr  t  z  }uHt& v>U       B[<!w&    9u֍    E؉$U$u E)>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EOUM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUUƍE    t!t& M9MvUEM1u<$}EEUE    E    E    E7E  E   }E   E}  E   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$EE 'E   UE   E ;E "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋}   v U(}}]*  ut?fUMƋ |$ED$E$EU]u}]Ív   빐&    UWVS.i*  ,EUME EEE  U;   rlփ.     9          D$   $4     D$    )ȉ   T$$   EUE   0xT$E܋Ut$<$D$T$9w[pU䋃   4Ѝ   9t<$   E4$Y  UǉBEU܉t$<$D$ET$D$PEU,[^_]$              H          UVS(  @Uuԋ  Eԋ  E؋  E܋  E  E䋃  E苃  E싃  E  T$4$D$   EU14$@[^]Ð&    US ;(  ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USEjå'  $    D$ED$[]Í&    '    USE-h'  U  M[]    US ;'  E$    D$[]Ðt& U(]'  u}UE T$UD$    $    EET$D$x<$  U|$T$ƋE4$D$ED$EU]u}]ÐUSE*e&  D$   D$E$d[]Í&    '    US+&  E$    D$[]ÐUSE%  D$E$t[]f  t& '    U]Exó%  uu$t$t
]u]Åt@  UE}}]2m%  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅  fU]$  uu4$
t
]u]Åt  &    U]{ö$  uu4$Ut$T$$]u]ÐU];v$  uu4$j4$D$]u]Ðt& U]6$  uu4$t$D$    $V]u]U1҉Muu]#  9w*΋EL$$t]u]Í    tg  &    U1҉Muu]KÆ#  9wΉ$t
]u]Åt  t& USMUB#  ɋt"=w#D$$[[]Ðt& u@  UWV1S,E"  M}EtЃEBu  |$EL$D$   D$D$U$vD$   D$$    D$  D$   D$D$E$/D$   D$$    UT$$	w uD$   D$$    t$D$   D$U$v,[^_]YuD$   D$$    8t$D$   D$E$-,[^_]ËuD$   nuTD$   뤋u,D$   EuD$   xuD$   uD$   LuD$   uD$    |$ED$   D$D$U$
US$EED$E@{   D$ED$ED$E$T$[]ÐUS ;   D$   $    HD$D$    D$D$$FU]Ít& '    UWVS  +E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1SY  tD$ED$    $[]ÐUS  HUStЋu[]US    [  Y[                     Try `%s --help' for more information.
  Print the name of the current user.

         --help     display this help and exit
          --version  output version information and exit
 Usage: %s [OPTION]
 
Report bugs to <%s>.
 bug-coreutils@gnu.org /usr/share/locale FIXME: unknown 5.97 GNU coreutils logname extra operand %s no login name write error %s: %s + help version " ` ' literal shell shell-always c escape clocale   \\i> sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss                      %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
   
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 :?memory exhausted                    Copyright %s %d Free Software Foundation, Inc.  ;0  %   L  pp  0  P  p  P     <   `      p      ,   L  Ph           P    04  `P  l    `         `0  P  p  `              zR |         s   AB
IS   ,   @      D 	FAB
CL     p       AM
             AB
FQ              AB
FU         D*    AB
         X-    AB
         lh    AB
ISI      0      AB
FNF     T  $Y    AB
B      t  dT    AB
FNE       
   AB
C      h    AB
FFN          AB
C     L    AB
B       +    AB
A   8  +    AB
D   T  -    AB
D   p  2    AB
D     ,*    AB
A     @+    AB
A      T    AB
FQ        2    AB
D     +    AB
A      5    AB
D   <  ,@    AB
FQ     \  L~    AB
IFP       9    AB
FN      ?    AB
FN      ;    AB
FN      @    AB
FN       (Y    AD
NF       hL    AD
NF    @  M    AB
D    \  a   AB
BF        B    AB
D     L[    AB
A                                        h           v                                   !#*             
   Xoh   d   
                     4                 L   P         ŏo   or                                                                                        @        ҈"2BRbr҉"2BRbrҊ              logname.debug   + .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  <                +                         3         dd                   ;   o   rr  X                H   o   ̆                  W   	      LL  P                `   	                      i                             d                            o         
  x                 u         XX'                    {         '  O                           Ю.  4                          0                            4                             4                             4                             4  `                            @@5                           6  ,                          446                            6                             6  H                                6                                  6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ELF               4   81     4    (      4   44               4  44                                     <  p           *                H  HH              Ptd ~~          Qtd                          /lib/ld-linux.so.2           GNU           	      K         B0!(   K   P   X   D|(CEo2K<8qXfUac2                \      I           g     *            A       2                  T                                        K      A                                        -                      n                 ~                 g                                        )      <            C      
      ?            2      p      E      (                                                    W      \                 I      E                  G      ;            i           b      '                                      l                              w      "                       x            _     3      (                                               C      V            x       H            X                 ]           A      E      	                   @            4            $            2      ^                                                "                   U      R       +      :            !      %            W      S                          k   @     t  p     O  L             a  <     y       h  d&             D     h  <       H     X   D     
   4     X  (&     
   @       P      libbfd-2.17.50.0.6-14.el5.so __gmon_start__ _Jv_RegisterClasses bfd_check_format xexit _init bfd_get_arch _sch_istable xmalloc_set_program_name bfd_perror bfd_errmsg bfd_get_section_by_name xmalloc xrealloc bfd_get_sign_extend_vma bfd_arch_bits_per_address bfd_get_error bfd_get_section_contents bfd_openr bfd_get_arch_size bfd_printable_name _fini libc.so.6 _IO_stdin_used strcpy __printf_chk _IO_putc optind strrchr __strdup dcgettext ftell strncpy __stack_chk_fail putchar abort stdin strpbrk rewind feof fgetc strlen setitimer memset strstr strcspn __errno_location fseek __fprintf_chk stdout fputc fputs memcpy fclose __strtol_internal strcat getenv sscanf optarg stderr fscanf getopt_long strncat fwrite fread strchr qsort __strcpy_chk __sprintf_chk memmove fopen64 bindtextdomain __strcat_chk strcmp __libc_start_main ferror __strtoul_internal sysconf free _edata __bss_start _end cplus_demangle_operators cplus_demangle_builtin_types libiberty_demanglers current_demangling_style GLIBC_2.4 GLIBC_2.1 GLIBC_2.3.4 GLIBC_2.0                                                                                                                     ^         ii
        ii
        ti	        ii
         T  XK  @K  \P  `R  dS  DS  hN  lW  @Y  HU  LM  PZ  |                	  
                  ī  ȫ  ̫  Ы  ԫ  ث  ܫ               !  "   #  $  %  &  '  (  )  *   +  $,  (-  ,.  0/  40  81  <2  @3  D4  H5  L6  P7  T8  X9  \:  `;  d<  h=  l>  p?  t@  xA  |B  C  D  E  F  G  H  I  J  U  \  觖  5t%x    %|h    %h   %h   %h   %h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @%hX   0%h`    %hh   %hp    %hx   %h   %h   %īh   %ȫh   %̫h   %Ыh   %ԫh   %ثh   p%ܫh   `%h   P%h   @%h   0%h    %h   %h    %h   %h   % h  %h  %h  %h   %h(  %h0  %h8  p%h@  `% hH  P%$hP  @%(hX  0%,h`   %0hh  %4hp   %8hx  %<h  %@h  %Dh  %Hh  %Lh  %Ph  %Th  %Xh  p%\h  `%`h  P%dh  @%hh  0%lh   %ph  %th   %xh  %|h   %h  %h  %h  %h   %h(  %h0  %h8  p%h@  `    1^PTRh`%hp%QVhPUS    [@ tX[ÐUS=X u?-XT9v&    TT9wX[]Ít& '    Ut    t	$ÐUEEҋu]   ÅtA 9B rwB+A]]Ít& '    UWVS<Է;طr\&       9طvGStC;B~S$@D$T$j    SC   9طBwt6C~($JSCT$D$    $uˋ5Է;5طr{   95طvmFtxtV$@D$T$ƞ    FV PPF8  G@  F    G 95طw5  fN  ЬtF  l    h    t$D$D$   4$P  E     D$   D$l&$    W\$D$   D$E$D$D$   FD$F$~9~ǅ~\NtV@ 1ۅuI    Nt9@ t0D$BD$'D$   D$E$`9uN$F    D$   D$'$    ~D$   D$E$hD$   D$&$    E\$D$   D$E$lD$   D$($    \$D$   D$E$h  4(]D$   D$&$    D$   D$EE\$$M^D$   D$&$    ~\$D$   D$E$
ht؋F1RP,$Q$]D$   D$'$     D$   D$EE\$$E;Lt$/v 6<[^_]l
4(P$$   dD$   |$É$F C FV    C    @\@V$LD$T$  @f*S$LD$T$豚  	Bt& 0'    UWVSLجx  ج    з$|Է;طEZ  E    fEUĉE   9طvQS$XD$T$
  uơXűS$dD$T$  t   9طwEUD$ D$   D$$EH  E    EUċ<G Eu	ЬukGWEGUC  @ED$   D$8'$    Uȉ\$$   T$UD$T$UT$UԉT$E    Et,\(	   EDxEu	ЬuiGWEЋGU̅   @ED$   D$8'$    U؉\$$   T$ỦD$T$UЉT$U܉T$E}
]EE9EUĉ$L[^_]D$   D$$($    E_D$   D$$($    vE$"(ED$ D$   D$    $l'    UVSEES0t7Ft0R@$D$juSF9t)Ѓ[^]Ðt& V[9ws[^]Ít& 9r9Ӿ   w	v r9v[^]f1'    UWVS1ۃ
Է5ط}9s"11ҋD(D,t
u   9rD$   <$[  u|\$<$@\  ul5Է;5طsV1ۋT,D(	t8D$T$<$N]  u:LxD$    <$L$2]  u
u   95طw[^_]ËE$$   n  '    USÃ&    $tu[]É'    UWVS\E]\$$ub    @$P(=EZ  u  E       &    MED$   D$   $L$
   ED$   D$   D$E$   EE
UED$   D$   $T$ub
вuod  EU9U   =ED$E$b  uUE؉D$$a  tM$$   Jm  EU$зD$T$耔  Ez   M؋u}E    Mv ډ11	t"E}
;E̋Uȋ\,L(	uҋŰMȃEEDxt(|,U9U\[^_]Ðt& D$   D$'$    d   0\$D$   D$D$UȋE؉D$BD$BD$D$|'$   D$ED$E,D$   D$\'$    U\$D$   T$D$D$-$   k  t& UWVS\  EUe
   M1ɉE9P  @T҉  hƅ B  \  Q,A(	o  ;QR  `D$.(D$,  D$   D$$! t  u=` ҉˃ǅ   1D(D,   Dx`uǅ   1
\ǅt9tB9s,$D$D$.(D$D$   $8`Ã
i\t9     Et1 ;EuU *ut1f ;EuE Ee3     \  [^_]Í1ǅ    `D$.(D$,  D$   D$$! t  u ҋ=`)ٍl9=C6   -> C +;]   MD$L$$~B $D$.(D$D$,  D$   ! t  u ҋ˃ǅ   z =`gET$)؉$WU)O1 9u7r;t& 1ǅ    ǅ####fǅ# YUWVS=Է;=طu      u   v [    D$   4$5S     P 4$T$D$U     CP 4$T$D$T  urC4$D$S  u_@tCD$C D$ D$8($   D$F[ Z   9=ط+[^_]Ðt& E$$   If  '    UWVSEU]uEET$$зD$a  E\$t$$зJ     U   Է9s   &       9wvGft|$U$T$  u$uJ|$E$D$  u/UW u(EU}EU[^_]  t& [^_]ËE_pD$   D$p($    U\$t$$   T$D$fUSD]ED$$wY  uED$$dY  tRD$   D$\'$    jU\$D$   T$D$D$$   ~d  ED$$OX  u@t)ED$($   D$ED$ED$EUD$ET$UD$ET$$D[]ÐUEE]   +   Ðt& UVS]u            t#uBKV;Qrw;s[ u݃[^]ËV;QFrw;Awރ[^]Ít& C@D$@D$$)$   D$땍&    $(1^[^]ËFD$CD$ )$   D$=fUWVS\Է9ط   ǆ       ǆ       t$4$t	9p  ǆ       Ȳǆ       ǆ       ǆ       ǆ       ǆ       ǆ       ǆ       ǆ       ǆ          ǆ            95ط>Է;طs!        9طwԷ;ط    s4ط1	   9v9   u      9w
i      $=Է;=طã   E       9=ط      9u䋇   tځ   E$蛏  Eǃ      ǃ                	  MЉ         u狖   t"9tM9     BC Ruދ   uʁ   9=طAз$зۉEt 5Է11ɋ}̍1   9wED$D$   \$$r'	  зÃ]  }̍DE1U   U9   9     Ǉ       ݟ   EthU苚   tK;   t:w    	   t'C1R1P,$RV,$܉   ݗ   [uM苉   ɉMu݇      ݚ         u  E䋐   o   Q$D$T$T    Eǀ      E݀   ~  x  MQ$(D$T$    Eǀ       ǀ     ?E݀   ܈   ݐ   p  mm  I$   
  9ط6M         D$T$V4$މD$T$9  95ط#@)F B   CBR      &    MQ$D$T$  ]S$D$T$  yǃ       jMQ$(D$T$荄  ]S$4D$T$i  {ǃ       ǃ       bD$U*$   U$y  M݁   \$   D$)$   D$j]\$݃   \$݃   \$D$)$   5mmi
      9w[   t3t& ݃   zt݂   ܃   ݚ      u݂   ܊   ݚ      9s
зn  E    EŰ<݇   z4     &  V^
  9  ݃   z      9؉E     ;         ;     ]ċK    F1R1P,$RQ,$܋   ^RQ   ,$9܋   VFU݇   ݟ   ܏   ݇   ݟ   F܏   ^F܏   ^z  E܀   ݘ   ܀   ݘ     v EE9зỦ$з$Eȡзt&5Է11ɋз}ȍ1   9w5t1з      Eȋ=   9sU5зD$D$   t$$зt#
1ҋ]ȋ   з9wEȃ\[^_]D$U*$   1]$
  ݃   \$   D$p)$   D$
   Ǉ       Ǉ       Ǉ       tO9MtA}䋁   w 	   t+C1R1P,$RV,$܉   ܇   ݟ   [u}Uċ   ;   YDD$   D$   $c*D$ DD$   D$   $c*D$   ]5O]S$D$T$r  +t& (l]S$4D$T$6  H,D$*$   Eĉ$Z  UċB D$FD$݂   \$݂   \$D$*$   =D$*$   )<$  D$*$   E\$D$*$   <$  UD$,*$   T$
$H)2
з}1D$F*$   Ű   D$|+$   D$jM̋$=  $
   9зw[t& U$t$EE݂   ܂   0݆   ܆   vظ   $t$]fvZtINu
   uƅt݅t;_u$9_uF 9B wrM]$t$]9_u멋   t띍t& U(uu]}u5EUD$$tnuDs]u}]Ít& UMBD$At$D$)$   D$ ft$@D$*$   D$$(   
   EǉMEU9
Brt!;pt?MBUM   A    U   A   !u
p   p p$á$D$D$h$]UWVS}6     B  z  
|  t9     D΍v 9t9tT  9u-  ;5|^     ߅tU      tAtD$+$   <$  $
   F      u   9؉Et
  F;|E%  4   $t& 9]  EU9|   t   9uϋU      ]     t"U      Ë   uމ댡|x9У|  |tT<Ǉ   k     tt& C$[ u  ;     t$,,-|[^_]D$*$   <$e  $*pt& D$T+$   X   $.  D$M+$   6E$  $
   _   D$6+$   $ڊ  D$M+$   E$車  $
   W|D$+$   D$<$腊  $
   T$D$o+$   x<$T  $
   d   xD$t$tt$L$D$+$   M  $  $
   >GD$*$   <$贉  E
   [^_]      tD$+$   ~<$Z  D$+$   D$YD$+$   CU$  $
   lKDD$)   D$   $4,D$$   :O  DD$&   D$   $+D$$   	O  D$$($   3UEE @9Bw]Í        UEE @$9B$]Í        UWVSlɉEUM    E    E    U1ҋ@EU;Mu111E1ҋAËA$օ   QEEu;VS,$[  E]Em<  ]Eh,w4Bu.E@u%E   EE(     (  UUU9}I1&    UCuB@@u9   u   Ë   uKC$k   u琍t& 9uwUtGEt@1    ;]t.UBu@@uJB$;]u҃l[^_]ËUE    E    r`,`,   ;^E      E)  E    E܋E܃E   Eu鋂   E  E    EUE   uE9EċU}U܋EEEEEEE䋀   Euꋂ   UEu  &    EE   Eu9UQ  E  E	EA$         v    E;  E    EԋEԃE   EuE   E  E    E؋E؃E   EuE9E~_E؋   EE؃} Eu   EE䋀   Eu틂   EE؉EUEEE   EuEԉE   EE                 A$   E9EUE    %UE    E"EE    EEE    E   \EwfUWVS,E    $,҉Et.51ۉ׋@t	A@u	A$   9w܍E1ɉD$Eԉ$зt711   95зv ԷB<u܋B$iϋ
   1E    E    UЅtMЋU܋D$D$t`=зtuM1Է
M       9tLCtMCQ$T$u9t)UЋM܋\
EE؃E9k,[^_]ËUЋM܋D
$E뻍t& '    UE @EE @E]MUWVS|зE    E    $eEз$REз$?E$,E$E$
зE    E    ɉE   1E    ^MċE}ԷMĀdԷǄ       ԷǄ       ԷD$    E   U9зv[Է؋P EuP	   x,Utu	   ,t}ȋEUԷ}ȀL됡D$D$   D$$   
111MԉEUԋ1ҋAA$    ׃9]w⡌tRM1ۋ	MЋIWV,$  S]QE,$f  ]Ep,  ؋EċM}L$D$<$ED$D$   <$D$eĉ  1{$         t'Mv ;Bt	EB$   R uM苓   t&Mf;Bt	EB$   RuMGK9tM{$t넉E1tA1ۍ&    UQBt!@tEb`    9]wȅt1fU@n  9uM]|$D$D$   $E   \$$EU1ɡ\$$MED$UE$   }ąt1ۋ}@   ;]uuȅt1ۋU@$3;]uз$NEз$;Eз$(E$ǡ$ơ$M$$E$U$<$4$$|[^_]Ë@$p9l~&    @$N;]1`,UUЃB@$9uvV}1ҋ<G}SQ,$x,]Ev`,`,n1yUWVSӃ,8@K UEM   ;}   M9Mt@   uHE싐   t
M   unFFCCwavA   ,[^_]Ðt& M苑   t9uU싂   t,M   t9uC9Fr봐9u؃,[^_]D$,$   A<${  D$,$   %E$z  UB D$FD$F\$F\$D$,$   D$,$   M$z  D$,$   E$z  UB D$CD$C\$C\$D$,$   v$
   V'    UWVS   Ee   U1҉|Ԭt
Ĳe
  ج  ج    Ĳu:=Ԭ  D$   D$@.$    $   D$ٽD$   D$l.$    f٭۝٭{$   ۉ\$D$eݕE  ܽD$   D$,$    ݝ$   ݅\$4(ܵD$\$5Ĳ@  D$   D$,$    D$   D$,$    D$   D$-$    t$ \$D$*D$*D$*D$D$*D$.$   LD$   D$-$    0D$   D$-$    D$   D$-$    D$   D$-$    D$   D$-$    D$   D$-$    D$   D$$-$    lD$   D$-$    N\$t$T$$L$ |$D$T$L$D$.$   D$   D$*-$    D$   D$,$    D$   D$-$    t$ \$D$*D$*D$*D$D$*D$.$   j$
   螿зv  ǅ    |ЬۉtEH u>   u4݀   Q  K  ݀   z       =вt
B  q     ҉N     Z  ǅ       >  r1BSt@1~u[CttCBSuۉ   u_6  ʹT0T$$L$D$ D$*D$*$   \$\$譽4$t  $
   ٽ[  39      t;      =ĲCCQ (0CQQǁ       Ĳ=  $|0艿=Ĳt$
   3з;|$跽5ԬtĲ<  Ee3   #  Ĭ   [^_]Ë
Ĳ/Cu 0T$D$*D$D$*D$*D$*D$*$   A   Ĳ  D$   D$`/$    D$*D$*D$*D$*D$*D$*D$$   費   D${GD$    D$   D$$\-5Ĳ݁   ݁   u-\$D$$   \$\$
4(\$P      T$D$-$   ݺ     D$D$-$   豺$q  $
   ׺ǅ       Gr 1B S tA1~ u[ C ttC B S uۉ   u_ʹT0T$$L$D$ D$*D$*$   \$\$͹4$p  $
   [ s9tJ   t;   t2=Ĳ(0   CCP CXX
Ĳ/Cu 0T$D$*D$D$*D$*D$*D$*$   4D$*D$*D$-$   ݸ'$
   D$*D$-$   諸      D${GD$    D$   D$$H
ĲB ݂   ݂   @/  D$$\$T$$   \$\$
4(\$   B  D$D$Q-$   η      D$   D$_-$    蠸\$t$$   D$舷   ǂ       H   ɉ4Z݃   ܃      {    q ݁   ܁   ɉt  wt9w   u         >  ӉUD$   D$/$    舷$   D$xL$*  D$   D$/$    END$   D$,D$"(蟸ǂ       SD$   D$,$    $   D$ٵ      ?L$7  3-pD$*D$X-$   舵      ?t& ʺ-D$ D$*D$*T$$   \$\$%      D$*D$X-$   D$-$   $k  $
      =Ĳ|-݃   C ݃   AAD$D$Q-$   ~觶t& '    UWVSVUUUl
Ĭe   E1з)Uĉ$ض5зE    uEtW=Ь11ҋԷ}}tp u݀   ztu}u   ;Mu؋EUD$PD$   D$$=uut;      EuE1u؁   9Dv}LM$"(D$   D$.$    %$   D$UU  E    E    E9EU  ]ЍU1E    E   U      UD${GD$   D$   D$$x;]   ĲM܅  GL$D$.$   D$_v EEȋUċ]U];]  E<   h   D$GD$   D$   D$E܉$;]hĲM܅Q  L$D$9.$   ϱ   }D$   D$oG$    課U܉\$D$   D$   $D$g|$D$%.$   o! t  u ҃+M;]}L$    D$;]|u܉t$D$..$   <$Ie  вҍ4G~GsXԲq  \$D$3.$   觰$t0:! t  u ҃+M;u}#    L$    D$D;u|E܉D$D$..$   $   }D$   D$oG$    U܉$\$D$   D$   D$輲|$D$6J$   į! t  u ҃+M2$
   ¯}Eu9u~u4$R}e3=   u(l[^_]D$/   $wXofWUWVS<E؋
EUE    E    sE    D$ED$ED$E+AUQ D$L$T$$D$  tEtMt
UuSv 1= y:Ut`EMteT$L$D$ED$0$   D$I1<[^_]Ív = x/EE<   [^_]ËE$(Mu$(딉L$T$D$ED$0$   D$ݭEMU럍    UH]Éu}ptJ@uC
̲  U܋H$T$\$  E<TtF<WtB<ttG= x1]u}]D$CD$(1$   D$91͸T   f̲uCEtt<.t<$tBu@@t8xuп2   buп2   Mزt
C:t   2= CD$ 1$   D$j1&    UWVS|з      E    UԋYtb
ɉMtN1ۋUԋ5@E;]t+ލ<    >MĉD$Ẻ$BuՅ]  зEM9
wзy  i     $2E   E    Էط  EEE    E    E    EEUUE  
ɉMA  1ۋU5@E;]  ލ<    >MD$Eȉ$/uх  ޡط$XV  M
طMЋ	yAQStGW S  AcCطMBD$E$R w  طHطH}t  طSE؉U]  G,GW0W 9UwX  9EO  C8mU  =   E9Er   U9U   ط   EU9O]uEU EUط$U  طXp@x,     @       $طT  طUM@,H@@   ط+Է$зiзBP  |[^_]ËUBT>$T$0 E؋U܉EUU9UY  E؋U܉ECU8m=̬   3Ɖ= ̬    |D$C+ԷD$1$   D$iÿD$C= ZMBD$BD$L1$   D$ɧ(1Eط$`J  CpA5$T$u@FKCطHQUċBT>$T$êUЋ
t& M9MR5D$   D$2$    \$t$D$   D$D$荦$   $  t& U8E]Uu]}uE衔}U$苩w$3$菧5D$   D$1$    [\$t$D$   D$D$Ȳ    ]u}]ËEU]]uu}}EU]!f  EU]]uu}}EU]_  EU]]uu}}EU]k  EU]]uu}}EU]/]  EU]]uu}}EU]9r  EU]]uu}}EU]co  v UVS @,$Dã   
A,Q0D$    D$    D$T$\$L$E$ntt* [^]$3.$补    D$   D$!3$    腥\$D$   D$D$ [^]á5X,D$   D$1$    7\$t$D$   D$D$ƣ$   N!  &    '    UWVS<  ue   E1D$    4$"  D$   $  D$23$8  P$   C  $J$D$   ã  JD$\$D$    D$    D$$  ~Y   D$$#1ɍ4VȃB9u           $w
    }  ҉   D$}$Ȣǅ    t  t& $辣   \$D$c3$Ƥ  j3   uD$	($藤뙋\$D$y3${sUe3     <  [^_]Ë$$Eǅ    v $΢uT$D$c3$ڣ"  j3   uD$	($解뙋! t  u ҃+A$3CT$D$D$D$y3$D$    $ݠp4$|$t$$諡   tD$   D$P2$    辠T$D$D\$D$   $G$        D$83$D$   D$,2$    8t${芞$袠t$D$?3D$   D$D$D$褞$   ,  D$   D$2댉4$蘟$      D$   D$K3$    蚟T$趠v '    UWVS|  $   $   E    p XP,H09Ή    ǅǅǅ    ǅ    $˞$轞EзEi   $cEE衐H P9C  0  ǅ    E$#I  EMPT$$/     ]A;C1  C$90 CE]$?  C]苅SC;Bi  S$зT$D$VA  MPA	ЈAEX;ms  = +  E   9r9D$    D$    $з@  tp	   x,t  D$D$$з@  tp	   ,      iз   D$ԷD$E$uiз   EE+Ei9O  E$B  Է$[EзEԷEط|  [^_]9/t& ǅ   ǅ   ǅǅǅ    ǅ    ǅ    ؉L$M<$   9  E<$;   |$<$5}<$ڛ;  |$$9r  9      9v=99r9v s먋9{r9 K9{~w9CmSKH9&    9(v Y$|$f?ED$$I   $裙$U}쉅)   $n$ \$D$x2$   D$+EiD$)̬3   މ׉g̬    XAS$T$MGPE$D$*/]C$* CE]$B:  C]苅SCQ$T$ʚwCW	ЈCD$   D$2$    |$t$\$D$   D$D$蝖$   %  USE]D$   D$E\$$蔘9[]Ív '    U(EUD$   D$   $EED$NɃÍ&    UVS e   E1]@$L$\$P$t$D$   D$   $Ue3   u [^]!t& UVS Ue   E1]u@$\$D$    P0t$D$   D$   $zUe3   u [^]詗    '    U(u]$C|    tW@tbD$   D$3$    t$\$D$   D$D$諔$   3  v ]1u]Ít& ]   u]Ð$_p        U]]uu)t1҃t0]Ћu]f\$E$1ҋ]u]ËEډ1ҋ]u]
UWVS\Ee
   M1D$nE$联E   5ܲ  F  =ܲE    E    E    t  ;  ;       u]MD$T$$u"D$ET$$t)E$$     f(t0또t& MCD$$)u=ܲt
G  ;t7MD$y $7  D$E$    t]1ۍufPt$$L$R<ED$   D$   4$D$J   9wԷ;طE  M   u*  t&    @      GMEGpP $T$D$7u6E\$t$$ uWuMEL$$tM$n$         GD$G D$ D$$4$   D$`EU1ɋE#뛡UEgmon]Ћ@T$$   D$    P0MD$   D$   $L$ڒ   utMEL$$4Ee3     \[^_]71   0E   M9
ط*E$衑럍v MEL$$.jMEL$$(  JEt$D$   D$E$9LZ&    D$   D$T4$    ڐt$\$D$   D$D$i$     ؑ        USE]D$   D$E\$$蔒9[]Ív '    U(]]u։D$e   U1D$   D$   $C   tЋUe3   u&]u]Ðt& @$PV1҉t& U(e   E1E]]uuD$   D$D$   $   tЋUe3   u ]u]f@$P(1҉蓐&    U$	   t1҅ɉÐ&    US$]t1҃tJ$[]ÍED$E$t
$   []t9E1C    $[]ËEUauXUES1҉듋ES$1[]fUWVS   Ee   U1҉xxo:uo:B~  xD$}$贍|8  |]D$   D$   $T$!   5ܲ]       |   D$    D$    $  |ED$$guED$|$N   D$   D$4$    VxD$   T$D$D$$   k	  FD$   D$T4$    t$D$D\$D$   $苋$   	  v H||ED$$-EЉD$|$}y ]  =ܲf  E   tE   tE    E|D$    D$$V0    U
E31	uU
E31	  D$   D$`5bW7   E܋R$R(ƣ  E    1E    ]׋|D$   D$   $D$x%  E<   rb<   D$   D$4$    xt$\$T$D$DD$   $虉$   !  x|E
D$$m#  :x|
D$$֡W7   D$   D$4$    UxT$Nx|E
D$$跗1ۉE  
t_1|UD$   D$   $D$k  4    5UՋ@$P4É9=w1u|t$$Tu/|ED$$;u  \  |$y  E     uEe3   L  Ĝ   [^_]ËD$   D$7$    x\$$   T$D$Ƈ}  D$   D$r7$    蠈UD$$   T$艇&  D$   D$7$    d|$D$$   P}  D$   D$87$    *UD$$   T$ج    E;EE5E=5E
=E
t꣰ȉ̷t+Uȷ@U  ux%;̷w;ȷD$   D$T6$    xT$x$谆$     ẺD$|$j]@  EU\$D$ET$Uĉ$T$脜D$   D$7$    _0D$   D$7$    >D$   D$\7$    x|ẺD$$'  ẸqE    E(   tfttL$t$D$5D$$   葄D$5$   D$D$kȷD$5$   D$D$EUD$$6$   T$D$!E\$D$6$   D$ED$J|U]D$   D$4  u   D$   D$6$    耄D$   D$D$E    15D$   D$6$    3W\$T$t$E;.D$   D$(5    $蜅D$    T$$*UE$;
U(D$   ]u։}D$7$    g\$D$   <$D$t4$&    D$   D$<$     D$:D$   <$D$贁뷍    L$qUW1VSQD$<$<萂$<dF $FD$4$G D$    D$@D$;FD$$蚂  AVw
$>    D   Pt(D$/   $C$	  D$   $4  
iD$   P$4  D$   P$4  :D$   P$4  D$    P$4  в   P>  D$   $f4  
P  D$/   $e[  D$   $!4  
Pπ   
   lĲ   ]P  D$   $3  
1̲   "Ԭ    D$   P$3  PȬ   $a  (  $h  Ȭ    D$    D$
   D$    P$ĬĬ   t\   e    VЬ    GP$D$)"  -PD  D$	   $2  
Բ   PtD$   $c2  
D$    D$
   D$    P$~    D$   D$=$    D$(=$   D$}D$   D$:$    ~$   D$}D$   D$,;$    ~$   D$}$    Ȳ   D$    D$
   D$    P$D$   P$(1  PtD$   $
1  
t
@@ePE <b  |  <4  <a   D$   D$<$    }\$UD$   T$D$D$I|$   P  D$    D$
   D$    $|	T$D$<$   .|D$   P$/  l
]D$   P$/  Cز   4L1/
  D$   P$/  PtD$
   $m/  
%   =     t
в   $;=i{tD$$  @9}F@9~F@tT1ۍ    $D$   .  D$   $.  D$   $.  u$Ȳs  в[  )  =ܲu  t& F@$@;|Ջ
B@u.p  t
   t
!=      1   t
  t
  fttĲg     ttĲM     x   @ub= y菬1Y[^_]a${   $F=5Ív     }~t& 軂c    K  '   9%<m   <pܲ   %%%Tܲ   ~$轴$谴D$    $+  D$   $+  ܲ   +ܲ   ܲ    
D$   D$0<$    x\$D$   D$D$!w$   D$   D$;볋P5D$   D$x;$    %x\$t$D$   D$D$v$   HzD$   D$<CD$   D$d<(US$]E    E   E    E    D$    \$$    v\$D$    $    vE~@B Ѓ$[]$   u$[]ÐUWVS   ȷ̷+RP,$  1R=Է]EP,$;=ط4  t   ]Eu$	 EEU1RP,$   ]Eu$ 9Uw-r9Ev s#@   t1         9=ط   Ot]Ӊ+5   艏   VS,$UȉM̉E*`,`,DfEUED$8@$   D$T$t
t9  E    E   }܃]E;  }ܡ]<t֋E1R5P,$$ݝh E]Uu1҃EERP,$݅h$f E]Uu1RW,$@]  }E;=з<i   5ԷE]   9U    E   `dw	9EiM   }܉Mԋd9Mw   `9]rxv 9=з5Է]ԉ]󋓴   ]   ]    `Od]M؁   9U]\w	9EQ}ؐld`|]9dxr%  M9`  ;Uw+  ;Et&   x|)Ӊȉ	@
  RQ,$  ]EM5U2t2$\$t$]  <  EԷE܀   ݘ   EU|$D$l@$   UD$ED$q@t\$D$@$   tqļ   [^_]ËM];Ux|EU`,:RQ,$   ]]EMD$d\$CݝhD$`D$D$@$   D$p5Է݅ht*E-p`,d`,c\$t$$  ut    '    UWVS   =جe   E1  ج    5Ĳ        ^  Ԭ  з$rзۉxt*5Է11ɍ&    x1   9u狅xD$@(D$   \$$o
Ĳ  ǅ|   |}D$   D$BR4C$    Bp\$t$D$@   D$   <$D$qĲ  }D$   D$l.E$    fEm]m]o$   ۉ\$D$nٞvdD$   D$B$    ]ݝhoD$$   E\$4(݅hD$\$On  D$   D$B$     oD$   D$C$    oD$   D$C$    nD$   D$	C$    nt$\$D$ *|$D$*D$D$CD$0A$   mD$   D$-$    nnD$   D$I$    PnD$   D$%-$    2nUt$ T$T$\$D$D$D$D$`A$   lз  1/C ut݃   ٞzgue؃9=зN  xp$\$t$)    |RCxЬu݃   Ĳ"    
4(D$C$   \$\$\$ݝXkK ݅X"  1݃   RQ,$݃   ÉL$D$=C$   \$\$k5Ĳ  $h"  $
   k9=зx$KlԬt
Ĳ5  }e3=        [^_]   
4(D$+C$   \$\$\$ݝXjK ݅XD$*D$*D$*D$QC$   j5Ĳ$  \$t$$  #<=CD$   D$A$    ]kD$$   E\$D$i5з  11t& ىσ9t8xA t݁   1܁   RP,$w؃9uȅ   W    ٞ   1ǅ|    B&ٞ   ||   ݂Cs֡L$u9  D$   D$B$    i$   D$hL$79  ǅ|    4D$   D$B$    i$   D$h$"(j>D$   D$B$    Di$   D$4h      ?Fjv '    UEE݂   ܡ   v]   w
A 9B ws]ËBEAE]!kt& U8]]uu}D$    $u$D$T$t4$,h$   t& $D$T$uɡ$D$0u$D$uD$   D$$uD$   D$$c1tYPED$$L$R<E\$D$   D$   $Wh
9=w]u}]Ív '    Ux}}E؉uu]D$<$uEЉD$<$tUD$   D$\'$    ft$\$D$   D$D$~e$       ED$<$uED$<$uD$   D$<$eD$   D$<$EuVU܋E؋]ԋMЉE
E
ȷ̷@uOU܋
E31	uUԋ
E31	   D$   D$4BED$A$   D$EЉD$E؉D$rdD$A$   D$D$D$CdȷD$B$   D$D$d.U;SE;Dw     E    E]9   E|$D$   D$   $f   M̍U@M
Mȉ$P4MÉ@t]ġUE    D$E̋\$D$    EEЋM+EU܉]]eL$$\$T$M  ]D$fC$   E؉\$D$b]u}]Ë=D$   D$dB$    cỦ\$t$|$T$D$   D$D$2b$       $eD$    T$$bSUWVSL$  EUD$   Ee   U1ҋB4$D$cB8/1! u~fD$}4$,b     CD$   D$4$OcD$   D$RD4$Gb   D$   |$4$+b tt$BD$$D$   D$aZ  fG`8  B$aǅ    Ue3     L$  [^_]Í    D$   B4$D$aO
 Lɉ        جJ  ج    ZD$   D$wD$    +a\$D$   D$$_E   $bǅ   *+
$D$b9u4D$    D$   $T$b0  1ۅtT$UD$T$$T$$d^P5XD$   D$TD$    
`\$t$D$   D$D$^ǅ    ZD$/   $t_tXD$   \$4$y`D$   D$oD4$q_D$n4$_   9LT$>_fD$/   B$^D$   D$   $tDD$_$
   T$`c_4$    ^    UWVS5}u06t*^D$/   $+^tX\$<$`uЃ[^_]Í&    '    UVSuu"tC4$D$`u[^]$   _     @    @    @    @    @    4$  C؉[^]ÐUWVSEEEUZtm}D$:   <$\EtX)F$
_t$|$Í@$]UD3     BuEUEZut& [^_]É<$l]렐Ut$u|$}$^W9rv)   
fr9s"$Ћt$|$]Ít& 9w9vNG8t
)FG)믍t& UWVS,UM]   RE܉U=  EE    E       E؉UU؃}]Ui   uU;^wr+;r'};      ss;^|   1,[^_]ÉE؋}9}uEU썴   9^w   ;^wr;Nwft}܋ED$D$   |$D$hZ;   rEs3ExE܋UD$D$   D$T$$ZQ;NF9    6`E    E5fUWVS<EU]E؉U܉D$DD$DD$   $cYSU      EUE    uuEt$D$DUD$DD$   $T$YUi   ]<ËD$D$0ED$   D$D$XE;CwrXU;v rNE;Gr;vIuE9E_D1D$(   D$   $`ED$Z<[^_]Ðu뽋U;s<[^_]Ív '    UWVSLUuL[^_]Í    D$P4D$   D$B$WMuI;NM܋Q   }܉Ӄ WEEUU11	U  uE9Fs$Ɓ   FFuEUEUFVWG	t;Ww
rM;rI&    D$   |$E܉$YOE   UMM   9yvM]TMM   ]9yw]t]܁   CC      EU܋]HP)ʉUi¿  11ېEڃ   PBD$BD$D$E$   D$VU92wL[^_]WUڃU   M܁   MQӃ]w       ]SЃ<Eۃ Fɋpet}҃ F}\$L$tt$T$D$GD$E$   D$VD$F$   D$UD$   |$Uԉ$-W5u܁   uVЃ8EۈE     e}wۃ F}Ƀt҃ F}\$L$tt$T$D$MԋAD$E$   D$<UD$F$   D$"UzMڃuNЃ8O__tuԋF8_Y-{_#MԋAx_2Ѓ'몋
A,AQ0Q C  SBuU+VD$Eiҿ$   )ЉD$\Tt& '    US]D$   D$    $Tݓ   ݓ   ݓ   ݓ   ݛ   []ÐU(uƉ-   9F}ω]Ut
Mu7Et_}i   GWDTE]}Fu]Ëi   _ED$   T$$TEF   ^딍t& '    UWVSu}^;^sDW;Sr/w;r);S    wr;CwE$D$xlut&    9^w1[^_]Ã   [^_]Í&    '    U(uƉ]}׉$uD$:   4$aSto9  r(CSt @u(W]u}]É4$GuGD$    D$
   D$    $RG붍v tD$.   4$5Rt4$mGuG @uwkD$    D$
   D$    4$dRGCUHt	;Jt1ËHt;JuH   t0R=̬ uD$$TɅ1:_ݐUWVSl5  U  t& D$/   F$IQt$  @I F   FV4   F0;|tPT$D$2F$   PF,   D$D$6J$   PFtP8  ;|tPT$D$1F$   P4    D$D$6J$   bP$
   P6tU1M 2M 3M 4M 5M 6M 7M 8M 9M :M ;M <M =M >M ?M @M AM BM CM DM EM FM GM HM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 FD$F$   D$(PF4  D$D$k$    PB5Է;5ط   =tt
Cu9tcCtKC$    ICtǍ$  t  $    uu   95طv=psBps3ti   $Qi       CЉCpr͡  5Է;5ط   =tvfKu9tcCtKC$   IKtǍ$  t  $   vu   95طt҉U<  EP  p  t& U싚         UKBSɋ GUċSECỦEE)  CE;|t@EԋVFU܋VE؋UVE   F;|txEL$T$|$D$(ED$F$   D$$EȉD$ EԉD$E؉D$ED$MM\$D$    4$t      U҉U=psXþ G$Nps9tD$6F$   D$Lź;|
;|l[^_]Ë<  u"$*   L$$*   LD$D$k$   ]Li   $Ni       У''    UVSu4$iM!  $ND$   D$    É$BL   t$C$}MEC[^]ÐUWVS<  }e   E1ǅ    _  Ĳ  1\$D$6J$   VK$Lв҉   G   XԲ  D$G\$D$PGD$   D$D$   $M\$D$6J$   Jً! t      ҃)ft4$K   unUe3   B  <  [^_]À;_   
ȬD$   1;.$[O  ;.   4(܏   D$eG$   \$Ii&       D$_G$   D$I6 ҃)t& { C?5̬1*D$/   $JCX;$J$K .Í@t$$J4$JMKUuu]4$Y   u_   t"   u"D$D$G$   H]u]ÉD$D$zG$   H]u]Í&    D$   D$nG$    I\$$   D$lHlUWVSLEU]uEȡU̅  
9wg  9_  EEȉUċỦEEĉU9      ;u   r;]荴&       ؉ EU]؉u"fEU UEEU 3U3E	tv]+X;u7  PC$R(É]u;5r   ;   {$WJIjL[^_]fwU9UEUEUU\$T$UBD$G$   D$FӉf;5lr;^\$t$$з@ WEЋEЉUԋU11	#u<ED$    |$$mUD$G$   T$FGUD$G$   D$T$E렐UWVSLUE]uUċ0E5     ޡ9wQ  9I  ]ċM]9ӉM      ƃ ;U   r	;u     M؉]܉EU䡔H+B$Q(%   =   h   =   =  EU E؋U܃EU 9Uwr9EwL[^_]w9t& 0EU*EXD$   D$$H$    qEUt$\$$   T$D$RDƉ&    %   = @  tmtAһ*
  D$   D$DH$    D\$t$$   D$CUD$    D$ $Hkv =   t& _  1ҋ]%    MЋMMЉU]ԋ];      U;   rM;
   EЋU$зD$T$  SEȋEȉŰU3U3E	tEЋUԋM̃3E1	u=
  UD$    \$$IjE;Lt& $WJE$ 6D$   D$G$    fC      ? 0{D$   D$G$    "Ct$$   D$BlG UЉD$CT$D$H$   D$A$
   BUw$lJ@ɸ|ɸoHɸwHɸHɸHɸHɸHɸHɸHɸIɸ)Iɸ|IɸIɸiIɸsIɸHɸ IɸDIɸRIɸIɸIÍ    U w$J@1ɸ   ɸ   ɸ   fɸ   1   1   1   1   1	   1
   1   1   U$Ét$1w$ KC?߸   $t$]ø         ݍ    UWVS\UE]uUċ E      9w   9   
EUUĉME9ʉUsSui9ur=w9]v6ދ+X;      1;}rw;urf\[^_]wU9АvEUEUtUM\$T$AD$G$   D$>iÉ5f    $@Z      ?,@&      CEXEC  EÉEЉ؉]3e           
    EU      DD$   D$   $TKD$?11;E؉U   w;   M;
wzrE;wmU؋M$зT$L$+  U܋E3S3	u5D$    \$E$dEEЉ
$MJt?   1t$D$I$   <\ED$I$   D$<D$I$   D$<WD$    D$@<@$P8 @$P, UBpMD$J$   L$<CD$)J$   D$;D$9J$   D$;Uw$K:ɸ|ɸoHɸwHɸHɸHɸHɸHɸHɸHɸIɸ)Iɸ|IɸIɸiIɸsIɸHɸ IɸDIɸRIɸIɸIÍ    U w$K':1ɸ   ɸ   ɸ   fɸ   1   1   1   1   1	   1
   1   1   U$Ét$1w$ LS9߸   $t$]ø         ݍ    UWVS\UE]uUċ@E      9w   9   
EUUĉME9ʉUsSui9ur=w9]v6ދ+X;      1;}rw;urf\[^_]wU9АvEUEUtUM\$T$AD$G$   D$8iÉ5f@   $`j0    4  ?L`&      CEXEC  EÉEЉ؉]3e           
    EU      DD$   D$   $TKD$911;E؉U   w;   M;
wzrE;wmU؋M$зT$L$+  U܋E3S3	u5D$    \$E$^EEЉ
$MJ9   1t$D$tK$   6\ED$I$   D$6D$I$   D$6WD$    D$`<@$P8 @$P, UBpMD$J$   L$6CD$)J$   D$ 6D$9J$   D$5UWVS<u}M]  9w  9  ]9UMW  h  ƃ ;U&  r	;u   E؉   U܉EU䡔H+B$Q(      O  1%?E    UԋUMEUԋU;rS  U;wB'  EЋU$зD$T$+  UԋE3S3	,     EU E؋U܃EU 9Ur	9E<[^_]fw	9EEUEUt$D$BD$$H$   D$3jv Ɖ7&    $WJ@6SE;7t$D$L$   3E; UЉD$CT$D$tL$   D$N3ED$    \$$ZUWVS<UE]uUԋ`EЅg     ޡ9w5  9-  ]ԋMС]9ӉM      ;}   t& r;us M]u؉}ܡPE+$R(%   =     ? 	  	  EU EU EU9Uwr9Ew<[^_]v w9KEUEEXD$   D$$H$    2Ut$\$$   T$D$1Ɖv `   $:D$   D$G$    j2P    T  ?l?    uUE؍    U܉ˉ%   		;=r
w^;5sV$WJc3D$   D$L$    1U$   T$D$0s;=wfr;5wt$|$$з   S11	b   MD$    \$$Wu ED$    D$$WD$   D$L$    0]$   \$D$/뫋 D$Ct$D$H$   D$/>$
   /t& FUS]$
   \$1\$D$;   D$   $L21\$D$*   D$   $ M1\$$
   b1\$D$<   D$   $LM0\$D$;   D$   $M0\$$
   1\$D$7   D$   $M0\$D$<   D$   $ Nr0\$D$   D$   $PR0\$$
   0\$D$=   D$   $@N"0\$D$2   D$   $N0\$D$   D$   $Q/\$D$<   D$   $N/\$D$<   D$   $N/\$D$   D$   $Q/\$$
   /\$D$<   D$   $4OR/\$D$;   D$   $tO2/\$D$&   D$   $O/\$$
   b/\$D$=   D$   $O.\$D$=   D$   $P.\$D$7   D$   $XP.\$D$5   D$   $P.\$D$0   D$   $Pb.[]US]$
   \$.\$$
   .\$$
   .\$D$   D$   $"Q.\$D$<   D$   $R-\$D$   D$   $7Q-\$$
   .\$D$   D$   $TQ-\$$
   -\$D$6   D$   $Rb-\$D$9   D$   $SB-\$$
   -\$D$:   D$   $DS-\$D$1   D$   $S,\$D$   D$   $qQ,\$$
   "-\$D$7   D$   $S,\$D$   D$   $Q,\$$
   ,\$D$   D$   $QR,\$D$<   D$   $S2,\$D$4   D$   $,T,\$$
   b,\$D$=   D$   $dT+\$D$!   D$   $T+\$$
   ,\$D$9   D$   $T+\$D$   D$   $Qr+\$$
   +\$D$:   D$   $UB+\$D$-   D$   $@U"+\$$
   r+\$D$6   D$   $R*\$D$-   D$   $pU*\$$
   "+\$$
   +\$$
   +\$D$   D$   $Q*\$$
   *\$D$=   D$   $UR*\$D$2   D$   $U2*\$$
   *\$D$
   D$   $Q*\$D$3   D$   $V)\$D$:   D$   $HV)\$D$   D$   $Q)\$$
   )\$D$9   D$   $Vr)\$D$5   D$   $VR)\$D$;   D$   $V2)\$D$   D$   $Q)\$$
   b)\$D$:   D$   $4W(\$D$:   D$   $pW(\$D$$   D$   $W(\$$
   (\$D$=   D$   $Wr(\$D$2   D$   $XR(\$$
   (\$D$5   D$   $HX"(\$D$-   D$   $X(\$$
   R(\$$
   B(\$$
   2(\$D$   D$   $R'\$$
   (\$D$:   D$   $X'\$D$9   D$   $Xb'\$$
   '\$D$   D$   $4R2'\$D$=   D$   $(Y'\$D$4   D$   $hY&\$D$   D$   $AR&\$$
   "'\$D$;   D$   $Y&\$D$2   D$   $Y&\$D$/   D$   $Zb&\$$
   &\$D$:   D$   $@Z2&\$D$5   D$   $|Z&\$D$    D$   $Z%\$$
   B&\$D$;   D$   $Z%\$D$)   D$   $[%\$$
   %\$D$=   D$   $@[r%\$D$$   D$   $[R%\$$
   %\$$
   %\$$
   %\$D$5   D$   $[%\$D$;   D$   $[$\$D$:   D$   $\$\$D$;   D$   $X\$\$D$=   D$   $\$\$D$   D$   $VRb$\$$
   $\$D$<   D$   $\2$\$D$    D$   $]$\$$
   b$\$$
   R$\$$
   B$\$D$   D$   $sR#\$D$7   D$   $8]#\$D$;   D$   $p]#\$D$<   D$   $]b#\$D$4   D$   $]B#\$D$   D$   $tD"#[]US]$
   \$b#\$D$F   D$   $$^"\$D$C   D$   $l^"\$$
   #\$D$H   D$   $^"\$D$B   D$   $^r"\$D$B   D$   $@_R"\$D$<   D$   $_2"\$D$   D$   $vk"\$D$?   D$   $_!\$D$(   D$   $`!\$D$=   D$   $0`!\$D$;   D$   $p`!\$$
   !\$D$F   D$   $`b!\$D$7   D$   $`B!\$D$<   D$   $,a"!\$D$)   D$   $la!\$$
   R!\$D$C   D$   $a \$$
   "!\$D$D   D$   $a \$D$   D$   $k \$$
    \$D$A   D$   $$bR \$D$8   D$   $hb2 \$D$8   D$   $b \$D$+   D$   $b\$$
   B \$D$A   D$   $c\$D$6   D$   $Pc\$D$1   D$   $c\$D$(   D$   $cb\$$
   \$$
   \$D$E   D$   $c"\$$
   r\$D$B   D$   $0d\$D$&   D$   $td\$$
   "\$D$B   D$   $d\$D$,   D$   $d\$$
   \$D$?   D$   $eR\$D$6   D$   $Pe2\$D$7   D$   $e\$D$(   D$   $e\$$
   B\$D$>   D$   $e\$D$2   D$   $,f\$D$9   D$   $`f\$D$!   D$   $fb\$$
   \$D$?   D$   $f2\$D$C   D$   $ g\$D$   D$   $k\$$
   B\$D$F   D$   $Dg\$$
   \$D$B   D$   $0d\$D$$   D$   $gr\$$
   \$D$F   D$   $gB\$D$$   D$   $g"\$$
   r\$D$<   D$   $$h\$D$5   D$   $dh\$D$4   D$   $h\$D$&   D$   $h\$$
   \$D$<   D$   $hb\$D$1   D$   $<iB\$D$1   D$   $pi"\$D$)   D$   $i\$$
   R\$D$B   D$   $i\$D$B   D$   $j\$D$@   D$   $Xj\$D$G   D$   $jr\$D$H   D$   $jR\$D$E   D$   $0k2\$D$   D$   $k\$$
   b[]U\  :3 E]  Í&    U1ɉWVS0\  3 E>Bu#Ogfff)9u=TЋM1>Auy
t& [^_]ÉMAu֍    U$t$[  Z2 _tB<	w"PЍAAQPu$Ћt$]É8_uރ܍v '    USMg[  1 PuPt9ʍv u[][1]Ív '    UWV1S[  Ó1 EUGtKuPЋEAAGt)v qQTBЉGEu<_t   [^_]ËuAM   [^_]
U]@    @         Í&    U]PÍ    U}ǋ].Z  ë0 uu9s9w#2t$$]u}]Ív 
ٍ        U]uƋ Y  K0 t$F    F        ]u]Ít& '    UWVSY  0 G ~)pGw t$G    G ׃[^_]fUWVS6Y  ó/ Gt$bG    G$    W@t:GD~YW@1t& t$-W@9wD$G@    GLtGL$GL    [^_]ËW@ƍ        UWVSX  / G~)pGwt$G    G׋W&    G~&pwt$pGW    څt$SGt$D[^_]UVƃ^]F    U]}ǉuW  8. tCp@)9|]u}]Ðt& )Ήu42t$$E7GwɃ        ~Љ։$\ƉGw뢍t& UWVS1W  î- ɉUu[^_]ÉBN9r9v 9v|$U$T$~[^_]ÐUVƋJ9t)^]tt& ^]Í    '    U]V  - ҉u։}t: u
]u}]É$ ]u}]
    '    U(]5V  ò, ɉuΉ}ǉUt DGUt$$T$w]u}]Í&    '    U(}׉]uEGU  B, 9t,ƋE)։EPt$$D$>Ep]u}]
U(]eU  + ҉}׉uEt: u
]u}]É$ƉEWUBt$|$$Ep'    UX]T  r+ uuω}e   E1T$D$!   WD$D$   4$7Ee3   u
]u}]y  '    UWVS UnT  * -tZ+tN1ɋGt0t& E    Guٹ   [^_]Ã뫋E  ƃ  -~돍&    U(]S  R* EAUu}ω$|$ƋE4$D$JE> PE4]u}]ÐU]uPmS  ) 9P|#t<F    D$F$FFPVV    ]u]@   $   Fˍ&    U(]}ǉuUPR  d) 9PM|&trG    D$G$RGv E$ƋE4$D$ED$6EW G4]Gu}]Í&    @   $   YG또&    U(]}ǉuMHH'R  ä( UuDP$9P }OE$
ƋE4$D$ED$EW G 4G ]u}]Í    t!G$    D$G$<G@$   $   GqUWVSxQ  ' LEUqD$T   ED$U$
MA$  MA ~}E    EUEBM$
UMJMEĉ$UMAMMAMMĉ$D$L$m
UEE9B MA6  MA~zE    v EUEBM$/
UMJpMȉ4$hUȋMAMMAM$t$D$UEE9BMA  MA~xE    EUEBM$UMJxM̉<$
ŰMAMMAM$|$D$KUEE9BMADuSMqL   $   x
UBLMQLMALL[^_]i$J
UB$4
MUyDB@~E    E؋UE܋B@M܋$UMJ@MЉEԉ$UЋMA@M܋MA@M܋Mԉ$D$L$UUEE9BDMqLL[^_]$UB\$oUB&    UWVSHN  $ E$
TeE    UE荃PEEEE}Ot<U24$
;Eu܋UB9Eu΋E}9uU[^_]Ã1[^_]Í&    USM  $$ w$v []Í{򍃁ꍃj⍃ڍ[ҍaʍfUS7M  ô# Vt)utC   tt&    []Ív    []Ív U/
UWVSl}L  =# MEE)cE   UB  GE@t
X  U <    UUu}v)u}  u>_   l[^_]À?ou݀puGD$  $xt	  EPE    UăEt& EE}OtEċ EЉ$~9Eu݋uUM9uЉuŋEMEu؍vTE
@t& ~_1}uWo  AuFA~   PE    }EE}OE Ẻ$uًu̹   }uɋEES}TE>tu   ׋6u   u   E@,E)u   UBD$  $EEEuU  EE}E&    E@(Eql[^_]É$1ɉ
-  3pNvaUu~ HPE    }EE}O$E E$uًu   }uɋEEU܍RTE   uPEE    }ȃ

uEt& EE}OyUȋUԉ$Z9Euًu}M9uuƋE.E URTEEk&    UWVS   }E*H  ç UMwEE     &  U <  %  TD$4$?  E艅x]UxU|$D$T   D$    ZU|E        <$MUEMUE8  EueUEExE[E|u$t& t<_u~_Ft_u> ~u|xEČ   [^_]É<$EMUE   EČ   [^_]À>_t룍v F8_t> ~딐&    U   ]u}E@(UMUuEȋE}R,v8I0HF   ỦuԉMG,    G(    G8    G<    u*1UMȋű}ЉJ(Mԉr,z0J8]u}]À8 tэEEl     UU$~E  }
+  M 8    UD$_   $    x_Pu߉E܀z_u#1|_t~M܍DE   uF0   E9E-  u܃Ut	>p   t<t  <p*  U9UL  > v t.}܍UME<$EċEą   MM~t& Ex(  x,E       }<  EMEą  E   $/ES}܋PutuE   }? J  Ex(  My,uEvuF,    rMU:/  Euu롋u   E   i  EUEB<   EUE1U$R E   EEE;u   UBD$  $M :A
A	<D  <IEUMEE@(   F.    UUVv MUER4  Eu      EUEB,   E	E<G<    E1fgEUB(    u   E   su   EUEB(   EiHƋPuQtttKt	HMt   <u}G(uu]PtM <     u܀>_uEM܀9_tu܍TD$4$x $MUEEQM܀ytu4$}EU<$]$  EEU܀zmu4$ȋMA<st<tލEuUE=u4$^EEHu    EE8 tjEEE8_u߀x_uكEыEE   EuȋMEUF,   S+  uˋ}}gEE8 t]EPiEE؉$9SEUEE8_ux_uEE뛋EUE   U5t& '    UWVSh?      u?y  UUD$T   D$    $fu  E A    Ev  f} I  u   E    E    ME    8uEE   }<_D  <<a  SD$<$Q  UMUMxXB  }<$)$   UHE?<   ED$D$   D$WD$E$_uĜ   [^_]Ív %  	ƉuE A  ED$M$    Ĝ   [^_]ËE$C  Ĝ   [Ɖ^_]Ít& UE%ƋEĜ   [^_]Ëu4$Ä  uĜ   [^_]ÍEUEU|$E$X$MuMu+}E   uEuL?E$   UM|D9Ftq  UF  EDt(trtFxd  uЋ|:$  1҅~QM1ǅt    pxt   u1Fu|E9u݉ʋE utJ<G  u(|t& <G e YQuًU1tWU)EȀ8_t+tE0t9~89MҋEՋU|
_uˋtE0.tE   ċt<$:_f|<_yE   E@E   f`UMUWVSlEue   E1M:  * 
Y  tF  n    Ff      Ue3     l[^_]ÀEu  Q   K   _r  mE     qE   E}  EuD$    D$   4$D$XD$
EW}	`  uH8_=   3Q|  MED$   $    	  	m  E   \~ME΋EUι   E E   \   lu     1v Eu  mt&   
Ft!E   {PHFu߀.E  8e)          E3P@FuEfE   'E   d   lE    E   iE    U   jME$   0  Qzm   E    E   EE   ^<   
ME$   .0        EP@FuE'   2E   'E   E   'E    資  Bt>UB@t;rD}/t#UB@   E   
E$fUUT$ED$E$UE UD$E$EtNMt&UEU$EE$:UEnE   cE   u띍v UWVS\UMME5   BE   zz  EEa  }E?}Љ<$
9EE  E tk     MUЋEE    EtEMEUEEąu2"EUt
EE    EHEU  E  E  E    }   v UuE0  Eu   M}_  U$UEjEn  EG  EM9M   EtUZ  zl}ME  Et[)~U$r9EK4EEUEz  EEM89MaEąG  }Gx>  EEtLEtEEǋEp<$)9ƋE   !+E\[^_]E    E\[^_]Íu؉rOUu)ȉM̃r@$MA@MM̋$L$D$CUMB@Ű EJMU}}E  E  E^Et
EOUEMu)ЉEȃq@$}MG@}ȋ|$E$D$UMB@8 뛋E$M}A@MɉOD2  1    9u	B}G@t	;wDnEv]UB@gEMlMA@EVEdUGur@$MA@MM$|$D$UMB@8 7UA5K->E   |Et& E    t& t& '    UWVSX0   \MEUMɉEtEE   @(tdt& MȉME؉EU8K.  P@<1}E    Eȃ\[^_]<9~)<_uEEăuWҐP,U땐t& EEE D$    D$
   D$    $rMx_Y  EUă EE   
  EU8_  t  K  E@   EzE  $UMЉǋL$<$D$E U<$D$a8  EM4$<$UM
EU)9!EmEą~+E uEEąt& EU)9!Ẻ$EKEt4MuEE@,  UEEk  U;BtMuEOUEEEEȃ\[^_]ËEMUEC  E(UEt&    D$    D$   M$MUE|E|fU   M;A   AElUȅK|M;AAE+E    #EMЋE?UEEw\E    t& '    UWV   S1,  î U   Ee   E1ЉM|EE    E   E    EA<4w(&    E   1M҉tJuB<vjE    C<2  AUĉG  Ew|l1Me3
   D	  Ĝ   [^_]E t0E;Et|K`|Iu"UA  uuۋME   AEA|UuEE   A|9QtE f  |	Pd  A<s  t  Q|ED$    $    {Eq|1}MuF<V8  <u0  <C(  AF*|EY  8_MogE;Et|K}|E\AE;Et- <*t<&u"|J|i|yX8_Z  |E$   E8_5  bAE;Et- <*t<&u"|||E#  _t9_0EMt& 9xw(z_C  1uuEpE;EtEKI|E|EK   AMU9Q A}EEAUĉ*MU9QAEQMED$   $    (AEP@t	;pDvfUB@  E<AM;At
KE
UA;BtEKE}AM;At
KE{E t,U;BtEKSE?C|
ƉE@U$N9+|U:EEuEE1  tLEU)9!E$EDU;BtEKE      q7QPAy_\  A1ɉEˉx$<_  x1$B uAM;At
KE   aAM;At
KE   -UA;BtEKEs   AM;At
KME?   UA;BtEKE
   AM;At
KE   [UA;BtEKE   &UA;BtEKzEl   UA;BtEKEE7   u#ED$   D$   $    ǋEbUA;BtEKE   IAM;At
KE   r  uwED$   D$   $    EZUM|)fEuK|*uD$   D$4$E U$      M
ED$D$4$#ED$%   D$   4$D$D$U;BtEKVEL   EuD
 sct& '    UWVSt     M쐍t& EEGPS8nu&GP~/	~͋8_u#뿋GLth3OLu,1[^_]ËWLGPtE   [^_]ËWLEU+M}   [^_]$   GL
UWVS<      UЉM  UЋU1UȉU_tXtTetONuhTtcF  MȉU'    Eȿ   (UЋ_uNPe  h        UЃɉ   E    8  t
~ 	  EЍU    <  tmE   ;F |   EĿ   v FP~8FUEtu5MčUtGtUċEN뱋EEyE̍t뻋EЍU61<[^_]E̍tfTUЋ8 PE̍8UЋ8E~EUȋEeE̍   mUЃouE̍OE̍ݍv '    U]uƉ}@H@L  Ã  FL    EFPFP    EOǋFLtFL$EnH]FLEFPu}]Í&    UWVS\2    ME@UMt	9XZ  M   uBU !     }
rMăy4   EMEUM
\[^_]ÍD$4$jt@EEEWtU9Eu:_uf   M   	MΉnEx	Na@:B
RD$  $5E?A4    #v D$4$  MGEȉM葾U9E:_BEEEME)׉Eăx4  EċUċ EЃESM;Mvv}J    <X  MUEZtQ;u  UEEE;Ev'Eu<LuFEUEuE]U;UwMiEUЋEĉD$<   4$ot	)9MMEUMME_Eăx4z  EċUċ ẼE4E輿M2<St~rTk  UujMBB<N=  <PC  <MuJEE UE]U t<_tEv<Aj  EEM8_   ŰEĉFUEEEHEǾE)E8LH.D$4$%D$4$  UMċB+A4s=E'UMPPAE    uUMPPAủ<UsE=`BU}EG$ME|$D$E$U: Mċ$D$tmE4$wUM:$gBUME    UMċB+A4MЋUĉ
EE딍4$D$	P@EEE6U9E':_Zv '    U]U    EЉu}׉M藹t$9~1]u}]Ív E$E^   ׍&    UWVS  c  ,E؉ȉUԍWEԍU蜺   E   E    E   DUԍuE؉IE   蕿莻EE9E~AtUԋZtHzuUԃEAEuE   Gx>t2蛿E,[^_]ËUԃ{xKi뿉뭍&    '    UWVS|UEe   E1    MU:_j  u      EU  EE   މt$$u4$D$D$2   D$   KE蕾E苾<$?U24$E   ƋE0Ue3   Es  |[^_]Ëu   ujU#B<iuiEUUB<Q  <t,  <K  MUE!EE{U8   t& E    \t& <fu썳3닍t& EUp  E$|$et
Uz_  _  v  	|$$,.EUD$$EUE<Q
  <t  <K   Et& ˵E E E$9E}
~ u   u
Uz	N2  UEMӻUEE   U;EE uEeU24$ǉEzE8MUED$   $    3E-EMUED$   $    EELsMUED$   D$   $    vEЋUE   E@,)Exv"xtx_EUEE   0   <Q  <ta  <K  ЋPs  EU2ǉ4$89j  EE%U:EU0T$4$Uip9`E uE蝺U2<EEqExt@UD$$(EUMUED$   $    'EMUED$   D$   $    E=`  MUED$   D$   $    xEE4$D$E4$D$gE   B:B
D$E$<EJUEU$T$
E'    UWVS    lUME   E    E    E    E    M1<  B<Ew   uE    El[^_]fUMsE   EUEt*t& ,  u+MU@E   E    EEc땉w8^M	ƅɉw8  EU E덍Mȍu܉MEn  UD$   D$   $UE    襷E;G,  G(t  G,v g  EEE   E       g  E\  UFuЉUEE;Et
K
E裵茲uEnE  UFuG0   ECMUD$    $   E
     "UEE    GU2<_uFuEMUD$    $   2E넋UF <  n  MUED !  tM8_  E   E   E    BUEЉEEuE艵UEEE    MtuMЉG4ML5MUEE{  EG(E  W4BvUЉUԋUE衳G,  o(U1M)9U!EEԉAEԋUЉ)9!E$=uEdUE)EU
)衷   E    #  EE    M8F  E      tMUD$    D$    $    G(EuE   UME`GMFFtՋAtƍVAtEu맋EEu   Y  Ew0'  O8U;BtEK5G8E#qgUE蘲o(G,t& Ew譱UEbo,8EU+ME:1E    6tE)诵E EM	MBuxEwo,NEE    EG#MUEUu܉%E{UEE   E    O        UWV   S#  à  ,Mй   E؋EЉUԍ軰EE     UԋU<W      M   U$yE    E荃PEEE}O   UU܉$B9EEr֋u9}uǋEй   KURTEװEЍK   EԋUE$MЋUԋEH Uԋ8Wu.EЍ   豯Eԃ ,[^_]E   1,[^_]Í        UWVS  5  xt%p
~tFD$E$Ju[^_]UWVSh       E$
UML 4D$T   D$    $EuE_  L'L  14Y   [^_]ÀouԋExpu@D$  $$tL	  LPǅd    phdpdOop04$;hu͋Uh9u}   <$ oper@ator@ d<$RTD$ t& u   UBD$  $*EuUE4ZM$CE oper@atorf@  UE}T$)ЉD$<$   jQt& ~_*}uOo   F}GF #  PǅX    xXxXOx0$euʋ0   }uE   $=E oper@ator@ XMRT$D$UpE4uU&E$;E oper@atorf@  UET$)ЋUD$$L   aEx Pǅ\    |\|\O|	P$+uʋP   }uu4$ oper@ator@ \4$   TD$U   ǅD   ,,:LP}ǅ`    t

l@`t`Ot T$9;luǋlT@9҉uE$E oper@ator@ `MRT$D$u4$ͼf0=    
$Ë$ÐUEUMt tt     PH   ]Ðt& ]1Í        UEUMt xt )   PH   ]Ðt& ]1Í        UUMttE   JB   ]]1Ðt& UUMttE   JB   ]]1Ðt& UVP1;P}R4    qBA^]Ð&    U]R  2u։}ωEwu,1]u}]ÅtEtU0xP֋Euˍ    U(]e  uΉ}U<t$ǋE<$D$G]u!}]ÐU4$։|$t    px4$|$]
UX  t:*wdRuv ]1]   Ðt& UttrwRҐu]1ËB]Ð&    UWVHE1E    ntEF<	wYE1HA|VЉʉEHrF<	v܋Ut߃^_]ËUJpE   F<	v1ύt& '    U҉Vu@Fht%vt^1]ÉDFF_uv )FF1^]_fUWVƃ@M ;uE<KuyF}҃F01ɉ$    MtMxF <r<VtFt}҃F0	빍    t}҃F0	1^_]
U4$Ɖ|$HAFTt14$|$]Ív y_u+A1FF(gt    x4$|$]ÉxFF_uy뺍        U@   8_t]ÃB]ÐU҉VtP ;P$}@A 4   ^]^1]Ðt& UWVSxU:  GFSt
1[^_]OGF_   A<	w\1TЅxʋFF_tA<	vڍA<wTѐt& ;V }FF([^_]ÍA<vFEuEtGC<vtP   9Ett׍8t9r$1뉋WҐt
OF,MtWON0[^_]sWOE   fUMVuE1PUH@    P6Pp$@     @(    @,    @0    ^]Ív U]%â  uƋ@$X]F    u]Ít& '    UWVS@]  tLwW9Uw=t& 9uGwv.Gt$$uG$G    G   [^_]
U(]uƉ}@X  Ut&F;Fw.FUF|$T$$Ѵ~]u}]Ðt& Fu܍&    '    U4$Ɖ|$@ׅtV;VsFF4$|$]É   FtVѐU   ]  ҉u}tptEtP҉tp2vt]u}]ËtۋptVstP  OtWB;Gm  t   hptV$stptFp@QD8';$  8'    #&      @uڍv tptrB    QtW  Gt|<  t;G  <GpPtGtQj  At|>  t;AI  >AtwQtpxp1   tMxuE    GUUO   `EwGvt@tlrB    A`QBv>  >   F|    nTL    lGB
lBBB    BBBtH@|B|J@| vpPt>  tOD(u싵tV  F;F   FT(t:  uxtGvpF18!  tA;AY  (AptWtPR  @;AD  )Ap?2    tV  F;F  [FptVbtWp  tA;A^  ]At@l  &    BuB0F  9[  u  ttHA;F  
 hidd@en a@lias@ for@ Ft& ptWttHA;F  
 refe@renc@e te@mpor@ary @for F뚋ttHA;F  
 guar@d va@riab@le ff@or@ FNttHA;FY  
 cova@rian@t re@turn@ thu@nk tf@o FttHA;F9  
 java@ Cla@ss ff@or@ FttHA;F  
 virt@ual @thun@k to@ FmtNA;F
  
 oper@atorFpwF a<w,tP  @;A   AwtxtPNX;P  NVtttHA;F
  
 non-@virt@ual @thun@k to@ F{ttHA;F<  
 type@info@ fn @for F9ttHA;F  
 type@info@ nam@e fof@r FpA8-pG8(  tB;B%  (BpAPt:tNtVB;Fa  t   8ptWD  tHtPtB;F$  t   pGPttP
  @;A
  )ApF8(@x@8>tW  G;G  )GytppOt1;G  pFL$$D$2FG/t   pGtqtM܉}E    BE܋BJE苅tWEu܋tw W  G;G   Gt  Hp  ttHA;Fa
  
 cons@truc@tion@ vta@ble @for FptWtHtPtB;Fu  t   ptWttHA
;FL  
 type@info@ for@ F
tNA;F  
 vtab@le ff@or@
 FettHA;F  
 VTT @for F1tG;G
  ~GpPtpA8/@80tF;F
  (FpGPtKtHtPtB;F
  t   CptWO  tHtPtB;F3
  t   pG@PttHtPtB;F
  t   pG@Pt[tP  @;A  )Atu܋pE    A}E܋AqEWUuotP	  @;A	   AptVtOtWB;G
  t   E܋tBtMtphRFl}҉UUNE    ES  B B  E   v G wfwuY};uEEQhAGBGBGBlG   lQtq?uptVMEtɉG}vmET(tS  }uዕttJpc  ptQpF]tOtWB;GI  t   tt 5  Hp\\wtN;G  \L$$D$ˣpB@GtRltu܋lpE    M܋pEGwEQ!E  uttHA	;FJ  
 oper@ator@ F	pt  ptQ t ~ppH9ΉMr.v 
tAB9}tQE)~	>_   ~ttH;Hrt봋pG8*  tS  tP;  @;A-  (AptVtWut)   UtNA	;F@  
 oper@ator@ F	ptW~_~~Ut& F9EEE    !HЃEE9EEMEA<	vҍA<  Hŋt<   qt>   lt(   Wt    B?p  et)   t   Mt	   et   Jut
   /Zt   ?t   t   8	t	   tpI\w\tN;G  F\L$$D$菟pB@Gt   %IttPX  @;AJ  .At    +t   It   t   t   _t   yt   z^tA;A!  (AptV  tWR  G;GF  )GNpM  t~   Xt(   C@pq^  _pG8LxB19@ <0  <1#tOA;Gu  
trueG`tP  @;A  -A8t)   ~Mt    ipw	t.   K^t)   6~XFL$$D$豜ptB@At    k-in-Fҍt& ct>zPttqGt5t]    Vt
t[   Y.f, GpPt@x@8>tA;Aw  (Atwt(   A<  Ht-   Pt(   f::Gf ::@*G8f) Ff (F;A6   AtWGO;G    GtPn@t    tMuBEJpG8 2  t;E   3U싍tQ6t(   _Hf (Ff) Fxt    + ) : @(Ft     _}   ҍv   tA;A  M}tFtA;As'-AGt(   z~t-   epGt   dttHA;Fw`
 fals@eFtPtX@;AsNuAtVtGF;Fs?lFit   ^/Ntu   9tl   $tOtWB;G   t   tOtWB;Gvmt   tHtPtB;FvXt   XbUt}f ul@lGSfulGDfllF5UWVƃ R:t ^_]Ë@UF    EFEEFGPVE҉FtFuS;Frp<   "GPeVt^Ft|>t^;FsK>FEF ^_]Ít& |<u;FsM FVtF<Ff>   ;Fs$ FVt܋F뇺    {믺    m؍t& '    U(]}ǉu=ú  :(UtU]u}]x@Et]EWpN;GvNV]u}]qFUL$$D$vUB@G]u}]ËEp믉'    U]u։}ǋ  "w]u}]ROtWB	;GH  	   f]u}]OtWB	;G  	   `ʋOtWB;G     맋W,  G;G    GVCu!W   G;G  *G]u}]ËW   G;G   &GЋOtWB;G      OtWB
;G   
   WtvGt|(t9Gvc GV>OtWB;G      &   ]u}]        v 떺*   č imag@inarf@y G
 comp@lex Gf ::@*G  conf@stG  vol@atil@eG	m  res@tric@tG	P&    UWVS>  ҉MuFmWv1FG   EGF#tN$t2t[EF?t)Nt"WuEtW믋   EF[^_]Ë!  EF[^_]ËFF    ERlEFuVNtVB;Fvm   mGPw
RvEF[^_]ËVtF;Fr.   .Ff::F뙍    UWVSaު  ɉUtȋP    u1ɉcVtF;Frx    (VtF;FrQ[   
EPtLVtF;Fr[]   ^_]]F[^_][F F눋@8$tMNtVB;Fv\   1ɉVt'F;Fs)F1ɉp#)   ?f (F몍&    '    UWVƃɉU  Aʅ  Bw?   G  ua  t*V7  FtaL(tx*uKq&    tBtF1ɉF    E       V   Ft| t!9F    VF   F;F   (FF1ɉF    E;V   F;F   )FV   F;Fsx(FEPtVtgF;Fs_)F   EF^_]ú    V8(   t<(   cv 끺)   Rf뛺)   BfAEHS&    U8E]  }}E؋EuE$XtrUu؉E܉E    E    E    E    U܅tE;Er$1҉U܅t E]Ћu}] EE1   ԍ        U]E¦  u}E1҅E~EU@EB1+E9E~MQ,]Ћu}]Í&    MEEAAt8$tK}	~3u   uMUA<.t'<_t#<$tt& UME"낃A뭀zNfuދU   B0+EB0E썓It& U(]}ǉuH:÷  B<	v7B<wCi  t8(u@@G0G0]u}]Ë]u}]B<v1ӋG,Et
 tqtiȃOCtdDuPG1   2   0uE   gƋED$U4$T$X|UBG0PHO2tA3tE1TE   ƋED$U4$T$!E   E   &    E   TE   H    UWVS,E؋@,  St5Z   N   E4U؉ƋB8I  ,[^_]Àxt  E1   ƋM؋A8IuЅ9  E     $EA,[Ɖ^_]Ëu؍PV1  NQV<E   1,[^_]ËM؍PE؉QU   XEtԋuE    V   G<   C   D   <S3  I   <T  EƋEt   4$MEoƉ<StM؋Q:Et3thE؋Pu:tVG<	cE띀ysf   E2ƋE4$E؉   TM1    EtEX     ?U؃B<   'ƋE   4$EM1҃A0Eغ   xQV?      $)1EuM܅1M<EQu@v E؉c1&    U]&    U]}ǉuHUg  <G   <T   tEtGtDG t'<Et#{r
     $!Ɖ]u}]ËvBvuߋVwRvV뿃G0AGTtGt&1뤍v QAGB<3wQAGR  V9  Au1҉   $    b<<$  
   $    ><$     $    <${  Ɖ3GG_<$M  
   G04$v   1҉   $    h1҉1҉}1҉   $    G!h   De1҉   $    <$o     $    <$K     $    o0
<$#  	   $    xo0<$     $    vP   $    S-e   $    0
'    U4$|$u}NAF_t
4$1|$]QAFZu|$4$]-    '    UWVS\  }e   E1    UM    4$|$D$ @  4$D$Eԍ@   )ċET$U̍   )čD$ED$   <$t:w
T1Ue3   u0e[^_]ËRϋRʋBU   ӋBU     v '    UEMU#EUEMU#EUWVSHP͛  QV<Lt1[^_]Ày_   4$  t܃8!   VE1   :ntvU1<Etu밄tN<Eu+MU\$UFFEl[^_]D$    4$̓VE2   x@P[@)F0P    '    UWVSO@,=ú  EO<It
1[^_]ÍUE    U><XtL<$   ƅtպ'   $    UtO9EtCE<Lu_뾃O^  ƋGHOEtr    AGE܉G,E[^_]É'    U(}}]u\ٙ  wrt
VtKu>1ɉUu1]u}]É<$U	tًE֍A<JwVWF<_  0<	  GHO@0<	v)щAtGG_  1NFG<$   $    ETFG<$    $    dE)FG<$   EEE܉w<$9u܉t8#tUQE%   M$댍FG~Y       W
W1ҀE!UFG<$   $    EUFG<$ƉE   4$]EFG"   $    'E  41tt	 !   pE@G@G0VB<	v_tB<   1҉EG8I1M   $ETFG<$   $    dE)uEG8I닍v F1G<$$   $FG  #10E8&    U(]uƉ}@舿  8JtlUE    E    U t$<Et 4$tptpE܋F1 u܋EtVHt-Mܺ#   $;]u}]Ã   F뇐P:!uˋRz	uB)F01E    1뿉&   $    UtރEjUWVSE@蟾  PMMQP}vAUt~}c   1E1   r;ut>E싋)<:Mu/@:Etm8E}U;uuE    E[^_]Í&    8M}U؉Ѓ0<	wƋE̾Et$E0D$M$u렋E䍶    蛾Et (   xE[^_]À}vE$*   $    E腾EK    '    U(]}ǉu@:÷  L   T  su
xrv   SEtM (uSBPW0W0:u:Bt@UB@t}   t;1]u}]Ã)/  *t(u:Bu<$$M+   {묋]u}]    Ɖ-   $?,   $M-[]u}]5G<$wEƋG8Itv4$M   eE[ƉR0   $豼/   $M蟼.   $M荼UB   $e   $MS&    '    UWVSlÒ  Ee   E1EUM    $wUE:_  u   uUB<.
  <_  <$   1E      ut$UT$ED$U$Eԉe@   )ċET$U̍   )čD$Eu{D$   4$)EtEȀ8 uiɋEUt_EPEL$D$ЉD$U$eƋUe3      e[^_]É4$Ff1ϋUB	<Dt<IEx
_E$v   Ex	IteglobFal dFestrFuctoFrs kFeyedF to F E4$D$vH1zZ<t& v	  globFal cFonstFructFors FkeyeFd tofF  뗋U   U%   WVS賸0  ,EM|EtPEE̍+E    EЋE Et'u   }Љu&EEE EuًU E؃,[^_]Ëu܅~}>tMU׈EM뙋E9Ev"Ùz t
t& y umM9MrE [@]mEERUUMEÐUWVS}袷  t"t$sFu<$s[^_]Ít& '    UWVS<uRύ  e   E1E    f  4$sE    E    E    E    E    )čL$ME    t& Gj  E܅tE܃9E|8Em  e܋ED$E$qj  M؉E    MȄubE    tLG@tE̅uEEt4Eԅuˀ\   E̅   '   u Uȉ$tM؋U   M    G@tv G@uMe3
   E   e[^_]ËEЅt#"tE    !fE   't)"KE   E    E   $    frE   EXU$fE    A  t& UWVS}o  uE    E[^_]Ív    t0v u   $#rEtEE    tkw}$M$D$q)Eut?$q$qME҉uE$E    E[^_]ËUME
    [^_]Í    '    UWV1Ss  <M;1  U<    8:@uލD$B$oEtD$   D$    $ p  M܉$pEu  ED$    D$    $oQ  E$NqU܋MD$   T$L$Eԉ$q9EEtE܉$q  UԋM
 $UE$MEЉ  U   8    E    8 f   EMUM؋MuۋEEUEM$   D$qUMM)T$TT$$oEU؋M8T$L$<$nUME$VnEԉ$KnU܃$nM;1
<[^_]ÉULE    E    E    2 D$   D$   D$T$n$   2pU]u  uu}4$nx<$\o|$t$$m]u}]ÐU'  W1V}EWفdEɴfEm}mEP,$    ؉hm}mE	^_]ÐUWVEU}EE҉։Eu9   ȉ^_]Ðt& 9   Et    U+EME	EUMEEMM	uщǋE9щƉUro9t^1yEt2ƋE^9w*U9Us"f11G&       1uf   1$EM9vO1
U]Ít& '    UWVSx  iE)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐUS
Ç  lUS  tЋu[]US    [<  nY[                                     

Top %d Lines:

     Line      Count

 %9ld   Executable lines in this file
   %9.2f   Percent of the file executed
   
%9lu   Total number of line executions
    %9.2f   Average executions per line
    %s:%d: (%s:0x%lx) %lu executions
   %s: %s: unexpected end of file
 [bb_read_rec] 0x%lx->0x%lx (%s:%d) cnt=%lu
 %s: warning: ignoring basic-block exec counts (use -l or --line)
 %9d %10lu
 
Execution Summary:

 %9ld   Lines executed
  <unknown> %lu     B[cg_write_arcs] frompc 0x%lx selfpc 0x%lx count %lu
    [cg_tally] arc from %s to %s traversed %lu times
   [cg_read_rec] frompc 0x%lx selfpc 0x%lx count %lu
  [arc_lookup] parent == 0 || child == 0  [arc_lookup] parent %s child %s
    [arc_lookup]	 parent %s child %s
   [cg_assemble] topological sort listing  inherits print-flag %d and prop-fract %f
    ends up with printflag %d and prop-fract %f
   [prop_flags] time %f propself %f print_time %f
 [arc_add] %lu arcs from %s to %s
 [cycle_link]   is the head of cycle %d
 [cg_assemble]  [prop_flags]  [propagate] toporder botches
 [prop_time] child 	  with %f %f %lu/%lu
 [prop_time] parent	 
[prop_time] share %f
 [tally] hit %lu += %lu
 [dfn] dfn(  [find_cycle]  [find_cycle] tail  [find_cycle] new cyclehead  [find_cycle] glomming   onto  [find_cycle] and its tail  [pre_visit]		%d: [post_visit]	%d:  [post_visit]		member  -> cg.top_order = %d
   [find_cycle] dfn_depth %d cycle_top %d  [find_cycle] glommed, but not to head
  [post_visit]		is part of a cycle    [find_cycle] couldn't find head of cycle
     _    Gz??<locore> <hicore> [cmp_arc]   calls   %f + %f %lu/%lu
 			Call graph

  for %.2f%% of %.2f seconds

  no time propagated

 parents total called index name self descendants %time children %-6.6s %5.1f %7.2f %7.2f %7lu +%-7lu  %7.7s  <cycle %d as a whole> [%d]
 %6.6s %5.5s %7.2f %11.2f %7lu %6.6s %5.5s %7.2f %7.2f %7lu       %-6.6s %5.1f %7.2f %11.2f %-6.6s %5.1f %7.2f %7.2f +%-7lu   %7.7s %7.7s  Index by function name

 %6.6s %-19.19s  %s   (%s) %6.6s  		     Call graph (explanation follows)

   
granularity: each sample hit covers %ld byte(s)    %6.6s %5.5s %7.7s %11.11s %7.7s/%-7.7s     %-8.8s
  %-6.6s %5.5s %7.7s %11.11s %7.7s+%-7.7s %-8.8s	%5.5s
   index %% time    self  children    called     name
 %-6.6s %5.1f %7.2f %11.2f %7lu  %6.6s %5.5s %7.7s %11.11s %7.7s %7.7s     <spontaneous>
    %6.6s %5.5s %7.7s %7.7s %7.7s %7.7s     <spontaneous>
  %6.6s %5.5s %7.7s %11.11s %7lu %7.7s        %6.6s %5.5s %7.7s %7.7s %7lu %7.7s      %6.6s %5.5s %7.2f %11.2f %7lu/%-7lu         %6.6s %5.5s %7.2f %7.2f %7lu/%-7lu      ----------------------------------------------- [get_src_info] 0x%lx -> %s:%d (%s)
 [get_src_info] no info for 0x%lx (%s:%d,%s)
    [core_sym_class] %s: not a function
    [core_sym_class] %s is of class %c
 [core_create_function_syms] rejecting: 0x%lx %s
    [core_create_function_syms] %ld %s 0x%lx
   %s: -c not supported on architecture %s
    %s: ran out room for %lu bytes of text space
   %s: %s: not in executable format
   %s: can't find .text section in %s
 %s: unable to parse mapping file %s.
   [core_create_line_syms] %lu %s 0x%lx
   %s: somebody miscounted: ltab.len=%d instead of %ld
 ___gnu_compiled %s: file `%s' has no symbols
 main bfd_get_section_contents %s: can't do -c
 .text $CODE$ %s: %s: %s
 %s: could not open %s.
 %[^
:] No symbols in  %[^
]
 )uO%s: address size has unexpected value of %u
    [dumpsum] frompc 0x%lx selfpc 0x%lx count %lu
  %s: don't know how to deal with file format %d
 %s: file too short to be a gmon file
   %s: file `%s' has bad magic cookie
 %s: file `%s' has unsupported version %d
   %s: %s: found bad tag %d (file corrupted?)
 %s: profiling rate incompatible with first gmon file
   %s: incompatible with first gmon file
  [gmon_out_read] lowpc 0x%lx highpc 0x%lx ncnt %d
   [gmon_out_read]   s_lowpc 0x%lx   s_highpc 0x%lx
   [gmon_out_read]     lowpc 0x%lx     highpc 0x%lx
   [gmon_out_read] samp_bytes %d hist_num_bins %d
 %s: file '%s' does not appear to be in gmon.out format
 %s: unexpected EOF after reading %d/%d bins
    [gmon_out_read] frompc 0x%lx selfpc 0x%lx count %lu
    time is in ticks, not seconds
  File `%s' (version %d) contains:
   	%d basic-block count records
 gmon 	%d histogram record
 	%d histogram records
 	%d call-graph record
 	%d call-graph records
 	%d basic-block count record
   Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqQZ][name]] [-I dirs]
	[-d[num]] [-k from/to] [-m min-count] [-t table-length]
	[--[no-]annotated-source[=name]] [--[no-]exec-counts[=name]]
	[--[no-]flat-profile[=name]] [--[no-]graph[=name]]
	[--[no-]time=name] [--all-lines] [--brief] [--debug[=level]]
	[--function-ordering] [--file-ordering]
	[--directory-path=dirs] [--display-unused-functions]
	[--file-format=name] [--file-info] [--help] [--line] [--min-count=n]
	[--no-static] [--print-path] [--separate-files]
	[--static-call-graph] [--sum] [--table-length=len] [--traditional]
	[--version] [--width=n] [--ignore-non-functions]
	[--demangle[=STYLE]] [--no-demangle] [@FILE]
	[image-file] [profile-file...]
 <URL:http://www.sourceware.org/bugzilla/> and hjl@lucon.org Based on BSD gprof, copyright 1983 Regents of the University of California.
    This program is free software.  This program has absolutely no warranty.
   %s: unknown demangling style `%s'
  aA::bBcC::d::De:E:f:F:hiI:J::k:lLm:n:N:O:p::P::q::Q::rR:st:Tvw:xyzZ::   %s: Only one of --function-ordering and --file-ordering may be specified.
  %s: sorry, file format `prof' is not yet supported
 %s: gmon.out file is missing histogram
 %s: gmon.out file is missing call-graph data
 Report bugs to %s
 /usr/share/locale gprof [main] debug-level=0x%x
 %s: unknown file format %s
 GNU gprof %s
 2.17.50.0.6-14.el5 GPROF_PATH gmon.sum a.out line no-static ignore-non-functions no-annotated-source no-flat-profile no-graph no-exec-counts function-ordering file-ordering file-info all-lines no-demangle directory-path display-unused-functions min-count print-path separate-files static-call-graph table-length no-time width brief debug help file-format traditional version gmon.out _gprof_mcount __mcount __mcount_internal __mcleanup 1f@ob|LD=LxU#u
5=5DS[scale_and_align_entries] pushing 0x%lx to 0x%lx
   [assign_samples] bin_low_pc=0x%lx, bin_high_pc=0x%lx, bin_count=%u
 [assign_samples] [0x%lx,0x%lx) %s gets %f ticks %ld overlap
    [assign_samples] total_time %f
 
Each sample counts as %g %s.
  %5.5s %10.10s %8.8s %8.8s %8.8s %8.8s  %-8.8s
  %5.5s %9.9s  %8.8s %8.8s %8.8s %8.8s  %-8.8s
   [hist_read_rec] n_lowpc 0x%lx n_highpc 0x%lx ncnt %u
   [hist_read_rec] s_lowpc 0x%lx s_highpc 0x%lx nsamples %u
   [hist_read_rec]   lowpc 0x%lx   highpc 0x%lx
   %s: `%s' is incompatible with first gmon file
  %s: %s: unexpected EOF after reading %u of %u samples
    zD


flat profile:
 Flat profile:
 %c%c/call  for %.2f%% of %.2f %s

  no time accumulated

 total  self   cumulative %   %5.1f %10.2f %8.2f %6.2f %9.2f %8.2f  %8lu %8.2f %8.2f    %8.8s %8.8s %8.8s   [hist_read_rec] 0x%lx: %u
              ?                T   -q=G   &.>M   ư>K   MbP?          ?m        @@u       .An       eAp      mBf     4&kCa    NgmC[annotate_source]: looking for %s, trying %s
 / %s: could not locate `%s'
 -ann 
 *** File %s:
    [sym_lookup] %d probes (symtab->len=%u)
    [sym_lookup] %d (%u) probes, fall off
  [dbg_sym_lookup] address 0x%lx
 [dbg_sym_lookup] low=0x%lx, mid=0x%lx, high=0x%lx
  [dbg_sym_lookup] sym[m]=0x%lx sym[m + 1]=0x%lx
 [dbg_sym_lookup] binary search fails???
    [symtab_finalize] favor %s@%c%c over %s@%c%c    [symtab_finalize]: removed %d duplicate entries
    [symtab_finalize] 0x%lx-0x%lx	%s
  (addr=%lx)
 [parse_id] %s ->  /%s: [sym_id_parse] syms[%s]:
 INCL_GRAPH EXCL_GRAPH INCL_ARCS EXCL_ARCS INCL_FLAT EXCL_FLAT INCL_TIME EXCL_TIME INCL_ANNO EXCL_ANNO INCL_EXEC EXCL_EXEC <non-existent-file>   [sym_id_parse]: arc %s:%s(%lx-%lx) -> %s:%s(%lx-%lx) to %s
     PF[FfFpFzFFFFFFFF (%s:%d @ %lx) {%d}  %4.0f%%   <cycle %d>  [%d]  (%d)   [findcall] %s: 0x%lx to 0x%lx
 [findcall]	0x%lx:call 	destpc 0x%lx (%s)
 <indirect child> _coroutine [find_call] 0x%lx: bsr  0x%lx	; name=%s, addr=0x%lx    [find_call] %s: 0x%lx to 0x%lx
 [find_call] 0x%lx: jsr%s <indirect_child>
 indexed register register deferred autodecrement autoincrement autoincrement deferred byte displacement byte displacement deferred byte relative byte relative deferred word displacement word displacement deferred word relative word relative deferred immediate absolute long displacement long displacement deferred long relative long relative deferred [findcall]	0x%lx:calls 	first operand is %s 	second operand is %s
 [findcall]	destpc 0x%lx  child->name %s  child->addr 0x%lx
 [findcall]	but it's a botch    NNNNNNNNNNNNNO	OOOO%O,O3OeOeOeOeOiOqOxOOOOOOOOOOcP9PcPcPcPcPcP\P\PUPUPBPBPBPBP\P\PUPUPBPBP[reladdr] not relative address
 [findcall]	0x%lx:callf  TTTTTTTTTTTTTTT UUUUU#UUUUUUUUUYUaUhUqUxUUUUUUUUSV)VSVSVSVSVSVLVLVEVEV2V2V2V2VLVLVEVEV2V2V	dest_pc=0x%lx, (name=%s, addr=0x%lx)
 [find_call] 0x%lx: callf [find_call] 0x%lx: jal [find_call] 0x%lx: jalr
  %         the percentage of the total running time of the
 time       program used by this function.
  cumulative a running sum of the number of seconds accounted
     seconds   for by this function and those listed above it.
  self      the number of seconds accounted for by this
 seconds    function alone.  This is the major sort for this
    calls      the number of times this function was invoked, if
              this function is profiled, else blank.
   self      the average number of milliseconds spent in this
    ms/call    function per call, if this function is profiled,
     total     the average number of milliseconds spent in this
    ms/call    function and its descendents per call, if this 
 	   function is profiled, else blank.
  name       the name of the function.  This is the minor sort
              for this listing. The index shows the location of
   	   the function in the gprof listing. If the index is
 	   in parenthesis it shows where it would appear in
   	   the gprof listing if it were to be printed.
            listing.
  
 	   else blank.
 call graph profile:
           for this listing.
           function entries:
           descendents.
           itself.
 descendents
           recursively.
           parent listings:
 descendents*
           parent.
           its parents.
           children listings:
 descendent*
           function.
           cycle as a whole.
           cycle listings:
             The sum of self and descendents is the major sort
    index     the index of the function in the call graph
            listing, as an aid to locating it (see below).
   %time     the percentage of the total time of the program
            accounted for by this function and its
   self      the number of seconds spent in this function
           the number of seconds spent in the descendents of
              this function on behalf of this function.
    called    the number of times this function is called (other
             than recursive calls).
   self      the number of times this function calls itself
   name      the name of the function, with an indication of
            its membership in a cycle, if any.
             listing, as an aid to locating it.
   self*     the number of seconds of this function's self time
             which is due to calls from this parent.
            the number of seconds of this function's
           descendent time which is due to calls from this
  called**  the number of times this function is called by
             this parent.  This is the numerator of the
             fraction which divides up the function's time to
 total*    the number of times this function was called by
            all of its parents.  This is the denominator of
            the propagation fraction.
    parents   the name of this parent, with an indication of the
             parent's membership in a cycle, if any.
  index     the index of this parent in the call graph
             listing, as an aid in locating it.
   self*     the number of seconds of this child's self time
            which is due to being called by this function.
             the number of seconds of this child's descendent's
             time which is due to being called by this
    called**  the number of times this child is called by this
           function.  This is the numerator of the
            propagation fraction for this child.
 total*    the number of times this child is called by all
            functions.  This is the denominator of the
             propagation fraction.
    children  the name of this child, and an indication of its
           membership in a cycle, if any.
   index     the index of this child in the call graph listing,
             as an aid to locating it.
              * these fields are omitted for parents (or
             children) in the same cycle as the function.  If
           the function (or child) is a member of a cycle,
            the propagated times and propagation denominator
           represent the self time and descendent time of the
             ** static-only parents and children are indicated
              by a call count of 0.
              the cycle as a whole is listed with the same
           fields as a function entry.  Below it are listed
           the members of the cycle, and their contributions
              to the time and call counts of the cycle.
     This table describes the call tree of the program, and was sorted by
   the total amount of time spent in each function and its children.
  Each entry in this table consists of several lines.  The line with the
     index number at the left hand margin lists the current function.
   The lines above it list the functions that called this function,
   and the lines below it list the functions this one called.
         index	A unique number given to each element of the table.
 		Index numbers are sorted numerically.
    		The index number is printed next to every function name so
   		it is easier to look up where the function in the table.
      % time	This is the percentage of the `total' time that was spent
  		in this function and its children.  Note that due to
 		different viewpoints, functions excluded by options, etc,
    		these numbers will NOT add up to 100%.
        self	This is the total amount of time spent in this function.
      children	This is the total amount of time propagated into this
         called	This is the number of times the function was called.
   		If the function called itself recursively, the number
    		only includes non-recursive calls, and is followed by
    		a `+' and the number of recursive calls.
      name	The name of the current function.  The index number is
   		printed after it.  If the function is a member of a
  		cycle, the cycle number is printed between the
   		function's name and the index number.
     For the function's parents, the fields have the following meanings:
        self	This is the amount of time that was propagated directly
  		from the function into this parent.
       children	This is the amount of time that was propagated from
  		the function's children into this parent.
         called	This is the number of times this parent called the
 		function `/' the total number of times the function
  		was called.  Recursive calls to the function are not
 		included in the number after the `/'.
         name	This is the name of the parent.  The parent's index
  		number is printed after it.  If the parent is a
  		member of a cycle, the cycle number is printed between
   		the name and the index number.
    If the parents of the function cannot be determined, the word
  `<spontaneous>' is printed in the `name' field, and all the other
  For the function's children, the fields have the following meanings:
  		from the child into the function.
         children	This is the amount of time that was propagated from the
  		child's children to the function.
         called	This is the number of times the function called
    		this child `/' the total number of times the child
   		was called.  Recursive calls by the child are not
    		listed in the number after the `/'.
       name	This is the name of the child.  The child's index
    		number is printed after it.  If the child is a
   		member of a cycle, the cycle number is printed
   		between the name and the index number.
    If there are any cycles (circles) in the call graph, there is an
   entry for the cycle-as-a-whole.  This entry shows who called the
   cycle (as parents) and the members of the cycle (as children.)
     The `+' recursive calls entry shows the number of function calls that
  were internal to the cycle, and the calls entry for each member shows,
     for that member, how many times it was called from other members of
  This line lists:
 		function by its children.
  fields are blank.
  the cycle.
 T%d const volatile const __restrict const volatile __restrict __ct __dt assign_ operator type operator  _imp__ __imp_ _GLOBAL_ __std__ __sti__ __vtbl__ ::  virtual table global constructors keyed to  global destructors keyed to  import stub for  _ada_ ___ <%s> ' false true 0 JArray1Z ,  ~ [ unsigned __complex void bool wchar_t long double float %x int%u_t , ... -2147483648 U __pt__ __tm__ __ps__ __S {anonymous} template < > class 0123456789Qt __thunk_ __t  type_info node  type_info function  static none Demangling disabled auto gnu GNU (g++) style demangling lucid Lucid (lcc) style demangling arm ARM style demangling hp HP (aCC) style demangling edg EDG style demangling gnu-v3 java Java style demangling gnat GNAT style demangling nw  new dl  delete vn  new [] vd  delete [] as != eq == ge gt plus apl += minus ami -= mult amu *= aml convert negate trunc_mod % amd %= trunc_div adv /= truth_andif && aa truth_orif || oo truth_not ! postincrement ++ pp postdecrement -- mm bit_ior aor |= bit_xor ^ aer ^= bit_and aad &= bit_not co cl alshift << als <<= arshift >> ars >>= component -> pt rf indirect method_call ->() addr array vc compound cm cond ?: cn max >? mx min <? mn nop ->* sz sizeof  6.&m _ 
__m
<mm'``>rDy!V
TTTTTTTTQTTTTTTTTTPT%TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTvirtual function thunk (delta:%d) for   Automatic selection based on executable GNU (g++) V3 ABI-style demangling   ************************************+**************+++++++++++++++++++++++++++++++++++++++++++4CY2Y23%322>==<d=:9x987H87Y76;666uBuBuBuBuBuBuBuBBC<l@?AA8@DBCO:)2D>)2)2554242MMNzNGN(QQQQQQQQQQQQQQQQQQQ-QcQQ-QcQQQQR(RNRQQQQtR`__E`__i`a________aa_	b____________a____`a_____________`ccccccccccccccccccccccccccccHhHhHhHhHhHhHhHhHhHhTfTfTfTfTfTfTffTffTfTfggTfTfTfTfTfDgHhTfgTfihDihTfTfTfTfHhTfTfTfTfTfTfhhhhhhhhhhTfhhhhTfTfTfhhWhhhhhhVTT for  construction vtable for  -in- typeinfo for  typeinfo name for  typeinfo fn for  non-virtual thunk to  covariant return thunk to  java Class for  guard variable for  reference temporary for  hidden alias for  ::* )  ) : ( ul ull  restrict  const complex  imaginary  (anonymous namespace) string literal std JArray< aN aS dV da delete[] eO eo ix lS mI mL na new[] oR pL pm ps qu rM rS boolean byte __float128 unsigned char unsigned int unsigned long unsigned __int128 unsigned short unsigned long long std::allocator std::basic_string std::string std::istream basic_istream std::ostream basic_ostream std::iostream basic_iostream    std::basic_string<char, std::char_traits<char>, std::allocator<char> >  std::basic_istream<char, std::char_traits<char> >   std::basic_ostream<char, std::char_traits<char> >   std::basic_iostream<char, std::char_traits<char> >  
out of memory
   /  ;        D8  tX  Dx         #  T'  t(4  )T  *p  *  +  48  8  :  ?(  @@  4@X  Dx  tF  F  4L  N  ]	  Tb0	  cP	  ep	  j	  4l	  tm	  r	  z
  z,
  {D
  {d
  |
  |
  D}
  ԁ
        @  DX  t    Ԏ  t     D  <  d\  ĩt  $  4  ĳ  $  Ĵ
  t<
  `
  
  Ը
  $
  t
        @  X  Tx    T        d0  4H  h    T  $      D  8  T  4p  T  t  $       @  \  x  4        $(  DD  h  D  t    4      8  \  4          ,  dL  h  $	  D	  
      D$  d H  %h  )  5  6  8  t9  ?8  $@\  TA  G  N  TP  P  $V(  dVD  V`  V|  W  4W  W  W  4X  tX8  XT  DYt  Y  TZ  Z  [  D[  \,  \H  $]h  ]  $^  t^  {  |  t}8  D\        ą  Ć  T0  P  l    t  t      đ0  T  tx  d  Ę    T   D   d<  \  |        T          |        5   AB
   0    '  AB
F    P   P  AB
F    p       AB
E            AB
C       '   AB
A         AB
F       C  AB
I      0  AB
F    ,  P>  AB
F    L     AB
D    h     AB
        AB
E        l  AB
F         AB
J        з  AB
MI      `I  AB
F       $   AG
   8  $   AG
   P    AB
F    p    AB
F      P   AB
     p  AB
F        AB
BC       AB
I      E  AB
C    (  0J  AB
AG   H  i  AB
FH   h    AB
F        AB
OF     2  AB
E        Pv  AB
I        AB
I      p6   AB
D    $  9   AB
   <  k   AB
AF     \  `s   AB
E      |     AB
I        q   AB
FF          AB
F       6   AB
D       |   AB
FF       py   AB
TF     8  (   AB
   P      AB
D    l  
  AB
I      
   AB
      
   AB
NIE   ,     P:  D 	FAB
ACD          AB
D         AB
I    4  F  AB
I    T  @([   AB
    l  (V  AB
FFF          *  AB
FIF        .  AB
I      2R   AB
F       3   AB
E        3   AB
F     4  P4   AB
GGF      X  4~  AB
F    x  `6F  AB
F      7E  AB
F       <H   AB
D       P<   AB
FOE        <r   AB
F      p=  AB
FH   8  >_   AB
   P  >G  AB
F    p  0Di   AB
E        D  AB
I      0G   AB
FF       Gn  AB
F      `J+  AB
F    	  N   AB
   (	  @O   AB
   @	  PZ   AB
FF     `	  pP  AB
F    	  T   AB
   	  0U   AB
   	   VZ   AB
FF     	  `V  AB
F    	  pZ  AB
F    
   ]  AB
F    0
  `  AB
D    L
  c@  AB
D    h
  o 	  AB
D        zR |            AM
      8       AD
F   X   <v    AB
J     x   F    AB
A           AB
BC         \    AB
         `
    AD
          TT    AB
FGN       E    AB
I      4  N    AB
AD       X      AB
AD       |  x    AB
AD            AB
A          AB
IE         do    AB
ACF       #    AB
A       S    AB
FPE      D   R    AB
FPE      h  <a    AB
FH         g    AB
FPE        w    AB
FNF        0    AB
BF         _    AB
FZ        y    AB
I      <  H    AB
IE       `      AB
IE        (   AB
C         AB
C     n    AB
D     dM    AB
D         AB
            AB
BF      <     AB
I   \     AB
O   |     AB
C         AB
AG        E   AB
F     D   AB
C       D   AB
ACF      $      AB
ACC      H   f   AB
BF       l  "y    AB
IE        T#6   AB
F      t)i    AB
FV         )"   AB
AD        *'   AB
F      0T   AB
AD       <  8d   AB
BF      `  d9P    AB
C     9o   AB
C     >4    AB
        ?4    AB
        <?+    AB
        P?+    AB
        d?(    AD
A    ,  x?j    AB
FQE      P  ?O    AB
FNE     t  ?1    AB
FF      @;    AQ
        4@8    AD
        X@    AB
E       @^    AD
A     A    AB
AC    (  A    AB
FF    H  B/    AG
      d   B+    AD
C      4BN   AB
BF        `CM    AB
D     C5    AB
FN       Cq    AB
AG       	  Dr    AB
IE      (	  lDO    AB
FF     H	  D   AB
IS      l	  a%   AB
AC     	  b    AB
IE       	  4c   AB
IE       	  eZ   AB
ACF      	  gR   AB
ACF     
  Xh   AB
AC     <
  8j    AB
INL      `
  j    AB
FQ       
  k   AB
IE      
  m)   AB
F   
  ,p	    AB
       
   pw   AB
IE        |sS    AB
J      (  s    AB
BF      L  t     AB
      h  t     AB
         t   AB
BF         u    AB
AG         Hv   AB
FI         y    AB
IE        zS   AB
F    4   |"   AB
IE      X  ~`   AB
F   x  L    AG
C         AB
         E    AB
F     P[   AB
F         AB
F    
  pz   AB
BC       8
  ̆M    AB
FNF     \
  f    AB
LF    |
  H#   AB
E                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mmm   um   mm   nn   #n8n   ;nUn    Ynnn @  uun   znn   n                                        nn   nn   nn    nn    nn   nn   nn   W=n   nn   no   n
p   <o   oom   no    no   nn   no    no   nn   o;|    o;|   oo   oo   oo    oo    !o+o    .o+o   -o1o   4oRD    ?oRD   >oBo   EoQo    ToQo   Wobo    eobo   horo    &Iro   too    oo   oo    oo   oco    oco   oo   oo    oo   oo   oRo    oRo   oo   ol    ol   B)p    o)p   oo    oo   oo   oo    oo   oo   o	p    p	p   p	p   p;|    p'p    ,pRo    1pn    7pn   :pl    Cpl   FpKp    NpKp   QpUp    XpUp   [p_p    bp_p   ep*     nip   mppp               |o      |n      ToQo      oRo      |Ro      o)p       Cp-m      ol      |Bo      ||      m;|      nn      ?oRD      |o      |o      nn      no      n
p      |n      |o      <o      oo      oom      |n      |o      no      o;|      oo      ||      W=n      mo      &Iro      nn      |o      eobo      oco      |n      no      |ip      oo      |o      p	p      |`p      |1o      |o       n+o      oo      [|pp      mppp                      }   }       m   |      	}   |       m   m      m   m      m   m      |
   |
       }
    }
       }   }      }   l                          $}   $}      }
   }
      2}   2}       )}   )}                                                                   D}   D}       ;}   ;}                           l   l   	   m   	}       S}	   $}      J}   J}      /m   /m                               t   |   |           a   ]}   ]}   b}	   b   l}   l}   q}   s   ~}   }F   q}   i   }   (~1   }
   o   }   \~1   }
   d   }
   ~2   }            ^     D
   (&oh      ԁ
                     p   H                 h         oDo   o                                                                                    rҏ"2BRbrҐ"2BRbrґ"2BRbrҒ"2BRbrғ       
                       O=P                      @(#) Copyright (c) 1983 Regents of the University of California.
 All rights reserved.
         U=        l   Z=        a   d=        D   |=       A   y=       J   =       p   =       P   M>       q   =       Q   =       C   =       Z   =        r   =       R   =        i   K=        s   =        x   =          =           =       I   >        z   >       m   '>        L   2>        y   A>        c   S>       t   %-       n   `>       N   h>       w   *       e   *       E   *       f   *       F   *       k   n>        b   t>       d   z>        h   >       O   >        T   >        v                   >                            >>>>>>x,,    sseconds                   F                   $.$ gprof.debug > .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  l                +         ԁ                3                            ;   o                     H   o   DD  P                W   	        h                `   	        H              i         DD                    d         \\                  o             (                u         (&(                   {         `&` |X                           ~                                                                                                                                                   d
                           *                          TT+                           pp+ 0                         ,                            @<0 0                                <0                                 L0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ELF              Ї4   H      4    (      4   44               4  44                     HF  HF           HF  HHT  d           \F  \\               H  HH              Ptd\D  \\\   \         Qtd                          /lib/ld-linux.so.2           GNU           	                 $       K                       #                     )                               q            2             E                              E                   j             E      L       I      _       z                         I      V       -     ;                         o       C             j      f       -                        9      6                              __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk exit setlocale perror dcgettext getpwuid semctl getgrgid __stack_chk_fail shmctl putchar fgets getpagesize getopt ctime __strtoll_internal fclose __strtol_internal optarg msgctl __snprintf_chk fopen64 bindtextdomain __libc_start_main GLIBC_2.4 GLIBC_2.2 GLIBC_2.1 GLIBC_2.3.4 GLIBC_2.0                                           ii
         ii
   *     ii
   4     ti	   >     ii
   J      $    4  8  <  @  D  H  L  P  T	  X
  \  `  d
  h  l  p  t  x  |              U  `  0   5,%0    %4h    %8h   %<h   %@h   %Dh    %Hh(   %Lh0   %Ph8   p%Th@   `%XhH   P%\hP   @%`hX   0%dh`    %hhh   %lhp    %phx   %th   %xh   %|h   %h   %h   %h   %h   %h   p%h   `        1^PTRhhеQVhUS    [(O  t2X[ÐUS= u?T-PX9v&    P9w[]Ít& '    UXt    t	$XÐSD$   D$$    "\$$   D$nD$   D$$    \$$   D$8D$   D$$    \$$   D$[Ðt& UWVSlD$,D$$   D$   D$    $z  D$   D$ڶ$    F$   $   T$D$\$<t$8|$4l$0D$   D$$    \$t$|$l$$   D$?\$@D$   D$$    ځ  T$\$$   D$\$`D$   D$$    ~\$$   D$T$PV  D$P$D$   D$&$    4\$$   D$D$X$tD$   D$8$    \$$   D$BD$   D$8$    D$   D$J$    D$(D$   D$Q$    D$   D$X$    jD$   D$^$    LD$   D$ܻ$    .T$(l$|$t$T$\$D$$   fD$`   1ۋ$   D$    D$   \$$$   D$    D$   \$$D$    D$   \$ǋ$   $$   D$    D$   \$$vx}xyt& xqxm\$D$t$|$l$D$$   9\$`%$
   S&    D$   D$$    $Ҷ$   t& $Ҷl[^_]Í        UWVS   $   D$4D$D$   $N  D$   D$m$    Z\$$   D$D$<\$Ht$D|$@l$8D$$D$   D$$    T$$\$t$|$T$l$D$$   ID$xt$|$   |$tl$pD$(D$   D$D$    T$(t$\$|$T$l$D$$   t$X   D$X$D$   D$$    T\$$   D$\$`   D$`$D$   D$$    
\$$   D$VL$htyD$h$BD$   D$$    \$$   D$$
   Č   [^_]ÐD$   D$$    |D$   D$$    YrD$   D$$    6	&    $eČ   [^_]É'    UWVS|$   D$(D$D$   $7  D$   D$x$    \$$   D$	\$8t$4|$0l$,D$   D$$    }\$t$|$l$$   D$\$<D$   D$˷$    <ځ  T$\$$   D$|l$L\$pt$h|$lD$   D$$    l$\$t$|$$   D$0l$P   D$P$D$   D$$    \$$   D$|$X   D$X$D$   D$$    P\$$   D$D$`$D$   D$$    \$$   D$^$
   b|[^_]fD$   D$$    D$   D$$    6$÷f|[^_]Í    SӃRD$D$$     T$C$    D$$   D$C$    D$$   D$bC$7    D$$   D$5C$Z    D$$   D$[ËCD$T$   D$C$
YCD$T$   D$C$XCD$T$   D$C$WCD$[$   D$][UWVS   $   $   \$D$   $    GD$H  <  D$   D$`$    $   D$D$   D$$    iD$   D$$    D$<ID$   D$$    D$@)D$   D$$    D$D	D$   D$$    D$   D$$    D$   D$$    T$<T$T$@T$T$DT$|$t$\$D$$   1   D$X$Ɖ<   <  D$TD$8$   D$:  \$D$@$   D$r$   D$[$   D$$   D$D$h%  D$:9|$H|;D$TD$D$   <$9xى4T$T9|$H}Ł   [^_]Ív   \$D$$   D$D$x5  D$x$D$D$K$   $      $   $qD$D$K$   V$      $   $8D$D$$     \$D$$   D$$   D$)$   D$$   D$D$   D$$    GmD$   D$$    &D$   D$$    $8D$X\$D$O$   D$6D$X\$D$$   D$J\$D$   $    D$   D$$    p$   D$$   D$   D$$    =\$$   D$$   D$   D$4$    \$$   D$R$   D$   D$X$    \$$   D$   [^_]D$   D$$    $   D$$   D$   D$<$    a\$$   D$$   D$   D$S$    *\$$   D$v$   D$   D$fD$   D$$    $   D$.D$   D$~$    D$   D$$    D$$D$   D$}$    D$(rD$   D$$    D$,RD$   D$$    4D$   D$$    D$   D$ؽ$    T$$T$T$(T$T$,DD$   D$ $    $   D$D$   D$$    D$   D$$    D$0wD$   D$$    D$4WD$   D$$    9D$   D$$    D$   D$$    T$0|$t$\$T$T$4$   D$T$1QD$   D$8$    $   D$ D$   D$ȸ$    D$   D$θ$    D$8dD$   D$$    FD$   D$$    (D$   D$Ը$    
T$8|$t$\$T$$   D$FfD$X\$D$$   D$!*D$   D$$    $   D$   [^_]Í    '    UWVS   $   $   \$D$   D$    $    OD$8  <  D$   D$Ŀ$    
$   D$]D$   D$)$    D$   D$$    D$0D$   D$$    D$4D$   D$$    D$   D$$    eD$   D$ܻ$    GT$0|$t$\$T$T$4$   D$T${1   D$H$HÉ<   <tlD$DD$8$   D$<k  t$D$:$   D$D$xD$S$   D$D$X%  D$9|$8|CD$DD$D$   D$    <$sxщ>T$D9|$8}Ĭ   [^_]Å   t$D$$   D$oD$htsD$h$[D$D$/$   CD$pt)D$p$/D$D$?$   &D$   D$$    D$   D$$    xx$PD$Ht$D$H$   D$D$Ht$D$$   D$D$   D$о$    $   D$S\$D$   D$    $    $   D$   D$q$    \$$   D$$   D$   D$$    q\$$   D$$   D$   D$$    :\$$   D$$   D$   D$$    \$$   D$O$   D$   D$$    \$$   D$Ĭ   [^_]D$   D$8$    $   D$$   D$   D$ù$    ^\$$   D$$   D$   D$չVD$   D$\$    $   D$bD$   D$$    D$   D$}$    D$$D$   D$$    D$(D$   D$$    D$   D$$    jD$   D$ؽ$    LT$$D$~|$t$T$T$(\$D$$   T$xD$   D$$    $   D$GD$   D$$    D$   D$$    D$,D$   D$$    D$   D$$    oD$   D$$    QT$,|$t$\$T$$   D$
D$   D$$    $   D$\Ĭ   [^_]É'    |  $t  1e
   $h  1Ʌ$p  ։$l  $x     \$($D$D$aD$   D$   D$   *$D$tK$(  D$D$@   ,$t$D$    D$
   D$    ,$Ɖ׉$9$h  e3
   u#$l  $p  $t  $x  |  Mt& UWVS   $   $  D$D$   $    D$d  <^  D$   D$$    u$   D$D$   D$<$    ID$   D$C$    D$T)D$   D$$    D$X	D$   D$$    D$\D$   D$$    D$`D$   D$$    D$   D$$    D$   D$$    oT$T|$t$\$T$ T$X$   D$T$T$\T$T$`T$1   t& D$l$\Ɖ<   <  D$hD$8$   D$L  \$D$@$   D$&T$|k  k  D$$     \$T$D$D$$   $   D$9|$d|;D$hD$D$
   <$(xىT$h9|$d}Ł   [^_]f  \$D$@$   D$R$     $   $4D$D$J$   $   5  $   $D$D$K$   $      $   $D$D$$     \$D$@$   D$|$   D$U$   D$$   D$RD$   D$c$    T$|økD$   D$j$    T$|D$   D$$    zD$   D$$    YD$   D$$    8b$hD$l\$D$O$   D$i>D$l\$D$O$   D$DD$   D$$    $   D$$   D$D$   $    tg$   uD$   D$<$    ։[\$t$$   D$$   |JD$   D$$    ։

\$t$$   D$S.$   ǸD$   D$\$    É
T$0|$0D$D$4l$4D$0$   4D$t$$   D$   D$$    M\$$   D$D$   D$$    $   D$h$   D$   D$ĺ$    \$$   D$1$   D$   D$ۺ$    \$$   D$$   D$   D$$    w\$$   D$$   D$   D$$    @\$$   D$$   $   D$   D$$    \$t$$   D$JD$   D$$    $   D$D$   D$~$    D$   D$$    D$<}D$   D$}$    D$@]D$   D$$    D$D=D$   D$$    D$   D$$    D$   D$ؽ$    T$<|$t$\$T$T$@$   D$T$T$DT$wD$   D$$    $   D$D$   D$$    bD$   D$ $    D$HBD$   D$)$    D$L"D$   D$$    D$   D$$    D$   D$T$    T$H|$t$\$T$T$L$   D$T$dD$   D$t$    {$   D$D$   D$2$    OD$   D$7$    D$P/D$   D$$    D$   D$$    D$   D$Ը$    T$P|$t$\$T$$   D$yD$l\$D$O$   D$kD$   D$$    k$   D$   [^_]Ð&    L$qU1WVSQHYe   D$D1|$71D$7D$;D$?D$$   D$C5D$o$$eD$    D$    D$    D$     D$$    |$\$4$  ?6w$    $    t& D$   D$   D$   룽   뜋D$   D$$    \$$   D$\D$   D$d$    $   D$0D$   D$$    $   D$D$   D$$    $   D$D$   D$$    \$   D$D$   D$$    0$   D$$    D$    D$
   D$    $D$$   D$ C   9D$   ,   "D$   D$         D$$   D$  D$   D$   $
   D$   D$   $S$
   t$ug\$t$
$
   f1T$De3   uUHY[^_]aËD$D$D$u$
   -|$tx$+$
   {T$ $$    5D$ $$    T$ $I$    U]Ít& '    UWVS^   M!  ' E )E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUSHHtЋu[]US    [ô   Y[         usage : %s -asmq -tclup 
 	%s [-s -m -q] -i id
 	%s -h for help.
 semctl  
Semaphore Array semid=%d
 mode=%#o, access_perms=%#o
 nsems = %ld
 Not set otime = %-26.24s
 ctime = %-26.24s
 zcount ncount value semnum msgctl  
Message Queue msqid=%d
 send_time=%-26.24s
 rcv_time=%-26.24s
 change_time=%-26.24s
 shmctl  mode=%#o	access_perms=%#o
 att_time=%-26.24s
 det_time=%-26.24s
 %-10d %-10o  %-10s max queues system wide = %d
 allocated queues = %d
 used headers = %d
 used space = %d bytes
 cgid cuid perms msqid change recv send owner %-8s %-10s %-20s %-20s %-20s
 lrpid lspid %-10s %-10s %-10s %-10s
 messages used-bytes key %-8d %-10.10s %-8d %-10d  %-20.16s
   %5d     %5d
 0x%08x  %-10d %-10.10s %-10d %-10d  %-10o %-12ld %-12ld
 max number of arrays = %d
 max ops per semop call = %d
 semaphore max value = %d
 used arrays = %d
 allocated semaphores = %d
 semid last-changed last-op %-8s %-10s %-26.24s %-26.24s
 nsems   %-26.24s %-10d %-10.9s %-10d %-9d %-10o %-10ld
 /proc/sys/kernel/%s shmmni shmmax max seg size (kbytes) = %llu
 shmall min seg size (bytes) = %lu
 segments allocated %d
 pages allocated %ld
 pages resident  %ld
 pages swapped   %ld
 shmid detached attached lpid cpid status nattch   %-20.16s  %-10d %-10d
 locked dest /usr/share/locale util-linux 	-l : limits
	-u : summary
 atcluphsmqi:    uid=%d	 gid=%d	 cuid=%d	 cgid=%d
   %-10s %-10s %-10s %-10s %-10s
  %-10d %-10d %-10d %-10d %-10d
  uid=%d	gid=%d	cuid=%d	cgid=%d	mode=%#o
 cbytes=%ld	qbytes=%ld	qnum=%ld	lspid=%d	lrpid=%d
   
Shared memory Segment shmid=%d
    uid=%d	gid=%d	cuid=%d	cgid=%d
  bytes=%ld	lpid=%d	cpid=%d	nattch=%ld
   kernel not configured for message queues
   ------ Messages: Limits --------
   max size of message (bytes) = %d
   default max size of queue (bytes) = %d
 ------ Messages: Status --------
   ------ Message Queues: Creators/Owners --------
    %-10s %-10s %-10s %-10s %-10s %-10s
    ------ Message Queues Send/Recv/Change Times --------
  ------ Message Queues PIDs --------
    ------ Message Queues --------
 %-10s %-10s %-10s %-10s %-12s %-12s
    kernel not configured for semaphores
   ------ Semaphore Limits --------
   max semaphores per array = %d
  max semaphores system wide = %d
    ------ Semaphore Status --------
   ------ Semaphore Arrays Creators/Owners --------
   ------ Semaphore Operation/Change Times --------
   ------ Semaphore Arrays --------
   kernel not configured for shared memory
    ------ Shared Memory Limits --------
   max number of segments = %llu
  max total shared memory (kbytes) = %llu
    ------ Shared Memory Status --------
   Swap performance: %ld attempts	 %ld successes
  ------ Shared Memory Segment Creators/Owners --------
  ------ Shared Memory Attach/Detach/Change Times --------
   %-10s %-10s %-20s %-20s %-20s
  ------ Shared Memory Creator/Last-op --------
  ------ Shared Memory Segments --------
 %-10s %-10s %-10s %-10s %-10s %-10s %-12s
  %-10o %-10lu %-10ld %-6s %-6s
  %s provides information on ipc facilities for which you have read access.
  Resource Specification:
	-m : shared_mem
	-q : messages
    	-s : semaphores
	-a : all (default)
   Output Format:
	-t : time
	-p : pid
	-c : creator
  -i id [-s -q -m] : details on resource identified by id
    GLH,ϝ٠KʢݞgĬNabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbƲbb)bb6@bMZe;X   
   Tp                 $@  h    T          |           AC $   0   `  AAAAC$   X   P  AAAAF$      z  AAAAC      p  AE $       s	  AAAAF$        AAAAF       FG[P $   0     AAAAF4   X    D 	FACAAAC`                          
   hoh   L   
   T                  (               H   8            o؄o   o                                                    \        >N^n~Άކ.>N^n~    ipcs.debug  *U6 .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  $                +                         3         LL  T                 ;   o     8                H   o   ؄  `                W   	      88                  `   	      HH                 i                             d         ((                  o         Ї  .                 u         hh6                    {         6  
                          \\D  \                           D                            HHF                             PPF                             XXF                             \\F                           $$G                            ((G  p                          G                             G                                  G                                  G                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ELF               4   8      4    (      4   44               4  44                     4  4           4  ,             5                 H  HH              Ptd2  ܲܲt   t         Qtd                          /lib/ld-linux.so.2           GNU           	      5             !?   5   8   @   |(CEPvʬK8qXbAfUa2                6      6                  [                                                 D                  
      2      ~      E      1           !                                          z                  J                  I      G       <           T            ?      =       9            <      =      2      w                       T      I      p      '      M                   *           -                        "      [       U           N      x      o            _     y       "            p                       C                               4                   4            2                              a            C            D      -     *      %                          i  0     m                 (          h       (     t        O      !  0  ,     U        
 O   H     
    $       4      libncurses.so.5 __gmon_start__ _Jv_RegisterClasses tigetstr setupterm tgetent _fini _init tputs tgetstr libselinux.so.1 getpidcon is_selinux_enabled libc.so.6 _IO_stdin_used strcpy __rawmemchr exit _IO_putc setlocale optind strrchr perror __progname dcgettext getpwuid closedir __stack_chk_fail putchar stdin getpid isatty getpwnam strlen getopt __fprintf_chk stdout memcpy fclose __strtol_internal malloc nl_langinfo opendir __xstat64 getenv __ctype_b_loc sscanf optarg stderr ioctl fwrite fread readdir64 __sprintf_chk fopen64 bindtextdomain _IO_getc strcmp __libc_start_main ferror free program_invocation_short_name _edata __bss_start _end GLIBC_2.4 GLIBC_2.3 GLIBC_2.2 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.0                                                                                             ii
        ii
        ii
        ti	        ii
        ii
            8  $A  (;  ,>  06  4B               9    	  
       
  $  (  ,  0  4  8  <  @  D  H  L  P  T  X  \  `  d  h  l   p!  t"  x#  |$  %  &  '  (  )  *  +  ,  -  .  /  0  1  2  3  4  U    {   5%    %h    %h   %h   %h   % h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @%hX   0% h`    %$hh   %(hp    %,hx   %0h   %4h   %8h   %<h   %@h   %Dh   %Hh   %Lh   p%Ph   `%Th   P%Xh   @%\h   0%`h    %dh   %hh    %lh   %ph   %th  %xh  %|h  %h   %h(  %h0  %h8  p%h@  `%hH  P%hP  @%hX  0%h`   %hh  %hp   %hx  %h  %h  %h  %h          1^PTRhhQVh'US    [ô6  tX[ÐUS=< u? -X89v&    889w<[]Ít& '    Ut    t	$Ð¡\Uu	@4t9Pu]v 
UVSÃT$$uLPu;[,v,ttt([vu	[^]Í&    C ;F t1[^]
UD$   D$p$    D$D$   D$($D$   D$$    D$   D$($D$   D$\$    D$   D$($ÐUD$   D$@$    VD$   D$($]D$   D$$    !D$   D$($(D$   D$$    D$   D$($$   
U$8   ]uƉ}׉MtMt$$tE{uC(    }C,    C EC0    C$\\C4؋]]$$   [v UWVSÃ,ЋuU܉M5  \$$UW MtB   FG    ~,   &    U| uG9uG   E9E!E؋EEQ  $   EW  EU8E,UX,tGHU@;G1C[Et$Uu3|$4$< 
u׋F ;G vϋUEZUW0,[^_]G@$=G   ED$    $?_E+E)Ɖ4$	   GU t$T$$'       _D$    $9wEMU܉$AU1ɸ$UeE$$   -t& U`t
;t(0$
   ` D$   á0D$$nt& UЉVS   1   ;~ t;t[^]á0$D$֡t݃ƀt؀=` uېx`븡0$+   D$[^]UW   VS   f1    ˅utjgfff)GEgfffMm)ʍ)UE0gfff)ډӅu[^_]øgffff )ِUS tvCu[]Ðt& UWVS\EȉMMe   E1Uą  b  Eu[Eą~TU1ztø    u9     @B9u}E    ~EhEиMȋA(  5DuJ  ME    tkˍuiEStM\   B<]vD$D$D$   D$   4${ESu=L5uԋu  Pt?MȋE9A t41(   UȋB $!
   
T  Us  t
)   MȋA(  D   uȋF   19  U1ۋBEt!ȍt& !<^\BuuȋF9)9~
$  t\]KtDA<]vU$D$D$D$   D$   EKuMȃA9TF  =D8  Eȋp,*  1Mă}  +EEE;|
v  EE   E1ۿ   VUt2^f1t  u1ۅÃE܅tE̅  @UMȍUD$A D$1} D$19q,$uE    Oue35     \[^_]øEDUȋBvMȋA(D$    $idD$D$   $YG1(   EȋX$UV1(   ]UȋBPVEȋ@(   'fu1ۅt&    ]   ;]u
TuD1Uă} uȋM 1^,}ۍD`փt& Uȹ   D$    B D$1{ $    D$[u    V     hEtuċ@Quċ@AD$    $bD$D$   $|E;Et
@M̋IM踨&>@MȋA I@*D$   D$|$    D$   D$($$   5    '    UVSÃt 9P t"X,tt& [u[^]áXu:ع   1҉t$D$    D$   $   WX   [^]á0$
   D$
L$qUWVSQ$  e   U1ҋY,D$D$T  $   xf  D$}ǫ$   D$$K$5    u
@   $   t!$   ҫ     $     ǅ8    t& D$\$,$~  A4wt& $Tt& L        뜋8  $ث	  $ثD$$t	  D$    D$
   D$    4$8!	1Ue3   U	  $  Y[^_]a8  $ث$ثD$$8{>  T   _D   P    AH   2P   #f,ǅ0    ǅ4   ;5$_  ,9$t[ǅ    DǅH    ۉ\t$H  $ǅD   P  P$*  XD$    D$
   D$    $t$$v  t$D$D$D$D$   $D$*<$@L  t$D$D$,D$D$   <$V\~D$4$  hD$|$$     LD$   D$    $D$L$uRE    E    E    E    E D$)   $(EۉD$D$2$yt%L$&ǅD    <$7D$D$?($,u<$
$X^  |$D$FD$D$   X$X$>@  Uۉ$$ZT  EۉD$D$ND$D$   T$@$1(  D$    D$
   D$    $t9tD  T$T$D$TT$ډ$TiP$*D:  D  8t@(   @0u0  0   ZX   1=@D$   D$$    D$   D$($,$1L$ث!8 D$    D$   $    \$ݫ$ثB1h&    =H$D$   D$~$    D$   D$($   xT$c@$uX$GD%  t$D$D$SD$D$   <$D$    <$<xiD$HD$<$xB<$t
H \$D$HD$  <$s$    DP   ,$$lǅ4   0^$\D$   D$$    \$D$   D$($"   $   (D$9   D$   $̱D$4   1D$    D$    D$   $   ,$D$    D$
   D$    $ǅ0    4]ǅ0    ǅ4    ?D$    D$    D$$E)D$    D$    D$D$   D$	D$   D$$s$   $[$   D$   D$a$    SD$D$   D$($R$   VU]Ít& '    UWVS^   )  E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUStЋu[]US    [Ð  Y[         pstree (PSmisc) %s
 22.2 malloc ? *[ md \\ \%03o ` ' me ... + /usr/share/locale psmisc pstree.x11 UTF-8 TERM acsc TERM is not set
 aAcGhH:npluUVZ No such user name: %s
 /proc %s/%d/stat r %s/%d %*d (%15[^)] %*c %d %s/task {%s} %s/%d/cmdline %s is empty (not mounted ?)
 No processes found.
 Press return to close
    ├─ │  └─ ─── ─┬─ |- |  `- --- -+- (0tq(B (0x(B  (0mq(B (0qqq(B (0qwq(B    Copyright (C) 1993-2005 Werner Almesberger and Craig Small

    PSmisc comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under
the terms of the GNU General Public License.
For more information about these matters, see the files named COPYING.
  Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]
              [ -A | -G | -U ] [ PID | USER ]
       pstree -V
Display a tree of processes.

    -a     show command line arguments
    -A     use ASCII line drawing characters
    -c     don't compact identical subtrees
    -h     highlight current process and its ancestors
    -H PID highlight this process and its ancestors
    -G     use VT100 line drawing characters
    -l     don't truncate long lines
    -n     sort output by PID
    -p     show PIDs; implies -c
    -u     show uid transitions
    -U     use UTF-8 (Unicode) line drawing characters
    -V     display version information
     -Z     show SELinux security contexts
      PID    start at this PID; default is 1 (init)
    USER   show only trees rooted at processes of this user

 Internal error: MAX_DEPTH not big enough.
  Can't get terminal capabilities
    Warning: -Z ignored. Requires anx SELinux enabled kernel
   Π5Qݠ`o~;p   
      4      d   $     0  DH  h      $            |        !   HB
   0   q   AB
AC     P      AB
   h   @   AB
          AB
PE      +  AB
C       \   AB
          AE
AL         Е   AB
AFF        +   AD
D    8  3  AB
F    X      AB
AC  (   x    D 	FAB
D                         i            
   Hoh      ́
                                         8         oHo   o                                                            ΋ދ.>N^n~Όތ.>N^n~΍ލ.>N^n~Ύގ       ʬԬ׬ڬݬ         pstree.debug    _ .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  d                +         ́  0              3                            ;   o                     H   o   HH	  p                W   	      	  8                `   	      	                i                             d           P                o             H                 u         HH+                    {         dd+  x                          ܲ2  t                           PP3                            4                             4                             5                             5                           5                            5                            6  `                             7                                   7                                  47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        #!/usr/bin/python
import sys
try:
    import yum
except ImportError:
    print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

   %s

Please install a package which provides this module, or
verify that the module is installed correctly.

It's possible that the above module doesn't match the
current version of Python, which is:
%s

If you cannot solve this problem yourself, please go to 
the yum faq at:
  http://wiki.linux.duke.edu/YumFaq
  
""" % (sys.exc_value, sys.version)
    sys.exit(1)

sys.path.insert(0, '/usr/share/yum-cli')
try:
    import yummain
    yummain.user_main(sys.argv[1:], exit_code=True)
except KeyboardInterrupt, e:
    print >> sys.stderr, "\n\nExiting on user cancel."
    sys.exit(1)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF              4   X      4    (      4   44               4  44                     U  U           U  4              V                   H  HH              PtdPN  PP|  |        Qtd                          /lib/ld-linux.so.2           GNU           	      *         @ 0 `	d    *   -   KF->Kyc*                u       g                        T      s                                                     m       n     )                   <           8            C      a                  .     D            @                       H             O       I      5                  G      	      <                                                  '                   6                              C      *      *      Y             {                         _            H            S            d             Z      %                         (        Ĵ              0G       /             D      __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk setlocale mbrtowc optind dcgettext error puts iswprint realloc abort stdin __assert_fail __ctype_get_mb_cur_max calloc strlen memset __errno_location __fprintf_chk memcpy freopen64 fclose malloc mbsinit __uflow __ctype_b_loc stderr getopt_long __fpending __vfprintf_chk bindtextdomain opterr strcmp __libc_start_main fputs_unlocked free __cxa_atexit __stack_chk_fail exit_failure version_etc_copyright close_stdout usage program_name GLIBC_2.2 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.0                                                                 ii
        ii
        ii
        ti	        ii
        si	        ii
   (            +  -   !  .  "  ,  %  /  $  (  ,  0  4  8  <  @  D	  H
  L  P  T
  X  \  `  d  h  l  p  t  x  |                 #  $  &  '  (  )  U    ++   5%     %$h    %(h   %,h   %0h   %4h    %8h(   %<h0   %@h8   p%Dh@   `%HhH   P%LhP   @%PhX   0%Th`    %Xhh   %\hp    %`hx   %dh   %hh   %lh   %ph   %th   %xh   %|h   %h   p%h   `%h   P%h   @%h   0%h    %h   %h    %h   %h   %h  %h  %h          1^PTRhhQVhWUS    [H[  tX[ÐUS= u?-X9v&    9w[]Ít& '    Ut    t	$Ð  Z  1U]   Í&    UU  mZ  But   t   P   ]1Ðt&    鐍&    UWVƃ@t=u&4$ׄuN1t^_]Ã   ^_]fFuŉ4$ٍ&    '    U@t]냍v ]Í&    '    U]
  ÊY  u}$      1t<$8!  F    F    F    F    F    F    ]u}]Í    '    UWVSEN
  Y  H         M}Qu   zR}   ;uUR   Mp D$D$MD$   L$$   ;Ut:B       u   [^_]Ð1[^_]ËU   [^_]Ë h@t& BB    uǃ       봋MA1   fU(uu]	  W  }tQ0xD$   D$$    t$D$   D$ $E$0D$   D$$    t$$   D$<7D$   D$$    ft$$zl7D$   D$$    :t$$ND$   D$$    T$$   D$f '    L$qUWVS  ÃV  QxIE4M|$$   4$D$V4$^$#  UD$Mt$T$D$D$D$$D$    b  uED$    D$    |$t$$$t$   E)Ѓ~YMD$  D$   $    ƍD$t$D$    $    D$V$   R;U/ut	EUU/:f  0:BE1b} ER  EE$W  15E    E    UM&    EuD$   D$t$$*  m  ,  E؋}E  E؋U؋@UԅEЉEu")  UBt;Ht	uEЉuԉEU<$D$z :  }ŋMAuŋMMnE  UE܉PMЋ<$D$1     UЋRE   Uȉ֋M9Mu7F   v9ut(<$D$   }Fv9uu؋UЋB4  M9'  uȋE9F  uą  EȋuȋPBrFBuЉFrE@    uF    B;E  9  B    EԉUȋU9P  MȉHU̅   ŰM$T$   E    E    1
E E؋u4$D$KD$Qt$T$ $   D$][EEMEĉAJM؉EA5uF$   _  0M̋QPAE    E    .u܉FEЋ@EƉEu5D$TD$   $t$  MȋuЋAqFE@    UB    EԋU9PxEȋuԉFpEЉHFuċMȉq8uȋVBrFBuЉFrEt=D$   D$$    GuD$    $   t$D$E؍h   
      E؍   td&    p $          t,       hx uBvu打   A   u   hKD$   D$$    _UD$    $    T$D$ E؍*   u苃   1$HtO}    fD$   D$$    Qt$T$ $   D$u$M/D$=D$  $L$>u5D$FD$   $t$FUЉBVpu5D$D$   $t$u4$  3$Ë$ÐUN  E]   Í&    U(]zN  u}  $VE$u{tj 	EtxAD$   D$$    ]Ƌ   ta$1  t$D$MD$E$D$]u}]ÄE    tyuEwЋQD$Et$$D$멐U8]jM  u}}>    t">     ]u}]Í&    D$TD$ED$    $   D$ithtvt& u$    t& UE D$EED$ED$ED$ $  $    UEL  t ]Í&       ]Í    UU]L  tE]Ít& E  ]Ív UE$Mj#L  |$}t$t6ʃҍr11z$t$|$]Ív   &    U]úK  uu}ǋ $$   E  tHFBFBFBFBFBFBFBF B E]Ћu}]Í  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]J  uƉ}D$   D$$    9t
]u}]Ãuc捶        UWVSmJ     EEUMe   U1҉E}EwMfE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$r  t  z  }uHt& v>U       B[<!w&    9u֍    E؉$U$u Ee>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EOUM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUeUƍgE    t!t& M9MvUEM1u<$3}EEUE    E    E    E7E  cE   }E   E}  gE   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$8EEg 'E   UE   E ;Ec "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋}   v U(}}]TB  ut?UMƋ |$ED$E$EU]u}]Ív   빐&    UWVS4A  ,EUM&E EEE  U;   rlփ.     9          D$   $     D$    )ȉ   T$$B   EUE   0xT$E܋Ut$<$D$T$9w[pU䋃   4Ѝ   9t<$2   E4$9  UǉBEU܉t$<$D$ET$D$PEU,[^_]$              H          UVS^@  @Uuԋ  Eԋ  E؋  E܋  E  E䋃  E苃   E싃  E  T$4$D$   EU14$@[^]Ð&    USÿ?  ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USEp)?  $    D$ED$[]Í&    '    USE3>  U  M[]    USÿ>  E$    D$[]Ðt& U(]Ê>  u}UE T$UD$    $    EET$D$x<$  U|$T$ƋE4$D$ED$EU]u}]ÐUSE0=  D$   D$E$d[]Í&    '    USï=  E$    D$[]ÐUE     @    ]Ít& '    UWVS,uW=  }  (  9;  3  t(1:tm      2:
Z  9uUB;B  U0Bx=(  M؀3(   u(E؀<0 tUB;B0  M0Ay؋UMRU܋E    EtEuEE,[^_]Ít& U;UtD   3(      EM܈UB;B   M0AE댍ED$   D$M܉$  E띍(  (  ED$   D$    $1ҍt& 2M9w(  (  ED$   D$    $z뺉$`M܋E EU܉PEME,[^_]ËU܋M
 ؉$$@(  V&    '    U@   WVS<U9:  tBED$   $  D$   E؋E$t  E܍EEԉ$#E    G   wD$   4$>  UM܉<Ut$$T$UM؉UUԋMET$UL$D$$M;MrED$ED$   $   UD$   $E؋ED$R  EUME    U    E$EM؉UtU܋EE<[^_]ÐUSEÙ9  D$E$Tt[]f  t& '    U]EW9  uu$t$t
]u]Åt@  UE}}]X9  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅  fU]Ú8  uu4$ft
]u]Åt  &    U]Z8  uu4$Ut$T$$]u]ÐU]a8  uu4$4$D$]u]Ðt& U]!7  uu4$t$D$    $]u]U1҉Muu]Ê7  9w*΋EL$$t]u]Í    tg  &    U1҉Muu]q*7  9wΉ$t
]u]Åt  t& USMU-6  ɋt"=w#D$$[[]Ðt& u@  UWV1S,EÕ6  M}EtЃEBu  |$EL$D$   D$PD$U$cD$   D$$    dD$  D$   D$D$E${D$   D$$    UT$$.	wuxD$   D$$    t$D$   D$U$,[^_]uDD$   D$$    t$D$   D$E$,[^_]ËuD$   nuD$   뤋uD$   EuD$   xu|D$   uD$   LuwD$   ugD$    |$ED$   D$\D$U$
US$EED$Ef4  D$ED$ED$E$T$[]ÐUS&3  D$   $    D$D$    D$QD$$U]Ít& '    UWVSm3  wE)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1SD2  tD$ED$    $1[]ÐUSÿ2  UStЋu[]US    [t2  @Y[                     %s: %s
 
Report bugs to <%s>.
 bug-coreutils@gnu.org /usr/share/locale coreutils Mark Kettenis 5.97 tsort extra operand %s -  	
 tsort.c len != 0 root %s: input contains a loop: standard input    Try `%s --help' for more information.
  Usage: %s [OPTION] [FILE]
Write totally ordered list consistent with the partial ordering in FILE.
With no FILE, or when FILE is -, read standard input.

        --help     display this help and exit
          --version  output version information and exit
   !(__extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p ((str)) && __builtin_constant_p ((s->str)) && (__s1_len = strlen ((str)), __s2_len = strlen ((s->str)), (!((size_t)(const void *)(((str)) + 1) - (size_t)(const void *)((str)) == 1) || __s1_len >= 4) && (!((size_t)(const void *)(((s->str)) + 1) - (size_t)(const void *)((s->str)) == 1) || __s2_len >= 4)) ? __builtin_strcmp ((str), (s->str)) : (__builtin_constant_p ((str)) && ((size_t)(const void *)(((str)) + 1) - (size_t)(const void *)((str)) == 1) && (__s1_len = strlen ((str)), __s1_len < 4) ? (__builtin_constant_p ((s->str)) && ((size_t)(const void *)(((s->str)) + 1) - (size_t)(const void *)((s->str)) == 1) ? __builtin_strcmp ((str), (s->str)) : (__extension__ ({ __const unsigned char *__s2 = (__const unsigned char *) (__const char *) ((s->str)); register int __result = (((__const unsigned char *) (__const char *) ((str)))[0] - __s2[0]); if (__s1_len > 0 && __result == 0) { __result = (((__const unsigned char *) (__const char *) ((str)))[1] - __s2[1]); if (__s1_len > 1 && __result == 0) { __result = (((__const unsigned char *) (__const char *) ((str)))[2] - __s2[2]); if (__s1_len > 2 && __result == 0) __result = (((__const unsigned char *) (__const char *) ((str)))[3] - __s2[3]); } } __result; }))) : (__builtin_constant_p ((s->str)) && ((size_t)(const void *)(((s->str)) + 1) - (size_t)(const void *)((s->str)) == 1) && (__s2_len = strlen ((s->str)), __s2_len < 4) ? (__builtin_constant_p ((str)) && ((size_t)(const void *)(((str)) + 1) - (size_t)(const void *)((str)) == 1) ? __builtin_strcmp ((str), (s->str)) : (__extension__ ({ __const unsigned char *__s1 = (__const unsigned char *) (__const char *) ((str)); register int __result = __s1[0] - ((__const unsigned char *) (__const char *) ((s->str)))[0]; if (__s2_len > 0 && __result == 0) { __result = (__s1[1] - ((__const unsigned char *) (__const char *) ((s->str)))[1]); if (__s2_len > 1 && __result == 0) { __result = (__s1[2] - ((__const unsigned char *) (__const char *) ((s->str)))[2]); if (__s2_len > 2 && __result == 0) __result = (__s1[3] - ((__const unsigned char *) (__const char *) ((s->str)))[3]); } } __result; }))) : __builtin_strcmp ((str), (s->str))))); }) == 0)  !(__extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p ((str)) && __builtin_constant_p ((p->str)) && (__s1_len = strlen ((str)), __s2_len = strlen ((p->str)), (!((size_t)(const void *)(((str)) + 1) - (size_t)(const void *)((str)) == 1) || __s1_len >= 4) && (!((size_t)(const void *)(((p->str)) + 1) - (size_t)(const void *)((p->str)) == 1) || __s2_len >= 4)) ? __builtin_strcmp ((str), (p->str)) : (__builtin_constant_p ((str)) && ((size_t)(const void *)(((str)) + 1) - (size_t)(const void *)((str)) == 1) && (__s1_len = strlen ((str)), __s1_len < 4) ? (__builtin_constant_p ((p->str)) && ((size_t)(const void *)(((p->str)) + 1) - (size_t)(const void *)((p->str)) == 1) ? __builtin_strcmp ((str), (p->str)) : (__extension__ ({ __const unsigned char *__s2 = (__const unsigned char *) (__const char *) ((p->str)); register int __result = (((__const unsigned char *) (__const char *) ((str)))[0] - __s2[0]); if (__s1_len > 0 && __result == 0) { __result = (((__const unsigned char *) (__const char *) ((str)))[1] - __s2[1]); if (__s1_len > 1 && __result == 0) { __result = (((__const unsigned char *) (__const char *) ((str)))[2] - __s2[2]); if (__s1_len > 2 && __result == 0) __result = (((__const unsigned char *) (__const char *) ((str)))[3] - __s2[3]); } } __result; }))) : (__builtin_constant_p ((p->str)) && ((size_t)(const void *)(((p->str)) + 1) - (size_t)(const void *)((p->str)) == 1) && (__s2_len = strlen ((p->str)), __s2_len < 4) ? (__builtin_constant_p ((str)) && ((size_t)(const void *)(((str)) + 1) - (size_t)(const void *)((str)) == 1) ? __builtin_strcmp ((str), (p->str)) : (__extension__ ({ __const unsigned char *__s1 = (__const unsigned char *) (__const char *) ((str)); register int __result = __s1[0] - ((__const unsigned char *) (__const char *) ((p->str)))[0]; if (__s2_len > 0 && __result == 0) { __result = (__s1[1] - ((__const unsigned char *) (__const char *) ((p->str)))[1]); if (__s2_len > 1 && __result == 0) { __result = (__s1[2] - ((__const unsigned char *) (__const char *) ((p->str)))[2]); if (__s2_len > 2 && __result == 0) __result = (__s1[3] - ((__const unsigned char *) (__const char *) ((p->str)))[3]); } } __result; }))) : __builtin_strcmp ((str), (p->str))))); }) == 0)  %s: input contains an odd number of tokens tsort search_item write error %s: %s + help version " ` ' literal shell shell-always escape clocale  صص66HHHHHHHHHHHHHHHHHHHHHHHH444)44'4444444lH4M444)(((((                      %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
   
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 v`J4memory exhausted                            Copyright %s %d Free Software Foundation, Inc.  ;x  .   0  P      0  ,  L  0p     @  P  0  `   <   `      P  `    `,   L  0h  `         0    4  @P  `l       `       `,  L  l              (         zR |            NB
      8   H    AB
      T   ̼b    AB
AC    t       AE
           s    AB
FQ         |.   AB
F       G   AB
FFN  ,         D 	FAB
CL     (  x    AM
       D  |   AB
FQ       h  h    AB
FU        $*    AB
        8-    AB
         Lh    AB
ISI            AB
FNF       Y    AB
B      ,  DT    AB
FNE     P  
   AB
C    p  ph    AB
FFN          AB
C     ,    AB
B       +    AB
A     +    AB
D     -    AB
D   (  2    AB
D   D  *    AB
A   `   +    AB
A    |  4    AB
FQ        2    AB
D     +    AB
A         AB
        R   AB
F     ,^   AG
F   4  l5    AB
D   P  @    AB
FQ     p  ~    AB
IFP       9    AB
FN      ,?    AB
FN      L;    AB
FN      l@    AB
FN      Y    AD
NF    4  L    AD
NF    T  M    AB
D    p  0a   AB
BF        |B    AB
D     [    AB
A                                    n        h   s        v                                   S             0
   oh      
   2                                       X         o8o   oֆ                                                            ȴ                                         ^n~Ήމ.>N^n~Ίފ.>N^n~              tsort.debug  .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  <                +                          3           2                 ;   o   ֆ  `                H   o   88                  W   	        X                `   	                       i         00	                    d         HH	  P                o           (                 u         4                    {         4                             PPN  |                          O                            U                             U                             U                             U  `                              V                           V  0                          W                            W                             W  h                                W                                  W                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ELF              P4        4    (      4   44               4  44                                    @  x            ԐԐ               H  HH              Ptd  ww          Qtd                          /lib/ld-linux.so.2           GNU           	               +"           )K8fUa]|                      I     
                                                 n                 Z      g                                     q            C            2      3      E                            a            ,           %      '                          "      p      x      S      _     E                  C                  }      2                                      %                     '        D`     L   '        '       .      libresolv.so.2 __gmon_start__ _Jv_RegisterClasses libnsl.so.1 libdl.so.2 libm.so.6 libcrypt.so.1 libutil.so.1 libpthread.so.0 libc.so.6 _IO_stdin_used strcpy __printf_chk exit _IO_putc strncmp strncpy __stack_chk_fail putchar realloc stdin fgets strlen memset warn __fprintf_chk stdout fputs memcpy fclose __strtol_internal malloc stderr fwrite strchr __vfprintf_chk __strcpy_chk __sprintf_chk fopen64 strcmp __libc_start_main free GLIBC_2.4 GLIBC_2.1 GLIBC_2.3.4 GLIBC_2.0                                                     ii
        ii
        ti	        ii
         ԑ   '!  '"  '                 	  
      
           $  (  ,  0  4  8  <  @  D  H  L  P  T  U    s   5ܑ%    %h    %h   %h   %h   %h    %h(   %h0   % h8   p%h@   `%hH   P%hP   @%hX   0%h`    %hh   %hp    % hx   %$h   %(h   %,h   %0h   %4h   %8h   %<h   %@h   p%Dh   `%Hh   P%Lh   @%Ph   0%Th    1^PTRh`_hp_QVhp[US    [X t
X[ÐUS=' u?̐-ȐX'9v&    'Ȑ'9w'[]Ít& '    UАt    t	$АÐUE@@    @]Í&    U$   ]}
  $    z
  C    C   $;1   ؋]}]Ív '    UWVSEU@ÃE    D$4$	  D$    Ǎ    8UD$$Eۉup8~l]1t& t(E#B9t>t ut&;ut-fE@׍&    ΋Uj;uuӃ[^_]Ðt& UWVS]}u
1[^_]1t'11    `w҃9ҍ4u#Su붍v t9suC|$$&uC뒍    '    UWVSE   E1t"1`w҃4EuU#B<    :u
   ft99suCM$L$uߋC$  EC   [^_]$   %  ËE$  CUsS1[^_]Ã1[^_]$     ËE$  CUsSMQAQkd<~M$Y1두UEEX@ @]Ív '    UUt$BuB    B B 7B7]Ë  ډ'    Uuu]7tFC7tF9C|؋u]]Í&    D$CD$$-  ؋u]]$          @    @    @    @    @    @    낐U(uu}}]t\4$ÉE9_|2\$t$$EG GG]u}]Ðt& G\$D$<$m  빾c`띍t& US$    ËE$D$\؃[]Ít& USE]D$`  $ 'D$t'D$ '$S1t[]Í    $D$֍    '    U]]uuF9C|6Ut$$T$s0 C C]u]Í    D$CD$$]  뵍t& '    UUMtQz u:z uD$    D$c`$\ËBD$$D$EÍv B\$$D$    $D$Ít& Uc`VS ut~~~ u4 +F^ [^]ÍFD$   D$4$  ~ tF\$D$L`D$D$   $; t; u떍t& US]t{ tKt	C[]Ã1[]Ít& $8ڍ    U}}]]ut@{ tG<$)ƋC9C|:SFD$|$$sC C]u}]É$믉D$CD$$}  뱍t& '    UVS]u{ tBC9C|OSEt$$D$wSS C C[^]É$BC9C}t& D$CD$$  뜍t& '    US]{ u$CD$D$E$@[]ÐUWVSM]}u"ft& 9tZQt;<\uqQ9Et<\u\Aщu [^_] [^_]UVMS]uu;$tD9t/t \u\u [^]Ðt& \븐t& UWVSE8 tKU:t.t6E8t!Qt!8uXu[^_]Ã> u1[^_]Í&    '    U(EED$ED$   D$ '$$fU(EED$ED$   D$ '$$   &    U]&    UEuD$E$tá'D$   D$   $R`D$$   [t& '    UEu$tá'D$   D$   $R`D$$   fU}}]]uu9}u$]u}]Ðt& \$$ڍ        U]]u$$.\$Ɖ$]u]ÐUSÃC9w t
	t
u9fv[]À;t}t$D$d[]Ð&    UVSӃ~D$b`4$tD$d`4$[^]Í        UVSÃCP9w    < t<	t<
v u9vB B+;Cr:
tD$`$R[^]Cv UWVS=7 tL$D$i`7)  7g  4$D$`[^_]$D$d7      K@LD$n`D$   D$   D$$ DJD$ D4$w79~297}\$D$s`D$   D$   $ D97   @LD${`D$   D$   D$$ DD$ D4$7D$D$`D$   D$   $ Dw4$D$ D[^_]4$D$`[^_]wD$D$`D$   D$   $ DIv '    UWVS   }   MXtv_E    tE  uk$    kxUÄtM;M  MU
xĬ   [^_]Ít& $,hE     $c`4xǃt5  EUD$MD$    $    T$D$tx~f4M   &    ML$D$    F$    D$ED$x$ÉD$
$%9t}]E  ËxxB$'D$   D$dÉ$x$L$D$   D$Zd$x$x}$@e>MUMD$    T$D$L$$    x$    zD$dx$EUD$MD$    T$D$EΉ$nÉD$x$$UxD$ZdU$tE  $    D$Xcx$fE  MML$D$    $   D$ED$x$ED$tp:  ED$c$UD$,c	$Et*D$    D$
   D$     $>  xD$c$MMcL$D$    $   D$ED$x$ÉD$Z$rx1   =  uԅt-UD$    D$
   D$    $`D  f D} x DD$ D$E    E$]$    D$Ecx$E<   6$    t҉xM  $D$bEED$MD$=   $   D$ED$x$ÉD$$$<}
  u7E    E  MuMD$   t$L$D$$   bD$ax$MD$   t$$   D$ED$"x$ÉD$n$xD$a$0MD$   t$$   D$ED$x$ÉD$$*EE    E   $tdcxt5  ED$MD$    $   D$ED$Bǋt: ug=7 6  =7 0dub=7 U5  D$D$3dD$   D$   $ DD$ D<$Qd:u!Rd:BuSd:Bu	AB  x|$$<$xD$Zd$EE   E  $    D$Ocx$E  *$\dx$TdxEE    E  W$odxQ$jdx:$cdx#$ctMD$    $   L$xED$MD$a=7 YA  <"@  <'@  T$$cm$ D D DtT1ɉB< Dw	B D DB<vB<vB<	vƁ D_Du DD$_   $ DwM  4$<$xD$c$D$ D  $    1UML$7 D$    pxMT$$   D$$    EUT$7$7D$1d$#MML$D$    $   D$ED$Eء7$&M؋E77    PD$b$u>5  Cs/5  1<}tB4  <;u$    v D$bx$uEUD$MD$    $   T$D$x$ÉD$4$LxD$d$xD$,c	$*X=   N=  D$    D$
   D$    $EMML$D$    $   D$ED$8x$ÉD$$xD$Zd$FE  U$    uUD$V   t$$   T$xMD$x$ÉD$$xD$b$UMD$V   t$T$D$$   _x$ÉD$$xD$g$m]E   E#   1IE$    $    xtEfB  UD$c$&E    wM$    Mb)E{A  MML$D$    $   D$ED$iUD$c$EE܋M$L$UD$c$nMD$*c${U3cu7cED$E$7MUMD$    T$4MD$L$$      @W?  +D  *G  uEF  xD$:c$x|$$xD$Md$xE܉$D$MxL$$xD$@c$OxM$L$ZEÅքttxD$Zd$<$CU$8M$-E܉$"E   E  M]\$D$`   $   D$ED$bD$ax$UM\$D$_   T$D$$   "x$ÉD$n$EE   E_   ]$    uD$dx$&MD$    t$$   D$ED$x$ÉD$$ xQ|
=  xD$d$UMD$    t$T$D$$    *x$ÉD$v$D$dx$8E    E  @$dxQ$    xMD$x$$    uOD$bx$MD$   t$$   D$ED$Ox$ÉD$$xD$Md$]MD$   t$$   D$ED$x$ÉD$?$WtA  xD$Zd$$    cD$bx$ED$MD$    $   D$ED$`x$ÉD$$D$Zdx$n]E    E  $    D$dx$Q7c`7c`$    tx*=   D 7D$x$4<  xD$*d$t7 t	=7 t#= D ,?  xD$ D$M13MT$UD$    L$$T$Ƌ 8 .  =7 4  =7 0dub=7 B  7   UI.  @LD$AdD$   D$   D$$ DD$ D4$79-  97}\$D$GdD$   D$   $ DA$    xtUuMD$    t$T$D$$    x$ÉD$>$VtMD$    t$$    D$ED$Ë 8;\E  $
WUuMt$D$#   T$D$$   XD$ax$MMt$D$$   L$D$$   ÉD$x$d$|UMt$D$$   T$D$$   x$ÉD$$6uE   E#   
$    OD$cx$M<M 6  T$UED$    D$$   T$>x$ÉD$$xD$c$EUD$MD$    $    T$D$ED$$   $E_A  MD${   $|A  s t1}^1  ]S1  t}t]u $    ]\$x$xD$c$jxD$,c	$t*D$    D$
   D$     $]:  \$t$D$(eD$   D$   $ DxD$ D$EUD$MD$    $    T$D$tx$ÉD$$E$E    E  $    D$dx$xMUMT$D$    L$D$$   ED$x$6EK+  UщUB<vB<vB<	v$t_t+MM+  xD$d$MML$D$    $   D$ED$H0D$   4$Et ME4$L$D$'uU x\$$[$sE$hxD$d$MML$D$    $   D$ED$x$ÉD$$	xD$%e$EUD$MD$    $    T$D$Fx$ÉD$	  $    uD$dx$mUMD$    t$T$D$$   x$ÉD$/$GxD$%e$MUD$    t$D$T$$    x$ÉD$$    "D$ax$MML$D$    $   D$ED$x$ÉD$k$xD$%e$-EUD$MD$    $    T$D$x$ÉD$$$tiwMt<M?;  xD$d$MUMD$    T$D$L$$    8ÉD$x$$$    =7 x,  t8  D$dx$$    D$dx$    jD$dx$|dkx$dTx$     DD$bx$ED$MD$    $    D$ED$ue!  t& N!  \YuAY0<	wA0<	wA0<	w[FAFAFAF]$    MD$cx$t~M3  ]xMUT$\$D$    D$$    "x$ÉD$n$xUx}xD$a$Ux	tMUD$    T$D$M$    L$ÉD$x$$dJx$d3x$   D$`x$UxXME    E  o$    =7 x'  $D$c.xD$c$EMD$MD$    $   L$D$ÉD$x$$D$cx$&$    D$Mcx$E  '$    D$ax$dEMD$MD$e   $   L$D$ÉD$x$#$;}E   Ed   EUD$MD$e   $   T$D$sD$ax$EE   Ed   ED$MD$e   $   D$ED$D$ax렋M]D$P   \$$   D$ED$D$ax$UM\$D$Q   T$D$$   x$ÉD$$EE   EP   M]D$P   \$$   D$ED$4D$axWM]D$P   \$$   D$ED$D$axM]D$K   \$$   D$ED$D$ax$UM\$D$L   T$D$$   tx$ÉD$$EE   EK   MuD$   t$$   D$ED$D$ax$:UMD$   t$T$D$$   x$ÉD$$4MD$   t$$   D$ED$x$ÉD$$]E   E   $    D$dx$]ED$MMD$    ۉD$L$$x$ÉD$G$]xD$Zd$EE  E'E   $    ]D$ax$ED$MD$Z   $   D$ED$Zx$ÉD$$uE   EZ   $    D$ax$aEUD$MD$e   $   T$D$x$ÉD$$    tMɉxQ$  t,  MUMT$D$    L$D$$   hÉD$x$8 4  $tG  $c`||tL$D$mbD$   D$D$   $ DxD$ D$|$DE&  t   777    tB<4  B<)  797}7$    $     c	MD$    L$$    7MD$ED$=7 xM  =7 3  =7 &  =7 7  7xD$xe$7t=7 u7=7*  7 =7 t=7 t7=7 u"  7t=7 uxD$e$y=7 %"  =7 !  =7 !  xz#  M"  ]ED$MD$    $    D$\$Ƌ 8 F  =7 M+  xD$`$x7U  =7 H  7xD$lf$x=7 u+  xt$$4$xډ]xD$a$2=7 *  _4M "  =7 "  7t-xD$`$7D$x$=7 t17:  u=7 E    E  D$8g:Mut$D$   $    D$ED$D$g`x$=UMt$D$    T$D$$    x$ÉD$$$E#xD$g`$UMat$D$   T$D$$   ^x$ÉD$$x   E	E2E   8rxD$a$aE   PM1]\$$   <MT$KD$ED$D$ax$M1\$$   <MT$UKT$D$px$ÉD$$EE    EK   M]\$D$   $   D$ED$D$ax$6UM\$D$   T$D$$   x$ÉD$$0EE    E   UuMD$    t$T$D$$    hMD$    t$$    L$xMD$8ÉD$x$$tUMD$    t$T$D$$    x$ÉD$1$:$    }D$dx$EUD$MD$    $    T$D$zt<
tu틍x\$$$$   D$dbx${UxMMuMD$#   t$L$D$$   D$ax$MD$$   t$$   D$ED$x$ÉD$$MMD$$   t$L$D$$   UÉD$x$$EE    E#   $    D$dx$\EUD$MD$    T$D$EΉ$ÉD$x$$(xD$Zd$E    E  t  MuUD$    t$D$T$$    EË 8   $    D$ax$vx\$$dxD$ a$.]xM\$D$    t$D$$    x$ÉD$ $UxxD$a$TEUD$MD$V   $   T$D$BD$g`x$lMMD$    L$$    D$ED$k:uk:Be#  x\$$.$FxD$g`$MUMT$D$V   L$D$$   ÉD$x$$UE   EU   $     D$ax$ED$MD$Z   $   D$ED$x$ÉD$I$aEE    EZ   8UuMD$   t$T$D$$   D$ax$MMD$   t$L$D$$   YÉD$x$$UMD$   t$T$D$$   x$ÉD$_$wEE    E   N$    D$dx$EMD$M}D$    L$D$$x$ÉD$$MxD$ZdM$E  $    D$ax$|EMD$MD$Z   $   L$D$ÉD$x$M]D$K   \$$   D$ED$D$axU]MD$8   \$T$D$$   nMuD$    \$L$$    xMD$;D$8   \$$   EȋMD$ED$ǋE	<
  u <"+
  <'#
         xD$g`$xMȉ$L$Uȉ$xD$g`$x|$$<$ME   E7   EUD$MD$    $   T$D$%}E   E  Éxv$    u赽D$bx$?UMD$   t$T$D$$   x$ÉD$$xD$Md$UMD$   t$T$D$$   Yx$ÉD$$轼xD$Zd$U]M\$D$    T$D$$    M\$D$    $    L$xMD$ÉD$x$$MuMD$
   t$L$D$$   D$Mdx$諿MD$    t$$   D$ED$Ax$ÉD$$襻MMD$   t$L$D$$   ÉD$x$G$_UE    E
   6$    xD$    $    xED$MD$ED$t<
tu틕x\$$赿$ͺ-EMbD$MD$    $   L$D$ Du'  <\a    <'uۻWb$   $    |MU7bD$    T$L$$   xMD$EċEA
  xD$b$軺MċxL$$覾xD$b$pt  7<  7  xD$b$1xD$Md$MUMT$D$   L$D$$   ÉD$x$$7xD$$軼}  Eĉ$uE   E   Dt& B<vB<vB<	v_t tB<vB<v
u77$ D7x@L7:$    zsD$D$dD$   D$   $ D苳D$ D<$軻7      K@LD$n`D$   D$   D$$ D7D$ D<$d79~297}\$D$s`D$   D$   $ D97  @LD${`D$   D$   D$$ D讲D$ D<$޺<n  <$<\v <"܃|D$Qd<$臺rMD$,c	$躴t-D$    D$
   D$     $4E   uE    xZc   
  mc9u(nc:Cuoc:Cupc:C  tc9u(uc:Cuvc:Cuwc:C]  ~c9uc:Cuc:C.  c   xD$c$zD$D$`D$   D$   $ D: $    虵\$x$'xD$ D$4$)\$9  Dt1҃ DDu鋕xD$ D$裸<$۴xD$b$ut$$ԯE؃hxD$`$wpxFxD$b$0EpD$MD$    $   T$D$x$ED$xD$a$շpx迼UJ	  E$MUT$D$    t$D$$   <x$ÉD$舸$蠳x裼ED$MD$    t$$   D$x$ÉD$5$MxPM؋xL$$U؉$ pxxD$a$蹶px註xD$7$豷xD$c`$蛳MD$d$h$    ܲ=7 `  U\$D$,c	$M$YxD$c$27E    D=7 =7 xD$c$ʵE<t97f  @LD$cD$   D$   D$$ D;D$ D4$k8   xD$g`$J=7 u8(g  xt$$D7xD$$
4$6Ua9ua:Cua:Cu  a9ua:Cua:C,  a9ua:C5  a9ua:Cua:C  k9uk:C  a9ua:Cua:C  D$'   $諪D$"   $蓪D$'   $yD$"   $axD$d$誳EUD$MD$    $   T$D$=)t$D$aD$   D$   $ DxD$ D$6  =7 i  xD$)a$
l    xD$f$۲x1D$a$ò]x谷=7 _  =7 tl    xS÷xD$xa$]]xD$Qd$?$wǅt   EUD$MD$    $   T$D$MD$    L$$   |MD$ED$荹=7 6  |<"  <'  \$$a蓴$ D$ DصE DtT1ɉB< Dw	B D DB<vB<vB<	vƁ D_Du DD$_   $ D蒧l  ,c	D$ D$5.  U$4$
|D$b$ԭ|D$ D$螰|D$b$舰8|  <$赬xD$b$zEMD$MD$    $   L$D$D$    D$
   D$     $;7	  @LD$cD$   D$   D$$ D苧xD$ D$լB=7 ~xD$f$药cf D] 電E    v =7 xD$Pd$<x7D$_c$:E   SxD$a$MD$    t$$    D$ED$艶~=7 ս$dKD$d<$x蕮鮽D$BD$$ D֯D$d$聫t:  EE    E<   k D$gD$   D$   D$D$$ D˥4$CxD$ D$D$d$xD$b$­ExD$$ͮxD$b$藭D$d$肭xD$@f$gxD$f$LxD$e$1xD$`$7$`\$菣txD$`$7\$D$`D$   D$   $ DvxD$ D$蠬xD$e$芬D$EML$D$    $    D$x$ÉD$k$胨xD$`$-D$`$xD$`7$UxEUD$MD$    $    T$D${x$ÉD$Ǭ$ߧxD$`$艫qxD$b$n7Zd.xD$a$I>xD$g`$.,xD$g$3=7 xD$Ma$xD$b$ЪxD$Zd$赪 M BAEEÅۉttxD$d$ixM܉$L$tUxT$$_x|$$MUxT$$8$    ]脦D$    $3       \$D$    $    D$ED$荱D$ax$跩UM\$D$    T$D$$    Mx$ÉD$虪$豥xD$d$MML$D$    $   MD$ED$ DEu1t& <$t!t<&u܃ UD$ D$McwbmEUD$MD$V   $   T$D$FEQd:F  Rd:B6  Sd:B&  ED$c$_E    4xD$Am$YD$D$bD$   D$   $ D譟xD$ D$קEUD$MD$    $   T$D$eMD$    L$$   EMD$ED$5=7 E  U<"  <'  $cA$ D蔫$ DE腫E DtT1ɉB< Dw	B D DB<vB<vB<	vƁ D_Du DD$_   $ D?*  ,c	D$ D$	  E$迢UЉ$财M$詩E$螩dD$D$cD$   D$   $ DaMD$b$E   MUT$D$    D$L$$    觭ÉD$x$$'\$t$D$eD$   D$   $ DZxD$db$D$bxD$g`$W7=7 wkxD$Qd$#=7 3EEÅۉttxD$d$xM܉$L$xU$T$ץxD$b$衤x|$$该xD$b$yExD$$脥4xD$ha$IKxf D$lf$*xuxD$Md$MD$   t$$   D$ED$蘫x$ÉD$$魽xD$<a$衣xD$`$膣xD$f$kAMML$D$   $   D$ED$Ɖ$u8'  xt$$-4$Ex賨yxD$d$آ&    xD$a$襢D$CD$$ D>xD$d$艟EUD$MD$   $   T$D$7x$ÉD$A$YxD$d$D$CD$$ DDJ_FH xڃ肧1UMЋD$D$dD$   D$   D$$ DGxD$ D$qUx`U D$fh $苝MЉ$耝7d7Zd2D$D$3dD$   D$   $ D还D$ D4$|D$gb$ԠRxD$d$蹠xt$$ǡxD$Zd$葠hD$D$cD$   D$   $ D$D$aEȉ$lUȋD$aUȉ$OMȋM[<M:MxD$We$UD$    T$\$ED$[   $W۾U   $dT$襢\$$d萢錾D$mMȉ$蘜EȋCD$4c
D$aԋxD$Qd$a遫xD$qc$FE   _xD$g`$EUD$MD$=   $   T$D$7萦x$ÉD$ܟ$[ c	7D$b$蓞 c	D$ D$~ c	D$Md$iF  c	t$$T|D$ c	$8 c	h8|   c	t$$8|   c	D$<b$>"  ED$ c	$֝>"   c	D$ab$踝$lLD$ DD$,c	$s_FH D$d<xxD$$T}xD$xc$YE   rX$`\$覓  \$D$bD$   D$   $ D覔xD$ D$М c	D$b$趜 c	D$ D$衜 c	D$Md$茜MA  c	L$$tEЉD$ c	$耝UD$ c	$GMЋ8|    c	D$h$$E8"u c	D$Yb$U c	T$$M9"u c	D$]b$֛ c	D$ab$$lUD$ DD$,c	$|
 c	D$c$肛Y_FH     \$D$bD$   D$   $ DV c	D$]b$'U c	D$b$
 c	D$b$ c	D$Yb$ٚ D' ' t& US$M<*t$[]Í    uED$MD$    D$    $    D$*$dD$D$,c	$%뗍v U8]]u}uE     1]u}]fUMX   tp
  MUT$$    MD$ED$~:E   MUMT$C$    L$D$E9}1ۋE   Q$iUED$MM1ۉD$$    L$뾋UED$MM   D$$   L$돋U]M\$$   ML$D$U\$M몋U]M\$$    ML$D$nU\$MCU]M\$$    ML$D$3U\$MM   D$$    L$	UED$M$    ML$D$]W	  UED$M$    ML$MD$UED$MaU]M\$$    ML$D$^UM\$$    ML$D$9U\$MU]M\$$    ML$D$UM\$$    ML$D$U\$MU]M\$$    ML$D$U\$MjU]M\$$    ML$D$ZUM\$$    ML$D$5UM\$$    ML$D$U\$MU]M\$$    ML$D$^EE17siUED$M$    ML$D$E617*J  UED$MD$E1$    D$3E]M\$$    EML$D$ u\$$    MD$ED$}U\$$    MT$D$UuMM$#vMMEM  ]-U]M\$$    ML$D$DR  U\$MU]M\$$    ML$D$ UM\$$    ML$D$U\$M   |UEAD$MML$D$1T!Љ$C8UED$MM1ۉD$$   L$O  UED$MML$D$131ۉ$U]M\$$    ML$D$gU]M\$$    ML$D$U\$M}U]M\$$    ML$D$mUM\$$   ML$D$HU\$M$    UMD$    $   L$ƍED$MD$4$ÉD$@}D$    MD$$]  $5D$d4$D$,c	$"     D$    D$
   D$    $萈ÍEUD$M$    T$D$94$豍UED$M$    ML$D$U]M\$$   ML$D$U\$M\U]M\$$    ML$D$  U\$M)M]U\$7 MT$D$    D$$    >UM\$$    L$ƋMD$UM\$$    ML$D$UM\$$    ML$D$D$d4$$    q=7 uEtD$d$\$1ۉD$,c	$薊4$*Mut$$    MD$ED$AUM   ]Et$$    MD$T$MUt$Mf$[eUML$M$    ML$D$,1BM\$1$    MD$ED$y5UML$M$    ML$D$L|Mt$D$$    L$,MUED$M$    ML$D$UM\$$    ML$D$UEMD$$    ML$D$UED$M$    ML$D$o)UWVS,u}tEM.t@Mǃ.u1M|$D$E$4Mủǃ,[^_]ËE$胄$ؐE|$ED$jD$D$   D$E$跄ED$4c	$3EE$EtMEXc:u=Yc:Bu1*t$XtE|$$pD$莏AMX,[^_]Ít& UVS]5   e   MEMEMEMEMEMB=O  ~$Pp[^]f\$$j냐&    UVS]5   Y   MEMEMEMEMB=O  ~$Ppe[^]É\$$jL돍t& UVS]5   U   MEMEMEMB=O  ~$Ppߍ[^]Í    \$$j듐&    U]]u5   H   MEMEMB=O  ~$PpU]u]É\$$j9렐UEMt M?tL$D$$?   PL$M$?   D$+É'    U]]u5   A   MEMB=O  ~$Pp]u]Ív \$$j`말&    U]]u5   1M=O  ~$Pp]u]Ív \$$j븉'    US]M$t7T$$kD$谋MD$4c	$tD$Xc$褅؃[]Í        U7D$)kD$   D$CD$ED$ '$~fU   uue   E1}}]t8M.   *tC7T$$tpD$G1D$ъUe3   J  ]u}]fMMD$4c	$4LÀx tYXc:uYc:BtM땋UM|$$D$D$MD$E$Z$S뜉$D$c`.UMXp|$D$jMD$   D$   4$D$~ 't$D$CkD$   $|$    !D$XcÉ$诃4c	\$t$$Z
~US]t+M.t]*t!7T$$pD$7؃[]$    裂D$MMD$4c	$؃[]ËM$yM$j롐&    UVS0uED$    D$t$D$    $    ^D$cÉ$茅$d D$D$,c	$I$衁70[^]ÐUVSEt<;t<
t-u[^]Ã; uրz
B       ɍs t	t
t
v ttۍHt& Ѓ t	t
t

v tu(
uԉ)؃~{{tL$4${^>
u։$D${fUWVS Dt\ Dv Ft<<u 4$q{P@	#??fB?
B 7FuĀ= D#t'$ DD$z[^_]Nk
   tYk   t׿ek   tǿtk   uUWVS,  e   E1E     ǅ     D<
t\<	  N~^J1 D Ѓ t	t
t
t	u[t& 	uЃ v { Dǅ    `Ee3     ,  [^_]Á Dw
 Dv; u{;uF
9fv` Dw$f Dv; fu{|u{|t& u9s Dw
  Dv; u{&u{&t& u9sO Dw
 Dv; u{,u9s) D   9    ; t DwF9ÍQD$   \$$y
C ''$
   D$Ry{;ttED$   D$4$x4$x0\ F 먉ˍF9ÍQ-Gx
UWVSu7<M%   ۉEt$    ]wu}$   |$Ut$D$k$   D$v7~!M   C$i9}7ۉ7tf$    vuEZd[^_]wMt$D$k$   D$iv[^_]ÐU]]u5}ۍ~M$  =tpC$U\$MED$M$vM=O   ~$PpT]u}]Ðt& E$v끐UVSE8/Xt&74Lx _   D$$k Du"V<[   </tJڃt6<\uCS</   <\   <[   ؉ u ; u&74Lx     D$$peD$    $ Dq$c	C[^]fC[8\t'/t=-PtktF<]tBЀ8\uـx \   Ptۉ\/uÍX\ڈuv Z\x]Xu$|f$|v t& '    UWVSuKҀ           C<	E Dwt& EEC<	v.   ÉD$$kstUF~$kD$st:UUF<+   <-u   EEB<	vU D$    $ D$c	t& [^_]Ã0<	wJU.UC<	@EEC<	v#U~Up&    UWVS<w
$ s7t$D$pD$   D$CD$ '$r볡74Lx F     
L/'  L7D$7$PyeL;'t$r7L    4Lx #   1<[^_]þ      ܃CS<=  D$   )  $a   $c	뒍SBT$$ DD$|8 u&74Lx    D$$k}D$    +  $ D    $c	C:K{L  ?=  ^!  GD$   $>$c	G!     9  $     $$  A    s{0s\  7C0<	wl0<	v)D$4$D$    D$
   D$    4$$c	:p;7~70      B<vB<vB<	v_t977  )4$2  D$   $c	{&CSj  &      [C   D{=Csx  <      {=s{  D$   $aQ5!     $c	CS<>c  D$   	  $k   $c	<
$k;{
Cx  C     CD$      $$c	    C   { Dt& 
A<vA<vA<	v_t 1c;(    D%  Cu7l    D  D$    %  $l$    $c	8 D
A<vA<vA<	v_t 1;(%  Cl: DuDl:Du5l:Du&l:Du DB<w  DD$    $ D5C    $c	j D
A<vA<vA<	v_t 1 D;(%  C)mU9"  *m:D  +m:D        D
A<vA<vA<	v_t 1
 D;(%  CdlM9  el:D  fl:D  gl:D        D
A<vA<vA<	v_t 1l;(    D%  CZ        D
A<vA<vA<	v_t 1 D;(%  Cb9^  b:DK  b:D8  77f  D$    $ DJ5C    $c	 Dv 
A<vA<vA<	v_t 1)l;(	    D%  C/       T D&    
A<vA<vA<	v_t 1l;(    D%  C8    $c	A       D
A<vA<vA<	v_t 1l;(    D%  Cu DB<w  DD$    $ D5C    $c	$ D&    
A<vA<vA<	v_t 1;(%  Cuc: Du:vc:Du+wc:Du7777d    D    7   T D&    
A<vA<vA<	v_t 1 D;(%  Cl: D
  l:D
  l:D
  l:D
  `7U m:u2m:Bu&m:Bum:Bu7E1dum   uE	mum     MB<w }ED$    $l5C    $c	 Dt& 
A<vA<vA<	v_t 1l;(    D%  C    7   m D
A<vA<vA<	v_t 1k;(    D%  C        D&    
A<vA<vA<	v_t 1 D;(%  CtlU9a	  ul:DN	  vl:D;	       M D
A<vA<vA<	v_t 1l;(    D%  C
   DB<w  DD$    $ D5C    $c	 D    
A<vA<vA<	v_t 1*d;(    D%  CV  
     $ D&    
A<vA<vA<	v_t 1;(%  Cl: Du&l:Du DB<w  DD$    $ D5C    $c	m D
A<vA<vA<	v_t 1;(%  C=m: Du>m:Du?m:Dtm    DI	   DB<w  DD$    $ D5C    $c	{|CO
  "     pSt& < t<	t<
t<
t<tt& uZ;      $ D&    
A<vA<vA<	v_t 1;(%  Cl: D  l:D  l:D  7EbuYm   a    $c	Q      U D
A<vA<vA<	v_t 1;(D$    $ D%  CT5C    $c	 D
A<vA<vA<	v_t ;(  C%  D$    $ D5C    $c	d D&    
A<vA<vA<	v_t 1m;(    D%  Cu DB<w  DD$    $ D15C    $c	 D
A<vA<vA<	v_t 1m;(    D%  C   DB<w  DD$    $ D5C    $c	
 D
A<vA<vA<	v_t 13m;(    D%  C    7     D
A<vA<vA<	v_t 1m;(    D%  Cx       D$   (  $kU   $c	C D
f
A<vA<vA<	v_t 1;(%  Czm: Du&{m:Du DB<w  DD$    $ D5C    $c	-C    C}      E DHE DSl9uyl:Dujl:Du[l:DuL     hl    DW
       ^l	    D       ,7n9Euj8n:Du[9n:DuL     Yl    Dx        l    D	  '  7   {Em9uIMm:Au:m:Au.m:Au"B<$bfm9Um:Bm:Bm:B또t& D$   $k$c	m    DHm    D0m    Dm    D m    Dt& l    DG+C  r#     D$   )  $a1   =$c	+C  /     l    Dm    D<=m  >      A<~e  -        =
77C%  D$    $c85C    $c	CD$   $a5)     $c	$_"{=CC  D$   !  $k   $c	C:CEC< t5<	t1uԸ   kuZ}Ծp      =EU< u   .     EԾ|      =  ڄuBp< t<	t<
t& t<
t<t<=t& LBRu<P- t	t
t
t݀t& tԀ"x"@7l    D    $c	N       DEl9E  l:D  l:D  l:D    $c	B      ?2l: D  3l:Dx  4l:De  5l:DR    $c	P      cm: Du&dm:Du DB<w  DD$    $ D5C    $c	fd: Du5d:Du&d:Du DB<w  DD$    $ Dh5C    $c	D$   )  $a/   $c	d    D   DB<w  DD$    $ D5C    $c	X`l9EuDal:Du5bl:Du&cl:Du DB<w  DD$    $ DN5C    $c	D$   (  $k   $c	6l    D    7$c	M      ^#l    Dq       ,   ub          Am    D       m    D   DB<w  DD$    $ D5C    $c	Sl    D-       !d    Dh    7   9m    D  &  7   ,d9EuQ-d:DuB.d:Du3/d:Du$  $c	E      RD$    $ D5C    $c	1      m    DeIl    D,a9Eu"a:Dua:Dm9Eu"m:Dum:Dl	    Dm    Dl	    DEl8tE DuԸ   luH}B<w EԈED$    $25C    $c	uԸ   ltuԸ   ltUl:ul:Bul:B{B<w }ԈdD$    $ D5C    $c	$}V D4c9u5c:Du6c:Dt=a9ua:Dua:Dtl    DuK DB<w  DD$    $ D5C    $c	Vl    Du럋u!m   uHMB<w }UD$    $`5C    $c	u'm   uEB<w M뤋u,m   u}B<w Ex<l    DuK DB<w  DD$    $ D5C    $c	2Bl    DtHl    DtMl    DuSl    DtXD$    $ D5C    $c	ml9Eq  nl:D^  ol:DK  pl:D8    $c	C      41(l: DE D  l:D  l:D  l:D       m    Dt<m: DuDm:Du5m:Du& m:Du DB<w  DD$    $ D5C    $c	 ql    D   a9Eua:Dua:Dtewl    DtQ|l9Eu-}l:Du~l:Dul:Dtl    D    DB<w  DD$    $ D5C    $c	.@m    DuC=7   ց
  l    Dz^Hm    Du$  $c	D      Mm    DE D8uEdEdMTm	9MuK}Um:Gu<Vm:Gu0Wm:Gu$  $c	O      uԸ   fM gM hM iM jM kM lM mM nM oM pM qM rM sM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Xmu$  $c	R      uԸ   ^mu$  $c	T      c9EuW}c:GuHEB<w MԈUD$    $5C    $c	<uԸ   mu}B<w EԈ뢋uԸ   emtՋuԸ   lmtuԸ   qmtuԸ   vmtuԸ   |mtuԸ   mmuԸ   mPfUWVS1ۃ(c	    L     L0c	 @C 8f @  `f   L  @ft, Lx"  	9  &    ft Lx"     =L  =L  L   v -CQ0c	
0c	 @ft   x="  f  W   @w   [^_]	9l	?@CE   +E   Lwj$ uD$BD$B$3   D$777LCXu7 <M)  t7E
0c	? )E
0c	)C	uLQ0c	fA CPCLP5 Lp   L~     ftx"  ~p C  A0c	fYCBCLB~5 Lg La$mO(c	69u6x! L;0c	=CK  	P0c	fXCPC$c	PL LLC   Q0c	fYCPC$c	P} L~ L    1VBD$B$   D$\$D$    $?   D$LL7D$D$7D$B$   D$臿LD$BD$B$   D$7D$T  L    7NBD$B$   D$7D$覿L    7BL
D$BD$B$   D$eLL    $   D$7LBD$B$   D$蟿D$C@$   D$胿LnD$    BD$B$CBD$BD$BD$BD$B$L   D$jLBD$B$   D$D$    $   D$L$L$   D$蠿LD$B$   D$蝾LD$BD$B$U   D$L^B$   D$6LAD$BD$B$   D$蜽LD$BD$B$
   D$rL$   D$ƾLD$BD$B$   D$,LrD$   $ki\$t$$   D$LlrD$   $a.\$t$$   D$趼L1B$   D$	LD$BD$B$   D$oL$@   D$ýCD$BD$B$   D$/L$@   D$能LB$   D$fLqLeD$B$   D$WLBD$BD$B$U   D$蝻LD$BD$B$   D$sLC@M+  >7L$(   D$蒼L$)   D$vLD$B$   D$sL^D$B$   D$PL;D$B$   D$-LD$B$   D$
LD$B$   D$LD$B$G   D$ĺLZ$}\$$W   D$虺LB$   D$\LC@M+  >J7>B$   D$LC@M+  >7$   D$ѺLC M+}  >7$   D$荺LC M+E  >|7p$   D$ILT$   D$-L8B$    D$L$!   zL$!   D$޹LD$   $a\$D$    $!   D$2LC <M)  7D$   $aS\$D$C@$!   D$ӷLC <M)  ;7/ZD$   $b\$D$    $!   D$wLC@<M)  7ZD$   $b\$D$C $!   D$LC@<M)  ~7r$Ӹ77LPD$    B$(77L%BD$B$L	BD$B$LBD$B$K   D$޶LB$"   D$衷L$"   D$腷LBD$BD$B$#   D$LeBD$B$#   D$VLABZ$$\$D$C@$%   D$膵LB$@   D$ٶáC@$Ǻ$请\$D$C@$%   D$/LB$芺$rD$C@$%   D$膵LqBD$B$'   D$bLMB$@   D$%D$C@$J   D$)LBD$B$J   D$LBD$B$H   D$LBZ$@   D$衵\$$H   D$譴LBD$B$I   D$艴LtBZ$@   D$I\$$I   D$UL@BD$BD$B$H   D$蚳LBZr$@   D$\$t$$H   D$_LBD$BD$B$I   D$4LBZr$@   D$聴\$t$$I   D$Lt$*   D$MLXBZ$%\$$*   D$AL,$+   D$L$*   D$$>   D$ٳL$>   D$轳LL    D$BD$B$.   D$LD$BD$B$.   D$LeBLXD$B$   D$JL5L    &$,   腳$/   w\$$   D$L$,   M$/   ?\$$   D$˱L$,   L$-   D$yLD$B$   D$vLaL    R$,   豲L<$-   D$L $/   }$   \$D$	L$&   Q$   \$D$ݰL$&   %$   \$D$豰LB$0   D$r\$$   D$~LiD$B$1   D$[LFL    7BD$B$2   D$&\$$   D$L$/   Z$   \$D$D$    $2   D$ίL$&   $   \$D$袯D$    $2   D$芯LuL    f$3   D$?LCu777*D$BD$B$4   D$腮7LCPu7 <M)  7$4   D$襯LC 7$5   L$6   Ln$7   ͯLX$7   D$1L<$8   蛯L&$V   腯L$V   D$LBZ$\$$S   D$ݭLD$   $k菸$9   D$菮LD$   $ka$9   D$aLlD$   $b3$9   D$3L>BD$$踭D$C@$:   D$LBD$$聭CËBD$B$g\$D$C@$:   D$7LBD$$,D$C@$;   D$萬L{BZD$B$\$$F   D$]LHBD$$¬CD$BD$BD$B$<   D$LBD$$|áCpD$    $c`讶\$t$D$C@$<   D$蚪LBD$$D$C@$=   D$胫Ln$m譭   7L7@747(7&    L$qUWVSQ(yw$P   L!2$    72  G8-u]Hx  F  O  9P  0v     fJ  :-uJzu$x9C$i9£Ca:ua:B  8   'LL  74Lx    -,c	-4c	O  L]\$D$    $    D$%L\$D$    D$    D$$    ;$n1D$$nÉ$4D$1n$4D$q$3D$$r$3D$lr$3=7 t2 c	t)D$$4 c	$/D$`$3t$$44$/$5$7tXcK  D$ 'T$D$rD$   $) 'D$@   D$   $rD$*$    +ntLot-D$$m5   7@7$77jD$    D$
   D$    <$z)779-juTc`8 xD$@l$$)Lh$\q.5$Q1lc`aaC$4qD$4"U]Ít& '    UWVS^   ]2  'E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUStЋu[]US    [1  )Y[                                     %.20g Out of memory!
 	      @Fld $%s, $Fld%d, $%s) $Fld%d)  = split(/[%c\n]/, $_, -1);
  = split($FS, $_, -1);
  = split(' ', $_, -1);
 $FS = ' *+?.[]()|^$\ %c 

 line:  while (<>) {
 exit $ExitValue;
 
sub Getline%d {
     &Pick('',@_);
     ($fh) = @_;
     $FNRbase = $. if eof;
     local($_);
 }
    $_;
}
  ..   if  if (  &&   ||  !  ?   :  == eq != < lt <= gt >=  =~  .  $/ = '' $/ = "\n\n"  +   -   *   /   **   %  ++ -- Internal error: OGETLINE %s open( | ) || die 'Cannot pipe from " ) || die 'Cannot open file " '." ".' ".';
 , '|'  = &Getline%d(%s) ,$getline_ok) sprintf( substr( , -1) (@  = split( /\%c/ /%c/ /[%c\n]/ $FS ' ' index(  =~  return  sub  local( ) = @_; return &  =~ s /g ($s_ = '"'.( ).'"') =~ s/&/\$&/g,  eval $s_ /ge /e $s =  /$s/ defined $ delete $ * $FNR ($.-$FNRbase) $NR $. $NF $#Fld $0 $ARGC ($#ARGV+1) [] { $ARGV[0 $ARGV0 $Fld $%s $Fld%d $Fld[ close( Internal error: OCLOSE %s close  Internal error: OPRINT ) || die 'Cannot pipe to " &Pick('%s', %s) &&
 print $, join(%s,@Fld) $%s,  $Fld%d,   $_ rand(1) srand( atan2( sin( cos( system( log( exp( sqrt( int( join(%s,  (length( ) - 1 last next line exit $ExitValue =  ;  last line next else  do   while ( ); for ( Illegal for loop: %s foreach %s ($[ .. $#%s)  foreach %s (keys %%%s)  Garbage length in walk els Garbage length in prewalk    $[ = 1;			# set array base to 1
    ';		# field separator from -F switch
   $FS = ' ';		# set field separator
  $, = ' ';		# set output field separator
    $\ = "\n";		# set output record separator
  $ARGV0 = $0;		# remember what we ran as
    chomp;	# strip record separator
    continue {
    $FNRbase = $. if eof;
}
 while (<>) { }		# (no line actions)
        if ($getline_ok = (($_ = <$fh>) ne ''))     if ($getline_ok = (($_ = <>) ne ''))    
sub Pick {
    local($mode,$name,$pipe) = @_;
    $fh = $name;
    open($name,$mode.$name.$pipe) unless $opened{$name}++;
}
    && ($RLENGTH = length($&), $RSTART = length($`)+1) delete $opened{%s} && close(%s) ) || die 'Cannot create file "  1`1k1:${üe::%߻`ڹݾWK@Qb28,<R7+J1γƱegiqƣ`I2נqq˝؛KKz K< jjdj22222kd0~Kzj~C88888K2,, 88888KN%s:%d type > 255 (%d)
 panic: aryrefarg %d, line %d
 %s in file %s at line %d
 Adding %s
 #!/bin/awk #! /bin/awk #!/usr/bin/awk #! /usr/bin/awk %-5d"%s"
 (%-5d%s %d
 Search pattern not found:
%s eE +-0123456789 Ignoring spurious backslash **= getline !~ >> /= String not terminated:
%s ARGV atan2 break BEGIN continue cos close chdir crypt chop chmod chown delete die END else exp elsif eval eof exec for function FILENAME foreach format fork fh gsub goto gmtime hex index join keys kill length log local locatime match ORS OFS OFMT # open ord oct push pop reset redo rename split substr sprintf sqrt SUBSEP sin srand system select seek stat study sleep symlink sort tell times until unless umask unshift unlink utime values while write wait syntax error yacc stack overflow Unrecognized switch: %s
 #!/usr/bin/perl 
eval 'exec  /usr/bin PROG JUNK HUNKS RANGE PAT HUNK PPAREN PANDAND POROR PNOT CPAREN CANDAND COROR CNOT RELOP RPAREN MATCHOP MPAREN CONCAT ASSIGN ADD SUBTRACT MULT DIV MOD POSTINCR POSTDECR PREINCR PREDECR UMINUS UPLUS GETLINE SPRINTF SUBSTR STRING SPLIT SNEWLINE INDEX NUM VAR COMMA SEMICOLON SCOMMENT STATES STATE BREAK NEXT EXIT CONTINUE REDIR IF WHILE FOR FORIN VFLD BLOCK REGEX LENGTH LOG EXP SQRT DO POW GSUB MATCH USERFUN USERDEF CLOSE ATAN2 SIN COS SRAND DELETE SYSTEM COND RETURN DEFINED STAR  Can't pass expression by reference as arg %d of %s
 Recompile a2p with larger OPSMAX
   panic: unknown argument type %d, arg %d, line %d
   panic: unknown argument type %d, line %d
   Search pattern not terminated:
%s   Unrecognized character %c in file %s line %d--ignoring.
    Awk script "%s" doesn't seem to exist.
 Translation aborted due to syntax errors.
  /perl -S $0 ${1+"$@"}'
    if $running_under_some_shell;
			# this emulates #! processing on NIH machines.
			# (remove #! line above if indigestible)

    eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_0-9]+=)(.*)/ && shift;
  			# process any FOO=bar switches

 Please check my work on the %d line%s I've marked with "#???".
 The operation I've selected may be wrong for the operand types.
                |DDDDDDDD*DDDDDDDDDDDDDDDDDDDDD*2tD+rCrrrrrrrrrr+.+D6<h"#<#" c$'&)%O)(y*$'+,(+s+DD6<h"#<#" c$'&)%O)(y*$'+,(+p&&*+CEE7FnF{FFFFGpGCCGGGCCCCG'HDHnHHHHITIqIIIIJ JCJmJCCJJJK'KJKmKKKKLGLLL1MMMMjMMMMVNNO5O`O|OOOOO PDPPPQ8QqQQQQRERpRRRS-SYSuSSCCSSS T-TPT_TTTTU$U3UIUeUUUUV?VNVVVCCWC"CW[WWWXX-XIX_XuXXXXYGY~YY
Z=ZZZ|E        =;5/+)%
=;5/+)%
=;5/+)%
=;5/+)%
=;5/+)%
=;5/+)%
=;5/+)%
=;5/+)%
;  :   P  p  (  H  @h             0  4  T  l     `        P(  H  0h  `        `     $  `@  `      !  ~           @   `    0          0,  P  l       Е      00  P  @p              |        0   AB
   0   PV   AB
P      P      AB
F    p      AB
F        ;  AB
F       `   AB
      7   AB
         AB
FF         `|   AB
FFF      $  ,   AB
D    @  c   AB
D    \  e   AB
FF     |  |   AB
     p   AG
E         :   AB
D       @   AB
FFF        Б   AB
E        `6   AB
D    0     AB
F    P  0k   AB
E      p  b   AB
C      .   AB
     @8   AB
     	   AB
     U   AB
     N   AB
      @T   AB
FFF      ,  <   AB
FF     L  X   AB
A    h  @D   AB
AC       m   AB
AC           AB
ACF         {]  AB
I      }   AD
D         AB
FI   (  ,  AB
F    H     AB
E      h  p   AB
E            AB
E           AB
FF       W   AB
     px   AB
FF        g   AB
FF        `d   AB
D    <  >   AB
    T  	  AB
IQF      x  
   AB
D      p   AB
E           AB
E           AB
F      
  AB
I      `   AB
F     4  `   AB
FFI      X    AB
E      x  Y  AB
F       n,  AB
F      A  AB
C (     p[  D 	FAB
D                         3      ?      J      T      b      o            X
   `oh   ܃   
                     ؑ               p   P             o o   o                                                    Ԑ        Ƈև&6FVfvƈֈ&6F                                        c:n?nDnJnPnTnYn`nhnnnsnznnnnnnnnnnnnnnnnnnnntn ooooo$o-o3oo7oo%oLo;oAoKoTo[oc	oaogoloqozoooooooooooocoooooooooooooooppppk   dc` [	                                               	                
 
 
 
                                                          
 
 
                                                                
                                                                                                                                   	   
 	       a     c d e b   `          &                 (       )           W   X g      a                g g                                      3 4                g   g g                                 1 2   D         ?                                 h i   f 7                          0                       g g     @ A C                 
 B V     g             | {    g   g 
 g   n   s          = _     a                g                             g g g g g            I   N   M   P   O   K L   F   J              t                               g       g g g       g H G R Q T S   E                            	 g g        g                           & J  ' ( )  h K  , - . / 0 1 j       
                            + .  0 2 3 &@   A B   BPP      B  [             Z  / E   B      .O P U         BZjB    r  X ..  ] ^  \ ` [ a ,               .<<0        - - Pr       D      l Af           k y          ~      m              % 7/[ q  .BB`
mmZ ..            mmmm                          |  O..... E  .mm       _               .  `
B  .~     `
                                       
                 8     o   f                                         	  	G	      	^9            ~         i       2hw          
                    	                                                                               y	    


%  (/m                                                  
       g           {                                                      )^                i
p                                                      i   Xc                                                           $                                                                            A           U R a ? 9 _ ] R ^  `      R P R L R R M * U 	 N e f b U 82 U U U U U U  U >R ~  F } c > d 3 U U U b U U o p 4 5 = e f }  z {  ?  c  a 6  Q 7 _ : 8 ; < ` > U U O > > > > > > > @ A s  y c % 	U > > >  > >   	 U U   ! " #         b  
L    M  % > > N % % % % % c %      v ~   > % % % T % %  567> > v  !$1<2   =B \ CD\ u v Fu   % %        4  x            % B         S T x   % %     S T   \     S T S T S T S T   U U U U U U U U U   U U U   } } } U S T   "  U z U U U U U   U U U U U U U U U   U z U U U U U U       0  > > > > > > > > >    > > >   :    >   ! " #   > ~ > > > > >   > > > > > > > > >   > ~ > > > > > >        % % % % % % % % %     % % % 9 v v v %          %   % % % % %   % % % % % % % % %  %   % % % % % %   9     9 9 9 9 9 9   9       x x x   Y   w 9 9     9 9    
              w                            Y 9 9 Y Y Y Y Y Y  Y      ! " #   [   9 Y Y Y   Y Y   z z z 9 9                                     y       [ Y Y [ [ [ [   [   [       y   \         [ [ [   [ [   ~ ~ ~ Y Y   \     \                                     [ [                                   [                  [ [                       \                     9 9 9 9 9 9 9 9 9     9 9 9         9 w w w     9   9 9 9 9 9   9 9 9 9 9 9 9 9 9   9   9 9 9 9 9 9           Y Y Y Y Y Y Y Y Y     Y Y Y         Y           Y   Y Y Y Y Y   Y Y Y Y Y Y Y Y Y   Y   Y Y Y Y Y Y y y y     [ [ [ [ [ [ [ [ [     [ [ [  \ \ \ [   \       [   [ [ [ [ [   [ [ [ [ [ [ [ [ [   [   [ [ [ [ [ [                               6                                                                    6   6 6 6 6 6 6   6             '      6 6 6   6 6                                                     '   6 ' ' ' ' ' '   '                     ' ' '   ' '           6 6                                             ' '                                   '                     ' '                                                                                                                           6 6 6 6 6 6 6 6 6     6 6 6         6   B     6  6 6 6 6 6   6 6 6 6 6 6 6 6 6   6 V 6 6 6 6 6 6         ' ' ' ' ' ' ' ' '     ' ' ' 5       '           '   ' ' ' ' '   ' ' ' ' ' ' ' ' '   '   '     ' ' '   5     5 5 5 5 5 5   5             ,       5 5 5   5 5                                                       ,   5 , , , , , ,   ,             -       , , ,   , ,           5 5                                         -   , - - - - - -   -                     - - -   - -        
 , ,                                     -                       ! " #                         - -                                                 5 5 5 5 5 5 5 5 5     5 5 5         5           5   5 5 5 5 5   5 5 5 5 5 5 5 5 5   5   5 5 5 5 5 5         , , , , , , , , ,     , , ,         ,   B      ,  , , , , ,   , , , , , , , , ,   ,   , , , , , ,         - - - - - - - - -     - - - .       -           -   - - - - -   - - - - - - - - -   -   - - - - - -   .     . . . . . .   .             /       . . .   . .                                                       /   . / / / / / /   /             '       / / /   / /           . .                                         '   / ' ' ' ' ' '   '                     ' ' '   ' '   ~   
 / /                                     ' '                     ! " #   '                     ' '                                                 . . . . . . . . .     . . .         .           .   . . . . .   . . . . . . . . .   .   . . . . . .         / / / / / / / / /     / / /         /           /   / / / / /   / / / / / / / / /   /   / / / / / /         ' ' ' ' ' ' ' ' '     ' ' ' $       '           '   ' ' ' ' '     ' ' ' ' ' ' ' '   '   '     ' ' '   $     $ $ $ $ $ $   $               *     $ $ $   $                                                             $ $ * *   * * *           +           $ * * *   * *         $ $                                           + + * + + +         !               + + +   + +                 * *                                 ! !   + !                           ! ! !   ! !                   + +                                 %   !             $ $ $ $ $ $ $ $ $     $ $ $         $       ! ! $   $ $ $ $ $   $     $ $ $ $ $ $   $   $ $ $ $ $ $           * * * * * * * * *     * * *         *           *   * * * * *   * * * * * * * * *   *   * * * * * *   + + + + + + + + +     + + +         +           +   + + + + +   + + + + + + + + +   +   + + + + + + ! ! ! ! ! ! ! ! !   " ! ! !                     !   ! ! ! ! !   ! ! ! ! ! ! ! ! !   !   ! ! ! ! ! ! " "    " ~   
               " " "   " "                                     ! " #    "                                                       " "                                                                                                                                                                                                                                                          " " " " " " " " "    " " "                    "   " " " " "   " " " " " " " " "   "   " " " " " "                                                                                            B                                                                                                                                                                                                                                                                                                                                                                       
                                                        ! " #                                                                                                                                                                                                                                                              <                                                        <     < < < < < <   <               8     < < <   < <                                                         8 < < 8 8 8 8 8 8   8 :                 < 8 8     8 8         < <                               :       : :   : 8 8 :                     : : :   : : 8                     8 8                                 : :                                   :                     : :                                                           < < < < < < < < <     < < <         <           <   < < < < <   < < < <   < < < <   <   < < <                 8 8 8 8 8 8 8 8 8     8 8 8         8           8   8 8 8 8 8  8 8 8 8   8 8 8 8   8   8 8 8   : : : : : :     :                   :                :    : : : : : : : : :    :                                                                                                                                                                                                                                                                                                                                                                                                                                B                                       V                                                     ;                                                              ;       ; ;   ;     ;              ; ; ;   ; ;      \                                        ; ;                   \       \ \   \ ;   \                ; ; \ \ \   \ \                                                       \ \     
                    \           #    \ \                     ! " #                               #      # #   #     #                   # # #   #               ; ; ; ; ; ;     ;                   ; ]       # #         ;     ; ; ; ; ; ; ; ; ;   #   ;                 # #   ]       ] ]   ]     ] \ \ \ \ \ \     \   ] ] ]   ]       \                     \     \ \ \         \ \       \ ] ]         ^                  ]                    ] ]                       ^      ^ ^   ^     ^               Z     ^ ^ ^   ^       # # # # # #     #                   #               Z ^ ^ # Z Z # # #   Z    # #       #   ^ Z Z Z   Z           ^ ^                                           Z Z          ] ] ] ] ] ]   ]       Z           ]         Z Z         ]     ] ] ]         ] ]     ]                                                                                                                ^ ^ ^ ^ ^ ^     ^                   ^                     ^     ^ ^ ^         ^ ^       ^                     Z Z Z Z Z Z     Z                   Z                     Z     Z Z Z         Z Z   +   Z                                  +            +                   i     n i i q r  u w x   i i | } +                                    +        k l             +                                       i                          + +                                                                         i i                                                             9            + +   D D   G H  D               D                          B         i                            +   D D D D D D             D     +   D     D D     D r D D r   r D D *      ,-.    D 3r   D   D D D D                   D           @A    D q E  q   q                           q               D               r   r           D D D D   D   D D             D D                     D D D D k     k   k       q   q               k         D                       D D D D D   D D D  ~   
                                           k  k      ! " #             r     r r   r r r r r r r r r   r r r r r r r r r r   r r       r r r r       r     r r r r r   q     q q   q q q q q q q q q   q q q q q q q q q q   q q       q q q q       q     q q q q q l     l   l                           l               k     k k   k k k k k k k k k   k k k k k k k k k k   k k       k k k k       k     k k k k k m     m   m       l   l               m                                                       j     j   j                           j                                 m   m                           p     p   p                           p                       j   j                           l     l l   l l l l l l l l l   l l l l l l l l l l   l l       l l l l p   p l     l l l l l                                       B           m     m m   m m m m m m m m m V m m m m m m m m m m   m m       m m m m       m     m m m m m j     j j   j j j j j j j j j   j j j j j j j j j j   j j       j j j j       j     j j j j j         p    p p   p p p p p p p p p  p p p p p p p p p p   p p       p p p p       p     p p p p p B                                                                                        B                                         
                                                               ! " #     B                                                                                                                                                                              
                                                     ! " #       
                                                     ! " # B                                            
                                                     ! " # B                                                                                        B                                                                       #                        o     o   o                           o                            ;                                            
                             o   o                   ! " #                                              
                                                    ! " #       
                                                   ! " # %      o    o o   o o o o o o   o o   o o o o o o o o o o   o o       o o o o       o     o o o o o B                                    Y   Z V                 $                       B                                     Y   Z V                                                              B                                         V                                         B         	 
         
              V                                                ! " # B          
                          V                        W X           ! " #  
                  B                            W X V         ! " #                                 %                    
          /                                                     ! " #  
          %                                                    ! " #                           
                                                               ! " # B                                   
     V                                                           ! " #         
              B                                 V            ! " #                           B        
                            V                                   ! " #         
              B                                 V            ! " #    
              B                                 V             ! " #                         B                                       
 V                                                               ! " #        
              B                                 V             ! " #                     B                  
                   V                                            ! " #    
              B                                 V             ! " #      
              B                                 V             ! " #                     B                                         V  
                                                                 ! " #  
              B %                               V             ! " #                     B &                 
                  V                                              ! " #      
              B '                               V             ! " #  
              B (                               V             ! " #                     B )                                        V  
                                                                 ! " #  
              B +                               V             ! " #                     B m                      
                                                                 ! " #  
          B                                                    ! " #  
                  B                                            ! " #                                 B                                  
                                                                 ! " #  
          B                                                    ! " #                 B               t        
              V                                                  ! " # v     B  
                                                               ! " #      B  
                                                               ! " # g                                                 
                                                                 ! " #  
                                                                 ! " #                                
                                                                 ! " #          
                                                                 ! " #    
 C E      I                 [                                    ! " #                                                                 [         [     [ [     [   [ [       [ [                   [       [   [ [ [ [                     [                   [                                                       [                               [ [ [ [   [   [ [             [ [                     [ [ [ [                                                 [                       [ [ [ [ [   [ [ [ )   ) ? ) % ) ; ; ? * + ? - ? / ; > ) ? k l ? ( ? % ? { ? %  ,  g % ./^ % /{ ( ) * + , -  / 9?  ) p   !{ : ; < ^ > ? 5 6 ( ( ./; ) > ? , [ ) | p , % (  { ( * ( < ( ( / % ] ^ ) * + , -  / ( ( ( < U ( p   /p : ; < %> ? ) ) 9d { | ) %012, y ) ) , ] ) ^ ,   ) ) % ( % ] ^  ) * + , - p /   ( ; %) ( p : ; < #> ? ) ,-.{ | [ ; ; ) ( ]    ) )   ) @A] ; ; E) ] ^ * ) 	p ( + - "#; { | "#"#"#  "#"#"#"#"#	"#
"#) !"#$%&'()+; -./012 	%
1012) !"#$%&'()+; -./012	
  ) !"#$%&'(); +-./012% ( ) * + , - /   ) : ; > ? 
; % ] ^ ( ) * + , - +/ ./012  p : ; < > ? { | ) % ] ^ ( ) * + - / ; ) : ; < > ? { | ; > ] ^ p { | | 	
!"#$%&'()+-./012	
!"#$%&'()+-./012	
  	!"#$%&'()+-./012% ( ) * + , - /   : ; < > ? % ] ^ ( ) * + , - /   p : ; < > ? { | % ] ( ) * + , - / : ; < > ? { | ] ^ p { | 	
!"$%&'()+-./012	
( ) + - !"#$%&'()+? -./012	
  !"#$%&'()+-012% ( ) * + , - /   : ; < > ? % ] ( ) * + , - /   : ; < > ? { | % ] ( ) * + , - / : ; < > ? { | 
] $%&'+./012{ | 	
!"#$%&'()+-./012	
( + - !"#$%&'()+-./012	
  !"#$%&'()+-./012% ( ) * + , - /   : ; < > ? % ] ( ) * + , - /   : ; < > ? { | % ] ( ) * + , - / : ; < > ? { | 
] ^ $%&'+./012p { | 	
!"#$%&'()+-./012	
!"#$%&'()+-./012	
  "#$%&'()+-012% ( ) * + , - /   : ; < > ] ^ ( ) + , -   p : ; < > ? { | ( ) ] + , -   : ; < > ? { | ( ) ] , : ; < > ? { | ( ] + - 	
{ | !$%&'()+-./012	
!"#$%&'()+-./012	
!"#$%&'()+-./012	  
!"#$%&'()+-./012( ) ,   
: ; < > ? $%&'+-./012( ] + -   ; { | ( + -   ; { ( + -   ; { ( + - 	; 
{ !"#$%&'()+-./012
$%&'+-./012
( + - $%&'+-./012  
$%&'+-./012( + -   
$%&'+-./012( + -   { ( + - { 

 $%&'+./012{ 
$%&'+-./012
$%&'+-./012
  $%&'+-./012% ( ) * + , - /   : ; < > ? % ] ^ ( ) * + , - /   p : ; > ? { | % ) * , ] ^ / : ; < > ? p { | ] ^ p { | 	
!"#$&'()+-./	
  !"#$&'()+-./	% ) * ,   / !"#$%&'(): ; < -> ? % ) * ,   / ] ^ : ; < > ? p { | % ) * , / ] ^ : ; < > ? p   { | ] ^ % ) * p , / { | : ; < > ? ] ^ 	p { | !"#$%&'()-( 	+ , - ? !"#$%&'()-	  !"#$%&'()-% ) * , / 	: ; < > ?   !"#$%&'()-] ^ % ) * , p /   { | : ; < > ? % ) * , ] ^ / 
: ; < > p   { | $%&'+./012] ^ % p ) * , / { | : ; < > 	  ] ^ !"#$%&'()p -{ | % ) * , / 	: ; < > !"#()-] ^   	p { | !"#()% -) * , /   : ; < > 	% ] ^ ) * !"#/   ()-p : ; < > { | % ) * , ] ^ / : ; 	p { | !"#()] ^ -p { | 	!"#()-	!"#() -	 % !"#1 4 5 6 7 8 -: ; < > ? @ A B R U V W X Y Z 2 3 d g s y Q S T                                "   +        ( + -      ;  ] ^ _ ` a b i 1n q r u ( w x + - | }  #;      {   <= ( B+ - ;  { }              ( + - { } ; 

 $%&'{ +} ./012

 $%&'+./012

 $%&'+./012( + - ; 

 $%&'+./012( + - { } ; ( + - ; { } ( + - ; { } 

 $%&'{ } +./012( ) + , - 

?  $%&'+./012

 $%&'+./012( + - 

;  $%&'+./012( + - ; { } ( + - ; 
{ } $%&'+./012( + - { } ; 

 { } $%&'+./012

 $%&'+./012

 $%&'+./012( + - ; 

 $%&'+./012( + - { } ; ( + - ; { } ( + - ; { } 

 { } $%&'+./012( + - 

;  $%&'+./012

 { } $%&'+./012( + - 

 $%&'+./012( + , - < > ? { ( + - < > ? 

 $%&'+./012( ) + , - ? ( ) + , - 
? $%&'+-./012( ) + , - 
? $%&'()+./012
( ) + , - $%&'()? +./012( + - 
; $%&'+./012
( + - $%&'+./012( + - 
$%&'+./012( + , - ? 
$%&'+./012
( + , - $%&'? +-./012( + , - 
? $%&'+-./012
( + , - $%&'? +-./012
( + , - $%&'? +./012( + , - ? 
$%&'+./012
( + - : $%&'? +./012( + - 
: ? $%&'+./012
( ) + - $%&'? +./012
( ) + - $%&'? +./012( ) + - ? 
$%&'+./012
( ) + - $%&'? +./012( ) + - 
? $%&'+./012
( ) + - $%&'? +./012
( ) + - $%&'? +./012( ) + - ? 
$%&'+./012
( ) + - $%&'? +./012( ) + - 
$%&'+./012
( + - $%&'+./012
( + - $%&'+./012( + - 
$%&'+./012
( + - $%&'+./012( + - 
? $%&'+./012( + - 
$%&'+./012( + - 
$%&'+./012( + - 
$%&'+./012
$%&'+./012
$%&'+./012
$%&'+./012  
" + $%&'+./012] ^ _ ` a b i n q r u w x | }                       a2p.debug   #C .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  4                +           @              3         ܃                   ;   o     H                H   o       P                W   	      PP                   `   	      pp                 i         XX                    d         pp                  o         PP	                   u         `                    {         @`@                             w                            y                                                         Ȑ                             А                             Ԑ                           ԑ                           ؑ                           ``                             '  8<                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ELF              4   <X     4    (      4   44               4  44                     S S          S              T                H  HH              Ptd;           Qtd                          /lib/ld-linux.so.2           GNU           	      ?         B@p$b`?   @   C   aKG-Z4y>KyVc*                       g                 n      T      Z                         *                                  n           7      0                  g            <           8     
      C            2      Y      E      =           "      "             .                 Y                  <      i           j             8      E      O      f      q       I                  =                               G      {                               <      R           y                        K      '                   O            )       "      -                  p      k                        {      C            *                                      X            <      r           a                               n      "                                                                    u      v              h                               D       `/             @q      d      __gmon_start__ libc.so.6 _IO_stdin_used strcpy __printf_chk clearerr_unlocked setlocale mbrtowc towlower optind dcgettext wcrtomb error iswprint realloc btowc towupper abort stdin memchr __assert_fail iswalnum iswlower __ctype_get_mb_cur_max calloc strlen iswctype memset __errno_location mempcpy __fprintf_chk __strtoll_internal memcpy fclose __strtol_internal malloc strcat mbsinit __uflow nl_langinfo __ctype_b_loc optarg stderr getopt_long __fpending strchr __vfprintf_chk __ctype_toupper_loc __ctype_tolower_loc wcscoll memmove fopen64 bindtextdomain fwrite_unlocked __libc_start_main __overflow fputs_unlocked free __cxa_atexit __stack_chk_fail is_basic_table __re_error_msgid_idx rpl_re_syntax_options exit_failure version_etc_copyright close_stdout __re_error_msgid program_name GLIBC_2.2 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.0                                                                                         ii
        ii
        ii
   (     ti	   2     ii
   >     si	   H     ii
   T      @      C  %  ?  B  D  1  E  F  6  :  G                  	  
       
                   $  (  ,  0  4  8  <  @  D  H   L!  P"  T#  X$  \&  `'  d(  h)  l*  p+  t,  x-  |.  /  0  2  3  4  5  7  8  9  ;  <  =  >  U  X    5%    %h    %h   %h   %h   %h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @%hX   0% h`    %hh   %hp    %hx   %h   %h   %h   %h   % h   %$h   %(h   %,h   p%0h   `%4h   P%8h   @%<h   0%@h    %Dh   %Hh    %Lh   %Ph   %Th  %Xh  %\h  %`h   %dh(  %hh0  %lh8  p%ph@  `%thH  P%xhP  @%|hX  0%h`   %hh  %hp   %hx  %h  %h  %h  %h  %h  %h  %h  %h  p%h  `1^PTRhhQVh OUS    [U tX[ÐUS=D u?-X@9v&    @@9wD[]Ít& '    Ut    t	$ÐU(]<  DT u}׋nt'~ pt+tt1]u}]Í&    au   f$aD$   EGE$ G    $    g|$GED$$走  ¸   rD$T$D$    $   t   Fv '    U(]>  FS u}4  D$\  `  $   D$$  T$D$8  D$`  \  ׉    9|8~V(D$   D$$    D$    $   D$`  }\  ]u]Í&    9v뤍v '    UWVSa  iR <EU=E=:u>:B  D$E$=H  U؅Eu9  <a  D$L  D$   D$P  $UT$M؉$B  I  L  EEvKP  <  Uu   u-E;<  N  E;@    E;D       <n   <<pt&<t8}t&     D$    ED$    D$    D$D$P  D$  $  щ΃	   D$   D$$    ~t$ $   D$D$  $wE    MU:   E$      <[^_]Ë        }|   ǃ      ǃ      	LA:BqM$   uH  ƃd   M؉E       11	ȉ  SUT$T$ $    D$G<1[^_]Ë  9u(           t    \  `  B;B    
B  9u;,        뮋  9u0      ΃.=v ML$D$
   $Vv '    UWVSE
  N tU0D$   D$$    t$D$   D$ $OE$tt& 0ܽD$   D$$    Zt$$   D$F >D$   D$$     |$$x>D$   D$$    |$$ľ>D$   D$$    |$$\>D$   D$$    |$$0T>D$   D$$    p|$$>D$   D$$    D|$$>D$   D$$    |$$L>D$   D$$    |$$6D$   D$$    t$$T?D$   D$$    VT$$   D$|&    L$qUWVS  ÏK QHyE؋ҼUȉT$$   lD$4$4$$ ƃd   EẺUċE̋UD$    |$D$E؉T$$  i   t& >b  t&   =}t&   =~t&   E 뉍t& p  &    1  l&      n&    uċ~
9  9u:B  9  :B  :B  8  Uȍ  D$D$
   T$D$    $  u   |
   $  D$   ƍD$$    >t$D$    $    D$bE >v  w  st& 4  &    f   h  d[<  f  ,  $7  D$   ƍ$fƃ   EȋD$
   D$    D$  D$$  u    Gf|
   6$  D$   ƍ   0  $y  D$   ƍfD$D$D$D$D$D$     $  $    NEȋD$
   D$    D$  D$$  J$  D$   ƍEȋD$
   D$    D$ED$$(     E   $    (  $A  D$   ƍl.$    :BG:B78  _$  D$   ƍD$  D$   ƍh}   <  $EEEԉ<  $Z  <  t$  $t$$t$$
UЉ@  $  <  t$  $>t$$EԉD  $  <  T$  $H  $  4  $ƍ@$  $  $  D$    T$  $%  $  0     \  ,  `        ;EuG=Md   Eua1} $`(U߅ЋEߋ9E܀d   t!:B88  E $u=T$ $   D$*d$   $U8]Eu}x0C UEEU$    D$   D$T$  9!}U       B   Ut& 9rEU$D$D$T$  9}6EUЉE܋E׋U}12z]u}]f~U   B؍&    9v܍v '    UWVɉEUE    t1v UE	E9uE^_]ÐUWVS<uóB $z  EE5       ǉt$D$    MԉL$E$MԉEU1;u  }t\tUD$E$t?UE   E    E    2>u.EUMQE؃<[^_]Ív E   E؃<[^_]D$U$uEUMQME؃<[^_]D$0   E$xtF<Dti<iC  <Bft[   E   G<5wUUfE    t"JE   M  E   룍E   U	E؋E8 ME   ҍE   ÍE   봍E   륍E   1뒍E   f끍E   |oE   j]E   XKE   F9E      ~BD$D$D$k   $\U)  ? E]h  Í&    U(]? u}  $E$u{tj 	EtxD$   D$$    %Ƌh  ta$  t$D$D$E$D$(]u}]ÄE    tyuEwЋD$Et$$D$멋$ÐUSEå> @$0[]Ív '    UWVSEUhp> @EUu{EuEUB;B   U8BEt_;ut"E
uȋU+urE[^_]ËE0D$U$  UEƉBEE    E[^_];utU u~
t
   E
냉$j        UE     @    @    @    @    ]ÐUEY= t ]Í&    |   ]Í    UUd)= tE]Ít& E|  ]Ív UE$M< |$}t$t6ʃҍr11z$t$|$]Ív |  &    U]~Æ< uu}ǋ $$   E  tHFBFBFBFBFBFBFBF B E]Ћu}]Í|  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]Ö; uƉ}D$   D$$    :9t
]u}]Ãu捶        UWVS19;    EEUMe   U1҉E}EwM fE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$r  t  z  }uHt& v>U       B[<!w&    9u֍    E؉$5U$u E>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EOZUM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUUƍE    t!t& M9MvUEM1u<$}EEUE    E    E    E7E  E   }E   E}  E   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$EE 'E   UE   E ;E "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋}   v U(}}] 3 ut?ZUMƋ |$ED$E$EU]u}]Ív |  빐&    UWVSù2 ,EUME EEE  U;D  rlփ.  L  9H         D$H  $  D  D$    )ȉH  T$$*D  EUEH  0xT$E܋Ut$<$D$T$9w[pU䋃H  4Ѝ|  9t<$ZH  E4$	  UǉBEU܉t$<$D$ET$D$PEU,[^_]$     L  P  H  H,          UVS"*1 @Uuԋ|  Eԋ  E؋  E܋  E  E䋃  E苃  E싃  E  T$4$D$   EU14$@[^]Ð&    USË0 ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USE/ $    D$ED$[]Í&    '    USEø/ U|  M[]    USË/ E$    D$[]Ðt& U(]NV/ u}UE T$UD$    $    EET$D$x<$e  U|$T$ƋE4$D$ED$EU]u}]ÐUSEõ. D$   D$E$d[]Í&    '    USs{. E$    D$[]ÐUWV΃MEE}V0ɉEEV,N@EFH   t9FKG\FPGXFIGXFJF0F8F4^_] t& Ev '    UWV@$W09UvEw9uv WOG@19uuww ^_]ÐUWVEUttp;r<t1^_]fw!E@EEPE;
t̸   UWV@w/t8Q19s0;<vq9r    9<t^1_]ÍF^_]ËQ1'    UWV@9v&9Gs    WD

9ww^_]Í    USMpx, 
[]ÐUVUuB<tN<t
^1]Ðt& BtxuH@Bt   RwƸ!FP뺍t&    tB   J	FP1^]Í&    '    UVuF<t#<t-VtFBVtFB^1]ËFp1^]Ív VNBAFB1^]É'    U}ǉuMJ(9J8w@1u}]Í&    BzP~r(;rt	B<t"\t;[tU]v t#^   -fttGu   }]ø   GEt܋J(;J0sыBJ(ËJ(A;B0s'BD<:t:<=tJ<.tT   G[>    G+   GEtȸ   G	   G   G&    '    UUzt]1ËE9BuJ1]UVuUMtBB1EAEA^]Ðb    A    A    ^]Ðt& UWV8UUME@TEMREIȉE@3  UME    EܸfEv <	tR<thUEE9B   UMB<E    B<uEtǋE9ue^_] EtM9
u1e^_] f}tUurtE    ~ n9>u}wFMtۋUM؋BD ;EtTU$T$MUE[u
Eh}wMf!N넋Ee^_] E!17fUWV}E    UMBtp9wC;x   w9190	t$EMD$E$E&    e^_] t& UWVMJɉMt8R1U8;ut$EA;EuE9u߃^_] ^_] v UWVUPl҉UtJ@t1UEM;us!MEU<};Tvߍq;ur9uvM}9|t^_]Ív UWV0EU܋UM؋@TEEnUEE`U܉ER   E        u܃EU9V   u܋}Fu8EHt4ȋED$ED$E؉$EU܉EB8ED$ED$E$E;Ese   ^_] e1^_] v '    UWVƃUt$<$Uu)F1҅t名t& ƋF9tuu1^_]fUWVƃUFt	ƋFuFut$<$Uu!tB9tuщ։t$<$Ut߃^_]Ít& UWVփDEEMER(U~PtyŰN9ʉMsi}   F}̃<tPt& Bu}99Ew~.E    V(~P   FUĉB1N(D^_]ËUUV(MA<t+<t'<t#<  M    }AD1^_]ËE E;V8s^11v F(VF(V(9V8v?:MtRUċB8 t)Uzuɀ~K uzF(VF(ыV(9V8wD   ^_]ËF+F<]uBF(MċA8 }WM  4  1   ~L    N(MF9E   M܋F<   M܋FN
Uԁ   uq~P   U9Uv3N<u*UEAEB}Eu;UrV(UԉF(N
F(MFȃF(EEK} )ME   }UfxU1   E    1t& '    U]uƉ}$," Mx@tlF@V8F@JB    yEAEP A    A    QaAAtutE]ȋu}]$  q1Ʌt݋F8V8F@    lt& UWVƃ U8EEF1҉$E1UtE8HF:tƍGEʐt& 1ƋF9tu?uE ^_]Ã 1^_]ÍWƉU덐&    U(}Euu4$Eu}]Ít& UWV EMEquBt1-  IwUBP   M ^_]Ðt& $   E11m11҉E$	   EWǉƋEt$   UE8$   UE"      E	ШumUBGuFBW	WF	ЈF ^_]Ív $   E1111҉E$	   EDu1ɉ    ^_]$   E11i11҉E$	   ESǉv '    UVuE    Ntyt3Ntyt	E^]ËUE1Ft0E^]ËUEFt0뷉'    U]ö uƉ}    @   $   YFt81]u}]ðF        UWVSE@|HP    E    &    U苂   UE@t.1t& UB4F$4$E9xwًUB${UBt@$fUB$XE$MEEU9P|jUB|    Bl    [^_]ÐUWVSlt tM t<E    1&    FD8$FD8$EE9wԋF$1[^_]
U] uƋ $}F$r4$j]u]USPõ   t t[]Ðt&  $&[]Ë []tt& UE1Ít& '    UWVS8<D G8tv 0$uGG8    G@   G4    $G    [^_]ÐUVS @$pF$$eV(F9tB$PF($EF$:F0$/F,$$4$[^]Ðt& UWVSE8Ya t%pt1U    vE9pwUB$EHtV11fUBtD0$UBtD0$UBtD0$nE9xwUB$RUB$DUB$6U$)EP tPE    E    U}z t1Ga97wG$EEEU9PDsUB $EP<|9t$U苂   $E$[^_]Ðt& Uuu] tKF    F    $CFF    $1F    ]u]U]nv uƋ@$F$~K tF$]u]Í    U(]}ǉu  wx4@G0GDL$D$E$MUB$oGD$`WMDDADAG]}Du] ^D$D$D$W  $    U(M]}}uQ>F qw      QGR1]u}]ËA  1A]PvuG}]
OXA  @@EA  @@E}0  }P  v4    w   $   >҉F   SE9E   F   rFEFUP1)QGRy+GvGH1EFUP1D$D$D$U  $"fF   E1A@EA@ED$D$>D$x  $ǾD$D$D$e  $蝾D$D$!D$f  $sv U(]uƉ}׋ u%]u}]Ë@uF8   F9tqN99v6Et    NDmuN1<   FT9׉UsPUUENTUP;}Ur=Vw*D ED$$ԼtUFF[1,'    UWV΃U	GD0E       B;EtVEtnv4    WBtMuBHED$E$U|te^_] E9u}	uEEte1^_] e   ^_] &    UUH@    PUPPB    B    ] U]uƉ}B FRt5$蘽FtBGW$D$T$1f    1F    F    ]u}]ø   F        ߉'    UWVS   W0e   E1G$8@ U9vEw9u   OE|E	9u   GUEG@)lWU   G|lD$L$MT$$:l      O    EhlL9ehG9w9uHMe3
   ww    Ĝ   [^_]ËGPUx~bltXE    E    UGEG@MwGw2Ex9GPEELxEUGWQOG@Uu/EUǅl   GW9l^릐  Et& č&    '    UWVS,4 w+9P0   xP~<    G0uvG<[^_]ÀN uH
t01[^_]Ë@4ȋGDʃu,<
uЀM    tŃ[^_]É4$yu_fu   됃뀍&    UWVփM@F<tBv <   <       1^_]Ð,u8uF  u-   ^_]fʉʃtF  tӋUOXF%  tttu v u;yuk
t(pGT    `I@뺋GT   @@)v UWVƃȋNXEGEtz}FT18EE	;utYEϋBf%zuft2tUt̨tUu tEtt& yEt^_]Ã1^_]Ít& UWVS   ||e   E1Ì B$J0r9MvE|J uG@  |R U;uV  }U|t)}l|AQEUA@   |BEElEUt|$D$T$$OǍ@  EE$   U$PEMED$Ep$L$螶9ǉE  |pB|$L$$¶|yL   |    }AML>9&    |G9w;u|1҉quq ЋUe3   b  ļ   [^_]Ë|UA|$T$$JL :;u\  GUMlhd||x8xul$蟵G  E|)EAQE苅lUUD$T$9h7D$t$oE  }<$   <$uǍED$d|$p$Ĵ9E+  |MBpL$$T$|    A<}L>9s v |G9w9u|1҉pp >|AQMD$$L$ey{|xW 2GW댋E  ||PA0A}MEUAQ<fuE      E    |PEE
E9}uG  EU싍|AQ}pAP~T}tM|11U@`|W`p9|9OP~;MrԋpM}E|EB$9ES|J  |xL u#t1ҋ|A9u틅|@L|MBpL$$T$||    AM|AM}v;   |9ϋpwGE|F;Mu͋E|)B0M;J4sB8|F$V09UvE}u ||PEPA@   |PA0yL        T|EPT@XEU싽|GW=?w=$蒱|   AMEU싽|GWc|   G    |    TMR\9PP    '    U8]}׉uE؉MԋR(
 9W8w@1]u}]Ív GU؈EJៈMӈJwP~W(;Wt	G<ti}\tzE@P   W(G44$sM؅_	EUӈQEރ
<sv   a`u؃    FN;G(;G0E  K   GMU؈E߈BP  W(G44$˯_u	EMӈNE߃'<Vw0   U2 ѹ   PtMUӋM؈Q<_E   uظ   F
REu.G(;G0t#MԉG(EEo(	<uظ   F    E    Mظ   AE    quظ   F	Uظ   BE  BMظ   AUظ   BE  uظ   FmE@   \E  u"O(tE   G|
Mظ   A   e   }   E@   e   }   vE@
   e   }   QUظ   BE   Uظ   B   E    Mظ   AiE    uظ   F	Ke  }E@   )E @  guFE߃1   E   @E@       E   Uظ   B	   e  }Uظ   BE   uظ   F   tE   uظ   F#VE   Uظ   B!8E   vE@ @      E   RMظ   A   E   .Mظ   A"E   E@    e   }   Mظ   AfE Mظ   A
re   }   uظ   FM航Uߋ P}_	ЋU؃EEӈBLUظ   B$	~!UO<t6E9Gt|t$L t-GuO
uGu0UGM
U4$։|$z(I|$F(4$]É'    UWVփEMMUNtt<,ttҿ^_]</v<9wt& tڃtЍ|BЁ  wx    '    UWVSE@$J0賻û  9MvEEx9}vlרEfUB89}tMMQ4A@uUUDpt̋M䍆   =  IMv%E89}u    Exx [^_]誧 40륍    '    UWVS\UċW  e   E1;UO  P~G    G    G,G    G    G     G0G4GL G8ȃG<EĀK ED  E̅   u9w v
L   L v   GPG    G     4  I 	  Ww E    9uvVGUEU    G0OW)D$M܋MU؉D$EL$$Q@'  9uwM+uĉMЉwWt  N W E  }
~  1G<K uEGM̋U)O0)O8PW  H t8u	G(    1ue35     \[^_]fGʋWu)ƉMԋEԍẺƃ9E@E%   ut& 9%   tEԍUG0T$U$)E    E    D$t$U)9e\M)G    G    GMЃ5PG<~WG)T$T$$HK ,  u)w)w M    unEGpG@t40GD   u
t1҉W<2K    G0GSM u׋U؋M܉W   O1  u)։u G,+EEGL G0G4+EẺG8	uЉ4$(u	_   1ɋGW9wK lGT$D$$
WMGWM+Ủ$T$T$H uG@v g[OfUWVS\UĉEM 耶È  URU+  MIPMЃe  u}N9Q  Fu<   t8  Bu
}>9w}%     }   }ċ?}ȋG <  }  }UGEM}ȉM̋Ot1}9:u
L}9<tD9uEȋP$  1Eȃ9x$   UȋMB$D$ģtՉUBi  MK   t& @΋}I9v-F0E;EwD9P     <?vv 1\[^_] }   ~ދE   @ty΋UMB< u뻋M}A<8
tyڋG$E    OŰME    E    UE    E    E    A tzE1UEUt& Eȃ9x vZMȍ    AE܋AUEE$D$ǟËMED$$豟ƍ    1vUMBEw\ts      U9ED
<?ʹ   9sB<?v^w1    t      <:<    *ڀt& wt.      _t      f@<v <    ҍ&    '    UWVS|  e   E1舲Ð  ƅ z\$  x   UMǅ    B<    pto    f  ]    9QzMe3
     |  [^_]0   @@tz\~;z&      B%   =     ʃB%   =   u;zr΋)֍E    E    L$t$T$$-9$T$$D$蛝ǅ    ǅ    1 tEt t=  v(뢃    Yǝ D$   D$   $v<j  &     @  y\~]1      tF4$賝u勅D tɁ  ,      uA1uB@tWy\~K$ӜT$$D$臛t9yi    E    E    L$D$$:    =  vg p\HQP F@$6t&    =  vF膛 뇋A5  @ Ѓ4H 먋D$   D$   $H$艬  '    UE]軬  u}0xD$   D$    <$覘V$EV(9V$t
EV,9V$t
EV09V$t
EEH1]u}]Í    '    UU]#  u}wH<<$wpEt;uw'Et$|$$E]u}]E|$D$E$  ΍v UWVS<EUM܋J肫Ê  Y  E܋pK  U<EUЋPE9vDM4?Q      D$$ؖ  UB2uE܋NpE~PrUEEMRU؋U܋HRUԋEE;      vMQMAM܍rEIȉǉEE+}PtnwiU؋E9v/U؍7
  UmERU؋U؋9wыM؍7   MIM1<[^_]Í    u؋MT$4$D$e<1[^_]Ãm}#EE;w*M؍    ;s^M؍D	;@sLvmEM؉E@E؃m}UE܋J@E~;űM1ҋIM4u    vu   v UWVS<EЍR<    EЉỦM   xE    E    E    G>  U1UE   9w   G;UtMЋDtݍREAP
EM܃xvRUU܉FuU܋E7tEЋUMHUUEEtE$Ô   UfPUE߾u9wAGtSME    MEM9Ov8GUԋ4E蚾u݋Eȉ茾PEEM9OwȋE$*E    E؃<[^_]     U]uƉ}T\  xP~W?@v   ]u}]Í    UT$$ɒtԉFFtU$T$謒tF~K tF|$$萒tF1~$fUVS  P$AuCVdt'F$=?|   D$$6tiFd~H u~P~31[^]Ív ~P~1u1[^]Ðt& F@tb1[^]ÉR1[^]ø   fU(]uƉ}@h  9V$EvMF9sA19}s-E+UD$    FdT$$1~h]u}];F0st        UWVSlt  ҉EM   B      Q   U   1=?w$1ɅEɉP      E    1E    W9UsCM;q   GUUB9   MAMMW9UrMQ9   U1MQ[^_]Åu2Et
UBu!M1    A    A    [^_]ËE[^_]=UƋBUEU*ME+UA    UWL$$T$[GEU)UC})E        G}WL$$T$GE)uv '    U1ɉ]|Ä  ?uƉ@       w    $ 1N]؋u]Ðt& UWVS,$  ҉E   R   }G9s;W=t  |     D$$}U  UB:VMAF  <P}E؃vY}FOQBE+EEt2׋UȉBuEN49vcE4mtm1,[^_]Ã}wEM؋@E܋F}܋E9      m}EM܉<]EvUuBUT$L$$4,1[^_]ËEM)ЃEAN   T$$L$mM   QVAN끐t& UWVSAI  ,E܍EU؉MԋRE   U؋R   E    6t& ED$Uԉ$UЋEuSU؃EE9Bv[U؋BU<U4    Ep$MԉuEЉ`tE$e[^_] U1B$EU؉EBEBe[^_] v UWVS,EM܋@T#+  EJ   19~   FUExu݋w֋BPt͋M   9A|tyUB|E싊   D$   $   ȉE蓋UMQ|   ttUPA|   M܋
UB|9~\1,[^_]=   w1D ED$$tU   M   I   U   UUMe
   M1ɉ]u}U ۞  } E    EE   E    E    t$0   x   Et:EԉEU}RHE    E    E    Uv.E   ЋUe3   9  ]u}] M  Mwnȃ)čD$EE MEUL$D$$rMEU1u;z|G;rv@E${} 
  EI`U$臋@EE닋EMEЉB<w  <	)  ME3AA   MEЋITMPn  @K    uME	MЉUt_UMBVE}Ut!E;P\w;@dt1Uͳt"1}E    }n  u  MED$EU$MqEEU9P`u2  U1;uxy~QA	u9uYEMD$EU$EEE9EE0x@@eUBdUUUqMȉMa  URHɉM@1EEčt& Eċ<E`t
}`  };uu1}9EM|M;y  ;1  EpxUMET$L$$u~EMU$ELEUMBUUEM$Y EpxP )} EM  !Ѓ!  UEO   MuQMIDU8Bd1}>  UEu܋EUMŰU	ȉMȃ;BP  MȋUIEBMỦMUA։|qM$oFUMBDt2UM$T$L$UEBUaE$} E$مBt<U|D
E
EtUMET$L$$gpUrzbEjEux}9E$K   } :E$1   %M=TUUQt vD$$UrBsE$߄1Ҁ} U$Ȅ1UWVSLEE  E@UME   MEy$98G  E4    Up$ʄMGjA$u   us}1EċUĉptEtʸ   M	   u1ɃL[^_]   ƍXumdUFu   puga}1EȋUȉptEtʸ   M	   uuu   ^xu   ^uM}1E̋ỦDptEtʸ   M	   uu   vuM臃}1EЋUЉDp tEtʸ   M	   uu   d   #}1EԋUԉDptEtʸ   M	   u6Q  t?    D$$%  UBM1z$xu   uM肂u1E؋U؉DxtUtʸ   M	   uu   |uM"u1E܋U܉Dx@tEtʸ   M	   u5u   XuMu1EUDxtEtʸ   M	   uu   uLbu1EUxtEtʸ   M	   uvu   uYu1EUf<x x   u5   -Etʸ   M	u   tqu      8su1EUDxtEtʸ   M	   u&u1EUxtEtʸ   M	   u:
UWVSÇ  <EEUE    ED$   $   B~D$(   $   ,~EG  ?  }    E|$D$    $MԋE  Ut ȿ   ȃ	<Bu}    Ex\~H<   D!D	uU1ɉUEu$E1D   Ex\~eU1EU1ҀHXEЉ$EtQ$
   EJǃ<[^_]ËEԀH   T	uJE<[^_]É4$}EU1   륉4$u}EͷE81댍t& UWVS  }Ee   U1҉苐Ó  H$w   ǅh    Me3
   h
    [^_]E   Er	  	A	  11@$讱h  M<Pf      1  R@(IHLM 5  x  
   ǅh     E     Qt	:
   ǅh    I(7HL<ǅD
  MhCD	9  ǅl    I  h~  1hD1Ƀ
$-   Dtu9Drjhn$   hh      1$
   趰te9Dsl  l$   }h(E   8W{   ǅh    T1ǅD    t)A<   ,   ǅD   TP  H  D;D
   ǅh    [ǅD   1h
Nɪ1Dm1ǅT    8,*>,5MD E    D$   $   wD$(   $   w    M$G<  <ƅ+   y$	  u̸   }ǅ,    ǅ`    MD$$UL$t$<$輩%  M`$EttA<  <	  }@  E 1!jV@D$$|$hbZt& F FM   w1Ҁy	t\UD$GD$$5  u~	7  ǅh    
   w    	FT1$   yh
   hPg   GT	GP11҉4$تh
  GLOXP@1#D$Ҽ$vt$4h>m   ǅh    L11҉$<h  z\~JXuE   !
   ǅh    1ɋ$1թhv	  ~\    tzQ(9Q8;QA<M 1ɋ1҉<$Xh$   Ɖ茪hu    ǅh        FX  NXltǅ@    X@1ɋ@t& _t    Xtۋ   	G`E      ǅh    YMM|$$T$hM   ʃ	V
  1$P(+ t   T	u~\~N<   D!D	uꋅHC  P8  x-  p "  z\~H$  @  jE$1EM1hh1      xt& H;`  UAFu4$gr   ¸   uȃ1	1
m<$>q蓫   ǅh    
&    UG@T$UT$U$qu4$q   ¸   uȃ⋍	11ɋɉ&f@ @   =   tt=     11ҋ<$@hQ  MD$D$D$U  $o1   $1Ѥ	   Ƌ1ҋ$1諤$
   ǋhttK   ǅh    ZJE   t		$~(Mƅ+$x     Ah1ɍ舠ǅh    hlvY   hbl$   hҤh҉lsk9s;D  1ll hE      q(HL1QAh  
   ǅh    11    $赢
   u$G(MTE<[  <   $)q(Ghh"1ҀIX1ɋEuu4$h1   u狕$l1h |ME$EEL$D$   |$螞  MB$1y\!u<ttEc        t& 11E4$Eh$
   hh1ut&       ǅh    L   w   ?   8      $t	    D$$i`J   q  }  ǅp    ǅt    ǅx    ǅ|    E    E      MU  }v  m  E8I  @  U48   4   8E4p puD$<$h<tH<r 9,0  <8B<B 4V<F 1xx|$$eh~7   u11$E$j{       <$T$h   	뗉<$j4$jU81aE8V1Ƀ<E1E$XiQ    
       OB 	   ǅh    =      BwvL6d|$$ft~\d10<|$B$fuBt>\<qA0,q <       ǅ\    륺      9<       ǅ\    {&    UWV UEUEET$UD$E$UƋE u~G<
ti<teUt<	tZUET$UD$E$UIU
uPt5tE$   uE         ^_]É낅z1獴&    u1ؐ&    UWV EUEED$ED$E$EƋEtY|f<trUt<	v tdED$ED$E$UEE u]$
   E!t4
u%MU   bG<
u1ąu1 ^_]ËE     ^_]Åu
UWVS,U؉M܈M@xØ  9GE   MGU؈M܋MHWd }7Otx}D	ЈDWGG@G     @    @    G@G     @    @    WBG,[^_]Ã\=   t     D$$[c   Gut$$<ct$EԋG$*cW}UUUEwxM$I4    t$cEGt$$bEԅt:EЅt3u	Шu EԋUЉOGEWUGW{UE    R4    뎍    '    UWV΃UEU }8L8EEtFǋE  D:% 	D:Uuƀ~tL}MUGE^_]ÍQЁ f%f%  	QMfUWV0EEMEU    |ukBMEIE܋BUD    MUE  MQMUEB茣  }u낋EpE؍B    BU8RED    MA1PAt9t5tu4Ep;>  MAEAtuߋME#  UEBȢ   EM$EL$   UM؋BDMxE   UEBe   u[BU ERED    UxtuMUE^tRMEAt>}uA%  9EMEA͡(   0^_];}t	U|MQM1ՋM9MtۋEBU1҄u벍&    UWVSLEEMbsj  EÍIEBMTEEutFUD}ċ:xtuDuxE UċE   t6} u:EVMEDEDEUȉEBEB1҃L[^_]À} uFUD    ʋ   EFPwE    E GtiE܋BEBU܉UEUE$FDt[EFEM9H'@ŰI<    VBuEčE܉E$    yt,E$^E딋EFx 5@ D%L$Mĉʉ$'    UVu~t0vVNEF^]Í&    FP@VF1^]É'    U]uƉ} q  ;Ft!FV<F   ]u}]=Vw$D ED$$z\t
UF1&    UWVSpç  EBM
ERunGt/1&    GMDuE&t@9wwڋEM@D!EUR4    q 9Vv"F<B1[^_]Ã   [^_]ÁNwTЉUD$$[t̉FEF몐UWVS<EЉỦMȋQoú    EuЉE܋N14u9uŰE#BD@B ɉMtO@1E    ;ut7EԋU܋<;uG4;Eu܋G(U豅t̓<[^_] D$8   $   ZE  UȃE  uUF4	ЈF4EF(UȋJ>  E    E         <  UtcUM;J(4  EtEt0Et& tEu Et& tEtE@t& tEuUE+UzE    UȃEE9B   MȋuA4    E0~E    F  tF%  EutUFJ4	ȋM	ЉA4A4u@F46uM܋UE}>EsM1   &v $   [uF(tϋU2N4E    1     <[^_] M$Y랐UWVS   HDHe   E1@ME    Bl°  JB    BB    Pz     H@   PD$   D$    $qXP1A@   @Tyw
$YP1@   t1 ,  9@sr$D$   WPqDA TWPG\$   YƍD$4$KW    PHXPbXz\~BX  |B<P2  P11I {  UN  UH  @ xEΉLD$T   D$    $8WP8D$D<$T$@苀@  } D<  U  Px\_  82HEE    B    
}X   8   <E<D$H8<$D$    Mɉ  X11$   tX$     1҅  P҉A4  H7F$WFF$oWVF1UUUwR$QWVFR$=WV҉Ft~tNd        U  P@XtLuHR  PG4@PWHR<WE  GLm  E,\  ǅt    tt9,7  utPpщxxu,   1;,tx	u鋽x ;u9,tPpPID0<~TPv<WEǅt   ,)Pz\1  PUEG\9$89   8   @;MwUU뎋<uP$    PA$9  x4    PB0B,B(E$S1EH跎8|uq  E}e3=     e[^_]ú      vT8FEHP8PH    B    E넋<P$   PG(<$   fG,<$   JW(҉G0t,  ED$4$Q  G8D$   $   QPA<E    u1&    4$8T97tPUP<   	7 tƀu
PHX uE} ut8_{EEExƅn   1ƅo zv4P8RB4: yƅo9uo u
n n  1 t&   P9HJ  P    Pù8 yр`f t   5|t& 
A1| uPƅnfB1   E   !P}H    G    ED$   $rO¸   HPG   
1   ot& PH    A    lc  @1    rP   bXB\   RLu
nP AX	ЈAXHB=?   $P   twHQt1ҋ   H9WwF4񍓜覀Hx.     u$J9v9t9u$Nǆ       F4H血{F4lJ艀cF4,!F4񍓜;ǅ`    ƅ_ `9VthR<    FM M M M M M M M M M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Dt`@`<$   FDuE$Nƅ_뭀_ t 1ǅ`    ƅ_ 넋   HAu
AtFXuFL   V1ɸ   UUUwR$N1NF   11҉ЃF     @    @    9Nw܋Ftǅh    ǅ|    |Fxdxt91dh@F.F|9|wɃh|h9~w11E        UWV   SE_  EO       @    @    $   MUB   Eց  @ 	EttE濁   PʀPmE	EP@    U$L4$UECt,u,E$][^_]Ív EPP듐f UB$KE@    [^_]Ív '    UVS^ڢ  EH	уɀHM$U1҅t[^]Ív '    UWVS<E܉U؉MԋQR^Z    EԋH1U4u9uU؋E#BD@B ɉMt8@1E;ut&EU<;uUԍGktt܃<[^_]D$8   $   IEЉE)  Uԉƃ謍?  EЉp(UԋB   E    JMcEVH4ȃ	ЋUЃ	<J4      <t	F  t	UЃɀJ4uԃEM9NvkuŰM؋4    1~,{F  tŋUFJ4ʃ	Ѓ	ȉEЈH4뉃J4uԃEM9NwMUЋE}E袄E1    fuЃ@N4E1     ~MЉ$HƐ&    UWVS<EԉUЉʉM̋@T0\8  E܋Ex   UEȉUċUԋEBtxwEЉrtNŰG+G9  UBUԋ4M؉uBd   Uprt&    Gu1ҍe[^_] &    EEsUEEUUuNtJEԋU܋MupdEE$GUԋBdU؋uE{U냍    E$GUg`UUUE"EE    rE܋PvD0EЉqEĉUM$UĉEE:UĉƋEЃJǋE$
GU		St& UWVS|EUM@T"Z*  E ȋMEEyMPxD
9D  E E  UMERdUI(UMprdMJ(JXUEuEЋE9E  M4  F4@  E    E    E    F4@t:E}  MЍE$U@  UMBd4E9E~  UEE    UME    ŰAdDt}PŵE;  s  MuȋITE    E    E    MFb  E    GME1M(tUB8}n  EȃEM9H  UȋMBU<4    D0tM$ME葡  UBU48MEċUċAdE    m  MԍPȉM谴EuJE迅\  UEuċMrdU@MUċAd	EE܉$$DU1U  u}EtIU$MEE  ML$E$MEEi  UuEJXU$U"  MŰAdtME!E9MtEŰU;PxE$DCMAdMe  EMMEHdMH(Ѹ   tUCme[^_] EUM@dER(UUABdMJ(JXUE܈EЋEEU}F{EuU$ME蜴Eu3ErED$U$MEmEJE$DBEe[^_] &    EԉEEcE܉$ B      E܉$A11MMf|UMEUPdMH(e   [^_] EFt& }VE_xv E    E    E    }D49wUE?PwG    $D$:@t.Mq)A    D$D$    $k@\           UWVS,EMUʋMD$   D$T  L$MA$	   UMRU	MNl;Np      VtMFlVtMLFlVtMLFlVtMLFlUFt9   f@  FlNtD HE+E9FxNlsFxMEQ+U'e[^_] VtU;PN@NlBFpVt=effw{| D$$>taVl~pFtD$    )׍L$$>Nlz&    f@FlNtD Fl5Ft$?   5        UWVS   ||E@TU6R>  ER(U܋A  UE    |EU9Q  |}FEǋE0~uF  tDUEJXU}V  tttu   ҍv   MuEU܋IlMvTuċpnt"UBtM;  x uEċM<uE    }y|u  }Eu9w|  uċ}M   }ẺƋ@9<uɋEȋv  UE    UM1ҋuAEԋ@+Eȃ EveM}ǅT    PPTw1T tp8  &  EЋUЋu}u}ȉ9  M܉L$u4$ŰMԋE}Wtx  M̋EЃEEEȉUU9Q,}]E9E   E̋HPD$	   Eȉt$D$E̋ $Emtu  ŰB9B  D$   $   j;   E̋P@H1UȉQũFE܉D$U$Et& EM9MM̋U;t,Eu9p  uMU1:DMMAd8t$	   PMEktE̋HD$   U̸   +Eȉ$:M̅A      &}̋u9wp}Eu9w|H11U  UE;Bl%uU}M\vd<    EM`EEu9plMuAt90uۋU9PuӋHP)։u-  uFdD0 u@EvEE܍4E)֋UJXV;MEAdMu40E    t@E   R(M\躧E  EUupd$\U`<E$9MuAd4   UUM;HM܋UE}EuUEKEEEe[^_]ËuFu0E$MU`UMBdgM\f9P}w01T lh   EЉEUWE@E;p0	3URU)=RD ED$$17ỦBM؉J9P=Ju܉u\E    Ee[^_]ËE$7'    UH]u։}ωEȋBTJ  EЋR(;VhUv&FdVhUЋBL   ]u}]ËEEFdE܉ tEH(uBV(EAEANXEI}UЍM$EǋE܃8뇉
냋(}؋U؍}դUȅ   V(NX|VdUUЉ$ERǋE8E؅(E$6MԍGẺ裩Uȅu+G4@ỦfUȅuFdUԋ<1&    UWVS,EEIÎ  M܅tvE1UEԉUNM܋t<HEԃգuLMԋUEE    E$5Eu";utuM܋;uu1,[^_] t& '    UWVS   lhld@TpHÿ  tBdH!Ex@uIhd    xtlpBd@4@  1e[^_] x  ME싕tE    }uǍPT@uWMf Qf   EuWE@t01UtBTRQ舤E9pwҋxTE1҅҉}8hB  lItUMB   E    v UMBMd;B   ;B   t9ǉEd;Bi  M1yuk    E9pvZUBt    AwыE9uʋxt$M胝FE9pwMEU9Q(E    hMtp0E}BTdElbExE    Rh`EE    PL<tTxEU9Q   xUAMEhU9QDud;Qt<ut& Ul`Rqt\`EUMEE~ iEU9uFd+FǅA  MUAEh;ywtU[tEdM|$D$l$LaiEЍMX`  EdE؋XU܋Usr  EЋpPEl     hPt(dMЃ$EuZEЋMpUXZPX)[luptM\AD E11EЅtE$H0NKUR҉UE1@ǅ|EE<	   ;ut&MA<uߋE9u;u|uڃ|   }MqE    MEU9QjUMBt4v<    BUYutUAYuxM$tx;mzE9UxMt$|2hEЋBEԋBE؋BE܋BEBEBLErR3      $&    '    UWVSLEuUBAú  EȋRuf#  E$MȋUE  uȅ  UE    uE<!EċEu;px  mUME    @dm  rTEԉu؋@V  E       t& M؋E1MȉnttzuULtju؋FAWE   tNE@t1U؋uȋBUt$|$E$E]uEYn   UԃEE9B   UԋMЋBU؋<4    D0:MEUȋIM@TE܉$Mh E~<U9UAMU܋BAVv '    M$MȋUEuMȋU#1E$,e[^_]ËE   $+T$1$D$    Q+E$+e[^_]Í        UWVS?  L  $ ,  e   E1,     M1B,    B0       ǅL    RV  ǅ     C'1  'L  'F    9B   (G0ЉH'@fi   ʃ	f   Ή      tW'  z\  11ҋO<D:`#::	ƃ uۅtW'p  z\
  11ҋO<D:`##::	ƃ uۅL11Ʌ  LǅP    ǅ4    Rǅ8    'C  4E1ɺ   t& D#DD		uޅ   `   ǅ    ǅ<    T#DD	D!ЋD	<	u   8(G{i   <t'PP4 89LLP9ǉLx  L44ȃ0{`dAhAlApAtAxA|AEEGEGEGEGEGEGEG8Zj   L    D	D	uRx\  H<   D	D	uꋕ   @ue    e@@   1<U1    M   Lt#1$%;LuǅL$%L   1   D$   D$<$$   @       LLI    EEBEBEBEBEBEBEB(F]   LD$   $   
$F,   Ue3     e[^_]ÁeB@;z\[1   D#D\D	ƃ	u_L_L}E  LQU  LR     ,  =    B)čL$ƅ uLLʉ1   ƅ L*  U싅ǅD    0E    7t?1GAt@Q:E  97wË$    jD  x4   D   0D	D	u䃅D L9D0  D$   $   ~! B,  ǅ@    @t/ ǅH   ѥH  uꃅ@@uEtaLtW1Au%1Ƀ;Lt6B  t     F( t(     E$<!Lt#1$!;Lu苅$!   H$   iDV  D;t~\~ƅ$   
DE    E$@ Lt#1$ ;Lu苽<$ 1OM3v 떉$!ƅ넋D$    D$$!*1   D\#DD	ƃ	u4$nU<$KD$   $    F014!       ǅ   ,      ,   ѥ݋@Hǅ    u!1H#A  t@HL`   w1ҋu$1#B  t    ,,       0  t& UWVS  Eue   U1҉0t  GtG   ǅ    OdxD$   D$    $UGǅ    9s)ȃGtH$tP(tH,uEǅ   }e3=   u#e[^_] U9ULN?/  P0t@$@u6B(@u,B,@t xEtEuE    E    +,  ƅFQ\9s9v֋xD$GD$G$Dx談&  `EBX} Eth} huy\~1uEMEuuGEPLMEH  ,uE   u  E1ҹ   =?w$1ɅɉUE  EUu`E9UEɃ9։vEU9s   y\t8 utG@u
td1ɋu9u1҃ 		Ћ`;
  9  ttA  th   1w$E11?w    $M؉Utnǅ   Eȉ$|HLt!xdRE$YE؉$Nx#WxqL9  19v
t
< uJ9`v  ;
  < 
  `ϋ`Mxp uUtl8-  u9uE    E    E    ǅ    ƅ w`ƅuUǅ\    N$y4   O  EȅtFL  A4
  ǅ    E pp9u!  p9U$  E9  A4   EhEP,   4Eȅtx\+ƅ     F4  S  E ptuǅ    ǅ   p0  UMx\  4Njt    ,MGu	 uFL  Eȋx] EtGuFXu@LQ  uUǅ    F=?v}ǅ      ǅ    $O$Ax.N`9`w9ǅ   r$dAL  $  <|    ȃD$D$    $|t$$W|xT$)  uF u:Eȃwt
B4  1ǅ   lF$l$  Eȉ$|u$    UȉM[$    Oǅ    ,      @@@@9,w֋    B    MB    JGuJ1FXtFLD$,x$U1ɉp`1҉MUǅ(    hoN!ȃt$o   VFV(,9(ut61 @@@;u׋   11ɃH,rL9   d99tLH48|8t|H   t8|8t|Lv<|1ɉt$$|S|xFT$
ǅ    4$|$n
xAX    A    uA    qh1	tЋ<>VF    Nh1	t	<~F       ǅ   J   E^1ǅ\   hMx]WMpUp;   ƅ M\Uȅt
 Űuȉ U   9 E1t㋕x1ɍ\Ƌ\H렋$ uA   ǅ    BƋ0FtQF  tmUMxp7TV  tttu tfty2u.9Nh11A  Mppx4$XjtU܉u9}ЉE܋xzXM  B@        JEȋ  P(<|zX  MVxXSUȋ|$WD$EȋXX1\7fMxzRm  F(Q;Exx\OD$D$n  D$$;   <    `ŉ+|9MvJ19v
h< 9`a9U멋Mxc`+|늋FXE    =;q19v
t
< 9x1Ƀ}\   @4@   ƅ V<<A@AMDxyPMȉ|X|$踭j1\x\X   t{N,y4 xF ǅ   a\OD$D$8  kxYQUH(\$转.V0 UWVSlUȋUE̋EHP`  9MUUMĉEUT  M1ҋEE    M+EU;U{  E؋U؃ ;U  EEEԋŰMz@<փ9M  G  EE   t1UB<  E̋P1U  E$D	E  UϋM	ƋEЉt$uT$Uȉ$MĉD$Et$D$E
.  u   űUFU  <  <  UME   ;
  EЅt>11EUHrTr1T1EUHDrTr1T1;}uƋMu91vB
EEuʋFVDBE9wEM̃ A	ШAt+} tluU܋E3V3	  Epx+u}܋M$ye[^_] E̋H   $lMQUM2z$*믋M;BE   =  u4$MA4$uNF      EE   FMUE   91A/  u$t$1Et$uF$iUugtc~F눍    |	;EyuĉuE    E   ;EfdE    v ^1mD$D$D$  $zmD$D$D$  $P@D$D$D$  $&1u1E   &    UXUU}}EE]UU$s{[  9ωuΉE؈U   EE    E̋Et
UɉUu\E׉U܉D$ET$ỦD$E D$E؉D$E$E׋UƉ$]u}]  <$Et<UEt$$D$/UET$U$T$EEY떍    '    U(E,U$MD$    D$E(T$UD$E D$ED$ED$E$E 
U(E$MUD$   D$E D$    D$    D$ED$ED$E$E2 Í    '    UE UMD$    D$ET$UL$D$E$EUEMUD$   D$EL$D$    D$    $EÍ&    '    U   (uu]Y  }}uH   tMEO@t]$Ut$D$    D$    L$L$]u}]ËE$#1҉E@u    E$Ut$|$D$EL$L$[룐UWVS   u}EMX  e   E19    uE E    E    E }E E    E    E `\F      Eԉ$
ƋE$ )  EEȋEEE E } uE}   uȋЃo  E   EEE} tuԅ  } uE}   uЃ/  E   EEEEtU  } b  ŰM97  u9ɋ}(҅ЋUe3   n  Ĭ   [^_]Élp h=phDy    8  lplh0Dyt3  4뛍usD$Eȉ$  t$D$EȉD$Eԉ$JE  2  v uEE   8   }ԅ  E4$3E *v uD$E$
  t$D$ED$E$E      uEE   8 a  M  E4$\E u4$@z  Eu4$$^  EFE   E ZE   E  @Eȉ$E E#E$E Eh)} uI}    }Ⱦ   !։Ћ  E   EEE}    Mԅ   } uI}   }   !։Ћ6  E   EEE} tLEuE19v#u9҉ы}(Є~!   u9ɋ}(ШtߺuD$Eȉ$  t$D$EȉD$Eԉ$E     uEE   8   }ԅ  E4$#E \`D$   D$L$$`\D$   $T$L$`\D$   D$T$$u4$   E
  E   E u{D$E$
  t$D$ED$E$REtH~   uEE   8    U   E4$E E   E u4$t7EZEȉ$E EHE$E ED$D$D$   $bD$D$D$   $8D$D$D$   $USEÕP  D$E$lt[]f[	  t& '    U]EKSP  uu$t$t
]u]Åt	  UE}}]
P  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅  fU]ÖO  uu4$Nt
]u]ÅtW  &    U]NVO  uu4$Ut$T$$]u]ÐU]O  uu4$~4$D$]u]Ðt& U]
N  uu4$t$D$    $]u]U1҉Muu]~
ÆN  9w*΋EL$$t]u]Í    t7  &    U1҉Muu]
&N  9wΉ$t
]u]Åt  t& USMU	M  ɋt"=w#D$$[[]Ðt& u@  Uщ   |$ǉ4$09}   4$   |$]Í&    914$|$]4$   |$]Ð&    UWVɉEUE    t1v UER	E9uE^_]ÐUWVS,uL  $j  EE"       ǉt$D$    E؉D$U$U؉E2;u   MtOtHD$E$6t2UE   E    2>u(EUE܃,[^_]Ív E   E܃,[^_]D$U$uEUME܃,[^_]D$0   E$tF<Dto<iI  <Btc   E   G<5wt& UUt& E    t"JE   U   E   뛍E   U	E܋E8 ME   ҍE   ÍE   봍E   륍E   01뒍E   f끍E   oE   z]E   hKE   9E      ~BD$D$D$k   $UWV1S,E	J  M}EtЃEBu  |$EL$D$   D$D$U$:D$   D$$    \D$  D$   D$D$E$XD$   D$$    UT$$	w`u$D$   D$$    t$D$   D$U$,[^_]uD$   D$$    t$D$   D$E$,[^_]ËuD$   nuD$   뤋ulD$   EuHD$   xu(D$   u:D$   Lu#D$   uD$    |$ED$   D$D$U$T
US$EED$EÛG  D$ED$ED$E$T$[]ÐU]NVG  uu}}D$    t$<$tp)]u}]ÐUSG  D$   $    D$D$    D$D$$UWV(UEu}U܋M܉EE         ׉ƋU؉E܅UEu"9wN  EƋEt& ;}v;11&    ȋMt؃ ڃ(^_]Í&    ЋU1Ӎv ǃE       +EME׋U	ǋEMMM	ЋUEUԉ9Uԉr;Utm1dt& ؃ U]؃U ]E&    9}w	9u   1       1EM9vO1U]Ít& '    UWVS D  E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1S ÉD  tD$ED$    $[]ÐUSC KD  ,UStЋu[]US    [ D  Y[                     line number overflow - 
Report bugs to <%s>.
 bug-coreutils@gnu.org /usr/share/locale ln rn rz David MacKenzie Scott Bartram 5.97 GNU coreutils nl h:b:f:v:i:pl:s:w:n:d: 	 header-numbering body-numbering footer-numbering starting-line-number page-increment no-renumber join-blank-lines number-separator number-width number-format section-delimiter help version error in regular expression search  Try `%s --help' for more information.
  Usage: %s [OPTION]... [FILE]...
    Write each FILE to standard output, with line numbers added.
With no FILE, or when FILE is -, read standard input.

    Mandatory arguments to long options are mandatory for short options too.
     -b, --body-numbering=STYLE      use STYLE for numbering body lines
  -d, --section-delimiter=CC      use CC for separating logical pages
  -f, --footer-numbering=STYLE    use STYLE for numbering footer lines
    -h, --header-numbering=STYLE    use STYLE for numbering header lines
  -i, --page-increment=NUMBER     line number increment at each line
  -l, --join-blank-lines=NUMBER   group of NUMBER empty lines counted as one
  -n, --number-format=FORMAT      insert line numbers according to FORMAT
  -p, --no-renumber               do not reset line numbers at logical pages
  -s, --number-separator=STRING   add STRING after (possible) line number
    -v, --first-page=NUMBER         first line number on each logical page
  -w, --number-width=NUMBER       use NUMBER columns for line numbers
       --help     display this help and exit
          --version  output version information and exit
   
By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn.  CC are
two delimiter characters for separating logical pages, a missing
second character implies :.  Type \\ for \.  STYLE is one of:
    
  a         number all lines
  t         number only nonempty lines
  n         number no lines
  pBRE      number only lines that contain a match for the basic regular
              expression, BRE

FORMAT is one of:

  ln   left justified, no leading zeros
  rn   right justified, no leading zeros
  rz   right justified, leading zeros

    invalid header numbering style: %s  invalid body numbering style: %s    invalid footer numbering style: %s  invalid starting line number: %s    invalid line number increment: %s   invalid number of blank lines: %s   invalid line number field width: %s invalid line numbering format: %s %-*lld%s %*lld%s %0*lld%s \: xstrtol.c    0 <= strtol_base && strtol_base <= 36   444b444s444"44444441@4444444O^444b444s444444444xstrtoimax write error %s: %s " ` literal shell shell-always escape clocale jj||||||QE;1||||||||||||||||||hhh]h#h[hhh################hhhh|##########################h#h#h##########################DhD]\\<\<\<<<<<<<<<<<<<<<<<<<<<<<<<<<\                      regexec.c ((Idx) (num) < ((Idx) -2)) regcomp.c node->next == ((void *)0) ((Idx) (left) < ((Idx) -2)) ((Idx) (right) < ((Idx) -2)) !((node->token.type) & 8) upper lower alpha alnum cntrl space print blank graph punct xdigit _ UTF-8 UTF8 err == _REG_ESPACE regs_allocated == 2 regs->num_regs >= nregs pmatch[0].rm_so == start                              //1B`q,QuGGGGGGGGGBGGdGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG*GGGHm+3++2h3++1+++4+++++++0++3++++++++q1q122M356
777W'W3WW3WWRW3W3W3W3WWuuϏSuccess No match Invalid regular expression Invalid collation character Invalid character class name Trailing backslash Invalid back reference Unmatched [ or [^ Unmatched ( or \( Unmatched \{ Invalid content of \{\} Invalid range end Memory exhausted Invalid preceding regular expression Premature end of regular expression Regular expression too big Unmatched ) or \)                          ,   H   e   x                           D  _  re_search_stub check_matching pop_fail_stack re_copy_regs                   parse_bracket_exp link_nfa_nodes mbuiter.h mbsinit (&iter->state) *iter->cur.ptr == '\0' iter->cur.wc == 0 mbuiter_multi_next   2CUg.2CUgyxstrtol %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
   
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 ηycmemory exhausted    Copyright %s %d Free Software Foundation, Inc.  ;          $  D  d  0  0  p  @  `  4  P  p       0    0  ,  P   p  p            0(  pD  `  |  p      `  	  8	  pX	  x	  	  `	  	    	    
  p $
   D
  d
  
  P
  P
  
     $  H  @	h  p	     p      0
,  p
L  
h  
  @    P  
   $
  H
   l
  0
   
  0
  
    8  X  x   #  )  )  `*  0+  /@  p3`  `9   :  :  =  >  `?,   @L  @p  B   C  D  E   G  N<  S\  pU  k  l  m  `o  p(  rH  tl   u  u  `v  0y     P4  T  t      Г      @@  ``             (  pD  `   |             @  `  P      @      P<  \                  zR |             AD
FQ       @       AB
FQ      d   F   AB
C      y   AB
F,      $   D 	FAB
CL            AB
O      t?    AB
AF         AB
F   4  D    AM
       P  H   AB
FQ      t  D&    AB
D     X    AB
F     (*    AB
        <*    AB
        P-    AB
         dh    AB
ISI      (      AB
FNF     L  Y    AB
B      l  \T    AB
FNE       
   AB
C      h    AB
FFN          AB
C     D    AB
B       +    AB
A   0  +    AB
D   L  -    AB
D   h   2    AB
D     $*    AB
A     8+    AB
A      L    AB
FQ        2    AB
D     +    AB
A      v    AB
B     8  `O    AB
AF    X  `    AB
E     x  W    AD
AC      :    AB
AC      0    AB
A     4    AB
A     W    AB
A     2   AB
FE    ,       AB
      H  K    AB
A   d  D   AB
E       {    AB
H       ]    AB
E       Tm    AB
E           AB
E       N    AB
AC    $  \    AB
AC    D     AB
B      d      AB
IE        `    AB
B       ,    AB
FI         AB
E       Pg    AB
D      `    AB
FNE     (      AB
F    H   q    AB
BF      l   @    AB
FN      L    AB
D     P    AB
        T_    AB
F     {    AB
AC         AB
F   $  d`    AB
FF    D  J    AB
FN     d      AB
IE         M   AB
LF            AB
IE            AB
AC      H0    AB
       	  \    AB
IE       0	     AB
AJ       T	  
    AB
AG      x	  
   AB
AC    	  p    AB
AC    	   
s   AB
I    	  `   AB
IE      	  '    AB
FF    
      AB
AF    <
  \    AD
F    \
  ^   AB
AG      
  H    AB
I   
  $   AB
I    
  )    AB
IQ       
  T*    AB
IT        *}   AB
F   (   -   AB
F    H  .    AB
IE      l  ,/    AB
AC       /    AB
IE         80   AB
AG        2[    AD
FT       D2   AB
BF         4
   AB
C    8  40   AB
BF      \  5   AB
d   |  <   AB
F      <B   AB
AD         C9   AB
BI        Z    AB
AF    
  Z    AB
AF     $
  [   AB
AG      H
  P]    AB
B     h
  ]   AB
AF     
  ``   AB
BF      
  ,bW    AB
D    
  pbx    AB
IE       
  b    AB
AD        c   AB
F   0  8f   AB
I    P  s&   AB
BI      t  tf    AB
B       dt   AB
F     dv   AB
F     Tx   AB
F      4~   AB
BF        7   AB
I    8  x   AB
IE       \  l    AB
AG           AB
I        AB
F        AB
C      x   AB
AJ            AB
AFI      (     AB
LLY     L  Q    AB
      h  S    AB
        $@    AB
        HB    AB
         |    AG
FFN       (   AB
I      5    AB
D     @    AB
FQ     <  ~    AB
IFP     `  h9    AB
FN      ?    AB
FN      ;    AB
FN      @    AB
FN      Y    AD
NF       (L    AD
NF       XM    AB
D   <  x    AD
LE    \  ?    AB
AF    |     AB
F      a   AB
BF        B    AB
D      ,L    AB
FNF        X[    AB
A        AB
E                                                     h          b          f   Ȣ       v   ݢ       i           p          l   	       s          w   '       n   5       d   G        ~L        }                ;             ،
   oh   0   
   ^                                      p         o o   o                                                                                                                &6FVfvƍ֍&6FVfvƎ֎&6FVfvƏ֏&6FVfv                                                   C3CWh         @                           nl.debug    _ .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  H                +                         3         00  ^                 ;   o   	                  H   o     
                  W   	      
  p                `   	                      i         ،                    d                           o           (                u         !                   {         !                            ;                           TT@ <                          S                            S                            S                            S                             T                          U <                          U                           V                             @@W ,                                @W                                 PW                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ELF              2  4        4    (      4   4   4                  4  4  4                             $ $                
  $              (  (           H  H  H                PtdG G G           Qtd                          /lib/ld-linux.so.2           GNU           	   %            H)  @d` @, 2                                                                                                                       O
A|FEJ0$} 
!u"v_WK4plK0yY J%6OMmek|;$#xqX|.Kw]RDw
@
CEԫ-=s!cIm
@                      g                 P            !      T            g	           r      B      C            M      d                  =            T      t      j      |      =           G           k            D      
      B      p       ^            =            *      C                               u     E      $                  :            r      8            |                     "                     2                 }                              g     K            M                             2      {       '           v            4             X            =                  Q                  y     
      9      A      X      B      2             L      +           +      4     Q                  ~            P                  u                                                          f      v      $                  >             *                      L      -            j                               _            e                        r      n      @      O      =            >      R      @            2      5      ?                      f      W      M            Y            0            ;            2     d      $            w                  g                              F                  J      $      R                  4     `      O                 2            1      ;     4      ]                                                 d                   u      -      a      =      \      |      4      p      w      +                        k      d      H            _           |            l     -           Z                 "            b            F             +      $      Y                                      !                    L                  k            !                  9      :                              @      k      s	           b            h      V                       "      =                                                       `      4                 m                  9            8                                                      
                  =      j                        w            s      ;                  H                       ?      =      c                  4     J      T                        Z  "                                       *                 ?                         
      	  p     	        	        	  ȧ      	   8             6         
 	         V    ~    	           8     D	  p     	        	                 	        	        
  ħ      w	        ^  G      Q	  0          <               $      K        @  $      	  ܚ      	                 	  ,      *	  ` <             7	        g	        	  ا      ]	        }  u  %       d(       
 =	         	  (       libfipscheck.so.1 __gmon_start__ _Jv_RegisterClasses _fini libresolv.so.2 __b64_ntop __b64_pton libcrypto.so.6 inflateEnd deflate deflateInit_ inflate deflateEnd inflateInit_ DSA_do_verify BN_new SSLeay EVP_get_digestbyname EVP_ripemd160 BN_bn2dec BN_bn2bin MD5_Final BN_is_bit_set EVP_aes_256_cbc RSA_sign HMAC_CTX_cleanup DSA_new BN_hex2bn DSA_SIG_free DH_new EVP_des_cbc EVP_CIPHER_CTX_set_key_length EVP_des_ede3_cbc RAND_status RAND_bytes EVP_DigestFinal AES_encrypt OBJ_nid2sn EVP_CipherInit HMAC_Final DSA_SIG_new RSA_public_decrypt BN_cmp EVP_enc_null RSA_free EVP_aes_192_cbc RSA_new EVP_rc4 BN_dec2bn ERR_error_string ERR_get_error DH_free RSA_size EVP_sha1 EVP_aes_128_cbc BN_bin2bn EVP_DigestUpdate HMAC_Update DSA_do_sign DH_size FIPS_mode DH_compute_key MD5_Init BN_num_bits AES_set_encrypt_key BN_copy DH_generate_key EVP_DigestInit EVP_bf_cbc BN_clear_free BN_rand EVP_CIPHER_CTX_init EVP_md5 DSA_free DSA_generate_key RAND_cleanup RSA_generate_key CRYPTO_free EVP_cast5_cbc MD5_Update DSA_generate_parameters EVP_CIPHER_CTX_cleanup HMAC_Init BN_dup libutil.so.1 libz.so.1 libnsl.so.1 libcrypt.so.1 libgssapi_krb5.so.2 libkrb5.so.3 libk5crypto.so.3 libcom_err.so.2 libnss3.so SECITEM_ZfreeItem DSAU_DecodeDerSig SECKEY_DestroyPrivateKey SEC_SignData SECKEY_DestroyPublicKey SECKEY_CopyPrivateKey SECKEY_CopyPublicKey libc.so.6 _IO_stdin_used socket vasprintf gai_strerror strncmp strrchr __progname connect getpwuid inet_ntoa inet_ntop listen select realloc abort stdin _exit memchr strpbrk strspn rewind strtok isatty feof fgetc fgets getpwnam strlen sigemptyset openlog getaddrinfo memset strcspn __errno_location bind read getnameinfo __syslog_chk getsockopt dup2 longjmp shutdown _setjmp __fprintf_chk stdout fputc setlogin __strtoll_internal memcpy fclose __memmove_chk __strtol_internal __vsnprintf_chk setsockopt malloc strcasecmp getpeername getenv __ctype_b_loc sscanf stderr ioctl setrlimit64 __snprintf_chk __strsep_g fwrite gettimeofday sigaction __memcpy_chk strchr getsockname accept tcgetattr __ctype_tolower_loc __cxa_finalize freeaddrinfo fcntl getrlimit64 getprotobyname memmove fopen64 strcmp __libc_start_main ferror closelog snprintf sysconf program_invocation_short_name __cxa_atexit __stack_chk_fail _edata __bss_start _end tq outgoing_stream channel_pre kexjmp_key read_wait_size compat20 evp_aes_128_ctr channel_post maxfd kexjmp kexdh_client datafellows BSDoptarg max_packet_size BSDoptopt current_keys input compat13 newkeys read_wait kexgex_client BSDoptreset dispatch output incoming_stream ncon outgoing BSDoptind fdcon NSS_3.6 NSS_3.2 GLIBC_2.1.1 GLIBC_2.2 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.0                                                                                                                                                                                                      	                
                                                                                                0   F&  	 
     B&   
        6         qi	   
     ii
  
 #
     ii
   -
     ii
   7
     ti	   A
     ii
   M
     si	   W
     ii
   c
           (    0    8    @    H    P    X    `    h    p    x                                        Ȑ    А    ؐ                              (    0    8    @    H    P    X    `                                        ȑ    Б    ؑ                                                         D    H    L    P    T    X    \    `    p    x    |                                                    ē    ̓    Г    ԓ    ؓ    ܓ                    Ė    Ȗ    ̖    Ж    Ԗ    ؖ    ܖ                 ,    8    D    P    \    t                ؗ                    ,    H    d                Ԙ            (    D    `            ԙ    ؙ            ,    H    d                d   h   l !  t )   ?   W   \   a  | a   a   a     ȓ      $   0   x   <   H   T G  ` G   @   @  ԗ   (      D .  `   И         (    h  $ h  D h  ` h  @   \   x   |                                   	    
  $   (   , 
  0   4   8   <   @   D   H   L   P   T   X   \   `   d   h   l   p    t "  x #  | $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5  Ĕ 6  Ȕ 7  ̔ 8  Д 9  Ԕ :  ؔ ;  ܔ <   =   >   ?   A   B   C   D   E    F   H   I   J   K   L   M   N    O  $ P  ( Q  , R  0 S  4 T  8 U  < V  @ X  D Y  H Z  L [  P ]  T ^  X _  \ `  ` b  d c  h d  l e  p f  t g  x i  | j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {  ĕ |  ȕ }  ̕ ~  Е   ԕ   ؕ   ܕ                                                        $   (   ,   0   4   8   <   @   D   H   L   P   T   X   \   `   d   h   l   p   t   x   |            U
  <  G               h       h      h      h      h        h(   $   h0   (   h8   p,   h@   `0   hH   P4   hP   @8   hX   0<   h`    @   hh   D   hp    H   hx   L   h   P   h   T   h   X   h   \   h   `   h   d   h   h   h   pl   h   `p   h   Pt   h   @x   h   0|   h       h      h       h      h      h     h     h     h      h(     h0     h8  p   h@  `   hH  P   hP  @   hX  0   h`      hh     hp      hx     h     h     h     h     h     h     h     h  p   h  `   h  P   h  @   h  0   h      h    h     h    h     h    h    h    h      h(  $  h0  (  h8  p,  h@  `0  hH  P4  hP  @8  hX  0<  h`   @  hh  D  hp   H  hx  L  h  P  h  T  h  X  h  \  h  `  h  d  h  h  h  pl  h  `p  h  Pt  h  @x  h  0|  h     h    h     h    h     h    h    h    h     h(    h0    h8  p  h@  `  hH  P  hP  @  hX  0  h`     hh    hp     hx    h    h    h    h    h    h    h    h  p  h  `  h  P  h  @  h  0  h      h    h     h    h     h    h    h    h      h(  $  h0  (  h8  p,  h@  `0  hH  P4  hP  @8  hX  0<  h`   @  hh  D  hp   H  hx  L  h  P  h  T  h  X  h  \  h  `  h  d  h  h  h  pl  h  `p  h  Pt  h  @x  h  0|  h     h    h     h    h     h    h    h      1^PTR"   a PP QPQV$ÐUS    [` ttX[ÐUVS   ö`    uWt($)p  9v    9wƃ  [^]Í    US.   7`  txt $҃[]Ë$ÐUS_ | D$   D$8RD$ $$   0t& UVSä_  ED$$   xt E#Eu t7U [^]ËE#Et$    [^]Ít& U [^]Ít& U]}ǉu0_ > u1]u}]ÉT$4$8 t  Ӎ&    '    U]ò^ }uP8tp@<B<P<@8D$    0$򋃼  B0TD8    @D<TA7F8A]u}]Ív @<TBfUVS^  E@D$$y  -  UWztT    $ݬ  UB,PdPhPl PX$'t<Uǃ       B,$}z  E@,    e  1x`  [^]ËUǃ      B,$    D$DD$肛   D$%   D$   D$R$D$   h        US\ E`D$   $Y    '    US×\ $EED$E$   D$9     tD$$$   t& U])2\ }ǉu98~< uR|$$Ut& <$D$x  D$$x  8tq D    P8tB@<B<P<@8<(]u}]ËP<TP붋@($Ex  낍v UWVS%[    $uЉUMe   U1x  M̉MuEE̍EEETE    UD$    D$   D$j$D$D$    }1   󫋃  E   MEEȋuD$EL$t$$f  uȅu7      $H    FV<$D$T$    s   $ML$D$U$;  <$vtKFD$FD$F$i` $D$T$X;  vuEȉ$Eȉ$;8  u8 m  uxUMTỦLT Uu0$v  UF$uBB(0MD   LD    $D$      UA0TD8    vEt<TB	ME8B ue35      Ĝ   [^_]ÍLXD$T|$$o$    E$t  뤉$ UT$D$T$+R|$$U|$$R fU]ÒW u}HP$@ ;Ɖ"]u}]Ív U(]}׉u@$,5W    tP  uYD$JUD$D$   $<$D$|  $
   D$]u}]Í    D$    D$    $*  u9U$    Aa&    UWVSluV \  e   E1D$    $TtDP0;~3@4++y.@B   ǅ    ǅ    d$$s  T$D$<$$r  T$D$$tt$L$D$    |$$du tt1M  ]Uǅ    n    9   ǅ    ǅ    D$   D$    4$E9  D$   D$T$$r  ?  <
  <
u
뗋WG)ЉD$W(T$D$$Dr  *  A;AAX  <  <7  4  $    BD$B(<$D$     Q<$)ЉD$`  <$    GD$V$4  4$  1ҋt& 9$o  4$o  T7t'9F0|
uF4;}Fv8uًEe3     \  [^_]ËDD$NU$4  D   <
   <
   GD$pU$3  uf    ot'$D$AD$bU$d3  FffFFF    $n  F(O  D$D$Ut$D$$Y       y        FD$U$1  WI $D$GD$bU$:2  j)VT$$r  $  D$BD$   D$UD$ $      yt0D$UT$D$4$D$   D$   D$   =      D$D$|$$m  9   $ $zD$BD$V$1  ?BD$S$0  {cI    U$0  @4;GD$U$/  c4$      y   dgD$   <$g  <$O  4  @@<$D$  4  @@<$D$  <$  4  @@<$D$  4  @@<$D$  <$  4  <$,  $     }  4  (7 &    UWVSluM }E    DV3t<8 t   E    E}t  uE}u[^_]
;~U: u멍v L$qUWVSQHIL EȋMĉ$蜊 |  J  T     @趥  }  VE    E   E    MED$UĉT$Mȉ$   4Bw@W$ǃ     ǃ  
   ǃ     렋$螮    wD$   D$WVD$ $P`U:.  UԋMĉU#$葷    D$   D$HVD$ $W$   Tǃ      |$ $u1~ctU    t`|$$    v4$n  uǃ  ЋE̅t;}  EF  뭅u  렍Vt$$E   E   aU:B!U9  D$   VD$   MЉ$L$)     _  =        1779}<~8EED$$   xMuUL$$   $f  D$    $T$d$f  D$    $T$} j  d  E    &    E؋Uċ4$       pƇD$4$`Gn  G   $   B  G    GGE    H74$t
T:
  WJ9M<  GD$4$D  GD$G+E܉D$M܋E܉$uG$St,wt% $)D$GD$V$֋G$H$d  <$d  EE9E;U}#Mċ'9U݋~	>H1Y[^_]aÃ
~|D$8S$fVG G^W5GD$XS$WoGD$V$   Vt$$(   t& ;
GD$V$q(  <$c  EԅKt& =v    <$sc  v  $mt$D$V$(  \VCiV$}|D$V$cUS$EE D$   EED$E$  $[]Ð&    U(}}uue   E1]1҉E1҉E1҉EЈE1҉EE9BE EEED$ED$   $  Ee3   u
]u}]詖 '    US$Ue   E1D D$   EEEED$EU$[  Ee3   u$[]4 t& U]irD uu}}t$<$dEt$<$D$  ]u}]Ít& US$U D D$   fEED$EU$  $[]Í&    '    UWVS<EC e   U1D$   E܍ED$E$      E11uE    ¸        	u	1	u	1    	u	1    	u	1		u1	}	uuЋu}ԋ}܉u	ƋEԉ7	1҉GЋUe3   u<[^_]耔 USB $ED$E$tEU$[]ÍWX$    '    UVSmvB  ue   E1ED$ED$   $
  t#UE	E	E	1҉ЋUe3   u [^]讓 &    '    USA $ED$E$Lt	E$[]ÍWX$USçA $ED$ED$   $	  tfEfU	ЋUf1҃$[]Ít& '    US>GA $ED$E$|t
E$[]ÍX$o
USE@ D$   D$E$4	  1҃t[]ÍX$"  USç@ $ED$E$t
E$[]ÍtX$
Uuu]CL@ t%4$Ft$D$E$]u]ÍX$o
U]E? u}$=   wD@$]  t$D$ǋE$  t57 EtE0]u}]ÉD$X$L!  1ݍ(Y$:!  <$r\  1Í&    '    USE8A? D$E$,t[]ÍTY$tt& UVS?  ED$E$t\Ut8 xe    v w$ET$4$D$g4$[  1 [^]ÍY$T$h   4$[  ؍tY$K   ÍY$6   4$n[  릍&    USE8A> D$E$t[]ÍZ$sv U(E]u}H=    EP   U$k4FE   U$Z    Ǎ@D$E$Yx9tLUD$Z$T$<  <$tZ  ]u}]fUD$    $M1GU)D$ET$$UD$    <$T$j<$Z  1듍,Z$  {dZ$  cfUSEñ< D$E$t[]ÍZ$v U8]Efo< u}$PƉ<<$Y  ED$E$9unEEED$ED$   $  E|$D$E$  E|$D$    $BE$X  1]u}]ÉD$Z$|$v  E$X  ˍt& USExÁ; D$E$t[]Í4[$v U(]E6?; }}uD$   D$<$|     EU	Ѝp    wI<$   9wV<$D  Ut$T$$}t$<$  1҃tR]Ћu}]Í|[t$$m  ؍[$X  ÍT[$C  뮍[$.  뙍&    USE8A: D$E$t[]Í\$sUE@    @    ]Ív '    UU]B+BfUM4$|$}Q+A9r)1Q|$4$]Ð&    UU]BÍv UWVSUv9 r;r   <0x0\EUt& E9pvcD$   D$ED$$8E+PЃtZt$    D$E9pwD$   D$   D$E$[^_]ËD$   D$   D$E$4xU뚉'    USEXa8 D$E$lt[]Íl\$v UM]uu8 QA)9rA1]u]Í\$  USE7 D$E$t[]Í5\$v Uuu]}}}Æ7 VF)9r'E|$T$$[1~]u}]ÉD$\$|$  USE!7 D$ED$E$et[]ÍR\$L        U]uP6 H   v   19v,F)ȉD$
D$$F)F   F    ]u]Ð&    UWVu}F;Ft<F;Fr)luF^  % =   _]^   _]F    F    봐UWVS}5 }      G;Gtet& GU;WrGuGU  4    w=t$$S  UwG;WsW[^_]G    G    돍P]t$$ED$$]$&    U]E&/5 uu$t$Ut$T$$ ]u]Ív '    Uuu]4 Vt'T$D$    $%F    $Q  ]u]Í&    '    U]yÂ4 uuF    $   Q  F   F    F    ]u]ÐUWVS,54 LA  uEL[^_]ÍEEĉ$zU$Q  EȉET   T+  U҉U   D$$JEt	  Euй   |]tuĉ4$  EЉ$UЋuĉT$4$D$'TnTD$E$EЋEЅuUč^D$D$   $uĉ4$q$P  ƋEĉ$Uȉ$P  ED$]$  ]t$$  u> ]$T҈UuZuu[t)8Љt/ϋMЉ8u"8t$8tu1fEMАt& A 耻T U҉Ut8Љt8щtEϋM8ЈEu벉8t8t8Utu뉍TD$   D$4$F&    '    UWVSõ1 0ty0E    v wEtY4$D$    t$D$E$  uʉt$U]$T$  U4@  [^_]ËED$]$T  [^_]Í        US0 ^$   ǃ8     []US0 _$  ǃ<     []UWVS<EÏ0 E       $"N  E؉ETE   T   T  T    M؅twM	ɈMtUMMM8M  8ȉ  ֋U؉8u"  8E  8~  8t  u1E  }؅  E    u؉4$L  E܃<[^_]ÍTD$E$tȀ> tE    D$    D$
   D$    4$      H_t$$  } tDTuYucE4$D$Et	  E> w5TD$E$&uTutut28E   щ8u   8E   8   u1Ey    U܅x   E    MT Tu~t8Et28t,8Mu!8Et8ft8EtuzB oMEU؉D$$MEt	  Eu0u؅u}8t'8ȉƋUu8t8tuU؍B U(}}]uu-6- E t*	t%ED$4$_  1҃t-]Ћu}]ÃE uȃE uE t 	t4$Q  U   뭐t& E u҃E ufUWVS|Å,   EU$ e   E1P( ,1  }      ct+`$
  1Ue3       [^_]Ë D$|   0E0D$$+  +0G=     G$H  |$Ƌ04$D${8> T$D$   4${i 4$aH    tla$|$D$   9  1Xa$|$   18҉t"1&    g 9,u狅(8,84$D$T$D$Q$$4$D$$D$}D$    |$4$4$8,T$D$   D$$j t),8D$   t$<$D$j uc$Yct$ P  D$3cD$|   T$D$D$   D$   D$   4$`$
  1$a$
  1na$z
  1Y{ &    '    U(M]6?) }   ɉutvkf1D$E$tXUueE   D$   4$D$JUD$Et$$N  tlt$$
   4$]u}]Ðt& ED$    D$    $Eua$<
  4$fEf1D$a$
  wv UWVSL   U&( Ee   E1(bT$$  ƇD$$Fǅ     ǅ    ǅ   fD$    D$$輾  < K  <	=  t<#t<
tE  < =  <	h  t< t<	u)ЉT$D$$  tS:|=)ЉD$T$$#  $)ǉ|$D$D$$T$tuvU9ǅ   Ue3   h  L   [^_]Ë< t<	t։1$륋   8   @   @$#9   B@$t$T$D$D$D$pb$  B@$迺t$T$D$b$T$  D$$!R  uDǅ   >D$LbT$$  1Iv b$T$a  $Ͻǅ    Ht& U1ɉEUD$ED$E$EɃÍ&    '    UM]U$ Euuɉ}}t"]E}UuE    ]<c$#US÷# P    t$T$D$	   $&ǃT     []Ë| UWVS\e# <  Ee
   M1ɋUu9    /  bcǅ   D$TT$D$D$   D$   D$   <$3t$|$D$   D$   D$   4$   D$   t$!D$<$m       T  u(P      T$D$   $vcD$|$D$   $:T  u˿Me3
   v  <  [^_]Ít& dt& qc|$D$D$   D$   D$   4$! t  t! ҃)L$t$$   rb׋   Ncǅ   ;ǅ   t$T$D$   D$   D$   4$H^}cǅ   [cǅ   Tcǅ   ǅ   y   kcǅ   V| 3Dr t& U]Ev  MuuUP  w"҉     uyv~dL$D$`dD$D$    $6$   芾ǃ     t&      T$D$   4$z腽]u]Ë0dǃ     ǃ      ǃ  P   ǃ     ǃ     ǃ     yǃ     jǃ     [ǃ     Lǃ     =ǃ     .|0/U(EED$E$   D$Ít& '    U(EED$E$   D$]Ít& '    U(EED$E$   D$-Ít& '    U(EED$E$   D$Ít& '    U(EED$E$   D$Ít& '    U(EED$E$   D$Ít& '    Uuu] }u]u}]Ë0t䍳01
Ft͋U$T$虸u4봍&    '    U}}]cl uu]u}]Ët䍳1
Ft͋U$T$u봐UWVMuu*       ty<?t8Ѝv untj<*uAyt.<?tI<*uCt>:uGD$4$t߃   ^_]É|$4$lu> u1^_]1> ^_]Ð&    UWVS<  Ee
   M1ɋMU ɉ  ǅ    ǅ    ǅ    <
!`  E9s  4
,X  1U   9Ut&     q,u     t<,Ƅ= T$$   E9Ue3      <  [^_]гɉ DH 4    ǅ    뚍t& E9ǅ   1uǅ   @k ǅ;t& UED$   D$ED$E$Í&    U]蹹 uu}4$跳t$D$E$t54$蕳t$D$E$vt	]u}]1&    U(]9B uu}D$@   4$误tO4$6  D$@   $葯E  E|$$t,<$5  ]u}]fEt$$܋ED$ED$E$봍    '    UWVS|Å    E$6  0EE$
6  <ET:  T4  <  D$<$薮Et	  E싵<ǅ4    >   4: L}  T  u  :4$D$%Et	  E샅4> t	4'~: j  TD$E$讵@@  ut0$5U0$&4  <4$14     [^_]T  T d  <  < /ti::/  :/x  /.<8u%\  8X  8N  8.B  u1EOTD$E$萴4T  utWtF:8  .8.u  8  8.  u1E(4  u@S:4$D$
Et	  E@> !41L
z;4toD$@$wu܋@$2  ƋEtE  +0U0$1  <$1     [^_]À: ]Tj  U҉@f:$D$E  E
T "u/:;/8;t98t38.u%8;t8t8.tu?B 4TA  E@ tF:8t  ׋@8ua  f8[  8fO  u1TD$E$fǅ4    T  T u@/t::/  :/  /.@8u)  f8  8f  8.s  u1T )u@A/::/  :/
  /.@8u&   8   8   8.   u1}<   <:8   ׋<8u   8   8   uDMɉ@H:8t-׋@8u8t8tu1@B ǅ4    w<B 0$TGU$Eְ t$
  u+EMFVEQV$t$]Ív $
  ͐&    U-   E4$u|$}
  uErzEB4$|$]Í$
  ܐ?-  ; U]  Ív '    -   U]  Ív '    U,   E]  Í&    ,   U]  Ív '    ,   U]  Ív '    U,   E]|  Í&    USnw f8 xu(
     v	   []Ð
     w닓D
  @
  	t;0
  rw;,
  rǋ<
  8
  	t; 
     rw;
  r&    [1]Ít& '    U+   E]H
  Í&    +   U]ǁx     Í    +   U]ǁt     Í    U]ir uu  uT =  w.e$ǃ     t$s  ]u]Íd$t$݋  t$D$d$뺐t& USέ
   t$$=?  []Ðt& $= []ÐUSnw
 $p[]fUS>G
   $@[]Ív '    U]	
 }}u  4$t4$G]u}]Ív '    U]蹬 }u<$~.<$t$D$  $p~ D$<$]u}]Í&     t$hD$ah$蚯v '    UVS&     $V)  /     D$    4$ D$C    D$    D$    t$D$    $账uJ ttft4$v(   [^]
US>G ED$  $[]Ív US ED$  $[]Ív USު
 ED$  $y[]Ív US讪÷
   $[]Ív '    US~Ç
 $ED$D$     $1E$[]Í&    USE8A
 D$ED$  $[]Í        US
 $ED$   EED$  $$[]Ðt& UWVS輩	 ,  e   E1  tuD$     D$a   <$D$   |$4$*4$r= v݉4$D$   D$
  D$  $Y  Z  D$0e$$            U] uu  t,9ǃp      v)  ]u]鍴&    t$ED$$W]u]Í    '    U8]ir e   E1uu}h tmE      E   }D$D$    <$荟E܉  4$TU|$4$T$Ee3   u"]u}]ø   E   E	   tY t& US讧÷   t
  ǃ     $[]Í&    U]ir u}1ǃt     tP4URux4tu܋]u}]^t E@   $   < v '    USަ   tht%ǃ     E$ y []Ívh$t& USUxÁ tp
  $D$P
  D$Wp
  []
UWVS,5 ,ED$h$'}    8
  ǃ
      ǃ 
      ǃ
      EUE    M   h$U$y M4~WGD$    $D$$"  F${"  F$p"  F$e"  G$Z"  F<$O"  U$;"  E$D  UƉZ  @P~4t@   EUD$FD$FD$FD$FD$F$D$ F4   tpvvM611 MQH
  tM11ҋy1 wo9wkE0x,[^_]ø   @1UB    븍t& t  t    Gu`}t\ G   vvYƉ돍P  @
  ǃ,
      ǃ0
      ǃ(
      UME   $    뛍hT$$&    '    UWVS|Å L@#  E}EE  Uȃ4@E$Mu@MEtG  Uȉ$'1҉Eu(рMwM|    }׉|$Eȉ$EEtP  R  |$D$    U$Mȉ$E؋Eȉ$UUPUPU؈PM׈HE  EE    @  Eȉ$L$D$Mȉ$-ƋEȉ$pt$|$D$P  $F Ur>  $
  $
    (
  (
  uf8   E1҃u1,
  0
  Uȉ$z}  }4t=L[^_]f1} > U9   uًx  tL[^_]M}׍T
U܉|$ƉɈ|  1L$(ЋU܉D$Pe$T$ Mƃ|   h$OUBD$MЉ$L$KUȉ$Mȉ$t$D$$
  D$E$!Q  EEȍ
  $HD$   Uȉ$E4$
t$Mȉ$ Eȉ$jjD$D$   Uȉ$4$4$4|$D$Mȉ$EuE$   fL[^_]ËUȉ$D$$qMȉ$ƋEȉ$t$|$D$P  $  `     Mȉ$@E   E    E    EE   e$\        UWVSܞ <e   E1h06    U؋    Eؿ   $EЃ))ǋP       )D$E؉$U؉$dƋE؉$t$u$ t$D$   UUUU؈E$E܉t$D$   EE܉4$EEEE܈EU؉$4$D$ǋE؉$U؉$t$|$D$P  $  E؉$dUe3   J  <[^_]ËU1$E9 ¸   )Ev 9   uύv 
  4$  E؉$D$   	pjD$D$   4$U؉t$$p E؉$4$4$U؉|$$D$P  U؉$  x   <0  ǃ      7
iE"FBF4$&  7FUԉD$$4E؉$FV  B  B  B  uFG둍G<0AD$h$$     ƉF  VF  B  B  BU؉$    BFBr0ǃ     L t& US ED$  $)[]Ív USΚ ED$  $)[]Ív US螚ç ED$  $)[]Ív U8  ]Ucl }e   E1uht @uuED$T$D$   D$   D$   4$3?tQ$   u$    4$1GV$#Ee3   u#]u}]$$   $4$EK t& USExÁ D$ED$  $[]Í        US>G ED$  $9[]Ív UWVS h81$qE$E~15 Ɖ%   $9}~   uލ    σ[^_]Í    U(]E膘Ï uu}$         f   Et$D$    D$P
  $Ep
  t$|$D$P  $D$   D$    D$      Et$|$D$    D$  D$    D$    $  ]u}]ËED$e$et$$ft$$v USnw        ;  ǃ         $h  $Z$0$"  $  $  u"P  $    $  []Í
  $W ɐt& D$   $\  $辑_    '    U8  ]Ucl e   E1u  t@f$蠙ET$ǃ     D$D$   D$   D$   4$+i$t$h tR$   U$   y4$GV$y货  t& $   ?	 $   4$Ɖ'    U]Yb uu}׉Mt^@$  tO}   ttWuK&    <$"9r9<$})Ɖ  ]u]Í3i$^롉  봍t& UWVS輔 \h ,         4EԉỦMtq  E    E   t@E؋       1ҋE؃)ǉu؉}  $*U9    |$M$<$HUt$T$D$  $  M<$L$ܻUЅtuЋF  Et
  u
  
    
  
  uf8 G    1ҋ}u1
   
  <$蔹p  D$   E$4t$U$蕺E̅tM̋A`  M$5ƍ@<P  h  4  ǃ      a    \[^_]Ëquv $肸N  $軸HM	щMP	щM@	ȃ= M  }4$ W9  D$   4$      E$|$U$豻$|$t$D$  $  |$4$襹}<$芷<$зVT$$A	 U<$Ƹ   )ЉD$f<$N;Et!<$AD$ED$8g$U$mEH@Q	A	A	9tdg$VD$   M$S    M$@<  < <$  ,$    !蚁  t$D$g$$    <$J9E    4$E؉4$D$E<$iU؉T$D$M荃  $L$9  4$AH	P@		A=     u؉<$t$Si$-
i|$$    $    ǃ      \[^_]Íit$$t& x  u뻋}<$<$Zt$D$
  D$EЉ$?  UЋREU$#uM9u  UЋB$D$赶
  4$rt$}<$C <$[4$sE4$踴U<$T$D$PtQf$    ƉD$i$K4$  $    $
  .%D$f$	E$    j~  t$}ȉ|$D$f$64$
  $   2 fE   E    E    E    E    BiL$$ 4$虳D$    |$$U    2g$it$$kL
  4$Ȳt$}<$  <$豲4$ɲE4$U<$T$D$[$    :ƉD$i$4$~	  f$CT$u؍hft$}$|$     )$UЋE1|e$fBiL$$  $   UЋEl1=Xi$g}   w     +E녋ED$pi$'    U$    Í        UWVS\e ,   Ee   U1҉   $}     t&    !   .    D$    <$ D$?    D$    D$    D$    |$$谅uF tt  D$    T$$誂       D$$=$_Ƌh F
jD$gT$$D$  ~j$P<$  Ue3   uO,   [^_]z  D$+j$0$   4  ;~ $~D$g$Ì; &    '    U$    Í        U]" uu9tD$ ht$$w]u]Í    '    USΈ   $P    ;  t$P  []Ít& UVS荈Ö    te   E1ǅp   D$   D$    4$pD$  t$$g}xt   ftf
t1Ue3   u0Ġ   [^]Í&    |u׋Eu1}  9         US辇 @  $0  []Ív '    US莇× }P  t  E$D$]  []Í&    USNW }P  t  $  []Í&    '    US }P  t  E$D$  []Í&    USΆ }P  t  E$D$}  []Í&    US莆× }P  t  E$D$ED$F  []U   8  ]AJ e   E1u}  ;     p$ǅ   D$   D$    _}D$D$  $xb$ǅ   D$   D$    }D$D$  $虃x;t1҉ЋUe3   u?]u}]Ë9ɋupff
!6 &    U8] uu  t]u]fǃ       ktۅ   usEVt
tED$  D$   D$   D$    $Hy/y $yD$ED$Gj$ _  $=J     uv UWVS% ej$     EGVD$   D$    D$      ED$    t$|$  P  $    $D$    D$    D$    D$    t$|$  @           uQǃ     $軮$譮  $蟮  $葮     @[^_]Í0h$\$ÐUSE؂ t$K{[]Í|j$t& '    Uuu]蓂Ü t4$~t]u]Ík$΅jt$$輅        U]E6? u}$7|x<$p|$ƋE4$D$k' ]u}]Í        Uuu]EЁ t)tt$$+xt#]u]Ð4$$}獃k$jt$$UWVS}fo t[1)D$ED$E$Ut$uu     [^_]9wv u tu1[^_]ÐUE  1kt(kt
,ku]]9k
UE  TtWt5k]Í    '    U]IR }u$   UǋG    G    BGxlb)zƉG   UB@${F   UwB@${F   ]u}]Í    tD$k$uƉG   UB@$R{FtUUwB@$7{Ft:UwB@${FtUwB@${FU\k$lAk$^vk$PU(U]M~ uu҉}}t#t*tED$\m$s]u}]ÐEt$|$T$D$$S  Սv Et$|$T$D$$K  뵍v U(U]Muu}}%~. t)tAD$k$ܿ]u}]ËEL$t$|$D$$OZ  ֋EL$t$|$D$$BN  U(uu]}ì }[  }<$ t9   D$|m1$<<$t]u}]Ðt& 4$<$D$ܜF@<$D$jF@<$D$X<$ U҉tE0Et*4$CU<$FMt$D$$v<$)t$D$    $!t<$轧D4$ <$D$4F@<$D$F@<$D$谟F@<$D$螟F@<$D$茟/&    k$    '    U   ]|
 uu}k18tcET9thk9   u   Ttuu   W   Mm$L$蛼   ]ȋu}]Í&    MT:AuT:AyT:Ai   봋Uk:B^k:BNk:B>   w    '    USUz xB@$^p[]Ãt1[]ËB@$=p[]Ít& '    U(]yzÂ u}ǉ$hpt8D$UD$D$   <$dp4$r   ]u}]Ím$1፶        U8}}]uy udGtk@$woD$   D$iD$E$oGPEu8k1$h]u}]Ã   t+1ߍ&    G   PEt뿍&    Ot΍E1D$ED$<$qE$tUT$ED$ED$E$/  ~4<$f QUD$   T$D$rD$E$nE$U$wZ1t& '    UWVS0EUqxz < t]<	tY0<	whE0>G<	wv >G<	v UD$E$st.U   2[^_]f< u< u1[^_]UHEU]w }}uE    E        t   D$m$z!vEЋ      ED$ED$<$}!  $@   u4$ǋEЉD$9lE4$D$ED$uU|$4$T$0sED$    D$E$fnE$]u}]ÃtD$n$)ztE*1ɅuًG@$BlƋG@$$lU$D$EG@$"nut$G@$
nDn$y&    '    UWVS   ue   E1EĉD$Eu D$E$E     }čUU$E  tf	l1EMEUML$D$   D$   D$ED$   $rUMET$L$$ 9uUMD
 ED$    D$E$lU$(EMe3
   6  Ĭ   [^_]Ãtnt$$CxEEaEeEiEE@EoEuEyEbEcEdEfEgEhEkElEmEnEpErEsEtEvEzEx$   E xM   tS1   E   9uwMEuGER)EMD
ڋMDxDڈDGPMx UM M M M M M M M M M M M M M M M M M M M M M M M M M M M M M M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     MTrExttR)ttDڈxDɈDxeR)ыUtD
ڈDG9uHMTqMЃDD-DDɈDEMTp    )TqMЍ98)щMhn$/vz$ v '    U}}]rì uut
t;t1]u}]Ív xRHWft܋FtՋ@D$B$quF@D$G@$p럃tD$l$xuW{Fp@D$B$pVF@D$G@$p6F@D$G@$lpF@D$G@Rv U}}]upqy    ~t,D$k$txGt$kG    GtgWpt84$'kD$    4$D$shG @$W@    $mG@$jG$<$]u}]Ív Gt$MeG    `t& U]ypÂ u}}$   Ɖ8@    @    @    t`GxHv Wj   jGt|jGtp~]u}]Í&    t千ql|$$IsetCjGt)jGt}jGtqjGt~듍Bl$rYl$r*l$r
UWVS\oe ,EE$辚ED$ED$E$ED$    $"v  $t{t=v 
  <o1|$$趰<$E$,[^_]$   -ƋE$tƅtD$do$f뮍t& $   Ƌ@@D$E$]tXF@D$E$Ct>F@D$E$)t$F@D$E$[    o$ү4$1h
v $   TƋ@@D$E$轎tF@D$E$裎n똍n1$b    '    UWVSEUcml 89    D$    <$c!    <$E   FE~   U  9E  U$f4 4$/t$D$ǋE$"    D$<$F<$$  U;
  E8   UBt$'aFUBF    4$U< tY<	tUt< t<	tEUuUE   [^_]Ít& D$
m$eot& EU< uEU< ufE    uB<	   뉍&    @t$
fFUBF    !o$N4$>l$>&l$&Ul$T$<$/l$l$ϫ1ɍ҃LBB<	vEU8BPEUBPE   Zv ED$o$;3U}}]u@jI xSI$ƋG@D$F@$hG@D$F@$h]u}]ÃtD$o$8m$   <ƋG@D$F@$NhG@D$F@$6hG@D$F@$hG@D$F@$hgt& U8]IiR u}}$   xI?ED$    D$    D$#   $f   F>]u}]Ãt(m|$$6l    ED$    D$    D$    D$    D$    D$    $^Et6E$]tEFvtp$k@p$kp$kv '    U]E&h/ }u$ǋ x_nwbFtswbF,tdwbF tUwbFtFwbF(t7wwbF$t(]u}]Ðt& uwObFu؍p$j&    '    U]EVg_ u$$   F     @    F   ]u]Í    '    UWVSf E$ǋ tx   UwB $aw"  MA@$bWFr  MA @t
2$2F[^_]Ðt& UB@D$G@$dt#MA@D$G@$dOp$iUB@D$G@$dtӋMA@D$G@$dtUB@D$G@$cdtMA@D$G@$Ddmp$hq$h
U8E]Ve_ u}tUGV:u1]u}]f$TɈMމEEt{T   T  u+  U
tA}މ8=  8ȉƋUu /  t& 8#  8f  u1  TD$E$b   >    4$ItIftB} tT   u~   Eމ4$D$ZEt  E뢋u4$!1}tCuD$4$}ZEt	  Eu_T 3M   uFm$t$苤E$   WU BET   T uttG8E   8   8Mu!   8E   8   8E   u1EM	ɈM\MވMM8MR8ȉH֋U8u#88E28'8u1ur8Et%щ8u8Et8v tuHB =USM;bD   f9u[]Ít& UWMVuS}b 9w(   w 
=   t	9Ɖ:s[^_]Ðt& USMa U[]
UWVSaÕ u}    Uu]<$B=   w5t(ED$E$D$хtt[^_]Ív JqT$$׉<$Du[^_]Í    USE` D$ED$xq$r[]Í        U]E`ï uuD$t$q$-ht($   4$x3]u]Ígq$cUSU+`4     []Ít& '    UWVS  E_ uEEe   E1]D$$T$AU<G=  V  D$$4W|$D$$]$T<G=    D$$V|$}D$$]D$   D$$t]|$D$    $ZEEFEFEFD$   D$    $U1   ǅ    ǅ    ǅ    ǅ    Ee3   uCČ  [^_]ÍuD$q|$$tauD$s|$$Xa v UWVS] E|UE    EUEMUAIEBLM@E  MUD1uE$ME$ED$U$觀MALD$E$NRB  ML$ED$U$[ED$   D$M$[UBD$D$M$[D$    ED$U$XM9M   EE    ȉEYUT$ML$E$P[|$UT$M$:[D$    EED$E$XE9EvZ}U}}BLD$M$EQ@uU$BM$腂t$D$E$ZPU$MEDM q$UMu}ĉUUMBB    Rt~EBEB   DB,UBABB    t\Q   rzDB,|[^_]ËM$dƋE$见t$D$U$Y   rz놋QEMB   JDB,|[^_]ÉD$q$K^t& '    USZ׺ D$1   $   pED$0HD$$   []Ít& USExZÁ D$ED$s$2[]Í        UWV   S5Z> t& D$1u<$$[^_]Í        UWVSY ,$(   }U؉E'<$E<E܉$U܉$t$1<$D$bf<$xu
rf Eԍv D$    <$ zUDD$Eԉ$gu҉<$xM؅tU؉D$t$<<$4wD$0t$"<$E,[^_]
UWVSuX߸    E@H   E@D    $E$~   E1$~Ǎt& K  >w   tv$   ׯE$\~ƋE$~t$$>1r$`EHH[^_]Í#r$C[^_]ÍPt$轙荃xt$=[    '    UWVSWŷ lGr$uS  E1$v}U4T$D$<$=uf1$    $f
u輬臬~2arD$g$D$   T$踘j$E@H  E1҃$UE܉MU܋IU؉EE0  E    $@      Eԋ}1EUԋuT@    E      E    E   uM؋<D$    <$ML$踝  $趺  UԅB  Mԉ1A    A    A    $v  uԉFF$U  U؋MFEUE4D$    D$4$9.  uԉD$4$    tF   MF    EF    uyM<4D$    |$4$̜E  uԹ   zr4uȋur  E@4   Mԋ}UċEȉ΅PQ<rIurD$rT$L$t$$ E}UD$    MD$$$uẺFa  u̹   r  E@     	SUBLuD$    UFD$B$Ǜ  $%MA  4$>uVJB9sȋR09s֋EPJB9sȋR09s9s}UB         Mt& UЋUЃ  uD$,   $"Jt  UD$,   MB$It  uЋUM܋F4<t$<$Qtut$|$$AFI  EEMA    Td   $҃l[^_]ËEY   E   E   E   TuĹ   :W   UB4   rUEu̹   ru9MA    PuFLD$Ss$U$WEu̹#   |u,  E@    PUBLCs$uĹ   ej   MA4    D$u$ђE|$D$t$Ugr|$$TEt$D$$u$Ttt$$TPu|$t$$Tt$Tr$Ts$T.st$$tTučr$t$_TM̍s$L$JTv '    UWV1SPӰ $p   D$p   D$    E$HE4$|}$<${<$ovD$    <$ljuf v UD<$D$ou<$D$    5j<$D$    5kE@D    $#.E[^_]Ív UVSO u$   Yos$s$$   |W~2arD$g$D$   T$j$s$衐F4FD   $?uFfH$PF    [^]ÐUWVS   UEO uJ0e   E1   z@   B4D$BL$<$D$vJEEEEU
  D$D$   <$EE<$D$0D$sED$    t$<$F<$HUe3   u'   [^_]Íu$Qv$Q  UWVSN G  u0  tiwtYD$E$LuEt WUB@~fUBBWuAED$6v$袎1[^_]ËUIv$T$胎[^_]ÉЋUB몉D$ED$(v$P&    UWVS,EM tUGV:u
,1[^_]É$EETɈM   T  T
  u   U
t:}މ8R  8ȉƋUuD  8=  83  u1(  T   TD$E$Jts> tnt$$      Et$D$nv$} tTuZut%Eމ4$D$oBEt  E> uu~v$t$虌E$,   [^_]ÐT(utt38E   щ8uf   8E   8   u1Eumt8Etg8ta8MuV8EtY8t& tN8EtIu뭋}$D$u4$lAEt	  Eu    B gT LMM	ɈMMވMM8Mt28ȉt,֋U8u8Et8t8tu1	U BEiU^vt$$T$`M$%	U]EI }u$ < tT<	tNt< t<	ftut&  E<$D$ED$  <$]u}]É< t<	u        USEXIa D$ED$ED$E$  []Ð&    UWVSI% u4$_t$D$ǋED$E$E   E1D$$Dt& ;utOED$>$D)kF)ЃEuċE$
   D$jD;uu)kF)փEtE$
   D$3D<$O[^_]ÐUEt#
t 
tt
t
u ]É &    UE:u]1À[   t0ft0ɀ@t(&    ]t-:t7/v t̃t@u߃8[u   f8:uۅt]Åu]É'    UWVS\Ge <ED E$  Etd0\1EU܉E؋UUD$   D$   D$E܉$D$   D$ADEU؉<$D$T$  ;uu<[^_]UWVSFŦ D$   v$<ǉ   qD$    D$   4$eCy܉t$<$?u; $q;D$wD$D$    $K<$   Dv ~<$?A[^_]: $;D$vUSEE D$E$  []Í    Uuu]Eì >[t]u]Ðt& 4$?D8]uރ  ]u]Í    '    UWVSLEU u}    t$UT$E$v<tuE$$?U|
tS4$?uGD$ED$zD$$x$4$a?
t4$d?tt& {1[^_]Ã[^_]Ít& UW1VS  EDÊ le   U1҉X`E
XDXBt*BB?  uw$iG`ƅ    lx1\6=     Ƅ ``   %uƃ``%ttm1T9tYTXD$$9tڋpD$   D$$  =  k\$F`D$x$eF$Me3
   u'Ĭ  [^_]ÍHx$2F\$$Fo  
U  Ee   U1҉]u}BÊ 8~t%$'Ue3   |  ]u}]ÍxD$/   <$8__ `   U$L<>  D$   FpT$D$S  =    v4$;t|/t+iwD$TD$   $r  =     _    TD$   |$$@  =     T97)   pt$D$   |$X$
9Ƅ5p X$W?XD$x$YD`Q  ,y$8DED$y$#Dx$Dt& UWVS}@ß t<Wt1$芽9ww${G    G        [^_]
U(E]&@/ ED$Euu}}D$E$<t)F9v0$E]u}]Í/w$(CD$Ty|$$CfU(E]?ß ED$E}}uD$E$3<tewtIG9w    D$$XWMwW    ]u}]þ       G    뷍Mw$_B
U(E]>ߞ u}u1]u}]ËE0t[  hwu04$8/   :   uE     iwɈM   jwɈMtskw    t҉E9Ut/}9t'Ms9Ut9t9эv u߅c    M  U59׉tM9t9uD$]   4$!4D$4$4shwD$4$:\v '    U8]9=B uu}1     u]u}]À> tEu1E؋ED$    D$
   D$E$h4M9MEt?"   E܅xAEW   EHt^&          DgiE܀Q E܋Eu܉E8 oKmtSv  dtЀh    (iE  E뿀stwiE܀:	 ENkE<E눀Mt& tSt& lMdv U8E];ϛ }}uE    ugkwD$<$6t=ED$D$D$    D$    D$    <$  ƋEt]u}]ËE <$D$:   E$1tO  D$    $0UED$    $U$E8zzU$ܷD$    <$Xt& UWVS:å }$   ݷ     @    @    @    @    @    @    $G$FG$FGFGFG$̷FG$辷F[^_]ÐU8]E9 uu}}E   D$|$D$   D$   4$R7   }tOw$E   t$zD$   |$D$   D$   4$66t%]u}]Íowt$$Vzߍt& - $M.D$y$z- $*.D$y$<z땍v '    U]8 }}uD$    D$   <$5   u#w|$$zy1ҋ]Ћu}]Íw$|$yt$D$   <$I51҃u
- $c-|$D$y$qy, $7-|$D$w$yct& '    U]7 }}uD$    D$   <$4   t#w|$$zx1ҋ]Ћu}]Íw   $|$xt$D$   <$I41҃u
, $c,|$D$y$qx+ $7,|$D$w$xct& '    UWVS,E6ߖ  Etxuu    E܃,[^_]Ðx{  xE  x   Et҉U9Ut*9t!Mt9Ut	9t9ѐuUuM  x
qu؈E   x   U8Qu   1҃D
9tЋu؍0E9=}=} QU
  x$  E8Au   1҃D
9t   E9ΉM;Mu99uf1FuD$4$+xt< x    u1Ut& T9t9t9Utu1T9t9t1MEu܍xD$4$1?xu>u1
&    T9t9t몋M؍xD$$E1V x u0u1UT9t9t9Ut됍t& WUxD$$0=U8]3ғ uu}z(     ǍED$    D$    D$4$#+E9t8 u?"t$f~  ~t& 1]u}]ÐwӐސUWVS   E#3, U}tEpe   U1҉l1t҉|tt8t0!z$tUe3     Ĝ   [^_]Ë@tɋ   <$p|$T$Ɖ$u,}E(  q'x  -x  ,xB}  x}4$D$   D$+xBD$   D$F$+E4$D$    D$B)4$uۮ|4$D$&lE4$T$D$L0E4$D$|$-tB<$D$xD$ED$C.xEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEdddd$c*\ztZztkcD$dz$qt& EhW$	\ph|$T$$=[hD$    $Q   EuqU$]ED$h$Ph$8Vǋh$([z$|$q4$   ED$z$qh$ZE$Ĭ<z$3D$ {$2D{$2U   ]Ec/l U}M}Lue   E1HD-t?t0z$p}e3=   /  ]u}]ËwtɋW@s  ǅx    xǅ|    E    D$}   G}< |$$D$DD$*  <$&  <D$    <$($F(J  VEȋBE̋BEЋBEԋBE؋BE܋BEBEB EB$D$   4$E# Q  HtH (   L1$(   LUȉỦPUЉPUԉPU؉PU܉PUPUPUP UP$1^&    hD$4$Z"DE4$T$D$+ME8L$D$4$E)G8D$E<$D$i(EddddEddddEddddEddddEddddPEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEdddd  P$"PA4$!44whwc@Uȹ
   0E܋P+4D$$#PE)D$A$#P<$W%4z$t$|$mP$(%X<$WWD$<$"KEȉD$D$(   <$F<$sQƋHtH1Lt04$荨L<$QLt$D$$%<$V1D${$lD$   4$   z$lh{$l<D$    $e vU   EU]u]*f e5   u1}}H\t8t9{$kUe3     ]u}]Í&    @t@$=    EX$BUEX|$D$$yTXD$    4$SJ   ``T  `$胦XED$$JX4$dZO4$PTu  HB$ǋE9  b   %    <<$"$$y  UP$D$E\D$Pt$$\'PUED$L4$T$$Hu@EE   @ǅ|    -  dE|Edddd$EddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddD$D$s   9d$Ϥ|GV   D$}$hnE~ǅx   ǅt   p9tZ  {$*idEEddddEdddd$EddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddD$D$s   9d4$1ͣ)D$ }h$|$gd|$4$萤dED$dD$h$"hdD$    T$4$}6~ǅx   ǅt   pE$   9   $;UD$   4$T$lD$dD$L#  tx9C  txT$D$}t$$Lgǅ|    ll$f{$g  HF@$D$   D$h|$f`D$|$fX$O`4$ء|$|$|fd$计sD$|$|$Sfd4$耡EP}|$릋xlp9҉t|$fǅ|    tlxL9҉Ɖǅ|   8||$eǅ|    _D$    $D${$zeǅ|    )t& '    U   }E}UM]ha#j e   E1ud`t?t1!|$eUe3     ]u}]ÐGtȉ$p$CGl?   %    <4$$  U\$D$\M`$L$D$+!ED$\MXL$$yGlX4$D$ED$ET$L$D$EddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEddddEdddd?  E9p  m  |T$LTTD$$AplTL$D$$<T$RGdEtdht<E$hh}T$_Gh|$D$$T$KplD$s   T$$%l$軝1vuE    UE    `E     %    ЃD$G T$L$4$D$f  E9po  w6lpD$)E$D$D$    4$bpD$    )lL$$JE룋ppD$)ǍT|T$$`ElD$L$$l|$D$    $$  t& 7D$    $D$~$al$KpD$}$T$`l$}$t$`:|$`D$pD$}$}`l$诛D$    4$[WUWVS|Ufo~ B t%1  D$D$W~$!(  EЋMAD$EЉ$m  $   uUЋB$r~$0_$"_$   覔E${rE؋EM؉D$$FE  UԋM;A  UBX  Mԉ$Ѓ  2EȐ  Eȉ$?rE$rEo~2~D$g$D$c   T$^j$蔆UȋMЉT$$"    EЉ$KE܉$4UЋMȉT$L$Ɖ$hE!  Ẻ|$4$D$SU܉4$D$    T$4$蘙MЋuEI44$EM{B4$EBu$4$E_B4$BUMȉT$0UT$,Ủ|$L$$MT$(UD$L$MT$ U؉L$MT$UĉT$ATD$AP$詴  E؉$Uȉ$MЉ$EUԉD$E$D$ED$ED$豜   Mԉ$E$蒘Ut^E̋UD$E$D$ED$iM̉$:E$C|[^_]Í~$譄.  EEB$]MQ$T$UT$t$$?H$1~$#x$~$$~$UWVS   Uclz B$(  A@E  $   qE؉$ހU؍$T$Y[${($F[$   ʐ  $n  $nwl~2D$g$D$V   T$=[j$4$#=  ~4$=       4$D$    D$   D$L$v $"   p$   M؉$$    ED$    D$   D$$,Z&    t$<$Ԡ  UE܋BM$D$	  $Y$    pU܋B$}yx$Y$!   BE$mEȋEMȉD$$EM  UċM;A   UBX   Mĉ$Ѓ9  E  E$lE$lEj~2D$g$D$   T$_Yj$1UM܉T$$迠  /  E܉$
Ẻ$єU܋MT$L$Ɖ$E  E|$4$D$UD$    4$T$4$5EEA@  E܋U܋M܋u@RI4EEUM4$E<4$E-=u$4$E<4$=UMT$HUT$DU|$L$<MT$@UD$L$4MԉT$8UL$,MЉT$0U؉L$$MȉT$(UL$MT$ UL$T$UBTD$BPD$BL$茰  M܉$-Eȉ$&U$EMD$EL$D$ED$Eĉ$  Uĉ$@M$ՒE tgEUD$E$D$ED$謷M$}E$Ĝ   [^_]E   E    a~$~EUB$蔒MQ$T$UT$%h$vH$h~$Z$$L~$>x$0ˀ$"$USçt e5/ u$  []@D$/ D$$v '    US>Gt u[]Í"$UWVS
t    P@ǅL   e   E1D$   D$    <$:   @LD$|$$   fP
   LuD$   D$    t$D$    D$    D$<$   D$    D$
   D$    4$
Ue3         [^_]ÍLD$@|$$R $D$P$TǅL   )t $D$5$lT1b@  t$D$|$( $~U1҉E]2fU$9Br t$ыu$  t$]a$t$]&    U   ]륐t& USq   t  []1r    []U(uu]Üq f>
t]u]Í    NFuPu߁x  u֍$8RVEUNF        F    f     fNV듍v UWVS
q   p`\e   E1ǅh   D$   D$    <$4   `ht$|$$   fp
   t$o<$\hD$    D$    T$D$  t$D$<$u`4$Ue3      ļ  [^_]Ë`ht$|$$-]1뽐t& ǅh   St+$
D$\D$܁$Q1xg $J  v '    U   1ҋE]]    '    U1҉   SW`o E/t[]Ðt& k$[]Í        U      S
o Et[]fk$蒌[]Í        USn 
  t
  []Ct#Z^$r
  u$   ,  k$
  벍    U8  }}]e   E15>n ut'
  t'Ue3     ]u}]Ë
  u蛇uk  
  ]pH$ǅH   D$   D$    t$D$$  t$$fp
u
ǅH   HMD$   D$    D$    D$D$  T$$	*  fp   u$蘊
  D$t$MHND$   D$    D$    D$D$  T$$		   $y$ 1҅tPT$<D$ǅ<   D$D$   $	<1<  <	  T9w   󫍅DD$ D$ǅ$   ǅ   T$$Y  NtGO>t(Dxt F̼  1   pǅ$   D$     @D$T$$  @DtqLDP҉DtPD$   D$    D$    D$  t$BD$B$ut$$u@$D  $̇.D$T$$KD$s$艇s1O1ƅO  D$D$   D$D$Y  )D$ $9<w D$DT$$Ђ$T$J$Ȇ*D$$$T$J$蓆$0 $D$P$I$   S|  v Uuu]Ìh u"    ]u]Í&    E$  $S9rʐUEU@$]Í    Uh E]  Í&    g U勁  u
ǁ     ]Í        USg $   2_hx[[]fU]Òg }u  t3  1ҋtHxw/   .x  t39uվt& ]u}]Ð؉L$$~
  utuč$V
    U]f }u  tSh1ɋ   Et2w0$T$$	Et0&    9u10t    ]u}]Í $	$	t& '    UWVS%f   ~$10  t$9  ǃ      [^_]Í        U]e uu}ZtKtVt$$`G$RG$   \<$lyf]u}]Íx$G뼍L$G묍        U]"e }}u  c`E|$D$ $1F  <$蓂Uǃ      0    f4  u  }]]Í$        UWVS|Åd }h0tJ  ~(0  1E&    tf9xt*9uꍃD$L$bE[^_]$P   [$Pi$    YEtOE$2iǉ$jdUfǄ6    fǄ4    $E    [^_]ÍGVU릍v UU]vc ux;  r у1T$$D]u]Ë  4u獃lT$$DӉ'    U]	c uu4$ntǀ      ǀ      ]u]Ít$$jD␍&    U]òb uu4$tE  E  ]u]Ít$$
D␍&    U]IRb uu4$t
v$L$t$$C1ҋ]Ћu]ø   ੘7  t΋]Ћu]Ív U]a uu4$ntE  E  ]u]Í t$$:C␍&    U]yÂa uu4$tE  E  ]u]Í$t$$B␍&    U(]"a u}h8u
]u}]8Vǉ$tl#VES~2D$g$D$  T$QBj$#jE|$D$$AE|  rL|$$
B[t& U(]I R` u}Uǉ$t8t||$$iUU   Fh uPR~2D$g$D${  T$qAj$Ci]u}]Í    T|  T    t2$@  D$F$   $n@  D$|  D$FD$$E@0U(]"_ uu}4$tZEt$D$ED$$?$b   YVG$~eE$dE$T]u}]Ít$$9@ߍ&    UWVS|Å^ <Eu$zǋ
  	  D$4$     D$:   4$   D$.   $   D$    D$
   D$    $y}؉E܋
     U؋
  T$$TƋh 2  2D$    D$E$e$    ySE$b4$bU܉$dv^1Q4$iz<[^_]Ð
  E    }؅]U$z
  E؉$jzU؉$
  Yz
  E؅   }E1.E    EЉU(E
  2
  U0;utumEЉD$Uԉ<$T$uj   uK  E뫍    $"   St& 4$-><[^_]É4$y
  E؉   P  UED$$y'    U]\ }}u<$teX$|$<$Z   GS  $	aF$^b  $Pb  $Bb\]u}]Í:|$$=ߍ        UWVS}FO[ E    7t4$_;  EtE[^_]Í&      E    Et:  1t& tBJ9}B 9}9U}U;uuҋE쉃  E[^_]Í&    '    UWVSÕZ   e   E1n$     +  8:  bD$    $|$q   D$:   $    \D$jBt$$  8   $$1󫋃  t$uǅ@   D$    <\D$   D$    4$p  D$X D$$t$$D$  Xul   FV<$D$T$4   $D$\p  D$ D$$9<$vtKFD$FD$F$vL $D$$9vuX$ $l T$D$\p  D$$9   D$:   $\T$jT$$(  \D$    D$   $   0  bD$n   D$    4$0D$dfǅb D$l   T$D$   D$l   ($D$n   t$<$u%}e3=        [^_]É<$& $(T$D$$8멋X$K<$跼둋$|$h8oJ $D$$B8  v$%8,$ |$D$Ƅ$7|$$7    U8]U uƍEE   D$   D$D$   D$   4$t
]u]a $t$D$4$U7]u]Ít& '    UVS]fU    t'1  tB4t:t9  w܃ [^]ÍED$D$T  B$xЍD$D$    4$E$[E$[E$y[E$m[U|v U   WVS|  ×T e   E1󫋃  T$ǅ   jD$ED$    D$   D$    $nD$t$T$<$H  t
tt_Gu싅D$   D$    D$  T$D$GD$G$tg$F5u$Ď$T$|$
5Ue3   V  |  [^_]ËGD$GD$G$xz$   GW4$D$T$    s   $T$D$D$$a44$Ot&4 $D$$3 $dD$$4\$4$nD$Tt$$Z$)|$D$X$3}      '    UWVSõQ EUEfU拃  Eu^  ҉U~d10  ;}t5tUf9VuU$T$u҃;}E   uˋutUE[^_]pED$ED$$2[^_]Í    UWVSP }  ~$1ɍ0      tf9zt,9uǉD$8$e2[^_]4  [^_]t& U]EU^P U}}ufE  cX  h    ҍt:    GV$P   GÃ$GU$   E4$3Uǉ$VPCE  $mmU0    f4  f6    ]u}]Í    V^:ti]$   Fǉ$VU$TE$UKPCeZt.D$$XyW^:Bx$0O$4t& Uuu]üN FD$$/F$U]u]Ðt& UVS @(enN D$F D$FD$FD$FD$$/F$$F($F$F$F $ [^]Í        UVSM   t#1t&   t>9  w[^]
U(]ÒM u}Bǉ$ @~2D$g$D$I  T$.j$Vt4$s  ]u}]Í<|$$V׍t& '    U(]L }u!B?~2D$g$D$$  T$P.j$"V<$:t?$   DF$-SM>tF@$X	   ]u}]Íh|$$U뭐U])2L uuF@$+u7$   CF$RMF   D$$,]u]Í    U]K uuF@$;sF$UFP$tF$U]u]Ít& UWVSLUK   ts19  vd  4t>uFPE$#9ЉUvƋU$	UT$D$FD$$+1[^_]Ã   [^_]fU(]òJ }u?J=~2D$g$D$
  T$,j$S<$tY4$n  F8tFt]u}]ÐFD$$[+F@F   $uǉ4$Mo  뽍|$$iS듍&    U8]I u}?Ɖ$W  ?t<t$$6+]u}]Gt#@ uGt$$Rt& > t	  t0GD$$*럐t& `t$$^*뼃uˍE$=;~2D$g$D$  T$z*j$LR  E9sAT$D$GD$$B*4$et$$RD$GD$0$u)E)  t$D$G`$	4$Qe        U8]"H u}Q=Ɖ$i  tt]u}]Ít& E$<Ƌ uG   ht'  U9     9   )Љ  4:~2D$g$D$  T$(j$P  t#Et$D$GP$4$4d.Et$D$GP$ۍ&    htȋE)    뷉T$D$GD$$f(UD$T$GD$H$A(4$ct$$P    '    UWVS\eF L    1t2t-9      <t䋃 ũ?uӋht
Gi  y    h tGu|  tW`UЉ$Et  gEЉ$D$   D$|  D$GD$$&|    9vЋU؉E9vU$_   <G$K$   KEЉ$UT$$KFEUЉD$$
E)|  D$GD$M$%t&   h t
     <$i  L[^_]ËGD$t$]%:G@Eȉ$z
En     hG  |  E9vЋ  9UrEԋUԅ0h8ใ^$~;G$JUȉ$H
UԉT$$IJDEԋUȉD$$E)|   W`U   Uĉ$	D$G D$GD$ؒ$$UȍED$$$^   E:G$IED$Ẻ$IAD|  +EŨ|  $$`$	XV53v t}   vE   U܉U 9E܉Ev$&    '    U8}}]Eu}ÆB w$E    E   u
]u}]ÍED$ED$D$   D$   4$/  EuOGD$$C#h       $   a9G$HG${Hh$D$GD$$"h tL$\   9G$5H$   )H@   <$]  lB&    $   8G$G΍&    $[   8G$GG$G  $G  $G Ej$"E$$FGV$FD    '    U]uuÌ@ FP$tF$U]u]É4$\  ]u]É'    UWVS\  @ e   E1B$$B$$
   󦍵(pT$(D$$t  D$ D$p  D$   D$   D$(T$D$D$   4$x  $@\4$\x  h   $Z   6$BDB$E  $}E  $iE   $Ct  $?E$C$#E~?R$   t& 5B$D$Ct  $DC.uV*?$[Ue3   uM\  [^_]Ðt& $2Cp  $~D:x  $C^  &    '    UM]Eu}Q$zÃ= уu
]u}]Ë}P<$_t<$S<$Ut$D$B$$~D$<$3막<$띍&    UWVS@  }e
   M1ɋEU< O<|  W,  ǅ    O   uȉʋt[D$ @  xD$$       ;  xt$<$T$Ѓ  ǅ    t<wP4$k  Wt!Ћ|  t& h   O t      x  O(tȉʋ  ?   G         )@9w9ss  ti$]   2G$A  $A<  D$  D$GD$$    Ǉ      Ee3     Ĝ@  [^_]Ív   1GD$$G|\ )fut$GD$GD$p$ ?  GD$ƅ$<$:V  4$    D$D$<$҅        Ѓ  T$t$G$NƋ$bV   s?A  <$&    {U  V    O ȉʃX$D$ @  tD$"ƋG t$D$GD$ܓ$     G D$GD$$G $ED$   D$$   (  GD$*$N?`  GD$ƅ$0<$hT  ȋ|XO`$24$Ƌ$t$D$G $ƋG t$D$GD$$ 6    G D$GD$f u
<$\]  +GP$,G   D$ۅ$1 O GD$$멋  t3xG@t$$L$Z<$\  <$Y  It$xG@$t$gD$D$G$o    
  htAG,t:t09
t%ED$G$@uE
  4$D$/h1       D$4$~tG`t$$T$d J  Q .2 ?   GD$ƅ$S4$4$2wGD$$?<$W   <,  %t4$GD$ۅ$   t$$  $ t& { ΜD$B$s$:
5&    Uh  ]E3 U}}e
   M1ɉuG@$G<    ƉD$GD$D$w2G$Ee3   6  ]u}]Ë$ <   <t
<$sO  v 빋GD$z$$[8uɋ$G,     FP9rrv&~ L0uR  fBA  9uGD$$Hv GD$`$k$]w/GD$ԕ$AG$$ivx    u &         9t< u獅D$D$   $D$D$   $gD$D$   $GD$D$   $'$Y$$7t$D$GD$$9f  t$D$   $<v  L$$D$   $$D$   ƉD$Gp$u  ft  D$t$T$GD$$[<t&D$GD$ $dʁ  D$GPƅ ƅZfǅ  ǅ    D$   $   _GD$h$GD$$Bu
   GD$H$e%wPL$$UD$   4$%D$    4$G$GO   D$$ h<  <  <tJD$GD$t$k    D$T$GD$$   
   ǅ   9D$   $WuD$   $8L$t$$D$   T$$Ƅ5   wpD$   t$T$$paft  t$wPD$T$GD$$]D$ƅƅ ƅ ƅǅ    fǅ  D$   4$D$   4$D$D$   4$T$      ǅ
   YvǅFCwpD$   4$D$q  v '    U8]Yb, }ǉu$\w1]u}]É<$ <B  <l(  FVЉEF	VЉE<$UU܋UM܃T9r
  E$;E   U}u9҉utM;P  uMEE9ɋ
  Eu5   9E   
  MD$EL$$R   $Nt& `$2FVЉEFV	ЉED$($UD$$T$lUE]uuÙ* EE}~PE
tot]u}]Í    $F@$7<$/F$$F$   $   !F$0+떋E   ]u}uEEE]v U(]) }}uh    |  Gu     htO t$    G   h t%W(tGuwuЋM]u}]Ë0rO@M$!9kED$ @  $PGM9&      YG`$;|  BG M+t& GP$tAGMG`$oG Mh t	  t
<$YJ   tG
w`t4$
t؉4$D$G D$GD$($8        U(]Euué' }}EFPE   t]u}]Ít& $	FD$FD$FD$Ά$O4$GM  F@$4$tL  E$	hu.   FD$FD$FD$$^4$I  ΐt& E   ]}}uuE]    '    UWVSÑ& UE  9}9};E}E  EM~F(9F	ɉF$EF E  t\E$]umF,    F$G}F0tE$t<$}t&E$[^_]ÐF,    <$F0[^_]Í    FD$FD$$FF,   $达dFD$FD$T$.C'    U]9B% }}u<$t8
tx|$$nEMUD$ED$E$ME        $]   LF$q+  $c+%]u}]ÐUWVSÕ$   '      1E    :   14  9r'  M/  (   D$  $1B    
  D$$
  9M  u1+M       9u$    AƉD$  D$    $F@$FP$F`$E,F    MF    UF    D$E$D$E$EFEE  Eǆ          E F  E($@ǆ|      ǆ      F8    ǆ      ǆ      x  E(ǆ      ǆ      ǆ      ǆ      ǆ      D$ED$,$[^_]ÅEǃ  
   $(   ?  ɉ  t1    9uEE    L$$Y'    UWVS! ,A$	E   $    ]V~2D$g$D$  T$j$*   D$D$\|$ D$$   D$    D$    D$    D$D$   $vƋEF8   F<$>$   sE$'F$'!,[^_]Íܗ$r><$=$   'E$L'!,[^_]
UWVS   EM`i  U`e   E1ɸ\o    
  1} hUDjpU̍Eǅl    LPTD1   󫋃  E   D$    pEhPD$   MfpdD$L$D$    D$żTDP$    L$D$T$蛸  E̅  M@
t  WuGD$G$D$
   Et

4  GW4$D$T$襹  lEtlM  
pẺ$h  Y  M1X;l  X<D$   <$fy $SD$$<$II    ǲ    a   $D$$Ẻ$^Ue3   $     [^_]ÍEE   D$   D$D$   D$)   4$P3 $色D$<$+pẺ$ײlhh  <\$AGD$$9諱 $D$dD$$4$l~1@$ͷ;luẺ$ǅl    Bl1   $9\HXH$D$$   |$ D$    D$ @  D$   D$D$D$D$   [U\  @;l|`h1$D$q$sDm  t& UWVS  UE]f fe
   M1ɃftA  $!=   }    1U	xtV@q  ? ~  V^:b  xi  
   b  1~1D$T$D$$=1t׹   󫋃  MЉ$ǅ   D$    jT$D$D$   D$    +tD$4$|$D$tV1  $t$D$̘$_ǅ    t& }e3=   ~  Ĭ  [^_]Ëǅ      ,|
tt_Gu싅|D$   D$    D$D$  T$GD$G$gt7 $ux  $2!GD$GD$G$蓱  x|D$0L$$GW4$D$T$  D$   4$D  t$t$T$ $L$D$$   D$    D$   D$    D$4D$   ƋD$Fp$]  ǅ   t  p  eއ$Oǅ    1}    s   \$L$kW  t& ǫ $D$$_4$ȇ$ǅ    E| $ҫD$$wV $謫D$$N덉$谰D$$ǅ    W^:G}t& 1ǅ    ɪ $D$$g  &    U   UME    E    ]-    '    U4$|$}uEUM}E   u4$|$]t& U(]Yb u}
$    	E{
fwEtSfu:$Et$$    D$ǉD$ED$@E$1]u}]t$$C뙐UWVS謴õ <	$    EH	E	   $    %	~2D$g$D$  T$j$ǉD$E$d   D$D$UD$$   t$ D$    D$    D$    D$D$   $1UP4$0U$0<[^_]Íܗ$R1(4$0$   E$,벐t& UX}}]Eue   U1ҋw$>G uEe3     ]u}]ÍUEE   D$T$4$ޫ   fD$$   T$ D$      D$  D$L$L$D$D$   $Ƌh tL$Z    
{$F$  $	  $V$   	F$ަ $4D$̙$c          Uhuu]E}e   U1ҋV$辱 уuEe3   ~  ]u}]ÐFpEȋt  UȉD$T$p  D$$>E   Ett  E
   UЅ   EU܉T$D$F$E   $   $vUD$$   D$    T$   D$  |$|$$D$ED$D$Uȉǋp  p  t  t  GpD$   T$$U  }
tUЉ.G<   fE   E $SD$$ra  t& '    UWVS\@  ue   U1ҋE V$уu!Ue3   @  \@  [^_]Í    $UܿD$T$F$ǅܿ   $hǋ      <$\u<$4<$̿ȿ$D$ @  D$   D$ @  пD$̿D$XD$HȿD$$   D$    D$   D$  D$|$|$D$وD$   $Ƌh    $Z   
$F$!  $  $̿$    $:5̿$'+Af$   F$tƋȿ$2붍,$F$$g4$*  Nq $ǢD$$iп$6W,_          UWVS\e
 |  e   E1$|D$D$   $! t  u ҋ+$L$T$  tKǅ      <t      fH  tx9  wlD$D$   $
$$)Ƌ$7Ue3   ?  |  [^_]é7  uv ܚL$$NG(WGGP$WƍG@$t$0T$<D$(T$8T$4T$,GD$$GD$ D$x  D$GD$   D$   D$   D$D$$y! t  u ҋ+$L$T$T\  UWV1S躪
 }  t  1t& <9ux     t$D$GD$$ƉD$GD$$'4$O'G$tD$   $G(tD$   $˟舻G@$
GP$G`$x  t$&Ǉx      W      <$&[^_]Í
UWVS茩Õ	 EE    fE  tx19  vi  4t>uED$   D$Fp$tuE9p  uD$%$|$4$4E   댋E[^_]U8]٨ u}Ɖ$gt8t,t$$*h uRI~2D$g$D$  T$j$<$]u}]E    E    E䋃@   MGVUM}zt~i}t
}=uWMD$`t$T$L$$outE$$MM$$f}tCOt& $    2$    E#:EEEE1^\        U(])2 u}aǉ$跤~2D$g$D$U  T$j$Xt2tD$|$$74$]u}]Í|$$뺍&    '    UWVSlu UEM苓     \pN<f         9uꋃh    F@FF F,FF0F0F4GG,GG`WG0W4ǃ          1t& 9       4tUtU4$T$UT$Ћ  tb  4$D$!  tFD$$0D$    F$    nFD$$D$   4$9!  AFD$ $4$9  $t& [^_]Ë uh F@FF FF0F0F4GGG`WG0W4s0FPFF FFF `F$0F0F4GGG`G$`WG0W4USU苣Ô Mp[]&    '    UWVS\e   tB1  4t(>w#   F  tF$$ç4$K9  w[^_]Ð&    UVS   t#1  t$9  w[^]É'    U8EU]蓢Ü EEUUu}EEUUE  :9}ǋUG 4    tQU;2wJU:t$D$    $蝙Ut$D$    $脙}tD]u}]Ít& t$$ Ut$U$UEU0냋Eu}E\]],UE]@Ðt& UE]@Ðt& UE]@Ðt& UE]@Ðt& U}]L
U   M   xtAP]
USM    @;t
t[]ËAQd@ D$E$D$[]Í&    '    U1҉(uu]M}苠Ô     wu/EVL$D$ED$F$Rt]u}]ÍL$$螣̞$萣US'  E$u$[]Ð&    UWVSE֟  }ux~  U1Mz ;z  EtE9p  MUE   RMMƉ$裕1} D$ED$    t$D$U$H  Ep\~19t-$|$t$0|$U$ݜS  D$D$    ED$    D$M${   MAu
[^_]Ðt& $UǋB$MQMƋA|$t$D$E$R   UB4$D$    D$ϕ<$k4$c[^_]Ë  uo   e<$ǃ      Ӌ|$D$$\MD$$EUD$l$. t$D$$@|$t$$ $fU   ]Es|  U}}uuE|e   E1<$   4$Bt$u<$D$菘|$4$CE|D$    D$    D$ET$D$   t$$E    E    E    E    D$\   D$    <$1҉ЋUe3   u
]u}]9N  '    UVuSjs    u      9rt
u1[^]Ív '    US'  E$t[]
U}}]ӛ  uu]u}]D  u  	    tȉ|$$臖uFfUWVSlu  }  u  f|$$萙tu1[^_]Ít& '    U(uu]}}     At~PtluK    FP~';U   l9AtdF$T$D$<$諔]u}]ftD$D$$ߝFD$   |$D$    $ 
  믍FT$|$D$    $  뒋ET$D$D$$~&    '    U(uu]}}     At~Etau@    FPtl9AtbF$T$|$$褓]u}]ÃtƉD$D$$ڜFD$   |$D$   $  뱍FT$|$D$   $  딍        UU]M  u   @;t1t]u]ËBɋp tBdt$$D$ϒ]u]Í&    UWVS,E覘ï  tUGV:u
1,[^_]É$5E܉ETɈM   T  T
  }܅   U
t:}8R  8ȉƋUuD  8=  83  u1(  T   TD$E$3tw> tr4$Df  x  M5t$$L$w} tTuYut%E4$D$Et  E> uuH$t$%E܉$J,   [^_]T%utt18E   щ8u   8E   8   u1Eupt8Etf8t`8MuU8EtX8t& tN8EtIu뮋E܅(D$u܉4$Et	  Eu    B hT Lu܅M	ɈMMMM8Mt28ȉt,֋U܉8u8Et8t8tu1	U BEiEt$D$"$U܉$1	UWVƉȃE~-NVEFOWEGmuӃ^_]Í        U(]M  Euu}vEt$t$D$E$p  MǉM]u}]Í&    '    U]詔ò  u5  }=  ы  U
  P  P;P  P  P  H3P  P   P$  P(  P,  @0;    p    E    
3  u]}]ÐU1$
     |$  󫍃  
    ǃ     ǃ     ǃ     ǃ  :  |$ǃ      $]Ív UWVSLU6?  Ee
   M1ɋ}UȋU   @TE̋M1   r   E̍UE    U   EM̋EċUL$D$$赈   t& E҈uu獴&    MЃU2D
tEЃEEu됸   Me3
   uL[^_]D  t& U}}]u09  wTt'D$  D$    4$耉4$GT    ]   u}]Ív UU]u}}BTʑ  tYEtUt$BXD$E$蠍t       GBGBGB]   u}]$  ƋEpT두&    USE8A  MU@Tt<} t   T$L$$[]   T$D$$[]Í'$DU1$
     |$  󫍃 $  p,  (  ǃ     ǃ      ǃ     ǃ   
   |$ǃ      $]Ív U(E]}}upT*3  t}U|$4$T$UT$Pu1]u}]ËU   |$T$T$   $Pt̋E  |$D$D$  $R룍B$n1둍v '    U}}]upy  wTtK4$P   $B  $4D$  D$    4$蜆4$8GT    ]   u}]
UWVS,U  BT]  U!  }'  E}xX}~E  Ut& 4$Ą   U$賄  E$袄蝊UD$    |$4$T$D$u44$D$  D$    袅4$>U1BT    ,[^_]A1҃} D$    T$UD$T$E$胊t
UD$    T$UD$T$E$Uc,   [^_]Ív URUf}EE$  
ƋEpT    UE]FO  }}u   EpT   MtTD$$F GF$G   G   G8  G<  ]u}]ÍD$$F F$G   G   G8  G<  G몉D$D$\$ɏD$w$豏US>G  E$U8  ]E  uu}e   E14$T4$GwG   D$   <$-t?uf +Gt$D$$[뾉D$ĠǃD     $ݎEe3   u
]u}]=  
U8  ]E3<  uu}e   E14$$u Ee3      ]u}]Ív 4$HX4$GwG   D$   <$葁u)f +Gt$D$$TGtxD$ǃH     $̍<  &    U(]IR  }uXO   ك\$GL$D$    D$    D$$BNuuك\$FD$    L$D$    D$T$L  tmP  tP]u}]Ív G1R1P,$RQ,$SfF1R1P,$RQ,$sfH  u<$*뜋D  u4$~|t& U]"  uL  t44$ǃL     D$8   D$2]u]Ë4$z~        U]詈ò  uuP  tR$ǃP     t$Fw>D$Xt$D$8   $a]u]ËX$랍¡t$$艋U1ɉWVS}
  t'1҉Eu2u139u[^_]ÐU]蹇  uƉU 1EED$   $|]u]UWV0E܋EU؉ME    tuܹ   tiEE9E؉EsKE؉EEE)       EcE1YEE9Esuܹ   }t11} 0^_]ÍE   EE1xv '    UWVS<蹆  }      E   E  @9s9wT    9F  }8   UU9UUsMMv Utu   }7  EUE9r@    EU9Us.u   }̉uE$MUE^  EM9Mr1<[^_]ËED$$  D$   D$T  $}Et>EMP 	A	A	  !T  EfPUU9UUhMT  E    E    MEЋ  MU	UMB	MB	MB	E!MɉM.M   u<   EM!M̋EE܋ŰMQft9fuu   }uƋE$MUEudT  UЋEMUЃEfE9EnEE} v   S6D$$,  T  <   [^_]ËM$MUEZ<[^_]Í$6$  T  ?UE    ]fU(uu]}考É  >t~~t1]u}]Ã~u닃h   @ t
     F   UuG   FD${$   뎍t& FD$=$   kFD$d$Fu
~   D$FD$FD$8$jFFD$P$   ~ (~`<$g<$WD$F D$FD$$71FtFD$p$f$a   tF$NAt& '    U]蹁  uƋ@D$$Ft*D$FD$$Q]u]Í&    $`   F$	dN]u]Í    U])2  uƋ@D$$"Fw*$   ~F$]u]Ít& D$FD$$]u]Í    '    U]虀â  uƋ@D$$Fw1FP$_$   F$c]u]ÉD$FD$$ ]u]Í    UVS   h t>
t1FD$֦$F$tD$    $uxI [^]fF$Uyht $tD$FD$FD$h$"7t kt$tD$FD$FD$F$D$FD$$p'    UVS$  @P$ h t>
t1FD$$F$t"D$   $txN[^]Í&    F$Uyhs $sD$FD$FD$$"7s $sD$F$D$FD$$a[^]Ív '    U(]u։}H~%  w>w9D$D$GD$$]wu}]Í0t$L$$&    UVSu}ð  FD$!$襾FP$蚣uMFt D$FD$$5[^]É'h t.[   ^]FD$T$[^]Éfɍt& U]|  uuh t@FD$8$Fv}D$FD$$脾]u]ËFD$8$襽Fu#W   ]u]+u/   ֐   fU])|2  }uuht7FD$Q$FNt3~t?]u}]Ít& FD$f$ۼFu:   x~uFP$跡ut	  t>4$뙃tD$FD$$<p   _~ ftF
SF`$It?U(]u։}H{  w>w9D$D$GD$|$]wu}]Í t$L$$~    UVSuzà  FD$$蕻F@$芠uLFt D$FD$x$%[^]Ëht4Ft<   [^]FD$D$[^]É   ɉ)뻍&    Uuu]y  FD$$ѺFu]u   ]nD$FD$$U]u]Ít& '    UVS]yf  uh tVFD$Ƨ$IF   N>
   Fu   FtX   [^]ËFD$ݧ$FtrIt+D$FD$ $苺[^]Ít& [   ^]g&    iB׋FD$Ы$;N>
<t& 륺   f땉g댐U   U   ~1   %    ]Ív USw  qtEBEB[]Í6$!{UVSwö  dqt5ED$F$<nt-ED$F$&nt%[^]ÍK$zd$zp$zv US.w7  D$$V[]USv   D$$$&[]UWVSv  E$]lUǋB   1E       t$E$m]9}UB$lD$ED$|$l}~UBD$E$t   t)UB$kD$ED$L$谷1҃[^_]Í($薷1[^_]ËUB$xkD$    D$|$ҶE    낉'    UWVSMuß  UAt  ?a  ҉U$kE    9E   fUBt$:ppMA   UD$    D$    $T$m   M$eo   11Ut$B$ElMA$nj9~ӋUB$\j|$D$$躵}tNMA$D$u0E%UB$jML$D$l$w[^_]Í$w$w۬$w$~w҉U똍$iw'    UWVSs  <EԍEMЉUẺ$< j  <#|  }7  ;ɈMi  <A  =  > v  EtYEۈEE8E  8  8Mu(  t& 8E  8v   8E  u1t& E  ;D$Ủ$OqƐ}e  > \  }   <  Eۉ<$D$?iE(    Eu  ?   } "  <  =-  t<}ۉ8  Uʉ8Eu  8  8Ef  u1EE  >   D$    D$
   D$    4$siMЅZ  }   <C  }1  Eۉ<$D$-hE    Eu  ?    }   <A  =E  t7E8ЈE  ȉ8u  8U  8  u1EE   > t{kEЅ҉P3  kUЅB   |$EЃ$mg  t$EЃ$Sg  MЋQ$}kUЋB$okv Mԍ$L$;1<[^_]ÐỦ$e9t |<1[^_]Í;D$Ủ$nǐt& ut? t} <  =   t:}ۉ8  Uʉ8Eu  8  8E}  u1E~uۉ8t&Uʉ8Eu
8t8EtuNv B ED$<$eE  E
>    EgEۈEE8E   8   8Mu*       8E   8v    8E   u=   t<uۉ8   Uʉ8Eu   8   8Ef   u1E;D$Ẻ$lJB Eۉ4$D$dE  E;D$Ẻ$Kl;D$Ủ$/l-B a>   EDEۈEE8Et8t8Mu뷍v 8Et8t8Eftu;D$Ủ$k(B >    EEۈEE8Et8t8Mu8Et8t8EtuEۉ4$D$VcE?  E;D$Ẻ$j;D$Ẻ$j^=uq}ɈMt,E8ȈEtG։8u
;8Et88t2u1E;D$Ủ$hjxB Ҁ>    }ctM8Mt8Utŉ8u8Et8Et8ftut;D$M̉$ixA h>    NE8ЈEt8шMtEˉ8u8Ut8Ut8Ѝt& tuEۉ4$D$aE  E;D$Ẻ$=iM;D$Ủ$!iEЋP$nMЋA$3`U;uҋRBt
   
8uJ፴&    '    UWVS<jE  <  e   E1Ƈ|$$aT  1ǅ    ǅ    t& t$D$   $atytȋ$d$xd9E|9E;E!  96  9{
  4$_     1ǅ        t$D$   $B`   tË;E;E|9   &    $c$c낉4$aD$@$-Ue3      <  [^_]9ǅ   QU9|9:t& 4$^a9   D$$g9t|$$_D$$9t&   D$D$d$jUWVS,g5  <ep  EЍEẺ$耒ED$Ẻ$螆ED$Ẻ$茆ED$Ẻ$ED$   $ĀED$ED$Ẻ$kED$Ẻ$要ED$   $胀ED$ED$Ẻ$*E$D$E D$Ẻ$сE(D$Ẻ$E,D$Ẻ$mE0D$Ẻ$[EЉD$EԉEȉ$[Ẻ$ǋẺ$N|$D$Eȉ$dEȉt$D$    $aẺ$ɐE40EЋPE8<[^_]ÐUWVSeÕ  <}<$E<$D$E<$D$E<$D$aD$   <$AE<$D$ED$E <$D$)D$   <$	U E<$T$D$賏E(<$D$E$D$]},  }4   U,<$T$E0<$D$U4<$T$E8<$D$͇E<<$D$辇E@<$D$诇ED<$D$蠇EH<$D$葇EUԉUЉ$D$8Y<$D<$芊t$D$EЉ$bEЍ  ỦT$D$    $`<$ELỦEPEP<[^_]Ít& E0<$D$~ UScç  4e   E1ED$   $\~Ee3   ǃ     u4[]'^D$$f  t& US.c7  $E      uhED$   $q\E$[]ÐU1]É'    U8  ]b  }}uD$D$    <$r[   E9tahD$   D$    4$Yl$2W1%    EED$    t$<$h[t]u}]ø썴&    USa  | $[]ÐUWVSa  E    E    бE萍t& E0tyEZDz u݉=  |$u4$WH  }   rM}   }uM  EEE    0uE   E[^_]Ðt& EE   NM9M   Ћu*E}>E   %t& }u5MME   u   MME   M9Mvhu}+E>*ED>멃=uF9t!Dz u3t& DB t%uUUM<
 [^_]ËM9Mvu}+E>*ED>FM1}tr}'    ZtDz >uDz q%FuaE9EU}Ћu(> fUWVS,EF_O  }   EE   R)щMWE߃umбD2EбD2бD2EбD2E9Et}UUOMwE<?EwK?Uw6?w&??UwU9UI,[^_]RE1ҋE   E 1E uE 1;MuMu}<?Ew?wǍ4<?wB9EsE݋}б:бD:}t;uбD2B}P8=;U"E ,[^_]ÍBD:=ҐU(}}]C]L  u   0uo  : td  <:  L$<$S  x:          8 u  8t&        9E~M  :-tGV  ]u}]rJ     ʉ-8  볐  :      ;E     GV:     ?:t  txD$| D$,B-R  8 u    t7?:t2|T$ D$D$D$    $Q?     -   -   fMGV  |UWVSu&[/  MFtr9 tm
t& : tu))t6E1tEt
u+E [^_]ËE$T[^_]É1몐UEW}Vt utuu
 u)^_]BÐUWVS<ZE  \UEME    UUESEԍUE܍[MUE    E   E"   EE"   NE EЋE9E    |~11   DU9Uwt& MED$    D$
   D$$RƋE9Et8 t2   Et	D̋MDЅҋMt11\[^_]Í   	t:9}>|9u&    w0	t39}|#9ut& s   돋E8"u   |1fsU:"uōv АUuu]Xü  }}   wU   W  &    E   E   E   E    Et&    L  EB  E   t(*0  ?'  [t&   #  E@w  ҍv ]  !Qы P7  ^  A@WG >t& \Wt& ]Ћu}]f	tEE@uԍWG\ʃ
tE Fv
tfPы f<P 뇍&    *t?tz[v tr#tmPPU f<P SE7t& 00W0WW\G mhE   넉W-OMƃ\~\WG0E0<WG0G0W\GaW\GbW\Gt{W\GnlW\Gv]W\GfNW\Gr?W\Gs0WG?$&    UWV}vnMu}$T$D$ED$u֋EUDEUD$    T$U$D$  +E^_]ËUEtč    U1WVM}t8Ήt& F$D$ED$D$2V҉u) ^_]Í&    UWVSLUe
   M1ɋEMME    ŰUM̉ǉETå  TU	ɈM  ;}  uׁ   wKU   u>*  ?  [v   #  gMU f<P :  Eu	 +  Eu	f  Eu


  E t,F   
   Mы f<P    EŰMt$L$D$Eĉ$U)Ѝ49u؉E   <$D$T$zMM	ɈME܍4Mt 9usIUt?u̍MЉMfFT$UȉD$E$D$R+EFu+}ЋMe3
   ukL[^_]Í    w}\tEE   SE@u9uv*wG\E   im    4w,v ;  U]EfRo  uu}}P$t$r1҉v
]Ћu}]Ív '    U8@  uue   E1U]Q  F=?  }}v"Ue3      ]u}]ÉT$D$?  t$$OV<   ~=   
%      T$D$G@$l1T  
UWVSQ  Le   E1D$   $F  U1U   }  fE fM }t{}~DWE $ED$ED$D$$讑4$K   UD$ED$   D$   T$D$   $zMUD$T@4$T$Itc}   EUt$D$D$;T$$Ue3      L[^_]ÐfE fD $DD$ED$D$$轐
UD$"t$$T$蕐uD $]DD$D$P$eE   U]Ít& '    UWVSN  [CE)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1S|NÅ  tD$ED$    $C[]ÐUS>NG  IUVSN&  p@tЋu[^]ÐUS    [  $MY[                     usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]
		   [host | addrlist namelist] [...]
 Impossible! dispatch_run() returned!
   confree: attempt to free bad fdno %d    conalloc: attempt to reuse fdno %d  %s: Connection closed by remote host    %s: not enough file descriptors %s: skipping incomplete last line
  diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1   aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,arcfour256,arcfour,aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se,aes128-ctr,aes192-ctr,aes256-ctr   hmac-md5,hmac-sha1,hmac-ripemd160,hmac-ripemd160@openssh.com,hmac-sha1-96,hmac-md5-96 ssh-rsa , getaddrinfo %s: %s socket: %s %s: set_nonblock(%d) connect (`%s'): %s conalloc: fdno %d too high host_hash failed %s  %s: exception! SSH- read (%s): %s %s: bad greeting SSH-%d.%d-%[^
]
 %s doesn't support ssh2 %s doesn't support ssh1 # %s %s
 SSH-%d.%d-OpenSSH-keyscan
 snprintf: buffer too small write (%s): %s %s: invalid packet type conread: invalid status %d  	
 Bad port '%s'
 Bad timeout '%s'
 Too high debugging level. unknown key type %s Hv46p:T:t:f: ssh-keyscan %s: fdlim_get: bad value (stdin) linebuf (%s): malloc failed
 %s: %s
 linebuf (%s): realloc failed
 ssh-rsa,ssh-dss none,zlib@openssh.com,zlib  ޳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳׳R׳׳׳׳׳׳׳׳׳׳׳׳Ѵ׳Btcpconnect buffer_get_int: buffer error buffer_get_char: buffer error buffer_put_cstring: s == NULL buffer_get_short: buffer error  buffer_get_char_ret: buffer_get_ret failed  buffer_get_string_ret: bad string length %u buffer_get_string_ret: buffer_get failed    buffer_get_string: buffer error buffer_get_bignum2_ret: invalid bignum  buffer_get_bignum2_ret: negative numbers not supported  buffer_get_bignum2_ret: cannot handle BN of size %d buffer_get_bignum2: buffer error    buffer_put_bignum2_ret: negative numbers not supported  buffer_put_bignum2_ret: BN too small    buffer_put_bignum2_ret: BN_bn2bin() failed: oi %d != bin_size %d    buffer_put_bignum2: buffer error    buffer_put_bignum_ret: BN_bn2bin() failed: oi %d != bin_size %d buffer_put_bignum: buffer error buffer_get_bignum_ret: invalid length   buffer_get_bignum_ret: cannot handle BN of size %d  buffer_get_bignum_ret: input buffer too small   buffer_get_bignum_ret: buffer_consume failed    buffer_get_bignum: buffer error %02x buffer_consume: buffer error buffer_get: buffer error  buffer_consume_end: trying to get more bytes than in buffer buffer_consume_ret: trying to get more bytes than in buffer buffer_get_ret: trying to get more bytes %d than in buffer %d   buffer_append_space: len %u not supported   buffer_append_space: alloc %u not supported aes Original cipher proposal: %s Compat cipher proposal: %s No available ciphers found. match: %s pat %s no match: %s OpenSSH_2.3.0* OpenSSH_2.3.* OpenSSH_2.5.3* OpenSSH_3.* Sun_SSH_1.0* OpenSSH* *MindTerm* 2.1.0* 2.1 * 2.0.11*,2.0.12* 2.0.* 2.2.0*,2.3.0* 2.4 2.* 3.0.* 3.0 SecureCRT* 1.7 SecureFX* 1.3.2* *SSH Compatible Server* *SSH_Version_Mapper* Probe-*      Enabling compatibility mode for protocol 1.3    Enabling compatibility mode for protocol 2.0    ignoring bad proto spec: '%s'.  OpenSSH-2.0*,OpenSSH-2.1*,OpenSSH_2.1*,OpenSSH_2.2* OpenSSH_2.5.0p1*,OpenSSH_2.5.1p1*   OpenSSH_2.5.0*,OpenSSH_2.5.1*,OpenSSH_2.5.2*    OpenSSH_2.*,OpenSSH_3.0*,OpenSSH_3.1*   2.0.13*,2.0.14*,2.0.15*,2.0.16*,2.0.17*,2.0.18*,2.0.19* 1.2.18*,1.2.19*,1.2.20*,1.2.21*,1.2.22* *OSU_0*,OSU_1.0*,OSU_1.1*,OSU_1.2*,OSU_1.3*,OSU_1.4*,OSU_1.5alpha1*,OSU_1.5alpha2*,OSU_1.5alpha3*   extract_salt: string too short  extract_salt: invalid magic identifier  extract_salt: missing salt termination character    extract_salt: bad encoded salt length %u    extract_salt: salt decode error extract_salt: expected salt len %d, got %d  add_host_to_hostfile: host_hash failed  add_host_to_hostfile: saving key in %s failed   check_host_in_hostfile: filename %s Invalid hashed host line %d of %s   Warning: %s, line %d: keysize mismatch for host %s: actual %d vs. announced %d. Warning: replace %d with %d in %s, line %d. check_host_in_hostfile: match line %d |1| host_hash: __b64_ntop failed %s%s%c%s no key to look up fatal debug1 debug2 internal error %s
 %.500s debug3 QUIET FATAL ERROR INFO VERBOSE DEBUG DEBUG1 DEBUG2 DEBUG3 DAEMON USER AUTH AUTHPRIV LOCAL0 LOCAL1 LOCAL2 LOCAL3 LOCAL4 LOCAL5 LOCAL6 LOCAL7 7((<HT`lxUnrecognized internal syslog level code %d
 Unrecognized internal syslog facility code %d
  packet_set_maxsize: called twice: old %d new %d packet_set_maxsize: bad size %d packet_set_maxsize: setting to %d   Finished discarding for %.200s  packet_send2: adding %d (len %d padlen %d extra_pad %d) XXX too many packets with same key  packet_set_encryption_key: unknown cipher number %d packet_set_encryption_key: keylen too small: %d packet_set_encryption_key: keylen too big: %d   packet_disconnect called recursively.   padding error: need %d block %d mod %d  Received disconnect from %s: %u: %.400s Received SSH2_MSG_UNIMPLEMENTED for %u  crc32 compensation attack: network attack detected  deattack denial of service detected packet_read_poll1: len %d != buffer_len %d. Corrupted check bytes on input. Received disconnect from %s: %.400s Packet integrity error (%d bytes remaining) at %s:%d    Read from socket failed: %.100s Protocol error: expected packet type %d, got %d packet_set_connection: cannot load cipher 'none' Write failed: %.100s Compression already enabled. set_newkeys: mode %d set_newkeys: rekeying newkeys: no keys for mode %d outgoing seqnr wraps around enqueue packet: %u dequeue packet: %u Disconnecting: %.100s Packet corrupt Bad packet length %u. Corrupted MAC on input. internal error need %d incoming seqnr wraps around Corrupted padlen %d on input. Invalid ssh2 packet type: %d Remote: %.900s Invalid ssh1 packet type: %d packet.c Packet integrity error. Connection closed by %.200s setsockopt IP_TOS %d: %.100s: none                   xfree: NULL pointer given as argument   xmalloc: out of memory (allocating %lu bytes)   xrealloc: out of memory (new_size %lu bytes) xmalloc: zero size xrealloc: zero size DSA RSA1 RSA ssh-unknown key_demote: RSA_new failed key_demote: BN_dup failed key_demote: DSA_new failed key_free: bad key type %d key_sign: invalid key type %d key_to_blob: key == NULL rsa1 dsa key_write: failed for RSA key %02x: key_equal: bad key type %d key_new: RSA_new failed key_new: BN_new failed key_new: DSA_new failed key_new: bad key type %d key_read: missing whitespace key_read: missing keytype key_read: short string key_read: type mismatch key_read: uudecode %s failed key_read: bad key type: %d key_generate: unknown type %d key names ok: [%s]    key_verify: invalid key type %d key_to_blob: unsupported key type %d    key_type_from_name: unknown key type '%s'   write_bignum: BN_bn2dec() failed    key_fingerprint_raw: bad digest type %d key_fingerprint_raw: bad key type %d    key_fingerprint_raw: blob is null   key_fingerprint: null from key_fingerprint_raw()    key_fingerprint_ex: bad digest representation %d    key_from_blob: can't read key type  key_from_blob: can't read rsa key   key_from_blob: can't read dsa key   key_from_blob: cannot handle type %s    key_from_blob: remaining bytes in key blob %d   key_read: key_from_blob %s failed   key_read: type mismatch: encoding error key_from_private: unknown type %d   dsa_generate_private_key: DSA_generate_parameters failed    dsa_generate_private_key: DSA_generate_key failed.  rsa_generate_private_key: key generation failed.    key_new_private: BN_new failed  key_new_nss_copy: BN_copy failed    key_new_nss_copy: SECKEY_CopyPrivateKey failed  key_new_nss_copy: SECKEY_CopyPublicKey failed protocol error: rcvd type %d protocol error   dispatch_protocol_ignore: type %d seq %u    dispatch_protocol_error: type %d seq %u %s: bad host modulus (len %d) bad kex md size %d kex_derive_keys kex_parse_kexinit: %s KEX_INIT_SENT SSH2_MSG_KEXINIT sent SSH2_MSG_KEXINIT received kex.c unsupported mac %s zlib@openssh.com unsupported comp %s client->server server->client kex: %s %s %s %s no kex alg diffie-hellman-group1-sha1 diffie-hellman-group14-sha1 bad kex alg %s no hostkey alg bad hostkey alg '%s' proposals match Unsupported key exchange %d SSH2_MSG_NEWKEYS sent expecting SSH2_MSG_NEWKEYS SSH2_MSG_NEWKEYS received   %s: bad server modulus (len %d) Hm, kex protocol error: type %d seq %u  kex_parse_kexinit: first_kex_follows %d     kex_parse_kexinit: reserved %d  kex_send_kexinit: no kex, cannot rekey  kex_send_kexinit: kex proposal too short    kex_input_kexinit: no kex, cannot rekey no matching cipher found: client %s server %s   matching cipher is not supported: %s    no matching mac found: client %s server %s  no matching comp found: client %s server %s diffie-hellman-group-exchange-sha1  proposal mismatch: my %s peer %s    skipping next packet (type %u) derive_ssh1_session_id mac_compute: no key mac_compute: mac too long mac %s len %d mac_init: found %s mac_init: unknown %s bad mac %s [%s] mac ok: %s [%s] macs ok: [%s] hmac-sha1 hmac-sha1-96 hmac-md5 hmac-md5-96 hmac-ripemd160 hmac-ripemd160@openssh.com /dev/null Couldn't open /dev/null: %s dup2: %s percent_expand: too many keys replacearg: argument too long addargs: argument too long :/ any fd %d is TCP_NODELAY fd %d setting TCP_NODELAY fcntl(%d, F_GETFL, 0): %s fd %d is not O_NONBLOCK fd %d clearing O_NONBLOCK fd %d is O_NONBLOCK fd %d setting O_NONBLOCK  	
=  	
   %s: %s line %lu exceeds size limit  percent_expand: NULL replacement    percent_expand: string too long percent_expand: unknown key %%%c    tilde_expand_filename: ~username too long   tilde_expand_filename: No such user %s  tilde_expand_filename: No such uid %d   tilde_expand_filename: Path too long    replacearg: tried to replace invalid arg %d >= %d   getsockopt TCP_NODELAY: %.100s  setsockopt TCP_NODELAY: %.100s  fcntl(%d, F_SETFL, ~O_NONBLOCK): %s fcntl(%d, F_SETFL, O_NONBLOCK): %s read_keyfile_line ssh_dss_verify: no DSA key ssh_dss_verify: BN_new failed incorrect ssh_dss_verify: signature %s ssh_dss_sign: no DSA key ssh_dss_sign: sign failed bad sig size %u %u  ssh_dss_verify: cannot handle type %s   ssh_dss_verify: remaining bytes in signature %d bad sigbloblen %u != SIGBLOB_LEN    ssh_dss_verify: DSA_SIG_new failed  ssh_dss_sign: der decode failed ssh_dss_sign: unsupported signature length %d ssh_rsa_verify: no RSA key bad hashlen bad siglen RSA_public_decrypt failed: %s oid mismatch hash mismatch ssh_rsa_sign: no RSA key ssh_rsa_sign: sign failed slen %u > len %u    ssh_rsa_verify: RSA modulus too small: %d < minimum %d bits ssh_rsa_verify: cannot handle type %s   ssh_rsa_verify: remaining bytes in signature %d ssh_rsa_verify: len %u > modlen %u  ssh_rsa_verify: add padding: modlen %u > len %u ssh_rsa_verify: EVP_get_digestbynid %d failed   bad decrypted len: %d != %d + %d    ssh_rsa_verify: signature %scorrect ssh_rsa_sign: slen %u slen2 %u  ssh_rsa_sign: EVP_get_digestbynid %d failed ssh_rsa_sign: RSA_sign failed: %s 0!0	+ 0 0*H
 %s: Unexpected KEX type %d sending SSH2_MSG_KEXDH_INIT cannot verify server_host_key dh_server_pub == NULL kexdhc.c bad server public DH value kexdh_client: BN_new failed   expecting SSH2_MSG_KEXDH_REPLY  cannot decode server_host_key_blob  type mismatch for decoded server_host_key_blob  server_host_key verification failed key_verify failed for server_host_key kexdh_client  SSH2_MSG_KEX_DH_GEX_REQUEST_OLD(%u) sent    SSH2_MSG_KEX_DH_GEX_REQUEST(%u<%u<%u) sent  expecting SSH2_MSG_KEX_DH_GEX_GROUP DH_GEX group out of range: %d !< %d !< %d   expecting SSH2_MSG_KEX_DH_GEX_REPLY BN_new kexgexc.c SSH2_MSG_KEX_DH_GEX_INIT sent kexgex_client: BN_new failed OpenSSL version mismatch. Built against %lx, you have %lx PRNG is not seeded getsockname failed: %.100s getpeername failed: %.100s UNKNOWN  %2.2x   get_sock_port: getnameinfo NI_NUMERICSERV failed: %s    Normalising mapped IPv4 in IPv6 address get_socket_address: getnameinfo %d failed: %s   get_remote_hostname: getnameinfo NI_NUMERICHOST failed  Connection from %.100s with IP options:%.800s   Trying to reverse map address %.100s.   Nasty PTR record "%s" is set up for %s, ignoring    reverse mapping checking getaddrinfo for %.700s failed - POSSIBLE BREAK-IN ATTEMPT! Address %.100s maps to %.600s, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT! cannot happen: OUT_DRAIN deny_input_open: type %d cancel-tcpip-forward channel_by_id: %d: bad id channels.c channel %d: rcvd adjust %u callback start callback done %2x x11-req channel_send_open: %d: bad id channel %d: send open DISPLAY DISPLAY not set. unix: socket: %.100s /tmp/.X11-unix/X%u connect %.100s: %.100s %.100s: unknown host. (%s) window-change localhost channel %d: FORCE input drain channel %d: bad ext data channel %d: rcvd ext data %d channel %d: sent ext data %d getsockopt SO_ERROR failed channel %d: connected channel %d: not connected: %s direct-tcpip channel %d: not open channel %d: input draining. channel %d: filter stops channel %d: forcing write channel %d: ctl read<=0 %s: unexpected data on ctl fd channel %d: decode socks4 channel %d: decode socks5 channel %d: socks5 auth done channel %d: socks5 post auth X11 rejected %d i%d/o%d X11 closed %d i%d/o%d channel %d: rfd %d isatty channel: expanding %d channel %d: new [%s] Received X11 open request. connected x11 socket getaddrinfo: %.100s bind port %d: %.100s listen: %.100s X11 inet listener x11 listener No forward host name. Forward host name too long. 0.0.0.0 getaddrinfo: fatal error: %s bind: %.100s port listener Dynamic forwarding denied. connected socket accepted auth socket auth-agent@openssh.com forwarded-tcpip dynamic-tcpip accept: %.100s X11 connection requested. accepted x11 socket x11 ssh2 x11 bug compat mode ??? channel %d: status: %s %s: close channel %d :  resource shortage unknown reason administratively prohibited connect failed unknown channel type channel %d: gc: notify user channel %d: gc: user detached channel_find_open: bad channel type %d  cannot happen: SSH_CHANNEL_LARVAL   channel_still_open: bad channel type %d Warning: ssh server tried agent forwarding. Warning: ssh server tried X11 forwarding.   Warning: this is probably a break-in attempt by a malicious server. channel_request_remote_forwarding: too many forwards    allow port forwarding to host %s port %d    %s: requested forward not found channel_by_id: %d: bad id: channel free channel_cancel_cleanup: %d: bad id  channel_register_cleanup: %d: bad id    Non-public channel %d, type %d. channel_register_filter: %d: bad id channel_register_comfirm: %d: bad id    Received window adjust for non-open channel %d. Received open confirmation for non-opening channel %d.  channel %d: open confirm rwindow %u rmax %u channel_request_start: %d: unknown channel id   channel %d: request %s confirm %d   x11_request_forwarding_with_spoofing: different $DISPLAY already forwarded  x11_request_forwarding: bad authentication data: %.100s Could not parse display number from DISPLAY: %.100s Could not find ':' in DISPLAY: %.100s   connect %.100s port %d: %.100s  setsockopt SO_REUSEADDR fd %d: %s   connect_to %.100s: unknown host (%s)    connect_to: getnameinfo failed  connect_to %.100s port %s: %.100s   connect_to %.100s port %d: failed.  Received request to connect to host %.100s port %d, but the request was denied. WARNING: Server requests forwarding for unknown listen_port %d  Warning: Server denied remote port forwarding.  Protocol error for port forward request:received packet type %d.    channel %d: waiting for connection  channel %d: close_fds r %d w %d e %d c %d   Received oclose for nonexistent channel %d. Received close for nonexistent channel %d.  channel %d: closing after input drain.  channel %d: big output buffer %u > %u   Received ieof for nonexistent channel %d.   Received extended_data for bad channel %d.  channel %d: ext data for non open   channel %d: accepting ext data after eof    Received extended_data after EOF on channel %d. channel %d: rcvd too much extended_data %d, win %d  Received data for nonexistent channel %d.   channel %d: rcvd big packet %d, maxpack %d  channel %d: rcvd too much data %d, win %d   channel %d: will not send data after close  cannot happen: istate == INPUT_WAIT_DRAIN for proto 1.3 channel %d: ibuf_empty delayed efd %d/(%d)  channel %d: rwin %u elen %u euse %d %s: listening port %d for %.100s port %d, connect from %.200s port %d   channel %d: read<=0 rfd %d len %d   channel %d: written %d to efd %d    channel %d: closing write-efd %d    channel %d: read %d from efd %d channel %d: closing read-efd %d channel %d: window %d sent adjust %d    channel %d: pre_dynamic: have %d    channel %d: decode socks4: too long channel %d: decode socks4: user %s/%d   channel %d: decode socks4: len %d > have %d channel %d: dynamic request: socks4 host %s port %u command %u  channel %d: cannot handle: socks4 cn %d channel %d: only socks5 connect supported   channel %d: bad socks5 atyp %d  channel %d: dynamic request: socks5 host %s port %u command %u  channel %d: pre_dynamic: need more  channel %d: method SSH_SOCKS5_NOAUTH not found  Initial X11 packet contains bad byte order byte: 0x%x   X11 connection uses different authentication protocol.  X11 auth data does not match fake data. X11 fake_data_len %d != saved_data_len %d   X11 connection rejected because of wrong authentication.    channel %d: obuf_empty delayed efd %d/(%d)  channel %d: wfd %d is not a tty?    channel_activate for non-larval channel %d. channel_new: internal error: channels_alloc %d too big. unknown (remote did not supply name)    x11_create_display_inet: Socket family %d not supported setsockopt IPV6_V6ONLY: %.100s  Failed to allocate internet-domain X11 display socket.  channel_setup_fwd_listener: type %d wildcard %d addr %s channel_setup_fwd_listener: getaddrinfo(%.64s): %s  channel_setup_fwd_listener: getnameinfo failed  Local forwarding listening on %s port %s.   channel_setup_fwd_listener: cannot listen to port: %d   Requested forwarding of port %d but user is not root.   accept from auth socket: %.100s Connection to port %d forwarding to %.100s port %d requested.   single_connection: closing X11 listener.    X11 connection from %.200s port %d  The following connections are open:
     #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cfd %d)
  channel_open_message: bad channel type %d   channel %d: free: %s, nchannels %u  Received open failure for non-opening channel %d.   channel %d: open failed: %s%s%s Received close confirmation for out-of-range channel %d.    Received close confirmation for non-closed channel %d (type %d).    channel %d: garbage collecting                  `r  connect_to                        channel_request_rforward_cancel channel_cancel_rport_listener channel_handle_ctl    cipher_encrypt: bad plaintext length %d cipher_cleanup: EVP_CIPHER_CTX_cleanup failed   Warning: use of DES is strongly discouraged due to cryptographic weaknesses cipher_init: key length %d is insufficient for %s.  cipher_init: iv length %d is insufficient for %s.   cipher_init: EVP_CipherInit failed for %s   cipher_init: set keylen (%d -> %d)  cipher_init: set keylen failed (%d -> %d)   cipher_init: EVP_CipherInit: set key failed for %s  evp_crypt: EVP_Cipher failed during discard evp_crypt: EVP_Cipher failed <unknown> %s: wrong iv length %d != %d %s: bad cipher %d bad cipher %s [%s] cipher ok: %s [%s] ciphers ok: [%s] 3des blowfish 3des-cbc blowfish-cbc cast128-cbc arcfour arcfour128 arcfour256 aes128-cbc aes192-cbc aes256-cbc rijndael-cbc@lysator.liu.se aes128-ctr aes192-ctr aes256-ctr cipher_set_keyiv cipher_get_keyiv ssh_aes_ctr_iv: no context ssh1_3des_cbc: no context %s: bad 3des iv length: %d %s: no 3des context %s: Installed 3DES IV %s: Copying 3DES IV ssh1_3des_iv   buffer_uncompress: inflate returned %d  buffer_compress: deflate returned %d    compress outgoing: raw data %llu, compressed %llu, factor %.2f  compress incoming: raw data %llu, compressed %llu, factor %.2f  Enabling compression at level %d.       1.2.3 Bad compression level %d.                         0w,aQ	mjp5c飕d2yҗ+L	|~-d jHqA}mQǅӃVlkdzbeO\lcc=
 n;^iLA`rqg<GK
k
5lBɻ@l2u\E
Y=ѫ0&: QQaп!#ĳV(_$|o/LhXa=-fAvq Ҙ*q俟3Ըx4 	
j-=mld\cQkkbal0eN bl{WٰeP긾|bI-|ӌeLXaMQ:t 0AJו=mѤjiCn4Fgи`s-D3_L
|
<qPA' %hWo 	fa^)"а=Y
.;\l ұt9Gwҝ&sc;d>jm
Zjz	' 
}Dңhi]Wbgeq6lknv+ӉZzJgo߹ﾎCՎ`~ѡ8ROggW?K6H+
L
J6`zA`Ugn1yiFafo%6hRwG"/&U;(Z+j\1е,[d&c윣ju
m	?6grW Jz+{8Ғ
|!ӆBhn[&wowGZpj;f\eibkaElx

TN³9a&g`MGiIwn>JjѮZf@;7SŞϲG0򽽊º0S$6к)WTg#.zfJah]+o*7Z-detect_attack: bad length %d    Installing crc compensation attack detector. channel %d: zombie channel %d: is dead channel %d: send close channel %d: almost dead channel %d: send eof channel %d: send ieof channel %d: send oclose channel %d: close_read channel %d: close_write channel %d: output %s -> %s channel %d: obuf empty channel %d: write failed channel %d: rcvd eof channel %d: rcvd ieof channel %d: input %s -> %s channel %d: ibuf empty channel %d: read failed channel %d: rcvd close channel %d: rcvd oclose wait_ieof closed wait_oclose   channel %d: active efd: %d len %d   channel %d: cannot send close for istate/ostate %d/%d   channel %d: already sent close  channel %d: cannot send eof for istate %d   channel %d: cannot send ieof for istate %d  channel %d: cannot send oclose for ostate %d    channel %d: chan_shutdown_read: shutdown() failed for fd%d [i%d o%d]: %.100s    channel %d: chan_shutdown_read: close() failed for fd%d: %.100s channel %d: chan_shutdown_write: shutdown() failed for fd%d: %.100s channel %d: chan_shutdown_write: close() failed for fd%d: %.100s    chan_set_ostate: bad state %d -> %d channel %d: chan_obuf_empty for non empty buffer    channel %d: internal error: obuf_empty for ostate %d    channel %d: chan_write_failed for ostate %d channel %d: protocol error: rcvd_ieof for ostate %d chan_set_istate: bad state %d -> %d channel %d: chan_ibuf_empty for non empty buffer    channel %d: chan_ibuf_empty for istate %d   channel %d: chan_read_failed for istate %d  channel %d: protocol error: close rcvd twice    channel %d: protocol error: rcvd_oclose for istate %d dh_new_group: DH_new dh_new_group_asc: DH_new BN_hex2bn p BN_hex2bn g bits set: %d/%d dh_gen_key: dh->p == NULL dh_gen_key: BN_new failed dh_gen_key: BN_rand failed DH_generate_key parse_prime: BN_new failed /etc/ssh/moduli /etc/ssh/primes   invalid public DH value: negativ    invalid public DH value (%d/%d) dh_gen_key: group too small: %d (2*need %d) dh_gen_key: priv key bits set: %d/%d    dh_gen_key: too many bad keys: giving up    Bad prime description in line %d    WARNING: %s does not exist, using fixed modulus WARNING: no suitable primes in %s   WARNING: line %d disappeared in %s, giving up   FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3DC2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F83655D23DCA3AD961C62F356208552BB9ED529077096966D670C354E4ABC9804F1746C08CA18217C32905E462E36CE3BE39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9DE2BCBF6955817183995497CEA956AE515D2261898FA051015728E5A8AACAA68FFFFFFFFFFFFFFFF    FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF    Couldn't obtain random bytes (error %ld)            ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ %s: illegal option -- %c
  %s: option requires an argument -- %c
 invalid too large    {IGGGGGGIIIIIIIGGGGGGGGGGGGGGGGGG
J/dev/net/tun tap%d tun%d %s: invalid tunnel id %x: %s %s: tunnel mode %d fd %d %s: %s mode %d fd %d %s: failed to open tunnel control interface: %s %s: failed to configure tunnel (mode %d): %s    sys_tun_open    ;    @         0 
  `@
  \
   x
  
  
  
    $  `D  @t    P      `  p	0  	L  P
l  
  
  @      @  <  0
X  
x  0          4  0P  Pl  `           `   <  `  `|    0     P     <  \  @|  p        "   $<  '\   (x  (  (  +   -  P-  -0  -L  -h  .  @.  .  @/   0  @2(  p2D  2h  3  P;  ;   <   <  @<$  `<@  <\  <x  <  `=  =  =  =  `>$  >@  >\   ?x  p?  @  @   A  PA  A4  AP  Al  0B  pB  @C  C  D  D$  PEH  Ed   F  H  PM  0Q  `Q  Q  Q4  RX  Rt   S  S  T  U  V  pW4  `T  `p  b  c  `c  c  pd  d$  d@   e\  `ex  e  e  0g  h  Pi  i0  iP  Pjt  j  Pk  k  k  Pm  m4  nX   p|  Pq  q  0r  s   Pt$    vH   yh   z   {   |   ~   !  8!   \!  Є!  0!  І!  !    "  p$"  @"  @`"  |"   "  0"  P"  `"  #  0#  @T#  Pt#  p#  `#  @#  #   $  8$  0X$  Т|$  $  $  P$  Ф$  p%  P0%  L%  l%  %  %  %   %  &  P8&  \&  `&  &  @&  P&  P'  P0'  `P'   t'  '  '  '   (   (  @(  \(   x(  (  (  @(  P(  )   0)  T)  p)   )  p)  )  )   *   $*  @@*  p\*  x*  P*  *  p*  +  (+  H+   h+  +  +  P+  +  ,  ,,  P,  t,  0,  ,  ,  @,  -  8-  X-  Px-  -  p-  -  P-  .  @@.    d.  p .   .  .  `.  /  0/  	P/  t/   /  /  @/  P/  0  !<0  `"`0  $0  %0  &0  '0  P*1  +01  0P1  `6p1  61  61  71  81  P:2  0<82  >X2  pAx2  B2  PC2   E2  E3  H$3  H@3  @I`3  I3  J3  J3  J3  J3  J4   K04  0KL4  Kh4  L4  PL4  N4  O4  P5  PP(5  PL5   Ql5  0R5  S5  S5  V5  W6  W86  `X\6  X|6  Y6  PZ6  Z6  `[6  [7  \@7  @]d7  ^7  _7  `7  `7  a8  c08  cP8   dp8  pd8  d8  pe8  h8  h9  pj09   kP9  kp9   l9  m9   n9  n9  0o:   p4:  qX:  q|:  Pr:  r:  t:  @t:  t;   u4;  0uP;  `ul;  v;  @x;  ;   ;  <  ,<   H<  Pd<  `<  0<  `<  <   =   $=  D=  d=  p=  p=   =  `=  >   ,>   P>         zR |        L    AB
A   8       AB
AC     X   @R    AB
IE       |   |    AB
FQ         $   AB
B        3    AB
A      <[    AB
A       
   AB
FNE       l   AB
C    <  M    AB
FQ       `      AD
IE           AB
C         AB
C,        D 	FAB
D        8    AB
D          AB
FFQ     4  l    AB
D    P  L    AB
FNF     t  B    AB
D     H   AB
F     8C    AB
A     l    AB
B       @    AB
A      U    AB
A   $  DA    AB
A   @  xP    AB
D   \  A    AB
A   x  Q    AB
FF            AB
FT        <    AB
D         AB
B       p=    AB
D     N   AB
O   4  =    AB
D    P      AB
FT      t  =    AB
D          AB
FQF        =    AB
D          AB
             AB
         8    AB
II    (   
    AB
      D      AB
F   d  =    AB
D     P    AB
L       8=    AB
D      \p    AB
FI        D    AB
D     h    AB
I       ,_    AB
B     <  l    AB
F   \  F    AB
FQ    |  LR    AB
FF      N    AB
FN      r   AB
C         AB
C     0    AB
A     0    AB
A   4  O   AB
F    T      AB
FI      x  2   AB
C      
   AB
INJ          AB
I     |2    AD
         ]    AB
ITH       P    AB
A   8     AB
C   X  o   AB
FT    x   %    AB
        4%    AB
        H%    AB
        \%    AB
        p%    AB
      	  %    AB
        	  r    AB
FFN      D	  r    AB
FFN     h	  P    AB
E     	  ;   AB
I   	  )    AB
       	  $x    AB
FNF      	      AB
FNF     
     AB
C   ,
  $X    AB
FR    L
  $O    AB
TG    l
  %    LB
      
  %    LB
      
  %    AM
      
  %    LB
      
  %    LB
      
   %    AM
        $%    AB
A   0  %    AM
      L  %    LB
      h  %    LB
        %    AB
FN      4&_    AB
A     x&.    AB
A     &&    AB
A      &F    AB
FNF        &    AB
FQ      @  H'    AB
B     `  (-    AB
A   |  (-    AB
A     0(-    AB
A     D(&    AB
A     X(9    AB
A     |(4    AB
D   
  (;    AB
A   $
  (    AB
C   D
  t)s    AB
FN     d
  )    AB
FYG     
  p*9    AB
A    
  *    AB
FQ      
   +[    AB
A   
  D+A    AB
D      x+   AB
C      .   AB
C   @  2   AB
C   `  H6-    AB
A   |  \6-    AB
A     p6-    AB
A      6    AB
I_        P74    AB
D     t7-    AB
A     7z    AB
C    0  7   AB
FQF     T  8    AB
A   p  9   AB
I\       :    AB
FPF       4;7	   AB
C     TD    AB
        XD   AB
C     XF    AB
      ,  \FC    AB
FN    L  F<    AB
A   h  F    AB
B       `G&    AB
A     tG9    AB
A     G2    AB
A     G9    AB
A     G9    AB
A     H@    AB
A    0  (HI   AG
I\      T  TI    AB
FN    t  J4   AB
C     4K5    AB
D     XKT    AB
FF       KT    AB
FT        Kj    AB
FF      $L    AB
F   4  LA    AB
      P  L3    AB
       l  Lp   AB
FQ         8N    AG
IQH        N    AB
OF          O   AB
FFN        P#   AG
FNG        QU    AB
D    <  Qt    AB
FQ       `  HRu   AB
FI        S    AB
F      $T   AB
LPF       UV   AB
I      Y-   AB
FFN        Z    AB
FI       0  Z   AB
FQ      T  [   AB
C   t  ]   AB
F      `    AB
FI         a   AB
FQ         b    AB
FT         HcS    AB
FQ       c   AB
C    @  e   AB
IS      d  h,    AB
A      hK    AB
ED        Dh!    AB
A     Xh    AB
C     h4    AB
D     hu    AB
FQ      \i%    AB
A   8  pi   AB
I   X  pk   AB
C   x  `nL    AB
A     n4    AB
D      nD    AB
ACF       n   AB
C     o   AB
F     p   AB
C    4  w    AB
BC      X  `x    AB
B     x  y   AB
I      z    AB
C     z    AB
F      }    AB
FT        L~8    AB
D     p~    AB
C   8  P9    AB
      T  tw    AB
      p      AB
C     X    AB
C     *    AB
D     ,S    AB
FF      l    AB
C         AB
AJ      0  ؃   AB
^   P  a    AB
F    p      AB
IXF        t    AB
IXF           AB
IS         m   AB
FNF         ؉+   AB
INH     $      AB
C    D  t   AB
FQF      h  `    AB
FNF        <    AB
FNF          AB
F          AB
FNF          AB
I      $   AB
ITO      8      AB
R\       \  ̠   AB
IOa          AB
F        AB
I     HV    AB
A     0    AB
A         AB
BC        <    AD
      8  0I    AB
FO    X  `    AG
      t  T@    AB
A     x    AB
FF          AB
BC        T    AG
        XD    AD
F     D    AG
F   (  j    AB
A    D     AB
IF[     h  _    AB
FF          AB
            AM
        $    LB
        .    AB
A           AB
FQ             AB
FQ      @  HT    AB
C    `      AB
FNF            AB
FNF           AB
C     `g    AB
IN      X    AB
FN      X    AB
FN    (  0m    AB
FN    H  X    AB
FN    h  X    AB
FN            AB
FQ         0   AB
FQ             AB
FNF       4w   AB
C           AB
FNF     8        AB
F   X      AB
C   x   @    AB
FN           AB
B        P   AG
L           AB
C      |    AB
C    !  0   AB
FUG     <!  K    AB
FF    \!      AB
AF    |!  LA    AB
B      !  |    AB
FQ       !      AB
FQ      !  j    AB
FN    "  l    AB
FN    $"  4    AB
C    D"      AB
FQ       h"  p   AB
FQ       "     AB
FQ      "     AB
C    "  H   AB
FL      "  $W    AB
I     #  d   AB
I   4#      AB
R   T#  d	   AB
I    t#  Tv   AB
ITX      #     AB
FNE      #  L    AB
LW       #     AB
FNF      $     AB
LQ       ($  G   AB
ACC      L$      AB
FNF     p$     AB
C   $  8a   AB
C   $     AB
I   $  X   AB
I   $  #    AG
      %  ;    AB
J      ,%      AB
FQ      P%  K   AB
C    p%  t   AB
FL       %  4   AB
FL      %  	   AB
I   %  p   AB
C    %  0   AB
BC      &      AB
C    <&     AB
FQ       `&      AB
FQ      &     AB
C   &  t"    AB
A   &  h    AB
C   &  G    AB
B       '     AB
L]      $'      AB
      @'      AB
      \'      AB
      x'      AB
      '      AB
      '  !    AG
      '  R    AB
D    '       AD
FL      (  |8    AB
A   ((  ^   AB
F    H(     AB
ITF     l(  F    AB
AD    (  1    AB
A    (   n    AB
FFN     (  lU    AB
C    (     AB
FI       )      AB
FI      4)  Ti    AB
IQ    T)  "   AB
F   t)   T    AB
AC     )   b    AB
FTF      )  @!    AB
FNI     )  !    AD
FU    )  l"    AB
F    *  L#]    AB
FI      @*  #    AB
O   `*  $l    AB
D   |*  \$    AD
FU     *  $    AB
LF       *  h%    AB
FI      *  %   AB
F    +  T'   AB
INI     (+  @(    AB
A    D+  D(    AB
IQF      h+   )    AB
IQF      +  )+   AB
FQ      +  *d    AB
FN    +  (+    AB
FN    +  +N    AD
F   ,  +@    AB
FN    0,  +    AB
E     P,  ,    AB
F   p,  /    AB
       ,  /   AB
FI      ,  81    AB
FN    ,  1    AB
FN    ,  2    AB
FN    -  2    AB
AC    0-  X3    AB
AC     P-  (4z    AB
IE      t-  4    AB
E     -  5    AB
FN     -  5   AB
FQ       -  6z    AB
IE      -  7    AB
E     .  7u    AB
FF    <.  8;   AB
B     \.  ,9-    AG
      x.  @9?    AB
A   .  d9}    AB
B     .  90    AB
A   .  90    AB
A   .  9'   AB
C   /  :   AB
F   ,/  <	   AB
C   L/  F   AB
C   l/  I   AB
C   /  J   AB
C   /  \Ll    AB
A   /  LD    AB
A   /  L    AD
        0  L    AB
ITF     $0  M(    AB
A   @0  M~   AB
C   `0  O   AB
F    0  Q   AB
FFN     0  S    AB
F   0  TTD    AB
DD    0  Tr   AB
C    1  U   AB
FFN     (1  X    AB
E     H1  0YY    AD
E     h1  pYU   AB
F    1  [V    AB
FQF      1  [    AB
ITV     1  \   AB
C                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        X                            '     0     ; U  B U   _" H " X " ^ D   @  l    p @  t @   z        @            h           @                         t     z                                                                                          	    
           Y  ; ; Y  ; ; B  D            <      a      +     8     B     N     \     p     }               6     d(  
    oh            
   m
                                  D#     t             o  o   o  o                                                  ,  `                    p 0             ȧ     (      ا  u  p                 ܚ     ħ G           (  (  (  (  (  (  (  )  )  ")  2)  B)  R)  b)  r)  )  )  )  )  )  )  )  )  *  *  "*  2*  B*  R*  b*  r*  *  *  *  *  *  *  *  *  +  +  "+  2+  B+  R+  b+  r+  +  +  +  +  +  +  +  +  ,  ,  ",  2,  B,  R,  b,  r,  ,  ,  ,  ,  ,  ,  ,  ,  -  -  "-  2-  B-  R-  b-  r-  -  -  -  -  -  -  -  -  .  .  ".  2.  B.  R.  b.  r.  .  .  .  .  .  .  .  .  /  /  "/  2/  B/  R/  b/  r/  /  /  /  /  /  /  /  /  0  0  "0  20  B0  R0  b0  r0  0  0  0  0  0  0  0  0  1  1  "1  21  B1  R1  b1  r1  1  1  1  1  1  1  1  1  2  2  "2  22  B2  R2  b2  r2  2  2  2  2  2                                                   l    h h   7 7                                         |
         
     `   
         
     `   
         
                     |
                     7            U                        J3                     I3                  N3                  0 W3                  `3                  m3                  y3                   3                  3                   3                  3                  3                   3                   3                   3                   3                                                    U                        I3                  W3                  3                  3                  3                   3                   3                   3                   3                                                     7 ssh-keyscan.debug    .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  4  4                             H  H                     !   o   h  h  d               +             
              3             m
                 ;   o                      H   o                       W   	      t  t                 `   	      D#  D#                 i         d(  d(                    d         |(  |(  P
                o         2  2  $                u                             {             a                           G G                           4T 4T 1                                                                                                                                                    (                        D D                                                        D                              $                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ELF              4   ls      4    (      4   44               4  44                     m  m            p    p  (           p                 H  HH              Ptdd            Qtd                          /lib/ld-linux.so.2           GNU           	      9         B `    9   ;   KG->Kyc*                S      4             g                        T            7                                                           y       n     )            e      g            <     #      8            C            2                        .                 @            {                 <                 Q                   f      X       I      l            G      G      b            +      <      
                       @                  '                   6                              o                 #      C      H             Z      *      j                                       ]                  E                                                       9            p                   %             u                          4  \     A  /     W      d  $      __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk setlocale mbrtowc iswblank optind dcgettext wcrtomb error iswprint realloc towupper abort stdin memchr strpbrk __assert_fail __ctype_get_mb_cur_max calloc strlen memset __errno_location __fprintf_chk strnlen memcpy fclose malloc mbsinit __uflow __ctype_b_loc optarg stderr getopt_long fileno __fpending strchr __vfprintf_chk fdopen __ctype_toupper_loc fcntl fopen64 bindtextdomain fwrite_unlocked strcmp __libc_start_main strcoll __overflow __strtoul_internal fputs_unlocked free __cxa_atexit __stack_chk_fail exit_failure version_etc_copyright close_stdout program_name GLIBC_2.2 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.0                                                                              ii
   q     ii
   {     ii
        ti	        ii
        si	        ii
         H	  L  P!  X:  \;  `-  d<  h.  l4  p=                  	  
      
                                       "   #  $  %  &  '  (  )  *   +  $,  (/  ,0  01  42  83  <5  @6  D7  H8  U}    H   5x%|    %h    %h   %h   %h   %h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @%hX   0%h`    %hh   %hp    %hx   %h   %h   %h   %h   %h   %h   %h   %h   p%h   `%h   P%h   @%h   0%h    %h   %h    %h   % h   %h  %h  %h  %h   %h(  %h0  %h8  p% h@  `%$hH  P%(hP  @%,hX  0%0h`   %4hh  %8hp   %<hx  %@h  %Dh  %Hh              1^PTRh@hPQVhUS    [b  tX[ÐUS= u?-X9v&    9w[]Ít& '    Ut    t	$ÐU]     @    @    Í&    U(]}׉uE0$  a  tH9tDD$   D$$    WT$VT$D$    $   D$E8]u}]U8]$  fa  }ǉuD$
   D$    <$D$ED$<  tftW<$
8  D$   $    ƍD$Nt$D$    $   D$2E]u}]ËEtf<$7  D$   $    ƍ<D$t$D$    $   D$U&    U]#  f`  uƋ@$F$u]F    u]UWVS"  "`  t1fGPt97wG$[^_]fUWVS"  _  }   E+  E     9t"M&    tv9t9uǅtg U<0uat& Ex   E    1$   N8  U@    p   B   .[^_]1U<0t|<2~NE$5  D$   $    ƍpD$t$D$    $   D$vfUz.tD$o5  D$   $    ƍD$t$D$    $   D$U0EЃ}  ED$	D$D$:  $t&  ur9au9UM!969.9uېt&  <$D$D$<$$64  D$   $    ƍD$zt$D$    $   D$^D$	D$D$9  $t& '    U(]uƉ}׉MPi  ö\  ;Pr @D$FD$   $=5  VFF<ЋVFML]F}u]Ív UWVS  U\     e   E1   9A   AUЋ@E   9F   FUԋ@EċU҉U-  Mĸ   ɉMtBl      EЉEȋEԉÈ4   taE̋}D$E|$D$Eȉ$[  }e3=     e[^_]Ív E    E    sE    E    @EMU9ȉUU  u9(uE+EO  }EE    E    }9vEU|Mȍ}E؍UE   xtpl|MxLȃ)ċE|$M}|M1   MLE    M EUEU   }}9}   EU苽ptEEUUU+E<$UL$D$T$tsu؉4$9t^lD$EEE    E    T$$T}}9}rEU E}YEME|$L$$G M}M9   EUE   |xM|xD)čD$dDU1t;>M1EL̉M1ɋ}9}d
;uuދEd E}s}R}=;      '    USK  ØX  9Bv    JQu(8  t $D$~[]Ít&  T$D$   D$$"[]Ð&    UWVS  X  UD     uYL  9      5vtO,  tjD$   $D$0  D$ttUFvuB;B   
B[^_]ËB;BF    BA   UPL  9     o     Gt|1O    D$   $D$0  D$!   98  9w/  ,  uB;B    B봋      Ur1ED$   $D$0  D$,U   9v1U9rv),  uB;BP    B븋Mp;qrDaD$   $D$0  D$U
U9r",  uB;B     B뾍p;wr@D$   $D$0  D$99w,  uB;Bs@  BƋ}UD$    $4D$
   $tD$    $
|D$    $D$    $^D$    $UWVSE&  sT  tU0D$   D$$    t$D$   D$ $cE$t& 0D$   D$$    >t$$   D$J7D$   D$$    t$$7D$   D$$    t$$7D$   D$$    t$$pX7D$   D$$    t$$D7D$   D$$    Tt$$7D$   D$$    (t$$(D$   D$$    ?T$$   D$lt& '    U8EE]}ωuU  cR  tD    4M}E}E8u	E    ]u}]Ív UEEU   ~M      } tMw   낍t& GwUMB   ^uE$(  D$   $    ƍUD$t$D$    $    D$$   U*E   >OEhE   .E !t& '    UWVS  P  |$e   E1U  Ut$$    }G    G    G      GEGE    E    E9E؉EE      ,    E؍UMUME0t& EuE   U;0  tjEE܋U9UX  MUEu܉M}M+E܉Ut$L$D$<$EwUEE   UU;0  EuM,  u9ɉuM܋U؋E+MMM9MM   MhMyquă9u   ,     EE)~ZUMЉ<$)ỦT$L$u΋EM,   $t&  urMA$u1F    ue35   p  |[^_]Ëu}u}U)UEM   +}؋U؋Et&    먍fD$   D$$    Ht$ $   D$N}EUEU}ԍt& }E+E؋u}U}D$E؉u$|$D$ƍ@  uf E$tu؋M9Mw}E+E؋Uu}}D$E؉$u|$D$@Ҹ   y  }9}w'uf E$uO9}UuEMUUԉ4$EL$)UT$|$ƍ@wEUEUU؉E+M"MUuEMMUt$|$L$$@Ҹ      9EEw/uf E$u؋E9EMu؋UEԉM}M+E؉t$UL$D$<$Jƍ@wEUEUjEȋ EuFttEă9u~Аt& =΋E)э~
9}   Eȉ EFMAtEĉ)L89t~uFuJ9MtYB}GuEĉ)ЍL}Gu9uE)։   -  UMUMzuE    !})׉}̉t& '    U]u։}
  J  ;Vt+V1҄t]Ћu}]Ít& FD$FD$    $V#  F
L$qUWVS2
  J  Q   Ie   U1E    lhE    E    E    \L$$   q4$D$4$m$   -  4  $,  UMƃ7  LdHD7  ;  1  2T  $   v EELdhlD$    D$T$L$4$  aE    tLzjv      e  i&    pƃl  sƃ7   &    \ED$D$
   t$D$    $_$  uEvL$p  D$   $    ƍD$t$D$    $   D$}   ƃ6  t]  vf<o$E   
A<   k         Mut$u4$EMU}L$`|$ƃ5     g=}m  =~f$    v    z h D912DE]8 _  $_   vGE    uE    D$   <$t$|$$    D$nƍ@       t:   ,  t|$$   ,  0  8  t$D$  8  oD$D$D$D$D$     $&  $    C):G.:G D$   D$$    D$    $   D$v^ME    X9~quEMT}`uPhPX|$t$T$`$T9lEtJ:  D$   D$$    D$    $    D$$   1Xy  u烻           U:  :B~   pp  U:7  F:B*   tt  t9p  HYHpHD=Dt,EtUUtNUE o     6     EDtE    Eu5   t/  6   tE  HDup$;a  t4$%  $    aHpL	  EMU tƅ{ v Dt  UE Etƅz 7   tWUǅ|    ti}t*|1EUE9wE|;|wUt1EUB9w怽{    M
P@BABABABABABABAE   Ut1EUB9w怽z    M
P@BABABABABABABAE   o5     E&HpE    n=E    JE        EƅzUEƅ{UL  
!<$TD$   D$$    VD$    $   D$>D$   D$$    D$    $   D$      hEL  ]oD$$  toD$$i  pslhD$  D$   $    ƍD$Zt$D$    $    D$>UL  uE\L  FtuEL  uoEL  XptuJUT$T$ $   D$UT$T$ $   D$Zrǃ       ǃ       D$   D$$    t$ $   D$/UT$T$ $   D$eUT$T$ $   D$$ÐU(E]3=  }}D$Eu|$D$E$&  E0   (D$   D$$    *t$$    D$DD$   D$$    D$    $    D$E|$D$   $   D$}  D$   $    ǋED$ED$Y  D$   $    ƍpD$}|$t$D$D$    $YE]u}]ÐU)  ;  E]p  Í&    U(]y;  u}  $E$5u{tjq 	EtxD$   D$$    Ƌp  ta$!  t$D$D$E$D$l]u}]ÄE    tyuEwЋD$Et$$D$멋$ÐU]EVã:  u}D$    $g   t(:t-   ֍18]ȋu}]Ð0:BtUSE%:  @$D[]Ív '    UWVSEU9  @EUu{EuEUB;B   U8BEt_;ut"E
uȋU+urE[^_]ËE0D$U$M  UEƉBEE    E[^_];utU u~
t
   E
냉$j        UE     @    @    @    @    ]ÐUWVSM}uU}8  EE y uEU    MuL$4$EuY4$CpE$5uE)E)t:Eu1E   MuLEMDE[^_]ËU؋M11҅t͋U1E뿐UE$7  t ]Í&       ]Í    UU7  tE]Ít& E  ]Ív UE$M27  |$}t$t6ʃҍr11z$t$|$]Ív   &    U]7  uu}ǋ $$   E  tHFBFBFBFBFBFBFBF B E]Ћu}]Í  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]&6  uƉ}D$   D$$    N9t
]u}]Ãu捶        UWVS|5     EEUMe   U1҉E}EwMfE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$r  t  z  }uHt& v>U       B[<!w&    9u֍    E؉$U$u E>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EO>UM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUUƍE    t!t& M9MvUEM1u<$}EEUE    E    E    E7E  E   }E   E}  E   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$EE 'E   UE   E ;E "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋} S  v U(}}]cð-  ut?UMƋ |$ED$E$EU]u}]Ív   빐&    UWVSI-  ,EUM"E EEE  U;   rlփ.     9          D$   $D     D$    )ȉ   T$$^   EUE   0xT$E܋Ut$<$D$T$9w[pU䋃   4Ѝ  9t<$~   E4$i  UǉBEU܉t$<$D$ET$D$PEU,[^_]$   "           H<
          UVSmú+  @Uuԋ  Eԋ  E؋  E܋  E  E䋃  E苃  E싃  E  T$4$D$   EU14$@[^]Ð&    US+  ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USE8Å*  $    D$ED$[]Í&    '    USEH*  U  M[]    US*  E$    D$[]Ðt& U(])  u}UE T$UD$    $    EET$D$x<$  U|$T$ƋE4$D$ED$EU]u}]ÐUSEE)  D$   D$E$d[]Í&    '    US)  E$    D$[]ÐU(E](  }D$Eu$xt
$zv]u}]f$x   xB<$uE4$D${uP1E4$UNUE/E<$1UUE{US(  ED$   D$    $w[]ÐUSEx'  D$E$@t[]f	  t& '    U]E6Ã'  uu$t$t
]u]Åt  UE}}]='  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅B  fU]y&  uu4$t
]u]Åt  &    U]9Æ&  uu4$Ut$T$$]u]ÐU]F&  uu4$4$D$]u]Ðt& U]&  uu4$t$D$    $]u]U1҉Muu]iö%  9w*΋EL$$t]u]Í    t  &    U1҉Muu]	V%  9wΉ$Ot
]u]Åt  t& USMU%  ɋt"=w#D$$[[]Ðt& u@C  Uщ4$1҉Ɖ|$89s4$   |$]14$|$]Ð&    UWVɉEUE    t1v UE	E9uE^_]ÐUWVS<}3$  }$  EE   蠿7 ErMDA u<-   ϽE     D$    UT$M؉<$L$(U؉E29uSMtatZD$M$tDEE   E    0>uEEUE܃<[^_]ËMԋE    tV"tJE   E܃<[^_]ÍUUD$E$蕽u.EUME܃<[^_]E   UszD$0   M$PtF<D  <iD  <Bf      E   G<5wE   M	E܋E8 ME   ҍE   E   벍E   뢍E   A1뎍E   f{zE   ihE   WVE   EDE   v /  E   D$D$D$k   $TE      ~BUWV1S,EA!  M}EtЃEBu  |$EL$D$   D$D$U$D$   D$$    D$  D$   D$D$E$׺D$   D$$    ɻUT$$芺	wuD$   D$$    艻t$D$   D$U$~,[^_]uD$   D$$    @t$D$   D$E$5,[^_]ËutD$   nuHD$   뤋u D$   EuD$   xuD$   uD$   LuD$   uD$    |$ED$   D$D$U$8
US$EED$E~  D$ED$ED$E$T$[]ÐUS>Ë  D$   $    <D$费D$    D$D$$莺U]Ít& '    UWVS  賷E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1S\é  tD$ED$    $}[]ÐUSk  耹US  tЋu[]US    [   pY[                                     incompatible join fields %lu, %lu   value %s is so large that it is not representable   invalid file number in field spec: %s   file == 0 || file == 1 || file == 2 Try `%s --help' for more information.
  Usage: %s [OPTION]... FILE1 FILE2
  For each pair of input lines with identical join fields, write a line to
standard output.  The default join field is the first, delimited
by whitespace.  When FILE1 or FILE2 (not both) is -, read standard input.

  -a FILENUM        print unpairable lines coming from file FILENUM, where
                      FILENUM is 1 or 2, corresponding to FILE1 or FILE2
  -e EMPTY          replace missing input fields with EMPTY
     -i, --ignore-case ignore differences in case when comparing fields
  -j FIELD          equivalent to `-1 FIELD -2 FIELD'
  -o FORMAT         obey FORMAT while constructing output line
  -t CHAR           use CHAR as input and output field separator
   -v FILENUM        like -a FILENUM, but suppress joined output lines
  -1 FIELD          join on this FIELD of file 1
  -2 FIELD          join on this FIELD of file 2
          --help     display this help and exit
          --version  output version information and exit
   
Unless -t CHAR is given, leading blanks separate fields and are ignored,
else fields are separated by CHAR.  Any FIELD is a field number counted
from 1.  FORMAT is one or more comma or blank separated specifications,
each being `FILENUM.FIELD' or `0'.  Default FORMAT outputs the join field,
the remaining fields from FILE1, the remaining fields from FILE2, all
separated by CHAR.

Important: FILE1 and FILE2 must be sorted on the join fields.
   conflicting empty-field replacement strings both files cannot be standard input invalid field number: %s , 	 invalid field specifier: %s join.c file != 0 || field == 0 
Report bugs to <%s>.
 bug-coreutils@gnu.org extra operand %s read error /usr/share/locale empty tab \0 incompatible tabs Mike Haertel 5.97 GNU coreutils join -a:e:i1:2:j:o:t:v: missing operand missing operand after %s - ignore-case help version add_field string comparison failed    Set LC_ALL='C' to work around the problem.  The strings compared were %s and %s. write error %s: %s C POSIX " ` ' literal shell shell-always escape clocale ||^@>2+$                      xstrtol.c   0 <= strtol_base && strtol_base <= 36   s**<xstrtoul %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
  
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 r\I3memory exhausted                                Copyright %s %d Free Software Foundation, Inc.  ;  <   P  p   D  h  0           @4  X  x  p  P       p8  T  x  0  `  P    p  0  L  @p    0        <  @\  px        @  p  (  PD  `  P              @  P`      @       	  <	  `	  |	         zR |        D    AB
       8   H    AB
IE       \       AB
FNE        @    AB
FN        N    AB
AG          ̪   AB
AD          m    AB
IE            AD
BC      0  x    AB
D    L     AB
AD      p     AB
F      `   AB
OE         ̸   AB
BC         q    AB
IE   ,     G
   D 	FAB
CL      ,  K   AB
INM     P  0    AM
       l  4   AB
FQ         0    AB
FT        &    AB
D         AB
F     p*    AB
            AB
F   ,  T*    AB
      H  h-    AB
       d  |h    AB
ISI            AB
FNF       4Y    AB
B        tT    AB
FNE       
   AB
C      h    AB
FFN     4     AB
C   T  \    AB
B     t  +    AB
A     +    AB
D     -    AB
D     2    AB
D     <*    AB
A      P+    AB
A      d    AB
FQ      @  2    AB
D   \  +    AB
A    x      AB
IX        3    AB
A     5    AB
D     @    AB
FQ       ,~    AB
IFP       9    AB
FN    8  ?    AB
FN    X  ;    AB
FN    x  @    AB
FN      Y    AD
NF      HL    AD
NF      xM    AB
D     H    AD
FH      ?    AB
AF    4     AB
F    T  a   AB
BF      x  B    AB
D     L[    AB
A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                y        i           ~        }                *28EL             
   Hoh   |   
                     t                 4   P         oo   o8                                                                                                JZjzʋڋ
*:JZjzʌڌ
*:JZjzʍڍ
*:JZj          h    join.debug  ܽR .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  4                +                         3         ||                   ;   o   88  |                H   o                     W   	      44	  P                `   	      	                i                             d         44  @                o           E                 u         HHT                    {         T                             d                            e                              p                             p                             p                               p  `                            p                           HHq  ,                          ttq                            LLr  $                           pr                                  pr                                  r                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ELF              4   T      4    (      4   44               4  44                                        $ $X             @  @%@%               H  HH              Ptd  		4  4        Qtd                          /lib/ld-linux.so.2           GNU           	      <         0 ``<   =   @   ~K	2G->Kyc*                       g                 E      T      
      )                              1                         *                                  n     )                  g     g                   <            C      F      E                        .                 @                  z      @           P                   f      g       I                        G      n      <             2      ?           _                        q       v      8      '                   6                        @      o                   X           R      C            *                   {                   E                        E                        D                              H             |            W       B             =                               M            c  e        D     l  T'     y  @'       /       p      (      __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk setlocale mbrtowc strncmp optind fflush_unlocked dcgettext nanosleep error iswprint realloc abort memchr memrchr kill __assert_fail __ctype_get_mb_cur_max isatty calloc freelocale strlen newlocale memset __errno_location open64 read __fxstat64 __fprintf_chk memcpy fclose __strtol_internal malloc mbsinit getenv __ctype_b_loc optarg stderr getopt_long __fpending lseek64 strchr __vfprintf_chk fcntl bindtextdomain fwrite_unlocked __strtoull_internal __libc_start_main strtod_l __overflow __strtoul_internal fputs_unlocked free __cxa_atexit __stack_chk_fail c_strtod argmatch_die exit_failure version_etc_copyright close_stdout program_name GLIBC_2.2 GLIBC_2.4 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.3 GLIBC_2.1.3 GLIBC_2.0                                                                                    ii
        ii
        ti	        ii
        ii
        si	        ii
         &
  &<  &  &!  &>   &?  $&@  (&A  ,&/  0&6  4&B  D&  H&  L&  P&  T&  X&  \&  `&  d&	  h&
  l&  p&  t&
  x&  |&  &  &  &  &  &  &  &  &  &  &  &  &  &  &  &  &   &"  &#  &$  &%  &&  &'  &(  &)  &*  &+  &,  &-  &.  &0  &1  &2   '3  '4  '5  '7  '8  '9  ':  ';  U  @  d   5<&%@&    %D&h    %H&h   %L&h   %P&h   %T&h    %X&h(   %\&h0   %`&h8   p%d&h@   `%h&hH   P%l&hP   @%p&hX   0%t&h`    %x&hh   %|&hp    %&hx   %&h   %&h   %&h   %&h   %&h   %&h   %&h   %&h   p%&h   `%&h   P%&h   @%&h   0%&h    %&h   %&h    %&h   %&h   %&h  %&h  %&h  %&h   %&h(  %&h0  %&h8  p%&h@  `%&hH  P%&hP  @%&hX  0%&h`   %&hh  %&hp   % 'hx  %'h  %'h  %'h  %'h  %'h  %'h  %'h          1^PTRh hQVhwUS    [x  tX[ÐUS=d' u?$-$X`'9v&    `'$`'9wd'[]Ít& '    U$t    t	$$ÐUPMVUuHPNHVLHPNPHVXN\P H$V^@4    @8    P(U]@0 P,Í    3  c  UH:uI:Bu	v ]Í        U(}Ǎ@]2    uUv<$u
]u}]Í#D$   D$$    *U|$t$T$ $    D$"뫐&    US<2  Ï      t/D$6T$D$$   ƃ    []Ít& ɐ&    U]1  (  ҉uu
]u]Ë T$D$   $D$uҍDD$   D$$    /t$ $   D$2]u]UWVSL   UE61  É  ǅ    e   U1ҋǅ               D$<$L$G     tc1ɉ	t)t	\&    Me3
   unL   [^_]ø    KF8tǋ$)F  D$   $    ƍPD$t$D$$   D$z\  t& UHu֋U]/    }ωUЋUe
   M1ɉt$|$T$$xMe3
      ]u}]ÍEۉ|$D$4$5  }th}   EuRD$   aD$$    /MЉ|$L$t$ $    D$$   RD$   D$$    OUЉ|$T$맍D$   rK[  t& '    UWVSX.  ë     UH:G  I:BEG<} Ew@E    ,  O@8r  0   '  }  G<EED$E$   D$  E%   =   `  =   U  =   J  =    t& :  G@\$C  D$   $    ƍ0D$t$D$    $    D$ G0t& 	E?G.GČ   [^_]G<Ew@E }$%   D$g2  EG<}<  G@z  } py$B  D$   $    ƍD$t$D$G@$    D$!G@    t5ft.  f$SB  D$   ƍRW$MG 3E1	3  w   $A  D$   ƍD$$    Wt$D$    $    D$[} uED$E$    D$    D$U911$    D$EČ   [^_]Í&    9UD$D$E$    D$$A  D$   ƍxfG< WMG3E1	EcD$~D$D$Y  $cD$~D$D$  $    '    UWVS!  $$e   E1)  J  ƅ/ H:uI:B// d  D$    $D/  (0     (_  $F<4   3  $R1   X#  (T$$   L$A*	  3     =   u%   =     $   )A  xǀ        ǀ       $   A  xǅ\    ǅ0    ǅ4    T89   xT   \T104(D$    |$$>  ƍ@      Ǉ       x\    2=    x   T\+     E$   @  xV$F<(02   	  ǋ${$=  D$   $    ƍD$t$D$$    D$!1Ue3     !  [^_]Ë(L$$   t$q  3     =   u%   =   .  $   ?  pǀ       ǀ        ǀ       $   >  pǅL    ǅ0    ǅ4    PƋ(D$    t$$<  HY  Hǆ       ǆ           H<   P)ЉD$D$
   $&uڋp   L        
=    p   PL+    V  9J  pP   LPH104ƃ<  ǅ(    $$A< l=   u%   =     tW(D$    |$$9;  
  
  1ɉ;  ;  )8  11(X$D$00   442     /   ǅ0    ǅ4       (D$    |$$Q:      1҉044)ȉD$D$
   $tHu9v)Ήȉ(   X$D$04$   q;  pЉL$t$$H              xt$|$Љ$x        Y)($
Y$o$8  D$   $    ǍPD$|$t$ $    D$1$A@($   |$D$	  %   =      =      =      =    t&    $D$   $    ƍD$Gt$D$    $    D$K$A@A0$G(z$1Bt΀/04(D$$L$4$|$   4$uHC  p       }   |
t   LPL+      9  tt   t+    |  9p  ɿ   PuPP   $uX4$)6  D$   $    ǍD$
t$1|$ $    D$~ǅ0    ǅ4    BX<$딉<$:  T\    )Ѓ w?9|s1|   |    )у w9sϋT\|    11)||   t       u   TuTT   $&u8$G$ǋ B0 B     B$    B@B    B    9=+4!X($   T$PW   PLtt     w89s0+t()ȉD$D$
   $  Hu)ωȉt   t    j   u    3X11$   D$(h1$   ׋XƋ(T$1D)  ;  |;  X($    L$Ɖ׋$XT$(&0044   	jX<$w2  D$   $    ǍPD$Xt$|$ $    D$10$ǋ B@$2  D$   $    ƍPD$dt$D$$    D$j+X$1  D$   $    ǍPD$|$1t$ $    D$X<$i1  D$   $    ǍPD$J|$1t$ $    D$*X(ڃ ىt$$   ƉG  (D$   D$    D$    $88<!Ѓ(D$   D$    D$    $9<@D  |98  @D04	04+8<1)Ɓ  3+      ǅ     ǅ    @D+ $    h(lXlT$hr(t$|$$l/    `h`lǅd    dta5
t+)#  tT$D$
   <$2ulh3<38	  Xh lhL$(l$    k(D$    |$4$a.    h`l``ǅd    dd04;X<$-  D$   $    ǍPD$#|$t$ $    D$"1ǅ0    ǅ4       11EX8<$    D$(UXD$~D$D$  $ ǅ    MF9t)׉Ah)@lD1)@D@DX$(L$`d0044X4$X,  D$   $    ǍPD$9t$1|$ $    D$X<$,  D$   $    ǍPD$Zt$1|$ $    D$W`d04Xlh(|$$    D@T$($l4h004UWVSE  7w  tU0D$   D$$    gt$D$   D$ $GE$t& 0DD$   D$$    t$$   D$.hD$   D$$    D$
   $   D$$>D$   D$$    |$$vp>D$   D$$    v|$$J>D$   D$$    J|$$D$   D$$     D$   D$
   $   D$0L>D$   D$$    |$$>D$   D$$    |$$>D$   D$$    |$$\>D$   D$$    \|$$0>D$   D$$    0|$$6D$   D$$    t$$D$   D$$    T$$   D$tv L$qUWVS  Ct  Q   9IE
   E    (D$$   5D$4$4$$>  ƃ<   ƃ1  ƃ4   ƃ3   ƃ2     D  Gz  11()كHǅ,    ݝ8t$ $ tD$    T$L$t$<$  q   NF*  t& J  =}t&   =~t& f  $   v {v    =     t& ~v"  =   7  suD$    D$ED$$+    EكLٞ  ݝ8ǅ,   =   6    =   :ƃ2  >  P D$   t$T$D$D$$2     et& ftntcv n1  ΋+  -C  fD$ED$D$
   D$    $    jD$   D$$    fD$D$    $   D$D$Xƃ2  ǃ      ƃ0  nD$
   D$    D$   D$$*  26D$   D$$    t$D$    $   D$ED$D$
   T$D$    $*     M   E8  ƃ=  D$D$D$D$D$D$D$     $3  $    ǅ,   $$    ƃ0  6D$   D$$    t$D$    $   D$(G:lH:B\I:BLg  (=
 (DPr<+	  <-l
  ƅC 0	w0	vc
  l?  bA
  Ⱥ
   ƅBƅA 8fq
  8 9  JD$ED$D$
   D$    4$  E  CBA3     1     2  3ǃ      `ƃ3  5؍6D$   D$$    t$D$    $   D$Eݝ8((A8-ax &RD$   D$$    h0   t?   t68D$   D$$    3D$    $    D$;8  tC2     pD$   D$$    D$    $    D$3   tUE	tEU싃 9)  )ǋt44ƅ{ <~G11ҋH:uI:Au   94։{t
     2   t
{ W  4D$D   $"  p4~11ɋp1D;4u惽,{  ,u
4d  4ƅ3~)p1UMD 3;4u߀2     8  u
     ƅk 4ƅS T4  kpǅ|    ƅR M$LT$	RFV|D49|  ~0 uދ~c  LV(H9N,tSD$   <$kҁ     	9tT$D$   <$  F,F,#ED$|$$   s  F(;E  ŰEȉVFEF4    F8    F(H   H     T9|t
4     |TN,}2   W    ǅ4   ƃ4  k ]p1ɋBx"BHDy;4u뀻0   G  Rk	  R S G  ݅8$D     8  kD$    $FS8EƅS9F(%   =   ?  l$D$   D$$    8LlT$D$$   D$2FV@LT$T$ $    D$ $aDD$   D$$    $t$ $   D$%   =     E;FŰN^X9PV8F4   d   ``\XdF4 V89d%wX9`   1҉~, F4    F8    U;VE|	;F,D$   D$$    LD$    $    T$D$}LU$    L$MEUFV|TLl8RD$   D$$    tt$ $   D$L?D$   D$$    D$    $    D$<   uQ33$DƅR KVMF3E1	CƅCDA$    v yHT$ $   D$vD$    $
c8&D$   D$$    D$    $    D$ǃ8      1zc<0 |   ƅB A4pB(%   =   k
   ƅB 뾃ƅAED$D$    $   UE%   =   t=   lƃ2   `$    D$   D$$    D$    $    D$Z
   ƅBUM
H$  D$   $    ƍD$)t$D$    $   D$-D$  D$   $    ƍLD$t$D$    $   D$j$Ë$ÐU8EЉUU],b  EEu}z2UD$$D$T$*  9wsU   B,9rEUЉE܋E׋U}12z]u}]Ð&    UWVɉEUE    t1v UE"	E9uE^_]ÐUWVS<}Ga  }$  EE   7 ErMDA u<-   E     D$    UT$Mԉ<$L$\MԉEU19u`}tntgD$}<$=tQEE   E    E    0>uKEUMQE؃<[^_]Ë}ЋE    t\"tPE   E؃<[^_]ÍUUD$U$u4EUMQME؃<[^_]E   MgqD$0   E$ntF<D  <i8  <B      E   G<5wE   8}	E؋E8 ME   ҍE   ÍE   봍E   륍E   1뒍E   fk끍E   \oE   J]E   8KE   v9  E   xD$kD$xD$k   $~E      ~BU(]J^  uD$    $  D$CƉD$ED$E$4$]0]uE]ÐU]  E]@  Í&    U(]gú]  u}  $E$9u{tje 	EtxDD$   D$$    Ƌ@  ta$  t$D$D$E$D$]u}]ÄE    tyuEwЋD$Et$$D$;멐U1S$UTç\  @t	EEED$ET$$$   $[]ÐUWVS}ET\  uPU@ xet& m4$|$D$
   D$    "  U04$|$D$
   D$       щ	uE[^_]Í&    m4$|$D$
   D$    @"  U0   (
4$|$D$
   D$    x   щ	umE -E[^_]ÐUS_[  $$t:8 t5E$D$    D$
   D$E8 u$[]Ít& $
 []ÐUEZ  t ]Í&    H   ]Í    UUfZ  tE]Ít& EH  ]Ív UE$M0ÃZ  |$}t$t6ʃҍr11z$t$|$]Ív H  &    U]Z  uu}ǋ $$   E  tHFBFBFBFBFBFBFBF B E]Ћu}]ÍH  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]*Y  uƉ}D$   D$$    b9t
]u}]Ãu捶        UWVSzX     EEUMe   U1҉E}EwMfE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$Ҿr  t  z  }uHt& v>U       B[<!w&    9u֍    E؉$]U$u E>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EOBUM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUUƍE    t!t& M9MvUEM1u<$û}EEUE    E    E    E7E  E   }E   E}  E   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$ȹEE 'E   UE   E ;E "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋} S  v U(}}]aôP  ut?蒶UMƋ |$ED$E$EU]u}]Ív H  빐&    UWVSMP  ,EUM&E EEE  U;  rlփ.    9         D$  $    D$    )ȉ  T$$肶  EUE  0xT$E܋Ut$<$D$T$9w[pU䋃  4ЍH  9t<$蒶  E4$)  UǉBEU܉t$<$D$ET$D$PEU,[^_]$           H蹴          UVSkþN  @UuԋH  EԋL  E؋P  E܋T  EX  E䋃\  E苃`  E싃d  Eh  T$4$D$   EU14$@[^]Ð&    USN  ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USE6ÉM  $    D$ED$[]Í&    '    USELM  UH  M[]    USM  E$    D$[]Ðt& U(]L  u}ɲUE T$UD$    $    EET$D$x<$  U|$T$ƋE4$D$ED$EU]u}]ÐUSEIL  D$   D$E$d[]Í&    '    USL  E$    D$[]ÐU]K  uu}Et$D$E$y蚱 t؃t]u}]Í&     v 뮐U}}]dK  uw'<$  E6Ƌ <$EWE}]u}]ÐUSE	K  D$E$贱t[]f+  t& '    U]EtJ  uu$t$/t
]u]Åt  UE}}].ÁJ  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅b  fU]
J  uu4$6t
]u]Åt'  &    U]wI  uu4$Ut$T$$胱]u]ÐU]7ÊI  uu4$f4$D$]u]Ðt& U]JI  uu4$t$D$    $]u]U1҉Muu]H  9w*΋EL$$\t]u]Í    t
  &    U1҉Muu]GÚH  9wΉ$ðt
]u]Åt  t& USMUVH  ɋt"=w#D$$[[]Ðt& u@c  UWVS
H  ,EكL  }EfEmUmu܉uV$كٞ   ٿ   mUmUR$ɃEɚ;M~F9E	׍ 6eĉELƍEE؉tEEɚ;    D$    E؉$t<tȅft,[^_]ÐڞrG;,1[^_]؍D$D$D$:   $语U(]GÚF  u}}v     ƍED$E$UU1;Utt@كLɹ   ٞz"u tɋE]ȋu}]Ív >"1ɀ: uڐ붐Uщ4$1҉Ɖ|$89s4$   |$]14$|$]Ð&    UWVɉEUE    t1v UE	E9uE^_]ÐUWVS<}gE  }$  EE   Ԭ7 ErMDA u<-   E     D$    UT$M؉<$L$茭U؉E29uSMtatZD$M$`tDEE   E    0>uEEUE܃<[^_]ËMԋE    tV"tJE   E܃<[^_]ÍUUD$E$u.EUME܃<[^_]E   UszD$0   M$褪tF<D  <iD  <Bf      E   G<5wE   M	E܋E8 ME   ҍE   E   벍E   뢍E   A1뎍E   f{zE   ihE   WVE   EDE   v /  E   D$kD$xD$k   $訩E      ~BUS,B  $   "[]Í        UWVE҉Ut4UEUUEREE҉UtEu}9u؋E^_]Í&    '    UWVSA  ,D$   $    D$&D$   D$$
E E   UE    E    UIU䍃D$D$   T$$軧EEEUEUUEtDEtEu}9uU䍃D$D$   T$$Y뢋B;Bs 
B,[^_]D$
   $捶        U(]Wê@  }u}}   D$   D$$    ֧ǋE$   D$	D$   $    ƋED$|t$|$D$    $    D$褨]u}]ÍD$   D$$    Y끍    '    UWVS?  ,E$蹧UE2E   UE    EE UEEU4EEt[ED$U4$T$[uω4$O;EtL}t&UtUuu}u9tE떋EE뎀} tEE,[^_]ËEEE,[^_]Ðt& U(E]>  uu}}D$E4$|$D$x
]u}]ÉD$Et$$E|$D$E$UUWV1S,Ee>  M}EtЃEBu  |$EL$D$   D$D$U$bD$   D$$    DD$  D$   D$D$E$HD$   D$$    UT$$Σ	wPuD$   D$$    轤t$D$   D$U$貤,[^_]uD$   D$$    tt$D$   D$E$i,[^_]ËuD$   nuD$   뤋u\D$   Eu8D$   xuD$   u)D$   LuD$   uD$    |$ED$   D$D$U$|
US$EED$E;  D$ED$ED$E$T$[]ÐUS\ï;  D$   $    xD$D$    D$D$$=USO;  ED$   D$    $[]ÐUWV(UEu}U܋M܉EE         ׉ƋU؉E܅UEu"9wN  EƋEt& ;}v;11&    ȋMt؃ ڃ(^_]Í&    ЋU1Ӎv ǃE       +EME׋U	ǋEMMM	ЋUEUԉ9Uԉr;Utm1dt& ؃ U]؃U ]E&    9}w	9u   1       1EM9vO1UWVP}EUE    uE    EUE    k  MN  M҉M܉E؉Uԉu}u(9  UE    M܋EUQE9Ev6uU}MUMt& Eąt
]U ]EUP^_]fEԃE       U+Eȋ}؋uEEM	EMЉUUM	ЋUMuU9U   ;U   M)щMMȉEMM	EUUEE܋MH0U؅t>E̋UE&    EU؃ ރ E   1u؉봋M9MwE9EsEỦEUŰM+MUԉMU91)U'UWVEU}EE҉։Eu9   ȉ^_]Ðt& 9   Et    U+EME	EUMEEMM	uщǋE9щƉUro9t^1yEt2ƋE^9w*U9Us"f11G&       1uf   1$EM9vO1
U]Ít& '    UWVS6  ǛE)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1SZí5  tD$ED$    $聛[]ÐUSo5  贝US $ $tЋu[]US    [$5  Y[                                     standard input closing %s (fd=%d) %s==> %s <==
 write error error reading %s %s: cannot seek to offset %s tail.c valid_file_spec (f) %s has become inaccessible f->fd == -1 %s has become accessible cannot open %s for reading cannot fstat %s beg 
Report bugs to <%s>.
 bug-coreutils@gnu.org /usr/share/locale -- b number in %s is too large bkm invalid number of lines invalid number of bytes %s: %s --follow %s: invalid PID %s: invalid number of seconds Jim Meyering Paul Rubin 5.97 GNU coreutils tail c:n:fFqs:v cannot follow %s by name %s: file truncated no files remaining cannot read realtime clock descriptor max-unchanged-stats pid presume-input-pipe quiet retry silent sleep-interval verbose help version   %s: cannot seek to relative offset %s   %s: cannot seek to end-relative offset %s   %s has been replaced with an untailable file; giving up on this name    %s has appeared;  following end of new file %s has been replaced;  following end of new file    %s: cannot follow end of this type of file; giving up on this name  Try `%s --help' for more information.
  Usage: %s [OPTION]... [FILE]...
    Print the last %d lines of each FILE to standard output.
With more than one FILE, precede each with a header giving the file name.
With no FILE, or when FILE is -, read standard input.

  Mandatory arguments to long options are mandatory for short options too.
         --retry              keep trying to open a file even if it is
                           inaccessible when tail starts or if it becomes
                           inaccessible later; useful when following by name,
                           i.e., with --follow=name
  -c, --bytes=N            output the last N bytes
   -f, --follow[={name|descriptor}]
                           output appended data as the file grows;
                           -f, --follow, and --follow=descriptor are
                           equivalent
  -F                       same as --follow=name --retry
    -n, --lines=N            output the last N lines, instead of the last %d
      --max-unchanged-stats=N
                           with --follow=name, reopen a FILE which has not
                           changed size after N (default %d) iterations
                           to see if it has been unlinked or renamed
                           (this is the usual case of rotated log files)
        --pid=PID            with -f, terminate after process ID, PID dies
  -q, --quiet, --silent    never output headers giving file names
  -s, --sleep-interval=S   with -f, sleep for approximately S seconds
                           (default 1.0) between iterations.
  -v, --verbose            always output headers giving file names
         --help     display this help and exit
          --version  output version information and exit
   
If the first character of N (the number of bytes or lines) is a `+',
print beginning with the Nth item from the start of each file, otherwise,
print the last N items in the file.  N may have a multiplier suffix:
b 512, k 1024, m 1024*1024.

  With --follow (-f), tail defaults to following the file descriptor, which
means that even if a tail'ed file is renamed, tail will continue to track
its end.    This default behavior is not desirable when you really want to
track the actual name of the file, not the file descriptor (e.g., log
rotation).  Use --follow=name in that case.  That causes tail to track the
named file by reopening it periodically to see if it has been removed and
recreated by some other program.
 %s: invalid maximum number of unchanged stats between opens David MacKenzie, Ian Lance Taylor   warning: --retry is useful only when following by name  warning: PID ignored; --pid=PID is useful only when following   warning: --pid=PID is not supported on this system  warning: following standard input indefinitely is ineffective   %s: cannot change nonblocking mode    ?          pipe_lines recheck xstrtol.c    0 <= strtol_base && strtol_base <= 36   s#̠۠#5xstrtoumax C _POSIX2_VERSION " ` literal shell shell-always escape clocale  xxZ<֫֫:.' ԬԬԬɬԬԬǭԬԬԬԬԬԬԬԬԬԬԬɬȩȩȩȩȩ                      xnanosleep.c 0 <= seconds   (knNxnanosleep  ?kҼzҼxstrtoul Valid arguments are: 
  - `%s' , `%s' invalid argument %s for %s ambiguous argument %s for %s %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
    
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 zdN8%memory exhausted                                Copyright %s %d Free Software Foundation, Inc.  ;0  E   `L  h           0  p,  P  p  Ш      л  о$  @D  ``  p      0  `     8  \  |  P  `    `   $  0@  `\  x       0      @(  L  p  P      P    0  P  pp           p	  0	  P	  l	  0	  p	  @	  0	  
   8
  pT
  p
  
  
  
         zR |        Z    AB
G   8   P4    LD
       T   t    AB
FHQ     x   X    AB
A      $    AD
FP           AB
AJ           5   AB
FHN         <3   AB
AD         X/   AB
I   @  h   AB
F,   `  8   D 	FAB
CL            AB
TW        ?    AB
AF      ķ   AB
F     e    AB
FN          AM
       0     AB
FQ      T  F    AD
D   p      AB
F     m    AB
A     L*    AB
        `-    AB
         th    AB
ISI            AB
FNF     ,  ,Y    AB
B      L  lT    AB
FNE     p  
   AB
C      h    AB
FFN          AB
C     T    AB
B       +    AB
A     +    AB
D   ,  -    AB
D   H  2    AB
D   d  4*    AB
A     H+    AB
A      \    AB
FQ        2    AB
D     +    AB
A      o    AB
FNF        \X    AB
FFN     @  5    AB
D   \  @    AB
FQ     |  ~    AB
IFP       89    AB
FN      X?    AB
FN      x;    AB
FN       @    AB
FN       Y    AD
NF    @  L    AD
NF    `  (M    AB
D   |  \i   AB
C          AB
FQ        (H    AD
FH      X?    AB
AF       x   AB
F      H$    AB
A   <  \R    AB
E     \  4   AB
C    |      AB
FU        h    AB
C      8~    AB
INF        a   AB
BF        B    AB
D   $  [    AB
A   @  X3    AB
A   \  |   AB
E     |  
   AB
E       #   AB
E                              _                               c                    n                                          q                      q          s           v           ~
        }                x             
   oh   ؅   
                      8&              8      X         o`o   o؈                                                                    H                        @%        .>N^n~Όތ.>N^n~΍ލ.>N^n~Ύގ.>N^n~                               L'   'tail.debug  vv .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  @                +           0              3         ؅                    ;   o   ؈                  H   o   ``	                  W   	      	  X                `   	      88
                i                             d                           o           xa                 u         q                    {         @@q                             	  4                          DD                             $                              $                             $                              $                               @%@                           &  0                          8&8                             '   8                           `'X  H                                X                                  h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ELF              4   H      4    (      4   44               4  44                     @E  @E           @E  @@             TE  TT               H  HH              Ptd?  <  <        Qtd                          /lib/ld-linux.so.2           GNU           	      ;           =
;   =   A   (;cK8fUa,y2!cr                E      I            g                       T             1      &                                                    `      F      0             j                   2           v      %      2      `           <                         -                  !                y      f      l       I            e     )                               G      !      >      q      @            W      R           K      F            P                         :      F       F           v                         +      S      k            _     Y                               F      L      L      4      r      F           1                  2                  =             g       :                 W       B             >      r            E      T                   >  ,                      $        (             P         s  `_     v          0             __gmon_start__ libc.so.6 _IO_stdin_used fflush __printf_chk _IO_putc setlocale optind fflush_unlocked pipe dcgettext error_print_progname signal sigprocmask __stack_chk_fail unlink realloc abort stdin _exit memchr getpid kill error_at_line feof calloc strlen sigemptyset __errno_location dup2 __fprintf_chk sigaddset stdout fputs memcpy fclose malloc __xstat64 getenv __ctype_b_loc optarg stderr error_message_count getopt_long execvp error_one_per_line fwrite fread sigaction mkstemp64 waitpid strerror_r vfork __vfprintf_chk fdopen __sprintf_chk fopen64 bindtextdomain _IO_getc strcmp __strtoull_internal __libc_start_main ferror __overflow GLIBC_2.4 GLIBC_2.3 GLIBC_2.1 GLIBC_2.2 GLIBC_2.3.4 GLIBC_2.0                                                                                       ii
        ii
        ii
        ii
        ti	        ii
            A  $>  (?  ,;  0D  ,  0  4  8  <  @  D  H  L	  P
  T  X  \
  `  d  h  l  p  t  x  |                         !  "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1  2  3  4  5   6  7  8  9  :  U  h  C%   5$%(    %,h    %0h   %4h   %8h   %<h    %@h(   %Dh0   %Hh8   p%Lh@   `%PhH   P%ThP   @%XhX   0%\h`    %`hh   %dhp    %hhx   %lh   %ph   %th   %xh   %|h   %h   %h   %h   p%h   `%h   P%h   @%h   0%h    %h   %h    %h   %h   %h  %h  %h  %h   %h(  %h0  %h8  p%h@  `%hH  P%hP  @%hX  0%h`   %hh  %hp   %hx  %h  %h  %h  %h  %h  % h  %h  %h  p%h  `%h  P1^PTRhhQVhП/US    [PF  tX[ÐUS=8 u?L-HX49v&    4H49w8[]Ít& '    UPt    t	$PÐUUt]<9t]USӃt4D$   D$$    \$D$    $    D$   D$   D$$    ]\$D$    $   D$A          UxUT$D$$   C1҅uE%   = @  ɉÍt& USÃ$    CCC 
[]Í&    USÃD;@tHBD[]Ív u0@   @D$H$Y  DH볁w
@  t& UWVS=@ tl111t& 9<`tƌ   tGuヾ`ti   ƌ   D$    `D$`$ut& [^_]Ð&    UD$    D$`$`Ív '    US$D$   D$$    W\$$[]Ðt& UT~TD$
   $Lt
L$Ít& US<u[]\$$$   Uu1n$       '    UuƉ	]u
]u]Åu!uָ<~ttD$   D$$    *\$t$$    D$  M    '    U]Éu0\$D$t$$      t& U($M
tu($uD$   D$x$    to
UVSơ($ËDX t
t/ܡ($0u	[^]D$   D$x$    fUSӃL$T$D$   $9u[]D$   D$$    t& UL$]uΉT$D$   $Zt؋u]]É4$ptD$   D$x$    @;t& '    U   $Ét$@rƋCCCC 
$t$]Í    '    UVSÃfCt.SCD$
   $)ЉD$WCuЉiu΃[^]Í&    '    UWVSMFE    VtG^$D$
   )ЉD$Fu+]ME/u[^_]ËME+U[^_]&    U$buøfUSÃT$$;t[]Év '    UWVS\ Ee   ]1ۉUM1,$%   D$%  ,$R  s@q}@etnt&    &    3  
&    t)dt& 끃vu'    k
uHCw$ &    +G    ;dtt& 0
tSb    tt& ltf녃ltr    qt& {L  LD$z$PP6  d  l  b  Ud  rY  bP  UP9   }       ;8'  fkD$    D$$1x͋19 LTPډ
P   WuԡP   ]e3     \ [^_]á($q   D$   D$$    8 8UUq   e1^UUB   6MtA}  ]D$ǸD$   L$DD$$D$
PU@EtC}i  ]UD$\$DD$PL$D$   $a
PU$e  $
$O  \$D$D$D$   $$$D$   W`\$D$$    
$tË1  `T$D$    $   LD$z$5P<AUPD$׸T$L$D$   $D$D$   L$\$$
v LLǅ    $D$$?8~$`D$    D$$   ;t& '    UD$   D$$    D$D$    $    D$  -    '    U(u:]}u:F   ҉u]u}]Ð$  4$E=ǋE$04$Eu  1E    8 uLMDЉ$v  |$t$É$;/EUD$E$D$m|>/U뢸d
U,$u,$LuøD$   D$ $    t& '    L$qUWVSQ  qe   E1    D$$   D$$"$"$   $,\t39D$    D$D$t$$  B@wt& $H11>뫸D럸G듸M0zyk8\;MA|>Jm/P^ 048^4D$   D$L$    D$   D$$    \$D$D$|D$a$   D$1Ue3     Ĩ  Y[^_]aøv0Q D$   D$$    (\$1$   D$RD$   D$$    D$|$   D$ܳE&    D$   D$$    D$$   D$t=8 u,$
   D$8ָn0H\D$   D$$$    9D$   D$L$    \$D$m$   D$?
q )ЃtT  T4$  ~á x؅   Lh1ۉp D{l{zt4fxf\ O B1;   $d`$dD$;u011i   4`D$    `D$4$`tǌ   uD$    $   a@$  $D$   $D$
   $,D$\$$    <gTT)  Tp  =t   =3  
   ,D$    D$$   $D$$B|  |؍Kp>t-ǅ   ǅ   ǅ   At$\$$k;   *  )D$
   )؉D$$;Ɖ)9w1ۋptuxj|_8t&   5TD$    T$$xT    LtL$L      G2  U  q     ǍD$D$    D$
   $   Ë11	      8,   D$    D$
   T$$jÉ։x_``dd11	u:u48 u)9}<ctW<i   b   
   
   a$E
,x\$T$D$lD$T$$hQl=8 tCx렋Tȹ
,뵃=t   1Ҹ
   ,D$    D$$   i$+tD$   $P$HD$ $8~$vtn=8      D1HD$ $H <t11$?۹EoUU
Єu,
t"/fu
/ttЃ
u]À8/u]BÍ&    US]$Nv+|/Ku!@    </u
Bu[]ÐU _   Ð&    UWVSEU}EU    5$\$$   D$hD$   D$$   L4$t$$   D$0D$   D$$   Utt
GxG  gUUE[^_]r 5$\$$   D$D$   D$$   4$t$$   D$D$   D$$   f$UVSӁ0  Ee   U1҉L$D$   D$$$uD$B;B    
B$$\ucEe3   u_0  [^]fD$   D$$t&D$$D$D$   $xӉ4$-HD$
   $jv UVS0]ut95tq5,$toЅt%$t$\$D$D$   $dEMEU$E}0[^]Í    9t\$$[rԐ D$D$   D$$$ht& U(,$tЍEMEU$Eá D$D$   D$$$뿐UtD$   D$$    sD$D$    $D$Q$   ut& UED$E$tf{t& '    UED$E$tfKt& '    UE$tÉ'    U]Ít& '    UWVS^   U%   E )E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUS@@tЋu[]US    [ü$  Y[                     Try `%s --help' for more information.   ed:	Edit then use both versions, each decorated with a header.
eb:	Edit then use both versions.
el:	Edit then use the left version.
er:	Edit then use the right version.
e:	Edit a new version.
l:	Use the left version.
r:	Use the right version.
s:	Silently include common lines.
v:	Verbosely include common lines.
q:	Quit.
   subsidiary program `%s' failed  subsidiary program `%s' not found   subsidiary program `%s' not executable  cannot interactively merge standard input   Usage: %s [OPTION]... FILE1 FILE2
  Side-by-side merge of file differences. -o FILE  --output=FILE  Operate interactively, sending output to FILE.  Report bugs to <bug-gnu-utils@gnu.org>. If a FILE is `-', read standard input.  both files to be compared are directories   -i  --ignore-case  Consider upper- and lower-case to be the same.   -E  --ignore-tab-expansion  Ignore changes due to tab expansion.    -b  --ignore-space-change  Ignore changes in the amount of white space. -W  --ignore-all-space  Ignore all white space. -B  --ignore-blank-lines  Ignore changes whose lines are all blank. -I RE  --ignore-matching-lines=RE  Ignore changes whose lines all match RE. --strip-trailing-cr  Strip trailing carriage return on input.   -a  --text  Treat all files as text.    -w NUM  --width=NUM  Output at most NUM (default 130) columns per line. -l  --left-column  Output only the left column of common lines. -s  --suppress-common-lines  Do not output common lines.    -t  --expand-tabs  Expand tabs to spaces in output. -d  --minimal  Try hard to find a smaller set of changes.   -H  --speed-large-files  Assume large files and many scattered small changes.   --diff-program=PROGRAM  Use PROGRAM to compare files.   -v  --version  Output version info. read failed write failed fclose TMPDIR /tmp %s/sdiffXXXXXX mkstemp --- %s %ld
 --- %s %ld,%ld
 +++ %s %ld
 +++ %s %ld,%ld
 fork waitpid standard output /usr/share/locale diffutils EDITOR diff -a -b -B -d -E -H -i -I --left-column -t sdiff %s
%s

%s

%s
 -W -w %s

   %s
 --strip-trailing-cr abBdHiI:lo:stvw:W missing operand after `%s' extra operand `%s' --suppress-common-lines -y -- --sdiff-merge-assist pipe fdopen diff-program expand-tabs help ignore-all-space ignore-blank-lines ignore-case ignore-matching-lines ignore-space-change ignore-tab-expansion minimal speed-large-files text version width --help  Output this help.                   * ٚȠԠ)8GVbqWritten by Thomas Lord.                             Copyright (C) 2002 Free Software Foundation, Inc.                         '        t   3           8        W   I        B   \        i   h       I   ~        b           E   R        l           d   	       o           H              ݹ        s           a   ƺ        v   κ       w                                   ܳ(p0p \̷TԺ                      
   (GNU diffutils) 2.8.1 Unknown system error : %s %s: %s:%d:  %s:     This program comes with NO WARRANTY, to the extent permitted by law.
You may redistribute copies of this program
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING. memory exhausted  ;8  &   P  h  t      d    $  d(  @  \  t      D      t(  H  $h        t      0  \  t  D  d           d8  P  h          |            AB
   0      AB
A    L   0<   AB
   d   p)   AB
A       {   AB
A           AB
AG      &   AB
      ;   AB
D        <   AB
     `@   AB
D    $  #   AB
   <  Г   AB
FI     \  `;   AB
FE     |  Q   AB
      n   AB
E        pL   AB
A      e   AB
M        0C   AG
FF       R   AB
AC      0     AB
ACF      T  p   AB
   l  &   AB
A      e  AB
AJ     0C   AB
        AB
FQ     pU   AB
(     П  D 	FAB
D   $  `I   AB
   <  L   AB
D    X      AB
   p   W  AB
F         AB
AC          AB
E        `_   AB
     [   AB
       %   AB
     P%   AB
   0  %   AB
                         ؋
   Xoh      
                                       ؉   0         oho   oڈ                                                    T        &6FVfvƌ֌&6FVfvƍ֍&6FVfvƎ֎&6FVfv       sdiff.debug zUf .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  P                +           `              3                            ;   o   ڈ                  H   o   hh	  p                W   	      ؉	  0                `   	      
                i         ؋                    d                           o           !                 u         XX1                    {         1  ;                           ?  <                          @  H                          @@E                             HHE                             PPE                             TTE                           F                              F                            G                               G                                   G                                  0G                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ELF              `4   Y     4    (      4   44               4  44                     HU HU          HU HHp  `           \U \\               H  HH              Ptd "             Qtd                          /lib/ld-linux.so.2           GNU           	                 !           |(CE+K8 
qX'|fUagS2                q      4                   !                  5            G             a      y                   8      k      `            *     #                       L                   S      1      B             ,                  V                           !                                =           D                         O            g                 I                              ,             -      I      f     E                             C      K      2            E                       Y     i                                                     =      5             *      ]     S                       <                   z      &                            <      n                 m            D             t                   -      I      b      =                          $            a                                         .      &                 R      G      L      ?      Q      =             <            A                            :            Q      F             s      p      U                       '            =      ^                              9      7      -           ^           z            "      b            <      9                                                            b            +                  x       J      @      N            o            _           h                                        _            x      X      J       t      ~      C                              N                                         Q     d      f      e      z      C      X            <                             ~            s      4      Z      o     W            B            2           `      .                  ,      2      W                        8                                   !      9                 r                   =      =      {                              	      $      r      %      n      /                         w      i       .                         z                        X     E       D                              \   ܘ     
 U        j  W     
        6        libncursesw.so.5 __gmon_start__ _Jv_RegisterClasses delwin initscr LINES has_colors curscr _init cbreak wattr_on wscrl wgetch scrollok wenclose mousemask nodelay beep napms waddch ungetch COLS wrefresh getmouse isendwin nonl stdscr mouseinterval wmove start_color noecho use_default_colors newwin werase keypad wnoutrefresh doupdate waddnstr curs_set wattr_off _fini init_pair libc.so.6 _IO_stdin_used strcasestr fflush strcpy __printf_chk exit execl _IO_putc setlocale iswblank towlower strncmp dcngettext optind getpwent strrchr wait regexec pipe perror dcgettext getpwuid closedir strncpy mbstowcs fork sigprocmask regfree sigfillset __stack_chk_fail unlink putchar realloc rewinddir stdin strpbrk kill chmod iswalnum __ctype_get_mb_cur_max strtok endpwent execlp strlen sigemptyset memset strstr __errno_location tcsetattr chdir mbtowc ttyname dup2 __fprintf_chk sigaddset __sigsetjmp stdout fputc fpathconf regerror strnlen memcpy fclose __strtol_internal __vsnprintf_chk malloc siglongjmp strcat umask strcasecmp __lxstat64 opendir __xstat64 getenv __ctype_b_loc regcomp optarg wcwidth stderr ioctl getopt_long execvp strncasecmp fileno chown getcwd __getdelim fwrite fread sigaction mkstemp64 geteuid waitpid strchr utime __vfprintf_chk mblen fdopen readdir64 qsort tcgetattr __ctype_toupper_loc __ctype_tolower_loc __sprintf_chk iswpunct memmove fopen64 bindtextdomain access _IO_getc strcmp strerror __libc_start_main ferror wctomb _edata __bss_start _end GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.2 GLIBC_2.0                                                                                                                                                                                                                  z         ii
        ii
        ti	        ii
        ii
        ii
         ,                    <  @  D  H  L  P  T  X  \	  `
  d  h  l
  p  t  x  |                               !  "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1  2   3  4  5  6  7  8  9  :   ;  $<  (=  ,>  0?  4@  8A  <B  @C  DD  HE  LF  PG  TH  XI  \J  `K  dL  hM  lN  pO  tP  xQ  |R  S  T  U  V  W  X  Y  Z  [  \  ]  ^  _  `  a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r   s  t  u  v  w  x  y  z   {  $|  (}  ,~  0  4  8  <  @  D  H  L  P  T  X  \  `  d  h  l  p  t  x  |          U	  	  课  54%8    %<h    %@h   %Dh   %Hh   %Lh    %Ph(   %Th0   %Xh8   p%\h@   `%`hH   P%dhP   @%hhX   0%lh`    %phh   %thp    %xhx   %|h   %h   %h   %h   %h   %h   %h   %h   p%h   `%h   P%h   @%h   0%h    %h   %h    %h   %h   %h  %h  %h  %h   %h(  %h0  %h8  p%h@  `%hH  P%hP  @%hX  0%h`   %hh  %hp   %hx  %h  % h  %h  %h  %h  %h  %h  %h  p%h  `% h  P%$h  @%(h  0%,h   %0h  %4h   %8h  %<h   %@h  %Dh  %Hh  %Lh   %Ph(  %Th0  %Xh8  p%\h@  `%`hH  P%dhP  @%hhX  0%lh`   %phh  %thp   %xhx  %|h  %h  %h  %h  %h  %h  %h  %h  p%h  `%h  P%h  @%h  0%h   %h  %h   %h  %h   %h  %h  %h  %h   %h(  %h0  %h8  p%h@  `%hH  P%hP  @%hX  0%h`   %hh  %hp   %hx  %h  % h  %h  %h  %h  %h  %h  %h  p%h  `% h  P%$h  @%(h  0%,h   %0h  %4h   %8h  %<h   %@h  %Dh  %Hh  %Lh   %Ph(  %Th0  %Xh8  p%\h@  `%`hH  P%dhP  @%hhX  0%lh`   %phh  %thp   %xhx  %|h  %h  %h  %h  %h              1^PTRh Wh0WQVh ~US    [àC t~X[ÐU= tҡuÐUXt    t	$XÐU] Ít& U]    ÐU]Í&    '    UED$/   $t  Í&    '    Up$Ȉ "* fUWVSEE$6  %P  $6  |$UT$$t t}    ;]   =    %tMtm4    ;]tU0$x6  %t0$]6  $c9sR;]4    u뢋D$   D$X$    4    $V dD$   11D$X$    $( 6   [^_]ËE$E! 1[^_]á$5  $        U]u5Y 8 tU%u6Tt$$    D$9tN]u]$h( u]u]D$   D$7X$    $6 붍t& tT\$$   D$;uuD$   D$X$    _$ `&    '    UWVSL  U 
9   VUUU$D$    D$    )ډT$ $p$o ơ$n U}EѺs+M9MK  T$\$D$QXD$D$   4$$%EA  %e  $  D$   D$X$    t$0D$,U\$ |$$D$XD$T$(D$ D$D$D$   $    D$z 4$d$W    ^   G     b  &    j  &          L[^_]Ðt& D$$    n %ED$   D$YX$    %Et& D$   D$fX$    $}D$   D$pX$    ZT8 tQ%t   T$$ 
L1[^_]f    8 D$   D$X$    $螐 L[^_]Ðctnr5$   p5$   T$    D$mm L   [^_]D$$    Gm c5$벍t& UVS-t]tu^T: uZ$D$l TT8 uZT\$$    D$%59tD[^][^]áT$$l T8 tD$$y 딄tTt$$   D$;5uuD$   D$X$    $
 jt& UWVS         )ЃU$6k E    ۉEt1ҋ5(1uQu  D$    D$    $8E;  (  11EE      = @  k  UċE   D$D$XED$D$   $U$ډ|$)¡ T$$tEUD$ T$$E;  s+ 9~1u	U t$|$$*EE9  (E9  U $-  \$D$    D$    $芁 ËE;   t$|$D$ $r  t$|$$t D$\$$$UT$U E$   D$tE%   =   EUD$$   D$|uE%   = @  t[Uf--B t& D$    D$ $HD$    D$ $D$   D$X$    2UT$D$E$,UE U$ $Č   [^_]Í    |P=  vI t& $|f= v v\ t& |=?D$D$XD$D$XUD$D$   $

D$D$Xv '    UE]]uuD$\$t$$R| ; u
tv
]u]$Y      t& 
               볍    UWVS1ۃ     E$tDuJ:Buv:Atԉ$d ; v9vУ 뫋U1$ 
$f E$EU$R   ;=s}ur:Bu
v:FtȐ4$    UUD$e Et$D$XD$D$D$   $fE=$; } = 
    [^_]Í&    '    UWVS   $]uD$T$    e $    Xqn p$z $m%$EE E         $W/  $D$kc t$`$D$ D$   D$$G`$U t& 5ۉt1ǋE   L        s  &            F     0     t&   $   v $    H(1҉HH)HH9ЉHr
Bt&  u]t$\$$P t$\$EE$}1)m $      $   `Tt
$`$bX$TD$$
#     [^_]Ã\    w  =  *EЉ$CEԉD$E؉D$ $  ]؉\?  1ҋ
uԍ\ ]كL5(P(PLPLP9Σ~9  9\JD$    D$    $
    )  m  X:  X:B  X:B  X:B  D$   D$X$    $o t& $   XD$   D$X$    XD$ D$    D$    T$$   D$D$-  $    p$v    #  XD$$` XT$E%  8/tb`$áT$<$DD$^ D$XD$D$   ǡT<$D$`D$0D$    <$-  i  <$ M   $G5TD$   D$X$    S\$t$$ς <$f6g     D$    D$    $   试 TD$X$_ X9f)މ51҉
(5(
95      W/N} D2D$    $B,  Z  pD$$   D$t3E%   = @  =  $  y $ơD$   D$X$    t$\$$/ ~e39RG97F*}      謗  $    \D$   D$Z$    
\$$荀 <$\D$   D$Z$    \$$R &    kvD$   D$X$    $ XD$$] X1)Ɖ5$ED$ED$   $: `$D$$  X`$D$\ áD$$R  $    D$_\ &    US   E]$   E\$D$$   5tE%   = @  trE$\$E$   D$tE%   = @  t<E$$   [ ED$  $EtE$Z D$    E$(  t'Et$y\$    D$`[ EEt&$2tD$E$kĄ   []f_E$$Ą   1[]ÐU]Ít& U]Ít& UU]9Í    '    U1}]fUU   vvB ]]   Ðt& UE] 	ЃÍt& U@   E<
t<?t@]U@   U
t
?tB@]Ít& UW}VS];]r278u2t'؉
tQ8Ptt
9]v1ۉ[^_]ÉUU w (=  w	t& ]1Í0v=  ]ÐU   = uD$    E$    D$ɃÍt& = Uu]   ]&    UVSut.P    ZtAt[   ^][1^]Í    '    UWVSu]}9s	+9w$tD$<$t߃[^_]Ã1[^_]Ív US$]= t0L\$D$E$	x(E$$[]$$[]D$    D$    $    E  볍t& UWVSE9Er:.u8]
t.ы;ttmu9uvE    E[^_]Ív U   (= uiD$ED$E$#x%E$uE  $  D$    D$    $    E  붐U(= ]]uu}}tU\$D$E$x[E$4$D$y/D$    $    v       $I]u}]D$    D$    $     [   D$   4$D$봍t& '    U(= ]]uu}uItE   t%<	tv$[   E    ]u}]4$D$\    u   t~129uUt>	u/fE1ҋ5E3)щ닋U   {4$tI6$T UUT$4$D$ƋE4$U؉4$7&E4$aU؉
D$       $    p!&    UWVS,u= ]   $T E\$D$E$@E    > tVE v ߀> tDD$    E4$D$D$ËED$E$xDE8EuE;EuE$<>,![^_]4$D$\,[^_]D$    D$    $    EED$    D$    $    `EE    '    UWVS]= }t91; u&Ã; tD$    D$    $
9uڃ[^_]É}][^_]!    '    UED$$wÐt& UWVS,}= uT  $7R E$'R MɉE   ? uy   D$    E4$D$XE؉D$UE$T$31҅  8   E$ËE$9   mtz}Ԁ? tqu؀> tiD$    E1ۉ<$D$EԉD$U܍E$T$MD$       D$    $    UEE܉$U$E$ËE$,)É[^_]Ív Et$<$D$,[^_]Ðt& D$    D$    $    U   EUED$D$E$ Í&    '    US]ED$    D$    ؉$[]ÐUVS]= uu3u][^]\$4$u $D$    À; uك1[^]Ã[^]
UWVS,=   9$O E)$O E܋EE8 G  U:   rD$    E܉4$D$D$U܉ǍE$T$1҅   8   E$3ËE$&9   >   UUD$    E1ۉD$U$MUEԉD$E؉$D$(QD$       D$    $    UE"D$    D$    $       8ӉE4> tiD$    U$EEE8 E؉$U܉$E    t& ED$U$EE,[^_]ËE؉$U܉$E,[^_]
UWVS}u)É)D$    D$    $9w)߃[^_]Í    '    U]]uu}}= tB; t\$<$uG9t)\$4$h0; u9u1]u}]É]]}}uu]
UWVS<u=    V$L EF$L }u܉E؀?    D$    EԉD$U܉$EЉD$EԉD$E$E    D$    E؉<$D$D$U؉ÍE$T$1҅   8U   ? t,;uta+ut$U$;U}4u܀? NEԉ$U؉$t$ED$U$hƃ<[^_]ËE1$sU؉$h<[^_]ËE$E̋E$9EQEED$    D$    $    UEED$    D$    $    u   EUS$]= t5|\$D$E$9x3E$$[] P$[]D$    D$    $    E  먉'    US$]= t5\$D$E$x0E$$[] P$[]D$    D$    $    YE  뫍        UWVS]= t[Z$I ; u11v ; tD$    |$$<$t׻   <$N[^_]É$؉[^_]Ít& '    US$]= t5\$D$E$x3E$*$[] P$[]D$    D$    $    6E  먉'    Uuu]]4$U   u0҄u]Ћu]É4$]u]ЉÍv U(= ]]uu}}u   ]u}]Ðt& \$D$E$|x]$u=D$    D$    $    M[   D$   4$D$넉\$4$0nD$    $        Ov Uuu]= tY${G ËE$D$xE$9uID$    $        ]u]ÍE   D$   D$$    nG É؋u]]UWVSEtIExt2   9ωt:R9t/9uA:BuBAIuՋE@Eu[^_]ÉqfUWVS,8҉E@8    U   [   ։tp5u   v [   ED$$u	CUB8}G8t͋Ur8tv NtVtFt?vu,[^_]$    E ~҃FT$V$T$B$    E ~҃FT$V$T$둋Ep8n҉UPE    .t& uE    t& E@EUR҉U   }   7[tҋUru/ύ    U=8B}G8Ex8uuwvtFÄu=8D$    D$    D$     D$F$#t=8}$    D FD$   $T$뜋F$bF$F    g=8w8}&]EG8    '    UVS7u[^]72ơ8X8u&ft@D$T$C$[tKfủ<҃fu붐U] Ít& US,t/$D$  8A Cks []aa []Ív '    U(]8us$t$D$CD$CD$$,D$跷  ]u]Í    '    U(]u8s$ES9wJ;st9D$    FT$t$D$D$$,J  8@ C]u]ft$t$D$T$D$$,  ]u]fUS$8X;XtAD$    CD$\$D$    D$$,轶  8@    $[]Ë$e\$D$뺍&    US4EUMD$ET$$D$D$    1> ED$$,D$ED$ED$ED$1  8? C4[]Í    '    U(uu}}]$= Eu,t$藈  ,    1ۄE    t&,t$iE
$       8x% ul%   th,t#   E$D$  E)E    u
%$ߋ]u}]c^ v {8@% uGp ѐt& |    l    $D$蟳  농    '    UD$   $    Ít& UD$    $   fÍt& UD$    $    FÐUWVSu}t\$u}[^_]&    UWVSEtbE$
   D$t<t?$$; Et$D$   D$$9v1[^_]Ã   [^_]ÐU]1ۉutI$5ƍ@$> á$D$e3 /.na@no_h@istof@ry@ ؋u]]Ít& UVS     x   gtrD$[$   D$  4$$D$uVq $t$$ [D$O  $4$c[^]áxtmݡ$D$;u듐t&  $5t$$ [D$  딍t& '    UWVS,rE   D$5[$   E    }E    uEf\$D$
   |$4$ |LtAU|
t%L$$8 ED$E$W  뵐t&  u2v E뗉$E$(E܉$,[^_]ËU ftځ%$$$XD$E܉D$  D$   D$]$    
D$   D$$t$
ue'    US]D$/   $t1:/[]Éڃ[]Ít& U$   ]uu}}_; 4$|$Q7 t$$    < &uubfE8 t88C    C   BCEZZ  ؋u]}]Ív UC    BSZCӐt& |>
uD8 fU8}}]u?~t!|$$    Y; É؋u]}]ÍGEG</tjtf   ></tu7Et>&    tFD$ED$$uEsEE    ? 5T4$ËE$D$9 t$D$XD$D$   ËE$D$CfUVS1ۃpE$$   ƍED$t$FtE1%   = @  É4$p[^]Ív '    UxuuE]]}D$t$$      E%   = @  u?D$   D$P[$    $t$s\ ¾]u}]=    tg= `  t`D$    4$
  D$5[$'U   D$   D$z[$    n$[ 1D$   D$d[$    FNu!D$   D$A[$    !)D$   D$8[$     $[ y $诺D$   D$X$    \$t$$=[ 茽<$D1( $^D$   D$X$    p\$t$$Z ;t    '    U$    N^ 	CU v US8MP<9tntE88; t3D$   D$[$    ּ\$$VZ []ËP@D$   D$[$    裼D$   D$[$    胼E[]Z fU$   >Í        U$    Í        UWVS,   ue   E1}t$D$    D$   $uq4$"u$1ۉ|$D$    D$   $j4$貼<$	蜼tFUe3   u?,   [^_]ÉD$|$D$   $9A뗻볍    ot& '    U1WVS|u  E    $  4 D$  E$x  EE$4 ][:c  [:CS  4$UT$$   ED$^uE%   = @    ]1D$/   ߉$`b  1ҍX%  +]\$]$3 E$<  E$ع$  4 D$  E$	E   $3 ][:   [:C   E$ɻE$nu8]t1$9<$/$DD$2 |$E$`<$(E|[^_]É$$D$b2 EÉ$ٺf/ ~   `\$$    3 E$¸E    =EE=$胺$D$1 EÉ$gf/ ]   $L|//$D$1 EÉ$%f/ ]v USXt<$8t$|/t%$X$X    []áX$շX'    U(Eu1]}E\tEE$tC=`$|$蠺E1} u11;]t9$^]u}]u됍t& \$1<$V;]uɍt& '    UWVS<E$    EӋED$1 U    EED$E$0 ED$/   Eԉ$
  @D$$    1 EC ]$$E蓶E$hE  Eԉ$RE    E؍t& U$.  U؍sEԉ4$T$D$&u΋UԀ:.t>Su9uv:Ftt9uu:Fuv:FtE$4$跷D$0 t$D$XD$D$   ËE$D$nD$   $} u$   $n U   D$E܉$. Ut$E$    *0 E E$E$Uԉ$ E܃<[^_]É$D$[$    / E9Uԉ$輴E$豴E    먍t& UWVS}E        &       ED$ED$$GuD$   F$|u   D$E$- E$$C. UD$[D$D$   D$$觸OP耸E[^_]ÐUWVS\UE    E}u  tM9~  D$E\$|$$BEċMu9至EUĉD$$M9 uU$   E\[^_]ËUEMD$[$D$E    t
   +EЉE$- En$- E    ǃ}vm   9uv^EԋUD$    D$E$&MD$    |$ËE$U  |$$t9uw3MċUȋ< t%ED$    D$    Љ$EZMԉ$
<$uuЍ^$0, UċMȉE̋L$UЋMD$[D$ET$D$D$   D$$耶}   }vM91  迱U:9tvM$[UM $X)D$* UE)E\$D$E$KM̋Et$L$$腯U2Ẻ$M9 uxE D$/   $0tM9ZE}\$|$$"EXU/Ẻ$BU2/EvfE8 EUD$ D$   D$$覭UE    E   tK119vƃ9]  UăD$$K( 
M9vċMM܋1}܉h4  D$    D$    $O$    蓴E    ^    UċED$    D$    D$$A D$ÉD$ $$Y1҉U ;u   1҉ME܉L$ӉD$ $譬q(;E`E)9SD$   D$[$    +D$D$ $r $赳MFE܉u&    U\t$`t$輰tfá`$V\`    $?\    
USE$.t-D$   $\u$Я|/t
$1߭؃[]Ív UVS$[   $   $~$D$& $e nano@.XXX@XXX $    裮$?   蕮$tWD$[$U4$k[^]$[fD$[$    ' K$1벐UWVS   ]=   E$蝮$蓮ƍD$& E\$U1D$XD$D$   T$$?3t[\$D$[D$D$   E$
ED$E$   D$0uEČ   [^_]ÍE$D$    % EČ   [^_]$! fUWVS  E]UE    8
; x  EtEE   $$   (D$T$l 5  $t
 m  ED$$   D$&t
   $t
   E1ۅ  }ǅ    x  E  ǅ       ǅ    ?C0V  {0tE$
   D$tC  tt$#$  Et$D$   D$$t$Ë$H  9   89{i8 uu}  E$ s  Eh  
 =
  8s4  C41$   D$T$D$   D$>\D$N\D$$    AT$$G 8@$ $    J T $$D$   D$ [$    6\$T$$F E$$趨$訨  [^_]$    I $D$    $   \D$   D$[$    蒨\$$F ǅ    cE$
   D$$8Eǅ    (D$$   D$}8%   =   }D$   D$]$    ˧$OE ǅ    o]|  8{% uC4@H;EIC4MP@ɉU@HE	  X  $  ٍ@u    /u!担8%   =   $薨x $詣D$   D$ [$    軦\$T$$1D ǅ    f1yE  E$S  EE  1ҋE$D$@Т $D$   D$ [$    \$T$$C $菧}A  t%     D$  D$$$蘦  }[,  D$4$E $:D$   D$ [$    L\$T$$B 4$ɧ8D$@   $3D$5[$xi $蟡D$   D$X$    豤\$T$$'B v4$)E$~$W&    uc$x$    D$ áX$轥$賥D$ \$D$XD$D$    XD$ $^$膣 D$ \$8 J  D$   D$\$    虣D$   D$ [$    { \$T$$@ 4$
 $D$@   $d   D$5[$詢  E$D$t$荤o $蠟D$   D$ [$    貢\$T$$(@ $    { ^  $?   `R $
D$[$Ѡ7  8@4@$D$*  Et$$P     | $貞D$   D$ [$    ġ\$T$$:? $P_D$5[$E $6D$   D$X$    H\$T$$> 
ǅ    
$$詣t& 菝 $D$   D$X$    Ҡ\$T$$H> 藠E$謡$)$z D$\D$D$   T$$ޤ $D$   D$"\$    '\$$= 衜 $לD$   D$ [$    \$T$$_= $W8D$$D h8{8&7 8u $D$   D$ [$    1\$T$$< $轞4$苛 $D$   D$ [$    Ӟ\$T$$I< $_n8P4BD$BD$$薡ED$$؟iD$5[$ԜEĚ $D$   D$X$    \$T$$; ѝ$`    C48\ $蒚D$   D$X$    褝\$T$$; iUWVS,8U]Mx$ED$ET$D$$D$     ED$ED$ED$E$҉  ' 4u8@ 8 ue1ED$   D$ÉD$ED$E$' uu!$4t  tF ,[^_]D f        닍&    '    UWVS   EE|} p  88   z%   D$$     8E    ƋB0    &  8x% 3  } )  }  }}  D$   D$\$    講&@
|   t8 8 \$ |$$T$D$XD$4D$    t$L$D$   $    T4$D$    d  m  b<  pfk  a  = u} t%  t& TE  8$D$  ED$\$$   P  &@  88 ~  } u
z%   D$   D$]$    >$    D$
    8B0D$   D$]\$    &D$   D$y\$    ęǡ8x% }   }t?D$   D$\$    臙81z0B0J&    D$   D$\$    H81z0B0	    T$sT$谘T衊  D$   D$k\$    Ԙ5$   8t& D$   D$\$    蘘}   8E   VD$   D$]18}E*D$   D$\$    /~D$   D$\$    ]8E    TD$]$1`>    %jD$    D$    D$    D$    $jtU8z% 6} )"D$   D$X$    C$4 4$Ĝ   [^_]ËT&@t1E$D$    D$    D$D$    뱋T} uɋ8z% tE$D$    D$    D$1sT돋Tčv '    U$    X( &    U1҉8;@<t8@@$iX  $(    ɉÍt& '    US8$    7Y  C8XD$$     8B    BBBB[]Í&    US8D$$    _ x8@    @    @     @$ @% @(    @,    @0    @4    @8    []Í    '    US8t4X<xW  \$D$8$3V  8@<8[]<GW  D$D$$8V  []&    U(8}   ]ut
$
ǋED$    $   U: u`uHtz      t8P@    @    P]u}]u    %ED$D$E$҉tɉuv 뱋\D$   D$^$    \$$`1 끋8UT$$g <ED$E$[  8C4$`   n
 UC48@4T$$   D$ &    UWVS<uD$$    
 ǡ8P@ UE  %   D$   D$8^$    \tu:uv:Bu[  T$L$D$4D$    |$D$D$   $   >  H     % 2  8@ET<$D$ % E L  % '  T$  %   8} X  UP $4i  $R  8UPUP; ) }<[^_][&    8@ET<$D$4 f      Qv % tXD$   D$d^$    ?M    t    D$   D$.]$    D$   D$L]$    $ $t& u{T$T$KT<  % M8P@T$T$D$$}  84B;BE    tv D$   D$X$    $- }<[^_]鬏]$ѡT$D$T$ T$&    U$%   t$    /Y! D$   D$^$    a$, /! 
UWVS<8E @$   E	   8P;P>  RUE    1E    EԀ   E E    E$觍   
]t7&ut|>
L  Eԃ9scUۃED> >&ut|>
  E1U܉4$D$ED$T$EE E    ]mԀEԉ4$D$8 놋U$]  E$
}Ѕ  &   4$蚍]܅U  M̅t3UЅ  E܅I  8CU܉BPC$N  8CsD$C$ ' C   8C 8 {   }C   }  }3  ED$   D$f]D$u]D$$    ÉỦT$$* <[^_]À}
 
F E   &teEЋU܉4$D$ED$T$*EE8 }CHED$   D$^D$^D$WUЀ|
u}wE녃}  Eп   U܉4$D$ED$T$EE܈F E   9E$l 8@0   ED$   D$t_D$_D$Et
}VEfK8C $<}4  UЉSpEЋ[D$$ 8@ t$D$EЉ$$EЋU܉D$D$8@ $R8E9C   U9S   E9C   U܋R҉UWB@$褊8- 8CC    ChE8@0   ED$   D$_D$H_D$tE4$8USCC(CC5CC&    '    U(uu]> t\ED$D$   4$á8@$K  tA8P@    @    P]u]Í&    8@$@K  {뿋Et$$Z뮐&    U   E]]u1} EE8E\$$   D$tE%   = @  \$|$$   1҃tE%   = @  u%Ҹ   uE|$$F]u}]ÄҸu萐U1Utt& R$u]Ít& UWVS}uj&    ËCu$   k ƉCUE҉tED$   $    D$NFFEF    F[^_]$    ƣ뢐&    U
tD$   D$    D$_$x   *D$   D$    D$de$c   D$   D$    D$_$o   D$ @  D$    D$_$s   D$   D$    D$`$p   D$   D$   D$`$y   vD$   D$    D$0`$h   RD$@   D$    D$?`$i   .D$   D$    D$K`$k   
D$    D$    D$V`$l   D$   $D$e$q   5  @ D$&@   D$   D$    D$`$m   &@(D$   D$    D$e$n   T&@D$   D$    D$`$z   #D$   D$    D$i`$b   &@GD$    D$    D$v`$f   &    UWVS}EEE(ۈEu   ËC$u$(   &  ƉC$}EFtED$   $    D$]tED$   $    D$߄FEF$    FEFE FE$FEFE,F [^_]$(     Ɖ]&    '    US]tB$$u[]Í&    US4]$hD$$ QD$    D$D$	  D$D$    D$`D$`D$   $hu8(  ;@<`'  T$D$$sD$    D$D$
  D$D$    D$eD$   $h
D$$ D$     D$D$  D$D$    D$ fD$`D$   $hD$$D$     D$D$  D$D$   D$`D$TaD$
   $hb&@tcD$$D$    D$D$
  D$D$    D$ fD$`D$   $hD$$D$    D$D$  D$D$    D$LfD$aD$   $hD$$ZD$    D$D$  D$D$    D$
aD$&aD$   $hWD$$ZD$    D$D$  D$D$   D$0aD$HaD$   $hD$$D$     D$D$  D$D$    D$xfD$^aD$   $h$  D$$    D$     D$D$  D$D$    D$    D$RaD$   $hSD$$=D$    D$D$  D$D$    D$fD$gaD$   $hp&@tcD$$D$     D$D$  D$D$   D$ gD$oaD$   $hD$$PD$    D$D$  D$g   D$    D$xaD$aD$   $hHD$$D$     D$D$  D$r   D$    D$(gD$'dD$   $hD$$D$    D$D$  D$a   D$    D$TgD$aD$   $hD$$ D$    D$D$  D$w   D$   D$aD$aD$$hLD$$D$     D$6   D$D$^   D$    D$xgD$aD$$hD$$
D$     D$D$D$}   D$    D$aD$aD$$hD$$`
D$     D$D$D${   D$   D$aD$bD$$hPD$$SD$    D$D$D$D$    D$bD$1bD$   $hD$$PTD$    D$D$D$D$    D$9bD$QbD$   $hD$$YD$    D$D$D$D$    D$VbD$lbD$    $hTD$$WD$    D$D$D$    D$    D$vbD$bD$$h D$$SD$    D$D$D$D$    D$bD$bD$   $hD$$@RD$    D$D$D$D$   D$bD$bD$   $hXD$$TD$    D$D$D$D$    D$gD$bD$   $hD$$@QD$    D$D$D$D$    D$gD$cD$   $hD$$]D$    D$9   D$D$(   D$    D$gD$bD$$h\D$$\D$    D$0   D$D$)   D$    D$,hD$bD$$hD$$ZD$    D$|   D$D$\   D$    D$XhD$bD$$hD$$YD$    D$?   D$D$/   D$   D$|hD$bD$$h`D$$D$    D$D$D$]   D$    D$cD$$cD$$hD$$QD$    D$_   D$D$-   D$    D$hD$7cD$$hD$$QD$    D$=   D$D$+   D$   D$hD$AcD$$hdD$$@D$    D$,   D$D$<   D$    D$iD$McD$$hD$$ D$    D$.   D$D$>   D$   D$(iD$[cD$$hD$$D$     D$D$D$v   D$    D$HiD$ecD$$hhD$$PD$     D$D$D$D$    D$liD$tcD$	   $hD$$D$     D$D$D$D$    D$iD$xcD$
   $hD$$
D$     D$D$D$D$    D$iD$~cD$   $hlD$$D$     D$D$D$D$    D$iD$cD$   $hD$$D$     D$D$D$t   D$   D$jD$cD$$hD$$`D$     D$D$D$j   D$    D$cD$cD$$hpD$$pD$    D$D$D$d   D$    D$DjD$cD$$hD$$BD$    D$D$D$D$   D$xjD$cD$   $h$lD$$ QD$    D$D$	  D$D$    D$`D$`D$   $lhD$$    D$    D$D$D$D$    D$cD$cD$   $lD$$ZD$    D$|   D$  D$\   D$    D$XhD$bD$   $lD$$YD$    D$?   D$  D$/   D$    D$|hD$bD$   $llD$$    D$    D$D$  D$D$    D$(gD$'dD$   $lD$$    D$    D$D$  D$D$    D$xaD$aD$   $lD$$]D$    D$9   D$D$(   D$    D$gD$bD$   $lpD$$\D$    D$0   D$D$)   D$    D$,hD$bD$   $lD$$    D$    D$D$D$c   D$    D$jD$cD$$lD$$    D$    D$D$D$b   D$    D$jD$cD$$ltD$$    D$    D$D$D$r   D$    D$jD$dD$$l D$$    D$    D$D$D$D$    D$kD$dD$   $lD$$    D$    D$D$D$D$    D$<kD$dD$   $lxD$$D$     D$D$D$t   D$    D$jD$cD$   $l$D$$`D$     D$D$D$j   D$    D$cD$cD$   $l$pD$$ QD$    D$D$	  D$D$    D$`D$`D$   $ppD$$    D$    D$D$D$D$    D$cD$cD$   $pD$$ZD$    D$|   D$  D$\   D$    D$XhD$bD$   $pD$$YD$    D$?   D$  D$/   D$    D$|hD$bD$   $ptD$$    D$    D$D$  D$D$    D$LfD$$dD$   $p D$$    D$    D$D$D$c   D$    D$jD$cD$$pD$$    D$    D$D$D$b   D$    D$jD$cD$$pxD$$    D$    D$D$D$r   D$    D$jD$dD$$p$D$$    D$    D$D$D$D$    D$kD$dD$   $pD$$    D$    D$D$D$D$    D$<kD$dD$   $p|$t`D$$ QD$    D$D$	  D$D$    D$`D$`D$   $tD$$    D$    D$D$D$D$    D$cD$cD$   $tD$$ZD$    D$|   D$  D$\   D$    D$XhD$bD$   $ttD$$YD$    D$?   D$  D$/   D$    D$|hD$bD$   $t D$$    D$    D$D$D$D$    D$kD$dD$   $tD$$    D$    D$D$D$D$    D$<kD$dD$   $tx$x\D$$ QD$    D$D$	  D$D$    D$`D$`D$   $xD$$    D$    D$D$D$D$    D$cD$cD$   $xD$$ZD$    D$|   D$  D$\   D$    D$XhD$bD$   $xpD$$YD$    D$?   D$  D$/   D$    D$|hD$bD$   $xD$$    D$    D$D$D$D$    D$LfD$/dD$   $x$|D$$ QD$    D$D$	  D$D$    D$`D$`D$   $|hD$$    D$    D$D$D$D$    D$cD$cD$   $|&@
  $D$$ QD$    D$D$	  D$D$    D$`D$`D$   $D$$    D$    D$D$D$D$    D$cD$cD$   $S&@  $*D$$ QD$    D$D$	  D$D$    D$`D$`D$   $D$$    D$    D$D$D$D$    D$cD$cD$   $D$$    D$    D$D$D$D$    D$ fD$
eD$   $>D$$    D$     D$D$D$f   D$    D$kD$[D$$$D$$    D$    D$D$D$D$    D$xjD$cD$   $D$$    D$    D$D$
  D$D$    D$eD$`D$   $6D$$    D$    D$D$  D$D$    D$
aD$&aD$   $D$$    D$    D$D$  D$D$    D$0aD$HaD$   $D$$    D$    D$D$D$D$    D$bD$bD$   $:D$$    D$    D$D$D$D$    D$bD$bD$   $D$$    D$    D$|   D$D$\   D$    D$XhD$bD$$D$$    D$    D$?   D$D$/   D$   D$|hD$bD$$>$"D$$ QD$    D$D$	  D$D$    D$`D$`D$   $D$$    D$    D$D$D$D$    D$cD$cD$   $$nD$$    D$    D$D$	  D$D$    D$`D$`D$   $*D$$    D$    D$D$
  D$D$    D$eD$`D$   $D$$    D$    D$D$D$D$    D$LfD$aD$   $D$$    D$    D$D$  D$w   D$    D$aD$aD$$.D$$    D$    D$D$  D$D$    D$
aD$&aD$   $D$$    D$    D$D$  D$D$    D$0aD$HaD$   $D$$    D$    D$|   D$D$\   D$    D$kD$4eD$$2D$$    D$    D$?   D$D$/   D$    D$kD$?eD$$D$$    D$    D$D$  D$g   D$    D$IeD$YeD$   $$nD$$ QD$    D$D$	  D$D$    D$`D$`D$   $*D$$    D$    D$D$D$D$    D$cD$cD$   $D$$ D$    D$|   D$  D$\   D$    D$kD$4eD$   $D$$0D$    D$?   D$  D$/   D$    D$kD$?eD$   $.D$$    D$    D$D$D$c   D$    D$jD$cD$$D$$    D$    D$D$D$b   D$    D$jD$cD$$D$$    D$    D$D$D$r   D$    D$jD$dD$$2D$$    D$    D$D$D$D$    D$kD$dD$   $D$$    D$    D$D$D$D$    D$<kD$dD$   $$nD$$ QD$    D$D$	  D$D$    D$`D$`D$   $*D$$    DM M 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$D$D$    D$cD$cD$   $hp4[]"fD$$D$     D$D$  D$D$    D$fD$\aD$   $hl&    `    D$$    D$     D$D$D$D$    D$:dD$MdD$   $&@D$$    D$     D$D$D$D$    D$dD$dD$   $&@HD$$    D$     D$D$D$f   D$    D$kD$[D$$:t& D$$    D$     D$D$D$D$    D$:dD$MdD$   $|&@D$$    D$     D$D$D$d   D$    D$VdD$sdD$$|{&@gD$$    D$     D$D$D$m   D$    D$~dD$dD$$|&@D$$    D$     D$D$D$a   D$    D$dD$dD$$|&@D$$    D$     D$D$D$p   D$    D$dD$dD$$|X&@DD$$    D$     D$D$D$b   D$    D$`kD$dD$$|U(}}]uE   ~EED$   <$D$@  !ÍtM<
tG$D$    wƍ7u/t$<$  U9v%؋u]}]Í    <
uˍ    ׍        U]Eu]uD$\$t$$  ; u t-v t.t]u]   ]u]   ލ&       ]u]UWVS<$E%$p;l  ;p  ;t  ;xk   ;lm  ;|ho   ;q   ;rs  ;tt|;uto;tbD$   D$z$    CVD$   D$|$    E$VD$   D$P~$    EVEP  yT$D$   $    UE$eWE    E    ǡpt.    vËF[$/Wv$D8<uݡp;h  t$UG$P  UT$$0WUtED$$YEtUT$$X$Váp  &    GE    tH    @$D$D$gD$D$   -YE   	tBE}  G$D$kD$-  D$D$   X 	XwtiE}  }E߃      =    } vu{$T$D$D$D$   kX	}TtNE}  w   =    $t$D${D$D$   X 	X  Eڃ	u+EXG$D$D$D$D$   WÀ    $,p;h  E   t

$   <[^_]û|w4xT$D$   $    RD$   \$$    ERE    EU$2T]ۉt
E$TǋMU$Tf
 7D$   D$]$    #RD$    D$   D$    $  I  F E   $t$D$cD$D$   HV4$mQ(     =  E |2Q m	E   } @D$   D$]$    PQD$    D$
   D$    $,  Ɖ$xvE   $t$D$qD$D$   vU4$Pf^?C E   ,jP 4	E   t
4$xE	wE   =uTSO 4EU؉$t$D$T$D$D$D$   TÀ uDD$   D$N$    O7WU؉E   =  wxf
 D$   D$N$    O$<QۉC$!Q[D	ǅut& '    UWVS,$5pE$    EԉuS~  D$    D$$S+  $pF  $  E    8 t3f$x1;
ÃE; uE܅  mUE    ,  D    f       t   v      }؅t1$1;
;uu5(tg; tb1; tY$t& D$    |$ơ $4Kt t$\$$:Q1;
9=(wED$ ut$$ t$EED$E$}   U(E;Ew9E؉E/   5f
(A9EA     )E9E؉E\    ED$ED$   $  U   `uE5p   l  $cQ
$#'  $   +QU$;L    ,[^_]ËE(;Eu1Ƀu} 
(u؍D1;Et   )E9EE؅RE1ɃEE$  N} (EE    e  U   M$*&  
U$ Í        U$4ÐU]8uCs $LC  C4$  t8PT$@$  ]u]Í    US8C;Ct1@CCD$C $a  CD$   $     []Ít& US8C;Ct4C@CCD$C $  CD$   $    w  []ÐUS8C;CtW@CCD$C $  
(QC89P t-$    /  u\8PT$@$  []%@   tD$$     []ÉD$$     ߡ8D$    @@$D  fUVS8SCs
< uI;St8C      C4$  t8PT$@$  [^]ÉD$$rC8뷐US8C;CtG@CCD$C $q  C8@ u5%@   tD$$      []Ë($      u8PT$@$&  []á8D$    @@$  ƍv UVS8CsuXC;Ct8C $ICp  C4$u  t8PT$@$  [^]Ív D$C $sC8믍t& Uu58&]}~u?F    F    <$  t8PT$@$  ]u}]ÐF^ $耣  F58V9tF < t
萿  FF      F뉍v '    UWVSE]E8P@UE#h$  E ,v 8C  D$C $rEC8D$    t$P@$j|$4$wu8   CtD$C $cr1҉C8Ku5  C   ;Ct@ $G1҉CC@C   uD$    t$CS$,j|$4$vu)8CtD$C $qC8뫋8CtnStmT$ $qC8D$    t$P@$i|$4$ovtq8CtD$C $MqC몋CC4$D8  } CtEUD$$T  E[^_]ú   E8XU$D$   $Í    '    UWVS,E]E8ۋP@UEe$[  ]8E D$    |$CS$h<$ƋED$Ou   8CS < tCEE   uMD$    |$CS$.hU<$T$tu?8CS < tC볋C   ;Ct	C    1ҋC@Cu<$6C8st,  } CtEUD$$  E,[^_]ËCC̋8CS < &1҉CC늍t& U$D$   $OÍ    '    U]8u}C{sC $IDC  (C8P t$<$  ]u}]US8(CPC;P}p%@tX(~C@Ct;CuCD$C $輺  C($   D$!  []ËCC    C뙃[]fUS8PXH@    P@    $L$  []Ð&    US8(S9B~o%@tW(~C@Ct;CuCD$C $  C($    D$I  []ËCC    C뚃[]*v '    UWVS8}sC;sEu&8C@;CCt~$o  t8C;Cu1b8@@$蘝  u'8CC @;CCt3@$!  u8C;Ct@C    C    CC $AC褸  CtE4$D$|  [^_]Ít& U$   Í        UWVS8uZ;Zzu%8Bj @B$赜  t8B    B    t|$$  [^_]Ív U$   ~ÐUMEUɉJBPtQ]fUMQtABAtP]ÐU1҉EHtQP@u]
UMEUɉJ<B@P<tQ@]f$U]á$U]ЃÉ'    US]t$<>][]/>t& '    USEXu!ËC$Cu][]É][]    '    US]$=C$C4t$=][]=t& UUJ@B<A<B<H@U]fU$D   螷       @    @    @    @    Ív '    U$   ]uuU  Ë$    D$  FCFCFC؋u]]ÐUWVS]$[ۉǉ@    t$F[pƅuF    [^_]fUS]$   躶          X@    tSP[]fUWVS,EUEEUE]$g  E8@ $=U҉E  1E    8B;B  ZUrD$$0  8H@ET$$)D$?8t$UT$P@$98u@  8z% tB;B((  r$    B8t
&uE9}v]}    Uu6
D$    E$D$_' 8<
u?  9}wE$:8聳  } C   ,[^_]  D$    UT$E$,_ǉƋE) $Z5iB$v   } u8E&    8B,9BB,U$:8Ȳ  C8PU@E,[^_]  #  8&    UWVS,ED$ED$   $  t
,[^_]ËED$ED$ $6tԋ8CSEԋCU؉ES EUx9׉}~E;C   C ;E~'C;CtU;Ct@k 9S C썶    ˱  $賯  8ED$C $ٱ  C8蛱  ;}CtAE܉D$Uԉ$q  ,[^_]Ít& ;StC PC ;ES|S8U9Pu0  뫍&    '    UD$   D$$    8$&  Ít& UD$   D${$    r8$  Ít& UST]e   E1\$$    ?7M   \$D$    $    p<Ee3   uT[]9;t& UST]e   E1\$$    6e\$D$    $    <Ee3   uT[]:t& UST]e   E1\$$    6M\$D$    $    ;Ee3   uT[]|:&    UST]e   E1\$$    6e\$D$    $    S;Ee3   uT[]:&    UST]e   E1\$$    5ee\$D$    $    :Ee3   uT[]Í    9t& '    UY86;v&tÍ    :v '    U   uu]x$2$D$   9\$D$    $8]u]Í        UD$   D$    $@24@   D$    D$@$   5D$    D$@$   5@vD$    D$@$   5D$    D$@$   n5@0D$    D$@$   H5$    $u/@   D$    D$@$   
5Í&    $D8@pD$    D$@$   4@D$    D$@$   4Í    UD$   D$$    B4D$D$D$՘$   D$1D$   D$$    3$   D$1D$   D$$    3$   D$1D$$   ~1D$̈́$   j1D$݄$   V1D$$   B1D$$   .1$
   r1Í        U]]uu}}D$\$$   0$4   t$D$$   04$s4vjvUv t0D$   |$$    2D$d$   D$r0E
   ]u}]0    $	   0fD$$   00$	   r0J'    USD$   D$,$    !2$   D$/D$   D$`$    1$   D$/D$D$-$4D$   D$;$    1D$D$$QD$JD$`$l5D$D$o$xD$   D${$    A1D$   D$$    #1\$D$Ȁ$D$D$$D$D$$ЅD$ӅD$$wD$D$$[D$D$,$<?D$HD$?$N#D$tD$Q$^D$D$a$mD$pD$$D$   D$$    /D$   D$$    /\$D$$D$ÆD$ӆ$eD$_D$$ID$   D$$    q/D$   D$$    S/\$D$ā$D$D$($5D$D$8$BD$D$E$RD$   D$U$    .D$   D$d$    .\$D$m$YD$4D$$=D$TD$$!D$|D$$D$D$$D$D$$ǇD$ʇD$$D$   D$$    -D$   D$$    -\$D$$cD$D$'$2GD$   D$5$    o-D$   D$D$    Q-\$D$$D$   D$O$    !-D$   D$`$    -D$j\$$D$4D$$D$D$$sD$D$ǈ$ЈWD$ӈD$$;D$D$$D$    D$$D$TD$$($    1t& '    UD$    $    ,Ít& U$+D$    D$$($,D$   D$3$    +$   D$R)$+D$ D$    $    /D$    D$@$   @vs+D$    D$@$   W+D$   $    0Í    '    UD$    $   *$2   'Ð&    %Ut]]&    UVS E&@*  8    D$U$?}8 uxD$   D$\$    P*D$   D$r$    2*\$D$D$   $'u [^])v Pw    D$   D$    D$   D$    $}ul> RI& $&D$   D$x$    )\$t$D$   D$$&u [^]) [^]D$   D$[$    ?)t$fU$uQ̬  $C*&D$ D$    $    B-= u	& u$    T.۬  td$    <.&    U8x$ t%%t6$   
t    Z  u;E  t& D$   D$$    H($    D$  ttD$   D$X$    ($  념t& UWVS8@ $    D$荢  
8QEE8GBQBtPqG$=)$3)$DD$蟠  U@D$8@ $S)]@$'ED$8@ $*+U$&
8CQ]BQBtPq$(UǋB$($DD$  ]@D$8@ $*@$t&
t8HJt8H$M&E     [^_]Ð&    US$X$D$ D$    $    *EED$ED$   D$$&8{$ t4
4t$48$^8ۉt2fB<9t)x$ £8t $28B<9uܐt& $   8+t& UD$   D$$    %Et& USX=(Q  I  m  !t$:$ t$)$t$$   D$    D$    D$)$!D$    )á\$D$($!(D$     )á\$D$   )$m!&u?D$   $! D$   $u!D$   $`![]Í    D$   D$؃$    #$\v '    US]C1$m
w$觻  &    C$xtMltHytCҐtED$   D$$    F#D$C$D$  []Ðt& uD$   D$$    #6    k    [V    +  F$      պ  0UWVS,EU]uEۋE U    t$\$$  } Et
>   ED$ht$\$$脱  E  U$D$解  EEE } <  }  U: `  } tu܅tE܁x td  t|$講  
1t1ҍ    29u0 L$D$    4$4$%!    $!    }   E  	  =  U܋B =  =  =  1ۅR  U=$ y
U܀z   ЋE u:WE,[^_]=  T   E 5=$ (  v E8 蟠  U: `t& U$D$袡  E E} UE $?u; u
> E D$   D$$    $Q   E E     } <$D$   D$$    q$  D$$O  ML$L$    ;ut& "       D$   D$Ή$    $W   t$\$$  EEE v '    L$qUWVSQXIE   E   EMD$$    tD$$!  =D$$P\$P@"E UED$    D$D$HT$$  A9w$؊    {뱁
$   륁
$   뙡D$X$;  Xy
$   @j
$   [
$    L
$    =1
$   "
$    
$   
$   D$L$藗  L
$  @ 
$ @  D$$*  t
D$   D$   
$   g
$    !
$   GD$$  '
$
$   
$@ 
$   
$
$   D$\$x  \
$   D$$    ED$d$#  da
$   R
$   C
$ 7
$+
$U$JY8r;  $  @ k  $'@t
    d>  = u
&   &@  kD  Hj  L?  LD$   $@D$tu  L$L    &@u
d  <  @P  =4  D$ $    Qx$   pW$    v~E9}E:+  =$E   E    $p9u  UŰU\o؀:+   $fU܃  ED$    D$    D$    D$    D$$+T  E   E   9u  9uD$    D$    D$@$9É$諒  \$D$@D$Pt$
Q= \=X5LEdU\    X    EĉUL    d    ,8  Et\$E\} t	UtX$=XtL$5LMątd$sEģd}t	Uȉ	$}Y}4}*E؉D$E܉D$B$Q  _9ED  8      u
%$U   ED$    D$    D$    D$    D$$R  Ϩ  YC$unhD$   pED$ED$ED$ED$E$p  = uD$   $`$tv 蛖  u$     xD$
$

}t& 1$9%$U$ED$ED$B$Δ  4   D$$    _        @~D$D$    -  <S$>k2D$$      dD$-$      LD$&$    Ï  HxD$"$    襏  DMf\0Q
$  @ D$   D$$$    \$D$   D$$$
   D$$   &    U($    ]ut=D$   $ht&ED$D$T  4$4$u
]u]EE4t$40W$   O6  hp  D$   $`R&    '    U%t|E    
UWVS}]$   %  ơ8P9   Px9   VXGFEG    D$$    D$4  UF CFEC    $    D$h  FE$D$  $0$+ED$E؉D$E<$)  [^_]    P9KF    EfUWVS8uP@T$T$D$$8{4CE4$58CFFPtv VЋRuFF $hFF;Ft|F^D$F$  8؋ZFB@B 9}B t@$4$^' u8@ 8 u[^_]Ã[^_]B  Z뻡4@$Flt& UWVS,EM}UEEM܋]9UE)  \$|$U؉T$M܉$58E    4FPFHE9~  ~% E @  ^|$U܉$·  M)Ë^  M9$ơ8@ $$DD$i  8@ D$U $8MC@BBtPCGt$8$     C8XD$$    腊  } 8CC   sU؉sS$4E   4$r' u8@ 8 uj,[^_]fV(B9jN;Ab9UtU9E;^,EFE ;P~% Es뱐C(E؉C,Uf,[^_]  E;F,vE Cv $$荐  >9Q8BBU$8U$t$]U9t+
A9r))ރ$1t$])Ë$1t$]ÐU]Ít& US]A  []ᐍ&    UWVS<E}D$   D$E$    
D$   D$$    E
D$   D$$    E
$E   E8     7  3  U؍]D$D$   D$   D$$D$    D$   $}
D$   D$$    !
t$$D$  }   D$    D$   $*
UD$   D$%$    Et$$D$  D$   D$   $	D$   D$c$    |t$$(D$t  D$    D$$Q  D$    D$    $h	t)<$D$諄  |$D$$ZD$    }D$$4 $w$jEEh=     8  U؉D$$}	  E܉\$$f	  } tU\$$I	p     U|$T$$l  u,  ͍ED$ED$    $   EtUt$uD$T$$tE;EufU+(ZU}ԉU+(t)փ#} u<[^_]ÉƉEED$   D$$fUD$   D$!$    E
t$$D$     1낾   xv U]u$  pE4$D$4$ÉD$u9Ë]]Ít& '    UD$T$D  fU]u$臁  X$4t$   D$    )¡T$$B]u]Ít& UWVS}$'  <$XED$赀  $D$D$    ơD$$:行  D$    D$    $t3D$$  D$D$$D$:   $I$D$$-t$<$\$D$      D$ÉD$$4$|sD$    D$$	[^_]Í    '    U%t1$TD$܀  D$T$fÍt& D$    $T謀      뺍    UST$$tD$T$[]
U(ED$E}]uD$   $藷  t]u}]ËED$ED$$(tϡ$~  ]px(;usC)ȅuE    4$D$pE)D$T$~  }$GD$T$,    '    USu[]ÉD$T$1	$tȡD$T$b[]Í        U}=Tu5]<$9w
]u}]Ët$<$z.$tơD$T$뮍&    USM]tdTT9vx u1[]9rftDD$\$$0t+T   []áT뚉\$$-뾍        UWVS,T  D$<$)E  Eԡ<U؉$<+]E      11t& <D$    D$    $'9u׋E+<]9"f<)É\$$}/<tuډ$D$    ,Ãuu܋UD$    D$    $`'$D$    D$    F'?$D $|  U|$T$E$ Et$\$   $ >D$E$|  #$|  ƋED$E܉$tlTD$    t$$&U|$4$T$\uE؉$\u.E$4$,[^_]ËUԋE؉ҡD$T$fUW1VS]E#ۉ${  ơTD$    t$$%\$4$2txuO   4$&E$tD$T$S[^_]Í    D$T   $:-YtD$T$-D$    t$T$"%\$4$1t;D$T$,D$    t$T$$\$4$E1uU
UW1VS]E!ۉ$z  ]ơTD$    t$$U$U4$T$1tiT< t   묿   4$wNU$tD$T$[^_]ËT< tTD$    t$$#4$ËED$^0tjt& U(]u}T8    D$    D$    $;#=TE44$f <$\ U4$++ED$D$j+]$T\$w  D$T$]u}]Ív '    Uut& U&}=]ut2T$OZ  9ÉƣtT$9u
v     q<$tD$T$]u}]Í    '    UWVS,EMEEMMEM$aw  ET$U҉ƋE  
  1   &    
D$    E$D$v!Ǎ^D$T$v  )ѣTЉډD$؉T$$ \$ED$T$9}v{} t6Uf<
a)}MEEU,[^_]  D$    ML$E$ ǉËE) $.$9}wM$ETE,[^_] UWVS,}E D$$  ƋE$u  M1t1ҋ9Uw E|$$D$   D$$M,[^_]ÐUWVS,EuU]  E   \$U$T$薵  ҉Et
; c  t& \$ED$ED$p$a    UE  }t]U: uj&@t8 8 t
p;|t;D$$s  MLE8 u
z     5t}$at  
1t1ҋ29u0 ED$L$D$    4$4$    $    } t}vwDU$,U,[^_]=    UE  t_ tE=$  y tW UU,[^_]ËU	_
VMC:1t& #t& E8 t  ]vt& E  $uE8 u
; E UEE   t& E8 $    U&@t8 8 tp;|oUb$    UNE $U;E8 /Uf E8 &@t8 8 tp;|E$} UE
   
   U&@t8 8 tp;|EUUuUh&@t8 8 tp;|BU5U(\$ED$$;  Ev UWVS<E}E EEEڋED$T$nq  T$Et9  $ET$pT${ $$E    E       } v   ED$   D$ED$ED$ED$ED$E$]   
   	tuE ~O  fut@>  <$  t#D$T$@p  T$D$T$xE 5E  	t&    T$EE{   $D$-} t$  }܅tE܉$t
t} t& t<[^_]ËETtE\$<$D$   D$T$?o  TÉ$H7<$v  t#D$T$o  T$@   T$D$+E } uT= kQE D$D$ED$ED$EډD$T$?ãTT; vE܅kE܉$D$8n  TÉ$
CT8 D$E܉$n  Ev '    UWVS<E}E Et$\Í]$$l  U$踂  5]*U \$D$T$D$   ƉD$$D$$/k  $D$k  EUD$ET$D$ED$ED$D$E$Wá$     t*
t3(v  $} tU<[^_]û͡T8ۃ뷐UVS]t5Att" Btt& Bu[^]Í&    '    UVS0$
   D$5tJD$   D$$    $t$\$D$   D$$E]]D$   $    D$\$D$   D$$5$
   D$ 0[^]Ðt& US]D$   D$"$2u	E D$)$   u[]D$3$   tD$/${   tD$4$b   tD$:$I   tD$A$0   wD$F$   ZD$N$1҅@\$$&&    '    UHE}]uD$ED$Eԉ$taED$    D$    D$<$Ɖ$i  t$<$ÉD$EԉD$qE\$$TD$v$Eԉ$1]u}]
UWVS]<"ttQK<"u\sKǉЋPuu Bt$Bu[^_]$X1Ƀ[^_]UWVS,E}E E١K  ?    <$+D$,   <$fE   D$&<$?D$&$    +E   D$   D$"4$E  ED$4$} fEfEt.; uh$z&    $g,[^_]ÍED$<$fEft߀; u!$X$Xt; tD$   D$$E uE;"u{<$x$    f  }<$ЃD$'   EfEfFEFEوF|$$    g  F    F    F    F    F   p51} D$   D$$   ;"tb$X}4$   뮉t$$Y,[^_]$ElwEpd]$;s}ЃD$E$1҄uVKE$    D$e  $t& UU]u}   <"tEX]u}]w&    r4$%E   u  [t(4$D$
u$NV  $   jd  C[t$[$    e     @    @        @    uEv E[      1Ut<"tEU<"tu]u}]Ëu4$Et$   c  D$   4$tFt$$    )d  C    tS_C    nE8 `EK$I$   c  ãX
US1ۃM9"t[]v Ӄ<"tut(؃ tڋBAuЃ[]ÉL$$D$1UWVS|UE1:"$4c4$+-  ED$$   D$t"E%   = @  ud=    t]= `  tVD$5[<$   $=D$         E<$t|[^_]Äҋt>D$   D$P[$    \$$<$2|[^_]Í    D$   D$d[$    Xf $D$   D$X$    '\$t$$<$|[^_] $D$   D$X$    \$|$$V;UWVS,EE    EۋEUD$
   T$D$E$<   Ex
t}?]t& Aut#t$t& kD$Ȗ$}  } E      ? u$Q@ z<$E`  5`14`   t$<$uރ}D  d  !$t
  E$U$^=        ,[^_]D$Ӑ$Y  } -  \$$h[D$͐$Hu} E\$$h_!|$$_J D$   D$]$    D$   D$$$@
u,[^_]Ëd   U  1<"Ӊ$1\$$    ^  É$'   D$e4$S   \C<$T6t$$H_!D$^$uWt
  <$w $D$	$$ܓD$Ǆ$u{D$    <$t$$xD$r4$e   D$$ya  uz\$$$u-    D$ې$uD$   <$|\$$' $D$$'v D$4$u><$I$<$<    pD$74$]u;@$g	t~$v@$@    !D$B4$   D$$ D$7D    @$Y  l@D$    D$    $D$    D$    @$nkD$4$Xu>H$A$nH$H    D$M4$uLD$w4$uXD${4$udD$V4$D$$^  t5\$$ c        UVSĀD$qu$Z  t$$   D$t2E%   = @  \  =    Q  = `  F  t& D$5[$tD$    $2_    $	D$$IX  D$}D$D$   T$$t$$   D$tNE%   = @     ҋ   D$   D$P[$    \$$.D$5[$   D$    $$    E[^]ÄҋtTD$   D$P[$    ,\$$&    =    1= `  \!t& D$   D$d[$    fD$   D$d[$    $,3v ** $V$XD$D$U] Ít& U]Ít& UE;t;t]á]á]UMP1t]É'    UMP1t]É'    Ut+ tÐt& D$$    LW   D$$    1W  뺍v '    US$    }D$$    ãV  $    ED$$    ãV  []Ív UE}U]}up9t1t-Ӊ|$D$E$Zt![9tu܍&    1]u}]É    '    UWVSM}   U;   1;E       U|$t$T$@$ |$$u~E|$t$D$C$u΋E|$D$UD$E-t&  |$$6uRU|$T$UD$C$uɃ[^_]ËU[^_]Ë5U9E[^_]Ë5U'    UWVSUE;t;Et	E    1ED$UD$D$$t*E;   s$蓚$+t4$蟚{etgE$    D$TT  X$赜\$D$$#XD$$    T  U[^_]ËEUC$$蓚U$hCU4fUWVSE} E8@ $yp$+ )v } t]tkCEC0\uօ~҃	;wŋ $])ƀ} Et8UT$P@<$ȉD$f}닀} t [^_]Ív '    UWVS8}P pU   @9vx t&9r"taD$E$D$Iu]t& t*vmt*҉t$A릍    vEuփ1[^_]ËU$T$,t8+sCO  UC8P    [^_]Ë@:    '    UVS%   5$+5 D$    $    $P  8ËBD$B $D$%tz8D$   P$8P@$D$x[^]ËE$ơ8@ $ áT$D)WfTD$8P$fU(]u}D$    D$    D$E$g  ÉD$$$D$bN  < uJD$   D$$    |$\$t$$s  u]}]]*    s믉'    UWVSEU%E8UxP U  @v \$ED$$Q  Et?%J  $ )U}    } M  89x?  =    $%   t.mt.;}tn%m$^Eu҅   8(xUD$   D$X$    ?$q  ;}u뉐t& ED$E$    D$SN  U \$D$U)$Q  $= 
E$1[^_]ËU$6E8E    x/E+= t%uP;Ew8{CK  UC]8ۉP    tEU   [^_]Ë@;ET몍t& UWVSL8]P%@E ҈UǉE  EtM sۉ]EE E E 4  t& } h  8]9XS  t& } g  1}1!E} [  %N  E i  o  E$58~Ẻ$Ë$)} t} u;~(]  } t} tM9Nf  %u
EFDFFV $x8M̀} Bu&r8t
&  BD$B$Jh  {  E]\$ED$UD$ML$EƉD$]Љ$  } 8U9P} E:i  t& {I  8ËBED$B $H  \$D$    )؉D$8@ $b  $    N\$$   U  D$   D$$    $   D$^\$$    lU  $$   }tM}    ' u8@ 8    EL[^_]Ð]$\$K  E} YE    ]N9M9sE^,N9E9sN,g  t& F,k[J  EL[^_]$4T8U@%P`g  ED$E܍UMD$ET$D$$E  E܉D$ED$ED$E$褻48P@% Pf      U= u $Ív '    Uu`  8x% tf  
U($}]uD$E$D$u   ]u}]D$    D$    D$$lÉ$G  \$D$<$ƉD$HD$   D$T$    Ut$T$$5k  4$Q1q    U8]u}8px@E8    %ut8D$    D$BD$BD$    $    D$89st{vE  CE4$D$Th  ]u}]Cv $hu]u}]Í&    D$   D$7X$    $,j  8뉍t& S9Uwo%t$D$G  uD$   D$X떋8D$    TD$BD$BD$   $    D$8;sU;S됐&    UWVSL}]+  t%TD$$XF  1L[^_]
9   D$$    !F  Ɖt-8x% e  D$   D$ݕ$    =%Ee  %E  $E  D$   D$X$    
  pt$0\$,]\$(]\$$]L$T$D$\$ D$XD$4D$D$   $    44$$    :  "       T8   %t  T$   L1[^_]ÐVUUUD$    U)ډT$$D$    [  $I$C  ơ$A  sEܡEVUUUm}+U9UC  L$\$D$QXD$D$   4$$ljv H          V&    D$   D$$    %ED$   D$YX$    %EE|D$   D$fX$    s$EE]D$   D$pX$    @E9t&     8 fD$   D$X$    $|e  L[^_]Ë
8D$   D$    D$   D$   AD$A@$  D$$    3B  ctSrt7bd5$   T$    D$A     5$   С5$뽡T$    D$A  St& UWVS,&    8px@ED$    $          tąf   T:    $D$*A  TT8    8TD$    D$BD$BD$    $    D$89stp>  CE4$D$ga  ,[^_][,[^_]áT$$@  T8 hD$$oS,[^_]  S9Uut%t$D$A  u/D$   D$X$    f$b  818TD$    D$BD$BD$   $    D$8;sU;Sv mt& '    UWVS,E} ]}E   E  8Eo  C;CCt#}~U~A;CCuUED$$<  UC8P$E  }    V  ,[^_]áT$    D$>  D$   D$d$    ۉ   D$xT$D$4D$    D$D$   $    w4$a   tOED$TUT$$uB  tpE~iE~b8[  v %eD$   $   ]HCE8C@EdD$   D$$    $u`  D$   D$X$    $L`  T  fU(]U]u8uP CD$   D$   D$    D$    D$E$8pu]@]E]Y  fU8D$   D$    D$   D$    BD$B@$Ív '    UH=$ ]u}yC.]u}]ÐD$    $          uT8     D$$<  D$   D$$     MD$4D$D$   $    D$ D$tD$tPt`v /  Ut& D$$TD$$u;  <T$D$VTD$ $@;   8PpX@UD$    \$E$    D$ED$<Uǡ8PUpXPNX  ,D$   |$D$D$($    貼|$$]  &    
     8 u)D$   D$X$    詿$-]  D$T$7:  TUWVS<8P@  D$<$E  8PUЋP@UԉEء<$]E      11<D$    D$    $99u׋E+<]9 <)É\$$<tuډ$D$    ÃuuD$    D$    U$$D$    D$    D $18  E|$U$T$?t$\$   E$%>D$E$o7  J$7  ƋED$E܉$   8D$    t$P@$|$U4$T$C\uE؉D$UЉ$X  E$&4$<[^_]fD$   D$@$    H$Z  <[^_]D$   D$N$    $Z  8UЉPUԉPU؉PwU] Ít& UVS D$   D$ec$    $DZ  ED$ $r  $ta$   )\  E$k6  U1t1ҋ9Uw E$D$   D$$ [^]?@  $UWVS<
8AQy%E؋AU܉҉E   A1A    A    AY;Yt-D$    $   w   
8Y;YuӋA< uȉ   AU{EԋE؉QU܉AQD$   D$$    YUԉ|$t$\$T$$X  <[^_]f
8JEMUD$E$T$D$D$    1  ED$ED$ED$E$荧
8A% 4A{+x\$$1  $4E袒8U@%PU؉PU܉PD$   D$$    ot& UWVSL8E    BJ z%rEBMĉɋ@E EȋBEt
B(B% @E
r  ML      $    蛃E$褸F$   >%Euą   D$   D$$    {ơ8P%4$ád$D$83  t$D$D$   ád$D$襽؃L[^_]Í&    D$   D$$    L[^_]É  E1D$E܍UMD$ET$D$$Y/  E܉D$ED$ED$E$I' 4u8@ 8 ƋED$E$/  U$*.8' Zu
  B;Bt  E} ;  u܉B,$4$x8PU)}ЋMЉHD$    UĉT$@,D$M̉$&8P@%P(PP,ED$Uĉt$T$Mȉ$a  $   c1m$l1  D$ãd$Ժ0D$$K0  \D$$    茺uD    M$,)ƋE܉B,D$ $N$   BEEN.  8ev U8p%x% t;D$   D$$    s$S  8PP(PP,Ít& D$   D$$    8$S  8@(    @,    3N  v UWVS\8=$E uPUPUċPUȋP@%E ÜE҉$ t$$    UEO0  t$$    :0  }    8E B]BB    BBf8\$t$D$    @D$    $   D$   8t$B D$B$2  ta-  8ËBED$B $,  \$D$    )؉D$8@ $F  L  \$$   9  D$   D$̖$    D$4D$    t$D$   $    D$D$\$$    E/9  $۳}    } tJ'    8B;B  E} t  B,E܉E$4֋8@%$tU $^E   Uȣ 8PỦPUPUĉPu%$   t

$      t

$   E\[^_]À} /*  t& !T4$D$~8Pht$T$@$   D$ED$ED$E܍UMD$ET$D$$X)  E܉D$ED$ED$E$H' 4t!8E B% EE܉B,8B 8 EՋEEUv '    UhE]u}$
   E؉$   EЉ$   D$   D$4$    ݱ$aO  E   E$ZED$    $׮   D$    $L   $ED$   $)   E$D$    D$$$   譶D$   D$ߖ$    ]Ћu}]ËE$蕳EuvED$    $薱  $aE$VE$KE؉$@E܉$5EЉ$*Eԉ$$   E$E܉$xEuuED$    $hE؉$˲ED$   $ذAEԉ$褲D$    D$$Ȱ$   \E؉$qEԉ$f}xYuxR]xKED$   $ޱ   EЉ$)D$   D$d$    mWEЉ$D$   D$$    ?)E$ͱED$   $گCE܉$覱D$    D$D$$¯$   Vfp4$(  E    ÉEEEt$$'  UEEЉ|$\$$u EЉ$UtE&    <
tt<
u9 t$/tS9ft$E$ϭv1F  UED$    D$$˯ED$ED$    $豯UED$    D$$藯Eu?ąu8EuTąuMEtiD$   D$8$    舭rD$   D$$    eOD$   D$$    B,1҅u'    UWVS,E$  8x%    D$    D$   E4$D$T   d.  4$Vǉ4$P4$XhpR  
      D$   D$N$    f|$$I  ,[^_]D$    D$    D$   E4$D$ S譨 $D$   D$"\$    \$$uI  4$葫,[^_]Ðt& $蜨D$   D$h$    讫\$|$$*I  ,[^_]f4$HD$   D$$    h$H  ,[^_] $D$   D$"\$    +\$$H      UWVS<8u}E    BZ%E    E܋Bۈ]@EB@EtB(@EB,E1t'B9u   t& 9   [fu1D$\$D$    t$D$ $04 D$0$
8QA9tBt7t3];XtX]9XtK} t]9XtG@tu֍&    E܉A<[^_]T  W $oJA밉A룋]A(Y,뮐U1U;UvÉT$ED$E$<ɅÍ&    '    U(ED$    D$D$   E$@D$ħt}tEɐ1Ít& '    US]$1;Et[]É\$D$E$蠭[]Ív '    UWVS,]EE    E    Eۀ;    ED$D$    $$    }    }܀; tE9EvE;Esv   +]D$    D$    $À; u:Dt& } t;
&    t-$D$    D$    Vƀ; t$euu܋E܃,[^_]À} uuW;
fuuZ    ;
9&    ; tY1E    } t;
t6uI; t6uD$    D$    $$tEܿ   EEVEEK'    UWVS,UM$4訨$   ]E\$M$T$]E    E    ]>   4$9t}4$D$    D$    ] ]M؀> t4$t4$D$    D$    8Ɖz% tċE9B(u]+9B,rM뫡Dt$$  D$    D$    4$g~UÉu}> tZM؀> 4$J4$D$    D$    
8Ɖz% t]9Z(u+9B,rM릡Ht$$Ct:D$    D$    4$~UÉu}> Q4$<  > 84$(4$D$    D$    KM ME  MU9rt& EE;UsE]{ tE؅   8U)PE+ED$E$  M$18E]z% t9Z(t^,[^_]D$    D$    4$`UÉv u}<$£,[^_]ËE)B,E+E9B,vB,댉4$D$    D$    (U Ut& UWVSu$  E    > u3&    ]> t"D$    |$4$<$uԉ<$E[^_]ÐU1]]ut%$ƍ$b؀<0 ]u]Í        U(uu]}t-89ptK$V$
Ǎ< u1]u}]ËF \$$D$iu   ӋF$F< tمu
t	$@tȉ|$L$D$$zt& Ut]u}   8s;s  4$   $    `8B  B$t~    8@ $.ǡ8Xp $    `8BZHE+Kzr 8E   ]u}]Ë8B$Lu$    Law&    P5LD$   D$$    \$t$$>  1늍t& $z9C1l    B@$rt8B;B@BUWVS|8EJEB} MJEBB    MJEB(MJ,EB$MEtBBE    E ED$E$  8MPpz^UC9EER  8@ED$$      }Eȡ8p   1E     v9}   E$ËE]$9t%CD$D$Uȉ$  E } u]89puE뛋BB89r*      8z% t	9r(d  4$_4$k`8mh}   8@p $s$g]EЉ$MȉEܡ8U)PtFX|: t:GD$$  8@ D8 8@ 8 8@8XEЃ+ED$$W  ED$8@ $89r89rBB8PE$,ED$8@$]u&  8mP@ RPU  8@ $  59o  8@$
MȉEԉ$$ǉD$J  }D$    )ơ8t$@$T  48;u  8@X$,`\$D$8@$]Mu$@u	1E    8N)uԉM@XE$  |$EȉD$8@@ $謚8PED$BU؋M؉$X8EBz% BtB(;Bx  ED$8@$  8B;B[@BPUȉ$8C;C  @C CMĉ$\} EE    t8@E3   D$   $`D$   D$$    茛$9  $7  $   B-  ED$ED$ED$ED$ED$    $x} t	   ED$E$D$K  0$\0      $    ,  |[^_]ËM;J,|@B())B,jBB(B,+EB,} t)8 L$M$l8@Ey $Ch} tEzd2  |[^_]$   9  E-1}    D$MD$    L$E$覆48@$q[80 ZB$4q$Z8UMx% PUHMPUHPtMUH(P,Má80    ɈH$t1  jU$7$    _:  ֍    '    U$   ~Í        U$    ^Í        UVS@  E$辝A  $ۗɖ  ڜ  E$B=   `\$D$    $   貘   ǅ d1D$\$$   胘   D$5[E$跗  D$$=$    $    Ԗ   ty`@     [^]ËE$eD$   D$$    詗$-5  @  1[^]ÐD$   D$̗$     2dD$    D$$   莗`$  OKA  *    [$ j  $Y  E$荙$PD$E$著$4D$E$u$D$    UD$$T$D$J$    v '    UD$	   $itE  UVS'tg  11҉ȃuF$  t$D$    É$s3 t$$D$   7Y$胕[^]D$   D$   $Y[^]Ðt& UWVS<8x% %  }     EUMD$ET$D$$D$      E$2  'ǉE  UD$	   <$=ӉƉD$莓7\$D$    $u]ԋM EE Eu;p   B  ]؋Eԃ)D$$
  8T$\$MԍЉ$WEԉD$UЉT$$荒8MJ9r(b  9rC  ' u	9r  Ev9p   $ĕE؉$e} ND$$  ;Er+ED$$  ]؉E))MD$:D$U܉$荗+]4$\$*
  8E)B9r(   9r   EvE9pO}    } t=  t& +  <[^_]D$   D$$    K$0  <[^_]ËEEԉD$D$    <$衑*B9EԉBB,9ȉB,UЉ$薒^B9E59   +EB"B,9E
9s[+EB,]EUMD$ED$    T$D$$	  E    E    E E~H
  
M܉J,E܉Bft& '    U؉${É'    U$]Ít& '    UWVS8L
  C8XpU:   ;X   {$<DD$E$
  
8D$QA$[8z%    9z^  <$R<$R8@$R8j' tK   A;  8B8t&u[^_])  uBD$B$'  [^_]ÐB;Bu 8 t     럐t& JB(;AJBB,J(<v $D$    D$    ش8rEB87E$Í@+ED$u|$U$
8X+]\$@$	  8z% uj1B(;BuB,9Bs+EB,݋BBt& U8B;BtGBuÍ&    UWVS,E$>$D$    ǡD$t
U8 u1,[^_]Ít& D$    $M؉E< t$@E    E      EU+u= U  uE E    $@t'} ,  M$*E܋EU܉E؍UG$    $@  U4$T$萒ML$E$
  }   U4$T$eMA $%U' B0  8C 8   E;C  {% tC(;E  } tM;A  ,   [^_]Ít& 8M9H$t$E$Hu  UB E$NuE;5uE U؉$9EEM8@X$P\$D$8@$M8C;C7  CCM@0$N8C @CE+E)Ci  C8U܉T$M؉$L$E M܋8<sL$E؉$諳C8N  8>EC,   U;S,G@C(C,)E܉C,   GD$U_$B  MD  EuE8@<@C&    '    UWVS8@$N$@)  
81E    QA$=UD$  8JR$T$`$@   8PT$@$  
8y% tA;A(   UA;AQtRQB$|$D$K8@$K8@x5  8`  C[^_]#  y멋ED$8@ D$$Ј8s$C08@ $
8EA]9ÉEQ;Q, A,y()EA,
UUS   	v̉Ѓ	w[]Í    UEUu: u
fu]Í        UEu!Pt
fuP  u]Í&    '    USMt&B9r~1ҍA[])эA[1][)]AfU
8t$u|$}$Y(QC9Bt5;A,UAUAUt $t$|$]Ív A;A,vŋEUA,AUAtÐt& UWVSE}9tAt=1$ƋCt9ǉu$ƃ{[^_]1҉u썶    '    U
8Q8 u);Qt$BA@$I8PhB    
U1WVSu]t5E    ; t&}	À; t)Ɖ|$D$    $9rߋE[^_]Í&    '    UED$$Ðt& U8BD$B $`Í&    '    UWV1S]E    ; t+}
ƀ; t|$D$    $sU9Uvۃ[^_]ÐUE$賆EÍv '    UuEu]$t$vt؋u]]ÅtD$   D$$    褆$`ʍ    Uuu]]FD$$}0 ]u]Í    '    Uuu]t$Ǉ$D$4]u]Ð&    Uuu]4$݈t؋u]]Í&    tD$   D$$    ą$8_Í    Uuu}E]}t59t$<<$p|$t$É$肃؋u]}]þĐ&    U   S]t$ɆD$E\$$o[]É'    US8X$   C8@XD$$    
8APBB    P@QBA[]fUS]u$
[]
U(]]uuD$    D$    D$    \$4$讂1҅u/D$   D$    D$    \$4$脂]Ћu]É'    U(]]uuU9v~ tg9rc$u$uc   uu]]U]韰tZD$    D$ D$   \$$   1ۉ؋u]]t{uu]]U]19D$D$ D$
   t$$艁u D$    D$ D$
   \$$Utu]Uu]霅u]Uu]Ԭ 9< ؃9rÍCD$   D$ D$   D$$݀tWUWVS]蟣$7萣$(ƋE$迃\$EE$6D$    |$E$OEED$    t$$5tD$    <$uCE$V;EtD$    4$Ͳu   <$P4$H[^_]1⍶    U8]]Eu}}D$    D$
   D$$}8"t ; tE8 u   t7    1]u}]ÐU(}}]uD$,   <$~t!UtED$C$HE tEEt2t?)CD$|$$     ƀ8 u;4$7U]Ћu}]ËE<$D$U<!ԍv E4$D$< E뫍    US
t[]$~t\$$    []蛅$蓁tԋXϐU(]Í    UMt+tc   ȃt        ]ÍAЃv=   σ5~ʃ9ċ]  BÍAЃv=   5~9f0ȣtAЃfkd]-  Í        UU t72t2/   t&B̓v/8t?tBvJЃw]]1]   t& ]BÍv '    UMS]ttt9t@u[]Ív UES8Ku0(&    tQuK[]á(S 9~Љ̉'    U$Ít& '    U   S8x% t	[]ÐE$á8@$19[]Ít& U   S8x% t	[]ÐE$á8@$19[]Ít& US
8tSAQ@+B;(A |[]fkÉ$Q)á8\$@ D$ $z[]á D$    D$    $y륍    '    UVSEu]D$E4$D$y~D$    4$yu[^]Í        U$táD$    D$   D$$yD$    D$   D$$SÐUD$    D$    D$$$fUS(~/1ۡ\$D$    D$ $9(Ӄ[]Ív '    U'táD$    D$   D$$Í&    UD$    D$    D$$dfU(E]u}EUËE$($.5)9 }    uL D$    $w} tD$    D$ $~]u}]Í    Et$$D$ED$ $}9s D$$   $Dw뇡D$    D$ $Kt& '    U(]E]uu}E$D$    xD$$Pt$$@\$D$$|D$    D$$}9s)u]u}]Í    D$    $_v\$E$]u}EEEE]n|v '    U~u	$t$|} $j}Ít& UWVSLED$U$3EED$U$ED$    ED$ $utD$ U$T${8B8~  &q  ǐ   D$    GD$ $}w  EXu:eD$    D$    D$    D$G$v   [t-UD$    T$D$   D$G$utE;ED     1v E܋U)UD$D$    D$    ЉD$G$u  E܉D$D$   D$   D$G$MuuM   11Ґt& 1D$E܉D$D$   ET$G$u   E9E   ]119EE  \$E$UE1D$EԉD$D$   ET$G$t#  EEE9EEs;E  v ]܃9]/ D$    D$    $6zD$    GD$ $z8z% t~EHB(;H~xB;HhED$ED$ED$E$D$    EU@;B|NE;EwFEU@;B0E;Er(E9EvU;U  L[^_]}B;H}UUЋUU벋EXu[D$    D$    D$    D$G$+stǉt$ED$ $qD$EEȉD$ $w~D$U$L+u D$    D$    $y(]41ې   9U   9E   19UE    R  t$E$ËED$U$]+E]Љ$)D$[UĉT$ËED$ $pt\$ UЉ$T$v]9]1D$E܉D$D$   UD$G$qLډUEU9EBE뛃E!D$U$UU+EỦ$)؉D$t$ËED$ $p\$ Ủ$T$vT$U$U)ЉƉE]UD$    T$D$   D$G$p   [uqD$U$ËE+]9E   ۉC  D$E$~t$E$ơD$    D$ $rw \$U$T$ntt$ED$ $tD$    D$ $uL[^_];]tcD$     U$T$nnt$ED$ $tQD$U$])]uE9E$D$$+ED$E$xj11    UWVS]u}$t6U
ڃt"Z9t4> t;Jt%;Jft? t;JtR$uу1[^_]ÃtM  [^_]ÃztԋBM UWVS,Ee   U1$E7  ;hC  $$E/  }   EU؉11   v W    @MD$D$gD$   D$   $st& ÉD$D$$l1ҋMډT$D$E$6U;}R$Us(U܉EBRfE^ E 농    $s $sMe3
      ,[^_]ø%WE   E܋p   =  v;Ut$D$vD$   D$   $rfE^?E m 4cq
Uh$Ít& '    UWVS<}ut;UuD$$    <[^_]ËU$U9vmEt$E؉t$M$)ẺD$]$gE迎耉Eԉ$H]]̉E;	3  ;uw
t<EЅt5D$    U؉$T$mM؉$   ;uQ  E    ;    D$    U؉$T$(E UTEԃ9C  ]؀;	   '\  ~81ɐ@}E89
}ME M1҉5uߋEE̋]]̀; FU؉$kEM ]\$E$D$E$oE<[^_]Ít& ]؉$$  M؀9    '  
9},f@]E]9փEE̋]]4轌M   MԉL$E$XEUE Uv$UT$D$E؉$xËE~#   D}U:ȃ9E}$č$~jEE̋]]{$U}^UT$D$E؉$EȋE~$   }ȉډUD;}:9MEȉ$>Uȉ$tiE܉]]E]}E }E    貉E؉$ߌ1;uE   wE  E   E ]}]$UT$D$]؉$E    ËE~EME9MM$H$i]}]HU(]]uu}8PF+BEx;(|]u}]Ív D$    D$ED$ $;\$$$%D$   ǡ|$D$$|$ËE\$4$D$$7hu_$
9TAD$ED$ $e0E$    ]u}E]DeD$    ED$ $HetD$$    $eft& UVS8BHB@9   (9   
(r   1ۅ   19rt+4$D$?v9(~;t7819ruՋBС\$D$    D$ $9( $k[^]á$$
(8ɋrO1뱍v '    UWVSE]E$    ۈE(  
8A;A&  @AtEtA;A  @Au;(    D$   $bE   ؉D$ $;k D$    $b
8A;Ab  =(1D9E~}}q   tOE~H}]9]      819p   T$4$]v~uă[^_]Ã[^_])[^_]á \$$^j D$    $a}tg
8$h} tt& bEWP]+U]v
8=(AQ@;B=(UWVSE]E$    x  E8]zKG9|5(9   1ۀz%    $$8Bzp+w} ,  ?  t$$   8x% tFPC;Bu9t& C9Pt*D$    $8@P9S֋C9Puփ[^_]ÉƋB5(@9~9]u@t& C9p.D$    $"9s݋CۋZ][9؉]9];]ut&    C9   } uaz% tsJC;A܋Cډ$*E xoD$    E$މt$$    D$    $g8뇀} BEBE[^_]=    '    UWVSE,E_t+ED$ED$   D$$b,[^_]85$%$a$]C\$UD$D$   <$T$D$aD$    D$    <$D$     <$:a$D$    )¡T$$^D$    D$$fD$D$Ƙ$d\$D$$hd$`D$D$ɘ$CdD$    D$$%e$he $Ve$%  =   ,[^_]Á
$   UWVSLEEEܡ8@ $8ZEBx4@    B  8BD$B$&8EBB
8} Axt
=    AyE    @EA@E   u܋]D$   D$|$    |_Ukd|$ \$T$1҉t$$ED$$kMdD$}UT$D$ED$ L[^_]Í&    kEd1EcU$    Í        UWVS<}5$̘EԡD$    D$$BdiE E       
VUUU]ԉ)ʍB9  D$   D$    $[t)\$$̘D$̘D$$|a)؅]EEE  E8 :  $2;Es
}    E    U$s]E8 t_B9   D$    D$    $Zt,D$U$D$ED$$`D$    D$$a$a E<[^_]at& )ڍBD$D$    $6Zt\$it& F  D$   D$$    \E؋E)؉D$E؉$PU;Us
EڅE   1;UE    w
E)ЉEЉ1} E    j  )ƺUD$    $T$oYt*U܉T$E؉$D$U؉$T$`_} (D$    $YD$ED$$%_Rt& D$   D$ܘ$    [8 8 tMD$   D$$    k[E8x$ A  =$ |  E@D$   D$[$    [E؋E)؉D$U؉$EE܍88k<$29   EЃED$   )D$    D$<$EED$    D$$Wt*U܉T$E؉$D$U؉$T$]}D$    $bWED$sD$$]E7ED$   D$ܘ$    YD$    t$D$    <$E$nD$   D$$    YcU$    p$GÐt& UWVS  $D$   D$$ZEE:E
EE0EMEZEwxu 4m   `  $    D] D$   $Vf!1$Y $Y$Y$  ](7  1ǅ    m  v 4$\()Í
))¡ \$T$$Ut D$t$$[ $X $"ZM  $  ] D$   $S D$   $c\ D$    $S $qX $Y   $  \ D$   $S D$   $[ D$    $]S $ X(79~v $-Yu\6lD$   D$    D$nV<
$  0$TX t	 u%$0$   Z D$    $BT  [^_]O
U8x$ t@$$    Ít& '    U]]}}uCЃ	vU   ؁  v$`~  v$f~=؋]u}].Y Ѝv Y fӐ
Eŋ  EvWEEX v Uw$ěE0   fEt        D$D$   E$uʡD$D$   E$D$D$   E$D$D$   E$du D$D$   E$];}0.eE-   Ít& US]   =  v=b   t~!c   v tdu&    []Ãat[]YW 뷃   []Ív U$t$EU] w$t$]f[  o3  OuՋsN΃Gw$u$t$]#문   른   랃teCQtPu	  f끸
  wRt=Sc  ^
  T  J  f>  4  *   f      
   f       f*   +   t& CQ   Y  Pt&   t& 
      z   fn   d/   Z,   fN-   DsNσ3/$   "     CAv $НC0	($S1
$SBUS2v t	5sfhSBY뿸  RRtS?  :&    UVS]$   9$    -tU(9wO(D$,$C£,(9r34    Et$D$,$hQ[^]ÉӍ먍t& )4    D$2T$$S
Uuu}}]u
]u}]Í    ${1҉Í&    :9ut$$u]}]]OfUS]} uEEED$   $tEE   D$   $[]ÐUHEU]]u} E$NtEۋMEUt	$t1]u}]ËT$D$$LKt֋=p;=ht(<$Ew   UЋEE      1ƋE[+(ډfUډA;Mr!99;M-~&    $uGt"$D$    D$    X   G$D$    D$   *   
*) t& UWVS,}t[^_]$   1K<$Ou&   u$    I'<$uOt$    ($   0,D$   <$J>f((D$,$(\,$    D$   8<$Nu<$D$    J[^_]ÐUVS]$   $    5(u   $
(   (U9   )Ѝ    ($\$ơ,4$D$M(u ,$VK,    [^]Ë,D$$D$7O(D$,$j,[^]É`t& 1[^]Ðt& UVS ut& D$   4$tjt$t1D$   $b
UD$$     [^];5    t& D$   4$`t $tۍE$D$|ƋE$\U҉~   D1DUȃ9T$$$I4$IFD$   D$$    J$O
U&uu]uh&tFE4$D$&u%&uD$   4$F؋u]]+D$    4$F먍&    k둉'    UE]u$D$   l$    ÉD$\$ƋE4$D$4$H؋u]]
UWVS}Eu   D$   4$ttg  ttftm$;  ~   uR=     tAT  $+hU[^_]á$$w[^_]û$    [^_]ÍCЃ$   t
    $(tE$     $    D$zƋE$U҉~   D1DUȃ9|T$$4$+G$G)$    u#   =  
K E$D$} ;5 
  Ft& $8	    = $            1f=$ x
   +   !      
      f         f   
      f   $f% fۃ$sD$   D$$    E$a        UWVS}ut$|$E$tE; t
[^_]|[^_]ÐU]Ít& '    UWVS^     AE)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUSHHtЋu[]US    [\  JY[                                     Search Wrapped This is the only occurrence No current search pattern  [%s%s]  [Backwards]  [Regexp]  [Case Sensitive] Search %s%s%s%s%s%s Cancelled (dir) %4u  B %4u KB %4u MB %4u GB Go To Directory Error reading %s: %s /.. Can't move up a directory    ¯үʯ¯¯Can't go outside of %s in restricted mode �   [none default wb Error writing %s: %s rb New File "%s" not found "%s" is a directory "%s" is a device file Reading File No more open file buffers New Buffer Switched to %s ./ ~%s %.*s%.*s (more) TMPDIR /tmp /tmp/ r+b .%lu Can't write outside of %s Too many backup files? %s~ Error writing temp file: %s Wrote %lu lines Wrote %lu line  [DOS Format]  [Mac Format]  [Backup] Prepend Selection to File Append Selection to File Write Selection to File File Name to Prepend to File Name to Append to File Name to Write zzy File exists, OVERWRITE ?  Command to execute [from %s]  File to insert [from %s]  Read %lu lines Read %lu line  
Press Enter to continue starting nano.
    Cannot prepend or append to a symlink with --nofollow set   Save file under DIFFERENT NAME ?    Can't insert file from outside of %s    Command to execute in new buffer [from %s]  File to insert into new buffer [from %s]    Key illegal in non-multibuffer mode Read %lu lines (Converted from DOS and Mac format)  Read %lu line (Converted from DOS and Mac format)   Read %lu lines (Converted from Mac format)  Read %lu line (Converted from Mac format)   Read %lu lines (Converted from DOS format)  Read %lu line (Converted from DOS format) Help mode Use of more space for editing Smooth scrolling Whitespace display Color syntax highlighting Smart home key Auto indent Cut to end Long line wrapping Backup files Multiple file buffers Mouse support Suspension Display this help text Get Help Close Exit WriteOut Justify the current paragraph Read File Where Is Move to the previous screen Prev Page Move to the next screen Next Page UnJustify UnCut Text Cur Pos To Spell Go to line and column number Go To Line Mark Text Repeat last search WhereIs Next Copy Text Indent marked text Indent Text Unindent marked text Unindent Text Move forward one character Forward Move back one character Back Move forward one word Next Word Move back one word Prev Word Move to the previous line Prev Line Move to the next line Next Line Home Beg of Par End of Par First Line Last Line Move to the matching bracket Find Other Bracket Scroll Up Scroll Down Previous File Next File Verbatim Input Tab Enter Delete Backspace CutTillEnd Justify the entire file FullJstify Word Count Refresh Cancel the current function Cancel Case Sens Backwards Regexp PrevHstory NextHstory No Replace Go To Text Go to file browser To Files Toggle the use of DOS format DOS Format Toggle the use of Mac format Mac Format Toggle appending Append Toggle prepending Prepend Backup File Execute external command Execute Command Insert File Exit from the file browser First File Last File Go to directory Go To Dir  Constant cursor position display    Conversion of typed tabs to spaces  No conversion from DOS/Mac format   Close the current file buffer / Exit from nano  Write the current file to disk  Insert another file into the current one    Search for a string or a regular expression Cut the current line and store it in the cutbuffer  Uncut from the cutbuffer into the current line  Display the position of the cursor  Invoke the spell checker, if available  Replace a string or a regular expression    Mark text at the cursor position    Copy the current line and store it in the cutbuffer Move to the beginning of the current line   Move to the end of the current line Move to the beginning of the current paragraph  Move to the end of the current paragraph    Move to the first line of the file  Move to the last line of the file   Scroll up one line without scrolling the cursor Scroll down one line without scrolling the cursor   Switch to the previous file buffer  Switch to the next file buffer  Insert the next keystroke verbatim  Insert a tab at the cursor position Insert a newline at the cursor position Delete the character under the cursor   Delete the character to the left of the cursor  Cut from the cursor position to the end of the file Count the number of words, lines, and characters    Refresh (redraw) the current screen Toggle the case sensitivity of the search   Reverse the direction of the search Toggle the use of regular expressions   Edit the previous search/replace string Edit the next search/replace string Toggle backing up of the original file  Toggle the use of a new buffer  Go to the first file in the list    Go to the last file in the list Go To Line Help Text

 Enter the line number that you wish to go to and hit Enter.  If there are fewer lines of text than the number you entered, you will be brought to the last line of the file.

 The following function keys are available in Go To Line mode:

   If you need another blank buffer, do not enter any filename, or type in a nonexistent filename at the prompt and press Enter.

 The following function keys are available in Insert File mode:

    Insert File Help Text

 Type in the name of a file to be inserted into the current file buffer at the current cursor location.

 If you have compiled nano with multiple file buffer support, and enable multiple file buffers with the -F or --multibuffer command line flags, the Meta-F toggle, or a nanorc file, inserting a file will cause it to be loaded into a separate buffer (use Meta-< and > to switch between file buffers).      Write File Help Text

 Type the name that you wish to save the current file as and press Enter to save the file.

 If you have selected text with the mark, you will be prompted to save only the selected portion to a separate file.  To reduce the chance of overwriting the current file with just a portion of it, the current filename is not the default in this mode.

 The following function keys are available in Write File mode:

 File Browser Help Text

 The file browser is used to visually browse the directory structure to select a file for reading or writing.  You may use the arrow keys or Page Up/Down to browse through the files, and S or Enter to choose the selected file or enter the selected directory.  To move up one level, select the directory called ".." at the top of the file list.

 The following function keys are available in the file browser:

   The following function keys are available in Browser Search mode:

    Browser Search Command Help Text

 Enter the words or characters you would like to search for, and then press Enter.  If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.

 The previous search string will be shown in brackets after the search prompt.  Hitting Enter without entering any text will perform the previous search.

 Browser Go To Directory Help Text

 Enter the name of the directory you would like to browse to.

 If tab completion has not been disabled, you can use the Tab key to (attempt to) automatically complete the directory name.

 The following function keys are available in Browser Go To Directory mode:

   Spell Check Help Text

 The spell checker checks the spelling of all text in the current file.  When an unknown word is encountered, it is highlighted and a replacement can be edited.  It will then prompt to replace every instance of the given misspelled word in the current file, or, if you have selected text with the mark, in the selected text.

 The following function keys are available in Spell Check mode:

  If you have selected text with the mark and then search to replace, only matches in the selected text will be replaced.

 The following function keys are available in Search mode:

   Search Command Help Text

 Enter the words or characters you would like to search for, and then press Enter.  If there is a match for the text you entered, the screen will be updated to the location of the nearest match for the search string.

 The previous search string will be shown in brackets after the search prompt.  Hitting Enter without entering any text will perform the previous search.   Execute Command Help Text

 This mode allows you to insert the output of a command run by the shell into the current buffer (or a new buffer in multiple file buffer mode). If you need another blank buffer, do not enter any command.

 The following function keys are available in Execute Command mode:

   nano help text

 The nano editor is designed to emulate the functionality and ease-of-use of the UW Pico text editor.  There are four main sections of the editor.  The top line shows the program version, the current filename being edited, and whether or not the file has been modified.  Next is the main editor window showing the file being edited.  The status line is the third line from the bottom and shows important messages.  The bottom two lines show the most commonly used shortcuts in the editor.

  The notation for shortcuts is as follows: Control-key sequences are notated with a caret (^) symbol and can be entered either by using the Control (Ctrl) key or pressing the Escape (Esc) key twice.  Escape-key sequences are notated with the Meta (M) symbol and can be entered using either the Esc, Alt, or Meta key depending on your keyboard setup.   Also, pressing Esc twice and then typing a three-digit decimal number from 000 to 255 will enter the character with the corresponding value.  The following keystrokes are available in the main editor window.  Alternative keys are shown in parentheses:

 enable/disable Space ^%s ^%c (F%d) M-%s M-%c (M-%c) M-%c			%s %s
 Sorry, support for this function has been disabled   GNU nano version %s (compiled %s, %s)
  Email: nano@nano-editor.org	Web: http://www.nano-editor.org/   Usage: nano [OPTIONS] [[+LINE[,COLUMN]] FILE]...

  Option		GNU long option		Meaning
   Start at line LINE, column COLUMN   Save backups of existing files  Directory for saving unique backup files    Use bold instead of reverse video text  Log & read search/replace string history    Fix numeric keypad key confusion problem    Don't add newlines to the ends of files Don't convert files from DOS/Mac format Set width of a tab in cols to #cols Print version information and exit  Detect word boundaries more accurately  Constantly show cursor position Fix Backspace/Delete confusion problem  Automatically indent new lines  Cut from cursor to end of line  Don't follow symbolic links, overwrite  Preserve XON (^Q) and XOFF (^S) keys    Set fill cols to (wrap lines at) #cols  Auto save on exit, don't prompt (ignored, for Pico compatibility)   
Buffer not written to %s: %s
  Save modified buffer (ANSWERING "No" WILL DESTROY CHANGES) ?    Window size is too small for nano...
   Requested tab size "%s" is invalid  Requested fill size "%s" is invalid h?ABC:DEFHIKLNOQ:RST:UVWY:abcdefgijklmo:pr:s:tvwxz Key illegal in VIEW mode Jan  9 2007 14:24:46 
 Compiled options:  --enable-color  --enable-extra  --enable-multibuffer  --enable-nanorc  --enable-utf8  %s	 		 Show this message --help -h, -? +LINE[,COLUMN] Enable smart home key --smarthome -A --backup -B --backupdir=<dir> -C <dir> --boldtext -D Convert typed tabs to spaces --tabstospaces -E Enable multiple file buffers --multibuffer -F --historylog -H Don't look at nanorc files --ignorercfiles -I --rebindkeypad -K --nonewlines -L --noconvert -N Use more space for editing --morespace -O --quotestr=<str> -Q <str> Quoting string Restricted mode --restricted -R --smooth -S --tabsize=<#cols> -T <#cols> Do quick statusbar blanking --quickblank -U --version -V --wordbounds -W --syntax=<str> -Y <str> Syntax definition to use --const -c --rebinddelete -d --autoindent -i --cut -k --nofollow -l Enable the use of the mouse --mouse -m --operatingdir=<dir> -o <dir> Set operating directory --preserve -p --fill=<#cols> -r <#cols> --speller=<prog> -s <prog> Enable alternate speller --tempfile -t View (read only) mode --view -v Don't wrap long lines --nowrap -w Don't show the two help lines --nohelp -x Enable suspension --suspend -z -a, -b, -e, -f, -g, -j Use "fg" to return to nano.
 nano .save 
Buffer written to %s
 
Buffer not written: %s
 Received SIGHUP or SIGTERM
 enabled disabled %s %s Unknown Command XON ignored, mumble mumble XOFF ignored, mumble mumble UTF8 UTF-8 /usr/share/locale !.? "')>]} ^([ 	]*[#:>|}])+ SPELL (<[{)>]} quotestr tabsize syntax operatingdir fill backupdir                                yyyyyyyyyyyyyy~~~-~<K~Wf~u~!2~A~~~~~~~~~am~~~~|~~Ҁ~'~6EQ~]/        h           D           F   .        I   A        K   S        L           O   M       Q   Ն        R   V       T   :        V   ^       Y           c           d           l           m   e       o   )        p   r       r   {       s           t           v   Ɉ        w           x           z   b        A   q        B   w       C   Å        E           H   c        N           S   *        U   G        W           i           k                   Yy Nn Aa  %c Yes All No ^C  C0#ܢpܢ=ܢWܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢjܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢܢError in %s on line %lu:  bright green blue white yellow cyan magenta black Bad regex "%s": %s Missing color name Missing regex string start= end= Missing syntax name The "none" syntax is reserved unset include icolor Command "%s" not understood Missing flag matchbrackets Non-blank characters required whitespace punct Cannot unset flag "%s" Unknown flag "%s" /etc/nanorc %s/.nanorc regexp backwards casesensitive  Color "%s" not understood.
Valid colors are "green", "red", "blue",
"white", "yellow", "cyan", "magenta" and
"black", with the optional prefix "bright"
for foreground colors.  Regex strings must begin and end with a " character Cannot add a color command without a syntax command Background color "%s" cannot be bright  "start=" requires a corresponding "end="    The "default" syntax must take no extensions    Argument '%s' has an unterminated " Command "%s" not allowed in included file   Syntax "%s" has no color commands   Option "%s" requires an argument    Option is not a valid multibyte string  Two single-column characters required   I can't find my home directory!  Wah!                  @       r                    S    Ɉ    e    )   B    M       A      {       V          @   q   w                     c   *   b    @  Å   7    G           "%.*s%s" not found Replace this instance?  (to replace) in selection  (to replace) Come on, be reasonable Replace with Replaced %lu occurrences Replaced %lu occurrence Not a bracket No matching bracket   Enter line number, column number In Selection:   Could not fork Error invoking "%s" Mark Set Mark UNset Edit a replacement Could not create pipe spell -f sort uniq Error invoking "spell" Error invoking "sort -f" Error invoking "uniq" Spell checking failed: %s Spell checking failed: %s: %s Finished checking spelling Bad quote string %s: %s Can now UnJustify! Could not pipe SHELL /bin/sh sigaction fdopen stdin wait kill   %sWords: %lu  Lines: %ld  Chars: %lu    Creating misspelled word list, please wait...   Could not get size of pipe buffer   No lines selected, nothing to do! nano is out of memory! HOME [   ] GNU nano 1.3.12 Modified View DIR: File: The nano text editor Brought to you by: Special thanks to: The Free Software Foundation For ncurses: and anyone else we forgot... Thank you for using nano! Florian König Florian Knig Unicode Input Chris Allegretta Jordi Mallach Adam Rogoyski Rob Siemborski Rocco Corsi David Lawrence Ramsey David Benbennick Mike Frysinger Ken Tyler Sven Guckes Pauli Virtanen Daniele Medri Clement Laforet Tedi Heriyanto Bill Soudan Christian Weisgerber Erik Andersen Big Gaute Joshua Jensen Ryan Krebs Albert Chin Plattsburgh State University Benet Laboratories Amy Allegretta Linda Young Jeremy Robichaud Richard Kolb II Linus Torvalds Thomas Dickey Pavel Curtis Zeyd Ben-Halim Eric S. Raymond http://www.nano-editor.org/          GG_H?H"HHGyJ>I>I>I>I>I>I>I>I>I>I>I>I>I>I{I{I{I{II%J>II>I>I>I>IJ>I>IIIJIIIIJEJOJ>I>I>I>I>I>I>I{I{I{I{I>I>I>I>I>IeJoJJJJJI%JJ/JJIJIYJ9JwKWKJ%J9J/JI%JJ>I>I>I>I>I>II{I{I{I{II%J/JI9J>I>IIIIIIIIIJ/J9JK!K%J+K5K>I>I>I>I>I{I{I{I{IIIJIIEJOJIK!KJ+KIKKIIJIIIIIJIKEVeVV%VVUTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTUVTTTTTT9VYVTTTOVTTTTVYVOTU9VTOTTTTTTUTTTTTTTTTTTTTTTTTOTTTTTUTTUTTTTVVVTTTTTTTT%VTT/VT/V                        ՘    ͙ۙ+:D    P_m}ŚӚޚ    )5F    V    es        ܡline %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%lu (%d%%)    (c) 1999-2004 Chris Allegretta  (c) 2005-2006 David Lawrence Ramsey ;  `      8  0P  Ph      P  P     	  P
8  
X  px    0  @  P  p  
  ,
  D
  \
  t
  `
  
  
   
  P
     8  X   p    P   !   "   "  #0  $H  @$d  $  &   '  '  p)   *$  *@   +`  +|   ,  ,  -  -   p0    1@  1X  `1t  1  `2  2  P3  4  4(  4@  5X  P5x  5  @6  P7  8   9  94  :T  @;t  P=  p=   >  @>  `>  `?  B<  BX   Cx  E  F  K   L  pL  `M,  pNL  ]l  ^   d   d  `d  d  @e  e0  @gP  jp  Pk  `p   q  q  q  r$   u<  v\  @vx  0    p         ,  @D  d    @      P    4  T  l              8  P  p  0  P  p      л      4  pP  l  м    `      p  8   P  0h      P       `  ,  0D  P\  P            `  4  L  l             0$  D  @\  @|  `    @  P  p   0    P   @h          p         P!  <!  pX!  x!  @!  `!  0!  P!  "  0"   P"  p"  P"  "   	"  	"   #  ,#  `L#  pl#  #   #  #  #  0$  @ $  P8$  P$  h$  $   $  $  $  @ $  !%  `"4%  `#T%  `$t%  0%%  '%  +%  +%   ,&   -$&  .D&  3d&  5&  7&  P8&  8&  ;&  ='  =4'  p>T'  0@t'  C'  D'  PH'  pM'  O(  P,(  QD(  `Q\(  Qx(  `S(  V(  @W(  W(  `X)  Y8)  `aX)  ap)  a)   d)  Pd)  d)  `h *  h*  h0*  jP*  jh*  n*  Pp*  p*  p*  p*  0q+  q4+  0rT+  rl+  r+   s+  0s+  s+  s+   t,  @t4,  tT,  tt,  @u,  u,  u,   v,  v-  0x(-  yH-  yh-  `z-  z-  z-  {-  |-  @|.  |$.  |<.  }X.  `}t.  }.  @~.  ~.  ~.   .  `/  ,/  L/  p/  /  Љ/  `/  p/   0  P 0  D0  d0  0   0  00  0  0  1   41  T1  l1  1  1   1  1  Ъ2  @(2  D2  @d2  P2  `2  2  02  3  д$3          |           AB
   0       AB
   H   0   FB
   `   P"   AB
   x      AB
        AB
F       P   AB
I         P  AB
F         AB
E         &  AB
I    0  P   AB
IF     P    AB
C    p  px	  AB
I      ;  AB
G      0   AB
     @   AI
     P   AB
     p   AD
     +   AB
   $     AB
   <  м    AG
   T     AG
   l  P   AB
AE     `?   AB
     <   AG
        HB
      C   AB
B        PM   AB
F      |   AB
D    0   ]   AB
F    P     AG
    h      AB
MFF         i  AB
MFF        P3  AB
F      c   AB
F          AB
        AB
F    (  "   AB
   @  /   AB
D    \  @a   AB
E      |    AB
F      C   AB
F           AB
FFF          AB
F       p   AB
D          AB
D    8     AB
F    X      AB
D    t  M   AB
FF            AB
MFF           AB
FF       n   AB
F      s  AB
F      p   AB
E      8      AB
   P  F   AB
D    l  `S   AB
FI          AB
I        `i   AB
D      s   AB
D       PS  AB
FGG           AB
         AB
   8     AB
   P  8   AB
F    p  P   AB
F      l   AB
KE       @  AB
E        Pg  AB
F      <   AB
D          AB
PF   ,    AB
FI   L  V   AB
B       l  @  AB
FIG        P   AB
     p   AB
D          AB
     @   AB
     `   AB
I    	  `  AD
F    4	  g   AB
D    P	     AB
JH   p	   |  AB
F    	     AB
F    	    AB
F    	  a   AB
   	   M   AB
D    
  p   AB
E      $
  `  AB
I    D
  p  AB
BL   d
     AB
F    
     AB
I    
      AB
   
   5   AD
   
  `Y   AB
D    
  s   AB
D      @h   AB
D    (    AB
KK   H  @	  AB
F    h  Q   AB
     P
  AB
F      `   AB
FF            AB
LFE           AD
        AB
F        AB
   4      AB
F    T  )   AB
D    p  @+  AB
D      0D   AB
KI     D   AB
L        pE  AB
F       M  AB
F    
   Q   AB
   $
   Q   AB
   <
  @QZ   AB
FI     \
  QL   AB
D    x
  QO   AB
D    
  @R   AB
D    
  S   AB
E      
  S   AB
D    
  PT   AB
E        T   AB
FS   ,  U0  AB
F    L  W#   AB
   d  W  AB
F      Y#   AB
     Y`   AB
FL     Z   AB
D      Z8   AB
D      Z   AB
D      [   AB
F    0  \   AB
   H  \m   AB
F    h  ]   AB
     0]   AB
     P]   AB
     p]!   AD
     ]   AB
     ]   FB
     ]   FB
     ]%   AB
D    ,   ^C   AB
D    H  p^;   AB
D    d  ^   AB
   |  ^6   AB
     _O   AB
P        `_N   AB
F      _>   AB
D      _x  AB
F      pbR  AB
F    0  c,   AB
   H   d,   AB
   `  0d[   AB
D    |  d[   AB
D      dX   AB
D      PeX   AB
D      ee   AB
D       f6   AB
     `fT   AB
IG     $  fj  AB
   <  0h  AB
    T  Pi   AB
FFF      x  Pj%  AB
D      p   AB
     p   AB
     q(   AB
     q   HB
     qn  AB
E        `sx   AB
   ,  s   AB
   D  tx  AB
F    d  v   AB
D      v+   AB
     w  AB
D      x   AB
D      y  AB
F (      ~)
  D 	FAB
D     0   AB
P      <  !   AB
   T  @   AB
F    t  @  AB
F      `  AB
F      O   AB
J        @   AB
     P   AB
D      pM  AB
F    (  U   AB
N      H      AB
   `  @\   AB
N        S  AB
F       j   AB
     pQ   AB
D      Е  AB
V      d   AB
D       Py   AB
FII      4  З   AB
D    P  p>  AB
F    p    AB
AG     @  AB
AG     `   AB
L      0   AB
     P   AB
ML       AB
F    (     AB
F    H     AB
F    h    AB
F      Pl  AB
F      R   AB
B            AB
E        "  AB
D          AB
O    $     AB
F    D  `  AB
F    d  p  AB
O      p   AB
A         AB
F      е  AB
F        AB
E         0   AB
     @   AI
   0  P0   AB
   H     AB
   `     AB
   x  V   AB
      }   AB
D      c   AB
OF     '  AB
F      @>  AB
AJ        AB
F    ,  `   AB
F    L  `   AB
E      l  `   AB
L      0L  AB
F      :  AB
F      &   AB
     !   AB
         AB
Q         AB
L    <    AB
F    \    AB
F    |  .  AB
F      n   AB
FI       PF   AB
     p  AB
S        AB
F         AB
   ,     AB
E      L  p  AB
F    l  0  AB
F         AB
       AB
F      P  AB
O      p
  AB
F      O  AB
F    $  2   AD
   <  E   AB
   T  `F   AB
D    p    AB
F      `k  AB
F      o   AB
F      @D   AD
FF          AB
FI     `  AB
Q    0  c  AB
F    P  `   AB
   h     AB
     v  AB
H         /   AB
     P   AB
E        e  AB
F      `
   AB
     
   AB
   (  
  AB
F    H  )   AB
   `    AB
F        AB
F      P*   AB
D      $   AB
     2   AB
     >   AB
A        0   AB
MGF      ,   c   AB
F    L   0A   AB
   d   R   AD
F          AB
       "   AB
      0O   AB
BF         AB
      Z   AB
FI     !   3   AB
FF     ,!  @8   AB
FF     L!  Z   AB
FF     l!  X   AB
FL   !  @7   AG
D    !  n   AB
D    !  !   AB
D    !   w   AB
FF      "    AB
FF      "  0   AB
F    @"  o   AB
FL   `"     AB
FI   "  `Z   AB
D    "  
   AG
   "     FB
   "  V   AB
   "  -   FB
G     #  @W   AB
D    #     AB
   4#  L   AG
D    P#  L   AG
D    l#  `   AB
D    #  D   AB
E      #  @ _   AB
   #   .   AB
   #   F   AB
D    #   !9   AB
   $  `!.   AB
   $$  !  AB
P     D$  "   AB
FIF      h$  #L   AB
   $  #  AB
F    $  +   AB
F    $  `,  AB
F    $  p.   AB
   $  .  AB
F     %  P3[  AB
FFF      <%  4   AB
E      \%  5?  AB
F    |%  7#  AB
F    %   :  AB
I    %  0<`  AB
F    %  =   AB
   %  =?  AB
F    &  B+   AB
   ,&   C  AB
I    L&  F%   AB
    d&  F   AB
FFF      &  G  AB
   &  Hm   AB
D    &   I  AB
J      &  L   AB
E       &  Ln   AB
FFF       '  @MO   AB
D    <'  M  AB
LJ   \'  @O  AB
F    |'  PP  AB
E      '  `Q1  AB
E      '  R   AB
MF     '  0Sa   AB
L      '  S$  AB
F    (  VN   AB
F                          z     ܘ
   Woh   0   Ё
                     0              4      P         oto   o(                                                    \        
*:JZjzʙڙ
*:JZjzʚښ
*:JZjzʛڛ
*:JZjzʜڜ
*:JZjzʝڝ
*:JZjzʞڞ
*:JZjzʟڟ
*:JZjzʠڠ
*:JZjzʡڡ
*:J    T      nano.debug  Ȟ .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  h                +         Ё  `
              3         00                   ;   o   ((  L               H   o   tt  p                W   	        P                `   	      44                i         ܘ                    d           `	                o         ``"  h                u         W                   {          X   J                             "                           - <(                          HHU                            PPU                            XXU                            \\U                          ,,V                           00V `                         X (                           X                                 X                                 X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   #!/bin/sh

# Copyright (C) 2001, 2002 Free Software Foundation
# Copyright (C) 1992, 1993 Jean-loup Gailly

# 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, 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.

PATH="/bin:$PATH"; export PATH
if test "`echo -n a`" = "-n a"; then
  # looks like a SysV system:
  n1=''; n2='\c'
else
  n1='-n'; n2=''
fi
oldtty=`stty -g 2>/dev/null`
if stty -cbreak 2>/dev/null; then
  cb='cbreak'; ncb='-cbreak'
else
  # 'stty min 1' resets eof to ^a on both SunOS and SysV!
  cb='min 1 -icanon'; ncb='icanon eof ^d'
fi
if test $? -eq 0 && test -n "$oldtty"; then
   trap 'stty $oldtty 2>/dev/null; exit' 0 2 3 5 10 13 15
else
   trap 'stty $ncb echo 2>/dev/null; exit' 0 2 3 5 10 13 15
fi

if test $# = 0; then
    if test -t 0; then
	echo usage: ${ZMORE_PROGRAM_NAME-zmore} files... 1>&2
	exit 1
    else
	gzip -cdfq | eval ${PAGER-more}
    fi
else
    FIRST=1
    for FILE
    do
	if test -e $FILE || test -e $FILE.gz; then
	if test $FIRST -eq 0; then
		echo $n1 "--More--(Next file: $FILE)$n2"
		stty $cb -echo 2>/dev/null
		ANS=`dd bs=1 count=1 2>/dev/null` 
		stty $ncb echo 2>/dev/null
		echo " "
		case "$ANS" in
		[eq]) exit;;
		esac
	fi
	if test "$ANS" != 's'; then
		echo "------> $FILE <------"
		gzip -cdfq "$FILE" | eval ${PAGER-more}
	fi
	if test -t 1; then
		FIRST=0
	fi
	else < $FILE
	fi
    done
fi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ELF              4   F      4    (      4   44               4  44                     xC  xC           xC  xx<              D                   H  HH              PtdP<  PPt  t        Qtd                          /lib/ld-linux.so.2           GNU           	      -         B `    -   /   KG->Kyc*                
      4      p       g                        T      t      7                  |                                         h       n     )                   <            8            C      ;      2      b           C            @            .                      H             |      f      O       I                        G             <                                                   '                   6            R                   o                        C            *      Y             v                         G            5            _                                           /                   __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk setlocale mbrtowc optind dcgettext error iswprint realloc abort stdin __ctype_get_mb_cur_max calloc strlen memset __errno_location __fprintf_chk memcpy fclose malloc mbsinit __uflow __ctype_b_loc stderr getopt_long fileno __fpending __vfprintf_chk fdopen fcntl fopen64 bindtextdomain fwrite_unlocked __libc_start_main strcoll __overflow fputs_unlocked free __cxa_atexit __stack_chk_fail exit_failure version_etc_copyright close_stdout program_name GLIBC_2.2 GLIBC_2.4 GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.1.3 GLIBC_2.0                                                                 ii
        ii
         ii
   
     ti	        ii
         si	   *     ii
   6      	      .  /  '  0  (  1                   	   
  $  (  ,
  0  4  8  <  @  D  H  L  P  T  X  \  `  d  h  l  p   t!  x"  |#  $  %  &  )  *  +  ,  U  H  )   5%    %h    % h   %h   %h   %h    %h(   %h0   %h8   p%h@   `% hH   P%$hP   @%(hX   0%,h`    %0hh   %4hp    %8hx   %<h   %@h   %Dh   %Hh   %Lh   %Ph   %Th   %Xh   p%\h   `%`h   P%dh   @%hh   0%lh    %ph   %th    %xh   %|h   %h  %h  %h  %h   %h(  %h0  %h8  p1^PTRhhQVhOUS    [ðH  tX[ÐUS= u?-X9v&    9w[]Ít& '    Ut    t	$ÐU(] 	  G  u։}t5tXtsGt$D$   D$G$5]u}]À    tꀻ    tËF;FsL 	F밍v     t    u    t͍v     u렋B;Bs  	BD$	   4$ZD$	   $뭍t& '    UWVSE
  F  tU0D$   D$$    t$D$   D$ $E$t& 0$D$   D$$    jt$$   D$H>D$   D$$    0|$$$|>D$   D$$    |$$<>D$   D$$    |$$>D$   D$$    |$$6D$   D$$    t$$tBD$   D$$    VYT$$   D$&    L$qUWVS9  +E  Q   9IMXD$$   `o4$D$~4$$   t     $!  ƃ   ƃ   ƃ   ppMD$    t$T$L$<$z   1t?*=}t& tN=~   $   '릐t& 2t3uƃ    ƃ    녍t& ƃ    ut& D$D$D$D$D$D$     $  $    $    
)Ѓ  )ǃO  MU}   xEEEM荃tEU$~  MTM:  A:Br  0xt  Mt$$C  tD O  EuM}䉅|M}EE   U҉U         BMD$BD$AD$A$z  ƅ=        E3UET$$  ME   ^MEL$$X  }E =M||$T$ $   D$EEU      T   EpBt& }EUM}@ER9UQvuH9(}9}w   E}WT$|T$ $   D$   xD$u[u$    {D$$  }<MTT$UT$ $   D$(M|T|$T$ $   D$t}D$c  D$   $    ƍD$t$D$    $    D$$   M9xD$   D$$    D$    $    D$T$   hv +MTT$UT$ $   D$PUD$  D$   $    ƍD$t$D$    $    D$n$ÐU(E]>  }}D$Eu|$D$E$&  E^0   D$   D$$    ft$$    D$2 D$   D$$    4D$    $    D$E|$D$   $   D$}  D$   $    ǋED$ED$Y  D$   $    ƍLD$|$t$D$D$    $uE]u}]ÐU)  =  E]   Í&    U(]pb=  u}  $E$au{tj 	EtxqD$   D$$    Ƌ   ta$!  t$D$}D$E$D$]u}]ÄE    tyuEwЋD$Et$$D$3멋$ÐU]EM?<  u}D$    $   t(:t-   ֍18]ȋu}]Ð0:BtUSE;  @$[]Ív '    UWVSEUÌ;  @EUu{EuEUB;B   U8BEt_;ut"E
uȋU+urE[^_]ËE0D$U$M  UEƉBEE    E[^_];utU u~
t
   E
냉$#j        UE     @    @    @    @    ]ÐUWVSM}uUtf:  EE y uEU    MuL$4$EuY4$opE$auE)E)t:Eu1E   MuLEMDE[^_]ËU؋M11҅t͋U1E뿐UE$9  t ]Í&       ]Í    UUU9  tE]Ít& E  ]Ív UE$M)9  |$}t$t6ʃҍr11z$t$|$]Ív   &    U]ò8  uu}^ǋ $$   E  tHFBFBFBFBFBFBFBF B E]Ћu}]Í  밐t& UWV   4Eč}1EĉU؉PU܉PUPUPUPUPUPUP Eă4^_]Í&    U]7  uƉ}D$   D$$    9t
]u}]Ãu捶        UWVSse7     EEUMe   U1҉E9}EwMfE    E    E    E E    }V  M9M  } !  MMMM	~Mw    }W  }E    E      E܍UE    EEUE}ЋM}D$EUM)D$L$$r  t  z  }uHt& v>U       B[<!w&    9u֍    E؉$U$u E>MQ}{  MЋuMt*t& E9Es
M}EENM} td} u^}9}s
EM\M9MvE}0M9MvE}0EE0Ef9tUa  U  }  &    M}UEL$MD$   <$=EUe3   E/  Ĝ   [^_]Ã}t}fuuU9Uvj}E|?u]tN߀wP   Q 8tBM9Ms
}E?E9EvM\E9Ev}?EEU}    E   M}WMUtthE9Es
M}9\EUMuu%}}}t& EU< EE9E   EEEEE9Es
UM}9EOjUM PQE   E׀} a} qE   MMUU}U9ɉ}9}s
EU\EUUƍE    t!t& M9MvUEM1u<$}EEUE    E    E    E7E  E   }E   E}  E   }E   E }g  }M}} :\       }M} Q}EWt   Ѹb   Ըa   t& ȋ}} WE9Es
UM
\E9Ev}0E9EvU0M      EE0Qr   Qf   Qv   fEn   1}}v E9Es
UM
'E9Ev}\E9EvU'Er}<$EE 'E   UE   E ;E "E   UE   EEt,}t"EEM9MvEWu}9}3EU $EP}WE M9}Qv}? tEЉ4&    AtŃE9uw뺋}   v U(}}]ZL/  ut?UMƋ |$ED$E$EU]u}]Ív   빐&    UWVS.  ,EUME EEE  U;   rlփ.     9          D$   $D     D$    )ȉ   T$$   EUE   0xT$E܋Ut$<$D$T$9w[pU䋃   4Ѝ   9t<$   E4$i  UǉBEU܉t$<$D$ET$D$PEU,[^_]$   "           H!	          UVSdV-  @Uuԋ  Eԋ  E؋  E܋  E   E䋃  E苃  E싃  E  T$4$D$   EU14$@[^]Ð&    US÷,  ED$:   $;[]Ðt& UV4Uu؉LMUE4${4^]Ðt& UV4Uu؉UE4$I4^]Ív USE/!,  $    D$ED$[]Í&    '    USE+  U  M[]    US÷+  E$    D$[]Ðt& U(]Â+  u}1UE T$UD$    $    EET$D$x<$  U|$T$ƋE4$D$ED$EU]u}]ÐUSE*  D$   D$E$d[]Í&    '    USç*  E$    D$[]ÐU(E]}o*  }D$Eu$t
$v]u}]f$x   xB<$JuE4$D$u1E4$UzUEE<$1UUE{USç)  ED$   D$    $s[]ÐUSEoa)  D$E$t[]f  t& '    U]E-)  uu$t$7t
]u]Åt@  UE}}](  uut71Ҹ9wCɉ΋EL$$t]u}]Í&    u1Ҹ@   1҅  fU]pb(  uu4$t
]u]Åt  &    U]0"(  uu4$Ut$T$$K]u]ÐU]'  uu4$.4$D$]u]Ðt& U]â'  uu4$t$D$    $]u]U1҉Muu]`R'  9w*΋EL$$dt]u]Í    tg  &    U1҉Muu] &  9wΉ${t
]u]Åt  t& USMUî&  ɋt"=w#D$$[[]Ðt& u@  UWV1S,Ek]&  M}EtЃEBu  |$EL$D$   D$|D$U$
D$   D$$    D$  D$   D$D$E$D$   D$$    UT$$v	wuD$   D$$    Et$D$   D$U$:,[^_]upD$   D$$    t$D$   D$E$,[^_]Ëu@D$   nuD$   뤋uD$   EuD$   xuD$   uD$   LuD$   uD$    |$ED$   D$D$U$$
US$EED$E#  D$ED$ED$E$T$[]ÐUSç#  D$   $    D$pD$    D$D$$*U]Ít& '    UWVSC5#  E)E}Ut+1ƍ    ED$ED$E$9}u߃[^_]ÐU1S"  tD$ED$    $i[]ÐUSÇ"  ,USxxtЋu[]US    [<"  Y[                                     Try `%s --help' for more information.
  Usage: %s [OPTION]... FILE1 FILE2
  Compare sorted files FILE1 and FILE2 line by line.
 
With no options, produce three-column output.  Column one contains
lines unique to FILE1, column two contains lines unique to FILE2,
and column three contains lines common to both files.
    
  -1              suppress lines unique to FILE1
  -2              suppress lines unique to FILE2
  -3              suppress lines that appear in both files
        --help     display this help and exit
          --version  output version information and exit
 
Report bugs to <%s>.
 bug-coreutils@gnu.org /usr/share/locale David MacKenzie Richard Stallman 5.97 GNU coreutils comm 123 missing operand missing operand after %s extra operand %s - help version string comparison failed Set LC_ALL='C' to work around the problem.  The strings compared were %s and %s. write error %s: %s C POSIX " ` ' literal shell shell-always c escape clocale   >>PPPPPP%PPPPPPPPPPPPPPPPPP<<<1<</<<<<<<<tP<U<<<100000                      %s (%s) %s
 %s %s
 (C) Written by %s.
 Written by %s and %s.
 Written by %s, %s, and %s.
   
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

    Written by %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
 Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
 lV@-memory exhausted                        Copyright %s %d Free Software Foundation, Inc.  ;p  -       `     $  0@  Pd               @  p8  \  p    0  @    @(  H  d  @  p          0   L  p  0  p    0  p  ,  L  0l      0             zR |             AB
FQE     @      AB
F,   `   N   D 	FAB
CL         K   AB
INM            AM
             AB
FQ              AB
FT        @&    AB
D   4  T    AB
F   T  $*    AB
      p  8    AB
F     *    AB
        -    AB
         0h    AB
ISI        |    AB
FNF       Y    AB
B      0  (T    AB
FNE     T  d
   AB
C    t  Th    AB
FFN          AB
C         AB
B       +    AB
A     +    AB
D     -    AB
D   ,  2    AB
D   H  *    AB
A   d  +    AB
A          AB
FQ        2    AB
D     +    AB
A          AB
IX         x3    AB
A     5    AB
D   8  @    AB
FQ     X  ~    AB
IFP     |  <9    AB
FN      \?    AB
FN      |;    AB
FN      @    AB
FN      Y    AD
NF      L    AD
NF    <  ,M    AB
D    X  `a   AB
BF      |  B    AB
D     [    AB
A                                            ~        }                                j             h
   oh      
   @                     @           (      H         o`o   o                                                                                             Ɖ։&6FVfvƊ֊&6FVfvƋ֋             comm.debug  ,w .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .gnu_debuglink                                                  44                             HH                     !   o   hh  4                +                          3           @                 ;   o     d                H   o   ``                  W   	        H                `   	      ((  @              i         hh	                    d         	                  o           &                 u         2                    {         2  o	                           PP<  t                          Ľ=                            xxC                             C                             C                             C  `                              D                           D  (                          D                            E                             E  H                                E                                  E                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ELF              P4         4    (      4   44               4  44                                    D  d                            H  HH              Ptd  $   $         Qtd                          /lib/ld-linux.so.2           GNU           	               (/"         K92                _                          p             w                            )                         X       C      N       ?             E                  B                    a            G             <             @            z             o      =       M     H       =      C                Ч                ا     6   ԧ        ܧ      __gmon_start__ libc.so.6 _IO_stdin_used __printf_chk optind fork _exit flock setitimer memset __errno_location open64 __fprintf_chk __strtol_internal getenv __ctype_b_loc optarg stderr optopt getopt_long execvp sigaction waitpid close strerror __libc_start_main GLIBC_2.3 GLIBC_2.3.4 GLIBC_2.1 GLIBC_2.0                                           ii
        ti	        ii
        ii
   '      h  Ч  ԧ  ا  ܧ  x  |              	  
      
              ħ  ȧ  U    G   5p%t    %xh    %|h   %h   %h   %h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @%hX   0%h`    %hh   %hp    %hx   %h   %h   %h   %ħh   %ȧh       1^PTRhhQVh+US    [  tX[ÐUS= u?-X9v&    9w[]Ít& '    Ut    t	$Ð   Ðt& SÃD$D$XD$   D$D$ا$$L$qUWVSQ  )IL$(  Ǆ$      Ǆ$      Ǆ$      Ǆ$      Ч    D$<    D$,    D$0   D$4    D$($  |$D$@D$D$,$  V"w$=ЧЃ@D$D$$   $    D$4   sD$<   fD$0   YD$0   L$  1D$    D$
   D$ܧ$$  $  :.!  $  $  D$,   : @   D$,   D$0   ԧЃ9ŉT$$  L$(LL$@:  :C|  :Cl  D$$9  $Ǒ$h  t8 uǄ$h  ͑ԧ$h  L$(Ǆ$l  |$@D$$DǄ$t      $p  D$$T$(,D$  D$@   ,$D$8  D$,t.$  M  $  >  D$,    D$4   t$4t$0D$8t$$  sf}      $]l$D$D$D$   D$ا$O%   A     $@
   މ׉v1ۉ$   D$D$  D$D
DH  tAЉ$  uL$DDA$  L$DDAug$   D$   D$    $D$PǄ$   0Ǆ$`     D$\$$   $x  D$$  D$$    {^G   $)K$   T$($  |$$D$    D$
   D$$1$  8    
ԧ|$(L$$   1T$8D$@    @   $\|$8|$D$D$D$   D$ا$J4 u|ԧD$$T$$L$(D$D$ՑD$D$   ا$$@   L$,   T$@Ǆ$      tQ   t& Y  $  D$    t$$[9u苄$  u ĉ$  $  Ĩ  Y[^_]aÍB      $  ΍$x  D$    D$$    nD$PD$    D$$   *$L$(D$ԧD$D$tD$   D$ا$|v ptB   KI   f?\$D$DD$]Ǆ$  G   D$<tT$8$L$@L$$$|$@D$D$D$D$   D$ا$1D E$P $D$D$D$   D$ا$$G   U]Ít& '    UWVS^   á   E )E}Ut+1ƍ    ED$ED$E$9}u߃[^_]Ë$ÐUStЋu[]US    [  0Y[                     util-linux 2.13-pre7 flock (%s)
 +sexnouw:hV? -c --command SHELL /bin/sh %s: bad number: %s
 %s: %s: %s
 %s: %d: %s
 %s: fork: %s
 shared exclusive unlock nonblocking nb timeout wait close help version   flock (%s)
Usage: %s [-sxun][-w #] fd#
       %s [-sxon][-w #] file [-c] command...
  -s  --shared     Get a shared lock
  -x  --exclusive  Get an exclusive lock
  -u  --unlock     Remove a lock
  -n  --nonblock   Fail rather than wait
  -w  --timeout    Wait for a limited amount of time
  -o  --close      Close file descriptor before running command
  -c  --command    Run a single command string through the shell
  -h  --help       Display this text
  -V  --version    Display version
  %s: %s requires exactly one command argument
   %s: cannot open lock file %s: %s
           \GGGGGGGGGGGGGG/GGGGGGGGGGGGG/                            s           x            u   '        n   3        n   6       w   >       w   C        o   I        h   N        V                   ;       @8   PH   `           |        0      (   @@   AE 4   @   !  D 	FAAAAAF                         ԅ
   Xoh   L   
   1                  l               ,      (         oo   o~                                                            "2BRbr҆"2B    flock.debug %= .shstrtab .interp .note.ABI-tag .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .dynamic .got .got.plt .data .bss .gnu_debuglink                                                   44                             HH                     !   o   hh  4                +                         3         LL  1                 ;   o   ~~  6                H   o     P                W   	        (                `   	      ,,                 i         ԅ                    d           `                o         PP  
                 u         XX                    {           p                             $                             x                                                                                                                                             hh                            ll  `                          ̧                             Ч                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELF               4   ̮      4    (      4   44               4  44                     P  P                  
                                H  HH              Ptdt  tt          Qtd                          /lib/ld-linux.so.2           GNU           	      m             %8  m   s   x   ݣkĉ|(<5|CEK8qXĹ@2                6      ;                  (      `            1            2            j      t                       X      g                  Q            y                                                                       F                 _      4           @     g      g     q            h      Z      J      v             #            y     P      >      	                  X            2      }      L                                        F                 y      z                  .                 -      v      W                 W      F            .                 F                  ^      I            >                         @      '                  2                  v                  g            k      W       s     ?      I      n      >             !                        :             *     h      4                _      v                         "                        x            p      =      \     2      +      W      `      w      k      I      _     o                   {                       F             !                       L                  F      F                             )            =      P                        2      .            2             '      8            >            9                  	                  ;            >                                    4           T      N      W                         >                  5  -   !  4  -   !  P       o  -             =  -               -     D  -     3  -     n         
 Q        
 6  -       -      libcrypt.so.1 __gmon_start__ _Jv_RegisterClasses crypt libaudit.so.0 audit_open _fini audit_log_acct_message _init libselinux.so.1 freecon setfscreatecon getfscreatecon is_selinux_enabled fgetfilecon libc.so.6 _IO_stdin_used setuid l64a fflush strcpy fchmod __printf_chk exit _IO_putc setlocale srand strncmp optind putgrent strrchr __strdup perror dcgettext getpwuid strncpy signal puts __stack_chk_fail unlink realloc fsync getpid kill strspn __assert_fail rewind isatty feof fgets getpwnam strlen openlog memset strcspn __errno_location tcsetattr fseek read __syslog_chk getopt __fxstat64 __fprintf_chk getgrnam fchown stdout fclose __strtol_internal malloc getpass umask strcasecmp __strncpy_chk __lxstat64 __xstat64 __ctype_b_loc optarg stderr setrlimit64 __snprintf_chk getlogin getuid __strncat_chk __realpath_chk fileno posix_spawn fwrite rename srandom waitpid strchr utime qsort tcgetattr __strcpy_chk fcntl __sprintf_chk fopen64 bindtextdomain access _IO_getc __strcat_chk ulckpwdf setbuf strcmp __libc_start_main ferror closelog snprintf __strtoul_internal free __environ _edata __bss_start _end GLIBC_2.0 GLIBC_2.4 GLIBC_2.3 GLIBC_2.2 GLIBC_2.3.4 GLIBC_2.1                                                                                                                                                     ii
   U                  ii
   _     ii
   i     ii
   s     ti	   }     ii
        ii
   U       
  -y  -t  -v  -p  -z  !  !  !  !  !  !  !   !  $!	  (!
  ,!  0!  4!
  8!  <!  @!  D!  H!  L!  P!  T!  X!  \!  `!  d!  h!  l!  p!  t!  x!  |!   !!  !"  !#  !$  !%  !&  !'  !(  !)  !*  !+  !,  !-  !.  !/  !0  !1  !2  !3  !4  !5  !6  !7  !8  !9  !:  !;  !<  !=  !>  !?  !@   "A  "B  "C  "D  "E  "F  "G  "H   "I  $"J  ("K  ,"L  0"M  4"N  8"O  <"P  @"Q  D"R  H"S  L"T  P"U  T"V  X"W  \"X  `"Y  d"Z  h"[  l"\  p"]  t"^  x"_  |"`  "a  "b  "c  "d  "e  "f  "g  "h  "i  "j  "k  "l  U    Kj   5 % !    %!h    %!h   %!h   %!h   %!h    %!h(   %!h0   % !h8   p%$!h@   `%(!hH   P%,!hP   @%0!hX   0%4!h`    %8!hh   %<!hp    %@!hx   %D!h   %H!h   %L!h   %P!h   %T!h   %X!h   %\!h   %`!h   p%d!h   `%h!h   P%l!h   @%p!h   0%t!h    %x!h   %|!h    %!h   %!h   %!h  %!h  %!h  %!h   %!h(  %!h0  %!h8  p%!h@  `%!hH  P%!hP  @%!hX  0%!h`   %!hh  %!hp   %!hx  %!h  %!h  %!h  %!h  %!h  %!h  %!h  %!h  p%!h  `%!h  P%!h  @%!h  0%!h   %!h  %!h   % "h  %"h   %"h  %"h  %"h  %"h   %"h(  %"h0  % "h8  p%$"h@  `%("hH  P%,"hP  @%0"hX  0%4"h`   %8"hh  %<"hp   %@"hx  %D"h  %H"h  %L"h  %P"h  %T"h  %X"h  %\"h  %`"h  p%d"h  `%h"h  P%l"h  @%p"h  0%t"h   %x"h  %|"h   %"h  %"h   %"h  %"h  %"h  %"h   %"h(  %"h0  %"h8  p%"h@  `%"hH  P%"hP  @        1^PTRh hQVhUS    [Ȇ  tX[ÐUS=- u? - X-9v&    - -9w-[]Ít& '    U t    t	$ ÐUS\ND$   D$$    \$D$   D$-$$   &    '    US\ND$   D$$    \$D$   D$-$b\ND$   D$$    p\$D$   D$-$#\ND$   D$ $    1\$D$   D$-$\ND$   D$|$    \$D$   D$-$$   yUWVSLe   U1҅   8    E    RÃ)v
      D$ED$    t$$UD $tOt4? t-D$,   4$u4$E    t& Ue3   EuWL[^_]Ë\ND$   D$;$    UЉT$\$D$   D$-$Ebt& US]uD$ N$    []D$ ND$    $    -$
   D$o-$b$fL$qUWVSQXY1  m  D$*$   !D$P$m$1<E,"$  D$P   D$   $b\N-D$    $-D$    $E  E    E    E    `ND$\$4$   A1w$|J͋Ev 8  `NB
  -ЉU-  .둋E  -ЉU  .b.V-.EB.6-Eȉ$D   ..= .5.
..E     >E~MX"    $)  ǡ-4V	  4$2U	  ECECECE$)  EC$)  EC$  4$E<     EЋCEԋCE؋CE܋$])  EЋC$O)  EԋC$a  E܋C$S  E؋]M  
.  .   .  .  ._  .
  \ND$   D$t$D$D$$T  $  D$    $   G
  $8  D$$   Ủt$D$D$   T$$   \$$   c$Ẻ$  Ủ$E  E9  "D$    D$    D$D$\N$T  D$L  "D$    D$    D$zD$\N$T  D$  g1=. EM\NE*E*D$   D$D$t$D$$T    D$    $   Sb  $P  D$$   %|$t$D$   E؉|$$i  \ND$    D$t$D$D$$T    ka\NEED$   D$D$t$D$$T    D$    $   k$  $  D$$   =|$t$D$D$   $   \$$   	$$    U  P  {3  
  =`Nt
?  q  $   03    `Nt$   R?  i  E$2  
  
`NtEЉ$>    1  v }  `N  1  
  \ND$   D$M$    \$D$   D$-$D$    D$t$D$d\N$T  D$  $   K\ND$   D$t$D$D$$T    D$    $   v	  $3  D$$   HUĉt$D$D$   T$$   \$$   $Eĉ$F  Eء.|$t$D$D$   $   E<    `NaH<  W4$[#  EЋEEEԋE$`  $   E"  E     D$   D$)$    Uȉt$$   T$D$4EȉD$E$j  UȉT$EE܉$U  D$   D$D$E$T  E܋EȉD$\ND$  D$    $   H  $"f  D$$   Uȉ|$t$D$ T$D$   $   ;D$   1D$@$    Uȉt$$   T$D$+EȉD$E$q    EȉD$E܉$W  O    Uȡ\ND$   D$T$D$D$p$T    D$    $     $  D$$   iEȉ|$t$D$`D$D$   $    D$   D$$    D$   D$-$"D$    D$    D$D$\N$T  D$  q&    D$   D$$    wt$D$   D$-$*\ND$    D$t$D$D$$T    7|$t$D$D$   $   D$   D$; $    D$   D$-$D$    $     $=  D$$   D$V D$   $   \$$   s$\ND$    D$t$D$D$f $T    E$   UĉT$t$D$D$   $   $    !t$     \ND$   D$$    \$D$   D$-$JD$    D$t$D$ẺD$t$D$D$   $   \ND$   D$;$    Uȉ\$D$   T$D$-$ED$    D$D$jD$\ND$   D$$    \$D$   D$-$T$   (UȋE܉T$$>  EUȳET$$"  EaEȉ|$t$D$ D$D$   $   1Uȉ|$t$D$ T$D$   $   ỦT$Eȉ|$t$D$`D$D$   $   K$    D$p$   fD$p$   RD$p$   >D$p$   *D$p$   D$   D$$    t$$   D$6E    D$   D$$    $+D$  D$$ .)$N $D$    D$vD$   D$$    z$SD$$ .)	  $(D$    $D$D$    D$    $ .}  E}\ND$   D$& $    \$D$   D$-$$   eUȉ|$t$D$`T$D$   $   *EĉD$w$t.  $    \ND$   D$Z$    ?\$D$   D$-$D$    