ÿØÿà�JFIF������ÿápExif��II*������[������¼ p!ranha?
Server IP : 172.67.145.202  /  Your IP : 162.158.107.76
Web Server : Apache/2.2.15 (CentOS)
System : Linux GA 2.6.32-431.1.2.0.1.el6.x86_64 #1 SMP Fri Dec 13 13:06:13 UTC 2013 x86_64
User : apache ( 48)
PHP Version : 5.6.38
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/bin/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

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

my $config_tag1 = '5.10.1';

my $patch_tags = '';
my @patches = (
    ''
);

use warnings;
no warnings 'once'; # Eventually, the $::opt_ stuff should get cleaned up
use strict;
use Config;
use File::Spec;		# keep perlbug Perl 5.005 compatible
use Getopt::Std;
use File::Basename 'basename';

sub paraprint;

BEGIN {
    eval { require Mail::Send;};
    $::HaveSend = ($@ eq "");
    eval { require Mail::Util; } ;
    $::HaveUtil = ($@ eq "");
    # use secure tempfiles wherever possible
    eval { require File::Temp; };
    $::HaveTemp = ($@ eq "");
    eval { require Module::CoreList; };
    $::HaveCoreList = ($@ eq "");
};

my $Version = "1.39";

# Changed in 1.06 to skip Mail::Send and Mail::Util if not available.
# Changed in 1.07 to see more sendmail execs, and added pipe output.
# Changed in 1.08 to use correct address for sendmail.
# Changed in 1.09 to close the REP file before calling it up in the editor.
#                 Also removed some old comments duplicated elsewhere.
# Changed in 1.10 to run under VMS without Mail::Send; also fixed
#                 temp filename generation.
# Changed in 1.11 to clean up some text and removed Mail::Send deactivator.
# Changed in 1.12 to check for editor errors, make save/send distinction
#                 clearer and add $ENV{REPLYTO}.
# Changed in 1.13 to hopefully make it more difficult to accidentally
#                 send mail
# Changed in 1.14 to make the prompts a little more clear on providing
#                 helpful information. Also let file read fail gracefully.
# Changed in 1.15 to add warnings to stop people using perlbug for non-bugs.
#                 Also report selected environment variables.
# Changed in 1.16 to include @INC, and allow user to re-edit if no changes.
# Changed in 1.17 Win32 support added.  GSAR 97-04-12
# Changed in 1.18 add '-ok' option for reporting build success. CFR 97-06-18
# Changed in 1.19 '-ok' default not '-v'
#                 add local patch information
#                 warn on '-ok' if this is an old system; add '-okay'
# Changed in 1.20 Added patchlevel.h reading and version/config checks
# Changed in 1.21 Added '-nok' for reporting build failure DFD 98-05-05
# Changed in 1.22 Heavy reformatting & minor bugfixes HVDS 98-05-10
# Changed in 1.23 Restore -ok(ay): say 'success'; don't prompt
# Changed in 1.24 Added '-F<file>' to save report HVDS 98-07-01
# Changed in 1.25 Warn on failure to open save file. HVDS 98-07-12
# Changed in 1.26 Don't require -t STDIN for -ok. HVDS 98-07-15
# Changed in 1.27 Added Mac OS and File::Spec support CNANDOR 99-07-27
# Changed in 1.28 Additional questions for Perlbugtron RFOLEY 20.03.2000
# Changed in 1.29 Perlbug(tron): auto(-ok), short prompts RFOLEY 05-05-2000
# Changed in 1.30 Added warnings on failure to open files MSTEVENS 13-07-2000
# Changed in 1.31 Add checks on close().Fix my $var unless. TJENNESS 26-07-2000
# Changed in 1.32 Use File::Spec->tmpdir TJENNESS 20-08-2000
# Changed in 1.33 Don't require -t STDOUT for -ok.
# Changed in 1.34 Added Message-Id RFOLEY 18-06-2002 
# Changed in 1.35 Use File::Temp (patch from Solar Designer) NWCLARK 28-02-2004
# Changed in 1.36 Initial Module::CoreList support Alexandr Ciornii 11-07-2007
# Changed in 1.37 Killed some string evals, rewrote most prose JESSE 2008-06-08
# Changed in 1.38 Actually enforce the CoreList check,
#                 Record the module the user enters if they do so
#                 Refactor prompts to use common code           JESSE 2008-06-08
# Changed in 1.39 Trap mail sending failures (simple ones) so   JESSE 2008-06-08
#                 users might be able to recover their bug reports
#                 Refactor mail sending routines
#                 Unify message building code
#                 Unify message header building
#                 Fix "module" prompting to not squish "category" prompting 
#                 use warnings; (except 'once' warnings)
#                 Unified report fingerprint/change detection code
#                 Removed some labeled 'gotos'
#TODO:
#       make sure failure (transmission-wise) of Mail::Send is accounted for.
#       (This may work now. Unsure of the original author's issue -JESSE 2008-06-08)
#       - Test -b option

my( $file, $usefile, $cc, $address, $bugaddress, $testaddress, $thanksaddress,
    $filename, $messageid, $domain, $subject, $from, $verbose, $ed, $outfile,
    $fh, $me, $body, $andcc, %REP, $ok, $thanks, $progname,
    $Is_MacOS, $Is_MSWin32, $Is_Linux, $Is_VMS, $Is_OpenBSD,
    $report_about_module, $category, $severity,

);

my $perl_version = $^V ? sprintf("%vd", $^V) : $];

my $config_tag2 = "$perl_version - $Config{cf_time}";

Init();

if ($::opt_h) { Help(); exit; }
if ($::opt_d) { Dump(*STDOUT); exit; }
if (!-t STDIN && !($ok and not $::opt_n)) {
    paraprint <<"EOF";
Please use $progname interactively. If you want to
include a file, you can use the -f switch.
EOF
    die "\n";
}

Query();
Edit() unless $usefile || ($ok and not $::opt_n);
NowWhat();
if ($outfile) {
    save_message_to_disk($outfile);
} else {
    Send();
    if ($thanks) {
	print "\nThank you for taking the time to send a thank-you message!\n\n";
    } else {
	print "\nThank you for taking the time to file a bug report!\n\n";
    }
}

exit;

sub ask_for_alternatives { # (category|severity)
    my $name = shift;
    my %alts = (
	'category' => {
	    'default' => 'core',
	    'ok'      => 'install',
	    # Inevitably some of these will end up in RT whatever we do:
	    'thanks'  => 'thanks',
	    'opts'    => [qw(core docs install library utilities)], # patch, notabug
	},
	'severity' => {
	    'default' => 'low',
	    'ok'      => 'none',
	    'thanks'  => 'none',
	    'opts'    => [qw(critical high medium low wishlist none)], # zero
	},
    );
    die "Invalid alternative ($name) requested\n" unless grep(/^$name$/, keys %alts);
    my $alt = "";
    my $what = $ok || $thanks;
    if ($what) {
	$alt = $alts{$name}{$what};
    } else {
 	my @alts = @{$alts{$name}{'opts'}};
    print "\n\n";
	paraprint <<EOF;
Please pick a $name from the following list:

    @alts
EOF
	my $err = 0;
	do {
	    if ($err++ > 5) {
		die "Invalid $name: aborting.\n";
	    }
        $alt = _prompt('', "\u$name", $alts{$name}{'default'});
		$alt ||= $alts{$name}{'default'};
	} while !((($alt) = grep(/^$alt/i, @alts)));
    }
    lc $alt;
}

sub Init {
    # -------- Setup --------

    $Is_MSWin32 = $^O eq 'MSWin32';
    $Is_VMS = $^O eq 'VMS';
    $Is_Linux = lc($^O) eq 'linux';
    $Is_OpenBSD = lc($^O) eq 'openbsd';
    $Is_MacOS = $^O eq 'MacOS';

    @ARGV = split m/\s+/,
        MacPerl::Ask('Provide command line args here (-h for help):')
        if $Is_MacOS && $MacPerl::Version =~ /App/;

    if (!getopts("Adhva:s:b:f:F:r:e:SCc:to:n:T")) { Help(); exit; };

    # This comment is needed to notify metaconfig that we are
    # using the $perladmin, $cf_by, and $cf_time definitions.

    # -------- Configuration ---------

    # perlbug address
    $bugaddress = 'perlbug@perl.org';

    # Test address
    $testaddress = 'perlbug-test@perl.org';

    # Thanks address
    $thanksaddress = 'perl-thanks@perl.org';

    if (basename ($0) =~ /^perlthanks/i) {
	# invoked as perlthanks
	$::opt_T = 1;
	$::opt_C = 1; # don't send a copy to the local admin
    }

    if ($::opt_T) {
	$thanks = 'thanks';
    }
    
    $progname = $thanks ? 'perlthanks' : 'perlbug';
    # Target address
    $address = $::opt_a || ($::opt_t ? $testaddress
			    : $thanks ? $thanksaddress : $bugaddress);

    # Users address, used in message and in Reply-To header
    $from = $::opt_r || "";

    # Include verbose configuration information
    $verbose = $::opt_v || 0;

    # Subject of bug-report message
    $subject = $::opt_s || "";

    # Send a file
    $usefile = ($::opt_f || 0);

    # File to send as report
    $file = $::opt_f || "";

    # File to output to
    $outfile = $::opt_F || "";

    # Body of report
    $body = $::opt_b || "";
	
    # Editor
    $ed = $::opt_e || $ENV{VISUAL} || $ENV{EDITOR} || $ENV{EDIT}
	|| ($Is_VMS && "edit/tpu")
	|| ($Is_MSWin32 && "notepad")
	|| ($Is_MacOS && '')
	|| "vi";

    # Not OK - provide build failure template by finessing OK report
    if ($::opt_n) {
	if (substr($::opt_n, 0, 2) eq 'ok' )	{
	    $::opt_o = substr($::opt_n, 1);
	} else {
	    Help();
	    exit();
	}
    }

    # OK - send "OK" report for build on this system
    $ok = '';
    if ($::opt_o) {
	if ($::opt_o eq 'k' or $::opt_o eq 'kay') {
	    # force these options
	    unless ($::opt_n) {
		$::opt_S = 1; # don't prompt for send
		$::opt_b = 1; # we have a body
		$body = "Perl reported to build OK on this system.\n";
	    }
	    $::opt_C = 1; # don't send a copy to the local admin
	    $::opt_s = 1; # we have a subject line
	    $subject = ($::opt_n ? 'Not ' : '')
		    . "OK: perl $perl_version ${patch_tags}on"
		    ." $::Config{'archname'} $::Config{'osvers'} $subject";
	    $ok = 'ok';
	} else {
	    Help();
	    exit();
	}
    }

    # Possible administrator addresses, in order of confidence
    # (Note that cf_email is not mentioned to metaconfig, since
    # we don't really want it. We'll just take it if we have to.)
    #
    # This has to be after the $ok stuff above because of the way
    # that $::opt_C is forced.
    $cc = $::opt_C ? "" : (
	$::opt_c || $::Config{'perladmin'}
	|| $::Config{'cf_email'} || $::Config{'cf_by'}
    );

    if ($::HaveUtil) {
		$domain = Mail::Util::maildomain();
    } elsif ($Is_MSWin32) {
		$domain = $ENV{'USERDOMAIN'};
    } else {
		require Sys::Hostname;
		$domain = Sys::Hostname::hostname();
    }

    # Message-Id - rjsf
    $messageid = "<$::Config{'version'}_${$}_".time."\@$domain>"; 

    # My username
    $me = $Is_MSWin32 ? $ENV{'USERNAME'}
	    : $^O eq 'os2' ? $ENV{'USER'} || $ENV{'LOGNAME'}
	    : $Is_MacOS ? $ENV{'USER'}
	    : eval { getpwuid($<) };	# May be missing

    $from = $::Config{'cf_email'}
       if !$from && $::Config{'cf_email'} && $::Config{'cf_by'} && $me &&
               ($me eq $::Config{'cf_by'});
} # sub Init

sub Query {
    # Explain what perlbug is
    unless ($ok) {
	if ($thanks) {
	    paraprint <<'EOF';
This program provides an easy way to send a thank-you message back to the
authors and maintainers of perl.

If you wish to submit a bug report, please run it without the -T flag
(or run the program perlbug rather than perlthanks)
EOF
	} else {
	    paraprint <<"EOF";
This program provides an easy way to create a message reporting a
bug in the core perl distribution (along with tests or patches)
to the volunteers who maintain perl at $address.  To send a thank-you
note to $thanksaddress instead of a bug report, please run 'perlthanks'.

Please do not use $0 to send test messages, test whether perl
works, or to report bugs in perl modules from CPAN.

For help using perl, try posting to the Usenet newsgroup 
comp.lang.perl.misc.
EOF
	}
    }

    # Prompt for subject of message, if needed
    
    if ($subject && TrivialSubject($subject)) {
	$subject = '';
    }

    unless ($subject) {
	    print 
"First of all, please provide a subject for the message.\n";
	if ( not $thanks)  {
	    paraprint <<EOF;
This should be a concise description of your bug or problem
which will help the volunteers working to improve perl to categorize
and resolve the issue.  Be as specific and descriptive as
you can. A subject like "perl bug" or "perl problem" will make it
much less likely that your issue gets the attention it deserves.
EOF
	}

	my $err = 0;
	do {
        $subject = _prompt('','Subject');
	    if ($err++ == 5) {
		if ($thanks) {
		    $subject = 'Thanks for Perl';
		} else {
		    die "Aborting.\n";
		}
	    }
	} while (TrivialSubject($subject));
    }

    # Prompt for return address, if needed
    unless ($from) {
	# Try and guess return address
	my $guess;

	$guess = $ENV{'REPLY-TO'} || $ENV{'REPLYTO'} || '';
        if ($Is_MacOS) {
            require Mac::InternetConfig;
            $guess = $Mac::InternetConfig::InternetConfig{
                Mac::InternetConfig::kICEmail()
            };
        }

	unless ($guess) {
		# move $domain to where we can use it elsewhere	
        if ($domain) {
		if ($Is_VMS && !$::Config{'d_socket'}) {
		    $guess = "$domain\:\:$me";
		} else {
		    $guess = "$me\@$domain" if $domain;
		}
	    }
	}

	if ($guess) {
	    unless ($ok) {
		paraprint <<EOF;
Perl's developers may need your email address to contact you for
further information about your issue or to inform you when it is
resolved.  If the default shown is not your email address, please
correct it.
EOF
	    }
	} else {
	    paraprint <<EOF;
Please enter your full internet email address so that Perl's
developers can contact you with questions about your issue or to
inform you that it has been resolved.
EOF
	}

	if ($ok && $guess) {
	    # use it
	    $from = $guess;
	} else {
	    # verify it
        $from = _prompt('','Your address',$guess);
	    $from = $guess if $from eq '';
	}
    }

    if ($from eq $cc or $me eq $cc) {
	# Try not to copy ourselves
	$cc = "yourself";
    }

    # Prompt for administrator address, unless an override was given
    if( !$::opt_C and !$::opt_c ) {
	my $description =  <<EOF;
$0 can send a copy of this report to your local perl
administrator.  If the address below is wrong, please correct it,
or enter 'none' or 'yourself' to not send a copy.
EOF
	my $entry = _prompt($description, "Local perl administrator", $cc);

	if ($entry ne "") {
	    $cc = $entry;
	    $cc = '' if $me eq $cc;
	}
    }

    $cc = '' if $cc =~ /^(none|yourself|me|myself|ourselves)$/i;
    if ($cc) { 
        $andcc = " and $cc" 
    } else {
        $andcc = ''
    }

    # Prompt for editor, if no override is given
editor:
    unless ($::opt_e || $::opt_f || $::opt_b) {

    my $description;

	chomp (my $common_end = <<"EOF");
You will probably want to use a text editor to enter the body of
your report. If "$ed" is the editor you want to use, then just press
Enter, otherwise type in the name of the editor you would like to
use.

If you have already composed the body of your report, you may enter
"file", and $0 will prompt you to enter the name of the file
containing your report.
EOF

	if ($thanks) {
	    $description = <<"EOF";
It's now time to compose your thank-you message.

Some information about your local perl configuration will automatically
be included at the end of your message, because we're curious about
the different ways that people build and use perl. If you'd rather
not share this information, you're welcome to delete it.

$common_end
EOF
	} else {
	    $description =  <<"EOF";
It's now time to compose your bug report. Try to make the report
concise but descriptive. Please include any detail which you think
might be relevant or might help the volunteers working to improve
perl. If you are reporting something that does not work as you think
it should, please try to include examples of the actual result and of
what you expected.

Some information about your local perl configuration will automatically
be included at the end of your report. If you are using an unusual
version of perl, it would be useful if you could confirm that you
can replicate the problem on a standard build of perl as well.

$common_end
EOF
	}

    my $entry = _prompt($description, "Editor", $ed);
	$usefile = 0;
	if ($entry eq "file") {
	    $usefile = 1;
	} elsif ($entry ne "") {
	    $ed = $entry;
	}
    }
    if ($::HaveCoreList && !$ok && !$thanks) {
	my $description =  <<EOF;
If your bug is about a Perl module rather than a core language
feature, please enter its name here. If it's not, just hit Enter
to skip this question.
EOF

    my $entry = '';
	while ($entry eq '') {
        $entry = _prompt($description, 'Module');
	    my $first_release = Module::CoreList->first_release($entry);
	    if ($entry and not $first_release) {
		paraprint <<EOF;
$entry is not a "core" Perl module. Please check that you entered
its name correctly. If it is correct, quit this program, try searching
for $entry on http://rt.cpan.org, and report your issue there.
EOF

            $entry = '';
        } elsif ($entry) {
	        $category ||= 'library';
	        $report_about_module = $entry;
            last;
        } else {
            last;
        }
	}
    }

    # Prompt for category of bug
    $category ||= ask_for_alternatives('category');

    # Prompt for severity of bug
    $severity ||= ask_for_alternatives('severity');

    # Generate scratch file to edit report in
    $filename = filename();

    # Prompt for file to read report from, if needed
    if ($usefile and !$file) {
filename:
	my $description = <<EOF;
What is the name of the file that contains your report?
EOF
	my $entry = _prompt($description, "Filename");

	if ($entry eq "") {
	    paraprint <<EOF;
It seems you didn't enter a filename. Please choose to use a text
editor or enter a filename.
EOF
	    goto editor;
	}

	unless (-f $entry and -r $entry) {
	    paraprint <<EOF;
'$entry' doesn't seem to be a readable file.  You may have mistyped
its name or may not have permission to read it.

If you don't want to use a file as the content of your report, just
hit Enter and you'll be able to select a text editor instead.
EOF
	    goto filename;
	}
	$file = $entry;
    }

    # Generate report
    open(REP,">$filename") or die "Unable to create report file '$filename': $!\n";
    my $reptype = !$ok ? ($thanks ? 'thank-you' : 'bug')
	: $::opt_n ? "build failure" : "success";

    print REP <<EOF;
This is a $reptype report for perl from $from,
generated with the help of perlbug $Version running under perl $perl_version.

EOF

    if ($body) {
	print REP $body;
    } elsif ($usefile) {
	open(F, "<$file")
		or die "Unable to read report file from '$file': $!\n";
	while (<F>) {
	    print REP $_
	}
	close(F) or die "Error closing '$file': $!";
    } else {
	if ($thanks) {
	    print REP <<'EOF';

-----------------------------------------------------------------
[Please enter your thank-you message here]



[You're welcome to delete anything below this line]
-----------------------------------------------------------------
EOF
	} else {
	    print REP <<'EOF';

-----------------------------------------------------------------
[Please describe your issue here]



[Please do not change anything below this line]
-----------------------------------------------------------------
EOF
	}
    }
    Dump(*REP);
    close(REP) or die "Error closing report file: $!";

    # Set up an initial report fingerprint so we can compare it later
    _fingerprint_lines_in_report();

} # sub Query

sub Dump {
    local(*OUT) = @_;

    print OUT <<EFF;
---
Flags:
    category=$category
    severity=$severity
EFF

    if ($report_about_module ) { 
        print OUT <<EFF;
    module=$report_about_module
EFF
    }
    if ($::opt_A) {
	print OUT <<EFF;
    ack=no
EFF
    }
    print OUT <<EFF;
---
EFF
    print OUT "This perlbug was built using Perl $config_tag1 in the Fedora build system.\n",
	    "It is being executed now by Perl $config_tag2.\n\n"
	if $config_tag2 ne $config_tag1;

    print OUT <<EOF;
Site configuration information for perl $perl_version:

EOF
    if ($::Config{cf_by} and $::Config{cf_time}) {
	print OUT "Configured by $::Config{cf_by} at $::Config{cf_time}.\n\n";
    }
    print OUT Config::myconfig;

    if (@patches) {
	print OUT join "\n    ", "Locally applied patches:", @patches;
	print OUT "\n";
    };

    print OUT <<EOF;

---
\@INC for perl $perl_version:
EOF
    for my $i (@INC) {
	print OUT "    $i\n";
    }

    print OUT <<EOF;

---
Environment for perl $perl_version:
EOF
    my @env =
        qw(PATH LD_LIBRARY_PATH LANG PERL_BADLANG SHELL HOME LOGDIR LANGUAGE);
    push @env, $Config{ldlibpthname} if $Config{ldlibpthname} ne '';
    push @env, grep /^(?:PERL|LC_|LANG|CYGWIN)/, keys %ENV;
    my %env;
    @env{@env} = @env;
    for my $env (sort keys %env) {
	print OUT "    $env",
		exists $ENV{$env} ? "=$ENV{$env}" : ' (unset)',
		"\n";
    }
    if ($verbose) {
	print OUT "\nComplete configuration data for perl $perl_version:\n\n";
	my $value;
	foreach (sort keys %::Config) {
	    $value = $::Config{$_};
	    $value =~ s/'/\\'/g;
	    print OUT "$_='$value'\n";
	}
    }
} # sub Dump

sub Edit {
    # Edit the report
    if ($usefile || $body) {
	my $description = "Please make sure that the name of the editor you want to use is correct.";
	my $entry = _prompt($description, 'Editor', $ed);
	$ed = $entry unless $entry eq '';
    }

    _edit_file($ed);
}

sub _edit_file {
    my $editor = shift;

    my $report_written = 0;

    while ( !$report_written ) {
        if ($Is_MacOS) {
            require ExtUtils::MakeMaker;
            ExtUtils::MM_MacOS::launch_file($filename);
            _prompt('', "Press Enter when done." );
        } else {    # we're not on oldschool mac os
            my $exit_status = system("$editor $filename");
            if ($exit_status) {
                my $desc = <<EOF;
The editor you chose ('$editor') could not be run!

If you mistyped its name, please enter it now, otherwise just press Enter.
EOF
                my $entry = _prompt( $desc, 'Editor', $editor );
                if ( $entry ne "" ) {
                    $editor = $entry;
                    next;
                } else {
                    paraprint <<EOF;
You may want to save your report to a file, so you can edit and
mail it later.
EOF
                    return;
                }
            }
        }
        return if ( $ok and not $::opt_n ) || $body;

        # Check that we have a report that has some, eh, report in it.

        unless ( _fingerprint_lines_in_report() ) {
            my $description = <<EOF;
It looks like you didn't enter a report. You may [r]etry your edit
or [c]ancel this report.
EOF
            my $action = _prompt( $description, "Action (Retry/Cancel) " );
            if ( $action =~ /^[re]/i ) {    # <R>etry <E>dit
                next;
            } elsif ( $action =~ /^[cq]/i ) {    # <C>ancel, <Q>uit
                Cancel();                        # cancel exits
            }
        }
        # Ok. the user did what they needed to;
        return;

    }
}


sub Cancel {
    1 while unlink($filename);  # remove all versions under VMS
    print "\nQuitting without sending your message.\n";
    exit(0);
}

sub NowWhat {
    # Report is done, prompt for further action
    if( !$::opt_S ) {
	while(1) {
	    my $menu = <<EOF;


You have finished composing your message. At this point, you have 
a few options. You can:

    * [Se]end the message to $address$andcc, 
    * [D]isplay the message on the screen,
    * [R]e-edit the message
    * Display or change the message's [su]bject
    * Save the message to a [f]ile to mail at another time
    * [Q]uit without sending a message

EOF
      retry:
        print $menu;
	    my $action =  _prompt('', "Action (Send/Display/Edit/Subject/Save to File)");;
        print "\n";
	    if ($action =~ /^(f|sa)/i) { # <F>ile/<Sa>ve
            if ( SaveMessage() ) { exit }
	    } elsif ($action =~ /^(d|l|sh)/i ) { # <D>isplay, <L>ist, <Sh>ow
		# Display the message
		open(REP, "<$filename") or die "Couldn't open file '$filename': $!\n";
		while (<REP>) { print $_ }
		close(REP) or die "Error closing report file '$filename': $!";
	    } elsif ($action =~ /^su/i) { # <Su>bject
		my $reply = _prompt( "Subject: $subject", "If the above subject is fine, press Enter. Otherwise, type a replacement now\nSubject");
		if ($reply ne '') {
		    unless (TrivialSubject($reply)) {
			$subject = $reply;
			print "Subject: $subject\n";
		    }
		}
	    } elsif ($action =~ /^se/i) { # <S>end
		# Send the message
		my $reply =  _prompt( "Are you certain you want to send this message?", 'Please type "yes" if you are','no');
		if ($reply =~ /^yes$/) {
		    last;
		} else {
		    paraprint <<EOF;
You didn't type "yes", so your message has not yet been sent.
EOF
		}
	    } elsif ($action =~ /^[er]/i) { # <E>dit, <R>e-edit
		# edit the message
		Edit();
	    } elsif ($action =~ /^[qc]/i) { # <C>ancel, <Q>uit
		Cancel();
	    } elsif ($action =~ /^s/i) {
		paraprint <<EOF;
The command you entered was ambiguous. Please type "send", "save" or "subject".
EOF
	    }
	}
    }
} # sub NowWhat

sub TrivialSubject {
    my $subject = shift;
    if ($subject =~
	/^(y(es)?|no?|help|perl( (bug|problem))?|bug|problem)$/i ||
	length($subject) < 4 ||
	$subject !~ /\s/) {
	print "\nThe subject you entered wasn't very descriptive. Please try again.\n\n";
        return 1;
    } else {
	return 0;
    }
}

sub SaveMessage {
    my $file_save = $outfile || "$progname.rep";
    my $file = _prompt( '', "Name of file to save message in", $file_save );
    save_message_to_disk($file) || return undef;
    print "\n";
    paraprint <<EOF;
A copy of your message has been saved in '$file' for you to
send to '$address' with your normal mail client.
EOF
}

sub Send {

    # Message has been accepted for transmission -- Send the message

    # on linux certain "mail" implementations won't accept the subject
    # as "~s subject" and thus the Subject header will be corrupted
    # so don't use Mail::Send to be safe
    eval {
        if ( $::HaveSend && !$Is_Linux && !$Is_OpenBSD ) {
            _send_message_mailsend();
        } elsif ($Is_VMS) {
            _send_message_vms();
        } else {
            _send_message_sendmail();
        }
    };

    if ( my $error = $@ ) {
        paraprint <<EOF;
$0 has detected an error while trying to send your message: $error.

Your message may not have been sent. You will now have a chance to save a copy to disk.
EOF
        SaveMessage();
        return;
    }

    1 while unlink($filename);    # remove all versions under VMS
}    # sub Send

sub Help {
    print <<EOF;

This program is designed to help you generate and send bug reports
(and thank-you notes) about perl5 and the modules which ship with it.

In most cases, you can just run "$0" interactively from a command
line without any special arguments and follow the prompts.

Advanced usage:

$0  [-v] [-a address] [-s subject] [-b body | -f inpufile ] [ -F outputfile ]
    [-r returnaddress] [-e editor] [-c adminaddress | -C] [-S] [-t] [-h]
$0  [-v] [-r returnaddress] [-A] [-ok | -okay | -nok | -nokay]


Options:

  -v    Include Verbose configuration data in the report
  -f    File containing the body of the report. Use this to
        quickly send a prepared message.
  -F    File to output the resulting mail message to, instead of mailing.
  -S    Send without asking for confirmation.
  -a    Address to send the report to. Defaults to '$address'.
  -c    Address to send copy of report to. Defaults to '$cc'.
  -C    Don't send copy to administrator.
  -s    Subject to include with the message. You will be prompted
        if you don't supply one on the command line.
  -b    Body of the report. If not included on the command line, or
        in a file with -f, you will get a chance to edit the message.
  -r    Your return address. The program will ask you to confirm
        this if you don't give it here.
  -e    Editor to use.
  -t    Test mode. The target address defaults to '$testaddress'.
  -T    Thank-you mode. The target address defaults to '$thanksaddress'.
  -d    Data mode.  This prints out your configuration data, without mailing
        anything. You can use this with -v to get more complete data.
  -A    Don't send a bug received acknowledgement to the return address.
  -ok   Report successful build on this system to perl porters
        (use alone or with -v). Only use -ok if *everything* was ok:
        if there were *any* problems at all, use -nok.
  -okay As -ok but allow report from old builds.
  -nok  Report unsuccessful build on this system to perl porters
        (use alone or with -v). You must describe what went wrong
        in the body of the report which you will be asked to edit.
  -nokay As -nok but allow report from old builds.
  -h    Print this help message.

EOF
}

sub filename {
    if ($::HaveTemp) {
	# Good. Use a secure temp file
	my ($fh, $filename) = File::Temp::tempfile(UNLINK => 1);
	close($fh);
	return $filename;
    } else {
	# Bah. Fall back to doing things less securely.
	my $dir = File::Spec->tmpdir();
	$filename = "bugrep0$$";
	$filename++ while -e File::Spec->catfile($dir, $filename);
	$filename = File::Spec->catfile($dir, $filename);
    }
}

sub paraprint {
    my @paragraphs = split /\n{2,}/, "@_";
    for (@paragraphs) {   # implicit local $_
	s/(\S)\s*\n/$1 /g;
	write;
	print "\n";
    }
}

sub _prompt {
    my ($explanation, $prompt, $default) = (@_);
    if ($explanation) {
        print "\n\n";
        paraprint $explanation;
    }
    print $prompt. ($default ? " [$default]" :''). ": ";
	my $result = scalar(<>);
    chomp($result);
	$result =~ s/^\s*(.*?)\s*$/$1/s;
    if ($default && $result eq '') {
        return $default;
    } else {
        return $result;
    }
}

sub _build_header {
    my %attr = (@_);

    my $head = '';
    for my $header (keys %attr) {
        $head .= "$header: ".$attr{$header}."\n";
    }
    return $head;
}

sub _message_headers {
    my %headers = ( To => $address, Subject => $subject );
    $headers{'Cc'}         = $cc        if ($cc);
    $headers{'Message-Id'} = $messageid if ($messageid);
    $headers{'Reply-To'}   = $from      if ($from);
    return \%headers;
}

sub build_complete_message {
    my $content = _build_header(%{_message_headers()}) . "\n\n";
    open( REP, "<$filename" ) or die "Couldn't open file '$filename': $!\n";
    while (<REP>) { $content .= $_; }
    close(REP) or die "Error closing report file '$filename': $!";
    return $content;
}

sub save_message_to_disk {
    my $file = shift;

	    open OUTFILE, ">$file" or do { warn  "Couldn't open '$file': $!\n"; return undef};
        print OUTFILE build_complete_message();
        close(OUTFILE) or do { warn  "Error closing $file: $!"; return undef };
	    print "\nMessage saved.\n";
        return 1;
}

sub _send_message_vms {
    if (   ( $address =~ /@/ and $address !~ /^\w+%"/ )
        or ( $cc =~ /@/ and $cc !~ /^\w+%"/ ) ) {
        my $prefix;
        foreach ( qw[ IN MX SMTP UCX PONY WINS ], '' ) {
            $prefix = "$_%", last if $ENV{"MAIL\$PROTOCOL_$_"};
        }
        $address = qq[${prefix}"$address"] unless $address =~ /^\w+%"/;
        $cc = qq[${prefix}"$cc"] unless !$cc || $cc =~ /^\w+%"/;
    }
    $subject =~ s/"/""/g;
    $address =~ s/"/""/g;
    $cc      =~ s/"/""/g;
    my $sts = system(qq[mail/Subject="$subject" $filename. "$address","$cc"]);
    if ($sts) {
        die "Can't spawn off mail (leaving bug report in $filename): $sts";
    }
}

sub _send_message_mailsend {
    my $msg = Mail::Send->new();
    my %headers = %{_message_headers()};
    for my $key ( keys %headers) {
        $msg->add($key => $headers{$key});
    }

    $fh = $msg->open;
    open(REP, "<$filename") or die "Couldn't open '$filename': $!\n";
    while (<REP>) { print $fh $_ }
    close(REP) or die "Error closing $filename: $!";
    $fh->close;

    print "\nMessage sent.\n";
}

sub _probe_for_sendmail {
    my $sendmail = "";
    for (qw(/usr/lib/sendmail /usr/sbin/sendmail /usr/ucblib/sendmail)) {
        $sendmail = $_, last if -e $_;
    }
    if ( $^O eq 'os2' and $sendmail eq "" ) {
        my $path = $ENV{PATH};
        $path =~ s:\\:/:;
        my @path = split /$Config{'path_sep'}/, $path;
        for (@path) {
            $sendmail = "$_/sendmail",     last if -e "$_/sendmail";
            $sendmail = "$_/sendmail.exe", last if -e "$_/sendmail.exe";
        }
    }
    return $sendmail;
}

sub _send_message_sendmail {
    my $sendmail = _probe_for_sendmail();
    unless ($sendmail) {
        paraprint(<<"EOF"), die "\n";
It appears that there is no program which looks like "sendmail" on
your system and that the Mail::Send library from CPAN isn't available.
Because of this, there's no easy way to automatically send your
message.

A copy of your message has been saved in '$filename' for you to
send to '$address' with your normal mail client.
EOF
    }

    open( SENDMAIL, "|$sendmail -t -oi" )
        || die "'|$sendmail -t -oi' failed: $!";
    print SENDMAIL build_complete_message();
    if ( close(SENDMAIL) ) {
        print "\nMessage sent\n";
    } else {
        warn "\nSendmail returned status '", $? >> 8, "'\n";
    }
}



# a strange way to check whether any significant editing
# has been done: check whether any new non-empty lines
# have been added.

sub _fingerprint_lines_in_report {
    my $new_lines = 0;
    # read in the report template once so that
    # we can track whether the user does any editing.
    # yes, *all* whitespace is ignored.

    open(REP, "<$filename") or die "Unable to open report file '$filename': $!\n";
    while (my $line = <REP>) {
        $line =~ s/\s+//g;
        $new_lines++ if (!$REP{$line});

    }
    close(REP) or die "Error closing report file '$filename': $!";
    # returns the number of lines with content that wasn't there when last we looked
    return $new_lines;
}



format STDOUT =
^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
$_
.

__END__

=head1 NAME

perlbug - how to submit bug reports on Perl

=head1 SYNOPSIS

B<perlbug>

B<perlbug> S<[ B<-v> ]> S<[ B<-a> I<address> ]> S<[ B<-s> I<subject> ]>
S<[ B<-b> I<body> | B<-f> I<inputfile> ]> S<[ B<-F> I<outputfile> ]>
S<[ B<-r> I<returnaddress> ]>
S<[ B<-e> I<editor> ]> S<[ B<-c> I<adminaddress> | B<-C> ]>
S<[ B<-S> ]> S<[ B<-t> ]>  S<[ B<-d> ]>  S<[ B<-A> ]>  S<[ B<-h> ]> S<[ B<-T> ]>

B<perlbug> S<[ B<-v> ]> S<[ B<-r> I<returnaddress> ]>
 S<[ B<-A> ]> S<[ B<-ok> | B<-okay> | B<-nok> | B<-nokay> ]>

B<perlthanks>

=head1 DESCRIPTION


This program is designed to help you generate and send bug reports
(and thank-you notes) about perl5 and the modules which ship with it.

In most cases, you can just run it interactively from a command
line without any special arguments and follow the prompts.

If you have found a bug with a non-standard port (one that was not
part of the I<standard distribution>), a binary distribution, or a
non-core module (such as Tk, DBI, etc), then please see the
documentation that came with that distribution to determine the
correct place to report bugs.

If you are unable to send your report using B<perlbug> (most likely
because your system doesn't have a way to send mail that perlbug
recognizes), you may be able to use this tool to compose your report
and save it to a file which you can then send to B<perlbug@perl.org>
using your regular mail client.

In extreme cases, B<perlbug> may not work well enough on your system
to guide you through composing a bug report. In those cases, you
may be able to use B<perlbug -d> to get system configuration
information to include in a manually composed bug report to
B<perlbug@perl.org>.


When reporting a bug, please run through this checklist:

=over 4

=item What version of Perl you are running?

Type C<perl -v> at the command line to find out.

=item Are you running the latest released version of perl?

Look at http://www.perl.org/ to find out.  If you are not using the
latest released version, please try to replicate your bug on the
latest stable release.

Note that reports about bugs in old versions of Perl, especially
those which indicate you haven't also tested the current stable
release of Perl, are likely to receive less attention from the
volunteers who build and maintain Perl than reports about bugs in
the current release.

This tool isn't apropriate for reporting bugs in any version
prior to Perl 5.0.

=item Are you sure what you have is a bug?

A significant number of the bug reports we get turn out to be
documented features in Perl.  Make sure the issue you've run into
isn't intentional by glancing through the documentation that comes
with the Perl distribution.

Given the sheer volume of Perl documentation, this isn't a trivial
undertaking, but if you can point to documentation that suggests
the behaviour you're seeing is I<wrong>, your issue is likely to
receive more attention. You may want to start with B<perldoc>
L<perltrap> for pointers to common traps that new (and experienced)
Perl programmers run into.

If you're unsure of the meaning of an error message you've run
across, B<perldoc> L<perldiag> for an explanation.  If the message
isn't in perldiag, it probably isn't generated by Perl.  You may
have luck consulting your operating system documentation instead.

If you are on a non-UNIX platform B<perldoc> L<perlport>, as some
features may be unimplemented or work differently.

You may be able to figure out what's going wrong using the Perl
debugger.  For information about how to use the debugger B<perldoc>
L<perldebug>.

=item Do you have a proper test case?

The easier it is to reproduce your bug, the more likely it will be
fixed -- if nobody can duplicate your problem, it probably won't be 
addressed.

A good test case has most of these attributes: short, simple code;
few dependencies on external commands, modules, or libraries; no
platform-dependent code (unless it's a platform-specific bug);
clear, simple documentation.

A good test case is almost always a good candidate to be included in
Perl's test suite.  If you have the time, consider writing your test case so
that it can be easily included into the standard test suite.

=item Have you included all relevant information?

Be sure to include the B<exact> error messages, if any.
"Perl gave an error" is not an exact error message.

If you get a core dump (or equivalent), you may use a debugger
(B<dbx>, B<gdb>, etc) to produce a stack trace to include in the bug
report.  

NOTE: unless your Perl has been compiled with debug info
(often B<-g>), the stack trace is likely to be somewhat hard to use
because it will most probably contain only the function names and not
their arguments.  If possible, recompile your Perl with debug info and
reproduce the crash and the stack trace.

=item Can you describe the bug in plain English?

The easier it is to understand a reproducible bug, the more likely
it will be fixed.  Any insight you can provide into the problem
will help a great deal.  In other words, try to analyze the problem
(to the extent you can) and report your discoveries.

=item Can you fix the bug yourself?

A bug report which I<includes a patch to fix it> will almost
definitely be fixed.  When sending a patch, please use the C<diff>
program with the C<-u> option to generate "unified" diff files.
Bug reports with patches are likely to receive significantly more
attention and interest than those without patches.

Your patch may be returned with requests for changes, or requests for more
detailed explanations about your fix.

Here are a few hints for creating high-quality patches:

Make sure the patch is not reversed (the first argument to diff is
typically the original file, the second argument your changed file).
Make sure you test your patch by applying it with the C<patch>
program before you send it on its way.  Try to follow the same style
as the code you are trying to patch.  Make sure your patch really
does work (C<make test>, if the thing you're patching is covered
by Perl's test suite).

=item Can you use C<perlbug> to submit the report?

B<perlbug> will, amongst other things, ensure your report includes
crucial information about your version of perl.  If C<perlbug> is
unable to mail your report after you have typed it in, you may have
to compose the message yourself, add the output produced by C<perlbug
-d> and email it to B<perlbug@perl.org>.  If, for some reason, you
cannot run C<perlbug> at all on your system, be sure to include the
entire output produced by running C<perl -V> (note the uppercase V).

Whether you use C<perlbug> or send the email manually, please make
your Subject line informative.  "a bug" is not informative.  Neither
is "perl crashes" nor is "HELP!!!".  These don't help.  A compact
description of what's wrong is fine.

=item Can you use C<perlbug> to submit a thank-you note?

Yes, you can do this by either using the C<-T> option, or by invoking
the program as C<perlthanks>. Thank-you notes are good. It makes people
smile. 

=back

Having done your bit, please be prepared to wait, to be told the
bug is in your code, or possibly to get no reply at all.  The
volunteers who maintain Perl are busy folks, so if your problem is
an obvious bug in your own code, is difficult to understand or is
a duplicate of an existing report, you may not receive a personal
reply.

If it is important to you that your bug be fixed, do monitor the
perl5-porters@perl.org mailing list and the commit logs to development
versions of Perl, and encourage the maintainers with kind words or
offers of frosty beverages.  (Please do be kind to the maintainers.
Harassing or flaming them is likely to have the opposite effect of
the one you want.)

Feel free to update the ticket about your bug on http://rt.perl.org
if a new version of Perl is released and your bug is still present.

=head1 OPTIONS

=over 8

=item B<-a>

Address to send the report to.  Defaults to B<perlbug@perl.org>.

=item B<-A>

Don't send a bug received acknowledgement to the reply address.
Generally it is only a sensible to use this option if you are a
perl maintainer actively watching perl porters for your message to
arrive.

=item B<-b>

Body of the report.  If not included on the command line, or
in a file with B<-f>, you will get a chance to edit the message.

=item B<-C>

Don't send copy to administrator.

=item B<-c>

Address to send copy of report to.  Defaults to the address of the
local perl administrator (recorded when perl was built).

=item B<-d>

Data mode (the default if you redirect or pipe output).  This prints out
your configuration data, without mailing anything.  You can use this
with B<-v> to get more complete data.

=item B<-e>

Editor to use.

=item B<-f>

File containing the body of the report.  Use this to quickly send a
prepared message.

=item B<-F>

File to output the results to instead of sending as an email. Useful
particularly when running perlbug on a machine with no direct internet
connection.

=item B<-h>

Prints a brief summary of the options.

=item B<-ok>

Report successful build on this system to perl porters. Forces B<-S>
and B<-C>. Forces and supplies values for B<-s> and B<-b>. Only
prompts for a return address if it cannot guess it (for use with
B<make>). Honors return address specified with B<-r>.  You can use this
with B<-v> to get more complete data.   Only makes a report if this
system is less than 60 days old.

=item B<-okay>

As B<-ok> except it will report on older systems.

=item B<-nok>

Report unsuccessful build on this system.  Forces B<-C>.  Forces and
supplies a value for B<-s>, then requires you to edit the report
and say what went wrong.  Alternatively, a prepared report may be
supplied using B<-f>.  Only prompts for a return address if it
cannot guess it (for use with B<make>). Honors return address
specified with B<-r>.  You can use this with B<-v> to get more
complete data.  Only makes a report if this system is less than 60
days old.

=item B<-nokay>

As B<-nok> except it will report on older systems.

=item B<-r>

Your return address.  The program will ask you to confirm its default
if you don't use this option.

=item B<-S>

Send without asking for confirmation.

=item B<-s>

Subject to include with the message.  You will be prompted if you don't
supply one on the command line.

=item B<-t>

Test mode.  The target address defaults to B<perlbug-test@perl.org>.

=item B<-T>

Send a thank-you note instead of a bug report. 

=item B<-v>

Include verbose configuration data in the report.

=back

=head1 AUTHORS

Kenneth Albanowski (E<lt>kjahds@kjahds.comE<gt>), subsequently
I<doc>tored by Gurusamy Sarathy (E<lt>gsar@activestate.comE<gt>),
Tom Christiansen (E<lt>tchrist@perl.comE<gt>), Nathan Torkington
(E<lt>gnat@frii.comE<gt>), Charles F. Randall (E<lt>cfr@pobox.comE<gt>),
Mike Guy (E<lt>mjtg@cam.a.ukE<gt>), Dominic Dunlop
(E<lt>domo@computer.orgE<gt>), Hugo van der Sanden (E<lt>hv@crypt.org<gt>),
Jarkko Hietaniemi (E<lt>jhi@iki.fiE<gt>), Chris Nandor
(E<lt>pudge@pobox.comE<gt>), Jon Orwant (E<lt>orwant@media.mit.eduE<gt>,
Richard Foley (E<lt>richard.foley@rfi.netE<gt>), and Jesse Vincent
(E<lt>jesse@bestpractical.com<gt>).

=head1 SEE ALSO

perl(1), perldebug(1), perldiag(1), perlport(1), perltrap(1),
diff(1), patch(1), dbx(1), gdb(1)

=head1 BUGS

None known (guess what must have been used to report them?)

=cut

N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
December 17 2013 20:22:10
0 / 0
0755
.fipscheck.hmac
0.063 KB
December 07 2011 19:13:53
0 / 0
0644
.ssh.hmac
0.063 KB
August 31 2017 17:40:43
0 / 0
0644
GET
14.179 KB
March 22 2017 10:41:08
0 / 0
0755
HEAD
14.179 KB
March 22 2017 10:41:08
0 / 0
0755
POST
14.179 KB
March 22 2017 10:41:08
0 / 0
0755
[
32.625 KB
June 19 2018 15:15:55
0 / 0
0755
a2p
104.289 KB
March 22 2017 11:02:38
0 / 0
0755
ab
49.539 KB
June 19 2018 15:45:50
0 / 0
0755
aclocal
30.45 KB
February 22 2013 04:22:35
0 / 0
0755
aclocal-1.11
30.45 KB
February 22 2013 04:22:35
0 / 0
0755
addftinfo
22.938 KB
November 11 2010 22:23:51
0 / 0
0755
addr2line
24.32 KB
June 19 2018 15:17:11
0 / 0
0755
ar
55.297 KB
June 19 2018 15:17:11
0 / 0
0755
as
320.695 KB
June 19 2018 15:17:11
0 / 0
0755
aserver
25.469 KB
May 11 2016 07:09:48
0 / 0
0755
assistant-qt4
823.32 KB
February 24 2014 14:43:34
0 / 0
0755
assistant_adp
485.828 KB
February 24 2014 14:43:34
0 / 0
0755
attr
10.156 KB
September 23 2011 18:53:58
0 / 0
0755
aulast
14.758 KB
March 22 2017 10:05:44
0 / 0
0755
aulastlog
8.891 KB
March 22 2017 10:05:44
0 / 0
0755
ausyscall
7.453 KB
March 22 2017 10:05:44
0 / 0
0755
autoconf
14.288 KB
November 11 2010 00:34:19
0 / 0
0755
autoheader
8.285 KB
November 11 2010 00:34:19
0 / 0
0755
autom4te
31.044 KB
November 11 2010 00:34:19
0 / 0
0755
automake
251.037 KB
February 22 2013 04:22:35
0 / 0
0755
automake-1.11
251.037 KB
February 22 2013 04:22:35
0 / 0
0755
autopoint
18.32 KB
June 02 2014 07:58:56
0 / 0
0755
autoreconf
19.759 KB
November 11 2010 00:34:19
0 / 0
0755
autoscan
16.665 KB
November 11 2010 00:34:19
0 / 0
0755
autoupdate
32.975 KB
November 11 2010 00:34:19
0 / 0
0755
auvirt
29.094 KB
March 22 2017 10:05:44
0 / 0
0755
awk
366.813 KB
November 10 2015 09:31:17
0 / 0
0755
base64
28.555 KB
June 19 2018 15:15:55
0 / 0
0755
bashbug-64
6.77 KB
March 23 2017 00:15:00
0 / 0
0755
berkeley_db_svc
64.625 KB
March 22 2017 01:12:20
0 / 0
0755
bison
292.828 KB
November 11 2010 01:56:53
0 / 0
0755
bmp2tiff
13.617 KB
February 01 2017 12:28:34
0 / 0
0755
bunzip2
32.164 KB
June 25 2011 01:45:54
0 / 0
0755
byacc
72.008 KB
June 22 2012 05:06:02
0 / 0
0755
bzcat
32.164 KB
June 25 2011 01:45:54
0 / 0
0755
bzcmp
2.078 KB
June 25 2011 01:45:53
0 / 0
0755
bzdiff
2.078 KB
June 25 2011 01:45:53
0 / 0
0755
bzgrep
1.638 KB
June 25 2011 01:45:53
0 / 0
0755
bzip2
32.164 KB
June 25 2011 01:45:54
0 / 0
0755
bzip2recover
10.617 KB
June 25 2011 01:45:55
0 / 0
0755
bzless
1.229 KB
June 25 2011 01:45:53
0 / 0
0755
bzmore
1.229 KB
June 25 2011 01:45:53
0 / 0
0755
c++
261.633 KB
June 19 2018 12:11:52
0 / 0
0755
c++filt
23.008 KB
June 19 2018 15:17:11
0 / 0
0755
c2ph
35.743 KB
March 22 2017 11:02:07
0 / 0
0755
c89
0.219 KB
June 19 2018 12:11:31
0 / 0
0755
c99
0.21 KB
June 19 2018 12:11:31
0 / 0
0755
ca-legacy
1.605 KB
February 28 2018 12:19:18
0 / 0
0755
cal
16.391 KB
January 26 2018 07:41:20
0 / 0
0755
captoinfo
48.664 KB
March 16 2015 08:54:01
0 / 0
0755
catchsegv
3.305 KB
June 19 2018 13:16:07
0 / 0
0755
cc
258.305 KB
June 19 2018 12:11:52
0 / 0
0755
ccache-swig
45.07 KB
September 23 2011 10:55:31
0 / 0
0755
certutil
168.602 KB
October 09 2018 15:52:00
0 / 0
0755
chacl
14.25 KB
August 22 2017 20:14:01
0 / 0
0755
chage
68.828 KB
May 10 2016 21:23:37
0 / 0
4755
chattr
10.211 KB
June 19 2018 15:42:45
0 / 0
0755
chcon
55.805 KB
June 19 2018 15:15:55
0 / 0
0755
checkmodule
270.5 KB
November 11 2010 02:31:50
0 / 0
0755
checkpolicy
278.469 KB
November 11 2010 02:31:50
0 / 0
0755
chfn
19.711 KB
January 26 2018 07:41:20
0 / 0
4711
chrt
9.398 KB
January 26 2018 07:41:20
0 / 0
0755
chsh
19.586 KB
January 26 2018 07:41:20
0 / 0
4711
chvt
6.586 KB
November 11 2010 20:45:40
0 / 0
0755
ci
86.117 KB
November 11 2010 20:17:04
0 / 0
0755
cjpeg
28.102 KB
December 09 2013 23:37:02
0 / 0
0755
cksum
24.68 KB
June 19 2018 15:15:55
0 / 0
0755
clear
4.859 KB
March 16 2015 08:54:01
0 / 0
0755
cloog
7.625 KB
November 11 2010 02:39:31
0 / 0
0755
cmp
18.797 KB
November 11 2010 04:29:05
0 / 0
0755
cmsutil
103.773 KB
October 09 2018 15:52:00
0 / 0
0755
co
83.07 KB
November 11 2010 20:17:04
0 / 0
0755
col
10.648 KB
January 26 2018 07:41:20
0 / 0
0755
colcrt
7.734 KB
January 26 2018 07:41:20
0 / 0
0755
colrm
5.445 KB
January 26 2018 07:41:20
0 / 0
0755
column
9.516 KB
January 26 2018 07:41:20
0 / 0
0755
combinediff
44.086 KB
August 19 2010 04:50:55
0 / 0
0755
comm
27.789 KB
June 19 2018 15:15:55
0 / 0
0755
cpp
261.633 KB
June 19 2018 12:11:51
0 / 0
0755
crlutil
111.617 KB
October 09 2018 15:52:00
0 / 0
0755
crontab
50.57 KB
August 23 2016 18:36:12
0 / 0
4755
cscope
322.586 KB
May 10 2016 19:22:07
0 / 0
0755
cscope-indexer
3.768 KB
June 28 2001 04:39:47
0 / 0
0755
csplit
103.68 KB
June 19 2018 15:15:55
0 / 0
0755
ctags
226.063 KB
November 11 2010 03:54:56
0 / 0
0755
curl
117.406 KB
April 03 2017 13:49:31
0 / 0
0755
cut
40.727 KB
June 19 2018 15:15:55
0 / 0
0755
cvs
616.867 KB
November 22 2013 12:29:40
0 / 0
0755
cvsbug
13.699 KB
November 22 2013 12:29:39
0 / 0
0755
db_archive
8.047 KB
March 22 2017 01:12:20
0 / 0
0755
db_checkpoint
9.953 KB
March 22 2017 01:12:20
0 / 0
0755
db_codegen
21.703 KB
March 22 2017 01:12:20
0 / 0
0755
db_deadlock
10.766 KB
March 22 2017 01:12:20
0 / 0
0755
db_dump
11.984 KB
March 22 2017 01:12:20
0 / 0
0755
db_dump185
60.297 KB
March 22 2017 01:12:20
0 / 0
0755
db_hotbackup
16.898 KB
March 22 2017 01:12:20
0 / 0
0755
db_load
22.82 KB
March 22 2017 01:12:20
0 / 0
0755
db_printlog
64.234 KB
March 22 2017 01:12:20
0 / 0
0755
db_recover
9.633 KB
March 22 2017 01:12:20
0 / 0
0755
db_stat
10.75 KB
March 22 2017 01:12:20
0 / 0
0755
db_upgrade
8.555 KB
March 22 2017 01:12:20
0 / 0
0755
db_verify
9.141 KB
March 22 2017 01:12:20
0 / 0
0755
dbilogstrip
1.431 KB
August 20 2010 00:33:01
0 / 0
0755
dbiprof
6.152 KB
August 20 2010 00:33:00
0 / 0
0755
dbiproxy
5.354 KB
August 20 2010 00:33:01
0 / 0
0755
dbus-binding-tool
81.352 KB
February 26 2013 23:38:52
0 / 0
0755
ddate
11.18 KB
January 26 2018 07:41:20
0 / 0
0755
deallocvt
7.023 KB
November 11 2010 20:45:40
0 / 0
0755
debuginfo-install
7.456 KB
July 30 2018 15:30:29
0 / 0
0755
dehtmldiff
1.319 KB
August 19 2010 04:50:53
0 / 0
0755
designer-qt4
423.391 KB
February 24 2014 14:43:34
0 / 0
0755
diff
79.18 KB
November 11 2010 04:29:05
0 / 0
0755
diff3
22.93 KB
November 11 2010 04:29:05
0 / 0
0755
diffstat
30.844 KB
August 22 2010 23:01:54
0 / 0
0755
dir
106.648 KB
June 19 2018 15:15:55
0 / 0
0755
dircolors
32.102 KB
June 19 2018 15:15:55
0 / 0
0755
dirname
23.164 KB
June 19 2018 15:15:55
0 / 0
0755
djpeg
28.43 KB
December 09 2013 23:37:02
0 / 0
0755
doxygen
5.46 MB
September 23 2011 15:20:14
0 / 0
0755
doxytag
279.094 KB
September 23 2011 15:20:14
0 / 0
0755
dprofpp
23.524 KB
March 22 2017 11:02:07
0 / 0
0755
du
93.211 KB
June 19 2018 15:15:55
0 / 0
0755
editdiff
1.905 KB
August 19 2010 04:50:53
0 / 0
0755
env
23.273 KB
June 19 2018 15:15:55
0 / 0
0755
envsubst
26.883 KB
June 02 2014 08:00:09
0 / 0
0755
eqn
134.109 KB
November 11 2010 22:23:51
0 / 0
0755
eqn2graph
2.189 KB
November 11 2010 22:23:46
0 / 0
0755
espdiff
1.526 KB
August 19 2010 04:50:53
0 / 0
0755
eu-addr2line
19.305 KB
May 10 2016 19:05:35
0 / 0
0755
eu-ar
32.406 KB
May 10 2016 19:05:35
0 / 0
0755
eu-elfcmp
28.922 KB
May 10 2016 19:05:35
0 / 0
0755
eu-elflint
97.867 KB
May 10 2016 19:05:35
0 / 0
0755
eu-findtextrel
14.953 KB
May 10 2016 19:05:35
0 / 0
0755
eu-make-debug-archive
2.843 KB
May 10 2016 19:05:31
0 / 0
0755
eu-nm
39.875 KB
May 10 2016 19:05:35
0 / 0
0755
eu-objdump
29.695 KB
May 10 2016 19:05:35
0 / 0
0755
eu-ranlib
16.117 KB
May 10 2016 19:05:35
0 / 0
0755
eu-readelf
168.922 KB
May 10 2016 19:05:35
0 / 0
0755
eu-size
14.844 KB
May 10 2016 19:05:35
0 / 0
0755
eu-stack
23.047 KB
May 10 2016 19:05:35
0 / 0
0755
eu-strings
15.867 KB
May 10 2016 19:05:35
0 / 0
0755
eu-strip
46.461 KB
May 10 2016 19:05:35
0 / 0
0755
eu-unstrip
43.18 KB
May 10 2016 19:05:35
0 / 0
0755
expand
27.305 KB
June 19 2018 15:15:55
0 / 0
0755
expr
95.398 KB
June 19 2018 15:15:55
0 / 0
0755
f95
270.664 KB
June 19 2018 12:11:51
0 / 0
0755
factor
43.648 KB
June 19 2018 15:15:55
0 / 0
0755
fallocate
7.852 KB
January 26 2018 07:41:20
0 / 0
0755
fastjar
43 KB
June 19 2018 12:11:51
0 / 0
0755
fax2ps
14.969 KB
February 01 2017 12:28:34
0 / 0
0755
fax2tiff
13.797 KB
February 01 2017 12:28:34
0 / 0
0755
fc-cache
12.695 KB
May 27 2014 09:37:13
0 / 0
0755
fc-cat
10.875 KB
May 27 2014 09:37:13
0 / 0
0755
fc-list
8.633 KB
May 27 2014 09:37:13
0 / 0
0755
fc-match
9.758 KB
May 27 2014 09:37:13
0 / 0
0755
fc-query
7.391 KB
May 27 2014 09:37:13
0 / 0
0755
fc-scan
7.688 KB
May 27 2014 09:37:13
0 / 0
0755
fgconsole
7.141 KB
November 11 2010 20:45:39
0 / 0
0755
file
15.313 KB
May 10 2016 21:03:02
0 / 0
0755
filterdiff
40.156 KB
August 19 2010 04:50:55
0 / 0
0755
find
229.016 KB
March 01 2016 12:25:44
0 / 0
0755
find-repos-of-install
4.273 KB
July 30 2018 15:30:29
0 / 0
0755
find2perl
23.061 KB
March 22 2017 11:02:07
0 / 0
0755
fipscheck
10.266 KB
December 07 2011 19:13:53
0 / 0
0755
fipshmac
10.234 KB
December 07 2011 19:13:53
0 / 0
0755
fixcvsdiff
1.826 KB
August 19 2010 04:50:53
0 / 0
0755
flex
324.656 KB
October 15 2014 03:18:47
0 / 0
0755
flex++
324.656 KB
October 15 2014 03:18:47
0 / 0
0755
flipdiff
44.086 KB
August 19 2010 04:50:55
0 / 0
0755
flock
10.672 KB
January 26 2018 07:41:20
0 / 0
0755
floppy
23.063 KB
January 26 2018 07:41:20
0 / 0
0755
fmt
29.555 KB
June 19 2018 15:15:55
0 / 0
0755
fold
27.367 KB
June 19 2018 15:15:55
0 / 0
0755
free
9.469 KB
June 01 2018 13:28:39
0 / 0
0755
freetype-config
3.74 KB
May 10 2016 22:14:43
0 / 0
0755
ftp
83.82 KB
May 29 2013 20:49:35
0 / 0
0755
funzip
21.539 KB
March 21 2017 21:09:09
0 / 0
0755
fusermount
27.344 KB
May 11 2016 07:38:49
0 / 499
4750
g++
261.633 KB
June 19 2018 12:11:52
0 / 0
0755
gawk
366.813 KB
November 10 2015 09:31:17
0 / 0
0755
gcc
258.305 KB
June 19 2018 12:11:52
0 / 0
0755
gcj-dbtool
29.594 KB
June 19 2018 12:11:51
0 / 0
0755
gcore
1.991 KB
March 22 2017 06:57:59
0 / 0
0755
gcov
38.914 KB
June 19 2018 12:11:51
0 / 0
0755
gdb
4.28 MB
March 22 2017 06:58:01
0 / 0
0755
gdb-add-index
1.068 KB
March 22 2017 06:57:59
0 / 0
0755
gdbtui
4.28 MB
March 22 2017 06:58:01
0 / 0
0755
gdbus
29.328 KB
June 19 2018 15:42:39
0 / 0
0755
gdk-pixbuf-query-loaders-64
9.25 KB
August 31 2015 06:51:23
0 / 0
0755
gencat
22.508 KB
June 19 2018 13:27:59
0 / 0
0755
gendiff
0.572 KB
June 19 2018 15:56:06
0 / 0
0755
geqn
134.109 KB
November 11 2010 22:23:51
0 / 0
0755
getconf
22.273 KB
June 19 2018 13:27:59
0 / 0
0755
getent
27.125 KB
June 19 2018 13:27:59
0 / 0
0755
getfacl
23.031 KB
August 22 2017 20:14:01
0 / 0
0755
getfattr
18.844 KB
September 23 2011 18:53:58
0 / 0
0755
getkeycodes
7.289 KB
November 11 2010 20:45:39
0 / 0
0755
getopt
11.758 KB
January 26 2018 07:41:20
0 / 0
0755
gettext
26.859 KB
June 02 2014 08:00:09
0 / 0
0755
gettext.sh
4.544 KB
June 02 2014 07:58:29
0 / 0
0755
gettextize
40.925 KB
June 02 2014 07:58:56
0 / 0
0755
gfortran
270.664 KB
June 19 2018 12:11:51
0 / 0
0755
gif2tiff
14.898 KB
February 01 2017 12:28:34
0 / 0
0755
gij
4.656 KB
June 19 2018 12:11:51
0 / 0
0755
gindxbib
27.172 KB
November 11 2010 22:23:51
0 / 0
0755
gio-querymodules-64
7.359 KB
June 19 2018 15:42:39
0 / 0
0755
git
1.09 MB
August 17 2017 00:00:09
0 / 0
0755
git-receive-pack
1.09 MB
August 17 2017 00:00:09
0 / 0
0755
git-shell
446.805 KB
August 17 2017 00:00:09
0 / 0
0755
git-upload-archive
1.09 MB
August 17 2017 00:00:09
0 / 0
0755
git-upload-pack
456.859 KB
August 17 2017 00:00:09
0 / 0
0755
gjar
4.875 KB
June 19 2018 12:11:52
0 / 0
0755
gjarsigner
4.883 KB
June 19 2018 12:11:51
0 / 0
0755
gkeytool
4.883 KB
June 19 2018 12:11:51
0 / 0
0755
glib-compile-schemas
37.594 KB
June 19 2018 15:42:39
0 / 0
0755
glookbib
32.539 KB
November 11 2010 22:23:51
0 / 0
0755
gmake
166.578 KB
May 10 2016 18:53:59
0 / 0
0755
gneqn
0.249 KB
November 11 2010 22:23:43
0 / 0
0755
gnroff
2.345 KB
May 20 2009 00:46:49
0 / 0
0755
gorbd
4.875 KB
June 19 2018 12:11:51
0 / 0
0755
gpasswd
73.867 KB
May 10 2016 21:23:37
0 / 0
4755
gpg
743.836 KB
July 13 2018 12:49:43
0 / 0
0755
gpg-agent
290.992 KB
July 13 2018 12:49:43
0 / 0
0755
gpg-connect-agent
167.211 KB
July 13 2018 12:49:43
0 / 0
0755
gpg-error
18.141 KB
December 07 2011 17:37:21
0 / 0
0755
gpg-zip
3.226 KB
July 13 2018 12:48:43
0 / 0
0755
gpg2
743.836 KB
July 13 2018 12:49:43
0 / 0
0755
gpgconf
128.273 KB
July 13 2018 12:49:43
0 / 0
0755
gpgkey2ssh
35.047 KB
July 13 2018 12:49:43
0 / 0
0755
gpgparsemail
22.805 KB
July 13 2018 12:49:43
0 / 0
0755
gpgsplit
47.398 KB
July 13 2018 12:49:43
0 / 0
0755
gpgv
328.594 KB
July 13 2018 12:49:43
0 / 0
0755
gpgv2
328.594 KB
July 13 2018 12:49:43
0 / 0
0755
gpic
208.609 KB
November 11 2010 22:23:51
0 / 0
0755
gprof
92.734 KB
June 19 2018 15:17:11
0 / 0
0755
grefer
119.359 KB
November 11 2010 22:23:51
0 / 0
0755
grepdiff
40.156 KB
August 19 2010 04:50:55
0 / 0
0755
grepjar
84.125 KB
June 19 2018 12:11:51
0 / 0
0755
grmic
4.875 KB
June 19 2018 12:11:51
0 / 0
0755
grmid
4.875 KB
June 19 2018 12:11:51
0 / 0
0755
grmiregistry
4.883 KB
June 19 2018 12:11:51
0 / 0
0755
grn
63.875 KB
November 11 2010 22:23:51
0 / 0
0755
grodvi
79.492 KB
November 11 2010 22:23:51
0 / 0
0755
groff
63.891 KB
November 11 2010 22:23:51
0 / 0
0755
groffer
7.595 KB
November 11 2010 22:23:46
0 / 0
0755
grog
2.414 KB
November 11 2010 22:23:45
0 / 0
0755
grolbp
85.898 KB
November 11 2010 22:23:51
0 / 0
0755
grolj4
75.648 KB
November 11 2010 22:23:51
0 / 0
0755
grops
114.266 KB
November 11 2010 22:23:51
0 / 0
0755
grotty
75.492 KB
November 11 2010 22:23:51
0 / 0
0755
groups
23.836 KB
June 19 2018 15:15:55
0 / 0
0755
gserialver
4.883 KB
June 19 2018 12:11:51
0 / 0
0755
gsoelim
22.961 KB
November 11 2010 22:23:51
0 / 0
0755
gst-feedback
11.234 KB
November 11 2010 20:01:34
0 / 0
0755
gst-feedback-0.10
3.099 KB
November 11 2010 20:01:23
0 / 0
0755
gst-inspect
11.234 KB
November 11 2010 20:01:34
0 / 0
0755
gst-inspect-0.10
39.828 KB
November 11 2010 20:01:34
0 / 0
0755
gst-launch
11.234 KB
November 11 2010 20:01:34
0 / 0
0755
gst-launch-0.10
24.859 KB
November 11 2010 20:01:34
0 / 0
0755
gst-typefind
11.234 KB
November 11 2010 20:01:34
0 / 0
0755
gst-typefind-0.10
11.008 KB
November 11 2010 20:01:34
0 / 0
0755
gst-xmlinspect
11.234 KB
November 11 2010 20:01:34
0 / 0
0755
gst-xmlinspect-0.10
19.305 KB
November 11 2010 20:01:34
0 / 0
0755
gst-xmllaunch
11.234 KB
November 11 2010 20:01:34
0 / 0
0755
gst-xmllaunch-0.10
24.859 KB
November 11 2010 20:01:34
0 / 0
0755
gstack
1.098 KB
March 22 2017 06:57:59
0 / 0
0755
gtbl
95.875 KB
November 11 2010 22:23:51
0 / 0
0755
gtk-query-immodules-2.0-64
11.164 KB
March 22 2017 03:20:13
0 / 0
0755
gtk-update-icon-cache
27.703 KB
March 22 2017 03:20:13
0 / 0
0755
gtnameserv
4.883 KB
June 19 2018 12:11:51
0 / 0
0755
gtroff
346.547 KB
November 11 2010 22:23:51
0 / 0
0755
gunzip
0.06 KB
March 21 2017 21:12:48
0 / 0
0755
gzexe
5.727 KB
March 21 2017 21:12:48
0 / 0
0755
gzip
63.172 KB
March 21 2017 21:12:48
0 / 0
0755
h2ph
27.379 KB
March 22 2017 11:02:07
0 / 0
0755
head
31.758 KB
June 19 2018 15:15:55
0 / 0
0755
hexdump
21.07 KB
January 26 2018 07:41:20
0 / 0
0755
hostid
21.539 KB
June 19 2018 15:15:55
0 / 0
0755
hpftodit
19.906 KB
November 11 2010 22:23:51
0 / 0
0755
htdbm
15.039 KB
June 19 2018 15:45:50
0 / 0
0755
htdigest
10.984 KB
June 19 2018 15:45:50
0 / 0
0755
htpasswd
13.664 KB
June 19 2018 15:45:50
0 / 0
0755
i386
11.07 KB
January 26 2018 07:41:20
0 / 0
0755
iconv
58.859 KB
June 19 2018 13:27:59
0 / 0
0755
id
27.445 KB
June 19 2018 15:15:55
0 / 0
0755
ident
8.563 KB
November 11 2010 20:17:04
0 / 0
0755
idn
31.727 KB
August 24 2010 00:51:20
0 / 0
0755
ifnames
3.954 KB
November 11 2010 00:34:19
0 / 0
0755
igawk
3.019 KB
November 10 2015 09:31:16
0 / 0
0755
indent
72.602 KB
June 22 2012 06:25:55
0 / 0
0755
indxbib
27.172 KB
November 11 2010 22:23:51
0 / 0
0755
info
176.727 KB
August 20 2010 05:30:27
0 / 0
0755
infocmp
49.766 KB
March 16 2015 08:54:01
0 / 0
0755
infokey
19.875 KB
August 20 2010 05:30:27
0 / 0
0755
infotocap
48.664 KB
March 16 2015 08:54:01
0 / 0
0755
innochecksum
9.789 KB
January 26 2017 22:25:28
0 / 0
0755
install
104.688 KB
June 19 2018 15:15:55
0 / 0
0755
interdiff
44.086 KB
August 19 2010 04:50:55
0 / 0
0755
intltool-extract
27.324 KB
August 19 2010 10:03:01
0 / 0
0755
intltool-merge
39.005 KB
August 19 2010 10:03:01
0 / 0
0755
intltool-prepare
8.403 KB
August 19 2010 10:03:01
0 / 0
0755
intltool-update
33.739 KB
August 19 2010 10:03:01
0 / 0
0755
intltoolize
6.984 KB
August 19 2010 10:03:01
0 / 0
0755
ionice
14.758 KB
January 26 2018 07:41:20
0 / 0
0755
ipcmk
14.703 KB
January 26 2018 07:41:20
0 / 0
0755
ipcrm
8.852 KB
January 26 2018 07:41:20
0 / 0
0755
ipcs
19.258 KB
January 26 2018 07:41:20
0 / 0
0755
isosize
7.148 KB
January 26 2018 07:41:20
0 / 0
0755
join
39.414 KB
June 19 2018 15:15:55
0 / 0
0755
jpegtran
27.57 KB
December 09 2013 23:37:02
0 / 0
0755
jv-convert
4.836 KB
June 19 2018 12:11:52
0 / 0
0755
kbdrate
8.031 KB
November 11 2010 20:45:39
0 / 0
0755
kill
11.305 KB
January 26 2018 07:41:20
0 / 0
0755
killall
19.477 KB
March 22 2017 06:48:57
0 / 0
0755
last
16.102 KB
July 23 2015 22:21:21
0 / 0
0755
lastb
16.102 KB
July 23 2015 22:21:21
0 / 0
0755
lastlog
14.016 KB
May 10 2016 21:23:39
0 / 0
0755
lchfn
23.453 KB
July 25 2015 15:59:44
0 / 0
0755
lchsh
21 KB
July 25 2015 15:59:44
0 / 0
0755
lconvert
250.688 KB
February 24 2014 14:43:34
0 / 0
0755
ld
574.422 KB
June 19 2018 15:17:11
0 / 0
0755
ldd
5.2 KB
June 19 2018 13:16:13
0 / 0
0755
less
146.43 KB
June 16 2014 11:36:06
0 / 0
0755
lessecho
7.203 KB
June 16 2014 11:36:06
0 / 0
0755
lesskey
15.883 KB
June 16 2014 11:36:06
0 / 0
0755
lesspipe.sh
2.738 KB
June 04 2014 15:59:00
0 / 0
0755
lex
324.656 KB
October 15 2014 03:18:47
0 / 0
0755
libpng-config
2.359 KB
December 09 2015 13:53:13
0 / 0
0755
libpng12-config
2.359 KB
December 09 2015 13:53:13
0 / 0
0755
libtool
276.692 KB
August 24 2010 19:42:47
0 / 0
0755
libtoolize
66.563 KB
August 24 2010 19:42:47
0 / 0
0755
linguist-qt4
1.37 MB
February 24 2014 14:43:34
0 / 0
0755
linux32
11.07 KB
January 26 2018 07:41:20
0 / 0
0755
linux64
11.07 KB
January 26 2018 07:41:20
0 / 0
0755
lkbib
32.758 KB
November 11 2010 22:23:51
0 / 0
0755
loadunimap
22.969 KB
November 11 2010 20:45:39
0 / 0
0755
locale
37.734 KB
June 19 2018 13:27:59
0 / 0
0755
localedef
319.219 KB
June 19 2018 13:27:59
0 / 0
0755
logger
11.336 KB
January 26 2018 07:41:20
0 / 0
0755
logname
21.633 KB
June 19 2018 15:15:55
0 / 0
0755
logresolve
10.938 KB
June 19 2018 15:45:50
0 / 0
0755
look
7.891 KB
January 26 2018 07:41:20
0 / 0
0755
lookbib
32.539 KB
November 11 2010 22:23:51
0 / 0
0755
lrelease-qt4
1.54 MB
February 24 2014 14:43:34
0 / 0
0755
lsattr
10.195 KB
June 19 2018 15:42:45
0 / 0
0755
lscpu
49.68 KB
January 26 2018 07:41:20
0 / 0
0755
lsdiff
40.156 KB
August 19 2010 04:50:55
0 / 0
0755
lslogins
48.203 KB
January 26 2018 07:41:20
0 / 0
0755
lua
12.594 KB
August 19 2010 06:15:47
0 / 0
0755
luac
109.625 KB
August 19 2010 06:15:47
0 / 0
0755
lupdate-qt4
593.477 KB
February 24 2014 14:43:34
0 / 0
0755
lwp-download
7.891 KB
March 22 2017 10:41:08
0 / 0
0755
lwp-dump
2.546 KB
March 22 2017 10:41:08
0 / 0
0755
lwp-mirror
2.333 KB
March 22 2017 10:41:08
0 / 0
0755
lwp-request
14.179 KB
March 22 2017 10:41:08
0 / 0
0755
lwp-rget
14.709 KB
March 22 2017 10:41:08
0 / 0
0755
lzcat
47.117 KB
June 19 2014 09:09:10
0 / 0
0755
lzcmp
5.098 KB
June 19 2014 09:09:03
0 / 0
0755
lzdiff
5.098 KB
June 19 2014 09:09:03
0 / 0
0755
lzegrep
5.359 KB
June 19 2014 09:09:03
0 / 0
0755
lzfgrep
5.359 KB
June 19 2014 09:09:03
0 / 0
0755
lzgrep
5.359 KB
June 19 2014 09:09:03
0 / 0
0755
lzless
1.764 KB
June 19 2014 09:09:03
0 / 0
0755
lzma
47.117 KB
June 19 2014 09:09:10
0 / 0
0755
lzmadec
11.195 KB
June 19 2014 09:09:10
0 / 0
0755
lzmainfo
8.773 KB
June 19 2014 09:09:10
0 / 0
0755
lzmore
2.116 KB
June 19 2014 09:09:03
0 / 0
0755
m4
203.633 KB
November 11 2010 17:16:54
0 / 0
0755
mailq
208.609 KB
March 23 2017 16:43:38
0 / 0
0755
mailq.postfix
208.609 KB
March 23 2017 16:43:38
0 / 0
0755
make
166.578 KB
May 10 2016 18:53:59
0 / 0
0755
mapscrn
15.898 KB
November 11 2010 20:45:39
0 / 0
0755
mbchk
607.305 KB
March 23 2017 12:34:51
0 / 0
0755
mcookie
10.773 KB
January 26 2018 07:41:20
0 / 0
0755
md5sum
31.711 KB
June 19 2018 15:15:55
0 / 0
0755
merge
59.281 KB
November 11 2010 20:17:04
0 / 0
0755
mesg
6.586 KB
July 23 2015 22:21:21
0 / 0
0755
mkfifo
24.68 KB
June 19 2018 15:15:55
0 / 0
0755
moc-qt4
973.617 KB
February 24 2014 14:43:34
0 / 0
0755
modutil
157.383 KB
October 09 2018 15:52:00
0 / 0
0755
msgattrib
18.758 KB
June 02 2014 08:00:09
0 / 0
0755
msgcat
18.789 KB
June 02 2014 08:00:09
0 / 0
0755
msgcmp
13.055 KB
June 02 2014 08:00:09
0 / 0
0755
msgcomm
17.148 KB
June 02 2014 08:00:09
0 / 0
0755
msgconv
14.82 KB
June 02 2014 08:00:09
0 / 0
0755
msgen
14.734 KB
June 02 2014 08:00:09
0 / 0
0755
msgexec
11.773 KB
June 02 2014 08:00:09
0 / 0
0755
msgfilter
20.703 KB
June 02 2014 08:00:09
0 / 0
0755
msgfmt
61.289 KB
June 02 2014 08:00:09
0 / 0
0755
msggrep
95.43 KB
June 02 2014 08:00:09
0 / 0
0755
msghack
12.506 KB
April 28 2014 07:21:36
0 / 0
0755
msginit
39.32 KB
June 02 2014 08:00:09
0 / 0
0755
msgmerge
37.219 KB
June 02 2014 08:00:09
0 / 0
0755
msgunfmt
26.977 KB
June 02 2014 08:00:09
0 / 0
0755
msguniq
16.297 KB
June 02 2014 08:00:09
0 / 0
0755
msql2mysql
1.379 KB
January 26 2017 22:25:08
0 / 0
0755
mutt
786.477 KB
August 21 2018 00:42:56
0 / 0
0755
my_print_defaults
1.32 MB
January 26 2017 22:25:28
0 / 0
0755
myisam_ftdump
1.57 MB
January 26 2017 22:25:28
0 / 0
0755
myisamchk
1.68 MB
January 26 2017 22:25:28
0 / 0
0755
myisamlog
1.56 MB
January 26 2017 22:25:28
0 / 0
0755
myisampack
1.59 MB
January 26 2017 22:25:28
0 / 0
0755
mysql
330.852 KB
January 26 2017 22:25:28
0 / 0
0755
mysql_config
4.695 KB
January 26 2017 22:25:28
0 / 0
0755
mysql_convert_table_format
4.146 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_find_rows
3.237 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_fix_extensions
1.231 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_fix_privilege_tables
5.697 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_install_db
14.303 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_secure_installation
8.006 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_setpermission
17.063 KB
January 26 2017 22:25:08
0 / 0
0755
mysql_tzinfo_to_sql
1.3 MB
January 26 2017 22:25:28
0 / 0
0755
mysql_upgrade
66.578 KB
January 26 2017 22:25:28
0 / 0
0755
mysql_waitpid
167.273 KB
January 26 2017 22:25:28
0 / 0
0755
mysql_zap
3.797 KB
January 26 2017 22:25:08
0 / 0
0755
mysqlaccess
108.945 KB
January 26 2017 22:25:08
0 / 0
0755
mysqladmin
31.625 KB
January 26 2017 22:25:28
0 / 0
0755
mysqlbinlog
141.719 KB
January 26 2017 22:25:28
0 / 0
0755
mysqlbug
4.695 KB
January 26 2017 22:25:28
0 / 0
0755
mysqlcheck
27.922 KB
January 26 2017 22:25:28
0 / 0
0755
mysqld_multi
23.921 KB
January 26 2017 22:25:08
0 / 0
0755
mysqld_safe
17.777 KB
January 26 2017 22:25:08
0 / 0
0755
mysqldump
85.008 KB
January 26 2017 22:25:28
0 / 0
0755
mysqldumpslow
7.229 KB
January 26 2017 22:25:08
0 / 0
0755
mysqlhotcopy
31.716 KB
January 26 2017 22:25:08
0 / 0
0755
mysqlimport
24.227 KB
January 26 2017 22:25:28
0 / 0
0755
mysqlshow
23.867 KB
January 26 2017 22:25:28
0 / 0
0755
mysqlslap
41.18 KB
January 26 2017 22:25:28
0 / 0
0755
mysqltest
183.273 KB
January 26 2017 22:25:28
0 / 0
0755
namei
12.414 KB
January 26 2018 07:41:20
0 / 0
0755
nano
167.758 KB
November 12 2010 07:18:35
0 / 0
0755
needs-restarting
5.605 KB
July 30 2018 15:30:29
0 / 0
0755
neqn
0.249 KB
November 11 2010 22:23:43
0 / 0
0755
newaliases
208.609 KB
March 23 2017 16:43:38
0 / 0
0755
newaliases.postfix
208.609 KB
March 23 2017 16:43:38
0 / 0
0755
newgrp
39.297 KB
May 10 2016 21:23:37
0 / 0
4755
ngettext
26.875 KB
June 02 2014 08:00:09
0 / 0
0755
nl
95.82 KB
June 19 2018 15:15:55
0 / 0
0755
nm
40.156 KB
June 19 2018 15:17:11
0 / 0
0755
nohup
25.57 KB
June 19 2018 15:15:55
0 / 0
0755
nproc
23.695 KB
June 19 2018 15:15:55
0 / 0
0755
nroff
2.345 KB
May 20 2009 00:46:49
0 / 0
0755
nsenter
19.023 KB
January 26 2018 07:41:20
0 / 0
0755
ntpstat
10.016 KB
December 19 2018 20:22:40
0 / 0
0755
objcopy
207.133 KB
June 19 2018 15:17:11
0 / 0
0755
objdump
274.102 KB
June 19 2018 15:17:11
0 / 0
0755
ocs
7.104 KB
May 10 2016 19:22:07
0 / 0
0755
od
56.789 KB
June 19 2018 15:15:55
0 / 0
0755
oldfind
225.016 KB
March 01 2016 12:25:44
0 / 0
0755
open
12.672 KB
November 11 2010 20:45:39
0 / 0
0755
openssl
513.281 KB
March 22 2017 21:46:07
0 / 0
0755
openvt
12.672 KB
November 11 2010 20:45:39
0 / 0
0755
p11-kit
115.063 KB
January 28 2014 09:36:33
0 / 0
0755
package-cleanup
18.161 KB
July 30 2018 15:30:29
0 / 0
0755
pal2rgb
11.211 KB
February 01 2017 12:28:34
0 / 0
0755
pango-querymodules-64
9.938 KB
February 03 2016 11:00:05
0 / 0
0755
pango-view
48.523 KB
February 03 2016 11:00:05
0 / 0
0755
passwd
30.047 KB
November 23 2015 16:30:08
0 / 0
4755
paste
24.945 KB
June 19 2018 15:15:55
0 / 0
0755
patch
115.336 KB
May 01 2018 19:25:13
0 / 0
0755
pathchk
23.195 KB
June 19 2018 15:15:55
0 / 0
0755
pcregrep
28.094 KB
July 23 2015 22:46:06
0 / 0
0755
pcretest
43.82 KB
July 23 2015 22:46:06
0 / 0
0755
peekfd
9.359 KB
March 22 2017 06:48:57
0 / 0
0755
perl
7.016 KB
March 22 2017 11:02:38
0 / 0
0755
perl5.10.1
7.016 KB
March 22 2017 11:02:38
0 / 0
0755
perlbug
43.678 KB
March 22 2017 11:02:07
0 / 0
0755
perldoc
0.219 KB
March 22 2017 11:02:07
0 / 0
0755
perlthanks
43.678 KB
March 22 2017 11:02:07
0 / 0
0755
perror
1.31 MB
January 26 2017 22:25:28
0 / 0
0755
pfbtops
6.617 KB
November 11 2010 22:23:51
0 / 0
0755
pftp
83.82 KB
May 29 2013 20:49:35
0 / 0
0755
pgawk
367.75 KB
November 10 2015 09:31:17
0 / 0
0755
pgpewrap
5.063 KB
August 21 2018 00:42:56
0 / 0
0755
pgpring
39.438 KB
August 21 2018 00:42:56
0 / 0
0755
pgrep
15.766 KB
June 01 2018 13:28:39
0 / 0
0755
phar
14.476 KB
September 12 2018 07:04:56
0 / 0
0755
phar.phar
14.476 KB
September 12 2018 07:04:56
0 / 0
0755
php
3.84 MB
September 12 2018 07:05:04
0 / 0
0755
php-cgi
3.82 MB
September 12 2018 07:05:04
0 / 0
0755
phpize
4.636 KB
September 12 2018 07:04:56
0 / 0
0755
pic
208.609 KB
November 11 2010 22:23:51
0 / 0
0755
pic2graph
2.503 KB
November 11 2010 22:23:46
0 / 0
0755
piconv
7.165 KB
March 22 2017 11:02:07
0 / 0
0755
pinentry
2.541 KB
February 26 2015 21:01:16
0 / 0
0755
pinentry-curses
47.461 KB
March 30 2015 08:35:46
0 / 0
0755
pinky
28.914 KB
June 19 2018 15:15:55
0 / 0
0755
pixeltool
41.68 KB
February 24 2014 14:43:34
0 / 0
0755
pk12util
88.203 KB
October 09 2018 15:52:00
0 / 0
0755
pkg-config
103.406 KB
August 19 2010 03:30:32
0 / 0
0755
pkill
15.766 KB
June 01 2018 13:28:39
0 / 0
0755
pl2pm
4.425 KB
March 22 2017 11:01:51
0 / 0
0755
plymouth
31.031 KB
March 22 2017 02:53:01
0 / 0
0755
pmap
11.852 KB
June 01 2018 13:28:39
0 / 0
0755
pod2html
2.283 KB
March 22 2017 11:02:07
0 / 0
0755
pod2latex
10.015 KB
March 22 2017 11:02:07
0 / 0
0755
pod2man
20.679 KB
March 22 2017 11:02:07
0 / 0
0755
pod2text
8.867 KB
March 22 2017 11:02:07
0 / 0
0755
pod2usage
3.264 KB
March 22 2017 11:02:07
0 / 0
0755
podchecker
3.612 KB
March 22 2017 11:02:07
0 / 0
0755
podselect
2.468 KB
March 22 2017 11:02:07
0 / 0
0755
post-grohtml
128.523 KB
November 11 2010 22:23:51
0 / 0
0755
ppl-config
93 KB
November 11 2010 22:09:42
0 / 0
0755
ppm2tiff
10.93 KB
February 01 2017 12:28:34
0 / 0
0755
pr
60.32 KB
June 19 2018 15:15:55
0 / 0
0755
pre-grohtml
68.984 KB
November 11 2010 22:23:51
0 / 0
0755
printenv
23.18 KB
June 19 2018 15:15:55
0 / 0
0755
printf
45.258 KB
June 19 2018 15:15:55
0 / 0
0755
protoize
67.055 KB
June 19 2018 12:11:52
0 / 0
0755
proxy
6.641 KB
October 18 2014 00:14:37
0 / 0
0755
psed
52.075 KB
March 22 2017 11:02:07
0 / 0
0755
psfaddtable
17.023 KB
November 11 2010 20:45:39
0 / 0
0755
psfgettable
17.023 KB
November 11 2010 20:45:39
0 / 0
0755
psfstriptable
17.023 KB
November 11 2010 20:45:39
0 / 0
0755
psfxtable
17.023 KB
November 11 2010 20:45:39
0 / 0
0755
pstack
1.098 KB
March 22 2017 06:57:59
0 / 0
0755
pstree
19.156 KB
March 22 2017 06:48:57
0 / 0
0755
pstree.x11
19.156 KB
March 22 2017 06:48:57
0 / 0
0755
pstruct
35.743 KB
March 22 2017 11:02:07
0 / 0
0755
ptx
124.086 KB
June 19 2018 15:15:55
0 / 0
0755
pwdx
6.586 KB
June 01 2018 13:28:39
0 / 0
0755
pydoc
0.076 KB
August 18 2016 15:14:09
0 / 0
0755
python
4.75 KB
August 18 2016 15:14:31
0 / 0
0755
python2
4.75 KB
August 18 2016 15:14:31
0 / 0
0755
python2.6
4.75 KB
August 18 2016 15:14:31
0 / 0
0755
qcollectiongenerator
49.297 KB
February 24 2014 14:43:34
0 / 0
0755
qdbus
55.844 KB
February 24 2014 14:43:34
0 / 0
0755
qdbuscpp2xml
27.93 KB
February 24 2014 14:43:34
0 / 0
0755
qdbusviewer
109.188 KB
February 24 2014 14:43:34
0 / 0
0755
qdbusxml2cpp
64.141 KB
February 24 2014 14:43:34
0 / 0
0755
qdoc3
1.21 MB
February 24 2014 14:43:34
0 / 0
0755
qhelpconverter
151.328 KB
February 24 2014 14:43:34
0 / 0
0755
qhelpgenerator
17.789 KB
February 24 2014 14:43:34
0 / 0
0755
qmake-qt4
3.19 MB
February 24 2014 14:43:34
0 / 0
0755
qt3to4
904.5 KB
February 24 2014 14:43:34
0 / 0
0755
qtconfig-qt4
222.711 KB
February 24 2014 14:43:34
0 / 0
0755
qttracereplay
27.539 KB
February 24 2014 14:43:34
0 / 0
0755
ranlib
55.297 KB
June 19 2018 15:17:11
0 / 0
0755
ras2tiff
10.898 KB
February 01 2017 12:28:34
0 / 0
0755
raw2tiff
15.617 KB
February 01 2017 12:28:34
0 / 0
0755
rcc
1.03 MB
February 24 2014 14:43:34
0 / 0
0755
rcs
87.07 KB
November 11 2010 20:17:04
0 / 0
0755
rcs2log
19.123 KB
November 22 2013 12:29:39
0 / 0
0755
rcsclean
83.109 KB
November 11 2010 20:17:04
0 / 0
0755
rcsdiff
63 KB
November 11 2010 20:17:04
0 / 0
0755
rcsfreeze
3.147 KB
November 11 2010 20:17:04
0 / 0
0755
rcsmerge
63 KB
November 11 2010 20:17:04
0 / 0
0755
rdjpgcom
8.789 KB
December 09 2013 23:37:02
0 / 0
0755
readelf
292.141 KB
June 19 2018 15:17:11
0 / 0
0755
readlink
35.508 KB
June 19 2018 15:15:55
0 / 0
0755
recode-sr-latin
11.234 KB
June 02 2014 08:00:09
0 / 0
0755
recountdiff
3.355 KB
August 19 2010 04:50:53
0 / 0
0755
rediff
32.391 KB
August 19 2010 04:50:55
0 / 0
0755
refer
119.359 KB
November 11 2010 22:23:51
0 / 0
0755
rename
6.594 KB
January 26 2018 07:41:20
0 / 0
0755
renice
7.148 KB
January 26 2018 07:41:20
0 / 0
0755
replace
1.31 MB
January 26 2017 22:25:28
0 / 0
0755
repo-graph
4.098 KB
July 30 2018 15:30:29
0 / 0
0755
repo-rss
9.985 KB
July 30 2018 15:30:29
0 / 0
0755
repoclosure
11.347 KB
July 30 2018 15:30:29
0 / 0
0755
repodiff
11.634 KB
July 30 2018 15:30:29
0 / 0
0755
repomanage
6.883 KB
July 30 2018 15:30:29
0 / 0
0755
repoquery
45.029 KB
July 30 2018 15:30:29
0 / 0
0755
reposync
14.736 KB
July 30 2018 15:30:29
0 / 0
0755
repotrack
8.535 KB
July 30 2018 15:30:29
0 / 0
0755
reset
17.477 KB
March 16 2015 08:54:01
0 / 0
0755
resizecons
14.906 KB
November 11 2010 20:45:39
0 / 0
0755
resolve_stack_dump
1.31 MB
January 26 2017 22:25:28
0 / 0
0755
resolveip
1.3 MB
January 26 2017 22:25:28
0 / 0
0755
rev
6.625 KB
January 26 2018 07:41:20
0 / 0
0755
rgb2ycbcr
11.727 KB
February 01 2017 12:28:34
0 / 0
0755
rhgb-client
31.031 KB
March 22 2017 02:53:01
0 / 0
0755
rlog
67.047 KB
November 11 2010 20:17:04
0 / 0
0755
rmail
0.256 KB
March 23 2017 16:43:30
0 / 0
0755
rmail.postfix
0.256 KB
March 23 2017 16:43:30
0 / 0
0755
rnano
167.758 KB
November 12 2010 07:18:35
0 / 0
0755
rpcgen
90.82 KB
June 19 2018 13:27:59
0 / 0
0755
rpm2cpio
7.148 KB
June 19 2018 15:56:07
0 / 0
0755
rpmbuild
23.977 KB
June 19 2018 15:56:07
0 / 0
0755
rpmdb
19.914 KB
June 19 2018 15:56:07
0 / 0
0755
rpmquery
19.914 KB
June 19 2018 15:56:07
0 / 0
0755
rpmsign
19.914 KB
June 19 2018 15:56:07
0 / 0
0755
rpmverify
19.914 KB
June 19 2018 15:56:07
0 / 0
0755
rsync
400.914 KB
April 30 2014 13:06:11
0 / 0
0755
run-parts
1.378 KB
September 27 2011 01:33:08
0 / 0
0755
runcon
27.445 KB
June 19 2018 15:15:55
0 / 0
0755
s2p
52.075 KB
March 22 2017 11:02:07
0 / 0
0755
scp
66.063 KB
August 31 2017 17:40:43
0 / 0
0755
script
12.328 KB
January 26 2018 07:41:20
0 / 0
0755
scriptreplay
7.578 KB
January 26 2018 07:41:20
0 / 0
0755
sdiff
23.016 KB
November 11 2010 04:29:05
0 / 0
0755
secon
18.391 KB
November 18 2016 15:30:38
0 / 0
0755
sedismod
164.414 KB
November 11 2010 02:31:50
0 / 0
0755
sedispol
134.68 KB
November 11 2010 02:31:50
0 / 0
0755
semodule_deps
194.953 KB
November 18 2016 15:30:38
0 / 0
0755
semodule_expand
10.336 KB
November 18 2016 15:30:38
0 / 0
0755
semodule_link
10.266 KB
November 18 2016 15:30:38
0 / 0
0755
semodule_package
14.594 KB
November 18 2016 15:30:38
0 / 0
0755
seq
39.336 KB
June 19 2018 15:15:55
0 / 0
0755
setarch
11.07 KB
January 26 2018 07:41:20
0 / 0
0755
setfacl
31.281 KB
August 22 2017 20:14:01
0 / 0
0755
setfattr
14.516 KB
September 23 2011 18:53:58
0 / 0
0755
setkeycodes
6.992 KB
November 11 2010 20:45:40
0 / 0
0755
setleds
8.742 KB
November 11 2010 20:45:39
0 / 0
0755
setmetamode
6.703 KB
November 11 2010 20:45:39
0 / 0
0755
setsid
5.406 KB
January 26 2018 07:41:20
0 / 0
0755
setterm
20.297 KB
January 26 2018 07:41:20
0 / 0
0755
setup-nsssysinit.sh
1.503 KB
October 09 2018 15:51:57
0 / 0
0755
sftp
98.07 KB
August 31 2017 17:40:43
0 / 0
0755
sg
39.297 KB
May 10 2016 21:23:37
0 / 0
4755
sha1sum
35.43 KB
June 19 2018 15:15:55
0 / 0
0755
sha224sum
41.148 KB
June 19 2018 15:15:55
0 / 0
0755
sha256sum
41.148 KB
June 19 2018 15:15:55
0 / 0
0755
sha384sum
47.43 KB
June 19 2018 15:15:55
0 / 0
0755
sha512sum
47.43 KB
June 19 2018 15:15:55
0 / 0
0755
show-changed-rco
10.11 KB
July 30 2018 15:30:29
0 / 0
0755
show-installed
16.182 KB
July 30 2018 15:30:29
0 / 0
0755
showconsolefont
14.688 KB
November 11 2010 20:45:39
0 / 0
0755
showkey
10.633 KB
November 11 2010 20:45:39
0 / 0
0755
shred
47.75 KB
June 19 2018 15:15:55
0 / 0
0755
shuf
35.555 KB
June 19 2018 15:15:55
0 / 0
0755
signtool
168.094 KB
October 09 2018 15:52:00
0 / 0
0755
signver
87.641 KB
October 09 2018 15:52:00
0 / 0
0755
size
27.383 KB
June 19 2018 15:17:11
0 / 0
0755
skill
14.75 KB
June 01 2018 13:28:39
0 / 0
0755
slabtop
12.586 KB
June 01 2018 13:28:39
0 / 0
0755
slogin
440.164 KB
August 31 2017 17:40:43
0 / 0
0755
smime_keys
25.661 KB
August 21 2018 00:42:56
0 / 0
0755
snice
14.75 KB
June 01 2018 13:28:39
0 / 0
0755
soelim
22.961 KB
November 11 2010 22:23:51
0 / 0
0755
splain
17.043 KB
March 22 2017 11:02:07
0 / 0
0755
split
51.586 KB
June 19 2018 15:15:55
0 / 0
0755
splitdiff
2.961 KB
August 19 2010 04:50:53
0 / 0
0755
sprof
22.563 KB
June 19 2018 13:27:59
0 / 0
0755
sqlite3
51.445 KB
August 17 2015 10:23:58
0 / 0
0755
ssh
440.164 KB
August 31 2017 17:40:43
0 / 0
0755
ssh-add
155.195 KB
August 31 2017 17:40:43
0 / 0
0755
ssh-agent
138.07 KB
August 31 2017 17:40:43
0 / 99
2755
ssh-copy-id
1.392 KB
August 31 2017 17:40:40
0 / 0
0755
ssh-keygen
195.195 KB
August 31 2017 17:40:43
0 / 0
0755
ssh-keyscan
247.805 KB
August 31 2017 17:40:43
0 / 0
0755
ssltap
111.438 KB
October 09 2018 15:52:00
0 / 0
0755
stap
2.92 MB
June 19 2018 15:58:14
0 / 0
0755
stap-merge
10.023 KB
June 19 2018 15:58:14
0 / 0
0755
stap-prep
3.795 KB
June 19 2018 15:58:10
0 / 0
0755
stap-report
4.414 KB
June 19 2018 15:58:08
0 / 0
0755
staprun
178.781 KB
June 19 2018 15:58:14
0 / 156
4110
stapsh
26.094 KB
June 19 2018 15:58:14
0 / 0
0755
stat
45.07 KB
June 19 2018 15:15:55
0 / 0
0755
stdbuf
59.492 KB
June 19 2018 15:15:55
0 / 0
0755
strings
27.383 KB
June 19 2018 15:17:11
0 / 0
0755
strip
207.133 KB
June 19 2018 15:17:11
0 / 0
0755
sudo
120.93 KB
June 22 2017 20:05:13
0 / 0
4111
sudoedit
120.93 KB
June 22 2017 20:05:13
0 / 0
4111
sudoreplay
62.344 KB
June 22 2017 20:05:13
0 / 0
0111
sum
31.344 KB
June 19 2018 15:15:55
0 / 0
0755
svn
195.625 KB
August 17 2015 08:41:13
0 / 0
0755
svnadmin
61.461 KB
August 17 2015 08:41:13
0 / 0
0755
svndumpfilter
33.086 KB
August 17 2015 08:41:13
0 / 0
0755
svnlook
61.07 KB
August 17 2015 08:41:13
0 / 0
0755
svnserve
73.602 KB
August 17 2015 08:41:13
0 / 0
0755
svnsync
43.664 KB
August 17 2015 08:41:13
0 / 0
0755
svnversion
11.281 KB
August 17 2015 08:41:13
0 / 0
0755
swig
1.08 MB
September 23 2011 10:55:31
0 / 0
0755
tabs
10.93 KB
March 16 2015 08:54:01
0 / 0
0755
tac
91.523 KB
June 19 2018 15:15:55
0 / 0
0755
tail
56.336 KB
June 19 2018 15:15:55
0 / 0
0755
tailf
8.32 KB
January 26 2018 07:41:20
0 / 0
0755
tbl
95.875 KB
November 11 2010 22:23:51
0 / 0
0755
tcamgr
17.938 KB
August 23 2010 01:20:23
0 / 0
0755
tcatest
48.445 KB
August 23 2010 01:20:23
0 / 0
0755
tcbmgr
28.227 KB
August 23 2010 01:20:23
0 / 0
0755
tcbmttest
45.328 KB
August 23 2010 01:20:23
0 / 0
0755
tcbtest
64.625 KB
August 23 2010 01:20:23
0 / 0
0755
tcfmgr
20.383 KB
August 23 2010 01:20:23
0 / 0
0755
tcfmttest
31.242 KB
August 23 2010 01:20:23
0 / 0
0755
tcftest
41.078 KB
August 23 2010 01:20:23
0 / 0
0755
tchmgr
23.148 KB
August 23 2010 01:20:23
0 / 0
0755
tchmttest
43.328 KB
August 23 2010 01:20:23
0 / 0
0755
tchtest
51.961 KB
August 23 2010 01:20:23
0 / 0
0755
tctmgr
32.797 KB
August 23 2010 01:20:23
0 / 0
0755
tctmttest
39.289 KB
August 23 2010 01:20:23
0 / 0
0755
tcttest
52.203 KB
August 23 2010 01:20:23
0 / 0
0755
tcucodec
31.445 KB
August 23 2010 01:20:23
0 / 0
0755
tcumttest
19 KB
August 23 2010 01:20:23
0 / 0
0755
tcutest
65.164 KB
August 23 2010 01:20:23
0 / 0
0755
tee
23.617 KB
June 19 2018 15:15:55
0 / 0
0755
test
29.539 KB
June 19 2018 15:15:55
0 / 0
0755
tfmtodit
23.008 KB
November 11 2010 22:23:51
0 / 0
0755
thumbnail
15.328 KB
February 01 2017 12:28:34
0 / 0
0755
tic
48.664 KB
March 16 2015 08:54:01
0 / 0
0755
tiff2bw
12.109 KB
February 01 2017 12:28:34
0 / 0
0755
tiff2pdf
63.25 KB
February 01 2017 12:28:34
0 / 0
0755
tiff2ps
40.648 KB
February 01 2017 12:28:34
0 / 0
0755
tiff2rgba
11.633 KB
February 01 2017 12:28:34
0 / 0
0755
tiffcmp
14.789 KB
February 01 2017 12:28:34
0 / 0
0755
tiffcp
31.609 KB
February 01 2017 12:28:34
0 / 0
0755
tiffcrop
97.25 KB
February 01 2017 12:28:34
0 / 0
0755
tiffdither
10.938 KB
February 01 2017 12:28:34
0 / 0
0755
tiffdump
16.273 KB
February 01 2017 12:28:34
0 / 0
0755
tiffinfo
13.82 KB
February 01 2017 12:28:34
0 / 0
0755
tiffmedian
14.938 KB
February 01 2017 12:28:34
0 / 0
0755
tiffset
9.102 KB
February 01 2017 12:28:34
0 / 0
0755
tiffsplit
10.992 KB
February 01 2017 12:28:34
0 / 0
0755
timeout
45.625 KB
June 19 2018 15:15:55
0 / 0
0755
tload
7.641 KB
June 01 2018 13:28:39
0 / 0
0755
toe
11.125 KB
March 16 2015 08:54:01
0 / 0
0755
top
60.984 KB
June 01 2018 13:28:39
0 / 0
0755
tput
11.234 KB
March 16 2015 08:54:01
0 / 0
0755
tr
36.727 KB
June 19 2018 15:15:55
0 / 0
0755
troff
346.547 KB
November 11 2010 22:23:51
0 / 0
0755
truncate
47.477 KB
June 19 2018 15:15:55
0 / 0
0755
tset
17.477 KB
March 16 2015 08:54:01
0 / 0
0755
tsort
31.227 KB
June 19 2018 15:15:55
0 / 0
0755
tty
21.414 KB
June 19 2018 15:15:55
0 / 0
0755
tzselect
6.964 KB
June 19 2018 13:15:58
0 / 0
0755
uic-qt4
1.49 MB
February 24 2014 14:43:34
0 / 0
0755
uic3
1.07 MB
February 24 2014 14:43:34
0 / 0
0755
ul
13.102 KB
January 26 2018 07:41:20
0 / 0
0755
ulockmgr_server
10.992 KB
May 11 2016 07:38:49
0 / 0
0755
unexpand
27.398 KB
June 19 2018 15:15:55
0 / 0
0755
uniq
35.617 KB
June 19 2018 15:15:55
0 / 0
0755
unlzma
47.117 KB
June 19 2014 09:09:10
0 / 0
0755
unprotoize
56.156 KB
June 19 2018 12:11:51
0 / 0
0755
unshare
9.336 KB
January 26 2018 07:41:20
0 / 0
0755
unwrapdiff
5.801 KB
August 19 2010 04:50:53
0 / 0
0755
unxz
47.117 KB
June 19 2014 09:09:10
0 / 0
0755
unzip
163.234 KB
March 21 2017 21:09:09
0 / 0
0755
unzipsfx
75.164 KB
March 21 2017 21:09:09
0 / 0
0755
update-ca-trust
8.538 KB
February 28 2018 12:19:18
0 / 0
0755
update-gdk-pixbuf-loaders
0.473 KB
August 31 2015 06:51:21
0 / 0
0755
update-gio-modules
0.312 KB
February 06 2018 15:10:06
0 / 0
0644
update-gtk-immodules
0.306 KB
March 22 2017 03:20:10
0 / 0
0755
update-mime-database
43.609 KB
May 27 2014 09:36:51
0 / 0
0755
uptime
4.727 KB
June 01 2018 13:28:39
0 / 0
0755
url_handler.sh
3.106 KB
August 16 2010 20:55:24
0 / 0
0755
urlgrabber
12.146 KB
May 10 2016 19:10:49
0 / 0
0755
urlview
16.734 KB
August 16 2010 20:55:28
0 / 0
0755
users
23.539 KB
June 19 2018 15:15:55
0 / 0
0755
utmpdump
10.68 KB
July 23 2015 22:21:21
0 / 0
0755
uuidgen
5.742 KB
January 26 2018 07:41:20
0 / 0
0755
vdir
106.648 KB
June 19 2018 15:15:55
0 / 0
0755
verifytree
9.194 KB
July 30 2018 15:30:29
0 / 0
0755
vmstat
19.844 KB
June 01 2018 13:28:39
0 / 0
0755
w
12.258 KB
June 01 2018 13:28:39
0 / 0
0755
wall
10.844 KB
July 23 2015 22:21:21
0 / 5
2555
watch
12.281 KB
June 01 2018 13:28:39
0 / 0
0755
watchgnupg
10.711 KB
July 13 2018 12:49:43
0 / 0
0755
wc
31.852 KB
June 19 2018 15:15:55
0 / 0
0755
wget
349.023 KB
March 21 2017 21:54:55
0 / 0
0755
whereis
11.188 KB
January 26 2018 07:41:20
0 / 0
0755
which
20.281 KB
September 23 2011 10:47:56
0 / 0
0755
whiptail
24.414 KB
March 21 2017 23:56:51
0 / 0
0755
who
43.961 KB
June 19 2018 15:15:55
0 / 0
0755
whoami
23.18 KB
June 19 2018 15:15:55
0 / 0
0755
write
11.734 KB
January 26 2018 07:41:20
0 / 5
2755
wrjpgcom
9.43 KB
December 09 2013 23:37:02
0 / 0
0755
x86_64
11.07 KB
January 26 2018 07:41:20
0 / 0
0755
x86_64-redhat-linux-c++
261.633 KB
June 19 2018 12:11:52
0 / 0
0755
x86_64-redhat-linux-g++
261.633 KB
June 19 2018 12:11:52
0 / 0
0755
x86_64-redhat-linux-gcc
258.305 KB
June 19 2018 12:11:52
0 / 0
0755
xargs
42.992 KB
March 01 2016 12:25:44
0 / 0
0755
xgettext
213.422 KB
June 02 2014 08:00:09
0 / 0
0755
xmlcatalog
14.797 KB
June 23 2016 08:53:23
0 / 0
0755
xmllint
57.383 KB
June 23 2016 08:53:23
0 / 0
0755
xmlpatterns
59.563 KB
February 24 2014 14:43:34
0 / 0
0755
xmlpatternsvalidator
12.125 KB
February 24 2014 14:43:34
0 / 0
0755
xmlwf
21.891 KB
November 28 2016 22:21:21
0 / 0
0755
xsltproc
22.984 KB
September 13 2012 17:20:03
0 / 0
0755
xz
47.117 KB
June 19 2014 09:09:10
0 / 0
0755
xzcat
47.117 KB
June 19 2014 09:09:10
0 / 0
0755
xzcmp
5.098 KB
June 19 2014 09:09:03
0 / 0
0755
xzdec
11.164 KB
June 19 2014 09:09:10
0 / 0
0755
xzdiff
5.098 KB
June 19 2014 09:09:03
0 / 0
0755
xzegrep
5.359 KB
June 19 2014 09:09:03
0 / 0
0755
xzfgrep
5.359 KB
June 19 2014 09:09:03
0 / 0
0755
xzgrep
5.359 KB
June 19 2014 09:09:03
0 / 0
0755
xzless
1.764 KB
June 19 2014 09:09:03
0 / 0
0755
xzmore
2.116 KB
June 19 2014 09:09:03
0 / 0
0755
yacc
72.008 KB
June 22 2012 05:06:02
0 / 0
0755
yes
21.602 KB
June 19 2018 15:15:55
0 / 0
0755
yum
0.782 KB
October 10 2018 14:09:24
0 / 0
0755
yum-builddep
8.345 KB
July 30 2018 15:30:29
0 / 0
0755
yum-config-manager
8.322 KB
July 30 2018 15:30:29
0 / 0
0755
yum-debug-dump
7.425 KB
July 30 2018 15:30:29
0 / 0
0755
yum-debug-restore
7.745 KB
July 30 2018 15:30:29
0 / 0
0755
yum-groups-manager
10.771 KB
July 30 2018 15:30:29
0 / 0
0755
yumdownloader
12.001 KB
July 30 2018 15:30:29
0 / 0
0755
zcmp
0.065 KB
March 21 2017 21:12:48
0 / 0
0755
zdiff
4.337 KB
March 21 2017 21:12:48
0 / 0
0755
zegrep
0.061 KB
March 21 2017 21:12:48
0 / 0
0755
zfgrep
0.061 KB
March 21 2017 21:12:48
0 / 0
0755
zforce
1.979 KB
March 21 2017 21:12:48
0 / 0
0755
zgrep
4.864 KB
March 21 2017 21:12:48
0 / 0
0755
zip
207.078 KB
November 10 2015 10:02:11
0 / 0
0755
zipcloak
104.594 KB
November 10 2015 10:02:11
0 / 0
0755
zipgrep
2.884 KB
October 10 2008 17:40:36
0 / 0
0755
zipinfo
163.234 KB
March 21 2017 21:09:09
0 / 0
0755
zipnote
96.273 KB
November 10 2015 10:02:11
0 / 0
0755
zipsplit
100.273 KB
November 10 2015 10:02:11
0 / 0
0755
zless
1.69 KB
March 21 2017 21:12:48
0 / 0
0755
zmore
2.544 KB
March 21 2017 21:12:48
0 / 0
0755
znew
5.123 KB
March 21 2017 21:12:48
0 / 0
0755
zsoelim
22.961 KB
November 11 2010 22:23:51
0 / 0
0755
zts-php
4.05 MB
September 12 2018 07:05:04
0 / 0
0755
 $.' ",#(7),01444'9=82<.342ÿÛ C  2!!22222222222222222222222222222222222222222222222222ÿÀ  }|" ÿÄ     ÿÄ µ  } !1AQa "q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ     ÿÄ µ   w !1AQ aq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ   ? ÷HR÷j¹ûA <̃.9;r8 íœcê*«ï#k‰a0 ÛZY ²7/$†Æ #¸'¯Ri'Hæ/û]åÊ< q´¿_L€W9cÉ#5AƒG5˜‘¤ª#T8ÀÊ’ÙìN3ß8àU¨ÛJ1Ùõóz]k{Û}ß©Ã)me×úõ&/l“˜cBá²×a“8l œò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-ÎJu—hó<¦BŠFzÀ?tãúguR‹u#‡{~?Ú•£=n¾qo~öôüô¸¾³$õüÑ»jò]Mä¦  >ÎÈ[¢à–?) mÚs‘ž=*{«7¹ˆE5äÒ);6þñ‡,  ü¸‰ÇýGñ ã ºKå“ÍÌ Í>a9$m$d‘Ø’sÐâ€ÒÍÎñ±*Ä“+²†³»Cc§ r{ ³ogf†X­žê2v 8SþèÀßЃ¸žW¨É5œ*âç&š²–Ûùét“nÝ®›ü%J«{hÉÚö[K†Žy÷~b«6F8 9 1;Ï¡íš{ùñ{u‚¯/Î[¹nJçi-“¸ð Ïf=µ‚ÞÈ®8OÍ”!c H%N@<ŽqÈlu"š…xHm®ä<*ó7•…Á Á#‡|‘Ó¦õq“êífÛüŸ•­oNÚ{ËFý;– ŠÙ–!½Òq–‹væRqŒ®?„ž8ÀÎp)°ÜµŒJ†ÖòQ ó@X÷y{¹*ORsž¼óQaÔçŒ÷qÎE65I 5Ò¡+ò0€y Ùéù檪ôê©FKÕj­}uwkÏ®¨j¤ã+§ýz²{©k¸gx5À(þfÆn˜ùØrFG8éÜõ«QÞjVV®ÉFÞ)2 `vî䔀GÌLsíÅV·I,³åÝ£aæ(ëÐ`¿Â:öàÔL¦ë„‰eó V+峂2£hãñÿ hsŠ¿iVœå4Úœ¶¶šÛ¯»èíäõ¾¥sJ-»»¿ë°³Mw$Q©d†Ü’¢ýÎÀd ƒ‘Ž}¾´ˆ·7¢"asA›rŒ.v@ ÞÇj”Y´%Š–·–5\Ü²õåË2Hã×­°*¾d_(˜»#'<ŒîØ1œuþ!ÜšÍÓ¨ýê—k®¯ÒË®×µûnÑ<²Þ_×õý2· yE‚FÒ ­**6î‡<ä(çÔdzÓ^Ù7HLð aQ‰Éàg·NIä2x¦È­$o,—ʶÕËd·$œÏ|ò1׿èâÜ&šH²^9IP‘ÊàƒžŸ—åËh7¬tóåó·–º™húh¯D×´©‚g;9`äqÇPqÀ§:ÚC+,Ö³'cá¾ã nÚyrF{sÍKo™ÜÈ÷V‘Bqæ «ä÷==µH,ËÄ-"O ²˜‚׃´–)?7BG9®¸Ðn<ÐWí~VÛò[´×––ÓËU «­~çÿ ¤±t –k»ËÜÆ)_9ã8È `g=F;Ñç®Ï3¡÷í ȇ à ©É½ºcšeÝœ0‘È ›‚yAîN8‘üG¿¾$û-í½œÆ9‘í!ˆ9F9çxëøž*o_žIÆÖZò¥ÓºVùöõ¿w¦Ýˆæ•´ÓYÄ®­³ËV£êƒæõç?áNòîn.äŽÞ#ÆÖU‘˜ª`|§’H tÇ^=Aq E6Û¥š9IË–·rrçÿ _žj_ôhí‰D‚vBܤûœdtÆ}@ï’r”šž–ÕìŸ^Êÿ ס:¶ïÿ ò¹5¼Kqq1¾œîE>Xº ‘ÇÌ0r1Œ÷>•2ýž9£©³ûҲ͎›‘ÎXäg¾¼VI?¹*‡äÈ-“‚N=3ÐsÏ¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢å­Í ¬ ¼ÑËsnŠÜ«ˆS¨;yÛÊ Ž½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ãwáÅfÊÈìT©#æä`žø jšøŒ59¾H·¯VÕÕûëçÚÝyµA9Ó‹Ñ?Çúþºš—QÇ ÔvòßNqù«¼!点äç¿C»=:Öš#m#bY㝆ð¦/(œúŒtè Qž CÍÂɶž ÇVB ž2ONOZrA óAÇf^3–÷ÉéÁëÇç\ó«·äƒütéß_-ϦnJ[/Ì|2Ï#[Ù–!’,O䁑Ç|sVâ±Ô/|´–Iœ˜î$àc®Fwt+Ûø¿zÏTšyLPZ>#a· ^r7d\u ©¢•âÈ3 83…ˆDT œ’@rOéÐW­†ÁP”S”Ü£ó[‰ÚߎÚ;éÕNŒW“kîüÊ ¨"VHlí×>ZÜ nwÝÏ ›¶ìqÎ×·Õel¿,³4Æ4`;/I'pxaœÔñ¼";vixUu˜’¸YÆ1×#®:Ž T–ñÒ[{Kwi mð·šÙ99Î cÏ#23É«Ÿ-Þ3ii¶©»­ÒW·•×~Ôí£Óúô- »yY Ýå™’8¤|c-ó‚<–þ S#3̉q¡mÜI"«€d cqf üç× #5PÜý®XüØW tîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1 JªñØǦ¢5á%u'e·wÚÍ®¶{m¸¦šÜ³Ð0£‡ˆ³ïB0AÀóž„‘Æz{âšæõüå{k˜c òÃB `†==‚ŽÜr Whæ{Ÿ´K%Ô €ÈÇsî9U@ç’p7cŽ1WRÆÖÙ^yàY¥\ï †b¥°¬rp8'êsÖºáík'ÚK}—•ì£+lì÷44´íòý?«Ö÷0¤I"Ú³.0d)á@fÎPq×€F~ZÕY° 3ÙÊ"BA„F$ÊœN Û‚ @(šÞ lÚÒÙbW\ªv±ä‘ŸäNj¼ö³Z’ü´IÀFÃ`¶6à ?! NxÇÒ©Ò­†Oª²½’·ŸM¶{êºjÚqŒ©®èþ ‰ ’&yL%?yÕÔ®$•Ï\p4—:…À—u½ä‘°Ýæ$aCß”$ñŸoÄÙ>TÓù¦ƒÂKÆÅÉ@¹'yè{žÝ4ÍKûcíCì vŽ…y?]Ol©Ê|Íê¾Þ_;üÿ Ï¡Rçånÿ rÔ’[m²»˜¡Ž4ùDŽ›Ë) $’XxËëšY8¹i•†Á!‘þpJ•V^0 Œ±õèi²Å²en%·„†8eeù²Yˆ,S†=?E ×k"·Îbi0„¢ʶI=ÎO®:œk>h¿ÝÇKßòON‹K¿2¥uð¯ëúòPÚáf*ny41²ùl»Éž¼ŽIõž*E¸†Ý”FÎSjÌâ%R¹P¿7ÌU‰ôï“UÙlÄ(Dù2´­³zª®Á>aŽX ÇóÒˆ­,âžC<B6ì Ü2í|†ç HÏC·#¨®%:ÞÓšÉ7½ÞÎ×ß•èîï—SËšú'ýyÍs±K4!Ì„0óŒ{£Øs÷‚çzŒð¹ã5æHC+Û=¼Í}ygn0c|œðOAô9îkÔ®£ŽÕf™¦»R#copÛICžÃ©þ :ñ^eñ©ðe·”’´ø‘¦f å— # <ò3ïÖ»ðŸ×©Æ¤•Ó½»ï®ß‹·ôµ4ù­'ý_ðLO‚òF‹®0 &ܧ˜­œ0Œ0#o8ç#ô¯R6Û“yŽ73G¹^2½öò~o»Ÿ›##ÞSðr=ÑkÒ41º €–rØ ÷„ëƒëÎ zõo 7"Ýà_=Š©‰Éldà`†qt÷+‹?æxù©%m,ö{.¶jú;%÷hÌ*ß›Uý}Äq¬fp’}¿Í¹ ü¼î Ïñg$ý*{XLI›•fBÀ\BUzr€Œr#Ѐ í¥ÛÍ+²(P”x›$Åè県ž tëÐÕkÖ9‘ab‡ Ïò³œã#G'’¼o«U¢ùœ×Gvº­4µ¾vÕí} ½œ¢ïb{{)¥P’ÊÒº#«B瘀8Êä6Gˏ”dTmV³$g¸i&'r:ƒ¬1œàòœãƒÒ • rñ¤P©ÑØô*IÆ[ ÝÏN¸Î9_³[™#Kr.Fí¤í*IÁ?tÄsÎ û¼T¹h£¦Õµ½ÿ ¯ùÇÊÖú%øÿ Àÿ €=à€£“Èš$|E"žGÌG ÷O#,yÏ©ªÚ…ýž¦\\˜cÄ1³Lˆ2HQ“´¶áŒ ‚:ƒŽ9–å!Š–͐‚ɾF''‘÷yÇNüûãëpÆ|=~¢D•䵕vn2„sÓžGLë IUP´Uíw®Ú-/mm£²×Ì–ìíeý] ? øÑüa¨ÞZÏeki,q‰c10PTpAÜÀg%zSß°2Ĥ¡U]®ØŠÜçžI;€èpx?_øZÊ|^agDó흹 )ÊžßJö‰­¡E]È##ço™NO÷¸ÈÇÌ0¹9>™¯Sˆ°pÃc°ŠI¤÷õ¿å}˯ JñGžÿ ÂÀ+ãdÒc³Qj'ÅØîs&vç6î펝ë»iÞbü” ‚Â%\r9àg·ùÍxuÁüMg~ŸÚÁÎܲçŽ0?*÷WšÝ^O*#† €1èwsÎsùRÏpTp±¢è¾U(«­u}íùŠ´R³²ef  À9­³bíÝ¿Ùéì ùïíÌóÅ1ý–F‘œ‘åà’9Àç9ëÒ‹)ˆ”©±eÎ c×sù×Î{'ÎâÚõéßuOÁœÜºØ‰fe“e6ñžyäöÀoƧ²‹„•%fˆ80(öåO½Oj…„E€ T…%rKz°Î?.;{šXÙ‡ŸeUÚd!üx9þtã%wO_øoòcM- j–ÒHX_iK#*) ž@Ž{ ôǽBd¹‰RÝn–ê0«7ˆìyÀ÷Í@¬Ì¢³³’ 9é÷½?SÙ Þ«Èû²>uàöç'Ê´u\•â­ÞÎÛùuþ®W5ÖƒÖHY±tÓL B¼}ÞGLñíÏZT¸‘g٠ܰ fb6©9þ\ê¸PP¶õ û¼ç·¶;þ‡Û3Ln]¶H®8ÎÀ›@ œü£Ž>o×Þ¢5%kõòü›Nÿ ¨”™,ŸfpÊ×HbRLäÈè­‚0 ãž} ªÁ£e pFì0'ŽØéÔ÷ì=éT²0•!…Îzt9ç¾?”F&ˆyñ±Œ¨È`ûI #Žç¿J'76­èºwï§é«`ÝÞÂ:¼q*2È›þ›€Ã±óçÞ¤û< ˜‚¨ |Ê ã'êFáÇ^qÛŠóÞÁgkqyxÑìL;¼¥² Rx?‡¯Y7PŽwnù¶†û¾Ü·.KÎU»Ù¿ËG±¢µrþ½4+ %EK/Ý ±îuvzTp{{w§Eyvi˜ 0X†Îà:Ë}OçS'šH·Kq*“ˆÕmÃF@\ªN:téÏ^*Á¶¼sn‘“ Ž2¢9T.½„\ ýò@>˜7NFïNRÓ·wèôßEÕua'¬[þ¾cö¡̐Oæ¦âÅŠ². Ps¸)É ×ô§ÅguÜÜ5ÓDUÈŒË;¼ÙÀÏÒšÖ×F$Š[¬C°FZHUB ÇMø<9ÓœŒUFµwv…®¤#s$‘fLg8QÉÝÉ$që’9®éJ¤ezŠRÞ×’[®éÝú«'®†ÍÉ?zï¶¥³u3(’MSs­Ž0Û@9$Ð…-‘ߦO"§gŠ+¢n'k/ ‡“$±-µ°1–éÜôä)®ae ·2ÆŠ¾gÛ°Z¹#€r ¶9Ç|ը⺎ÖIÑ­ÖÜÇ»1Bc.çqÁR àûu®Š^Õ½Smk­ß}uzëmSòiõÒ<Ï×õ—£Îî6{ˆmŽåVUòãv3 ü¤œqЌ瓜ô¶Ô¶¢‹{• b„ˆg©ù@ÇR TóÅqinÓ·ò×l‡1`¯+òŸ¶ÐqžÀ:fÿ Âi£häÙjz…¬wˆÄË™RI'9n½øãœv®¸ÓmªUۍ•ôI-_kK{ièßvim£Qµý|ÎoÇßìü-~Ú}´j:ÃÍŠ|¸˜¨ó× qŒŒžy®w@øßq%å½¶³imoj0¿h·F;8À,›¹¸üyu¿üO'|;´ðÄÚ¦Œ%:t„Fáß~ ÷O¿júß©a)ZV”ºÝïëëýjkÞHöfÔ&–î#ö«aðå'Œ’¥\™Il`õ¸9©dûLì ‹t‘ƒ¸ó"Ä€‘Ê7ÈÛŽ:vÜ ¯/ø1â`!»Ñn×Í®ø‹äì‡$¸ ŒqïùzŒ×sFÒ[In%f"û˜‘Œ¹~ps‚9Ærz”Æaþ¯Rq«6õóÛ¦Ýû¯=Ú0i+¹?ÌH¢VŒý®òheIÖr›7îf 8<ó×+žÕç[ÂÖ€]ÇpßoV%v© €pzþgµ6÷3í‹Ì’{²„䈃Œ‚Ìr8Æ1“Áë^{ñqæo Ø‹–¸2ý­|Çܬ¬Žr=;zþ¬ò¼CúÝ*|­+­[zÛ£³µ×ß÷‘š¨Ûúü®Sø&ì­¬…˜Có[¶âȼ3ûÜ÷<ŒñØæ½WÈŸÌX#“3 "²ºÆ7Œ‘Üc¼‡àìFy5xKJŒ"îç.r@ï×Þ½Ä-ÿ þ“}ª}’*Þ!,Fm¸Î@†9b?1W{Yæ3„`Ú¼VõŠÚÛ_kùöG.mhÎñ ôíhí§Ô$.ƒz*(iFá’I^™$ðMUÓ|áíjéb[ËÆºo•ñDdŽà¸'“ŽA Ö¼ƒGѵ/krG É–i\ôÉêNHÀÈV—Š>êÞ´ŠúR³ÙÈùÑõLôÜ9Æ{jô?°°Kýš¥WíZ¿V—m6·E}{X~Æ? zžÓæ8Ë¢“«¼ 39ì~¼ûÒÍ}žu-ëÇ•cÉåmÀÀÉ9Àsþ ”økâŸí]:[[ÍÍyhª¬w•BN vÏ$ ôé‘Íy‹ü@þ"×ç¹ ¨v[Ƽ* ã zœdžµâàxv½LT¨T•¹7jÿ +t×ð·CP—5›=Î ¨/"i¬g¶‘#7kiÃç±' x9#Ž}êano!òKD‘ílï”('¿SÔð?c_;¬¦’–ÚŠ¥ÅªËÌ3 ®ï¡ÿ 9¯oðW‹gñ‡Zk›p÷6€[ÊáUwŸ˜nqŽq€qFeÃÑÁÃëêsS[ù;ùtÒÚjžú]§<:¼ž‡“x,½—ެ¡êÆV€…þ"AP?ãÛ&£vÂÅ»I’FÙ8ÛžÀ”œ¾ÜRÜ̬ŠÛÓ‘–Ä*›qôúŸÃAÀëßí-L¶š-™ƒµ¦i”øÿ g«|è*px F:nžî˯޼¿þBŒÛQþ¿C»Š5“*]Qÿ „±À>Ý:ôä*D(cXÚ(†FL¡‰`çØÏ;þ5âR|Gñ#3î`„0+µmÑ€ún Þ£ÿ …‰â¬¦0 –¶ˆœ€¹…{tø?ʯ(_çþ_Š5XY[¡Ù|Q¿ú µŠ2︛sO* Бÿ ×â°<+à›MkÂ÷š…ij ·Ü–ˆ«ò‚?ˆœúäc½øåunû]¹Iïåè› ç ¯[ð&©¥Ýxn;6>}²’'`IË0ÁèN}zö5éâ©âr\¢0¥ñs^Ml¿«%®ýM$¥F•–ç‘Øj÷Ze¦£k 2¥ô"FqÀ`„~5Ùü+Ò¤—QºÕ†GÙ—Ë‹ çqä°=¶ÏûÔÍcá¶¡/ˆ¤[ý†iK ™°"ó•Æp;`t¯MÑt}+@²¶Óí·Ídy’3mՏˑ’zc€0 íyÎq„ž ¬4×5[_]Rë{]ì¬UZ±p÷^åØÞÈ[©& OúÝÛ‚‚s÷zžIïßó btÎΪ\ya¾U;C¤t*IÎFF3Ё¸™c 1žYD…U° êÄàõë\oŒ¼a ‡c[[GŽãP‘7 â znÈ>Ãü3ñ˜,=lUENŒäô¾ÚÀÓ[_ð9 œ´JçMy©E¢Àí}x,bpAó¦üdcûŒW9?Å[Há$¿¹pÄ™#^9O88©zO=«Ë!µÖüY¨³ªÍy9ûÒ1 úôÚ»M?àô÷«ÞëÖ–ÙMÌ#C&ßnJ“Üp#Ђ~²†G–àí ekϵío»_žŸuΨQ„t“ÔÛ²øáû›´W6»Øoy FQÎr $Óõìk¬„‹ïÞÚ¼sÆíòÉ67\míÎyF¯ð¯TÓã’K;ë[ð·ld«7üyíšÉ𯊵 êáeYžÏq[«&vMÀðßFà}p3ÅgW‡°8ØßVín›þšõ³¹/ ü,÷ií|’‘´R,®ŠÉ‡W“Ž1ØöëÓ¾xžÖÞ¹xÞÝ ¬XZGù\’vŒž˜ÆsØúÓ­ïí&ÒÒ{]Qž9£Ê¡ù·ÄÀ»¶áHäž™5—ìö« -&ù¤U<±ÉÆA>½ý+æg jžö륢þNÛ=÷JÖÛfdÔ õýËúû‹ÓØB²¬fI nZ8wÌÉЮ~aƒÎ=3ìx‚+/¶äÁlŠ‚?™Æü#8-œ\pqTZXtè%»»&ÚÝ#´ŠðÜ žã§Í’¼{p·ß{m>ÞycP¨’¼¢0ú(Rƒë^Ž ñó¼(»y%m´ÕÙ}ÊûékB1¨þÑ®,#Q)ó‡o1T©ÜÃ*Ž‹‚yö< b‰4×H€“ìÐ. ¤²9ÌŠ>„Žãøgšñ ¯Š~)¸ßå\ÛÛoBŒa·L²œg$‚Iã¯ZÈ—Æ~%”äë—È8â)Œcƒ‘Âàu9¯b%)ÞS²¿Ïïÿ 4Öºù}Z/[H%¤vÉ#Ì’x§†b © ³´tÜ{gn=iï%õªÇç]ܧ—! åw„SÓp ·VÈÏ¡?5Âcâb¥_ĤŠz¬—nàþÖΟñKÄöJé=ÌWèêT‹¸÷qÎჟ•q’zWUN«N/ØO^Ÿe|í¾©k{üõ4öV^ïù~G¹êzÂèº|·÷×[’Þ31†rpjg·n Æ0Ý}kåË‹‰nîe¹ËÍ+™ÏVbrOç]'‰¼o®xÎh`¹Ç*±ÙÚ!T$d/$žN>¼WqᯅZ9ÑÒO\ÜÛê1o&,-z ~^NCgNÕéá)ÒÊ©7‰¨¯'Õþ¯þ_¿Ehîþóâ €ï¬uÛûý*ÎK9ä.â-öv<²‘×h$àãúW%ö¯~«g-ÕõÀàG~>Zú¾Iš+(šM³ Û#9äl%ðc¬ ûÝ xÖKG´x®|¸¤Ï™O:Ê8Ã’qÉcÔä‚yÇNJyËŒTj¥&µOmztjÿ ?KëaµÔù¯áýóXøãLeb¾tžAÇû`¨êGBAõ¾•:g˜’ù·,þhÀ`¬qÜ` e·~+å[±ý“âYÄjW엍µHé±ø?Nõô>½âX<5 Ç©ÏѼM¶8cܪXŽÉ^r?¼IróÈS•ZmÇ›™5»òÚÚ7ïu«&|·÷•Ά >[©ÞXHeS$Œyà€ ÷ù²:ò2|óãDf? Z¼PD¶ÓßC(xÆ0|©ßR;ôMsÿ µ´ÔVi¬,͹›Ìxâi˜`¹,GAéÇlV§ÄýF×Yø§ê–‘:Ã=ò2³9n±ÉžØÏ@yÎWžæ±Ãàe„ÄÒN ]ïòêìú_Go'¦ŽÑ’_×õЯðR66þ!›ÑÄ gFMÙ— äžäqôÈ;ÿ eX<#%»Aö‰ãR¤ Í”Ž¹È G&¹Ÿƒ&á?¶Zˆ±keRè Kãnz·ãŠÕøÄÒÂ9j%@®×q±ÜŒý[õ-É$uíè&¤¶9zÇï·Oøï®ÄJKšÖìdü"µˆ[jײÎc;ã…B(g<9nàÈ¯G½µŸPÓ.´Éfâ¼FŽP 31 ‘ÏR}<3šä~ Ã2xVöî Dr Ç\›}Ý#S÷ÈÀëŽHÆI®à\OçKuäI¹†ó(”—GWî ñ³¹¸æ2¨›‹ºÚû%¾ýÖ_3ºNú¯ëúì|ÕÅÖ‰}y lM’ZËîTÿ á[ðÐñ/ˆ9Àû ¸ón3 Mòd‘÷ döª^.Êñް›BâîNp>cëÏçÍzïíôÏ YÍ%ª¬·ãÏ-*9Ü­ÂãhéŒc¾dÈêú¼Ë,. VŠ÷çeÿ n/¡¼äãõâ=‹xGQKx”|¹bÌŠD@2Œ 8'Ž àúƒŽ+áDÒ&¡¨"Œ§–Žr22 Ç·s]ŸÄ‹«ð%ÚÄ<¹ä’(×{e›HÀqÁç©Ç½`üŽÚõK饚9ƒÄ±€< –úƒú~ çðñO#­Í%iKKlµ¦¾F)'Iê¬Î+Ç(`ñ¾£œdÈ’` ™ºcßéé^ÿ i¸”Û\ý¡æhÔB«aq¸}ãÀÆ:ÜWƒ|FÛÿ BŒÇÀeaŸ-sÊ€:úW½ÜÝÜ<%$µ†%CóDªÀí%IÈÏʤ…ôäñÞŒ÷‘a0“ôŽÚë¤nŸoW÷0«e¶y'Å»aΗ2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6 a”Èô> ÕÉaÕ<%®£2n bQŠå\tÈõUÿ ø»þ‹k15‚ÃuCL$ݹp P1=Oøýs¯^u éEJ”–éêŸê½5ýzy›jÛ³á›Ûkÿ ÚOcn±ÛÏîW;boºz{ãžüVÆ¡a£a5½äÎÂks¸J@?1è¿{$䑐=k”øsÖ^nŒ¦)ÝåXÃíùN1ØõÚOJë–xF÷h¸ Œ"Ž?x䜚ü³ì¨c*Fœ¯i;7~ñí׫Ðó¥Ë»3Ãü púw ‰°<Á%»ñž ÿ P+Û^ ¾Ye£ŽCÄŒ„/>˜>•á¶Ìm~&&À>M[hÈÈÿ [Ž•íd…RO@3^Ç(ʽ*¶ÖQZyßþ 1Vº}Ñç?¼O4Rh6R€ª£í¡ûÙ a‚3ß·Õ ü=mRÍ/µ9¤‚0ÑC¼Iè:cŽsÛ¾™x£ÆÐ¬ªÍöˢ샒W$•€Å{¨ÀPG ÀÀàŸZìÍ1RÉ0´ðxEË9+Éÿ ^rEÕ—±Š„70l¼áË@û.' ¼¹Žz€N3úUÉ<3á×*?²¬‚ä†"Ùc=p íÛ'¡ª1ñ"økJ†HÒ'»Ÿ+ oÏN¬Ã9 dÙãÜדÏâÍ~æc+j·Jzâ7(£ðW]•晍?nê´º6åwéåç÷N•ZŠíž›¬|?Ðõ?Ñ-E…®³ÇV$~X¯/…õ x‘LˆÑÜÚÈ7¦pzãÜüë½ðÄ^õtÝYËÍ7ÉÖÕ8ÏUe# #€r=sU¾/é’E§jRC4mxNÝ´9†íuá»›V‘ ZI€­×cr1Ÿpzsøf»¨åV‹ìû`qËLÊIã?\~¼³áËC©êhªOîO»‘ÃmçÛçút×¢x“Z}?Üê#b-¤X7õ Äò gž zzbº3œm*qvs·M=íúéw}¿&Úª°^Ö×µÏ(ø‡â†Öµƒenñý†×åQáYûœ÷ÇLœôÎNk¡ð‡¼/µ¸n0æÉ0¬ƒ‚üîÉÆvŒw®Sáö”š¯‹-üÕVŠØÙ[$`(9cqƒÔ_@BëqûÙ`Ýæ­0;79È?w<ó |ÙÜkßÌ1±Ëã ¿ìÒ»ðlìï«ÓnªèèrP´NÏš&Žéö Ù¸÷æ°~-_O'‰`°!RÚÚÝ%]Ø%þbß1'¿ÿ X՝áOöÎŒ·‹¬+Åæ*ÛÛ™0¤ƒOÍÔ `u¯¦ÂaèÐÃÓ«‹¨Ô¥µœ¿¯ÉyÅÙ.oÔôŸ Úx&(STðݽ¦õ] ’ÒNóÁäÈùr3í·žÚ[™ƒ¼veÈ÷ÞIõÎGlqÎ=M|«gsªxÅI6 ]Z·Îªä,¨zŒŽÄ~#ØŠúFñiÉqc©éÐD>S딑 GñŽ1éÐ^+ Ëi;Ô„µVÕú»i¯ÈÒ-ZÍ]òܘ®ì` bÛÙ¥_/y(@÷qÐúg Ô÷W0.Ø› 6Ò© r>QƒŒ0+Èîzb¨É+I0TbNñ"$~)ÕÒ6Þ‹{0VÆ27œWWñcÄcX×íôûyKZéðªc'iQ¿¯LaWŠŸS\·Š“źʸ…ôÙÂí|öÀÇåV|!¤ÂGâÛ[[’ï 3OrÙËPY¹=Î1õ5öåTžÑè Ú64/üö?Zëžk}¬¶éào፾á}3“ü]8Éæ¿´n²Žš_6¾pœ)2?úWÓÚ¥¾¨iWúdŽq{*ª1rXŒd…m»‰äcô¯–dâ•ã‘Jº¬§¨#¨® §,df«8ÉÅßN¾hˆ;îÓ=7áùpën®É 6ûJžO2^œÐò JÖø¥²ã›Ò6Ü·‰!wbÍ‚¬O©»õ¬ÿ ƒP=Ä:â¤-&ÙŽ ` È9 r9íϧzë> XÅ7ƒ5X–krÑ¢L 7€ìw}ÑŸNHëŒüþ:2†á¼+u·á÷N/Û'Ðç~ߘô«ëh!ónRéeQ´6QÛÿ èEwëÅÒ|¸Yqó1uêyùzð8 ƒŠù¦Ò;¹ä6öi<'ü³„[íZhu½ ùÍ¡g‚>r¯׊îÌx}bñ2“­k꣧oø~›hTèóËWò4|ki"xßQ˜Ï6øÀLnß‚0 ¹Æ{±–¶Öe#¨27È@^Ìß.1N¾œyç€õ†ñeé·Õã†çQ°€=­Ì©ºB€Ø8<‚ÃSõ®ùcc>×Ú .Fr:žÝGæ=kÁâ,^!Fž ¬,àµ}%¶«îõ¹†"r²ƒGœüYÕd?aÑÍY®49PyU ÷þ!žxÅm|/‚ãNð˜¼PcûTÒ,¹/Ý=FkÏ|u¨¶«â녏{¤m¢]Û¾ïP>®XãÞ½iÓÁ¾ ‰'¬–6ß¼(„ï— í!úÙäzôë^–:œ¨å|,_¿&š×]uÓѵÛô4’j”bž§x‘Æ©ã›á,‚[Ô ÎÞ= ŒËæ ÀùYÁ?ŽïÚ¼?ÁªxºÕÛ,°1¸‘¿ÝäãØ¯v…@¤åq½ºã œàûââ·z8Xýˆþz~—û»™âµj=Ž â~ãáh@'h¼F#·Üp?ŸëQü-løvépx»cŸø…lxâÃûG·‰¶ø”L£©%y?¦úõÆü-Õ¶¥y`Òl7>q’2üA?•F}c‡jB:¸Jÿ +§¹¿¸Q÷°ív=VÑìu[Qml%R7a×IèTõéŽx¬ ?†š7 1†îã-ˆã’L¡lŽ0OÓ=ÅuˆpÇ•¼3ÛùÒ¶W/!|’wŽw^qÔ×Ïaó M8Q¨ãÑ?ëï0IEhÄa¸X•`a ?!ÐñùQ!Rä žqŽžÝO`I0ÿ J“y|ñ!Îã@99>þ8–+éáu…!ù—ä ʰ<÷6’I®z ÅS„¾)Zþ_Öýµ×ËPåOwø÷þ*üïænÖùmØÝûþ¹=>¦½öî×Jh]¼ç&@§nTŒ6IT Àõ^Fxð7Å3!Ö·aÛ$þÿ ¹ã5îIo:ȪmËY[’8ÇӾlj*òû¢¥xõ¾¼ú•åk+\ð¯ HÚoŽl•Ûk,¯ ç²²cõÅ{²Z\ ´ìQ åpzŽ3Ôð}ÿ Jð¯XO¡øÎé€hÙ¥ûLdŒ`““ù6Gá^ÃáÝ^Ë[Ñb¾YåŒÊ»dŽ4 †2§,;ÿ CQÄ´¾°¨c–±”mºV{«ßÕýÄW\ÖŸ‘çŸ,çMRÆí“l-ƒn~ë©ÉÈê Ü?#Ž•¹ðãSÒ¥ÐWNíà½;ãž)™ÎSÈ9cóLj뵿Å«iÍk¨ió­¶X‚7÷ƒ€yãnyÏŽëÞ Öt`×À×V's$È9Ú:ä{wÆEk€«†Çàc—â$éÎ.éí~Ýëk}ÅAÆpörÑ¢‡Šl¡ÑüSs‹¨‰IÝ„óÀ×wñ&eºðf™pŒÆ9gŽTø£lñëÀçŽ NkÊUK0U’p ï^¡ãÈ¥´ø{£ÙHp`’ØåbqÏ©äó^Æ: Ž' ÊóM«õz+ß×ó5Ÿ»('¹­ð¦C„$˜Å¢_ºÈI?»^äã'ñêzž+ë€ñ-½»´}¡Ë*õ?.xÇ^1ŽMyǸ&“—L–îëöâ7…' bqéÎGé]˪â1$o²¸R8Ã`.q€}sÖ¾C9­8cêÆÞíïóòvÓòùœÕfÔÚéýu­èÖ·Ú Å‚_¤³ÜۺƑߝ”àרý:׃xPþÅÕî-/üØmnQìïGΊÙRqê=>¢½õnæ·r!—h`+’;ò3È<“Û©éšóŸx*÷V¹¸×tÈiˆßwiÔÿ |cŒñÏ®3Ö½̰‰Ë Qr©ö½®¼ÛoÑÙZÅÑ«O൯ýw8;k›ÿ x†;ˆJa;‘º9÷÷R+¡ñgŽí|Iáë{ôáo2ʲ9 029ÉÏLí\‰¿¸Ÿb˜ "Bv$£&#ßiê>=ªª©f ’N ëí>¡N­XW­~5×úíø\‰»½Ï^ø(—wÖú¥¤2íŽÞXæÁ$ °eÈ888^nÝë²ñÝÔ^ ÖÚ9Q~Ëå7ï DC¶ÑµƒsËÇè9®Wáþƒ6‡£´·°2\Ý:ÈÑ?(#¨'$õèGJ¥ñW\ÿ ‰E¶—¸™g˜ÌÀ¹;Pv ú±ÎNs·ëŸ’–"Ž/:té+ûË]öJöÓM»ëø˜*‘•^Uý—êd|‰åñMæÔÝ‹23å™6æHùÛ‚ëüñ^…ñ1¢oêûÑEØ.õ7*ÅHtÎp{g<·Á«+¸c¿¿pÓ¾Æby=8É_ÄsÆk¬ñB\jÞÔì••Ë[9Píb‹Bヅ =9­3§ð§LšÛáÖšÆæXÌÞdÛP.0\ãïÛ0?™úJ¸™Ë ”•œº+=<µI£¦í¯õêt¬d‹T¬P=ËFêT>ÍØØ@Ï9<÷AQÌ×»Õ¡xùk",JÎæù±Éç$œŽŸZWH®¯"·UÌQ ’ÙÈ]ÅXg<ã ߨg3-Üqe€0¢¨*Œ$܃ ’Sû 8㎼_/e'+Ï–-èÓ¶¶Õíß[·ÙÙ½î쏗¼sk%§µxä‰â-pÒeÆCrú ôσžû=”šÅô(QW‚Õd\ƒæ. \àö¹¯F½°³½0M>‘gr÷q+œ¶NïºHO— ¤ ܥݭ”n·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóٍ¤¶¿õú…ÄRÚ[Ësöټˏ•Ë ópw®qœŒ·Ø ùÇâ‹ý‡ãKèS&ÞvûD Aù‘É9 ŒîqÅ} $SnIV[]ѐ´Ó}ØÜ¾A Ü|½kÅþÓ|E Mu R¼.I¼¶däò‚ÃkÆ}ðy¹vc iUœZ…­Õõ»z¾÷¿n¦*j-É­/àœHã\y5 Û ß™ó0— äŸnzôã#Ô¯,†¥ÚeÔ÷ÜÅ´„“'c…<íÝ€<·SŠ¥k§Ã¢éÆÆÙna‚8–=«ʪ[Ÿ™°pNî02z“ÔÙ–K8.È’Þî(vƒ2®@ äÈûãçžxäÇf¯ˆu¹yUÕîýWšÙ|›ëÒ%Q^í[æ|éo5ZY•^{96ˆY‚§v*x>âº_|U¹Ö´©tûMÒÂ9PÇ#«£#€ éÉñ‘ƒÍz/‰´-į¹°dd,Б›p03ƒœ{ç9=+ Ûᧇ¬¦[‡‚ê婺¸#±ß=³ý¿•Õµjñ½HÙh›Û[§ÚýÊöô÷{˜?ô÷·Ô.u©–_%còcAÀ˜’ }0x9Î>žñÇáÍ9,ahï¦Ì2òÓ ñÛAäry$V²Nð ]=$Ž ‚#Ù‚1ƒƒødõMax‡ÂÖ^!±KkÛ‘ «“Çó²FN8+ëÎ{Ò¼oí§[«ÕMRoËeç×[_m/¦¦k.kôgŽxsSÓ´ý`êzªÜÜKo‰cPC9ÎY‰#§^üý9¹âïÞx£Ë·Ú`±‰‹¤;³–=ÏaôÕAð‚÷kêÁNBéÎælcõö®£Fð†ô2Ò¬]ßÂK$ÓÜ®•”/ÊHàã$ä ¸÷ëf¹Oµúâ“”’²ø­è´µþöjçNü÷üÌ¿ xNïFÒd»¼·h®îT9ŽAµÖ>qÁçÔœtïÒ»\ȶÎîcÞäîó3¶@#ÉIÎ ÔñW.<´’¥–ÑÑ€ÕšA‚ ;†qÓë‚2q ÒÂó$# Çí‡ !Ë}Õ9ÈÎÑÉã=;ŒÇÎuñ+ÉûÏ¥öíeÙ+$úíÜ娯'+êZH4ƒq¶FV‹gïŒ208ÆÌ)íб>M|÷âÍã¾"iì‹¥£Jd´™OÝç;sÈúr+ÜäˆË)DŒ¥šF°*3Õ”d {zÔwºQ¿·UžÉf†~>I+ŒqÔ`ð3œ“Ü×f]œTÁÔn4“ƒø’Ýßõ_«*5šzGCÊ,þ+ê1ò÷O¶¸cœºb2yÇ;cùÕ£ñh¬›áÑŠr¤ÝäNBk¥—á—†gxšX/쑘hŸ*Tçn =û㦠2|(ð¿e·ºÖ$ ýìŸ!'åΰyîî+×öœ=Y:²¦ÓÞ×iü’—ü -BK™£˜›âÆ¡&véðõ-ûÉY¹=Onj¹ø¯¯yf4·±T Pó`çœ7={×mÃ/ ¢˜ZÚòK…G½¥b„’G AãÜœ*í¯Ã¿ IoæI¦NU8‘RwÈã;·€ Û×ëÒ”1Y •£E»ÿ Oyto¢<£Áö·šï,䉧ûA¼sû»Nò}¹üE{ÜÖªò1’õÞr0â}ÎØ#>à/8ïéÎ~—áÍ#ñÎlí§³2f'h”?C÷YËdð:qëõÓ·‚ïeÄ© ÔÈØÜRL+žAÎ3¼g=åšó³Œt3 ÑQ¦ùRÙßE®¼±w_;þhš’Sirÿ ^ˆã¼iੇ|RòO„m°J/“$·l“ ÇÓ¿ÿ [ÑŠÆ“„†Õø>cFÆ6Ø1ƒ– àz7Ldòxäüwá‹ÝAXùO•Úý’é®ähm­ •NÀ±ÌTÈç ƒ‘I$pGž:‚ÄbêW¢®œ´|­¦­nÍ>¶ÖÏ¢§ÎÜ¢ºö¹•%ÄqL^öÛ KpNA<ã¡ …î==ª¸óffËF‡yÌcÉ ©ç$ð=ñÏ­YþÊ’Ú]—¥‚¬‚eDïÎH>Ÿ_ÌTP™a‰ch['çÆÜò7a‡?w°Ïn§âÎ5”’¨¹uÚÛ|´ÓÓc§{O—ü1•ªxsÃZ…ÊÏy¡Ã3¸Ë2Èé» ‘ƒÎ äžÜðA§cáOéúÛ4ý5-fŒï„ù¬ûô.Ç Üsž•Ò¾•wo<¶Ÿ"¬¡º|£ î2sÇ¡éE²ÉFѱrU°dÜ6œ¨ mc†Îxë׺Þ'0²¡Rr„{j¾í·è›µ÷)º·å–‹î2|I®Y¼ºÍË·–ÃÆà㍣'óÆxƒOÆÞ&>\lóÌxP Xc¸ì Sþ5§qà/ê>#žÞW¸if$\3 ® ûÄ“ùŽÕê¾ð<Ó‹H¶óÏ" å·( á‘€:ã†8Ï=+ꨬUA×ÃËÚT’ÑÞöù¥¢]{»ms¥F0\ÑÕ—ô}&ÛB´ƒOŽÚ+›xíÄÀ1 ,v± žIëíZ0ǧ™3 í2®0ทp9öÝÔž)ÓZËoq/Ú“‘L ²ŒmùŽÓ9§[Û#Ä‘\ÞB¬Çs [;à à«g‚2ôòªœÝV§»·¯/[uó½õÛï¾ /šÍ}öüÿ «=x»HŸÂÞ.™ ÌQùŸh´‘#a$‚'¡u<Š›Æ>2>+ƒLSiöwµFó1!eg`£åœ ÷ëÛö}Á¿ÛVÙêv $¬ƒ|,s÷z€ð΃¨x÷ÅD\ÜŒÞmåÔ„ ˆ o| :{ÇÓ¶–òÁn!´0Ål€, ƒ ( ÛŒŒ c¶rsšæ,4‹MÛOH!@¢ ÇŽ„`å²9ÝÃw;AÍt0®¤¡…¯ØÄ.Àì클ƒ‘ßñ5Í,Óëu-ÈÔc¢KÃÓ£òÖ̺U.õL¯0…%2È—"~x ‚[`có±nHàŽyàö™¥keˆìŒÛFç{(Ø©†`Jã#Žwg<“:ÚÉ;M ^\yhûX‡vB·÷zrF?§BÊÔ/s<ÐÈB)Û± ·ÍÔwç5Âã:så§e{mѤï«Òíh—]Wm4âí¿ùþW4bC3¶ª¾Ùr$ pw`àädzt!yŠI„hÂîàM)!edŒm'æ>Ç?wzºK­ìcŒ´¯Ìq6fp$)ãw¡éUl`µ»ARAˆÝÕgr:äŒgƒéé[Ôö±”iYs5Ýï«ÙG—K=þF’æMG«óÿ `ŠKɦuOQ!ÕåŒ/ÎGÞ`@ËqÕzdõâ«Ê/Ö(ƒK´%ŽbMü åÜŸö—>¤óŒŒV‘°„I¢Yž#™¥ùÏÊ@8 œgqöö5ª4vד[¬(q cò¨À!FGaÁõõ¯?§†¥ÏU½í¿WªZ$úyú½Žz×§Éþ?>Ã×È•6°{™™ŽÙ.$`­ÎUœ…çè ' ¤r$1Ø(y7 ðV<ž:È  ÁÎMw¾Â'Øb§øxb7gãО½óÉÊë²,i„Fȹ£§8ãä½k¹¥¦ê/ç{ïê驪2œ/«ü?¯Ô›ìñÜ$þeýœRIåŒg9Ác’zrrNO bÚi¢ ѺË/$,“ª¯Ýä;Œ× ´<ÛÑn³IvŸb™¥ nm–ÄŸ—nÝÀãŽ3ëÍG,.öó³˜Ù£¹u ÊÌrŠ[<±!@Æ:c9ÅZh ì’M5ÄìÌ-‚¼ëÉùqŽGì9¬á ;¨A-ž—évþÖ–^ON·Ô”ŸEý}ú×PO&e[]ÒG¸˜Ûp ƒÃà/Ë·8ûÀ€1ž@¿ÚB*²­¼ñì8@p™8Q“žÆH'8«I-%¸‚ F»“åó6°Uù|¶Ú¸ã ò^Äw¥ŠÖK–1ÜÝK,Žddlí²0PÀü“×ükG…¯U«·¶–´w¶ŽÍ¾©yÞú[Zös•¯Á[™6° ¨¼ÉVæq·,# ìãï‘×8îry®A››¨,ãc66»Ë´ã'æÉù?t}¢æH--Òá"›|ˆ¬[í  7¶ö#¸9«––‹$,+Ëqœ\Êø c€yê^ݸÄa°«™B-9%«×®‹V´w~vÜTéꢷþ¼ˆ%·¹• ’[xç•÷2gØS?6åÀÚ õ9É#š@÷bT¸º²C*3Bá¤òÎA9 =úU§Ó"2Ãlá0iÝIc‚2Î@%öç94ùô»'»HÄ¥Ô¾@à Tp£šíx:úÊ:5eºßMý×wµ›Ó_+šº3Ýyvÿ "ºÇ<ÂI>Õ 1G·Ë«È«É# àÈÇ øp Jv·šæDûE¿›†Ë’NFr2qŸ½ÇAÜšu•´éí#Ħ8£2”Ú2Ã/€[ÎTr;qŠz*ý’Îþ(≠;¡TÆâ›;ºÿ àçœk‘Þ­8¾Uª¾íé{^×IZéwÓkXÉûÑZo¯_øo×È¡¬ â–ÞR§2„‚Àœü½ùç® SVa†Âüª¼±D‘ŒísŸàä|ä2 æ[‹z”¯s{wn„ÆmáóCO+†GO8Ïeçåº`¯^¼ðG5f{Xžä,k‰<á y™¥voÆ éÛõëI=œ1‹éíÔÀÑ)R#;AÂncäŽ:tÏ#¶TkB.0Œ-ÖÞZÛgumß}fÎJÉ+#2êÔP£žùÈÅi¢%œ3P*Yƒò‚Aì“Ž2r:ƒÐúñi­RUQq‰H9!”={~¼ “JŽV¥»×²m.ÛߺiYl¾òk˜gL³·rT• ’…wHÁ6ä`–Î3ùÌ4Øe³†&òL‘•%clyîAÂäà0 žüç$[3uŘpNOÀÉ=† cï{rYK ååä~FÁ •a»"Lär1Ó¯2Äõæ<™C•.fÕ»è¥~½-¿g½Â4¡{[ør¨¶·Žõäx¥’l®qpwÇ»8ärF \cޏܯÓ-g‚yciÏÀ¾rÎwèØÈ#o°Á9ã5¢šfÔxÞæfGusÏÌJÿ µ×œ/LtãÅT7²¶w,l ɳ;”eúà·¨çîŒsÜgTÃS¦­^ '~‹®›¯+k÷ZÖd©Æ*Ó[Ü«%Œk0ŽXƒ”$k#Ȩ P2bv‘ƒŸáÇ™ÆÕb)m$É*8óLE‘8'–ÜN Úyàúô­+{uº±I'wvš4fÜr íì½=úuú sFlìV$‘ö†Hсù€$§ õ=½¸«Ž] :Ž+•¦ïmRþ½l´îÊT#nkiøÿ _ðÆT¶7Ò½ºÒ£Î¸d\ã8=yãŽÜäR{x]ZâÚé#¸r²#»ÎHÆ6õ ç® ÎFkr;sºÄ.&;só± Ç9êH÷ýSšÕ­tÐU¢-n­ Ì| vqœ„{gŒt§S.P‹’މ_[;m¥Þ­ZýRûÂX{+¥úü¼ú•-àÓ7!„G"“´‹žƒnrYXã¸îp éœ!Ó­oP̏tÑ (‰Þ¹é€sÓ#GLçÕšÑnJý¡!‘Tä#“ß?îýp}xÇ‚I¥Õn#·¸–y'qó@r[ Êô÷<ÔWÃÓ¢áN¥4ԝ’I&ݼ¬¬¼ÞºvéÆ FQV~_ÒüJÖÚt¥¦Xá3BÄP^%ÈÎW-×c¡ú©¤·Iþèk¥š?–UQåIR[’O 5x\ÉhÆI¶K4«2ùªŠŒ<¼óœçØ`u«‚Í.VHä € Ëgfx''9ÆI#±®Z8 sISºku¢ßÞ]úk»Jößl¡B.Ü»ÿ MWe °·Ž%šêɆ¼»Âù³´œ O¿cÐÓÄh©"ÛÜÏ.ÖV ’3nüÄmnq[ŒòznšÖ>J¬òˆæ…qýØP Ž:ä7^0yëWšÍ_79äoaÈ °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+J yÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½ âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î <iWN­smª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ