Server IP : 104.21.87.198 / Your IP : 172.68.164.171 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 : |
| Current File : /usr/bin/psed |
#!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if $running_under_some_shell;
my $startperl;
my $perlpath;
($startperl = <<'/../') =~ s/\s*\z//;
#!/usr/bin/perl
/../
($perlpath = <<'/../') =~ s/\s*\z//;
/usr/bin/perl
/../
$0 =~ s/^.*?(\w+)[\.\w]*$/$1/;
# (p)sed - a stream editor
# History: Aug 12 2000: Original version.
# Mar 25 2002: Rearrange generated Perl program.
# Jul 23 2007: Fix bug in regex stripping (M.Thorland)
use strict;
use integer;
use Symbol;
=head1 NAME
psed - a stream editor
=head1 SYNOPSIS
psed [-an] script [file ...]
psed [-an] [-e script] [-f script-file] [file ...]
s2p [-an] [-e script] [-f script-file]
=head1 DESCRIPTION
A stream editor reads the input stream consisting of the specified files
(or standard input, if none are given), processes is line by line by
applying a script consisting of edit commands, and writes resulting lines
to standard output. The filename `C<->' may be used to read standard input.
The edit script is composed from arguments of B<-e> options and
script-files, in the given order. A single script argument may be specified
as the first parameter.
If this program is invoked with the name F<s2p>, it will act as a
sed-to-Perl translator. See L<"sed Script Translation">.
B<sed> returns an exit code of 0 on success or >0 if an error occurred.
=head1 OPTIONS
=over 4
=item B<-a>
A file specified as argument to the B<w> edit command is by default
opened before input processing starts. Using B<-a>, opening of such
files is delayed until the first line is actually written to the file.
=item B<-e> I<script>
The editing commands defined by I<script> are appended to the script.
Multiple commands must be separated by newlines.
=item B<-f> I<script-file>
Editing commands from the specified I<script-file> are read and appended
to the script.
=item B<-n>
By default, a line is written to standard output after the editing script
has been applied to it. The B<-n> option suppresses automatic printing.
=back
=head1 COMMANDS
B<sed> command syntax is defined as
Z<> Z<> Z<> Z<>[I<address>[B<,>I<address>]][B<!>]I<function>[I<argument>]
with whitespace being permitted before or after addresses, and between
the function character and the argument. The I<address>es and the
address inverter (C<!>) are used to restrict the application of a
command to the selected line(s) of input.
Each command must be on a line of its own, except where noted in
the synopses below.
The edit cycle performed on each input line consist of reading the line
(without its trailing newline character) into the I<pattern space>,
applying the applicable commands of the edit script, writing the final
contents of the pattern space and a newline to the standard output.
A I<hold space> is provided for saving the contents of the
pattern space for later use.
=head2 Addresses
A sed address is either a line number or a pattern, which may be combined
arbitrarily to construct ranges. Lines are numbered across all input files.
Any address may be followed by an exclamation mark (`C<!>'), selecting
all lines not matching that address.
=over 4
=item I<number>
The line with the given number is selected.
=item B<$>
A dollar sign (C<$>) is the line number of the last line of the input stream.
=item B</>I<regular expression>B</>
A pattern address is a basic regular expression (see
L<"Basic Regular Expressions">), between the delimiting character C</>.
Any other character except C<\> or newline may be used to delimit a
pattern address when the initial delimiter is prefixed with a
backslash (`C<\>').
=back
If no address is given, the command selects every line.
If one address is given, it selects the line (or lines) matching the
address.
Two addresses select a range that begins whenever the first address
matches, and ends (including that line) when the second address matches.
If the first (second) address is a matching pattern, the second
address is not applied to the very same line to determine the end of
the range. Likewise, if the second address is a matching pattern, the
first address is not applied to the very same line to determine the
begin of another range. If both addresses are line numbers,
and the second line number is less than the first line number, then
only the first line is selected.
=head2 Functions
The maximum permitted number of addresses is indicated with each
function synopsis below.
The argument I<text> consists of one or more lines following the command.
Embedded newlines in I<text> must be preceded with a backslash. Other
backslashes in I<text> are deleted and the following character is taken
literally.
=over 4
=cut
my %ComTab;
my %GenKey;
#--------------------------------------------------------------------------
$ComTab{'a'}=[ 1, 'txt', \&Emit, '{ push( @Q, <<'."'TheEnd' ) }\n" ]; #ok
=item [1addr]B<a\> I<text>
Write I<text> (which must start on the line following the command)
to standard output immediately before reading the next line
of input, either by executing the B<N> function or by beginning a new cycle.
=cut
#--------------------------------------------------------------------------
$ComTab{'b'}=[ 2, 'str', \&Branch, '{ goto XXX; }' ]; #ok
=item [2addr]B<b> [I<label>]
Branch to the B<:> function with the specified I<label>. If no label
is given, branch to the end of the script.
=cut
#--------------------------------------------------------------------------
$ComTab{'c'}=[ 2, 'txt', \&Change, <<'-X-' ]; #ok
{ print <<'TheEnd'; } $doPrint = 0; goto EOS;
-X-
### continue OK => next CYCLE;
=item [2addr]B<c\> I<text>
The line, or range of lines, selected by the address is deleted.
The I<text> (which must start on the line following the command)
is written to standard output. With an address range, this occurs at
the end of the range.
=cut
#--------------------------------------------------------------------------
$ComTab{'d'}=[ 2, '', \&Emit, <<'-X-' ]; #ok
{ $doPrint = 0;
goto EOS;
}
-X-
### continue OK => next CYCLE;
=item [2addr]B<d>
Deletes the pattern space and starts the next cycle.
=cut
#--------------------------------------------------------------------------
$ComTab{'D'}=[ 2, '', \&Emit, <<'-X-' ]; #ok
{ s/^.*\n?//;
if(length($_)){ goto BOS } else { goto EOS }
}
-X-
### continue OK => next CYCLE;
=item [2addr]B<D>
Deletes the pattern space through the first embedded newline or to the end.
If the pattern space becomes empty, a new cycle is started, otherwise
execution of the script is restarted.
=cut
#--------------------------------------------------------------------------
$ComTab{'g'}=[ 2, '', \&Emit, '{ $_ = $Hold };' ]; #ok
=item [2addr]B<g>
Replace the contents of the pattern space with the hold space.
=cut
#--------------------------------------------------------------------------
$ComTab{'G'}=[ 2, '', \&Emit, '{ $_ .= "\n"; $_ .= $Hold };' ]; #ok
=item [2addr]B<G>
Append a newline and the contents of the hold space to the pattern space.
=cut
#--------------------------------------------------------------------------
$ComTab{'h'}=[ 2, '', \&Emit, '{ $Hold = $_ }' ]; #ok
=item [2addr]B<h>
Replace the contents of the hold space with the pattern space.
=cut
#--------------------------------------------------------------------------
$ComTab{'H'}=[ 2, '', \&Emit, '{ $Hold .= "\n"; $Hold .= $_; }' ]; #ok
=item [2addr]B<H>
Append a newline and the contents of the pattern space to the hold space.
=cut
#--------------------------------------------------------------------------
$ComTab{'i'}=[ 1, 'txt', \&Emit, '{ print <<'."'TheEnd' }\n" ]; #ok
=item [1addr]B<i\> I<text>
Write the I<text> (which must start on the line following the command)
to standard output.
=cut
#--------------------------------------------------------------------------
$ComTab{'l'}=[ 2, '', \&Emit, '{ _l() }' ]; #okUTF8
=item [2addr]B<l>
Print the contents of the pattern space: non-printable characters are
shown in C-style escaped form; long lines are split and have a trailing
`C<\>' at the point of the split; the true end of a line is marked with
a `C<$>'. Escapes are: `\a', `\t', `\n', `\f', `\r', `\e' for
BEL, HT, LF, FF, CR, ESC, respectively, and `\' followed by a three-digit
octal number for all other non-printable characters.
=cut
#--------------------------------------------------------------------------
$ComTab{'n'}=[ 2, '', \&Emit, <<'-X-' ]; #ok
{ print $_, "\n" if $doPrint;
printQ() if @Q;
$CondReg = 0;
last CYCLE unless getsARGV();
chomp();
}
-X-
=item [2addr]B<n>
If automatic printing is enabled, write the pattern space to the standard
output. Replace the pattern space with the next line of input. If
there is no more input, processing is terminated.
=cut
#--------------------------------------------------------------------------
$ComTab{'N'}=[ 2, '', \&Emit, <<'-X-' ]; #ok
{ printQ() if @Q;
$CondReg = 0;
last CYCLE unless getsARGV( $h );
chomp( $h );
$_ .= "\n$h";
}
-X-
=item [2addr]B<N>
Append a newline and the next line of input to the pattern space. If
there is no more input, processing is terminated.
=cut
#--------------------------------------------------------------------------
$ComTab{'p'}=[ 2, '', \&Emit, '{ print $_, "\n"; }' ]; #ok
=item [2addr]B<p>
Print the pattern space to the standard output. (Use the B<-n> option
to suppress automatic printing at the end of a cycle if you want to
avoid double printing of lines.)
=cut
#--------------------------------------------------------------------------
$ComTab{'P'}=[ 2, '', \&Emit, <<'-X-' ]; #ok
{ if( /^(.*)/ ){ print $1, "\n"; } }
-X-
=item [2addr]B<P>
Prints the pattern space through the first embedded newline or to the end.
=cut
#--------------------------------------------------------------------------
$ComTab{'q'}=[ 1, '', \&Emit, <<'-X-' ]; #ok
{ print $_, "\n" if $doPrint;
last CYCLE;
}
-X-
=item [1addr]B<q>
Branch to the end of the script and quit without starting a new cycle.
=cut
#--------------------------------------------------------------------------
$ComTab{'r'}=[ 1, 'str', \&Emit, "{ _r( '-X-' ) }" ]; #ok
=item [1addr]B<r> I<file>
Copy the contents of the I<file> to standard output immediately before
the next attempt to read a line of input. Any error encountered while
reading I<file> is silently ignored.
=cut
#--------------------------------------------------------------------------
$ComTab{'s'}=[ 2, 'sub', \&Emit, '' ]; #ok
=item [2addr]B<s/>I<regular expression>B</>I<replacement>B</>I<flags>
Substitute the I<replacement> string for the first substring in
the pattern space that matches the I<regular expression>.
Any character other than backslash or newline can be used instead of a
slash to delimit the regular expression and the replacement.
To use the delimiter as a literal character within the regular expression
and the replacement, precede the character by a backslash (`C<\>').
Literal newlines may be embedded in the replacement string by
preceding a newline with a backslash.
Within the replacement, an ampersand (`C<&>') is replaced by the string
matching the regular expression. The strings `C<\1>' through `C<\9>' are
replaced by the corresponding subpattern (see L<"Basic Regular Expressions">).
To get a literal `C<&>' or `C<\>' in the replacement text, precede it
by a backslash.
The following I<flags> modify the behaviour of the B<s> command:
=over 8
=item B<g>
The replacement is performed for all matching, non-overlapping substrings
of the pattern space.
=item B<1>..B<9>
Replace only the n-th matching substring of the pattern space.
=item B<p>
If the substitution was made, print the new value of the pattern space.
=item B<w> I<file>
If the substitution was made, write the new value of the pattern space
to the specified file.
=back
=cut
#--------------------------------------------------------------------------
$ComTab{'t'}=[ 2, 'str', \&Branch, '{ goto XXX if _t() }' ]; #ok
=item [2addr]B<t> [I<label>]
Branch to the B<:> function with the specified I<label> if any B<s>
substitutions have been made since the most recent reading of an input line
or execution of a B<t> function. If no label is given, branch to the end of
the script.
=cut
#--------------------------------------------------------------------------
$ComTab{'w'}=[ 2, 'str', \&Write, "{ _w( '-X-' ) }" ]; #ok
=item [2addr]B<w> I<file>
The contents of the pattern space are written to the I<file>.
=cut
#--------------------------------------------------------------------------
$ComTab{'x'}=[ 2, '', \&Emit, '{ ($Hold, $_) = ($_, $Hold) }' ]; #ok
=item [2addr]B<x>
Swap the contents of the pattern space and the hold space.
=cut
#--------------------------------------------------------------------------
$ComTab{'y'}=[ 2, 'tra', \&Emit, '' ]; #ok
=item [2addr]B<y>B</>I<string1>B</>I<string2>B</>
In the pattern space, replace all characters occuring in I<string1> by the
character at the corresponding position in I<string2>. It is possible
to use any character (other than a backslash or newline) instead of a
slash to delimit the strings. Within I<string1> and I<string2>, a
backslash followed by any character other than a newline is that literal
character, and a backslash followed by an `n' is replaced by a newline
character.
=cut
#--------------------------------------------------------------------------
$ComTab{'='}=[ 1, '', \&Emit, '{ print "$.\n" }' ]; #ok
=item [1addr]B<=>
Prints the current line number on the standard output.
=cut
#--------------------------------------------------------------------------
$ComTab{':'}=[ 0, 'str', \&Label, '' ]; #ok
=item [0addr]B<:> [I<label>]
The command specifies the position of the I<label>. It has no other effect.
=cut
#--------------------------------------------------------------------------
$ComTab{'{'}=[ 2, '', \&BeginBlock, '{' ]; #ok
$ComTab{'}'}=[ 0, '', \&EndBlock, ';}' ]; #ok
# ';' to avoid warning on empty {}-block
=item [2addr]B<{> [I<command>]
=item [0addr]B<}>
These two commands begin and end a command list. The first command may
be given on the same line as the opening B<{> command. The commands
within the list are jointly selected by the address(es) given on the
B<{> command (but may still have individual addresses).
=cut
#--------------------------------------------------------------------------
$ComTab{'#'}=[ 0, 'str', \&Comment, '' ]; #ok
=item [0addr]B<#> [I<comment>]
The entire line is ignored (treated as a comment). If, however, the first
two characters in the script are `C<#n>', automatic printing of output is
suppressed, as if the B<-n> option were given on the command line.
=back
=cut
use vars qw{ $isEOF $Hold %wFiles @Q $CondReg $doPrint };
my $useDEBUG = exists( $ENV{PSEDDEBUG} );
my $useEXTBRE = $ENV{PSEDEXTBRE} || '';
$useEXTBRE =~ s/[^<>wWyB]//g; # gawk RE's handle these
my $doAutoPrint = 1; # automatic printing of pattern space (-n => 0)
my $doOpenWrite = 1; # open w command output files at start (-a => 0)
my $svOpenWrite = 0; # save $doOpenWrite
# lower case $0 below as a VMSism. The VMS build procedure creates the
# s2p file traditionally in upper case on the disk. When VMS is in a
# case preserved or case sensitive mode, $0 will be returned in the exact
# case which will be on the disk, and that is not predictable at this time.
my $doGenerate = lc($0) eq 's2p';
# Collected and compiled script
#
my( @Commands, %Defined, @BlockStack, %Label, $labNum, $Code, $Func );
$Code = '';
##################
# Compile Time
#
# Labels
#
# Error handling
#
sub Warn($;$){
my( $msg, $loc ) = @_;
$loc ||= '';
$loc .= ': ' if length( $loc );
warn( "$0: $loc$msg\n" );
}
$labNum = 0;
sub newLabel(){
return 'L_'.++$labNum;
}
# safeHere: create safe here delimiter and modify opcode and argument
#
sub safeHere($$){
my( $codref, $argref ) = @_;
my $eod = 'EOD000';
while( $$argref =~ /^$eod$/m ){
$eod++;
}
$$codref =~ s/TheEnd/$eod/e;
$$argref .= "$eod\n";
}
# Emit: create address logic and emit command
#
sub Emit($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
my $cond = '';
if( defined( $addr1 ) ){
if( defined( $addr2 ) ){
$addr1 .= $addr2 =~ /^\d+$/ ? "..$addr2" : "...$addr2";
} else {
$addr1 .= ' == $.' if $addr1 =~ /^\d+$/;
}
$cond = $negated ? "unless( $addr1 )\n" : "if( $addr1 )\n";
}
if( $opcode eq '' ){
$Code .= "$cond$arg\n";
} elsif( $opcode =~ s/-X-/$arg/e ){
$Code .= "$cond$opcode\n";
} elsif( $opcode =~ /TheEnd/ ){
safeHere( \$opcode, \$arg );
$Code .= "$cond$opcode$arg";
} else {
$Code .= "$cond$opcode\n";
}
0;
}
# Write (w command, w flag): store pathname
#
sub Write($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $path, $fl ) = @_;
$wFiles{$path} = '';
Emit( $addr1, $addr2, $negated, $opcode, $path, $fl );
}
# Label (: command): label definition
#
sub Label($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $lab, $fl ) = @_;
my $rc = 0;
$lab =~ s/\s+//;
if( length( $lab ) ){
my $h;
if( ! exists( $Label{$lab} ) ){
$h = $Label{$lab}{name} = newLabel();
} else {
$h = $Label{$lab}{name};
if( exists( $Label{$lab}{defined} ) ){
my $dl = $Label{$lab}{defined};
Warn( "duplicate label $lab (first defined at $dl)", $fl );
$rc = 1;
}
}
$Label{$lab}{defined} = $fl;
$Code .= "$h:;\n";
}
$rc;
}
# BeginBlock ({ command): push block start
#
sub BeginBlock($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
push( @BlockStack, [ $fl, $addr1, $addr2, $negated ] );
Emit( $addr1, $addr2, $negated, $opcode, $arg, $fl );
}
# EndBlock (} command): check proper nesting
#
sub EndBlock($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
my $rc;
my $jcom = pop( @BlockStack );
if( defined( $jcom ) ){
$rc = Emit( $addr1, $addr2, $negated, $opcode, $arg, $fl );
} else {
Warn( "unexpected `}'", $fl );
$rc = 1;
}
$rc;
}
# Branch (t, b commands): check or create label, substitute default
#
sub Branch($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $lab, $fl ) = @_;
$lab =~ s/\s+//; # no spaces at end
my $h;
if( length( $lab ) ){
if( ! exists( $Label{$lab} ) ){
$h = $Label{$lab}{name} = newLabel();
} else {
$h = $Label{$lab}{name};
}
push( @{$Label{$lab}{used}}, $fl );
} else {
$h = 'EOS';
}
$opcode =~ s/XXX/$h/e;
Emit( $addr1, $addr2, $negated, $opcode, '', $fl );
}
# Change (c command): is special due to range end watching
#
sub Change($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
my $kwd = $negated ? 'unless' : 'if';
if( defined( $addr2 ) ){
$addr1 .= $addr2 =~ /^\d+$/ ? "..$addr2" : "...$addr2";
if( ! $negated ){
$addr1 = '$icnt = ('.$addr1.')';
$opcode = 'if( $icnt =~ /E0$/ )' . $opcode;
}
} else {
$addr1 .= ' == $.' if $addr1 =~ /^\d+$/;
}
safeHere( \$opcode, \$arg );
$Code .= "$kwd( $addr1 ){\n $opcode$arg}\n";
0;
}
# Comment (# command): A no-op. Who would've thought that!
#
sub Comment($$$$$$){
my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
### $Code .= "# $arg\n";
0;
}
# stripRegex from the current command. If we're in the first
# part of s///, trailing spaces have to be kept as the initial
# part of the replacement string.
#
sub stripRegex($$;$){
my( $del, $sref, $sub ) = @_;
my $regex = $del;
print "stripRegex:$del:$$sref:\n" if $useDEBUG;
while( $$sref =~ s{^(.*?)(\\*)\Q$del\E(\s*)}{}s ){
my $sl = $2;
$regex .= $1.$sl.$del;
if( length( $sl ) % 2 == 0 ){
if( $sub && (length( $3 ) > 0) ){
$$sref = $3 . $$sref;
}
return $regex;
}
$regex .= $3;
}
undef();
}
# stripTrans: take a <del> terminated string from y command
# honoring and cleaning up of \-escaped <del>'s
#
sub stripTrans($$){
my( $del, $sref ) = @_;
my $t = '';
print "stripTrans:$del:$$sref:\n" if $useDEBUG;
while( $$sref =~ s{^(.*?)(\\*)\Q$del\E}{}s ){
my $sl = $2;
$t .= $1;
if( length( $sl ) % 2 == 0 ){
$t .= $sl;
$t =~ s/\\\\/\\/g;
return $t;
}
chop( $sl );
$t .= $sl.$del.$3;
}
undef();
}
# makey - construct Perl y/// from sed y///
#
sub makey($$$){
my( $fr, $to, $fl ) = @_;
my $error = 0;
# Ensure that any '-' is up front.
# Diagnose duplicate contradicting mappings
my %tr;
for( my $i = 0; $i < length($fr); $i++ ){
my $fc = substr($fr,$i,1);
my $tc = substr($to,$i,1);
if( exists( $tr{$fc} ) && $tr{$fc} ne $tc ){
Warn( "ambiguous translation for character `$fc' in `y' command",
$fl );
$error++;
}
$tr{$fc} = $tc;
}
$fr = $to = '';
if( exists( $tr{'-'} ) ){
( $fr, $to ) = ( '-', $tr{'-'} );
delete( $tr{'-'} );
} else {
$fr = $to = '';
}
# might just as well sort it...
for my $fc ( sort keys( %tr ) ){
$fr .= $fc;
$to .= $tr{$fc};
}
# make embedded delimiters and newlines safe
$fr =~ s/([{}])/\$1/g;
$to =~ s/([{}])/\$1/g;
$fr =~ s/\n/\\n/g;
$to =~ s/\n/\\n/g;
return $error ? undef() : "{ y{$fr}{$to}; }";
}
######
# makes - construct Perl s/// from sed s///
#
sub makes($$$$$$$){
my( $regex, $subst, $path, $global, $print, $nmatch, $fl ) = @_;
# make embedded newlines safe
$regex =~ s/\n/\\n/g;
$subst =~ s/\n/\\n/g;
my $code;
# n-th occurrence
#
if( length( $nmatch ) ){
$code = <<TheEnd;
{ \$n = $nmatch;
while( --\$n && ( \$s = m ${regex}g ) ){}
\$s = ( substr( \$_, pos() ) =~ s ${regex}${subst}s ) if \$s;
\$CondReg ||= \$s;
TheEnd
} else {
$code = <<TheEnd;
{ \$s = s ${regex}${subst}s${global};
\$CondReg ||= \$s;
TheEnd
}
if( $print ){
$code .= ' print $_, "\n" if $s;'."\n";
}
if( defined( $path ) ){
$wFiles{$path} = '';
$code .= " _w( '$path' ) if \$s;\n";
$GenKey{'w'} = 1;
}
$code .= "}";
}
=head1 BASIC REGULAR EXPRESSIONS
A I<Basic Regular Expression> (BRE), as defined in POSIX 1003.2, consists
of I<atoms>, for matching parts of a string, and I<bounds>, specifying
repetitions of a preceding atom.
=head2 Atoms
The possible atoms of a BRE are: B<.>, matching any single character;
B<^> and B<$>, matching the null string at the beginning or end
of a string, respectively; a I<bracket expressions>, enclosed
in B<[> and B<]> (see below); and any single character with no
other significance (matching that character). A B<\> before one
of: B<.>, B<^>, B<$>, B<[>, B<*>, B<\>, matching the character
after the backslash. A sequence of atoms enclosed in B<\(> and B<\)>
becomes an atom and establishes the target for a I<backreference>,
consisting of the substring that actually matches the enclosed atoms.
Finally, B<\> followed by one of the digits B<0> through B<9> is a
backreference.
A B<^> that is not first, or a B<$> that is not last does not have
a special significance and need not be preceded by a backslash to
become literal. The same is true for a B<]>, that does not terminate
a bracket expression.
An unescaped backslash cannot be last in a BRE.
=head2 Bounds
The BRE bounds are: B<*>, specifying 0 or more matches of the preceding
atom; B<\{>I<count>B<\}>, specifying that many repetitions;
B<\{>I<minimum>B<,\}>, giving a lower limit; and
B<\{>I<minimum>B<,>I<maximum>B<\}> finally defines a lower and upper
bound.
A bound appearing as the first item in a BRE is taken literally.
=head2 Bracket Expressions
A I<bracket expression> is a list of characters, character ranges
and character classes enclosed in B<[> and B<]> and matches any
single character from the represented set of characters.
A character range is written as two characters separated by B<-> and
represents all characters (according to the character collating sequence)
that are not less than the first and not greater than the second.
(Ranges are very collating-sequence-dependent, and portable programs
should avoid relying on them.)
A character class is one of the class names
alnum digit punct
alpha graph space
blank lower upper
cntrl print xdigit
enclosed in B<[:> and B<:]> and represents the set of characters
as defined in ctype(3).
If the first character after B<[> is B<^>, the sense of matching is
inverted.
To include a literal `C<^>', place it anywhere else but first. To
include a literal 'C<]>' place it first or immediately after an
initial B<^>. To include a literal `C<->' make it the first (or
second after B<^>) or last character, or the second endpoint of
a range.
The special bracket expression constructs C<[[:E<lt>:]]> and C<[[:E<gt>:]]>
match the null string at the beginning and end of a word respectively.
(Note that neither is identical to Perl's `\b' atom.)
=head2 Additional Atoms
Since some sed implementations provide additional regular expression
atoms (not defined in POSIX 1003.2), B<psed> is capable of translating
the following backslash escapes:
=over 4
=item B<\E<lt>> This is the same as C<[[:E<gt>:]]>.
=item B<\E<gt>> This is the same as C<[[:E<lt>:]]>.
=item B<\w> This is an abbreviation for C<[[:alnum:]_]>.
=item B<\W> This is an abbreviation for C<[^[:alnum:]_]>.
=item B<\y> Match the empty string at a word boundary.
=item B<\B> Match the empty string between any two either word or non-word characters.
=back
To enable this feature, the environment variable PSEDEXTBRE must be set
to a string containing the requested characters, e.g.:
C<PSEDEXTBRE='E<lt>E<gt>wW'>.
=cut
#####
# bre2p - convert BRE to Perl RE
#
sub peek(\$$){
my( $pref, $ic ) = @_;
$ic < length($$pref)-1 ? substr( $$pref, $ic+1, 1 ) : '';
}
sub bre2p($$$){
my( $del, $pat, $fl ) = @_;
my $led = $del;
$led =~ tr/{([</})]>/;
$led = '' if $led eq $del;
$pat = substr( $pat, 1, length($pat) - 2 );
my $res = '';
my $bracklev = 0;
my $backref = 0;
my $parlev = 0;
for( my $ic = 0; $ic < length( $pat ); $ic++ ){
my $c = substr( $pat, $ic, 1 );
if( $c eq '\\' ){
### backslash escapes
my $nc = peek($pat,$ic);
if( $nc eq '' ){
Warn( "`\\' cannot be last in pattern", $fl );
return undef();
}
$ic++;
if( $nc eq $del ){ ## \<pattern del> => \<pattern del>
$res .= "\\$del";
} elsif( $nc =~ /([[.*\\n])/ ){
## check for \-escaped magics and \n:
## \[ \. \* \\ \n stay as they are
$res .= '\\'.$nc;
} elsif( $nc eq '(' ){ ## \( => (
$parlev++;
$res .= '(';
} elsif( $nc eq ')' ){ ## \) => )
$parlev--;
$backref++;
if( $parlev < 0 ){
Warn( "unmatched `\\)'", $fl );
return undef();
}
$res .= ')';
} elsif( $nc eq '{' ){ ## repetition factor \{<i>[,[<j>]]\}
my $endpos = index( $pat, '\\}', $ic );
if( $endpos < 0 ){
Warn( "unmatched `\\{'", $fl );
return undef();
}
my $rep = substr( $pat, $ic+1, $endpos-($ic+1) );
$ic = $endpos + 1;
if( $res =~ /^\^?$/ ){
$res .= "\\{$rep\}";
} elsif( $rep =~ /^(\d+)(,?)(\d*)?$/ ){
my $min = $1;
my $com = $2 || '';
my $max = $3;
if( length( $max ) ){
if( $max < $min ){
Warn( "maximum less than minimum in `\\{$rep\\}'",
$fl );
return undef();
}
} else {
$max = '';
}
# simplify some
if( $min == 0 && $max eq '1' ){
$res .= '?';
} elsif( $min == 1 && "$com$max" eq ',' ){
$res .= '+';
} elsif( $min == 0 && "$com$max" eq ',' ){
$res .= '*';
} else {
$res .= "{$min$com$max}";
}
} else {
Warn( "invalid repeat clause `\\{$rep\\}'", $fl );
return undef();
}
} elsif( $nc =~ /^[1-9]$/ ){
## \1 .. \9 => \1 .. \9, but check for a following digit
if( $nc > $backref ){
Warn( "invalid backreference ($nc)", $fl );
return undef();
}
$res .= "\\$nc";
if( peek($pat,$ic) =~ /[0-9]/ ){
$res .= '(?:)';
}
} elsif( $useEXTBRE && ( $nc =~ /[$useEXTBRE]/ ) ){
## extensions - at most <>wWyB - not in POSIX
if( $nc eq '<' ){ ## \< => \b(?=\w), be precise
$res .= '\\b(?<=\\W)';
} elsif( $nc eq '>' ){ ## \> => \b(?=\W), be precise
$res .= '\\b(?=\\W)';
} elsif( $nc eq 'y' ){ ## \y => \b
$res .= '\\b';
} else { ## \B, \w, \W remain the same
$res .= "\\$nc";
}
} elsif( $nc eq $led ){
## \<closing bracketing-delimiter> - keep '\'
$res .= "\\$nc";
} else { ## \ <char> => <char> ("as if `\' were not present")
$res .= $nc;
}
} elsif( $c eq '.' ){ ## . => .
$res .= $c;
} elsif( $c eq '*' ){ ## * => * but \* if there's nothing preceding it
if( $res =~ /^\^?$/ ){
$res .= '\\*';
} elsif( substr( $res, -1, 1 ) ne '*' ){
$res .= $c;
}
} elsif( $c eq '[' ){
## parse []: [^...] [^]...] [-...]
my $add = '[';
if( peek($pat,$ic) eq '^' ){
$ic++;
$add .= '^';
}
my $nc = peek($pat,$ic);
if( $nc eq ']' || $nc eq '-' ){
$add .= $nc;
$ic++;
}
# check that [ is not trailing
if( $ic >= length( $pat ) - 1 ){
Warn( "unmatched `['", $fl );
return undef();
}
# look for [:...:] and x-y
my $rstr = substr( $pat, $ic+1 );
if( $rstr =~ /^((?:\[:\(\w+|[><]\):\]|[^]-](?:-[^]])?)*)/ ){
my $cnt = $1;
$ic += length( $cnt );
$cnt =~ s/([\\\$])/\\$1/g; # `\', `$' are magic in Perl []
# try some simplifications
my $red = $cnt;
if( $red =~ s/0-9// ){
$cnt = $red.'\d';
if( $red =~ s/A-Z// && $red =~ s/a-z// && $red =~ s/_// ){
$cnt = $red.'\w';
}
}
$add .= $cnt;
# POSIX 1003.2 has this (optional) for begin/end word
$add = '\\b(?=\\W)' if $add eq '[[:<:]]';
$add = '\\b(?<=\\W)' if $add eq '[[:>:]]';
}
## may have a trailing `-' before `]'
if( $ic < length($pat) - 1 &&
substr( $pat, $ic+1 ) =~ /^(-?])/ ){
$ic += length( $1 );
$add .= $1;
# another simplification
$add =~ s/^\[(\^?)(\\[dw])]$/ $1 eq '^' ? uc($2) : $2 /e;
$res .= $add;
} else {
Warn( "unmatched `['", $fl );
return undef();
}
} elsif( $c eq $led ){ ## unescaped <closing bracketing-delimiter>
$res .= "\\$c";
} elsif( $c eq ']' ){ ## unmatched ] is not magic
$res .= ']';
} elsif( $c =~ /[|+?{}()]/ ){ ## not magic in BRE, but in Perl: \-quote
$res .= "\\$c";
} elsif( $c eq '^' ){ ## not magic unless 1st, but in Perl: \-quote
$res .= length( $res ) ? '\\^' : '^';
} elsif( $c eq '$' ){ ## not magic unless last, but in Perl: \-quote
$res .= $ic == length( $pat ) - 1 ? '$' : '\\$';
} else {
$res .= $c;
}
}
if( $parlev ){
Warn( "unmatched `\\('", $fl );
return undef();
}
# final cleanup: eliminate raw HTs
$res =~ s/\t/\\t/g;
return $del . $res . ( $led ? $led : $del );
}
#####
# sub2p - convert sed substitution to Perl substitution
#
sub sub2p($$$){
my( $del, $subst, $fl ) = @_;
my $led = $del;
$led =~ tr/{([</})]>/;
$led = '' if $led eq $del;
$subst = substr( $subst, 1, length($subst) - 2 );
my $res = '';
for( my $ic = 0; $ic < length( $subst ); $ic++ ){
my $c = substr( $subst, $ic, 1 );
if( $c eq '\\' ){
### backslash escapes
my $nc = peek($subst,$ic);
if( $nc eq '' ){
Warn( "`\\' cannot be last in substitution", $fl );
return undef();
}
$ic++;
if( $nc =~ /[\\$del$led]/ ){ ## \ and delimiter
$res .= '\\' . $nc;
} elsif( $nc =~ /[1-9]/ ){ ## \1 - \9 => ${1} - ${9}
$res .= '${' . $nc . '}';
} else { ## everything else (includes &): omit \
$res .= $nc;
}
} elsif( $c eq '&' ){ ## & => $&
$res .= '$&';
} elsif( $c =~ /[\$\@$led]/ ){ ## magic in Perl's substitution string
$res .= '\\' . $c;
} else {
$res .= $c;
}
}
# final cleanup: eliminate raw HTs
$res =~ s/\t/\\t/g;
return ( $led ? $del : $led ) . $res . ( $led ? $led : $del );
}
sub Parse(){
my $error = 0;
my( $pdef, $pfil, $plin );
for( my $icom = 0; $icom < @Commands; $icom++ ){
my $cmd = $Commands[$icom];
print "Parse:$cmd:\n" if $useDEBUG;
$cmd =~ s/^\s+//;
next unless length( $cmd );
my $scom = $icom;
if( exists( $Defined{$icom} ) ){
$pdef = $Defined{$icom};
if( $pdef =~ /^ #(\d+)/ ){
$pfil = 'expression #';
$plin = $1;
} else {
$pfil = "$pdef l.";
$plin = 1;
}
} else {
$plin++;
}
my $fl = "$pfil$plin";
# insert command as comment in gnerated code
#
$Code .= "# $cmd\n" if $doGenerate;
# The Address(es)
#
my( $negated, $naddr, $addr1, $addr2 );
$naddr = 0;
if( $cmd =~ s/^(\d+)\s*// ){
$addr1 = "$1"; $naddr++;
} elsif( $cmd =~ s/^\$\s*// ){
$addr1 = 'eofARGV()'; $naddr++;
} elsif( $cmd =~ s{^(/)}{} || $cmd =~ s{^\\(.)}{} ){
my $del = $1;
my $regex = stripRegex( $del, \$cmd );
if( defined( $regex ) ){
$addr1 = 'm '.bre2p( $del, $regex, $fl ).'s';
$naddr++;
} else {
Warn( "malformed regex, 1st address", $fl );
$error++;
next;
}
}
if( defined( $addr1 ) && $cmd =~ s/,\s*// ){
if( $cmd =~ s/^(\d+)\s*// ){
$addr2 = "$1"; $naddr++;
} elsif( $cmd =~ s/^\$\s*// ){
$addr2 = 'eofARGV()'; $naddr++;
} elsif( $cmd =~ s{^(/)}{} || $cmd =~ s{^\\(.)}{} ){
my $del = $1;
my $regex = stripRegex( $del, \$cmd );
if( defined( $regex ) ){
$addr2 = 'm '. bre2p( $del, $regex, $fl ).'s';
$naddr++;
} else {
Warn( "malformed regex, 2nd address", $fl );
$error++;
next;
}
} else {
Warn( "invalid address after `,'", $fl );
$error++;
next;
}
}
# address modifier `!'
#
$negated = $cmd =~ s/^!\s*//;
if( defined( $addr1 ) ){
print "Parse: addr1=$addr1" if $useDEBUG;
if( defined( $addr2 ) ){
print ", addr2=$addr2 " if $useDEBUG;
# both numeric and addr1 > addr2 => eliminate addr2
undef( $addr2 ) if $addr1 =~ /^\d+$/ &&
$addr2 =~ /^\d+$/ && $addr1 > $addr2;
}
}
print 'negated' if $useDEBUG && $negated;
print " command:$cmd\n" if $useDEBUG;
# The Command
#
if( $cmd !~ s/^([:#={}abcdDgGhHilnNpPqrstwxy])\s*// ){
my $h = substr( $cmd, 0, 1 );
Warn( "unknown command `$h'", $fl );
$error++;
next;
}
my $key = $1;
my $tabref = $ComTab{$key};
$GenKey{$key} = 1;
if( $naddr > $tabref->[0] ){
Warn( "excess address(es)", $fl );
$error++;
next;
}
my $arg = '';
if( $tabref->[1] eq 'str' ){
# take remainder - don't care if it is empty
$arg = $cmd;
$cmd = '';
} elsif( $tabref->[1] eq 'txt' ){
# multi-line text
my $goon = $cmd =~ /(.*)\\$/;
if( length( $1 ) ){
Warn( "extra characters after command ($cmd)", $fl );
$error++;
}
while( $goon ){
$icom++;
if( $icom > $#Commands ){
Warn( "unexpected end of script", $fl );
$error++;
last;
}
$cmd = $Commands[$icom];
$Code .= "# $cmd\n" if $doGenerate;
$goon = $cmd =~ s/\\$//;
$cmd =~ s/\\(.)/$1/g;
$arg .= "\n" if length( $arg );
$arg .= $cmd;
}
$arg .= "\n" if length( $arg );
$cmd = '';
} elsif( $tabref->[1] eq 'sub' ){
# s///
if( ! length( $cmd ) ){
Warn( "`s' command requires argument", $fl );
$error++;
next;
}
if( $cmd =~ s{^([^\\\n])}{} ){
my $del = $1;
my $regex = stripRegex( $del, \$cmd, "s" );
if( ! defined( $regex ) ){
Warn( "malformed regular expression", $fl );
$error++;
next;
}
$regex = bre2p( $del, $regex, $fl );
# a trailing \ indicates embedded NL (in replacement string)
while( $cmd =~ s/(?<!\\)\\$/\n/ ){
$icom++;
if( $icom > $#Commands ){
Warn( "unexpected end of script", $fl );
$error++;
last;
}
$cmd .= $Commands[$icom];
$Code .= "# $Commands[$icom]\n" if $doGenerate;
}
my $subst = stripRegex( $del, \$cmd );
if( ! defined( $regex ) ){
Warn( "malformed substitution expression", $fl );
$error++;
next;
}
$subst = sub2p( $del, $subst, $fl );
# parse s/// modifier: g|p|0-9|w <file>
my( $global, $nmatch, $print, $write ) =
( '', '', 0, undef );
while( $cmd =~ s/^([gp0-9])// ){
$1 eq 'g' ? ( $global = 'g' ) :
$1 eq 'p' ? ( $print = $1 ) : ( $nmatch .= $1 );
}
$write = $1 if $cmd =~ s/w\s*(.*)$//;
### $nmatch =~ s/^(\d)\1*$/$1/; ### may be dangerous?
if( $global && length( $nmatch ) || length( $nmatch ) > 1 ){
Warn( "conflicting flags `$global$nmatch'", $fl );
$error++;
next;
}
$arg = makes( $regex, $subst,
$write, $global, $print, $nmatch, $fl );
if( ! defined( $arg ) ){
$error++;
next;
}
} else {
Warn( "improper delimiter in s command", $fl );
$error++;
next;
}
} elsif( $tabref->[1] eq 'tra' ){
# y///
# a trailing \ indicates embedded newline
while( $cmd =~ s/(?<!\\)\\$/\n/ ){
$icom++;
if( $icom > $#Commands ){
Warn( "unexpected end of script", $fl );
$error++;
last;
}
$cmd .= $Commands[$icom];
$Code .= "# $Commands[$icom]\n" if $doGenerate;
}
if( ! length( $cmd ) ){
Warn( "`y' command requires argument", $fl );
$error++;
next;
}
my $d = substr( $cmd, 0, 1 ); $cmd = substr( $cmd, 1 );
if( $d eq '\\' ){
Warn( "`\\' not valid as delimiter in `y' command", $fl );
$error++;
next;
}
my $fr = stripTrans( $d, \$cmd );
if( ! defined( $fr ) || ! length( $cmd ) ){
Warn( "malformed `y' command argument", $fl );
$error++;
next;
}
my $to = stripTrans( $d, \$cmd );
if( ! defined( $to ) ){
Warn( "malformed `y' command argument", $fl );
$error++;
next;
}
if( length($fr) != length($to) ){
Warn( "string lengths in `y' command differ", $fl );
$error++;
next;
}
if( ! defined( $arg = makey( $fr, $to, $fl ) ) ){
$error++;
next;
}
}
# $cmd must be now empty - exception is {
if( $cmd !~ /^\s*$/ ){
if( $key eq '{' ){
# dirty hack to process command on '{' line
$Commands[$icom--] = $cmd;
} else {
Warn( "extra characters after command ($cmd)", $fl );
$error++;
next;
}
}
# Make Code
#
if( &{$tabref->[2]}( $addr1, $addr2, $negated,
$tabref->[3], $arg, $fl ) ){
$error++;
}
}
while( @BlockStack ){
my $bl = pop( @BlockStack );
Warn( "start of unterminated `{'", $bl );
$error++;
}
for my $lab ( keys( %Label ) ){
if( ! exists( $Label{$lab}{defined} ) ){
for my $used ( @{$Label{$lab}{used}} ){
Warn( "undefined label `$lab'", $used );
$error++;
}
}
}
exit( 1 ) if $error;
}
##############
#### MAIN ####
##############
sub usage(){
print STDERR "Usage: sed [-an] command [file...]\n";
print STDERR " [-an] [-e command] [-f script-file] [file...]\n";
}
###################
# Here we go again...
#
my $expr = 0;
while( @ARGV && $ARGV[0] =~ /^-(.)(.*)$/ ){
my $opt = $1;
my $arg = $2;
shift( @ARGV );
if( $opt eq 'e' ){
if( length( $arg ) ){
push( @Commands, split( "\n", $arg ) );
} elsif( @ARGV ){
push( @Commands, shift( @ARGV ) );
} else {
Warn( "option -e requires an argument" );
usage();
exit( 1 );
}
$expr++;
$Defined{$#Commands} = " #$expr";
next;
}
if( $opt eq 'f' ){
my $path;
if( length( $arg ) ){
$path = $arg;
} elsif( @ARGV ){
$path = shift( @ARGV );
} else {
Warn( "option -f requires an argument" );
usage();
exit( 1 );
}
my $fst = $#Commands + 1;
open( SCRIPT, "<$path" ) || die( "$0: $path: could not open ($!)\n" );
my $cmd;
while( defined( $cmd = <SCRIPT> ) ){
chomp( $cmd );
push( @Commands, $cmd );
}
close( SCRIPT );
if( $#Commands >= $fst ){
$Defined{$fst} = "$path";
}
next;
}
if( $opt eq '-' && $arg eq '' ){
last;
}
if( $opt eq 'h' || $opt eq '?' ){
usage();
exit( 0 );
}
if( $opt eq 'n' ){
$doAutoPrint = 0;
} elsif( $opt eq 'a' ){
$doOpenWrite = 0;
} else {
Warn( "illegal option `$opt'" );
usage();
exit( 1 );
}
if( length( $arg ) ){
unshift( @ARGV, "-$arg" );
}
}
# A singleton command may be the 1st argument when there are no options.
#
if( @Commands == 0 ){
if( @ARGV == 0 ){
Warn( "no script command given" );
usage();
exit( 1 );
}
push( @Commands, split( "\n", shift( @ARGV ) ) );
$Defined{0} = ' #1';
}
print STDERR "Files: @ARGV\n" if $useDEBUG;
# generate leading code
#
$Func = <<'[TheEnd]';
# openARGV: open 1st input file
#
sub openARGV(){
unshift( @ARGV, '-' ) unless @ARGV;
my $file = shift( @ARGV );
open( ARG, "<$file" )
|| die( "$0: can't open $file for reading ($!)\n" );
$isEOF = 0;
}
# getsARGV: Read another input line into argument (default: $_).
# Move on to next input file, and reset EOF flag $isEOF.
sub getsARGV(;\$){
my $argref = @_ ? shift() : \$_;
while( $isEOF || ! defined( $$argref = <ARG> ) ){
close( ARG );
return 0 unless @ARGV;
my $file = shift( @ARGV );
open( ARG, "<$file" )
|| die( "$0: can't open $file for reading ($!)\n" );
$isEOF = 0;
}
1;
}
# eofARGV: end-of-file test
#
sub eofARGV(){
return @ARGV == 0 && ( $isEOF = eof( ARG ) );
}
# makeHandle: Generates another file handle for some file (given by its path)
# to be written due to a w command or an s command's w flag.
sub makeHandle($){
my( $path ) = @_;
my $handle;
if( ! exists( $wFiles{$path} ) || $wFiles{$path} eq '' ){
$handle = $wFiles{$path} = gensym();
if( $doOpenWrite ){
if( ! open( $handle, ">$path" ) ){
die( "$0: can't open $path for writing: ($!)\n" );
}
}
} else {
$handle = $wFiles{$path};
}
return $handle;
}
# printQ: Print queued output which is either a string or a reference
# to a pathname.
sub printQ(){
for my $q ( @Q ){
if( ref( $q ) ){
# flush open w files so that reading this file gets it all
if( exists( $wFiles{$$q} ) && $wFiles{$$q} ne '' ){
open( $wFiles{$$q}, ">>$$q" );
}
# copy file to stdout: slow, but safe
if( open( RF, "<$$q" ) ){
while( defined( my $line = <RF> ) ){
print $line;
}
close( RF );
}
} else {
print $q;
}
}
undef( @Q );
}
[TheEnd]
# generate the sed loop
#
$Code .= <<'[TheEnd]';
sub openARGV();
sub getsARGV(;\$);
sub eofARGV();
sub printQ();
# Run: the sed loop reading input and applying the script
#
sub Run(){
my( $h, $icnt, $s, $n );
# hack (not unbreakable :-/) to avoid // matching an empty string
my $z = "\000"; $z =~ /$z/;
# Initialize.
openARGV();
$Hold = '';
$CondReg = 0;
$doPrint = $doAutoPrint;
CYCLE:
while( getsARGV() ){
chomp();
$CondReg = 0; # cleared on t
BOS:;
[TheEnd]
# parse - avoid opening files when doing s2p
#
( $svOpenWrite, $doOpenWrite ) = ( $doOpenWrite, $svOpenWrite )
if $doGenerate;
Parse();
( $svOpenWrite, $doOpenWrite ) = ( $doOpenWrite, $svOpenWrite )
if $doGenerate;
# append trailing code
#
$Code .= <<'[TheEnd]';
EOS: if( $doPrint ){
print $_, "\n";
} else {
$doPrint = $doAutoPrint;
}
printQ() if @Q;
}
exit( 0 );
}
[TheEnd]
# append optional functions, prepend prototypes
#
my $Proto = "# prototypes\n";
if( $GenKey{'l'} ){
$Proto .= "sub _l();\n";
$Func .= <<'[TheEnd]';
# _l: l command processing
#
sub _l(){
my $h = $_;
my $mcpl = 70;
# transform non printing chars into escape notation
$h =~ s/\\/\\\\/g;
if( $h =~ /[^[:print:]]/ ){
$h =~ s/\a/\\a/g;
$h =~ s/\f/\\f/g;
$h =~ s/\n/\\n/g;
$h =~ s/\t/\\t/g;
$h =~ s/\r/\\r/g;
$h =~ s/\e/\\e/g;
$h =~ s/([^[:print:]])/sprintf("\\%03o", ord($1))/ge;
}
# split into lines of length $mcpl
while( length( $h ) > $mcpl ){
my $l = substr( $h, 0, $mcpl-1 );
$h = substr( $h, $mcpl );
# remove incomplete \-escape from end of line
if( $l =~ s/(?<!\\)(\\[0-7]{0,2})$// ){
$h = $1 . $h;
}
print $l, "\\\n";
}
print "$h\$\n";
}
[TheEnd]
}
if( $GenKey{'r'} ){
$Proto .= "sub _r(\$);\n";
$Func .= <<'[TheEnd]';
# _r: r command processing: Save a reference to the pathname.
#
sub _r($){
my $path = shift();
push( @Q, \$path );
}
[TheEnd]
}
if( $GenKey{'t'} ){
$Proto .= "sub _t();\n";
$Func .= <<'[TheEnd]';
# _t: t command - condition register test/reset
#
sub _t(){
my $res = $CondReg;
$CondReg = 0;
$res;
}
[TheEnd]
}
if( $GenKey{'w'} ){
$Proto .= "sub _w(\$);\n";
$Func .= <<'[TheEnd]';
# _w: w command and s command's w flag - write to file
#
sub _w($){
my $path = shift();
my $handle = $wFiles{$path};
if( ! $doOpenWrite && ! defined( fileno( $handle ) ) ){
open( $handle, ">$path" )
|| die( "$0: $path: cannot open ($!)\n" );
}
print $handle $_, "\n";
}
[TheEnd]
}
$Code = $Proto . $Code;
# magic "#n" - same as -n option
#
$doAutoPrint = 0 if substr( $Commands[0], 0, 2 ) eq '#n';
# eval code - check for errors
#
print "Code:\n$Code$Func" if $useDEBUG;
eval $Code . $Func;
if( $@ ){
print "Code:\n$Code$Func";
die( "$0: internal error - generated incorrect Perl code: $@\n" );
}
if( $doGenerate ){
# write full Perl program
#
# bang line, declarations, prototypes
print <<TheEnd;
#!$perlpath -w
eval 'exec $perlpath -S \$0 \${1+"\$@"}'
if 0;
\$0 =~ s/^.*?(\\w+)\[\\.\\w+\]*\$/\$1/;
use strict;
use Symbol;
use vars qw{ \$isEOF \$Hold \%wFiles \@Q \$CondReg
\$doAutoPrint \$doOpenWrite \$doPrint };
\$doAutoPrint = $doAutoPrint;
\$doOpenWrite = $doOpenWrite;
TheEnd
my $wf = "'" . join( "', '", keys( %wFiles ) ) . "'";
if( $wf ne "''" ){
print <<TheEnd;
sub makeHandle(\$);
for my \$p ( $wf ){
exit( 1 ) unless makeHandle( \$p );
}
TheEnd
}
print $Code;
print "Run();\n";
print $Func;
exit( 0 );
} else {
# execute: make handles (and optionally open) all w files; run!
for my $p ( keys( %wFiles ) ){
exit( 1 ) unless makeHandle( $p );
}
Run();
}
=head1 ENVIRONMENT
The environment variable C<PSEDEXTBRE> may be set to extend BREs.
See L<"Additional Atoms">.
=head1 DIAGNOSTICS
=over 4
=item ambiguous translation for character `%s' in `y' command
The indicated character appears twice, with different translations.
=item `[' cannot be last in pattern
A `[' in a BRE indicates the beginning of a I<bracket expression>.
=item `\' cannot be last in pattern
A `\' in a BRE is used to make the subsequent character literal.
=item `\' cannot be last in substitution
A `\' in a subsitution string is used to make the subsequent character literal.
=item conflicting flags `%s'
In an B<s> command, either the `g' flag and an n-th occurrence flag, or
multiple n-th occurrence flags are specified. Note that only the digits
`1' through `9' are permitted.
=item duplicate label %s (first defined at %s)
=item excess address(es)
The command has more than the permitted number of addresses.
=item extra characters after command (%s)
=item illegal option `%s'
=item improper delimiter in s command
The BRE and substitution may not be delimited with `\' or newline.
=item invalid address after `,'
=item invalid backreference (%s)
The specified backreference number exceeds the number of backreferences
in the BRE.
=item invalid repeat clause `\{%s\}'
The repeat clause does not contain a valid integer value, or pair of
values.
=item malformed regex, 1st address
=item malformed regex, 2nd address
=item malformed regular expression
=item malformed substitution expression
=item malformed `y' command argument
The first or second string of a B<y> command is syntactically incorrect.
=item maximum less than minimum in `\{%s\}'
=item no script command given
There must be at least one B<-e> or one B<-f> option specifying a
script or script file.
=item `\' not valid as delimiter in `y' command
=item option -e requires an argument
=item option -f requires an argument
=item `s' command requires argument
=item start of unterminated `{'
=item string lengths in `y' command differ
The translation table strings in a B<y> command must have equal lengths.
=item undefined label `%s'
=item unexpected `}'
A B<}> command without a preceding B<{> command was encountered.
=item unexpected end of script
The end of the script was reached although a text line after a
B<a>, B<c> or B<i> command indicated another line.
=item unknown command `%s'
=item unterminated `['
A BRE contains an unterminated bracket expression.
=item unterminated `\('
A BRE contains an unterminated backreference.
=item `\{' without closing `\}'
A BRE contains an unterminated bounds specification.
=item `\)' without preceding `\('
=item `y' command requires argument
=back
=head1 EXAMPLE
The basic material for the preceding section was generated by running
the sed script
#no autoprint
s/^.*Warn( *"\([^"]*\)".*$/\1/
t process
b
:process
s/$!/%s/g
s/$[_[:alnum:]]\{1,\}/%s/g
s/\\\\/\\/g
s/^/=item /
p
on the program's own text, and piping the output into C<sort -u>.
=head1 SED SCRIPT TRANSLATION
If this program is invoked with the name F<s2p> it will act as a
sed-to-Perl translator. After option processing (all other
arguments are ignored), a Perl program is printed on standard
output, which will process the input stream (as read from all
arguments) in the way defined by the sed script and the option setting
used for the translation.
=head1 SEE ALSO
perl(1), re_format(7)
=head1 BUGS
The B<l> command will show escape characters (ESC) as `C<\e>', but
a vertical tab (VT) in octal.
Trailing spaces are truncated from labels in B<:>, B<t> and B<b> commands.
The meaning of an empty regular expression (`C<//>'), as defined by B<sed>,
is "the last pattern used, at run time". This deviates from the Perl
interpretation, which will re-use the "last last successfully executed
regular expression". Since keeping track of pattern usage would create
terribly cluttered code, and differences would only appear in obscure
context (where other B<sed> implementations appear to deviate, too),
the Perl semantics was adopted. Note that common usage of this feature,
such as in C</abc/s//xyz/>, will work as expected.
Collating elements (of bracket expressions in BREs) are not implemented.
=head1 STANDARDS
This B<sed> implementation conforms to the IEEE Std1003.2-1992 ("POSIX.2")
definition of B<sed>, and is compatible with the I<OpenBSD>
implementation, except where otherwise noted (see L<"BUGS">).
=head1 AUTHOR
This Perl implementation of I<sed> was written by Wolfgang Laun,
I<Wolfgang.Laun@alcatel.at>.
=head1 COPYRIGHT and LICENSE
This program is free and open software. You may use, modify,
distribute, and sell this program (and any modified variants) in any
way you wish, provided you do not restrict others from doing the same.
=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"2B‘¡±Á #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“˜cBá²×a“8lœò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-Î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Ï¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢åÍ ¬
¼ÑËsnŠÜ«ˆS¨;yÛÊŽ½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ã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üØWtîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1JªñØÇ¦¢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ì÷44´íòý?«Ö÷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Ž›Ë) $’XxËëš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õo7"Ýà_=Š©‰É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_iK#*) ž@Ž{ôǽ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 ãž} ªÁ£epFì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.½„\ýò@>˜7NFï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©ù@ÇRTóÅ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Ë¢“«¼
39ì~¼ûÒÍ}ž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«|è*pxF: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½øåunû]¹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©zO=«Ë!µÖü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²¬fInZ8wÌÉЮ~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Ûûý*ÎK9ä.â-ö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ú¯ëúì|ÕÅÖ‰}ylM’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Η2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6a”Èô> ÕÉ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¨É+I0TbNñ"$~)ÕÒ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Ñ¢L7€ì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È@^Ìß.1N¾œ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¨ãÑ?ëï0IEhÄ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Ö¾C98cêÆÞíïóò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 ëí>¡NXW~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ヅ =93§ð§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ïºHO— ¤ ܥݔn·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóÙ¤¶¿õú…ÄRÚ[ËsöÙ¼Ë•Ë ópw®qœŒ·Ø
ùÇâ‹ý‡ãKèS&ÞvûDAù‘É9ŒîqÅ}
$SnIV[]Ñ´Ó}ØÜ¾A Ü|½kÅþÓ|EMuR¼.I¼¶däò‚ÃkÆ}ðy¹vciUœ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ɦuOQ!ÕåŒ/Î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Ä¥Ô¾@à Tp£ší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:ƒÐúñiRUQq‰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È °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+JyÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½
âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î
<iWNsmª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ