]> err.no Git - dpkg/commitdiff
Dpkg::Shlibs::Objdump: API overhaul
authorFrank Lichtenheld <djpig@debian.org>
Sat, 14 Jul 2007 16:12:22 +0000 (16:12 +0000)
committerFrank Lichtenheld <djpig@debian.org>
Sat, 14 Jul 2007 16:12:22 +0000 (16:12 +0000)
Move most of Dpkg::Shlibs::Objdump::parse and
the complete ::parse_dynamic_symbol to ::Object
since these both actually only work on a specific
object. Also divide the parse function into to
parts _read and _parse where the first is responsible
for calling objdump and the second for parsing the output.
(Or any other filehandle it gets).

This allows for easier testing of the parsing part without
having actually to run objdump on a file.

Also add some tests to 200_Dpkg_Shlibs to verify that the
module still works after all these changes.

I tried to adapt dpkg-shlibdeps to the new API but haven't
verified that it still works.

scripts/Dpkg/Shlibs/Objdump.pm
scripts/dpkg-shlibdeps.pl
scripts/t/200_Dpkg_Shlibs.t
scripts/t/200_Dpkg_Shlibs/objdump.libc6 [new file with mode: 0644]

index 35e9cf1a9b0c09ace3d5c5e5061210ddae3758a1..d487ac654e1b7561264a7edb767323478ddbc32d 100644 (file)
@@ -14,6 +14,9 @@
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
+use strict;
+use warnings;
+
 package Dpkg::Shlibs::Objdump;
 
 use Dpkg::Gettext;
@@ -30,14 +33,125 @@ sub new {
 
 sub parse {
     my ($self, $file) = @_;
-    local $ENV{LC_ALL} = 'C';
-    open(OBJDUMP, "-|", "objdump", "-w", "-p", "-T", $file) ||
-       syserr(sprintf(_g("Can't execute objdump: %s"), $!));
     my $obj = Dpkg::Shlibs::Objdump::Object->new($file);
+
+    my $id = $obj->get_id;
+    if ($id) {
+       $self->{objects}{$id} = $obj;
+    }
+    return $id;
+}
+
+
+sub locate_symbol {
+    my ($self, $name) = @_;
+    foreach my $obj (values %{$self->{objects}}) {
+       my $sym = $obj->get_symbol($name);
+       if (defined($sym) && $sym->{defined}) {
+           return $sym;
+       }
+    }
+    return undef;
+}
+
+sub get_object {
+    my ($self, $objid) = @_;
+    if (exists $self->{objects}{$objid}) {
+       return $self->{objects}{$objid};
+    }
+    return undef;
+}
+
+{
+    my %format; # Cache of result
+    sub get_format {
+       my ($file) = @_;
+
+       if (exists $format{$file}) {
+           return $format{$file};
+       } else {
+           local $ENV{LC_ALL} = "C";
+           open(P, "-|", "objdump", "-a", "--", $file)
+               || syserr(_g("cannot fork for objdump"));
+           while (<P>) {
+               chomp;
+               if (/^\s*\S+:\s*file\s+format\s+(\S+)\s*$/) {
+                   $format{$file} = $1;
+                   return $format{$file};
+               }
+           }
+           close(P) or subprocerr(sprintf(_g("objdump on \`%s'"), $file));
+       }
+    }
+}
+
+sub is_elf {
+    my ($file) = @_;
+    open(FILE, "<", $file) ||
+       syserr(sprintf(_g("Can't open %s for test: %s"), $file, $!));
+    my ($header, $result) = ("", 0);
+    if (read(FILE, $header, 4) == 4) {
+       $result = 1 if ($header =~ /^\177ELF$/);
+    }
+    close(FILE);
+    return $result;
+}
+
+package Dpkg::Shlibs::Objdump::Object;
+
+sub new {
+    my $this = shift;
+    my $file = shift || '';
+    my $class = ref($this) || $this;
+    my $self = {};
+    bless $self, $class;
+
+    $self->reset;
+    if ($file) {
+       $self->_read;
+    }
+
+    return $self;
+}
+
+sub reset {
+    my ($self) = @_;
+
+    $self->{file} = '';
+    $self->{id} = '';
+    $self->{SONAME} = '';
+    $self->{NEEDED} = [];
+    $self->{RPATH} = [];
+    $self->{dynsyms} = {};
+
+    return $self;
+}
+
+
+sub _read {
+    my ($self, $file) = @_;
+
+    $file ||= $self->{file};
+    return unless $file;
+
+    $self->reset;
+    $self->{file} = $file;
+
+    local $ENV{LC_ALL} = 'C';
+    open(my $objdump, "-|", "objdump", "-w", "-p", "-T", $file)
+       || syserr(sprintf(_g("Can't execute objdump: %s"), $!));
+    my $ret = $self->_parse($objdump);
+    close($objdump);
+    return $ret;
+}
+
+sub _parse {
+    my ($self, $fh) = @_;
+
     my $section = "none";
-    while (defined($_ = <OBJDUMP>)) {
+    while (defined($_ = <$fh>)) {
        chomp;
-       next if (/^\s*$/);
+       next if /^\s*$/;
 
        if (/^DYNAMIC SYMBOL TABLE:/) {
            $section = "dynsym";
@@ -57,33 +171,27 @@ sub parse {
        }
 
        if ($section eq "dynsym") {
-           $self->parse_dynamic_symbol($_, $obj);
+           $self->parse_dynamic_symbol($_);
        } elsif ($section eq "dyninfo") {
            if (/^\s*NEEDED\s+(\S+)/) {
-               push @{$obj->{NEEDED}}, $1;
+               push @{$self->{NEEDED}}, $1;
            } elsif (/^\s*SONAME\s+(\S+)/) {
-               $obj->{SONAME} = $1;
+               $self->{SONAME} = $1;
            } elsif (/^\s*HASH\s+(\S+)/) {
-               $obj->{HASH} = $1;
+               $self->{HASH} = $1;
            } elsif (/^\s*GNU_HASH\s+(\S+)/) {
-               $obj->{GNU_HASH} = $1;
+               $self->{GNU_HASH} = $1;
            } elsif (/^\s*RPATH\s+(\S+)/) {
-               push @{$obj->{RPATH}}, split (/:/, $1);
+               push @{$self->{RPATH}}, split (/:/, $1);
            }
        } elsif ($section eq "none") {
            if (/^\s*\S+:\s*file\s+format\s+(\S+)\s*$/) {
-               $obj->{format} = $1;
+               $self->{format} = $1;
            }
        }
     }
-    close(OBJDUMP);
-    if ($section eq "none") {
-       return undef;
-    } else {
-       my $id = $obj->{SONAME} || $obj->{file};
-       $self->{objects}{$id} = $obj;
-       return $id;
-    }
+
+    return $section ne "none";
 }
 
 # Output format of objdump -w -T
@@ -114,7 +222,7 @@ sub parse {
 # symbol exist
 
 sub parse_dynamic_symbol {
-    my ($self, $line, $obj) = @_;
+    my ($self, $line) = @_;
     my $vis = '(?:\s+(?:\.protected|\.hidden|\.internal|0x\S+))?';
     if ($line =~ /^[0-9a-f]+ (.{7})\s+(\S+)\s+[0-9a-f]+\s+(\S+)?(?:$vis\s+(\S+))/) {
 
@@ -127,7 +235,7 @@ sub parse_dynamic_symbol {
                debug => substr($flags, 5, 1) eq "d",
                type => substr($flags, 6, 1),
                weak => substr($flags, 1, 1) eq "w",
-               hidden => 0,
+               hidden => '',
                defined => $sect ne '*UND*'
            };
 
@@ -139,84 +247,14 @@ sub parse_dynamic_symbol {
        }
 
        # Register symbol
-       $obj->add_dynamic_symbol($symbol);
+       $self->add_dynamic_symbol($symbol);
     } elsif ($line =~ /^[0-9a-f]+ (.{7})\s+(\S+)\s+[0-9a-f]+/) {
        # Same start but no version and no symbol ... just ignore
     } else {
-       warning(sprintf(_g("Couldn't parse one line of objdump's output: %s"), $line));
-    }
-}
-
-sub locate_symbol {
-    my ($self, $name) = @_;
-    foreach my $obj (values %{$self->{objects}}) {
-       my $sym = $obj->get_symbol($name);
-       if (defined($sym) && $sym->{defined}) {
-           return $sym;
-       }
-    }
-    return undef;
-}
-
-sub get_object {
-    my ($self, $objid) = @_;
-    if (exists $self->{objects}{$objid}) {
-       return $self->{objects}{$objid};
-    }
-    return undef;
-}
-
-{
-    my %format; # Cache of result
-    sub get_format {
-       my ($file) = @_;
-
-       if (exists $format{$file}) {
-           return $format{$file};
-       } else {
-           local $ENV{LC_ALL} = "C";
-           open(P, "-|", "objdump", "-a", "--", $file)
-               || syserr(_g("cannot fork for objdump"));
-           while (<P>) {
-               chomp;
-               if (/^\s*\S+:\s*file\s+format\s+(\S+)\s*$/) {
-                   $format{$file} = $1;
-                   return $format{$file};
-               }
-           }
-           close(P) or subprocerr(sprintf(_g("objdump on \`%s'"), $file));
-       }
-    }
-}
-
-sub is_elf {
-    my ($file) = @_;
-    open(FILE, "<", $file) ||
-       syserr(sprintf(_g("Can't open %s for test: %s"), $file, $!));
-    my ($header, $result) = ("", 0);
-    if (read(FILE, $header, 4) == 4) {
-       $result = 1 if ($header =~ /^\177ELF$/);
+       warning(sprintf(_g("Couldn't parse dynamic symbol definition: %s"), $line));
     }
-    close(FILE);
-    return $result;
 }
 
-package Dpkg::Shlibs::Objdump::Object;
-
-sub new {
-    my $this = shift;
-    my $file = shift || '';
-    my $class = ref($this) || $this;
-    my $self = {
-       file => $file,
-       SONAME => '',
-       NEEDED => [],
-       RPATH => [],
-       dynsyms => {}
-    };
-    bless $self, $class;
-    return $self;
-}
 
 sub add_dynamic_symbol {
     my ($self, $symbol) = @_;
@@ -228,6 +266,11 @@ sub add_dynamic_symbol {
     }
 }
 
+sub get_id {
+    my $self = shift;
+    return $self->{SONAME} || $self->{file};
+}
+
 sub get_symbol {
     my ($self, $name) = @_;
     if (exists $self->{dynsyms}{$name}) {
index df5c89d2169fc155e06d51a276de5cdd395a489c..65f5cff7b2ef5201ec9edfcd0d000d75e2beec1d 100755 (executable)
@@ -94,9 +94,7 @@ foreach my $file (keys %exec) {
     $cur_field = $exec{$file};
     print "Scanning $file (for $cur_field field)\n" if $debug;
 
-    my $dump = Dpkg::Shlibs::Objdump->new();
-    my $id = $dump->parse($file);
-    my $obj = $dump->get_object($id);
+    my $obj = Dpkg::Shlibs::Objdump::Object->new($file);
 
     # Load symbols files for all needed libraries (identified by SONAME)
     my %libfiles;
index 81b39159bb3c9e5e0d522f77648be378d6ed13b5..1767a3bc760d05289ccc30287b04a8273bb056d7 100644 (file)
@@ -1,6 +1,6 @@
 # -*- mode: cperl;-*-
 
-use Test::More tests => 4;
+use Test::More tests => 14;
 
 use strict;
 use warnings;
@@ -18,4 +18,36 @@ is_deeply([qw(/nonexistant32 /nonexistant/lib64
          \@Dpkg::Shlibs::librarypaths, "parsed library paths");
 
 use_ok('Dpkg::Shlibs::Objdump');
+
+my $obj = Dpkg::Shlibs::Objdump::Object->new;
+
+open my $objdump, '<', "t/200_Dpkg_Shlibs/objdump.libc6"
+  or die "t/200_Dpkg_Shlibs/objdump.libc6: $!";
+$obj->_parse($objdump);
+close $objdump;
+
+is($obj->{SONAME}, 'libc.so.6', 'SONAME');
+is($obj->{HASH}, '0x13d99c', 'HASH');
+is($obj->{GNU_HASH}, '0x194', 'GNU_HASH');
+is($obj->{format}, 'elf32-i386', 'format');
+is_deeply($obj->{NEEDED}, [ 'ld-linux.so.2' ], 'NEEDED');
+is_deeply([ $obj->get_needed_libraries ], [ 'ld-linux.so.2' ], 'NEEDED');
+
+my $sym = $obj->get_symbol('_sys_nerr@GLIBC_2.3');
+is_deeply( $sym, { name => '_sys_nerr', version => 'GLIBC_2.3',
+                  soname => 'libc.so.6', section => '.rodata', dynamic => 1,
+                  debug => '', type => 'O', weak => '',
+                  hidden => 1, defined => 1 }, 'Symbol' );
+$sym = $obj->get_symbol('_IO_stdin_used');
+is_deeply( $sym, { name => '_IO_stdin_used', version => '',
+                  soname => 'libc.so.6', section => '*UND*', dynamic => 1,
+                  debug => '', type => ' ', weak => 1,
+                  hidden => '', defined => '' }, 'Symbol 2' );
+
+my @syms = $obj->get_exported_dynamic_symbols;
+is( scalar @syms, 2231, 'defined && dynamic' );
+@syms = $obj->get_undefined_dynamic_symbols;
+is( scalar @syms, 9, 'undefined && dynamic' );
+
+
 use_ok('Dpkg::Shlibs::SymbolFile');
diff --git a/scripts/t/200_Dpkg_Shlibs/objdump.libc6 b/scripts/t/200_Dpkg_Shlibs/objdump.libc6
new file mode 100644 (file)
index 0000000..7efee24
--- /dev/null
@@ -0,0 +1,2342 @@
+
+/lib/libc.so.6:     file format elf32-i386
+
+Program Header:
+    PHDR off    0x00000034 vaddr 0x00000034 paddr 0x00000034 align 2**2
+         filesz 0x00000140 memsz 0x00000140 flags r-x
+  INTERP off    0x0012d550 vaddr 0x0012d550 paddr 0x0012d550 align 2**0
+         filesz 0x00000013 memsz 0x00000013 flags r--
+    LOAD off    0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**12
+         filesz 0x00140ca4 memsz 0x00140ca4 flags r-x
+    LOAD off    0x001411f0 vaddr 0x001411f0 paddr 0x001411f0 align 2**12
+         filesz 0x0000278c memsz 0x00005400 flags rw-
+ DYNAMIC off    0x00142d9c vaddr 0x00142d9c paddr 0x00142d9c align 2**2
+         filesz 0x000000f0 memsz 0x000000f0 flags rw-
+    NOTE off    0x00000174 vaddr 0x00000174 paddr 0x00000174 align 2**2
+         filesz 0x00000020 memsz 0x00000020 flags r--
+     TLS off    0x001411f0 vaddr 0x001411f0 paddr 0x001411f0 align 2**2
+         filesz 0x00000008 memsz 0x0000002c flags r--
+EH_FRAME off    0x0012d564 vaddr 0x0012d564 paddr 0x0012d564 align 2**2
+         filesz 0x00002a2c memsz 0x00002a2c flags r--
+   STACK off    0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**2
+         filesz 0x00000000 memsz 0x00000000 flags rw-
+   RELRO off    0x001411f8 vaddr 0x001411f0 paddr 0x001411f0 align 2**0
+         filesz 0x00001c94 memsz 0x00001c80 flags r--
+
+Dynamic Section:
+  NEEDED      ld-linux.so.2
+  SONAME      libc.so.6
+  INIT        0x15ea0
+  FINI_ARRAY  0x1411f8
+  FINI_ARRAYSZ 0x4
+  HASH        0x13d99c
+  GNU_HASH    0x194
+  STRTAB      0xc85c
+  SYMTAB      0x3c4c
+  STRSZ       0x567a
+  SYMENT      0x10
+  PLTGOT      0x142ff4
+  PLTRELSZ    0x40
+  PLTREL      0x11
+  JMPREL      0x15d3c
+  REL         0x13374
+  RELSZ       0x29c8
+  RELENT      0x8
+  VERDEF      0x13058
+  VERDEFNUM   0x15
+  FLAGS       0x10
+  VERNEED     0x13334
+  VERNEEDNUM  0x1
+  VERSYM      0x11ed6
+  RELCOUNT    0x4db
+
+Version definitions:
+1 0x01 0x0865f4e6 libc.so.6
+2 0x00 0x0d696910 GLIBC_2.0
+3 0x00 0x0d696911 GLIBC_2.1
+       GLIBC_2.0 
+4 0x00 0x09691f71 GLIBC_2.1.1
+       GLIBC_2.1 
+5 0x00 0x09691f72 GLIBC_2.1.2
+       GLIBC_2.1.1 
+6 0x00 0x09691f73 GLIBC_2.1.3
+       GLIBC_2.1.2 
+7 0x00 0x0d696912 GLIBC_2.2
+       GLIBC_2.1.3 
+8 0x00 0x09691a71 GLIBC_2.2.1
+       GLIBC_2.2 
+9 0x00 0x09691a72 GLIBC_2.2.2
+       GLIBC_2.2.1 
+10 0x00 0x09691a73 GLIBC_2.2.3
+       GLIBC_2.2.2 
+11 0x00 0x09691a74 GLIBC_2.2.4
+       GLIBC_2.2.3 
+12 0x00 0x09691a76 GLIBC_2.2.6
+       GLIBC_2.2.4 
+13 0x00 0x0d696913 GLIBC_2.3
+       GLIBC_2.2.6 
+14 0x00 0x09691972 GLIBC_2.3.2
+       GLIBC_2.3 
+15 0x00 0x09691973 GLIBC_2.3.3
+       GLIBC_2.3.2 
+16 0x00 0x09691974 GLIBC_2.3.4
+       GLIBC_2.3.3 
+17 0x00 0x0d696914 GLIBC_2.4
+       GLIBC_2.3.4 
+18 0x00 0x0d696915 GLIBC_2.5
+       GLIBC_2.4 
+19 0x00 0x0d696916 GLIBC_2.6
+       GLIBC_2.5 
+20 0x00 0x0963cf85 GLIBC_PRIVATE
+       GLIBC_2.6 
+21 0x00 0x0b792650 GCC_3.0
+
+Version References:
+  required from ld-linux.so.2:
+    0x0963cf85 0x00 24 GLIBC_PRIVATE
+    0x0d696913 0x00 23 GLIBC_2.3
+    0x0d696911 0x00 22 GLIBC_2.1
+
+DYNAMIC SYMBOL TABLE:
+00000000  w   D  *UND* 00000000              _IO_stdin_used
+00000000  w   D  *UND* 00000000              _dl_starting_up
+00000000      DO *UND* 00000004  GLIBC_2.1   __libc_stack_end
+00000000      DF *UND* 00000135  GLIBC_2.3   ___tls_get_addr
+00000000      DF *UND* 00000085  GLIBC_PRIVATE _dl_tls_get_addr_soft
+00000000      DO *UND* 000001c0  GLIBC_PRIVATE _rtld_global_ro
+00000000      DO *UND* 00000004  GLIBC_PRIVATE __libc_enable_secure
+00000000      DO *UND* 00000004  GLIBC_PRIVATE _dl_argv
+00000000      DO *UND* 00000588  GLIBC_PRIVATE _rtld_global
+000756d0 g    DF .text 00000023  GLIBC_2.1.1 __strspn_c1
+0005bc90 g    DF .text 00000101  GLIBC_2.2   putwchar
+000e8950 g    DF .text 00000034  GLIBC_2.4   __gethostname_chk
+00075700 g    DF .text 00000025  GLIBC_2.1.1 __strspn_c2
+000ec880 g    DF .text 000000a8  GLIBC_2.0   setrpcent
+0007b760  w   DF .text 00000039  GLIBC_2.1   __wcstod_l
+00075730 g    DF .text 0000002a  GLIBC_2.1.1 __strspn_c3
+000b7640  w   DF .text 00000034  GLIBC_2.0   sched_get_priority_min
+000d32b0 g    DF .text 00000034  GLIBC_2.3.2 epoll_create
+000e8990 g    DF .text 00000024  GLIBC_2.4   __getdomainname_chk
+000d3590 g    DF .text 0000003a  GLIBC_2.0   klogctl
+00023eb0 g    DF .text 00000011  GLIBC_2.1   __tolower_l
+00046630 g    DF .text 00000034  GLIBC_2.0   dprintf
+000800b0 g    DF .text 00000ef3  GLIBC_2.1   __wcscoll_l
+00093590  w   DF .text 00000070  GLIBC_2.0   setuid
+000d5fe0  w   DF .text 000000cb  GLIBC_2.0   iswalpha
+000835a0 g    DF .text 00000038  GLIBC_2.0   __gettimeofday
+000f0cb0 g    DF .text 0000007c  GLIBC_PRIVATE __internal_endnetgrent
+000cbca0 g    DF .text 00000034  GLIBC_2.0   chroot
+001447c0  w   DO .bss  00000004  GLIBC_2.0   daylight
+0010e2b0 g    DF .text 00000063 (GLIBC_2.0)  _IO_file_setbuf
+00063b10 g    DF .text 00000063  GLIBC_2.1   _IO_file_setbuf
+000861f0 g    DF .text 00000052  GLIBC_2.1   getdate
+000e8090 g    DF .text 00000107  GLIBC_2.4   __vswprintf_chk
+0010e320 g    DF .text 0000015d (GLIBC_2.0)  _IO_file_fopen
+000df640 g    DF .text 0000003c  GLIBC_2.3.2 pthread_cond_signal
+00111240 g    DF .text 0000003c (GLIBC_2.0)  pthread_cond_signal
+00063d30 g    DF .text 000005e0  GLIBC_2.1   _IO_file_fopen
+0002fb70  w   DF .text 00000030  GLIBC_2.3   strtoull_l
+000fc6b0 g    DF .text 00000068  GLIBC_2.0   xdr_short
+00059a30 g    DF .text 000000e9  GLIBC_2.0   _IO_padn
+000d1740 g    DF .text 00000048  GLIBC_2.0   lfind
+00071a00  w   DF .text 00000151  GLIBC_2.1   strcasestr
+00092740 g    DF .text 000002e3  GLIBC_PRIVATE __libc_fork
+00103570 g    DF .text 000000bc  GLIBC_2.1.1 xdr_int64_t
+0007b760  w   DF .text 00000039  GLIBC_2.3   wcstod_l
+000d3ee0  w   DF .text 00000037  GLIBC_2.0   socket
+00100360 g    DF .text 00000081  GLIBC_2.1   key_encryptsession_pk
+00072090  w   DF .text 00000095  GLIBC_2.0   argz_create
+000752d0 g    DF .text 00000045  GLIBC_2.1.1 __strpbrk_g
+0005bf20 g    DF .text 00000049  GLIBC_2.0   putchar_unlocked
+000f8960 g    DF .text 000000f3  GLIBC_2.0   xdr_pmaplist
+000e3790 g    DF .text 000000f7  GLIBC_2.2   __res_init
+00039340 g    DF .text 00000095  GLIBC_2.0   __xpg_basename
+000e6980 g    DF .text 00000033  GLIBC_2.3.4 __stpcpy_chk
+0005fc60  w   DF .text 000000e7  GLIBC_2.0   getc
+0005d0a0 g    DF .text 00000133  GLIBC_2.2   _IO_wdefault_xsputn
+00076770  w   DF .text 000000bc  GLIBC_2.0   wcpncpy
+000cc210 g    DF .text 0000003d  GLIBC_2.2   mkdtemp
+0002e190  w   DF .text 00000039  GLIBC_2.0   srand48_r
+0002b520 g    DF .text 00000078  GLIBC_2.1   sighold
+0006dc50 g    DF .text 00000022  GLIBC_2.0   __default_morecore
+000b7510 g    DF .text 00000038  GLIBC_2.0   __sched_getparam
+000ef5e0 g    DF .text 00000076  GLIBC_2.0   iruserok
+0003bf30 g    DF .text 0000009b  GLIBC_2.0   cuserid
+00029440  w   DF .text 00000027  GLIBC_2.0   isnan
+0002d8e0  w   DF .text 00000106  GLIBC_2.0   setstate_r
+000766e0 g    DF .text 00000045  GLIBC_2.0   wmemset
+00109f60 g    DF .text 00000086  GCC_3.0     __register_frame_info_bases
+00000000 g    DO *ABS* 00000000  GCC_3.0     GCC_3.0
+00063270 g    DF .text 00000025  GLIBC_2.0   _IO_file_stat
+00072580  w   DF .text 0000038f  GLIBC_2.0   argz_replace
+00097320 g    DF .text 0000006a  GLIBC_2.1   globfree64
+000df030  w   DF .text 00000037  GLIBC_2.1   argp_usage
+0012d508 g    DO .rodata       00000004 (GLIBC_2.1)  _sys_nerr
+0012d50c g    DO .rodata       00000004 (GLIBC_2.3)  _sys_nerr
+0012d500 g    DO .rodata       00000004  GLIBC_2.4   _sys_nerr
+0012d504 g    DO .rodata       00000004 (GLIBC_2.0)  _sys_nerr
+00072210  w   DF .text 00000046  GLIBC_2.0   argz_next
+00146334 g    DO .bss  00000004  GLIBC_2.1   getdate_err
+00111110 g    DF .text 0000005f (GLIBC_2.0)  getspnam_r
+000d7eb0 g    DF .text 0000017d  GLIBC_2.1.2 getspnam_r
+00092740 g    DF .text 000002e3  GLIBC_2.0   __fork
+000b75d0 g    DF .text 0000002c  GLIBC_2.0   __sched_yield
+000e3790  w   DF .text 000000f7 (GLIBC_2.0)  res_init
+00082a70 g    DF .text 00000032  GLIBC_2.0   __gmtime_r
+00037e30 g    DF .text 0000004f  GLIBC_2.0   l64a
+00062130 g    DF .text 00000094  GLIBC_2.1   _IO_file_attach
+0010da30 g    DF .text 00000085 (GLIBC_2.0)  _IO_file_attach
+00075360 g    DF .text 00000046  GLIBC_2.1.1 __strstr_g
+0008b0d0  w   DF .text 00002517  GLIBC_2.3   wcsftime_l
+00059890  w   DF .text 00000180  GLIBC_2.0   gets
+00061d80 g    DF .text 00000036  GLIBC_2.0   putc_unlocked
+000ec440 g    DF .text 0000012d  GLIBC_2.0   getrpcbyname
+00058280  w   DF .text 000000f8  GLIBC_2.0   fflush
+000fa6e0 g    DF .text 00000062  GLIBC_2.1   _authenticate
+00037d40 g    DF .text 000000e4  GLIBC_2.0   a64l
+000d0a20 g    DF .text 0000002d  GLIBC_2.0   hcreate
+0006fa50 g    DF .text 00000022  GLIBC_2.0   strcpy
+00015e80 g    DF .text 00000005  GLIBC_2.0   __libc_init_first
+000fc3b0 g    DF .text 00000041  GLIBC_2.0   xdr_long
+000d4800 g    DF .text 00000062  GLIBC_2.0   shmget
+0002a640  w   DF .text 000000a7  GLIBC_2.0   sigsuspend
+0005e700 g    DF .text 00000170  GLIBC_2.2   _IO_wdo_write
+00056990 g    DF .text 00000049  GLIBC_2.0   getw
+000cbe50 g    DF .text 00000173  GLIBC_2.0   gethostid
+00056e70  w   DF .text 0000004b  GLIBC_2.0   flockfile
+00071d40 g    DF .text 000000c6  GLIBC_2.1   __rawmemchr
+00081a30  w   DF .text 00000073  GLIBC_2.3   wcsncasecmp_l
+00071ff0  w   DF .text 00000049  GLIBC_2.0   argz_add
+000e6260 g    DF .text 000002bc  GLIBC_2.1   __backtrace_symbols
+00075a60 g    DF .text 0000005d  GLIBC_2.1.1 __strncpy_byn
+00060330  w   DF .text 0000017f  GLIBC_2.0   vasprintf
+00064870 g    DF .text 000001d0  GLIBC_2.0   _IO_un_link
+000e8ba0 g    DF .text 00000050  GLIBC_2.4   __wcstombs_chk
+000d5c60 g    DF .text 00000013  GLIBC_2.0   _mcount
+00077dd0 g    DF .text 0000003e  GLIBC_2.0   __wcstod_internal
+000f55d0 g    DF .text 000001d0  GLIBC_2.0   authunix_create
+000765d0 g    DF .text 000000a0  GLIBC_2.0   wmemcmp
+00082a70  w   DF .text 00000032  GLIBC_2.0   gmtime_r
+000c2cf0  w   DF .text 00000038  GLIBC_2.0   fchmod
+000e6f90 g    DF .text 000000d4  GLIBC_2.3.4 __printf_chk
+00060800  w   DF .text 000001c5  GLIBC_2.0   obstack_vprintf
+00075200 g    DF .text 00000033  GLIBC_2.1.1 __strspn_cg
+000e8640 g    DF .text 00000158  GLIBC_2.4   __fgetws_chk
+00016650 g    DF .text 00000038 (GLIBC_2.0)  __cmpdi2
+000dfb20 g    DF .text 000000eb  GLIBC_2.3.2 __register_atfork
+00090090 g    DF .text 000000a7  GLIBC_2.0   setgrent
+0002a790  w   DF .text 00000055  GLIBC_2.0   sigwait
+000d71b0  w   DF .text 0000006e  GLIBC_2.3   iswctype_l
+000d6840  w   DF .text 0000007b  GLIBC_2.0   wctrans
+0003d040 g    DF .text 000043ec  GLIBC_2.0   _IO_vfprintf
+000cbc60 g    DF .text 00000034  GLIBC_2.0   acct
+0002cd30 g    DF .text 000000f9  GLIBC_2.0   exit
+000e8f40 g    DF .text 00000007  GLIBC_2.0   htonl
+00092dc0 g    DF .text 0000015d  GLIBC_2.0   execl
+0009f030  w   DF .text 0000001f  GLIBC_2.0   re_set_syntax
+000eb4c0 g    DF .text 000000b0  GLIBC_2.0   endprotoent
+000bf940 g    DF .text 0000150f  GLIBC_2.1   wordexp
+000eb190 g    DF .text 0000017d  GLIBC_2.1.2 getprotobynumber_r
+001117c0 g    DF .text 0000005f (GLIBC_2.0)  getprotobynumber_r
+00023830 g    DF .text 00000027  GLIBC_2.2   __assert
+00029410  w   DF .text 0000002d  GLIBC_2.0   isinf
+00061c50 g    DF .text 0000000b  GLIBC_2.0   clearerr_unlocked
+00100a60 g    DF .text 0000002a  GLIBC_2.0   xdr_keybuf
+0009e4f0 g    DF .text 000002e9  GLIBC_2.2.3 fnmatch
+0009e4f0 g    DF .text 000002e9 (GLIBC_2.0)  fnmatch
+00023dd0 g    DF .text 00000017  GLIBC_2.1   __islower_l
+000d2f70 g    DF .text 00000028  GLIBC_2.3.3 gnu_dev_major
+000e8f50 g    DF .text 0000000e  GLIBC_2.0   htons
+00103730 g    DF .text 0000003f  GLIBC_2.1   xdr_uint32_t
+0008e1a0  w   DF .text 000000af  GLIBC_2.0   readdir
+0002e1d0  w   DF .text 0000004a  GLIBC_2.0   seed48_r
+0002b5a0 g    DF .text 00000078  GLIBC_2.1   sigrelse
+00093ef0  w   DF .text 000001e0  GLIBC_2.0   pathconf
+000e5280 g    DF .text 00000652  GLIBC_2.2.2 __nss_hostname_digits_dots
+00092c00 g    DF .text 00000034  GLIBC_2.0   execv
+000465b0 g    DF .text 00000034  GLIBC_2.0   sprintf
+00060070 g    DF .text 000000f6  GLIBC_2.0   _IO_putc
+000d3670 g    DF .text 0000003a  GLIBC_2.0   nfsservctl
+00072a10 g    DF .text 0000013e  GLIBC_2.0   envz_merge
+00020670 g    DF .text 0000065e  GLIBC_2.0   setlocale
+00088f70  w   DF .text 0000215c  GLIBC_2.3   strftime_l
+00071c90 g    DF .text 0000001d  GLIBC_2.0   memfrob
+00076bd0  w   DF .text 00000218  GLIBC_2.0   mbrtowc
+00106e70  w   DF .text 000000c9  GLIBC_2.0   getutid_r
+0002d800  w   DF .text 00000060  GLIBC_2.0   srand
+000d6be0  w   DF .text 00000090  GLIBC_2.3   iswcntrl_l
+000dfd70 g    DF .text 00000071  GLIBC_PRIVATE __libc_pthread_init
+000d60b0  w   DF .text 000000c9  GLIBC_2.1   iswblank
+0006e920 g    DF .text 00000005  GLIBC_2.0   tr_break
+000c36f0  w   DF .text 00000070  GLIBC_2.0   __write
+000cba10 g    DF .text 00000088  GLIBC_2.0   __select
+000d5e80 g    DF .text 00000081  GLIBC_2.0   towlower
+000e8520 g    DF .text 000000f8  GLIBC_2.4   __vfwprintf_chk
+0005b4f0 g    DF .text 000000ad  GLIBC_2.2   fgetws_unlocked
+000c48c0  w   DF .text 000002c8  GLIBC_2.0   ttyname_r
+00058860 g    DF .text 00000032  GLIBC_2.1   fopen
+0010cab0 g    DF .text 00000097 (GLIBC_2.0)  fopen
+000bb6b0 g    DF .text 0000014f  GLIBC_2.1   gai_strerror
+00076210  w   DF .text 000000a4  GLIBC_2.0   wcsncpy
+000d7670 g    DF .text 0000018e  GLIBC_2.0   fgetspent
+00070630 g    DF .text 00000226  GLIBC_2.0   strsignal
+00070150 g    DF .text 000000f7  GLIBC_2.0   strncmp
+000eae60 g    DF .text 000001d2  GLIBC_2.1.2 getnetbyname_r
+00111750 g    DF .text 00000066 (GLIBC_2.0)  getnetbyname_r
+000fb280 g    DF .text 00000012  GLIBC_2.0   svcfd_create
+000eb3d0 g    DF .text 000000e4  GLIBC_2.1.2 getprotoent_r
+000cdb40  w   DF .text 00000038  GLIBC_2.0   ftruncate
+00111820 g    DF .text 000000e7 (GLIBC_2.0)  getprotoent_r
+00074f30 g    DF .text 0000003c  GLIBC_2.1.1 __strncpy_gg
+00100850 g    DF .text 0000008d  GLIBC_2.1   xdr_unixcred
+00025880  w   DF .text 00000047  GLIBC_2.2   dcngettext
+000f91e0 g    DF .text 00000087  GLIBC_2.0   xdr_rmtcallres
+0005a0a0 g    DF .text 00000195  GLIBC_2.0   _IO_puts
+000e10f0 g    DF .text 000001d4  GLIBC_2.0   inet_nsap_addr
+000dfff0  w   DF .text 00000169  GLIBC_2.0   inet_aton
+000bb800 g    DF .text 0000005b  GLIBC_2.1   wordfree
+001464e0 g    DO .bss  00000004  GLIBC_2.0   __rcmd_errstr
+000cebd0 g    DF .text 000000e5  GLIBC_2.0   ttyslot
+000c1280 g    DF .text 00000084  GLIBC_2.2   posix_spawn_file_actions_addclose
+000657c0 g    DF .text 00000038  GLIBC_2.0   _IO_unsave_markers
+0008efb0 g    DF .text 0000005f  GLIBC_2.0   getdirentries
+00064da0 g    DF .text 00000039  GLIBC_2.0   _IO_default_uflow
+000e7e00 g    DF .text 00000041  GLIBC_2.4   __wcpcpy_chk
+0002fca0 g    DF .text 0000003e  GLIBC_2.0   __strtold_internal
+001430d0 g    DO .data 00000004  GLIBC_2.0   optind
+00075490 g    DF .text 00000089  GLIBC_2.1.1 __strcpy_small
+0002dda0 g    DF .text 00000037  GLIBC_2.0   erand48
+00146370 g    DO .bss  00000004  GLIBC_2.1   argp_program_version
+000786e0  w   DF .text 00000040  GLIBC_2.3   wcstoul_l
+000d3030  w   DF .text 0000003a  GLIBC_2.1   modify_ldt
+0006ba10 g    DF .text 000001c5  GLIBC_2.0   __libc_memalign
+000d3f60 g    DF .text 00000062  GLIBC_2.0   isfdtype
+000755e0 g    DF .text 0000003b  GLIBC_2.1.1 __strcspn_c1
+000cc5f0 g    DF .text 000000d6  GLIBC_2.0   getfsfile
+00075620 g    DF .text 00000048  GLIBC_2.1.1 __strcspn_c2
+0002df50 g    DF .text 0000002d  GLIBC_2.0   lcong48
+00090ee0 g    DF .text 000000a2  GLIBC_2.0   getpwent
+00075670 g    DF .text 00000058  GLIBC_2.1.1 __strcspn_c3
+000b5920  w   DF .text 0000004b  GLIBC_2.0   re_match_2
+00144104  w   DO .bss  00000004  GLIBC_2.0   __free_hook
+0008fc60 g    DF .text 00000257  GLIBC_2.1   putgrent
+00072470  w   DF .text 00000054  GLIBC_2.0   argz_stringify
+000ec0d0 g    DF .text 000000e4  GLIBC_2.1.2 getservent_r
+00111a70 g    DF .text 000000e7 (GLIBC_2.0)  getservent_r
+0005f360 g    DF .text 000000ec  GLIBC_2.4   open_wmemstream
+000f4580 g    DF .text 00000106  GLIBC_2.5   inet6_opt_append
+00070300 g    DF .text 000001b9  GLIBC_2.0   strrchr
+000ec270 g    DF .text 000000a8  GLIBC_2.0   setservent
+001084a0  w   DF .text 000000f3  GLIBC_2.2.1 posix_openpt
+000f9e30 g    DF .text 00000042  GLIBC_2.0   svcerr_systemerr
+00061d30 g    DF .text 00000042  GLIBC_2.0   fflush_unlocked
+000e8050 g    DF .text 00000039  GLIBC_2.4   __swprintf_chk
+00023df0 g    DF .text 00000017  GLIBC_2.1   __isgraph_l
+000c1d20 g    DF .text 0000001d  GLIBC_2.2   posix_spawnattr_setschedpolicy
+0005a680  w   DF .text 00000127  GLIBC_2.0   setbuffer
+00091ec0  w   DF .text 000000ac  GLIBC_2.0   wait
+0005bff0 g    DF .text 00000036  GLIBC_2.2   vwprintf
+0006bbe0  w   DF .text 0000008c  GLIBC_2.2   posix_memalign
+000f3bd0 g    DF .text 00000118  GLIBC_2.3.4 getipv4sourcefilter
+00074e00 g    DF .text 00000030  GLIBC_2.1.1 __strcpy_g
+000e83f0 g    DF .text 00000108  GLIBC_2.4   __vwprintf_chk
+000562c0 g    DF .text 00000074  GLIBC_2.0   tempnam
+00023980 g    DF .text 00000048  GLIBC_2.0   isalpha
+000320d0  w   DF .text 00000029  GLIBC_2.3   strtof_l
+00110890 g    DF .text 00000042 (GLIBC_2.0)  regexec
+000d2d90  w   DF .text 000000a5  GLIBC_2.0   llseek
+000b59f0 g    DF .text 000000e7  GLIBC_2.3.4 regexec
+000cc080 g    DF .text 00000022  GLIBC_2.0   revoke
+000b59b0  w   DF .text 0000003a  GLIBC_2.0   re_match
+000d0ed0  w   DF .text 000003f4  GLIBC_2.0   tdelete
+000c4f70 g    DF .text 00000128  GLIBC_2.4   readlinkat
+000c3fc0  w   DF .text 00000034  GLIBC_2.0   pipe
+000e7cb0 g    DF .text 0000004c  GLIBC_2.4   __wctomb_chk
+000d2300  w   DF .text 0000001a  GLIBC_2.0   get_avphys_pages
+000f5180 g    DF .text 00000170  GLIBC_2.0   authunix_create_default
+0005f6a0 g    DF .text 0000009a  GLIBC_2.0   _IO_ferror
+000ec590 g    DF .text 0000012d  GLIBC_2.0   getrpcbynumber
+00072040  w   DF .text 00000041  GLIBC_2.0   argz_count
+0006fc90 g    DF .text 00000057  GLIBC_2.0   __strdup
+00094670 g    DF .text 0000041d  GLIBC_2.2   __sysconf
+000e7b00 g    DF .text 0000005d  GLIBC_2.4   __readlink_chk
+000cb620  w   DF .text 00000076  GLIBC_2.0   setregid
+000e2440 g    DF .text 0000002b  GLIBC_2.2   __res_ninit
+000ca740  w   DF .text 000000ac  GLIBC_2.0   tcdrain
+000f3cf0 g    DF .text 0000014a  GLIBC_2.3.4 setipv4sourcefilter
+000ca8f0 g    DF .text 00000030  GLIBC_2.0   cfmakeraw
+00077e90  w   DF .text 0000003f  GLIBC_2.0   wcstold
+000cafc0 g    DF .text 00000073  GLIBC_2.0   __sbrk
+00059d20 g    DF .text 00000299  GLIBC_2.1   _IO_proc_open
+000d4720 g    DF .text 0000007b  GLIBC_2.0   shmat
+00055d50 g    DF .text 00000197  GLIBC_2.0   perror
+0010d070 g    DF .text 00000299 (GLIBC_2.0)  _IO_proc_open
+000666c0 g    DF .text 00000042  GLIBC_2.0   _IO_str_pbackfail
+00143338 g    DO .data 00000008  GLIBC_2.0   __tzname
+00037e80 g    DF .text 00000152  GLIBC_2.0   rpmatch
+000c2b50  w   DF .text 00000095  GLIBC_2.1   statvfs64
+000e8920 g    DF .text 00000024  GLIBC_2.4   __getlogin_r_chk
+00143344 g    DO .data 00000004  GLIBC_2.0   __progname
+00046500  w   DF .text 00000024  GLIBC_2.0   _IO_fprintf
+0006ad30  w   DF .text 00000105  GLIBC_2.0   pvalloc
+00024420  w   DF .text 00000049  GLIBC_2.0   dcgettext
+000facd0 g    DF .text 000001f2  GLIBC_2.0   registerrpc
+0005e4b0 g    DF .text 0000024d  GLIBC_2.2   _IO_wfile_overflow
+00077c90 g    DF .text 00000046  GLIBC_2.1   wcstoll
+000c1580 g    DF .text 00000010  GLIBC_2.2   posix_spawnattr_setpgroup
+00144a94  w   DO .bss  00000004  GLIBC_2.0   _environ
+000d0810 g    DF .text 000001d1  GLIBC_2.0   qecvt_r
+0010e4f0 g    DF .text 000000fe (GLIBC_2.0)  _IO_do_write
+000d0140 g    DF .text 000001ff  GLIBC_2.0   ecvt_r
+00063120 g    DF .text 0000002a  GLIBC_2.1   _IO_do_write
+00064c90 g    DF .text 00000078  GLIBC_2.0   _IO_switch_to_get_mode
+00075eb0  w   DF .text 00000034  GLIBC_2.0   wcscat
+00108f50 g    DF .text 00000023  GLIBC_2.1   getutxid
+001465ac g    DO .bss  00000004  GLIBC_2.1   __key_gendes_LOCAL
+00076df0  w   DF .text 00000241  GLIBC_2.0   wcrtomb
+000299f0 g    DF .text 0000000d  GLIBC_2.1   __signbitf
+000ca1c0 g    DF .text 0000004c  GLIBC_2.6   sync_file_range
+001462f0 g    DO .bss  00000004 (GLIBC_2.0)  _obstack
+000ea5f0 g    DF .text 00000162  GLIBC_2.0   getnetbyaddr
+000d3a50  w   DF .text 0000006c  GLIBC_2.0   connect
+000762c0 g    DF .text 00000041  GLIBC_2.0   wcspbrk
+00000008 g    D  .tbss 00000004  GLIBC_PRIVATE errno
+00029440 g    DF .text 00000027  GLIBC_2.0   __isnan
+00075170 g    DF .text 00000033  GLIBC_2.1.1 __strcspn_cg
+00072b50 g    DF .text 00000096  GLIBC_2.0   envz_remove
+00029f60  w   DF .text 00000064  GLIBC_2.0   _longjmp
+00025910  w   DF .text 00000041  GLIBC_2.2   ngettext
+00029960  w   DF .text 00000090  GLIBC_2.0   ldexpf
+0005f750  w   DF .text 00000034  GLIBC_2.0   fileno_unlocked
+00146350 g    DO .bss  00000004  GLIBC_2.0   error_print_progname
+00029d90 g    DF .text 00000023  GLIBC_2.1   __signbitl
+00125578 g    DO .rodata       00000010  GLIBC_2.1   in6addr_any
+000cd800 g    DF .text 00000022  GLIBC_2.3   lutimes
+001090b0  w   DF .text 00000175  GLIBC_2.2.4 dl_iterate_phdr
+00100210 g    DF .text 0000005f  GLIBC_2.1   key_get_conv
+000cfc20 g    DF .text 00000038  GLIBC_2.0   munlock
+000910f0 g    DF .text 0000012d  GLIBC_2.0   getpwuid
+000711c0  w   DF .text 00000091  GLIBC_2.0   stpncpy
+000cdbf0  w   DF .text 00000063  GLIBC_2.1   ftruncate64
+000c95f0 g    DF .text 00000040  GLIBC_2.1   sendfile
+000cf9b0  w   DF .text 0000006e  GLIBC_2.1   mmap64
+000e3aa0 g    DF .text 00000038  GLIBC_PRIVATE __nss_disable_nscd
+0010ef60 g    DF .text 000000e5 (GLIBC_2.0)  getpwent_r
+00091240 g    DF .text 000000e2  GLIBC_2.1.2 getpwent_r
+000f4870 g    DF .text 0000006c  GLIBC_2.5   inet6_rth_init
+0002b1d0 g    DF .text 0000004f  GLIBC_PRIVATE __libc_allocate_rtsig_private
+00029d00  w   DF .text 00000086  GLIBC_2.0   ldexpl
+000f4310 g    DF .text 00000075  GLIBC_2.5   inet6_opt_next
+000fedc0 g    DF .text 000000bc  GLIBC_2.1   ecb_crypt
+0005ba60 g    DF .text 000000bb  GLIBC_2.2   ungetwc
+0008e730 g    DF .text 00000024  GLIBC_2.1   versionsort
+000fc670 g    DF .text 0000001a  GLIBC_2.1.1 xdr_longlong_t
+0007fe70  w   DF .text 00000039  GLIBC_2.1   __wcstof_l
+000d0da0  w   DF .text 0000005b  GLIBC_2.0   tfind
+00046530 g    DF .text 00000039  GLIBC_2.0   _IO_printf
+00072210 g    DF .text 00000046  GLIBC_2.0   __argz_next
+00076670  w   DF .text 00000034  GLIBC_2.0   wmemcpy
+000c1450 g    DF .text 00000035  GLIBC_2.2   posix_spawnattr_init
+000c25d0 g    DF .text 0000015d  GLIBC_2.4   __fxstatat64
+0002acd0 g    DF .text 0000002a  GLIBC_2.0   __sigismember
+00074c90 g    DF .text 0000003d  GLIBC_2.1.1 __memcpy_by2
+000c42e0 g    DF .text 000000c2  GLIBC_2.0   get_current_dir_name
+000d4650 g    DF .text 00000075  GLIBC_2.2   semctl
+00110f20 g    DF .text 0000006f (GLIBC_2.0)  semctl
+00061c80 g    DF .text 00000036  GLIBC_2.0   fputc_unlocked
+00077040  w   DF .text 00000058  GLIBC_2.0   mbsrtowcs
+00074c50 g    DF .text 00000033  GLIBC_2.1.1 __memcpy_by4
+000d1aa0 g    DF .text 00000023  GLIBC_2.0   verr
+000eb040 g    DF .text 0000012d  GLIBC_2.0   getprotobynumber
+000c50e0 g    DF .text 0000014b  GLIBC_2.4   unlinkat
+00023d50  w   DF .text 00000015  GLIBC_2.3   isalnum_l
+000fe140 g    DF .text 00000103  GLIBC_2.0   getsecretkey
+00113170 g    DF __libc_thread_freeres_fn      00000031  GLIBC_PRIVATE __libc_thread_freeres
+000fecb0 g    DF .text 00000056  GLIBC_2.1   xdr_authdes_verf
+00143420 g    DO .data 00000098  GLIBC_2.1   _IO_2_1_stdin_
+0002fba0 g    DF .text 0000003e  GLIBC_2.0   __strtof_internal
+0008e150  w   DF .text 0000004e  GLIBC_2.0   closedir
+0008f750 g    DF .text 000000b4  GLIBC_2.0   initgroups
+000e90d0 g    DF .text 00000152  GLIBC_2.0   inet_ntoa
+0007fe70  w   DF .text 00000039  GLIBC_2.3   wcstof_l
+00023250 g    DF .text 00000088  GLIBC_2.1   __freelocale
+0010f130 g    DF .text 00001755 (GLIBC_2.1)  glob64
+000981f0 g    DF .text 00001755  GLIBC_2.2   glob64
+000e82d0 g    DF .text 000000fb  GLIBC_2.4   __fwprintf_chk
+000f9270 g    DF .text 000000fd  GLIBC_2.0   pmap_rmtcall
+00060070  w   DF .text 000000f6  GLIBC_2.0   putc
+000926d0  w   DF .text 0000006c  GLIBC_2.0   nanosleep
+000c40e0  w   DF .text 00000034  GLIBC_2.0   fchdir
+000fc790 g    DF .text 00000037  GLIBC_2.0   xdr_char
+000d7da0 g    DF .text 000000a7  GLIBC_2.0   setspent
+00058ac0 g    DF .text 000000cc  GLIBC_2.2   fopencookie
+0010ca50 g    DF .text 0000005a (GLIBC_2.0)  fopencookie
+00029410 g    DF .text 0000002d  GLIBC_2.0   __isinf
+000e6850 g    DF .text 0000004e  GLIBC_2.3.4 __mempcpy_chk
+0005ce10 g    DF .text 00000165  GLIBC_2.2   _IO_wdefault_pbackfail
+000f10c0 g    DF .text 000000b0  GLIBC_2.0   endaliasent
+00056ed0  w   DF .text 00000069  GLIBC_2.0   ftrylockfile
+00078c50  w   DF .text 00000040  GLIBC_2.3   wcstoll_l
+00023d70  w   DF .text 00000017  GLIBC_2.3   isalpha_l
+00061c60 g    DF .text 00000010  GLIBC_2.0   feof_unlocked
+00023d00 g    DF .text 00000046  GLIBC_2.0   isblank
+000b58d0  w   DF .text 0000004a  GLIBC_2.0   re_search_2
+000f9d40 g    DF .text 0000004e  GLIBC_2.0   svc_sendreply
+00023300  w   DF .text 00000084  GLIBC_2.3   uselocale
+000ce920 g    DF .text 00000040  GLIBC_2.0   getusershell
+0002ac10 g    DF .text 000000b9  GLIBC_2.0   siginterrupt
+0008f9c0 g    DF .text 0000012d  GLIBC_2.0   getgrgid
+000d3330 g    DF .text 0000007c  GLIBC_2.3.2 epoll_wait
+000d20a0  w   DF .text 000000d7  GLIBC_2.0   error
+0005af20 g    DF .text 00000111  GLIBC_2.2   fputwc
+000c1f40 g    DF .text 00000041  GLIBC_2.4   mkfifoat
+00111b80 g    DF .text 000000e7 (GLIBC_2.0)  getrpcent_r
+000d3450 g    DF .text 00000034  GLIBC_2.0   get_kernel_syms
+000ec6e0 g    DF .text 000000e4  GLIBC_2.1.2 getrpcent_r
+00058fa0  w   DF .text 000001d1  GLIBC_2.0   ftell
+000e7980 g    DF .text 0000005d  GLIBC_2.4   __read_chk
+00145800 g    DO .bss  00000200 (GLIBC_2.0)  _res
+000e02e0 g    DF .text 00000947  GLIBC_2.0   inet_ntop
+00070250 g    DF .text 000000a7  GLIBC_2.0   strncpy
+0002a060  w   DF .text 000000cf  GLIBC_2.0   signal
+000cb950 g    DF .text 00000074  GLIBC_2.0   getdomainname
+000e87c0 g    DF .text 000000a8  GLIBC_2.4   __fgetws_unlocked_chk
+000e2470 g    DF .text 00000112  GLIBC_2.2   __res_nclose
+000d36b0  w   DF .text 00000034  GLIBC_2.0   personality
+0005a0a0  w   DF .text 00000195  GLIBC_2.0   puts
+000d7020 g    DF .text 00000092  GLIBC_2.1   __iswupper_l
+000e6d70 g    DF .text 000000c2  GLIBC_2.3.4 __vsprintf_chk
+0002d480 g    DF .text 00000046  GLIBC_2.0   mbstowcs
+000228b0 g    DF .text 000007fa  GLIBC_2.1   __newlocale
+000cae30 g    DF .text 0000004d  GLIBC_2.0   getpriority
+00039210 g    DF .text 00000130  GLIBC_2.0   getsubopt
+000ca920 g    DF .text 000000a7  GLIBC_2.1   tcgetsid
+00092740  w   DF .text 000002e3  GLIBC_2.0   fork
+000569e0 g    DF .text 0000003f  GLIBC_2.0   putw
+000d1c10 g    DF .text 0000001d  GLIBC_2.0   warnx
+000d2b60 g    DF .text 0000003a  GLIBC_2.0   ioperm
+0005a7d0 g    DF .text 00000189  GLIBC_2.0   _IO_setvbuf
+000f8340 g    DF .text 00000100  GLIBC_2.0   pmap_unset
+00109590 g    DF .text 00000043  GLIBC_2.1   _dl_mcount_wrapper_check
+000d6590  w   DF .text 000000cb  GLIBC_2.0   iswspace
+00106780 g    DF .text 0000001e  GLIBC_2.1   isastream
+0005c100 g    DF .text 0000003c  GLIBC_2.2   vwscanf
+0002a4c0  w   DF .text 0000009e  GLIBC_2.0   sigprocmask
+000650e0 g    DF .text 0000004b  GLIBC_2.0   _IO_sputbackc
+0005b5a0 g    DF .text 00000122  GLIBC_2.2   fputws
+0002eea0  w   DF .text 00000030  GLIBC_2.3   strtoul_l
+00125588 g    DO .rodata       00000010  GLIBC_2.1   in6addr_loopback
+000d2910 g    DF .text 0000003a  GLIBC_2.3   listxattr
+00075090 g    DF .text 0000001c  GLIBC_2.1.1 __strchr_c
+0002e220  w   DF .text 0000006a  GLIBC_2.0   lcong48_r
+0009f550  w   DF .text 00000060  GLIBC_2.0   regfree
+000e8ff0 g    DF .text 0000002f  GLIBC_2.0   inet_netof
+000b7510  w   DF .text 00000038  GLIBC_2.0   sched_getparam
+000244a0  w   DF .text 00000023  GLIBC_2.0   gettext
+000921f0  w   DF .text 000001cd  GLIBC_2.1   waitid
+0002adb0 g    DF .text 00000060  GLIBC_2.0   sigfillset
+0005c660 g    DF .text 0000006c  GLIBC_2.2   _IO_init_wmarker
+000cd830  w   DF .text 00000157  GLIBC_2.3   futimes
+000f6860 g    DF .text 000002d3  GLIBC_2.0   callrpc
+000750b0 g    DF .text 0000001e  GLIBC_2.1.1 __strchr_g
+000cc2f0 g    DF .text 00000044  GLIBC_2.0   gtty
+00083580 g    DF .text 0000001b  GLIBC_2.0   time
+0006b890 g    DF .text 00000180  GLIBC_2.0   __libc_malloc
+0008f900 g    DF .text 000000a2  GLIBC_2.0   getgrent
+000d3130  w   DF .text 00000034  GLIBC_2.1   ntp_adjtime
+000e7e50 g    DF .text 0000003b  GLIBC_2.4   __wcsncpy_chk
+000cb5a0  w   DF .text 00000076  GLIBC_2.0   setreuid
+0002b130 g    DF .text 0000005f  GLIBC_2.0   sigorset
+00065420 g    DF .text 00000024  GLIBC_2.0   _IO_flush_all
+0008e270  w   DF .text 00000110  GLIBC_2.0   readdir_r
+0002df80 g    DF .text 0000002e  GLIBC_2.0   drand48_r
+0006ba10  w   DF .text 000001c5  GLIBC_2.0   memalign
+00050a50  w   DF .text 00000039  GLIBC_2.0   vfscanf
+0005adc0 g    DF .text 0000013c  GLIBC_2.2   fsetpos64
+0010d900 g    DF .text 0000010e (GLIBC_2.1)  fsetpos64
+000eaca0 g    DF .text 000000b0  GLIBC_2.0   endnetent
+000d0aa0 g    DF .text 000001cd  GLIBC_2.0   hsearch_r
+000e8bf0 g    DF .text 00000046  GLIBC_2.4   __stack_chk_fail
+00081910  w   DF .text 00000047  GLIBC_2.1   wcscasecmp
+000cf7e0 g    DF .text 0000016f  GLIBC_2.0   daemon
+0005f5f0 g    DF .text 0000009a  GLIBC_2.0   _IO_feof
+001004f0 g    DF .text 0000005a  GLIBC_2.1   key_setsecret
+000c20b0 g    DF .text 0000008e  GLIBC_2.0   __lxstat
+000fab50 g    DF .text 0000012a  GLIBC_2.0   svc_run
+0005d000 g    DF .text 00000093  GLIBC_2.2   _IO_wdefault_finish
+00110f90 g    DF .text 00000062 (GLIBC_2.0)  shmctl
+000786e0  w   DF .text 00000040  GLIBC_2.1   __wcstoul_l
+000d4870 g    DF .text 00000065  GLIBC_2.2   shmctl
+000d3550 g    DF .text 00000038  GLIBC_2.4   inotify_rm_watch
+00103570 g    DF .text 000000bc  GLIBC_2.3.4 xdr_quad_t
+00058280 g    DF .text 000000f8  GLIBC_2.0   _IO_fflush
+00076bd0 g    DF .text 00000218  GLIBC_2.0   __mbrtowc
+000c50a0  w   DF .text 00000034  GLIBC_2.0   unlink
+0005be00 g    DF .text 00000101  GLIBC_2.0   putchar
+000fcf40 g    DF .text 00000032  GLIBC_2.0   xdrmem_create
+000df850 g    DF .text 0000003c  GLIBC_2.0   pthread_mutex_lock
+00061fe0 g    DF .text 000000a7  GLIBC_2.1   fgets_unlocked
+000d7820 g    DF .text 000003c3  GLIBC_2.0   putspent
+000d3b80 g    DF .text 00000037  GLIBC_2.0   listen
+001036f0 g    DF .text 0000003f  GLIBC_2.1   xdr_int32_t
+000d43c0  w   DF .text 000000c5  GLIBC_2.0   msgrcv
+000ee340 g    DF .text 00000060  GLIBC_2.0   __ivaliduser
+000ec380 g    DF .text 000000a2  GLIBC_2.0   getrpcent
+000cba10  w   DF .text 00000088  GLIBC_2.0   select
+000d3d10  w   DF .text 0000006c  GLIBC_2.0   __send
+000d63f0  w   DF .text 000000cb  GLIBC_2.0   iswprint
+000c2ec0  w   DF .text 00000038  GLIBC_2.0   mkdir
+000d6a20 g    DF .text 00000090  GLIBC_2.1   __iswalnum_l
+00023e30  w   DF .text 00000015  GLIBC_2.3   ispunct_l
+000617c0 g    DF .text 00000036  GLIBC_PRIVATE __libc_fatal
+00146374 g    DO .bss  00000004  GLIBC_2.1   argp_program_version_hook
+000d47a0 g    DF .text 00000060  GLIBC_2.0   shmdt
+0006cff0 g    DF .text 00000487  GLIBC_2.0   realloc
+000c10c0  w   DF .text 000000ef  GLIBC_2.1   __pwrite64
+0002d6f0  w   DF .text 0000007f  GLIBC_2.0   setstate
+000c2770  w   DF .text 00000038  GLIBC_2.0   fstatfs
+0012754e g    DO .rodata       00000005  GLIBC_2.0   _libc_intl_domainname
+0012d518 g    DO .rodata       00000004  GLIBC_2.0   h_nerr
+000f23d0 g    DF .text 0000031c  GLIBC_2.1   if_nameindex
+00076870  w   DF .text 0000018e  GLIBC_2.0   btowc
+00072470 g    DF .text 00000054  GLIBC_2.0   __argz_stringify
+0005a980 g    DF .text 000000ac  GLIBC_2.0   _IO_ungetc
+00075a30 g    DF .text 00000022  GLIBC_2.1.1 __memset_cc
+0008e3a0 g    DF .text 00000068  GLIBC_2.0   rewinddir
+0005c620 g    DF .text 0000003f  GLIBC_2.2   _IO_adjust_wcolumn
+0002fce0  w   DF .text 0000003f  GLIBC_2.0   strtold
+000d6ab0 g    DF .text 00000092  GLIBC_2.1   __iswalpha_l
+001007e0 g    DF .text 00000068  GLIBC_2.0   xdr_key_netstres
+00111d50 g    DF .text 000000e5 (GLIBC_2.0)  getaliasent_r
+000f0fd0 g    DF .text 000000e2  GLIBC_2.1.2 getaliasent_r
+000cbce0  w   DF .text 00000065  GLIBC_2.0   fsync
+00082930 g    DF .text 0000008d  GLIBC_2.0   clock
+00075a30 g    DF .text 00000022  GLIBC_2.1.1 __memset_cg
+00106850 g    DF .text 00000063  GLIBC_2.1   putmsg
+000f9640 g    DF .text 00000083  GLIBC_2.0   xdr_replymsg
+000d41c0 g    DF .text 00000041  GLIBC_2.2.4 sockatmark
+000d5c80 g    DF .text 00000075  GLIBC_2.0   towupper
+0002b950 g    DF .text 00000267  GLIBC_2.0   abort
+0014383c g    DO .data 00000004  GLIBC_2.0   stdin
+000fc720 g    DF .text 00000068  GLIBC_2.0   xdr_u_short
+00065450 g    DF .text 000001fd  GLIBC_2.0   _IO_flush_all_linebuffered
+0002e4e0 g    DF .text 00000046  GLIBC_2.0   strtoll
+00092a84 g    DF .text 00000013  GLIBC_2.0   _exit
+00039d20 g    DF .text 00000029  GLIBC_2.1   wcstoumax
+000fa3e0 g    DF .text 00000295  GLIBC_2.2   svc_getreq_common
+0005aa40  w   DF .text 000000c9  GLIBC_2.0   vsprintf
+0002b420  w   DF .text 00000055  GLIBC_2.1   sigwaitinfo
+000d4e00  w   DF .text 00000092  GLIBC_2.2   moncontrol
+000d3f20  w   DF .text 00000037  GLIBC_2.0   socketpair
+000e12d0 g    DF .text 00000136  GLIBC_PRIVATE __res_iclose
+0002d270 g    DF .text 00000044  GLIBC_2.0   div
+00070d20  w   DF .text 0000019b  GLIBC_2.0   memchr
+00034930  w   DF .text 00000029  GLIBC_2.1   __strtod_l
+000704c0 g    DF .text 000000b3  GLIBC_2.0   strpbrk
+000ecc90 g    DF .text 0000002d  GLIBC_2.0   ether_aton
+00075c10  w   DF .text 000000bb  GLIBC_2.2   memrchr
+00023860 g    DF .text 00000037  GLIBC_2.0   tolower
+000c3680  w   DF .text 00000070  GLIBC_2.0   __read
+000d09f0  w   DF .text 00000026  GLIBC_2.0   hdestroy
+0010a0c0 g    DF .text 0000003a  GLIBC_2.0   __register_frame_info_table
+00059fc0 g    DF .text 0000008d  GLIBC_2.1   popen
+0010d310 g    DF .text 0000008a (GLIBC_2.0)  popen
+0006ce00  w   DF .text 000001e5  GLIBC_2.0   cfree
+00023c50 g    DF .text 00000028  GLIBC_2.0   _tolower
+000ee780 g    DF .text 000000a1  GLIBC_2.2   ruserok_af
+000d2630  w   DF .text 0000006f  GLIBC_2.0   step
+00024420 g    DF .text 00000049  GLIBC_2.0   __dcgettext
+000d68c0  w   DF .text 0000005d  GLIBC_2.0   towctrans
+000d2a10 g    DF .text 00000046  GLIBC_2.3   lsetxattr
+000cdda0 g    DF .text 00000071  GLIBC_2.0   setttyent
+000c3060  w   DF .text 000000e5  GLIBC_2.2   __open64
+00093790 g    DF .text 00000013  GLIBC_2.0   __bsd_getpgrp
+000934c0 g    DF .text 00000031  GLIBC_2.0   getpid
+00039d50  w   DF .text 00000079  GLIBC_2.1   getcontext
+0002a560  w   DF .text 00000038  GLIBC_2.0   kill
+00070860 g    DF .text 000000ae  GLIBC_2.0   strspn
+000df530 g    DF .text 0000003c  GLIBC_2.0   pthread_condattr_init
+00143340  w   DO .data 00000004  GLIBC_2.0   program_invocation_name
+0002d310  w   DF .text 00000095  GLIBC_2.1.1 imaxdiv
+00110de0 g    DF .text 00000040 (GLIBC_2.2)  posix_fallocate64
+000c9350 g    DF .text 00000295  GLIBC_2.3.3 posix_fallocate64
+000fa9c0 g    DF .text 0000009c  GLIBC_2.0   svcraw_create
+000b7600 g    DF .text 00000034  GLIBC_2.0   __sched_get_priority_max
+000722f0  w   DF .text 00000042  GLIBC_2.0   argz_extract
+000243e0  w   DF .text 00000015  GLIBC_2.2   bind_textdomain_codeset
+000583a0 g    DF .text 000001df  GLIBC_2.2   fgetpos
+0005abb0 g    DF .text 000001af  GLIBC_2.2   _IO_fgetpos64
+0010d4c0 g    DF .text 0000013b (GLIBC_2.0)  fgetpos
+0010d620 g    DF .text 00000184 (GLIBC_2.1)  _IO_fgetpos64
+0006fc90  w   DF .text 00000057  GLIBC_2.0   strdup
+000c4070 g    DF .text 00000022  GLIBC_2.1   creat64
+00061cc0  w   DF .text 0000002a  GLIBC_2.0   getc_unlocked
+000fac80 g    DF .text 00000043  GLIBC_2.0   svc_exit
+00088ed0 g    DF .text 00000045  GLIBC_2.0   strftime
+000e0c30 g    DF .text 000003e5  GLIBC_2.0   inet_pton
+00074fb0 g    DF .text 00000045  GLIBC_2.1.1 __strncat_g
+000613a0 g    DF .text 0000000f  GLIBC_2.2   __flbf
+000c3e10 g    DF .text 00000130  GLIBC_2.1   lockf64
+0005c3e0 g    DF .text 0000002b  GLIBC_2.2   _IO_switch_to_main_wget_area
+00101ea0 g    DF .text 0000023b  GLIBC_2.0   xencrypt
+001068c0 g    DF .text 00000046  GLIBC_2.1   putpmsg
+00143338  w   DO .data 00000008  GLIBC_2.0   tzname
+00037700 g    DF .text 0000007d  GLIBC_PRIVATE __libc_system
+001037e0 g    DF .text 00000069  GLIBC_2.1   xdr_uint16_t
+00068ec0 g    DF .text 0000014b  GLIBC_2.0   __libc_mallopt
+0002afc0  w   DF .text 000000a2  GLIBC_2.1   sysv_signal
+0002f510  w   DF .text 00000030  GLIBC_2.3   strtoll_l
+000df310 g    DF .text 00000043  GLIBC_2.0   pthread_attr_getschedparam
+000c3f80 g    DF .text 00000038  GLIBC_2.0   __dup2
+000df7c0 g    DF .text 0000003c  GLIBC_2.0   pthread_mutex_destroy
+0005b0c0  w   DF .text 000000e7  GLIBC_2.2   fgetwc
+000cac60 g    DF .text 00000074  GLIBC_2.0   vlimit
+000c2cb0  w   DF .text 00000038  GLIBC_2.0   chmod
+000cafc0  w   DF .text 00000073  GLIBC_2.0   sbrk
+00023550 g    DF .text 00000150  GLIBC_2.0   __assert_fail
+001021c0 g    DF .text 0000027a  GLIBC_2.1   clntunix_create
+00075110 g    DF .text 00000020  GLIBC_2.1.1 __strrchr_c
+00023cb0  w   DF .text 0000000b  GLIBC_2.1   __toascii_l
+000d5f10  w   DF .text 000000c9  GLIBC_2.0   iswalnum
+00029470  w   DF .text 00000011  GLIBC_2.0   finite
+000edbc0 g    DF .text 0000006a  GLIBC_2.0   ether_ntoa_r
+000ccec0 g    DF .text 000008d5  GLIBC_2.2   __getmntent_r
+00046530 g    DF .text 00000039  GLIBC_2.0   printf
+00023d50 g    DF .text 00000015  GLIBC_2.1   __isalnum_l
+000d3a50  w   DF .text 0000006c  GLIBC_2.0   __connect
+000ea960 g    DF .text 00000156  GLIBC_2.0   getnetbyname
+000cc1b0 g    DF .text 0000002b  GLIBC_2.0   mkstemp
+00075130 g    DF .text 00000033  GLIBC_2.1.1 __strrchr_g
+000c2a10 g    DF .text 00000094  GLIBC_2.1   statvfs
+000c3cc0  w   DF .text 00000038  GLIBC_2.0   flock
+000d1f40  w   DF .text 0000015c  GLIBC_2.0   error_at_line
+00060190 g    DF .text 000000f6  GLIBC_2.0   rewind
+0002d230 g    DF .text 00000031  GLIBC_2.0   llabs
+00072e50  w   DF .text 0000109f  GLIBC_2.3   strcoll_l
+001465a0 g    DO .bss  0000000c  GLIBC_2.0   _null_auth
+00082af0  w   DF .text 00000032  GLIBC_2.0   localtime_r
+00075f80 g    DF .text 0000003e  GLIBC_2.0   wcscspn
+000cace0 g    DF .text 00000150  GLIBC_2.0   vtimes
+00029490  w   DF .text 0000001e  GLIBC_2.0   copysign
+000711c0 g    DF .text 00000091  GLIBC_2.0   __stpncpy
+000f44f0 g    DF .text 00000090  GLIBC_2.5   inet6_opt_finish
+000926d0  w   DF .text 0000006c  GLIBC_2.2.6 __nanosleep
+00029840  w   DF .text 0000009a  GLIBC_2.0   modff
+000d6250  w   DF .text 000000cb  GLIBC_2.0   iswlower
+0002fc60  w   DF .text 0000003f  GLIBC_2.0   strtod
+00029ee0 g    DF .text 0000003e  GLIBC_2.0   setjmp
+000c8e50 g    DF .text 000000a4  GLIBC_2.1   __poll
+00023bb0 g    DF .text 00000048  GLIBC_2.0   isspace
+000e8870 g    DF .text 0000002b  GLIBC_2.4   __confstr_chk
+00056240 g    DF .text 00000080  GLIBC_2.0   tmpnam_r
+000d7120 g    DF .text 0000008b  GLIBC_2.1   __wctype_l
+0005b350 g    DF .text 00000179  GLIBC_2.2   fgetws
+00108ef0 g    DF .text 00000017  GLIBC_2.1   setutxent
+00023d70 g    DF .text 00000017  GLIBC_2.1   __isalpha_l
+0002fbe0  w   DF .text 0000003f  GLIBC_2.0   strtof
+00078c50  w   DF .text 00000040  GLIBC_2.1   __wcstoll_l
+000d6c70  w   DF .text 00000093  GLIBC_2.3   iswdigit_l
+000d4300 g    DF .text 000000b6  GLIBC_PRIVATE __libc_msgsnd
+00082a30 g    DF .text 00000035  GLIBC_2.0   gmtime
+00023300 g    DF .text 00000084  GLIBC_2.3   __uselocale
+000e7ef0 g    DF .text 000000e5  GLIBC_2.4   __wcsncat_chk
+000710f0 g    DF .text 00000010  GLIBC_2.0   ffs
+000f9700 g    DF .text 00000050  GLIBC_2.0   xdr_opaque_auth
+00022890  w   DF .text 0000001e  GLIBC_2.0   __ctype_get_mb_cur_max
+000d6d10 g    DF .text 00000092  GLIBC_2.1   __iswlower_l
+00029ae0  w   DF .text 00000187  GLIBC_2.0   modfl
+00072ca0 g    DF .text 0000017d  GLIBC_2.0   envz_add
+00070ab0 g    DF .text 00000112  GLIBC_2.0   strtok
+001085a0  w   DF .text 0000003b  GLIBC_2.1   getpt
+0002b480  w   DF .text 000000a0  GLIBC_2.1   sigqueue
+0002e3a0 g    DF .text 00000046  GLIBC_2.0   strtol
+00091330 g    DF .text 000000b0  GLIBC_2.0   endpwent
+00058860 g    DF .text 00000032  GLIBC_2.1   _IO_fopen
+0010cab0 g    DF .text 00000097 (GLIBC_2.0)  _IO_fopen
+00075320 g    DF .text 00000036  GLIBC_2.1.1 __strstr_cg
+000c4b90  w   DF .text 00000032  GLIBC_2.0   isatty
+000c7440 g    DF .text 000000f9  GLIBC_2.0   fts_close
+000c4470  w   DF .text 00000053  GLIBC_2.0   lchown
+000cce30  w   DF .text 00000083  GLIBC_2.0   setmntent
+000cf950  w   DF .text 0000005c  GLIBC_2.0   mmap
+000f0db0 g    DF .text 000000ca  GLIBC_2.0   endnetgrent
+000632a0 g    DF .text 0000003f  GLIBC_2.0   _IO_file_read
+000f4190 g    DF .text 00000143  GLIBC_2.3.4 setsourcefilter
+0010a570 g    DF .text 00000052  GLIBC_2.0   __register_frame
+00090c80  w   DF .text 000000d4  GLIBC_2.0   getpw
+000d8490  w   DF .text 00000226  GLIBC_2.0   fgetspent_r
+000b75d0  w   DF .text 0000002c  GLIBC_2.0   sched_yield
+00000000 g    DO *ABS* 00000000  GLIBC_PRIVATE GLIBC_PRIVATE
+0002e4e0  w   DF .text 00000046  GLIBC_2.0   strtoq
+00095810  w   DF .text 000000b6  GLIBC_2.0   glob_pattern_p
+00075bb0 g    DF .text 00000053  GLIBC_2.1.1 __strsep_1c
+00081960  w   DF .text 0000006c  GLIBC_2.1   wcsncasecmp
+00090390 g    DF .text 000001ec  GLIBC_2.1.2 getgrnam_r
+000829e0 g    DF .text 00000039  GLIBC_2.0   ctime_r
+0010ef00 g    DF .text 0000005f (GLIBC_2.0)  getgrnam_r
+00103570 g    DF .text 000000bc  GLIBC_2.3.4 xdr_u_quad_t
+0002c6b0  w   DF .text 00000088  GLIBC_2.0   clearenv
+000d7120  w   DF .text 0000008b  GLIBC_2.3   wctype_l
+000c2ab0 g    DF .text 00000098  GLIBC_2.1   fstatvfs
+0002a7f0  w   DF .text 00000063  GLIBC_2.0   sigblock
+000d4250 g    DF .text 00000058  GLIBC_2.1   __libc_sa_len
+0005f5f0  w   DF .text 0000009a  GLIBC_2.0   feof
+001465b0 g    DO .bss  00000004  GLIBC_2.1   __key_encryptsession_pk_LOCAL
+000fb820 g    DF .text 00000023  GLIBC_2.0   svcudp_create
+000d6920  w   DF .text 00000092  GLIBC_2.3   iswxdigit_l
+000df4a0 g    DF .text 00000043  GLIBC_2.0   pthread_attr_setscope
+00071e10  w   DF .text 0000015f  GLIBC_2.1.1 strchrnul
+000cc130  w   DF .text 00000034  GLIBC_2.0   swapoff
+001433fc g    DO .data 00000004 (GLIBC_2.0)  __ctype_tolower
+000cf660 g    DF .text 0000002c  GLIBC_2.0   syslog
+0002eea0  w   DF .text 00000030  GLIBC_2.1   __strtoul_l
+000c1490 g    DF .text 00000007  GLIBC_2.2   posix_spawnattr_destroy
+0010d7d0 g    DF .text 00000110 (GLIBC_2.0)  fsetpos
+00058e40 g    DF .text 0000013e  GLIBC_2.2   fsetpos
+000c0fd0  w   DF .text 000000ef  GLIBC_2.1   pread64
+000c37e0  w   DF .text 000000f7  GLIBC_2.4   eaccess
+000f3b40 g    DF .text 0000001a  GLIBC_2.3.3 inet6_option_alloc
+00085b80 g    DF .text 00000048  GLIBC_2.0   dysize
+000c4de0  w   DF .text 00000038  GLIBC_2.0   symlink
+001438c0 g    DO .data 00000050  GLIBC_2.0   _IO_stdout_
+0005c440 g    DF .text 00000039  GLIBC_2.2   _IO_wdefault_uflow
+000d7300 g    DF .text 000000a2  GLIBC_2.0   getspent
+000df220 g    DF .text 00000043  GLIBC_2.0   pthread_attr_setdetachstate
+000d27c0 g    DF .text 00000040  GLIBC_2.3   fgetxattr
+0002dab0  w   DF .text 00000104  GLIBC_2.0   srandom_r
+000cdb00  w   DF .text 00000038  GLIBC_2.0   truncate
+0006b590 g    DF .text 000002fd  GLIBC_2.0   __libc_calloc
+00023b10 g    DF .text 00000048  GLIBC_2.0   isprint
+000c9120 g    DF .text 00000046  GLIBC_2.2   posix_fadvise
+00071410  w   DF .text 00000046  GLIBC_2.0   memccpy
+00092c40 g    DF .text 0000017c  GLIBC_2.0   execle
+000d26a0 g    DF .text 000000e8  GLIBC_2.2   getloadavg
+00088f20 g    DF .text 00000045  GLIBC_2.2   wcsftime
+000ca2a0 g    DF .text 0000006c  GLIBC_2.0   cfsetispeed
+000e4400 g    DF .text 00000228  GLIBC_2.0   __nss_configure_lookup
+0002d2c0 g    DF .text 00000044  GLIBC_2.0   ldiv
+000fc3a0 g    DF .text 0000000a  GLIBC_2.0   xdr_void
+000edb90 g    DF .text 0000002d  GLIBC_2.0   ether_ntoa
+000441b0 g    DF .text 000000fe  GLIBC_2.0   parse_printf_format
+0005fc60  w   DF .text 000000e7  GLIBC_2.0   fgetc
+000d38a0 g    DF .text 00000040  GLIBC_2.5   tee
+00100770 g    DF .text 0000006c  GLIBC_2.0   xdr_key_netstarg
+00071ba0 g    DF .text 000000e3  GLIBC_2.0   strfry
+0005aa40 g    DF .text 000000c9  GLIBC_2.0   _IO_vsprintf
+000cbdf0 g    DF .text 00000057  GLIBC_2.0   reboot
+00111e60 g    DF .text 0000005f (GLIBC_2.0)  getaliasbyname_r
+000f1490 g    DF .text 0000017d  GLIBC_2.1.2 getaliasbyname_r
+0002dea0 g    DF .text 00000037  GLIBC_2.0   jrand48
+00111450 g    DF .text 00000066 (GLIBC_2.0)  gethostbyname_r
+000e9fd0 g    DF .text 0000029e  GLIBC_2.1.2 gethostbyname_r
+00093370 g    DF .text 00000145  GLIBC_2.0   execlp
+00071b60 g    DF .text 0000003f  GLIBC_2.0   swab
+00056f40 g    DF .text 0000002f  GLIBC_2.0   _IO_funlockfile
+00056e70 g    DF .text 0000004b  GLIBC_2.0   _IO_flockfile
+00075860 g    DF .text 00000072  GLIBC_2.1.1 __strsep_2c
+0008e420 g    DF .text 0000006c  GLIBC_2.0   seekdir
+00023ce0  w   DF .text 00000015  GLIBC_2.3   isblank_l
+00023cc0  w   DF .text 00000011  GLIBC_2.1   __isascii_l
+0008eea0 g    DF .text 00000024  GLIBC_2.2   alphasort64
+000f8740 g    DF .text 000001a6  GLIBC_2.0   pmap_getport
+0010ed30 g    DF .text 00000024 (GLIBC_2.1)  alphasort64
+00039e40  w   DF .text 00000065  GLIBC_2.1   makecontext
+000cbd80 g    DF .text 00000065  GLIBC_2.0   fdatasync
+00101320 g    DF .text 000001bd  GLIBC_2.1   authdes_getucred
+000cdb80 g    DF .text 00000063  GLIBC_2.1   truncate64
+000d6db0 g    DF .text 00000092  GLIBC_2.1   __iswgraph_l
+00023e30 g    DF .text 00000015  GLIBC_2.1   __ispunct_l
+00039cc0 g    DF .text 00000029  GLIBC_2.1   strtoumax
+000d9740  w   DF .text 0000018d  GLIBC_2.1   argp_failure
+00071260 g    DF .text 00000062  GLIBC_2.0   __strcasecmp
+00050a50 g    DF .text 00000039  GLIBC_2.0   __vfscanf
+000585a0  w   DF .text 00000171  GLIBC_2.0   fgets
+000d67d0 g    DF .text 0000006e  GLIBC_2.0   __iswctype
+00111640 g    DF .text 000000e5 (GLIBC_2.0)  getnetent_r
+000eabb0 g    DF .text 000000ed  GLIBC_2.1.2 getnetent_r
+000c1540 g    DF .text 0000001c  GLIBC_2.2   posix_spawnattr_setflags
+00110920 g    DF .text 00000032 (GLIBC_2.3.3) sched_setaffinity
+000b7750 g    DF .text 00000144  GLIBC_2.3.4 sched_setaffinity
+00060590  w   DF .text 0000003c  GLIBC_2.0   vscanf
+00090fa0 g    DF .text 0000012d  GLIBC_2.0   getpwnam
+000f3b60 g    DF .text 0000006b  GLIBC_2.3.3 inet6_option_append
+0006b590  w   DF .text 000002fd  GLIBC_2.0   calloc
+0002e530 g    DF .text 00000045 (GLIBC_2.0)  __strtouq_internal
+00093500  w   DF .text 00000008  GLIBC_2.0   getppid
+001275a5 g    DO .rodata       00000012  GLIBC_2.0   _nl_default_dirname
+001067a0 g    DF .text 00000060  GLIBC_2.1   getmsg
+0005c7a0 g    DF .text 00000038  GLIBC_2.2   _IO_unsave_wmarkers
+00109230 g    DF .text 00000353  GLIBC_PRIVATE _dl_addr
+000cfaa0  w   DF .text 00000070  GLIBC_2.0   msync
+00065070 g    DF .text 00000042  GLIBC_2.0   _IO_init
+000297a0 g    DF .text 0000000f  GLIBC_2.1   __signbit
+000c96c0 g    DF .text 00000022  GLIBC_2.6   futimens
+00056ce0 g    DF .text 0000018f  GLIBC_2.4   renameat
+00082800  w   DF .text 0000012d  GLIBC_2.0   asctime_r
+00023250  w   DF .text 00000088  GLIBC_2.3   freelocale
+0006ff50 g    DF .text 000000af  GLIBC_2.0   strlen
+0002d770  w   DF .text 00000086  GLIBC_2.0   initstate
+000e7fe0 g    DF .text 0000002b  GLIBC_2.4   __wmemset_chk
+0005a980  w   DF .text 000000ac  GLIBC_2.0   ungetc
+00075ef0 g    DF .text 00000021  GLIBC_2.0   wcschr
+000238e0 g    DF .text 00000048  GLIBC_2.0   isxdigit
+000ed480 g    DF .text 00000705  GLIBC_2.0   ether_line
+00064310 g    DF .text 00000047  GLIBC_2.1   _IO_file_init
+0005cd20 g    DF .text 000000e7  GLIBC_2.2   __wuflow
+000c3d00 g    DF .text 00000108  GLIBC_2.0   lockf
+001433f4 g    DO .data 00000004 (GLIBC_2.0)  __ctype_b
+0010e480 g    DF .text 0000006f (GLIBC_2.0)  _IO_file_init
+000fed10 g    DF .text 000000ae  GLIBC_2.1   xdr_authdes_cred
+000d67d0  w   DF .text 0000006e  GLIBC_2.0   iswctype
+000d03a0 g    DF .text 00000063  GLIBC_2.0   qecvt
+00075a00 g    DF .text 00000022  GLIBC_2.1.1 __memset_gg
+0010d410 g    DF .text 000000a2 (GLIBC_2.0)  tmpfile
+000f0d30 g    DF .text 00000071  GLIBC_PRIVATE __internal_setnetgrent
+00076b80 g    DF .text 00000048  GLIBC_2.0   __mbrlen
+00056020 g    DF .text 000000a2  GLIBC_2.1   tmpfile
+00103850 g    DF .text 00000068  GLIBC_2.1   xdr_int8_t
+000d69c0 g    DF .text 0000005d  GLIBC_2.1   __towupper_l
+000d5660  w   DF .text 000004ec  GLIBC_2.2.3 sprofil
+000d36f0 g    DF .text 00000038  GLIBC_2.2.1 pivot_root
+00072910 g    DF .text 0000007a  GLIBC_2.0   envz_entry
+000f57a0 g    DF .text 000000be  GLIBC_2.0   xdr_authunix_parms
+000fa0b0 g    DF .text 0000009e  GLIBC_2.0   xprt_unregister
+001434c0 g    DO .data 00000098  GLIBC_2.1   _IO_2_1_stdout_
+000228b0  w   DF .text 000007fa  GLIBC_2.3   newlocale
+000ef700 g    DF .text 000005f9  GLIBC_2.2   rexec_af
+000d12d0  w   DF .text 000002bf  GLIBC_2.0   tsearch
+000f1340 g    DF .text 0000012d  GLIBC_2.0   getaliasbyname
+000f9f10 g    DF .text 0000004e  GLIBC_2.0   svcerr_progvers
+00023e50  w   DF .text 00000017  GLIBC_2.3   isspace_l
+00072340  w   DF .text 00000124  GLIBC_2.0   argz_insert
+00075970 g    DF .text 00000031  GLIBC_2.1.1 __memcpy_c
+0002a130  w   DF .text 0000008a  GLIBC_2.0   gsignal
+000f4450 g    DF .text 00000048  GLIBC_2.5   inet6_opt_get_val
+001113e0 g    DF .text 00000063 (GLIBC_2.0)  gethostbyname2_r
+0002cff0 g    DF .text 00000057  GLIBC_2.1.3 __cxa_atexit
+000e9d20 g    DF .text 000002ac  GLIBC_2.1.2 gethostbyname2_r
+000c11b0 g    DF .text 00000035  GLIBC_2.2   posix_spawn_file_actions_init
+000685d0  w   DF .text 00000277  GLIBC_2.0   malloc_stats
+000d3730  w   DF .text 00000046  GLIBC_2.0   prctl
+00061350 g    DF .text 0000000f  GLIBC_2.2   __fwriting
+000cecf0 g    DF .text 00000023  GLIBC_2.0   setlogmask
+000758e0 g    DF .text 00000086  GLIBC_2.1.1 __strsep_3c
+000d72a0 g    DF .text 0000005d  GLIBC_2.1   __towctrans_l
+000fc890 g    DF .text 0000001a  GLIBC_2.0   xdr_enum
+001419b0 g    DO .data.rel.ro  00000014  GLIBC_2.0   h_errlist
+00061ed0 g    DF .text 0000005b  GLIBC_2.1   fread_unlocked
+00074cd0 g    DF .text 00000033  GLIBC_2.1.1 __memcpy_g
+000d38e0 g    DF .text 00000034  GLIBC_2.4   unshare
+000caf70  w   DF .text 00000044  GLIBC_2.0   brk
+000d3d10  w   DF .text 0000006c  GLIBC_2.0   send
+00023e10  w   DF .text 00000017  GLIBC_2.3   isprint_l
+00085b00  w   DF .text 0000003a  GLIBC_2.0   setitimer
+000d68c0 g    DF .text 0000005d  GLIBC_2.1   __towctrans
+001416a0 g    DO .data.rel.ro  00000080 (GLIBC_2.0)  sys_sigabbrev
+00039dd0  w   DF .text 00000066  GLIBC_2.0   setcontext
+001416a0 g    DO .data.rel.ro  00000100 (GLIBC_2.1)  sys_sigabbrev
+001416a0 g    DO .data.rel.ro  00000104  GLIBC_2.3.3 sys_sigabbrev
+000f3830 g    DF .text 000000ad  GLIBC_2.3.3 inet6_option_next
+0002ad60 g    DF .text 0000004d  GLIBC_2.0   sigemptyset
+000d7020  w   DF .text 00000092  GLIBC_2.3   iswupper_l
+00109e30 g    DF .text 0000001f  GLIBC_PRIVATE _dl_sym
+000cefd0 g    DF .text 00000085  GLIBC_2.0   openlog
+000b9d90 g    DF .text 0000077f  GLIBC_2.0   getaddrinfo
+00065650 g    DF .text 0000006a  GLIBC_2.0   _IO_init_marker
+00061cf0 g    DF .text 0000003d  GLIBC_2.0   getchar_unlocked
+000e3890 g    DF .text 0000011b  GLIBC_PRIVATE __res_maybe_init
+000d24e0 g    DF .text 000000cc  GLIBC_2.0   dirname
+00017b50 g    DF .text 00000016  GLIBC_PRIVATE __gconv_get_alias_db
+00070f70 g    DF .text 00000056  GLIBC_2.0   memset
+00022600 g    DF .text 000001a2  GLIBC_2.2   localeconv
+00022600 g    DF .text 000001a2 (GLIBC_2.0)  localeconv
+000ca210 g    DF .text 00000010  GLIBC_2.0   cfgetospeed
+00074d30 g    DF .text 0000002f  GLIBC_2.1.1 __memset_ccn_by2
+000cb490  w   DF .text 00000103  GLIBC_2.0   writev
+00066370 g    DF .text 000000e2  GLIBC_2.0   _IO_default_xsgetn
+00023930 g    DF .text 00000046  GLIBC_2.0   isalnum
+00074d10 g    DF .text 0000001d  GLIBC_2.1.1 __memset_ccn_by4
+00106a10  w   DF .text 00000051  GLIBC_2.0   setutent
+000f9370 g    DF .text 00000125  GLIBC_2.0   _seterr_reply
+0005c500 g    DF .text 00000079  GLIBC_2.2   _IO_switch_to_wget_mode
+000f4820 g    DF .text 00000047  GLIBC_2.5   inet6_rth_add
+00061cc0  w   DF .text 0000002a  GLIBC_2.1   fgetc_unlocked
+0005bfb0 g    DF .text 0000003b  GLIBC_2.2   swprintf
+000d1ad0 g    DF .text 0000001d  GLIBC_2.0   warn
+0005fd70 g    DF .text 000000f2  GLIBC_2.0   getchar
+00106d90  w   DF .text 00000068  GLIBC_2.0   getutid
+0001f6a0 g    DF .text 00000016  GLIBC_PRIVATE __gconv_get_cache
+000958d0 g    DF .text 00001859  GLIBC_2.0   glob
+00070910 g    DF .text 00000192  GLIBC_2.0   strstr
+000d46d0 g    DF .text 00000049  GLIBC_2.3.3 semtimedop
+0002ccf0 g    DF .text 00000035  GLIBC_2.0   __secure_getenv
+00077aa0  w   DF .text 00000075  GLIBC_2.1   wcsnlen
+00077ed0 g    DF .text 0000003e  GLIBC_2.0   __wcstof_internal
+0006fa80 g    DF .text 000000ae  GLIBC_2.0   strcspn
+000ca870 g    DF .text 00000075  GLIBC_2.0   tcsendbreak
+0008e4a0 g    DF .text 0000000b  GLIBC_2.0   telldir
+00023a70 g    DF .text 00000048  GLIBC_2.0   islower
+000c9670 g    DF .text 00000044  GLIBC_2.6   utimensat
+000cfd80 g    DF .text 000000c4  GLIBC_2.0   fcvt
+000320d0  w   DF .text 00000029  GLIBC_2.1   __strtof_l
+00016520 g    DF .text 0000001d  GLIBC_2.0   __errno_location
+000c5230  w   DF .text 00000034  GLIBC_2.0   rmdir
+0005a680 g    DF .text 00000127  GLIBC_2.0   _IO_setbuffer
+000658a0 g    DF .text 00000008  GLIBC_2.2   _IO_iter_file
+000d3a10 g    DF .text 00000037  GLIBC_2.0   bind
+0002f510  w   DF .text 00000030  GLIBC_2.1   __strtoll_l
+000ca390 g    DF .text 00000243  GLIBC_2.0   tcsetattr
+0005fb40 g    DF .text 000000fa  GLIBC_2.0   fseek
+000fce60 g    DF .text 0000003e  GLIBC_2.0   xdr_float
+000b5b70 g    DF .text 000003bc  GLIBC_2.0   confstr
+000c40a0  w   DF .text 00000034  GLIBC_2.0   chdir
+000c3060  w   DF .text 000000e5  GLIBC_2.1   open64
+000f46c0 g    DF .text 00000019  GLIBC_2.5   inet6_rth_segments
+000c3680  w   DF .text 00000070  GLIBC_2.0   read
+0006e930 g    DF .text 00000094  GLIBC_2.0   muntrace
+0005b200 g    DF .text 000000f2  GLIBC_2.2   getwchar
+00070ec0 g    DF .text 0000001e  GLIBC_2.0   memcmp
+000f18f0 g    DF .text 00000913  GLIBC_2.1   getnameinfo
+000cb800  w   DF .text 00000026  GLIBC_2.0   getpagesize
+000fe3e0 g    DF .text 000000b9  GLIBC_2.1   xdr_sizeof
+00016690 g    DF .text 000001fe (GLIBC_2.0)  __moddi3
+00024470  w   DF .text 00000022  GLIBC_2.0   dgettext
+00074de0 g    DF .text 00000018  GLIBC_2.1.1 __strlen_g
+00058fa0 g    DF .text 000001d1  GLIBC_2.0   _IO_ftell
+0005bb30 g    DF .text 000000f6  GLIBC_2.2   putwc
+000f8180 g    DF .text 000000e9  GLIBC_2.0   getrpcport
+000658b0 g    DF .text 0000004d  GLIBC_2.2   _IO_list_lock
+000465b0 g    DF .text 00000034  GLIBC_2.0   _IO_sprintf
+000e79e0 g    DF .text 00000042  GLIBC_2.4   __pread_chk
+000cfbe0 g    DF .text 00000038  GLIBC_2.0   mlock
+0008ffe0 g    DF .text 000000b0  GLIBC_2.0   endgrent
+0006fcf0  w   DF .text 00000064  GLIBC_2.0   strndup
+000d3490 g    DF .text 00000046  GLIBC_2.0   init_module
+000cf630 g    DF .text 0000002b  GLIBC_2.4   __syslog_chk
+000826e0 g    DF .text 0000011b  GLIBC_2.0   asctime
+000f5d10 g    DF .text 00000084  GLIBC_2.0   clnt_sperrno
+000fd990 g    DF .text 0000016a  GLIBC_2.0   xdrrec_skiprecord
+00077400  w   DF .text 00000362  GLIBC_2.0   mbsnrtowcs
+00072e50 g    DF .text 0000109f  GLIBC_2.1   __strcoll_l
+000e39f0 g    DF .text 000000ae  GLIBC_PRIVATE __gai_sigqueue
+000238a0 g    DF .text 00000037  GLIBC_2.0   toupper
+000eb570 g    DF .text 000000a8  GLIBC_2.0   setprotoent
+000934c0 g    DF .text 00000031  GLIBC_2.0   __getpid
+0002d4d0 g    DF .text 000000b9  GLIBC_2.0   mbtowc
+0010a030 g    DF .text 00000084  GCC_3.0     __register_frame_info_table_bases
+00100b60 g    DF .text 000000f9  GLIBC_2.1   netname2user
+00023c80 g    DF .text 00000028  GLIBC_2.0   _toupper
+000d3b40  w   DF .text 00000037  GLIBC_2.0   getsockopt
+000fb520 g    DF .text 00000245  GLIBC_2.0   svctcp_create
+0005cf80 g    DF .text 00000080  GLIBC_2.2   _IO_wsetb
+000593f0  w   DF .text 00000278  GLIBC_2.0   getdelim
+0008f8c0 g    DF .text 0000003f  GLIBC_2.0   setgroups
+000f5fe0 g    DF .text 0000009a  GLIBC_2.0   clnt_perrno
+000d2aa0 g    DF .text 00000046  GLIBC_2.3   setxattr
+0010b930 g    DF .text 00000096  GCC_3.0     _Unwind_Find_FDE
+0002dfb0  w   DF .text 000000a0  GLIBC_2.0   erand48_r
+0002dde0 g    DF .text 00000034  GLIBC_2.0   lrand48
+00064d10 g    DF .text 0000007a  GLIBC_2.0   _IO_doallocbuf
+000c4650 g    DF .text 0000026a  GLIBC_2.0   ttyname
+00144aa4  w   DO .bss  00000004  GLIBC_2.0   ___brk_addr
+001089b0 g    DF .text 000000d5  GLIBC_2.1   grantpt
+000df190 g    DF .text 0000003c  GLIBC_2.1   pthread_attr_init
+00070fd0 g    DF .text 00000044  GLIBC_2.1   mempcpy
+000df150 g    DF .text 0000003c (GLIBC_2.0)  pthread_attr_init
+000dfe90 g    DF .text 00000155  GLIBC_2.0   herror
+000b7340 g    DF .text 00000049  GLIBC_2.0   getopt
+00077c40 g    DF .text 00000046  GLIBC_2.0   wcstoul
+000e78d0 g    DF .text 000000a8  GLIBC_2.4   __fgets_unlocked_chk
+001081b0  w   DF .text 000000f9  GLIBC_2.0   utmpname
+00093b00 g    DF .text 00000149  GLIBC_2.0   getlogin_r
+00023db0  w   DF .text 00000017  GLIBC_2.3   isdigit_l
+00046dd0  w   DF .text 00003e13  GLIBC_2.2   vfwprintf
+000cce30 g    DF .text 00000083  GLIBC_2.2   __setmntent
+0005a370 g    DF .text 00000100  GLIBC_2.0   _IO_seekoff
+000ca7f0 g    DF .text 00000032  GLIBC_2.0   tcflow
+000d0cc0 g    DF .text 000000d4  GLIBC_2.0   hcreate_r
+00077d30  w   DF .text 00000046  GLIBC_2.0   wcstouq
+0005c480 g    DF .text 0000007e  GLIBC_2.2   _IO_wdoallocbuf
+000efd00 g    DF .text 0000003e  GLIBC_2.0   rexec
+000d4490 g    DF .text 00000061  GLIBC_2.0   msgget
+0005c0c0 g    DF .text 00000034  GLIBC_2.2   fwscanf
+00103770 g    DF .text 00000069  GLIBC_2.1   xdr_int16_t
+000e7bf0 g    DF .text 00000034  GLIBC_2.4   __getcwd_chk
+000c2d60 g    DF .text 0000015a  GLIBC_2.4   fchmodat
+00072990 g    DF .text 0000007a  GLIBC_2.0   envz_strip
+001461a8 g    DO .bss  00000004  GLIBC_PRIVATE _dl_open_hook
+000c3f80  w   DF .text 00000038  GLIBC_2.0   dup2
+0005f550 g    DF .text 00000085  GLIBC_2.0   clearerr
+00144a94  w   DO .bss  00000004  GLIBC_2.0   environ
+000eea20 g    DF .text 00000b7b  GLIBC_2.2   rcmd_af
+000f9c50 g    DF .text 00000039  GLIBC_2.2.3 __rpc_thread_svc_max_pollfd
+00092670  w   DF .text 00000055  GLIBC_2.0   pause
+0002c740  w   DF .text 000000fe  GLIBC_2.0   unsetenv
+0002dd00 g    DF .text 00000052  GLIBC_2.0   rand_r
+0010c980 g    DF .text 0000003d (GLIBC_2.0)  atexit
+00066d30 g    DF .text 0000003f  GLIBC_2.0   _IO_str_init_static
+00029470 g    DF .text 00000011  GLIBC_2.0   __finite
+00083540  w   DF .text 0000003c  GLIBC_2.0   timelocal
+000724d0  w   DF .text 000000a5  GLIBC_2.0   argz_add_sep
+000fdd10 g    DF .text 0000006b  GLIBC_2.0   xdr_pointer
+00076a00 g    DF .text 0000015e  GLIBC_2.0   wctob
+00029f60  w   DF .text 00000064  GLIBC_2.0   longjmp
+000c2180 g    DF .text 0000003f (GLIBC_2.1)  __fxstat64
+00086250 g    DF .text 0000004a  GLIBC_2.0   strptime
+00062f30 g    DF .text 000001e4  GLIBC_2.1   _IO_file_xsputn
+000c2180 g    DF .text 0000003f  GLIBC_2.2   __fxstat64
+0010dac0 g    DF .text 000002a5 (GLIBC_2.0)  _IO_file_xsputn
+000f6080 g    DF .text 00000395  GLIBC_2.0   clnt_sperror
+000e7140 g    DF .text 000000f2  GLIBC_2.3.4 __vprintf_chk
+000d3130 g    DF .text 00000034  GLIBC_2.0   __adjtimex
+000d3ea0  w   DF .text 00000037  GLIBC_2.0   shutdown
+00106910 g    DF .text 00000022  GLIBC_2.1   fattach
+00029f20 g    DF .text 00000036  GLIBC_2.0   _setjmp
+00060650  w   DF .text 000000f7  GLIBC_2.0   vsnprintf
+000c8e50  w   DF .text 000000a4  GLIBC_2.0   poll
+0006bcb0  w   DF .text 0000018c  GLIBC_2.0   malloc_get_state
+00106800 g    DF .text 00000046  GLIBC_2.1   getpmsg
+00059690 g    DF .text 00000047  GLIBC_2.0   _IO_getline
+00108ea0 g    DF .text 00000045  GLIBC_2.1   ptsname
+00092b00 g    DF .text 000000f5  GLIBC_2.0   fexecve
+000afff0  w   DF .text 0000013a  GLIBC_2.0   re_comp
+000f6420 g    DF .text 00000044  GLIBC_2.0   clnt_perror
+000d0340 g    DF .text 0000005e  GLIBC_2.0   qgcvt
+000f9d90 g    DF .text 00000042  GLIBC_2.0   svcerr_noproc
+00077b50 g    DF .text 00000045  GLIBC_2.0   __wcstol_internal
+000656f0 g    DF .text 00000011  GLIBC_2.0   _IO_marker_difference
+000e7080 g    DF .text 000000a8  GLIBC_2.3.4 __fprintf_chk
+000713a0 g    DF .text 00000069  GLIBC_2.1   __strncasecmp_l
+0002ae10 g    DF .text 0000006a  GLIBC_2.0   sigaddset
+00055d10 g    DF .text 00000034  GLIBC_2.0   _IO_sscanf
+000829c0 g    DF .text 0000001b  GLIBC_2.0   ctime
+0010bc30 g    DF .text 0000007b  GLIBC_2.0   __frame_state_for
+000d6660  w   DF .text 000000cb  GLIBC_2.0   iswupper
+000f9ec0 g    DF .text 00000042  GLIBC_2.0   svcerr_noprog
+00065880 g    DF .text 00000007  GLIBC_2.2   _IO_iter_end
+000e7d50 g    DF .text 0000003e  GLIBC_2.4   __wmemcpy_chk
+0008fb10 g    DF .text 0000012d  GLIBC_2.0   getgrnam
+000d3130  w   DF .text 00000034  GLIBC_2.0   adjtimex
+000df890 g    DF .text 0000003c  GLIBC_2.0   pthread_mutex_unlock
+000cb910 g    DF .text 00000038  GLIBC_2.0   sethostname
+00065980 g    DF .text 00000070  GLIBC_2.0   _IO_setb
+000c0fd0  w   DF .text 000000ef  GLIBC_2.1   __pread64
+0006dc80 g    DF .text 000000f8  GLIBC_2.0   mcheck
+00023ce0 g    DF .text 00000015  GLIBC_2.1   __isblank_l
+000fdd80 g    DF .text 000000df  GLIBC_2.0   xdr_reference
+0010f0d0 g    DF .text 0000005f (GLIBC_2.0)  getpwuid_r
+000916e0 g    DF .text 000001ec  GLIBC_2.1.2 getpwuid_r
+000ec7d0 g    DF .text 000000b0  GLIBC_2.0   endrpcent
+00100ac0 g    DF .text 00000091  GLIBC_2.1   netname2host
+000e9230 g    DF .text 00000282  GLIBC_2.0   inet_network
+0002c610 g    DF .text 00000091  GLIBC_2.0   putenv
+0007ffb0 g    DF .text 00000100  GLIBC_2.0   wcswidth
+00023ef0  w   DF .text 0000002c  GLIBC_2.3   isctype
+000f8440 g    DF .text 0000013a  GLIBC_2.0   pmap_set
+00111170 g    DF .text 0000003c (GLIBC_2.0)  pthread_cond_broadcast
+000c4410  w   DF .text 00000053  GLIBC_2.0   fchown
+000df570 g    DF .text 0000003c  GLIBC_2.3.2 pthread_cond_broadcast
+00028ab0 g    DF .text 00000172  GLIBC_2.0   catopen
+000791a0  w   DF .text 00000040  GLIBC_2.1   __wcstoull_l
+00000000 g    DO *ABS* 00000000  GLIBC_2.0   GLIBC_2.0
+000fc980 g    DF .text 00000029  GLIBC_2.0   xdr_netobj
+000d42b0 g    DF .text 00000047  GLIBC_2.0   ftok
+00064a40 g    DF .text 000001b2  GLIBC_2.0   _IO_link_in
+00000000 g    DO *ABS* 00000000  GLIBC_2.1   GLIBC_2.1
+00044110  w   DF .text 00000097  GLIBC_2.0   register_printf_function
+00029e40 g    DF .text 00000035  GLIBC_2.0   __sigsetjmp
+00000000 g    DO *ABS* 00000000  GLIBC_2.2   GLIBC_2.2
+000710f0 g    DF .text 00000010  GLIBC_2.0   __ffs
+00143840 g    DO .data 00000004  GLIBC_2.0   stdout
+000cde20 g    DF .text 0000078d  GLIBC_2.0   getttyent
+000e8f90 g    DF .text 0000005c  GLIBC_2.0   inet_makeaddr
+00000000 g    DO *ABS* 00000000  GLIBC_2.3   GLIBC_2.3
+00144aa4 g    DO .bss  00000004  GLIBC_2.0   __curbrk
+00000000 g    DO *ABS* 00000000  GLIBC_2.4   GLIBC_2.4
+00000000 g    DO *ABS* 00000000  GLIBC_2.5   GLIBC_2.5
+000e94e0 g    DF .text 00000169  GLIBC_2.0   gethostbyaddr
+0010d310 g    DF .text 0000008a (GLIBC_2.0)  _IO_popen
+00000000 g    DO *ABS* 00000000  GLIBC_2.6   GLIBC_2.6
+000d2320  w   DF .text 0000001a  GLIBC_2.0   get_phys_pages
+00059fc0 g    DF .text 0000008d  GLIBC_2.1   _IO_popen
+000dd1e0  w   DF .text 0000001d  GLIBC_2.1   argp_help
+0005f790 g    DF .text 000000f6  GLIBC_2.0   fputc
+00143400 g    DO .data 00000004 (GLIBC_2.0)  __ctype_toupper
+001114c0 g    DF .text 000000e5 (GLIBC_2.0)  gethostent_r
+00065740 g    DF .text 00000079  GLIBC_2.0   _IO_seekmark
+000ea340 g    DF .text 000000ed  GLIBC_2.1.2 gethostent_r
+000d70c0 g    DF .text 0000005d  GLIBC_2.1   __towlower_l
+00029690  w   DF .text 00000072  GLIBC_2.0   frexp
+00055ef0 g    DF .text 0000012e  GLIBC_2.0   psignal
+000d1be0 g    DF .text 00000023  GLIBC_2.0   verrx
+00093c70 g    DF .text 00000022  GLIBC_2.0   setlogin
+000f05f0 g    DF .text 000001b3  GLIBC_PRIVATE __internal_getnetgrent_r
+00061040 g    DF .text 000000f8  GLIBC_2.1   fseeko64
+00142a00 g    DO .data.rel.ro  00000054  GLIBC_2.0   _IO_file_jumps
+0010ed60 g    DF .text 00000024 (GLIBC_2.1)  versionsort64
+0008eed0 g    DF .text 00000024  GLIBC_2.2   versionsort64
+000d2840 g    DF .text 00000038  GLIBC_2.3   fremovexattr
+000e7d00 g    DF .text 00000042  GLIBC_2.4   __wcscpy_chk
+0006ae90 g    DF .text 000000fc  GLIBC_2.0   __libc_valloc
+00065130 g    DF .text 0000004b  GLIBC_2.0   _IO_sungetc
+000d3bc0  w   DF .text 0000006c  GLIBC_2.0   recv
+000f8050 g    DF .text 0000002d  GLIBC_2.0   _rpc_dtablesize
+000d3230 g    DF .text 0000003a  GLIBC_2.0   create_module
+000937d0 g    DF .text 00000034  GLIBC_2.0   getsid
+000cc170 g    DF .text 0000003d  GLIBC_2.0   mktemp
+000e0160 g    DF .text 00000172  GLIBC_2.0   inet_addr
+000cab50  w   DF .text 00000038  GLIBC_2.0   getrusage
+00061dc0 g    DF .text 000000ec  GLIBC_2.0   _IO_peekc_locked
+000656c0 g    DF .text 00000028  GLIBC_2.0   _IO_remove_marker
+000e8b50 g    DF .text 00000050  GLIBC_2.4   __mbstowcs_chk
+00143328  w   DO .data 00000004  GLIBC_2.0   __malloc_hook
+00023e50 g    DF .text 00000017  GLIBC_2.1   __isspace_l
+000c8740 g    DF .text 0000070d  GLIBC_2.0   fts_read
+000d6d10  w   DF .text 00000092  GLIBC_2.3   iswlower_l
+000d6320  w   DF .text 000000cb  GLIBC_2.0   iswgraph
+000cc6d0 g    DF .text 000000d5  GLIBC_2.0   getfsspec
+0002e490 g    DF .text 00000045  GLIBC_2.0   __strtoll_internal
+000cc250 g    DF .text 00000051  GLIBC_2.0   ualarm
+00058b90  w   DF .text 00000149  GLIBC_2.0   fputs
+000d3780 g    DF .text 00000046  GLIBC_2.0   query_module
+000c1250 g    DF .text 00000028  GLIBC_2.2   posix_spawn_file_actions_destroy
+00070bd0  w   DF .text 00000104  GLIBC_2.0   strtok_r
+000ea430 g    DF .text 000000b0  GLIBC_2.0   endhostent
+00023e10 g    DF .text 00000017  GLIBC_2.1   __isprint_l
+000df680 g    DF .text 00000043  GLIBC_2.3.2 pthread_cond_wait
+00111280 g    DF .text 00000043 (GLIBC_2.0)  pthread_cond_wait
+00072260 g    DF .text 00000088  GLIBC_2.0   argz_delete
+0005c8c0 g    DF .text 00000053  GLIBC_2.2   __woverflow
+000fc420 g    DF .text 00000065  GLIBC_2.0   xdr_u_long
+000e7dc0 g    DF .text 0000003e  GLIBC_2.4   __wmempcpy_chk
+00094a90  w   DF .text 000001f5  GLIBC_2.0   fpathconf
+00023d90  w   DF .text 00000015  GLIBC_2.3   iscntrl_l
+000a2230  w   DF .text 000000a7  GLIBC_2.0   regerror
+00070000 g    DF .text 0000009d  GLIBC_2.0   strnlen
+0002de20 g    DF .text 00000037  GLIBC_2.0   nrand48
+00111000 g    DF .text 000000e5 (GLIBC_2.0)  getspent_r
+00076830  w   DF .text 00000034  GLIBC_2.2   wmempcpy
+000d7c00 g    DF .text 000000e2  GLIBC_2.1.2 getspent_r
+0014636c g    DO .bss  00000004  GLIBC_2.1   argp_program_bug_address
+000c3760  w   DF .text 0000003a  GLIBC_2.0   lseek
+00093990  w   DF .text 00000085  GLIBC_2.0   setresgid
+0002abd0  w   DF .text 00000038  GLIBC_2.0   sigaltstack
+00075040 g    DF .text 00000042  GLIBC_2.1.1 __strncmp_g
+000fca80 g    DF .text 00000123  GLIBC_2.0   xdr_string
+00085c10 g    DF .text 00000072  GLIBC_2.0   ftime
+00071460 g    DF .text 00000046  GLIBC_2.0   memcpy
+0005b0c0  w   DF .text 000000e7  GLIBC_2.2   getwc
+00076b80  w   DF .text 00000048  GLIBC_2.0   mbrlen
+000ce660 g    DF .text 00000052  GLIBC_2.0   endusershell
+000c4250 g    DF .text 00000089  GLIBC_2.0   getwd
+000b7640 g    DF .text 00000034  GLIBC_2.0   __sched_get_priority_min
+00060df0 g    DF .text 00000228  GLIBC_2.1   freopen64
+0010cd10 g    DF .text 00000183 (GLIBC_2.0)  fclose
+00057d70 g    DF .text 000001e8  GLIBC_2.1   fclose
+00085c90  w   DF .text 00000558  GLIBC_2.1   getdate_r
+000c1d40 g    DF .text 00000015  GLIBC_2.2   posix_spawnattr_setschedparam
+0005c710 g    DF .text 00000082  GLIBC_2.2   _IO_seekwmark
+00065180 g    DF .text 0000003c  GLIBC_2.0   _IO_adjust_column
+000c37e0  w   DF .text 000000f7  GLIBC_2.0   euidaccess
+0002a8d0 g    DF .text 0000012e  GLIBC_2.0   __sigpause
+000c4e20 g    DF .text 0000010c  GLIBC_2.4   symlinkat
+0002dce0 g    DF .text 00000017  GLIBC_2.0   rand
+000cbaa0  w   DF .text 000001c0  GLIBC_2.0   pselect
+000df950 g    DF .text 00000043  GLIBC_2.0   pthread_setcanceltype
+000ca700 g    DF .text 00000032  GLIBC_2.0   tcsetpgrp
+00075f20 g    DF .text 0000002e  GLIBC_2.0   wcscmp
+000e67a0 g    DF .text 000000a3  GLIBC_2.3.4 __memmove_chk
+000c71c0 g    DF .text 00000052  GLIBC_2.3.3 nftw64
+000cfa60  w   DF .text 0000003a  GLIBC_2.0   mprotect
+00110d80 g    DF .text 0000002b (GLIBC_2.1)  nftw64
+000e7ba0 g    DF .text 00000043  GLIBC_2.4   __getwd_chk
+000759b0 g    DF .text 00000045  GLIBC_2.1.1 __strcat_c
+000e3ae0 g    DF .text 00000355  GLIBC_PRIVATE __nss_lookup_function
+000710f0  w   DF .text 00000010  GLIBC_2.1   ffsl
+000cc890 g    DF .text 000000aa  GLIBC_2.0   getmntent
+00109f30 g    DF .text 0000001d  GLIBC_PRIVATE __libc_dl_error_tsd
+000819d0 g    DF .text 00000055  GLIBC_2.1   __wcscasecmp_l
+0002e350 g    DF .text 00000045  GLIBC_2.0   __strtol_internal
+000e6e80 g    DF .text 0000010c  GLIBC_2.3.4 __vsnprintf_chk
+00074f70 g    DF .text 00000036  GLIBC_2.1.1 __strcat_g
+0008b0d0 g    DF .text 00002517  GLIBC_2.3   __wcsftime_l
+00057c30 g    DF .text 0000013c  GLIBC_2.0   _IO_file_doallocate
+0002e440 g    DF .text 00000046  GLIBC_2.0   strtoul
+000618a0 g    DF .text 00000144  GLIBC_2.2   fmemopen
+000df770 g    DF .text 0000004a  GLIBC_2.0   pthread_setschedparam
+000d0c70 g    DF .text 0000004f  GLIBC_2.0   hdestroy_r
+000d7cf0 g    DF .text 000000b0  GLIBC_2.0   endspent
+000cfca0 g    DF .text 0000002c  GLIBC_2.0   munlockall
+0002aa20  w   DF .text 0000001b  GLIBC_2.0   sigpause
+000fc490 g    DF .text 0000001a  GLIBC_2.0   xdr_u_int
+000416a0 g    DF .text 00000036  GLIBC_2.0   vprintf
+00109040 g    DF .text 00000032  GLIBC_2.1.1 getutmpx
+00109040 g    DF .text 00000032  GLIBC_2.1.1 getutmp
+000d3e60 g    DF .text 00000037  GLIBC_2.0   setsockopt
+0006b890 g    DF .text 00000180  GLIBC_2.0   malloc
+00065ae0 g    DF .text 0000010e  GLIBC_2.0   _IO_default_xsputn
+000cfb90  w   DF .text 00000046  GLIBC_2.3.3 remap_file_pages
+00029f60  w   DF .text 00000064  GLIBC_2.0   siglongjmp
+001465b8 g    DO .bss  0000000c  GLIBC_2.0   svcauthdes_stats
+000ce990 g    DF .text 00000240  GLIBC_2.0   getpass
+0002e580  w   DF .text 00000046  GLIBC_2.0   strtouq
+00143404 g    DO .data 00000004 (GLIBC_2.2)  __ctype32_tolower
+00100a90 g    DF .text 00000022  GLIBC_2.0   xdr_keystatus
+000d3920 g    DF .text 00000034  GLIBC_2.0   uselib
+0002b070 g    DF .text 00000052  GLIBC_2.0   sigisemptyset
+00075240 g    DF .text 00000044  GLIBC_2.1.1 __strspn_g
+0002a1c0 g    DF .text 00000044  GLIBC_2.0   killpg
+00037fe0 g    DF .text 00000048  GLIBC_2.0   strfmon
+000230e0  w   DF .text 0000014b  GLIBC_2.3   duplocale
+0006f690 g    DF .text 000001aa  GLIBC_2.0   strcat
+000fc400 g    DF .text 0000001a  GLIBC_2.0   xdr_int
+000c2ca0  w   DF .text 00000010  GLIBC_2.0   umask
+00071260  w   DF .text 00000062  GLIBC_2.0   strcasecmp
+0008ef00  w   DF .text 000000a2  GLIBC_2.4   fdopendir
+00061160 g    DF .text 00000179  GLIBC_2.1   ftello64
+000df3b0 g    DF .text 00000043  GLIBC_2.0   pthread_attr_getschedpolicy
+0010c9c0 g    DF .text 0000003f (GLIBC_2.0)  realpath
+00037800 g    DF .text 0000050e  GLIBC_2.3   realpath
+00085bd0 g    DF .text 0000003e  GLIBC_2.0   timegm
+00060c10 g    DF .text 000001bb  GLIBC_2.1   ftello
+000294b0  w   DF .text 000001cf  GLIBC_2.0   modf
+00109870 g    DF .text 0000008b  GLIBC_PRIVATE __libc_dlclose
+00068850 g    DF .text 0000018a  GLIBC_2.0   __libc_mallinfo
+0002a130 g    DF .text 0000008a  GLIBC_2.0   raise
+000cb750 g    DF .text 000000a7  GLIBC_2.0   setegid
+000670f0  w   DF .text 00000034  GLIBC_2.0   malloc_usable_size
+00023db0 g    DF .text 00000017  GLIBC_2.1   __isdigit_l
+000d2f50 g    DF .text 00000013  GLIBC_2.0   setfsgid
+0005c840 g    DF .text 0000007e  GLIBC_2.2   _IO_wdefault_doallocate
+0004ae40 g    DF .text 00005c04  GLIBC_2.0   _IO_vfscanf
+00056a20 g    DF .text 0000005c  GLIBC_2.0   remove
+000b7550  w   DF .text 0000003a  GLIBC_2.0   sched_setscheduler
+0007dce0  w   DF .text 00000039  GLIBC_2.3   wcstold_l
+00093740  w   DF .text 00000038  GLIBC_2.0   setpgid
+000d3ac0  w   DF .text 00000037  GLIBC_2.0   getpeername
+000819d0  w   DF .text 00000055  GLIBC_2.3   wcscasecmp_l
+00074da0 g    DF .text 00000038  GLIBC_2.1.1 __memset_gcn_by2
+000e7750 g    DF .text 00000158  GLIBC_2.4   __fgets_chk
+0006fb30 g    DF .text 00000154  GLIBC_2.1.1 __strverscmp
+000e39d0 g    DF .text 00000019  GLIBC_2.2   __res_state
+000f8580 g    DF .text 00000115  GLIBC_2.0   pmap_getmaps
+000298f0  w   DF .text 0000006a  GLIBC_2.0   frexpf
+00141360 g    DO .data.rel.ro  000001f8 (GLIBC_2.3)  sys_errlist
+0006fcf0 g    DF .text 00000064  GLIBC_2.2   __strndup
+00141360 g    DO .data.rel.ro  000001ec (GLIBC_2.0)  sys_errlist
+00141360 g    DO .data.rel.ro  00000210  GLIBC_2.4   sys_errlist
+00074d60 g    DF .text 00000035  GLIBC_2.1.1 __memset_gcn_by4
+00141360 g    DO .data.rel.ro  000001f4 (GLIBC_2.1)  sys_errlist
+001462ec g    DO .bss  00000004  GLIBC_2.0   mallwatch
+00065450  w   DF .text 000001fd  GLIBC_2.2   _flushlbf
+00076b60  w   DF .text 00000019  GLIBC_2.0   mbsinit
+000d69c0  w   DF .text 0000005d  GLIBC_2.3   towupper_l
+000e6b90 g    DF .text 000000bc  GLIBC_2.3.4 __strncpy_chk
+00093530  w   DF .text 0000000c  GLIBC_2.0   getgid
+0010a520 g    DF .text 00000043  GLIBC_2.0   __register_frame_table
+000b0260  w   DF .text 0000007c  GLIBC_2.0   re_compile_pattern
+000465f0  w   DF .text 00000034  GLIBC_2.0   asprintf
+00084630  w   DF .text 00000079  GLIBC_2.0   tzset
+000c0f10 g    DF .text 000000bc  GLIBC_PRIVATE __libc_pwrite
+001430cc g    DO .data 00000004  GLIBC_2.0   re_max_failures
+000c21c0 g    DF .text 0000003f (GLIBC_2.1)  __lxstat64
+00143920 g    DO .data 00000050  GLIBC_2.0   _IO_stderr_
+000c21c0 g    DF .text 0000003f  GLIBC_2.2   __lxstat64
+00029c80  w   DF .text 00000071  GLIBC_2.0   frexpl
+000fd820 g    DF .text 00000170  GLIBC_2.0   xdrrec_eof
+00023c00 g    DF .text 00000048  GLIBC_2.0   isupper
+000cf600 g    DF .text 00000029  GLIBC_2.0   vsyslog
+00016a10 g    DF .text 0000019e (GLIBC_2.0)  __umoddi3
+000fb9e0 g    DF .text 000002ee  GLIBC_2.0   svcudp_bufcreate
+0006fe20 g    DF .text 00000121  GLIBC_2.0   __strerror_r
+00029800  w   DF .text 00000011  GLIBC_2.0   finitef
+000c28e0  w   DF .text 0000012b  GLIBC_2.1   fstatfs64
+00106e00  w   DF .text 00000068  GLIBC_2.0   getutline
+000e5970 g    DF .text 0000008a  GLIBC_PRIVATE __nss_services_lookup
+00066100 g    DF .text 00000138  GLIBC_2.0   __uflow
+00070fd0 g    DF .text 00000044  GLIBC_2.0   __mempcpy
+0002ea30  w   DF .text 00000030  GLIBC_2.3   strtol_l
+000297e0 g    DF .text 00000018  GLIBC_2.0   __isnanf
+00022820 g    DF .text 00000067  GLIBC_2.2   __nl_langinfo_l
+000fa150 g    DF .text 00000087  GLIBC_2.2   svc_getreq_poll
+00029ab0  w   DF .text 0000000e  GLIBC_2.0   finitel
+000c1d90 g    DF .text 00000081  GLIBC_2.6   __sched_cpucount
+000df2c0 g    DF .text 00000043  GLIBC_2.0   pthread_attr_setinheritsched
+00000000 g    DO *ABS* 00000000  GLIBC_2.1.1 GLIBC_2.1.1
+00146510 g    DO .bss  00000004  GLIBC_2.2   svc_pollfd
+00000000 g    DO *ABS* 00000000  GLIBC_2.1.2 GLIBC_2.1.2
+00060650  w   DF .text 000000f7  GLIBC_2.0   __vsnprintf
+000227b0 g    DF .text 00000070  GLIBC_2.0   nl_langinfo
+00000000 g    DO *ABS* 00000000  GLIBC_2.1.3 GLIBC_2.1.3
+000cc460 g    DF .text 00000089  GLIBC_2.0   setfsent
+000cc940  w   DF .text 00000092  GLIBC_2.0   hasmntopt
+00029a60 g    DF .text 00000046  GLIBC_2.0   __isnanl
+0002b1b0 g    DF .text 00000016  GLIBC_2.1   __libc_current_sigrtmax
+0008e0b0  w   DF .text 00000092  GLIBC_2.0   opendir
+000ea770 g    DF .text 000001e1  GLIBC_2.1.2 getnetbyaddr_r
+001115d0 g    DF .text 00000063 (GLIBC_2.0)  getnetbyaddr_r
+00076080 g    DF .text 000000a1  GLIBC_2.0   wcsncat
+00029680  w   DF .text 0000000d  GLIBC_2.1   scalbln
+000ea270 g    DF .text 000000ab  GLIBC_2.0   gethostent
+000e8ab0 g    DF .text 00000042  GLIBC_2.4   __mbsrtowcs_chk
+000585a0 g    DF .text 00000171  GLIBC_2.0   _IO_fgets
+00146500 g    DO .bss  00000010  GLIBC_2.0   rpc_createerr
+000710c0  w   DF .text 0000002e  GLIBC_2.0   bzero
+000f8a60 g    DF .text 00000685  GLIBC_2.0   clnt_broadcast
+0002ad00 g    DF .text 00000024  GLIBC_2.0   __sigaddset
+000297b0 g    DF .text 00000024  GLIBC_2.0   __isinff
+0006e220 g    DF .text 000000bd  GLIBC_2.2   mcheck_check_all
+00143164 g    DO .data 00000004  GLIBC_2.1   argp_err_exit_status
+000d73c0 g    DF .text 0000012d  GLIBC_2.0   getspnam
+000df4f0 g    DF .text 0000003c  GLIBC_2.0   pthread_condattr_destroy
+000c2730 g    DF .text 00000038  GLIBC_2.2   __statfs
+00144a94 g    DO .bss  00000004  GLIBC_2.0   __environ
+000e7e90 g    DF .text 00000056  GLIBC_2.4   __wcscat_chk
+000c2140 g    DF .text 0000003f  GLIBC_2.2   __xstat64
+00090850  w   DF .text 0000024e  GLIBC_2.0   fgetgrent_r
+000c2140 g    DF .text 0000003f (GLIBC_2.1)  __xstat64
+000f37d0 g    DF .text 00000011  GLIBC_2.3.3 inet6_option_space
+000d2cd0  w   DF .text 00000090  GLIBC_2.0   clone
+000d6ef0 g    DF .text 00000090  GLIBC_2.1   __iswpunct_l
+0002c520 g    DF .text 000000ef  GLIBC_2.0   getenv
+00023fa0 g    DF .text 0000003c  GLIBC_2.3   __ctype_b_loc
+00029a00 g    DF .text 00000055  GLIBC_2.0   __isinfl
+001108e0 g    DF .text 00000032 (GLIBC_2.3.3) sched_getaffinity
+000b76c0 g    DF .text 00000089  GLIBC_2.3.4 sched_getaffinity
+0002aa00  w   DF .text 0000001b  GLIBC_2.2   __xpg_sigpause
+000d5230  w   DF .text 000001cd  GLIBC_2.0   profil
+00055d10 g    DF .text 00000034  GLIBC_2.0   sscanf
+0010a100 g    DF .text 00000023  GLIBC_2.0   __deregister_frame_info
+00093900  w   DF .text 00000085  GLIBC_2.0   setresuid
+0002e130  w   DF .text 00000052  GLIBC_2.0   jrand48_r
+000d3c30  w   DF .text 0000006c  GLIBC_2.0   recvfrom
+00074e70 g    DF .text 00000040  GLIBC_2.1.1 __mempcpy_by2
+000d5c40 g    DF .text 00000019  GLIBC_2.0   __profile_frequency
+00077770  w   DF .text 0000032f  GLIBC_2.0   wcsnrtombs
+00074e30 g    DF .text 00000033  GLIBC_2.1.1 __mempcpy_by4
+00146520 g    DO .bss  00000080  GLIBC_2.0   svc_fdset
+000ef660 g    DF .text 0000009c  GLIBC_2.0   ruserok
+0006f550 g    DF .text 0000002c  GLIBC_2.0   _obstack_allocated_p
+000c7250 g    DF .text 0000003b  GLIBC_2.0   fts_set
+000fc690 g    DF .text 0000001a  GLIBC_2.1.1 xdr_u_longlong_t
+000caec0 g    DF .text 000000ab  GLIBC_2.0   nice
+000b0130  w   DF .text 00000126  GLIBC_2.0   regcomp
+00101c60 g    DF .text 0000023b  GLIBC_2.1   xdecrypt
+000c2ff0  w   DF .text 00000070  GLIBC_2.0   __open
+00085ac0  w   DF .text 00000038  GLIBC_2.0   getitimer
+00023ac0 g    DF .text 00000048  GLIBC_2.0   isgraph
+00146344 g    DO .bss  00000004  GLIBC_2.0   optarg
+00028a30 g    DF .text 00000080  GLIBC_2.0   catclose
+000f7630 g    DF .text 000002db  GLIBC_2.0   clntudp_bufcreate
+000eb950 g    DF .text 0000013d  GLIBC_2.0   getservbyname
+00061330 g    DF .text 0000001a  GLIBC_2.2   __freading
+0007ff30 g    DF .text 0000007b  GLIBC_2.0   wcwidth
+00143844 g    DO .data 00000004  GLIBC_2.0   stderr
+000d4500 g    DF .text 00000065  GLIBC_2.2   msgctl
+00110eb0 g    DF .text 00000062 (GLIBC_2.0)  msgctl
+000e8f60 g    DF .text 0000002d  GLIBC_2.0   inet_lnaof
+0002ae80 g    DF .text 0000006a  GLIBC_2.0   sigdelset
+00016110  w   DF .text 00000016  GLIBC_2.1   gnu_get_libc_release
+000cb070  w   DF .text 0000003a  GLIBC_2.0   ioctl
+000c44d0 g    DF .text 00000178  GLIBC_2.4   fchownat
+000923c0 g    DF .text 00000034  GLIBC_2.0   alarm
+00143560 g    DO .data 00000098  GLIBC_2.1   _IO_2_1_stderr_
+0005c580 g    DF .text 00000049  GLIBC_2.2   _IO_sputbackwc
+0006ad30 g    DF .text 00000105  GLIBC_2.0   __libc_pvalloc
+00037700  w   DF .text 0000007d  GLIBC_2.0   system
+00100700 g    DF .text 00000068  GLIBC_2.1   xdr_getcredres
+000782f0  w   DF .text 00000040  GLIBC_2.1   __wcstol_l
+00055c30  w   DF .text 00000039  GLIBC_2.2   vfwscanf
+000d3520 g    DF .text 0000002c  GLIBC_2.4   inotify_init
+000cdc60 g    DF .text 00000044  GLIBC_2.0   chflags
+000d1c60 g    DF .text 00000026  GLIBC_2.0   err
+000ebab0 g    DF .text 000001fb  GLIBC_2.1.2 getservbyname_r
+00111990 g    DF .text 00000066 (GLIBC_2.0)  getservbyname_r
+000fc810 g    DF .text 00000079  GLIBC_2.0   xdr_bool
+00071100 g    DF .text 00000064  GLIBC_2.1   ffsll
+00023ef0 g    DF .text 0000002c  GLIBC_2.3   __isctype
+000caae0 g    DF .text 0000006a  GLIBC_2.1   setrlimit64
+00093670  w   DF .text 00000088  GLIBC_2.0   group_member
+000c1e60 g    DF .text 00000056  GLIBC_2.6   sched_getcpu
+000583a0 g    DF .text 000001df  GLIBC_2.2   _IO_fgetpos
+00065a80 g    DF .text 00000052  GLIBC_2.0   _IO_free_backup_area
+000cfa20  w   DF .text 00000038  GLIBC_2.0   munmap
+0010d4c0 g    DF .text 0000013b (GLIBC_2.0)  _IO_fgetpos
+000c14e0 g    DF .text 00000037  GLIBC_2.2   posix_spawnattr_setsigdefault
+0006f2e0 g    DF .text 000000cc  GLIBC_2.0   _obstack_begin_1
+000918d0 g    DF .text 00000319  GLIBC_PRIVATE _nss_files_parse_pwent
+000e88a0 g    DF .text 0000003b  GLIBC_2.4   __getgroups_chk
+00091fe0  w   DF .text 00000029  GLIBC_2.0   wait3
+00092010  w   DF .text 00000040  GLIBC_2.0   wait4
+0006f3b0 g    DF .text 00000195  GLIBC_2.0   _obstack_newchunk
+00074ef0 g    DF .text 00000034  GLIBC_2.1.1 __stpcpy_g
+000d25b0  w   DF .text 0000007c  GLIBC_2.0   advance
+000f42e0 g    DF .text 0000002a  GLIBC_2.5   inet6_opt_init
+00143024 g    DO .data 00000002  GLIBC_2.0   __fpu_control
+00109ff0 g    DF .text 0000003a  GLIBC_2.0   __register_frame_info
+000e9980 g    DF .text 000001a5  GLIBC_2.0   gethostbyname
+000c3760  w   DF .text 0000003a  GLIBC_2.0   __lseek
+000e6e40 g    DF .text 00000039  GLIBC_2.3.4 __snprintf_chk
+001430d8 g    DO .data 00000004  GLIBC_2.0   optopt
+000c13b0 g    DF .text 00000097  GLIBC_2.2   posix_spawn_file_actions_adddup2
+000782f0  w   DF .text 00000040  GLIBC_2.3   wcstol_l
+00146354 g    DO .bss  00000004  GLIBC_2.0   error_message_count
+00023d90 g    DF .text 00000015  GLIBC_2.1   __iscntrl_l
+000c2f00 g    DF .text 000000ed  GLIBC_2.4   mkdirat
+000cb6a0 g    DF .text 000000a7  GLIBC_2.0   seteuid
+00075f50 g    DF .text 0000002c  GLIBC_2.0   wcscpy
+0002e0f0 g    DF .text 00000037  GLIBC_2.0   mrand48_r
+000d2f30 g    DF .text 00000013  GLIBC_2.0   setfsuid
+000c3f40  w   DF .text 00000034  GLIBC_2.0   dup
+000e68a0 g    DF .text 000000d9  GLIBC_2.3.4 __memset_chk
+00143860 g    DO .data 00000050  GLIBC_2.0   _IO_stdin_
+000df9a0 g    DF .text 00000046  GLIBC_2.0   pthread_exit
+000fc7d0 g    DF .text 00000037  GLIBC_2.0   xdr_u_char
+0005b310 g    DF .text 0000003d  GLIBC_2.2   getwchar_unlocked
+00146340 g    DO .bss  00000004  GLIBC_2.0   re_syntax_options
+00108fb0 g    DF .text 00000023  GLIBC_2.1   pututxline
+000d4300  w   DF .text 000000b6  GLIBC_2.0   msgsnd
+00093a20 g    DF .text 000000dd  GLIBC_2.0   getlogin
+000cdcb0 g    DF .text 00000044  GLIBC_2.0   fchflags
+0002b0d0 g    DF .text 0000005f  GLIBC_2.0   sigandset
+000298e0  w   DF .text 0000000d  GLIBC_2.0   scalbnf
+000b7680  w   DF .text 00000038  GLIBC_2.0   sched_rr_get_interval
+00064360 g    DF .text 00000091  GLIBC_2.1   _IO_file_finish
+000d2c50 g    DF .text 00000075  GLIBC_2.2   __sysctl
+000fcea0 g    DF .text 000000a0  GLIBC_2.0   xdr_double
+00093550  w   DF .text 0000003f  GLIBC_2.0   getgroups
+00029c70  w   DF .text 0000000d  GLIBC_2.0   scalbnl
+000cb210  w   DF .text 00000103  GLIBC_2.0   readv
+00093510  w   DF .text 0000000c  GLIBC_2.0   getuid
+000ef5a0 g    DF .text 0000003f  GLIBC_2.0   rcmd
+000c4f30  w   DF .text 0000003a  GLIBC_2.0   readlink
+000d1790 g    DF .text 0000008b  GLIBC_2.0   lsearch
+000ee6b0 g    DF .text 000000ca  GLIBC_2.2   iruserok_af
+00055c90 g    DF .text 00000024  GLIBC_2.0   fscanf
+000eccc0 g    DF .text 00000656  GLIBC_2.0   ether_aton_r
+00041ac0 g    DF .text 0000264a  GLIBC_2.0   __printf_fp
+000d3620  w   DF .text 00000046  GLIBC_2.0   mremap
+000d2ec0  w   DF .text 0000006a  GLIBC_2.3   readahead
+00100c60 g    DF .text 000001a0  GLIBC_2.1   host2netname
+000d2a60 g    DF .text 00000038  GLIBC_2.3   removexattr
+0005c410 g    DF .text 0000002d  GLIBC_2.2   _IO_switch_to_wbackup_area
+000f88f0 g    DF .text 0000006f  GLIBC_2.0   xdr_pmap
+00000000 g    DO *ABS* 00000000  GLIBC_2.2.1 GLIBC_2.2.1
+00074eb0 g    DF .text 00000033  GLIBC_2.1.1 __mempcpy_byn
+000eb310 g    DF .text 000000a2  GLIBC_2.0   getprotoent
+00092aa0  w   DF .text 00000053  GLIBC_2.0   execve
+0005e350 g    DF .text 0000015f  GLIBC_2.2   _IO_wfile_sync
+00000000 g    DO *ABS* 00000000  GLIBC_2.2.2 GLIBC_2.2.2
+000fc8b0 g    DF .text 000000cd  GLIBC_2.0   xdr_opaque
+00093540  w   DF .text 0000000c  GLIBC_2.0   getegid
+00000000 g    DO *ABS* 00000000  GLIBC_2.2.3 GLIBC_2.2.3
+00000000 g    DO *ABS* 00000000  GLIBC_2.2.4 GLIBC_2.2.4
+000caa10 g    DF .text 0000003f  GLIBC_2.2   setrlimit
+000d30f0 g    DF .text 00000038 (GLIBC_2.0)  setrlimit
+000b7480 g    DF .text 00000047  GLIBC_2.0   getopt_long
+00063c10 g    DF .text 0000011b  GLIBC_2.0   _IO_file_open
+00000000 g    DO *ABS* 00000000  GLIBC_2.2.6 GLIBC_2.2.6
+000835e0  w   DF .text 00000038  GLIBC_2.0   settimeofday
+0005fe80 g    DF .text 000000cb  GLIBC_2.0   open_memstream
+000cb040 g    DF .text 00000022  GLIBC_2.0   sstk
+00109e50 g    DF .text 000000d7  GLIBC_PRIVATE _dl_vsym
+000613b0 g    DF .text 00000076  GLIBC_2.2   __fpurge
+00108fe0 g    DF .text 00000023  GLIBC_2.1   utmpxname
+00093700  w   DF .text 00000034  GLIBC_2.0   getpgid
+0002b1b0 g    DF .text 00000016  GLIBC_PRIVATE __libc_current_sigrtmax_private
+00037150  w   DF .text 00000029  GLIBC_2.3   strtold_l
+000e6aa0 g    DF .text 000000e7  GLIBC_2.3.4 __strncat_chk
+000c1d60 g    DF .text 00000024  GLIBC_2.2   posix_madvise
+000c1560 g    DF .text 00000012  GLIBC_2.2   posix_spawnattr_getpgroup
+000d1af0 g    DF .text 000000e3  GLIBC_2.0   vwarnx
+000753b0 g    DF .text 000000d3  GLIBC_2.1.1 __mempcpy_small
+0010d620 g    DF .text 00000184 (GLIBC_2.1)  fgetpos64
+0005abb0 g    DF .text 000001af  GLIBC_2.2   fgetpos64
+0006f840  w   DF .text 00000167  GLIBC_2.0   index
+001464e4 g    DO .bss  00000004  GLIBC_2.0   rexecoptions
+000df1d0 g    DF .text 00000043  GLIBC_2.0   pthread_attr_getdetachstate
+0005daf0 g    DF .text 0000019f  GLIBC_2.2   _IO_wfile_xsputn
+00092f20 g    DF .text 00000441  GLIBC_2.0   execvp
+000cfb50 g    DF .text 0000003a  GLIBC_2.2   mincore
+00068850  w   DF .text 0000018a  GLIBC_2.0   mallinfo
+000689e0  w   DF .text 00000077  GLIBC_2.0   malloc_trim
+000665f0 g    DF .text 00000042  GLIBC_2.0   _IO_str_underflow
+000f2710 g    DF .text 00000023  GLIBC_2.3   freeifaddrs
+000fb8b0 g    DF .text 00000126  GLIBC_2.0   svcudp_enablecache
+000230e0 g    DF .text 0000014b  GLIBC_2.1   __duplocale
+00081a30 g    DF .text 00000073  GLIBC_2.1   __wcsncasecmp_l
+000c4c10 g    DF .text 000001c1  GLIBC_2.4   linkat
+00065d90 g    DF .text 00000129  GLIBC_2.0   _IO_default_pbackfail
+000f4690 g    DF .text 00000024  GLIBC_2.5   inet6_rth_space
+0005c7e0 g    DF .text 00000058  GLIBC_2.2   _IO_free_wbackup_area
+000df6d0 g    DF .text 0000004a  GLIBC_2.3.2 pthread_cond_timedwait
+001112d0 g    DF .text 0000004a (GLIBC_2.0)  pthread_cond_timedwait
+000914f0 g    DF .text 000001ec  GLIBC_2.1.2 getpwnam_r
+0010d7d0 g    DF .text 00000110 (GLIBC_2.0)  _IO_fsetpos
+0010f070 g    DF .text 0000005f (GLIBC_2.0)  getpwnam_r
+00058e40 g    DF .text 0000013e  GLIBC_2.2   _IO_fsetpos
+0014332c  w   DO .data 00000004  GLIBC_2.0   __realloc_hook
+0005f8b0 g    DF .text 0000026b  GLIBC_2.0   freopen
+000e6520  w   DF .text 00000217  GLIBC_2.1   backtrace_symbols_fd
+000712d0  w   DF .text 0000007a  GLIBC_2.0   strncasecmp
+000c2200 g    DF .text 00000096  GLIBC_2.0   __xmknod
+0005dc90 g    DF .text 000006b2  GLIBC_2.2   _IO_wfile_seekoff
+000e7a80 g    DF .text 00000032  GLIBC_2.4   __recv_chk
+000cc390 g    DF .text 0000008b  GLIBC_2.0   ptrace
+000f4710 g    DF .text 00000106  GLIBC_2.5   inet6_rth_reverse
+000cdd30 g    DF .text 0000001a  GLIBC_2.0   remque
+000f2b40 g    DF .text 00000c87  GLIBC_2.3   getifaddrs
+000d70c0  w   DF .text 0000005d  GLIBC_2.3   towlower_l
+0005bc50 g    DF .text 00000038  GLIBC_2.2   putwc_unlocked
+00045bc0 g    DF .text 0000002b  GLIBC_2.1   printf_size_info
+00000020 g    D  .tbss 00000004  GLIBC_PRIVATE h_errno
+00029680  w   DF .text 0000000d  GLIBC_2.0   scalbn
+0007dce0  w   DF .text 00000039  GLIBC_2.1   __wcstold_l
+000f22d0 g    DF .text 000000a4  GLIBC_2.1   if_nametoindex
+000298e0  w   DF .text 0000000d  GLIBC_2.1   scalblnf
+00077ce0 g    DF .text 00000045  GLIBC_2.0   __wcstoll_internal
+00146480 g    DO .bss  00000030  GLIBC_2.2   _res_hconf
+000c4000  w   DF .text 0000006c  GLIBC_2.0   creat
+000c2020 g    DF .text 0000008e  GLIBC_2.0   __fxstat
+0010e860 g    DF .text 000000d8 (GLIBC_2.0)  _IO_file_close_it
+00064400 g    DF .text 0000019d  GLIBC_2.1   _IO_file_close_it
+00029c70  w   DF .text 0000000d  GLIBC_2.1   scalblnl
+000631f0 g    DF .text 00000016  GLIBC_2.0   _IO_file_close
+000700a0 g    DF .text 000000aa  GLIBC_2.0   strncat
+001002d0 g    DF .text 00000081  GLIBC_2.1   key_decryptsession_pk
+0014316c g    DO .data 00000004  GLIBC_2.0   __check_rhosts_file
+000c9630 g    DF .text 00000040  GLIBC_2.3   sendfile64
+000d3d80  w   DF .text 0000006c  GLIBC_2.0   sendmsg
+000e6520 g    DF .text 00000217  GLIBC_2.1   __backtrace_symbols_fd
+00039cf0 g    DF .text 00000029  GLIBC_2.1   wcstoimax
+0002e580 g    DF .text 00000046  GLIBC_2.0   strtoull
+00071970 g    DF .text 00000090  GLIBC_2.1.1 __strsep_g
+0005cb30 g    DF .text 000000e7  GLIBC_2.2   __wunderflow
+00016bb0 g    DF .text 00000133 (GLIBC_2.0)  __udivdi3
+00057d70 g    DF .text 000001e8  GLIBC_2.1   _IO_fclose
+0010cd10 g    DF .text 00000183 (GLIBC_2.0)  _IO_fclose
+00061380 g    DF .text 00000013  GLIBC_2.2   __fwritable
+000e7c30 g    DF .text 00000038  GLIBC_2.4   __realpath_chk
+0002afc0 g    DF .text 000000a2  GLIBC_2.0   __sysv_signal
+000cab90  w   DF .text 000000cb  GLIBC_2.0   ulimit
+000609d0  w   DF .text 00000034  GLIBC_2.0   obstack_printf
+0005e870 g    DF .text 00000475  GLIBC_2.2   _IO_wfile_underflow
+0005b050 g    DF .text 0000006d  GLIBC_2.2   fputwc_unlocked
+000c1c40 g    DF .text 00000039  GLIBC_2.2   posix_spawnattr_getsigmask
+000e5bb0 g    DF .text 0000008c  GLIBC_2.0   __nss_passwd_lookup
+0002dd60 g    DF .text 00000034  GLIBC_2.0   drand48
+000fc380 g    DF .text 0000001f  GLIBC_2.0   xdr_free
+0005f750 g    DF .text 00000034  GLIBC_2.0   fileno
+0010d3e0 g    DF .text 00000023 (GLIBC_2.0)  pclose
+000710c0 g    DF .text 0000002e  GLIBC_2.0   __bzero
+000ea4e0 g    DF .text 000000a8  GLIBC_2.0   sethostent
+00023e90 g    DF .text 00000017  GLIBC_2.1   __isxdigit_l
+00060040 g    DF .text 00000023  GLIBC_2.1   pclose
+000f46e0 g    DF .text 00000026  GLIBC_2.5   inet6_rth_getaddr
+000b5970  w   DF .text 00000039  GLIBC_2.0   re_search
+00093740 g    DF .text 00000038  GLIBC_2.0   __setpgid
+000cb870  w   DF .text 00000098  GLIBC_2.0   gethostname
+00024470 g    DF .text 00000022  GLIBC_2.0   __dgettext
+000df0c0 g    DF .text 00000046  GLIBC_2.0   pthread_equal
+000d8400  w   DF .text 0000008f  GLIBC_2.0   sgetspent_r
+000c2bf0  w   DF .text 000000a3  GLIBC_2.1   fstatvfs64
+000cc2b0 g    DF .text 0000003e  GLIBC_2.0   usleep
+000df800 g    DF .text 00000043  GLIBC_2.0   pthread_mutex_init
+000d2cd0 g    DF .text 00000090  GLIBC_2.0   __clone
+000cd7c0  w   DF .text 0000003f  GLIBC_2.0   utimes
+00143408 g    DO .data 00000004 (GLIBC_2.2)  __ctype32_toupper
+0002b690 g    DF .text 000001fd  GLIBC_2.1   sigset
+000d4210 g    DF .text 0000003e  GLIBC_2.0   __cmsg_nxthdr
+0006f580 g    DF .text 00000021  GLIBC_2.0   _obstack_memory_used
+000d2180 g    DF .text 00000086  GLIBC_2.0   ustat
+000c43b0 g    DF .text 00000053  GLIBC_2.1   chown
+00110960 g    DF .text 00000031 (GLIBC_2.0)  chown
+0006cff0 g    DF .text 00000487  GLIBC_2.0   __libc_realloc
+000d3810 g    DF .text 0000004c  GLIBC_2.5   splice
+000c1590 g    DF .text 00000050  GLIBC_2.2   posix_spawn
+000d6b50 g    DF .text 00000090  GLIBC_2.1   __iswblank_l
+0005c5d0 g    DF .text 0000004b  GLIBC_2.2   _IO_sungetwc
+00121960 g    DO .rodata       00000024  GLIBC_PRIVATE _itoa_lower_digits
+000c4120  w   DF .text 00000130  GLIBC_2.0   getcwd
+000fccb0 g    DF .text 0000004f  GLIBC_2.0   xdr_vector
+000593f0  w   DF .text 00000278  GLIBC_2.0   __getdelim
+00039eb0  w   DF .text 000000a4  GLIBC_2.1   swapcontext
+000f9d10 g    DF .text 00000030  GLIBC_2.2.3 __rpc_thread_svc_fdset
+00143340 g    DO .data 00000004  GLIBC_2.0   __progname_full
+000d2950 g    DF .text 00000040  GLIBC_2.3   lgetxattr
+001038c0 g    DF .text 00000068  GLIBC_2.1   xdr_uint8_t
+00029800 g    DF .text 00000011  GLIBC_2.0   __finitef
+00146358 g    DO .bss  00000004  GLIBC_2.0   error_one_per_line
+00080fb0  w   DF .text 00000955  GLIBC_2.3   wcsxfrm_l
+000fe9e0 g    DF .text 0000022e  GLIBC_2.1   authdes_pk_create
+000f2230 g    DF .text 0000009b  GLIBC_2.1   if_indextoname
+000d3960 g    DF .text 00000040  GLIBC_2.5   vmsplice
+0005c370 g    DF .text 00000024  GLIBC_2.2   swscanf
+000f9de0 g    DF .text 00000042  GLIBC_2.0   svcerr_decode
+00059270  w   DF .text 0000015f  GLIBC_2.0   fwrite
+00109010 g    DF .text 0000002a  GLIBC_2.1   updwtmpx
+00016130  w   DF .text 00000016  GLIBC_2.1   gnu_get_libc_version
+00029ab0 g    DF .text 0000000e  GLIBC_2.0   __finitel
+000ffcc0 g    DF .text 00000089  GLIBC_2.1   des_setparity
+00029820  w   DF .text 0000001e  GLIBC_2.0   copysignf
+000e6740 g    DF .text 00000005  GLIBC_2.2   __cyg_profile_func_enter
+00058d00  w   DF .text 00000118  GLIBC_2.0   fread
+000f4000 g    DF .text 00000184  GLIBC_2.3.4 getsourcefilter
+000297e0  w   DF .text 00000018  GLIBC_2.0   isnanf
+000d04e0 g    DF .text 0000032a  GLIBC_2.0   qfcvt_r
+0002e050 g    DF .text 00000037  GLIBC_2.0   lrand48_r
+000cfe50 g    DF .text 000002e1  GLIBC_2.0   fcvt_r
+000835a0  w   DF .text 00000038  GLIBC_2.0   gettimeofday
+000d6a20  w   DF .text 00000090  GLIBC_2.3   iswalnum_l
+00017100 g    DF .text 0000003a  GLIBC_2.1   iconv_close
+00083620  w   DF .text 0000011c  GLIBC_2.0   adjtime
+000f07b0  w   DF .text 00000095  GLIBC_2.0   getnetgrent_r
+0002a360  w   DF .text 00000157  GLIBC_2.0   sigaction
+0005c6d0 g    DF .text 0000003d  GLIBC_2.2   _IO_wmarker_delta
+00056a80 g    DF .text 00000038  GLIBC_2.0   rename
+00029ac0  w   DF .text 0000001e  GLIBC_2.0   copysignl
+0002df10 g    DF .text 00000039  GLIBC_2.0   seed48
+000cdd50 g    DF .text 00000042  GLIBC_2.0   endttyent
+00029a60  w   DF .text 00000046  GLIBC_2.0   isnanl
+000659f0 g    DF .text 0000008d  GLIBC_2.0   _IO_default_finish
+001010f0 g    DF .text 00000227  GLIBC_2.1   rtime
+000cc7b0 g    DF .text 000000a9  GLIBC_2.0   getfsent
+000d32f0 g    DF .text 00000040  GLIBC_2.3.2 epoll_ctl
+000d6920 g    DF .text 00000092  GLIBC_2.1   __iswxdigit_l
+00058b90 g    DF .text 00000149  GLIBC_2.0   _IO_fputs
+00000000 g    DO *ABS* 00000000  GLIBC_2.3.2 GLIBC_2.3.2
+000cfb10 g    DF .text 0000003a  GLIBC_2.0   madvise
+00090580 g    DF .text 000002c2  GLIBC_PRIVATE _nss_files_parse_grent
+00100f00 g    DF .text 00000063  GLIBC_2.1   getnetname
+00101bf0 g    DF .text 00000061  GLIBC_2.1   passwd2des
+00000000 g    DO *ABS* 00000000  GLIBC_2.3.3 GLIBC_2.3.3
+001095e0 g    DF .text 00000033  GLIBC_2.1   _dl_mcount_wrapper
+0002ad30 g    DF .text 00000024  GLIBC_2.0   __sigdelset
+00000000 g    DO *ABS* 00000000  GLIBC_2.3.4 GLIBC_2.3.4
+0008e510 g    DF .text 000001e4  GLIBC_2.0   scandir
+00075520 g    DF .text 000000b2  GLIBC_2.1.1 __stpcpy_small
+000ead50 g    DF .text 000000a8  GLIBC_2.0   setnetent
+000cc1e0 g    DF .text 0000002b  GLIBC_2.2   mkstemp64
+0002b190 g    DF .text 00000016  GLIBC_PRIVATE __libc_current_sigrtmin_private
+000d2fa0 g    DF .text 00000019  GLIBC_2.3.3 gnu_dev_minor
+000297b0  w   DF .text 00000024  GLIBC_2.0   isinff
+000938a0  w   DF .text 00000053  GLIBC_2.0   getresgid
+00029f60 g    DF .text 00000064  GLIBC_PRIVATE __libc_siglongjmp
+000c2730  w   DF .text 00000038  GLIBC_2.0   statfs
+00093520  w   DF .text 0000000c  GLIBC_2.0   geteuid
+000b74d0  w   DF .text 00000038  GLIBC_2.0   sched_setparam
+000e6750 g    DF .text 00000050  GLIBC_2.3.4 __memcpy_chk
+000ed320 g    DF .text 00000153  GLIBC_2.0   ether_hostton
+000d6ab0  w   DF .text 00000092  GLIBC_2.3   iswalpha_l
+000d37d0 g    DF .text 00000040  GLIBC_2.0   quotactl
+0002d800  w   DF .text 00000060  GLIBC_2.0   srandom
+000d6f80 g    DF .text 00000092  GLIBC_2.1   __iswspace_l
+000ecb10 g    DF .text 0000017d  GLIBC_2.1.2 getrpcbynumber_r
+00111cf0 g    DF .text 0000005f (GLIBC_2.0)  getrpcbynumber_r
+00029a00  w   DF .text 00000055  GLIBC_2.0   isinfl
+0002b890 g    DF .text 00000023  GLIBC_2.0   atof
+000ce5b0 g    DF .text 000000a7  GLIBC_2.0   getttynam
+0009f160  w   DF .text 0000004b  GLIBC_2.0   re_set_registers
+00028c30 g    DF .text 000007d2  GLIBC_PRIVATE __open_catalog
+0002aef0 g    DF .text 0000006e  GLIBC_2.0   sigismember
+000df360 g    DF .text 00000043  GLIBC_2.0   pthread_attr_setschedparam
+00071020 g    DF .text 0000009f  GLIBC_2.0   bcopy
+000602f0 g    DF .text 0000003b  GLIBC_2.0   setlinebuf
+000e6c50 g    DF .text 000000cd  GLIBC_2.4   __stpncpy_chk
+00076430  w   DF .text 0000011e  GLIBC_2.1   wcswcs
+0002b8c0 g    DF .text 0000002b  GLIBC_2.0   atoi
+000d6e50 g    DF .text 00000092  GLIBC_2.1   __iswprint_l
+00075800 g    DF .text 0000005e  GLIBC_2.1.1 __strtok_r_1c
+000fc4b0 g    DF .text 000000cb  GLIBC_2.1.1 xdr_hyper
+0008f010 g    DF .text 00000074  GLIBC_2.2   getdirentries64
+00085b40 g    DF .text 00000034  GLIBC_2.0   stime
+00027430  w   DF .text 0000011d  GLIBC_2.0   textdomain
+000b7600  w   DF .text 00000034  GLIBC_2.0   sched_get_priority_max
+0002b8f0 g    DF .text 0000002b  GLIBC_2.0   atol
+000ca830 g    DF .text 00000032  GLIBC_2.0   tcflush
+000c1ca0 g    DF .text 00000039  GLIBC_2.2   posix_spawnattr_getschedparam
+000f4390 g    DF .text 000000b4  GLIBC_2.5   inet6_opt_find
+00077d30 g    DF .text 00000046  GLIBC_2.1   wcstoull
+000edc30 g    DF .text 00000155  GLIBC_2.0   ether_ntohost
+00141580 g    DO .data.rel.ro  00000100 (GLIBC_2.1)  sys_siglist
+00141580 g    DO .data.rel.ro  00000080 (GLIBC_2.0)  sys_siglist
+000cfc60 g    DF .text 00000034  GLIBC_2.0   mlockall
+00141580 g    DO .data.rel.ro  00000104  GLIBC_2.3.3 sys_siglist
+000cc340 g    DF .text 00000044  GLIBC_2.0   stty
+000d5d00  w   DF .text 000000cb  GLIBC_2.0   iswxdigit
+000c7220 g    DF .text 00000026  GLIBC_2.1   ftw64
+00091f70  w   DF .text 00000070  GLIBC_2.0   waitpid
+000e8a10 g    DF .text 00000049  GLIBC_2.4   __mbsnrtowcs_chk
+00061430 g    DF .text 0000002a  GLIBC_2.2   __fpending
+000c3610  w   DF .text 00000065  GLIBC_2.0   close
+00108a90 g    DF .text 0000006b  GLIBC_2.1   unlockpt
+000fc9b0 g    DF .text 00000090  GLIBC_2.0   xdr_union
+000e6100  w   DF .text 00000160  GLIBC_2.1   backtrace
+0006fb30  w   DF .text 00000154  GLIBC_2.1   strverscmp
+000c1c80 g    DF .text 00000015  GLIBC_2.2   posix_spawnattr_getschedpolicy
+00028980 g    DF .text 000000ab  GLIBC_2.0   catgets
+0002d310 g    DF .text 00000095  GLIBC_2.0   lldiv
+00106b50  w   DF .text 0000005e  GLIBC_2.0   endutent
+000df900  w   DF .text 00000043  GLIBC_2.0   pthread_setcancelstate
+00056180 g    DF .text 000000b8  GLIBC_2.0   tmpnam
+000e1020 g    DF .text 000000cf  GLIBC_2.0   inet_nsap_ntoa
+00075d80 g    DF .text 00000126  GLIBC_2.6   strerror_l
+000c2ff0  w   DF .text 00000070  GLIBC_2.0   open
+000d0ea0  w   DF .text 00000022  GLIBC_2.0   twalk
+0002dee0 g    DF .text 0000002d  GLIBC_2.0   srand48
+00023ed0  w   DF .text 00000011  GLIBC_2.3   toupper_l
+00102d10 g    DF .text 00000012  GLIBC_2.1   svcunixfd_create
+000d2ba0 g    DF .text 00000034  GLIBC_2.0   iopl
+000c6200 g    DF .text 00000026  GLIBC_2.0   ftw
+00077d80 g    DF .text 00000045  GLIBC_2.0   __wcstoull_internal
+000d7510 g    DF .text 00000141  GLIBC_2.0   sgetspent
+0006fe20  w   DF .text 00000121  GLIBC_2.0   strerror_r
+00065860 g    DF .text 00000016  GLIBC_2.2   _IO_iter_begin
+000df720 g    DF .text 0000004a  GLIBC_2.0   pthread_getschedparam
+000258d0  w   DF .text 00000040  GLIBC_2.2   dngettext
+000f9cd0 g    DF .text 00000039  GLIBC_2.2.3 __rpc_thread_createerr
+000cc0b0 g    DF .text 00000034  GLIBC_2.0   vhangup
+00082ab0 g    DF .text 00000035  GLIBC_2.0   localtime
+00100650 g    DF .text 0000008f  GLIBC_2.1   key_secretkey_is_set
+00082a20 g    DF .text 0000000d  GLIBC_2.0   difftime
+000cc0f0  w   DF .text 00000038  GLIBC_2.0   swapon
+00108f30 g    DF .text 00000017  GLIBC_2.1   endutxent
+000d2d90  w   DF .text 000000a5  GLIBC_2.1   lseek64
+000e8a60 g    DF .text 00000049  GLIBC_2.4   __wcsnrtombs_chk
+00061c70 g    DF .text 00000010  GLIBC_2.0   ferror_unlocked
+000d2e40  w   DF .text 00000034  GLIBC_2.0   umount
+00092a84  w   DF .text 00000013  GLIBC_2.1.1 _Exit
+000d31f0 g    DF .text 00000038  GLIBC_2.1   capset
+0006f840 g    DF .text 00000167  GLIBC_2.0   strchr
+000d7220  w   DF .text 00000073  GLIBC_2.3   wctrans_l
+000d2800 g    DF .text 0000003a  GLIBC_2.3   flistxattr
+000f5da0 g    DF .text 000001fd  GLIBC_2.0   clnt_spcreateerror
+0006f610 g    DF .text 00000078  GLIBC_2.0   obstack_free
+000df450 g    DF .text 00000043  GLIBC_2.0   pthread_attr_getscope
+000f1280 g    DF .text 000000a2  GLIBC_2.0   getaliasent
+00141360 g    DO .data.rel.ro  000001f8 (GLIBC_2.3)  _sys_errlist
+00141360 g    DO .data.rel.ro  00000210  GLIBC_2.4   _sys_errlist
+00141360 g    DO .data.rel.ro  000001f4 (GLIBC_2.1)  _sys_errlist
+00141360 g    DO .data.rel.ro  000001ec (GLIBC_2.0)  _sys_errlist
+0002b620 g    DF .text 00000070  GLIBC_2.1   sigignore
+0002af60  w   DF .text 00000022  GLIBC_2.0   sigreturn
+000ee830 g    DF .text 000001c7  GLIBC_2.2   rresvport_af
+000d4ef0 g    DF .text 000001a0  GLIBC_2.0   __monstartup
+000d5dd0  w   DF .text 000000a4  GLIBC_2.0   iswdigit
+000fa3a0 g    DF .text 00000037  GLIBC_2.0   svcerr_weakauth
+00060ad0  w   DF .text 00000017  GLIBC_2.0   fcloseall
+000e81a0 g    DF .text 0000010b  GLIBC_2.4   __wprintf_chk
+000d6180  w   DF .text 000000c9  GLIBC_2.0   iswcntrl
+000cce00  w   DF .text 0000002c  GLIBC_2.0   endmntent
+00056f40  w   DF .text 0000002f  GLIBC_2.0   funlockfile
+001447c4 g    DO .bss  00000004  GLIBC_2.0   __timezone
+00046500 g    DF .text 00000024  GLIBC_2.0   fprintf
+000d3b00 g    DF .text 00000037  GLIBC_2.0   getsockname
+000c1ec0 g    DF .text 00000038  GLIBC_2.0   utime
+0010eb40 g    DF .text 000001e4 (GLIBC_2.1)  scandir64
+0008ecb0 g    DF .text 000001e4  GLIBC_2.2   scandir64
+000d0a50 g    DF .text 00000045  GLIBC_2.0   hsearch
+000dd100  w   DF .text 000000dd  GLIBC_2.1   argp_error
+00146234 g    DO .bss  00000004  GLIBC_2.0   _nl_domain_bindings
+00075760 g    DF .text 00000041  GLIBC_2.1.1 __strpbrk_c2
+0002d1f0 g    DF .text 00000011  GLIBC_2.0   abs
+000d3df0  w   DF .text 0000006c  GLIBC_2.0   sendto
+000757b0 g    DF .text 0000004c  GLIBC_2.1.1 __strpbrk_c3
+000cc9e0  w   DF .text 0000041f  GLIBC_2.0   addmntent
+000d6ef0  w   DF .text 00000090  GLIBC_2.3   iswpunct_l
+00037150  w   DF .text 00000029  GLIBC_2.1   __strtold_l
+001082d0  w   DF .text 0000010f  GLIBC_2.0   updwtmp
+000e46e0 g    DF .text 00000372  GLIBC_2.0   __nss_database_lookup
+0005c3a0 g    DF .text 00000033  GLIBC_2.2   _IO_least_wmarker
+00070300  w   DF .text 000001b9  GLIBC_2.0   rindex
+00092a30  w   DF .text 00000051  GLIBC_2.0   vfork
+0010ed90 g    DF .text 000000e5 (GLIBC_2.0)  getgrent_r
+000fa1e0 g    DF .text 000000fe  GLIBC_2.0   xprt_register
+000393e0 g    DF .text 000000f0  GLIBC_2.1   addseverity
+0008fef0 g    DF .text 000000e2  GLIBC_2.1.2 getgrent_r
+000e7250 g    DF .text 000000bc  GLIBC_2.3.4 __vfprintf_chk
+00083540 g    DF .text 0000003c  GLIBC_2.0   mktime
+00100550 g    DF .text 00000100  GLIBC_2.1   key_gendes
+0002d3b0 g    DF .text 000000c5  GLIBC_2.0   mblen
+000d16e0  w   DF .text 0000005c  GLIBC_2.1   tdestroy
+000d2c50  w   DF .text 00000075  GLIBC_2.0   sysctl
+000f5a20 g    DF .text 000002e2  GLIBC_2.0   clnt_create
+0008e700 g    DF .text 00000024  GLIBC_2.0   alphasort
+001447c4  w   DO .bss  00000004  GLIBC_2.0   timezone
+000f90f0 g    DF .text 000000ec  GLIBC_2.0   xdr_rmtcall_args
+00070bd0 g    DF .text 00000104  GLIBC_2.0   __strtok_r
+00068ec0  w   DF .text 0000014b  GLIBC_2.0   mallopt
+000fde60 g    DF .text 00000035  GLIBC_2.0   xdrstdio_create
+00039c90 g    DF .text 00000029  GLIBC_2.1   strtoimax
+00056950  w   DF .text 00000039  GLIBC_2.0   getline
+00144100  w   DO .bss  00000004  GLIBC_2.0   __malloc_initialize_hook
+000d6c70 g    DF .text 00000093  GLIBC_2.1   __iswdigit_l
+00071170 g    DF .text 00000041  GLIBC_2.0   __stpcpy
+00016f70 g    DF .text 00000187  GLIBC_2.1   iconv
+000f8080 g    DF .text 000000f5  GLIBC_2.0   get_myaddress
+000ec990 g    DF .text 0000017d  GLIBC_2.1.2 getrpcbyname_r
+00111c90 g    DF .text 0000005f (GLIBC_2.0)  getrpcbyname_r
+00143344  w   DO .data 00000004  GLIBC_2.0   program_invocation_short_name
+000d3170 g    DF .text 00000038  GLIBC_2.0   bdflush
+0002d230  w   DF .text 00000031  GLIBC_2.1.1 imaxabs
+00016540 g    DF .text 0000002a (GLIBC_2.0)  __floatdidf
+000a2f60  w   DF .text 00000093  GLIBC_2.0   re_compile_fastmap
+000d29d0 g    DF .text 00000038  GLIBC_2.3   lremovexattr
+0010cb50 g    DF .text 000001b6 (GLIBC_2.0)  fdopen
+00057fa0 g    DF .text 000002da  GLIBC_2.1   fdopen
+000668e0 g    DF .text 000001b9  GLIBC_2.0   _IO_str_seekoff
+000ce900 g    DF .text 0000001d  GLIBC_2.0   setusershell
+00142740 g    DO .data.rel.ro  00000054  GLIBC_2.2   _IO_wfile_jumps
+0008ea50 g    DF .text 000000b0  GLIBC_2.2   readdir64
+0010e940 g    DF .text 000000af (GLIBC_2.1)  readdir64
+000f9750 g    DF .text 00000406  GLIBC_2.0   xdr_callmsg
+000f9e80 g    DF .text 00000036  GLIBC_2.0   svcerr_auth
+0002c3e0 g    DF .text 0000013e  GLIBC_2.0   qsort
+00037d10  w   DF .text 0000002b  GLIBC_2.0   canonicalize_file_name
+00093700 g    DF .text 00000034  GLIBC_2.0   __getpgid
+00016cf0 g    DF .text 0000027d  GLIBC_2.1   iconv_open
+00064de0 g    DF .text 0000002a  GLIBC_2.0   _IO_sgetn
+0002fc20 g    DF .text 0000003e  GLIBC_2.0   __strtod_internal
+0005adc0 g    DF .text 0000013c  GLIBC_2.2   _IO_fsetpos64
+0010d900 g    DF .text 0000010e (GLIBC_2.1)  _IO_fsetpos64
+000391c0  w   DF .text 00000042  GLIBC_2.3   strfmon_l
+0002de60 g    DF .text 00000034  GLIBC_2.0   mrand48
+000c1520 g    DF .text 00000013  GLIBC_2.2   posix_spawnattr_getflags
+000d39a0  w   DF .text 0000006c  GLIBC_2.0   accept
+0002d590 g    DF .text 00000046  GLIBC_2.0   wcstombs
+0006ce00 g    DF .text 000001e5  GLIBC_2.0   __libc_free
+000e9b50 g    DF .text 000001ab  GLIBC_2.0   gethostbyname2
+000fee80 g    DF .text 00000197  GLIBC_2.1   cbc_crypt
+000e5a00 g    DF .text 0000008c  GLIBC_2.0   __nss_hosts_lookup
+0002fb70  w   DF .text 00000030  GLIBC_2.1   __strtoull_l
+00100a20 g    DF .text 0000003a  GLIBC_2.1   xdr_netnamestr
+00066aa0 g    DF .text 00000189  GLIBC_2.0   _IO_str_overflow
+00144108  w   DO .bss  00000004  GLIBC_2.0   __after_morecore_hook
+000de250  w   DF .text 00000d40  GLIBC_2.1   argp_parse
+0005a520 g    DF .text 00000141  GLIBC_2.0   _IO_seekpos
+00072bf0 g    DF .text 000000a2  GLIBC_2.0   envz_get
+00071a00 g    DF .text 00000151  GLIBC_2.1   __strcasestr
+00093840  w   DF .text 00000053  GLIBC_2.0   getresuid
+000c1ce0 g    DF .text 0000003a  GLIBC_2.2   posix_spawnattr_setsigmask
+000dfdf0 g    DF .text 00000096  GLIBC_2.0   hstrerror
+000cf060 g    DF .text 0000059d  GLIBC_2.4   __vsyslog_chk
+000d34e0 g    DF .text 0000003a  GLIBC_2.4   inotify_add_watch
+0010cec0 g    DF .text 000001a5 (GLIBC_2.0)  _IO_proc_close
+000ca5e0  w   DF .text 000000d6  GLIBC_2.0   tcgetattr
+00023cb0 g    DF .text 0000000b  GLIBC_2.0   toascii
+00059b70 g    DF .text 000001a5  GLIBC_2.1   _IO_proc_close
+000c27b0  w   DF .text 0000012b  GLIBC_2.1   statfs64
+000f5040 g    DF .text 00000081  GLIBC_2.0   authnone_create
+00075000 g    DF .text 0000003f  GLIBC_2.1.1 __strcmp_gg
+00023e70  w   DF .text 00000017  GLIBC_2.3   isupper_l
+000cbfd0 g    DF .text 000000a5  GLIBC_2.0   sethostid
+00108f80 g    DF .text 00000023  GLIBC_2.1   getutxline
+000560d0 g    DF .text 000000a2  GLIBC_2.1   tmpfile64
+00092400  w   DF .text 0000026a  GLIBC_2.0   sleep
+00091e80  w   DF .text 00000034  GLIBC_2.0   times
+00063840 g    DF .text 000000dd  GLIBC_2.1   _IO_file_sync
+0010e5f0 g    DF .text 00000097 (GLIBC_2.0)  _IO_file_sync
+0007fef0 g    DF .text 0000003e  GLIBC_2.0   wcsxfrm
+000751b0 g    DF .text 00000046  GLIBC_2.1.1 __strcspn_g
+00073ef0  w   DF .text 00000d51  GLIBC_2.3   strxfrm_l
+0002b1d0 g    DF .text 0000004f  GLIBC_2.1   __libc_allocate_rtsig
+000e89c0 g    DF .text 00000049  GLIBC_2.4   __wcrtomb_chk
+00023f60 g    DF .text 0000003c  GLIBC_2.3   __ctype_toupper_loc
+000d2be0 g    DF .text 00000038  GLIBC_2.3.4 vm86
+000d3070 g    DF .text 00000034 (GLIBC_2.0)  vm86
+000cdd00 g    DF .text 0000002f  GLIBC_2.0   insque
+000f6500 g    DF .text 00000126  GLIBC_2.0   clntraw_create
+000d33b0 g    DF .text 00000094  GLIBC_2.6   epoll_pwait
+000cb800 g    DF .text 00000026  GLIBC_2.0   __getpagesize
+000e6a20 g    DF .text 00000078  GLIBC_2.3.4 __strcpy_chk
+0006ae90  w   DF .text 000000fc  GLIBC_2.0   valloc
+00023f20 g    DF .text 0000003c  GLIBC_2.3   __ctype_tolower_loc
+00108f10 g    DF .text 00000017  GLIBC_2.1   getutxent
+00065900 g    DF .text 00000045  GLIBC_2.2   _IO_list_unlock
+00143334 g    DO .data 00000004  GLIBC_2.0   obstack_alloc_failed_handler
+0005b6f0 g    DF .text 0000007c  GLIBC_2.2   fputws_unlocked
+000fcd00 g    DF .text 0000015c  GLIBC_2.0   xdr_array
+000d2990 g    DF .text 0000003a  GLIBC_2.3   llistxattr
+0002d070 g    DF .text 00000175  GLIBC_2.1.3 __cxa_finalize
+0002b190 g    DF .text 00000016  GLIBC_2.1   __libc_current_sigrtmin
+000d2e80  w   DF .text 00000038  GLIBC_2.1   umount2
+000cf790 g    DF .text 0000004b  GLIBC_2.0   syscall
+0002a5a0 g    DF .text 00000041  GLIBC_2.0   sigpending
+0002bbf0 g    DF .text 0000006c  GLIBC_2.0   bsearch
+00075290 g    DF .text 00000032  GLIBC_2.1.1 __strpbrk_cg
+000b78d0 g    DF .text 00000044  GLIBC_2.0   freeaddrinfo
+000713a0  w   DF .text 00000069  GLIBC_2.3   strncasecmp_l
+000236a0 g    DF .text 00000181  GLIBC_2.0   __assert_perror_fail
+000d2340  w   DF .text 000001a0  GLIBC_2.0   get_nprocs
+00111930 g    DF .text 0000005f (GLIBC_2.0)  getprotobyname_r
+00075cd0 g    DF .text 000000b0  GLIBC_2.3.4 __xpg_strerror_r
+0005a7d0  w   DF .text 00000189  GLIBC_2.0   setvbuf
+000eb7d0 g    DF .text 0000017d  GLIBC_2.1.2 getprotobyname_r
+00080fb0 g    DF .text 00000955  GLIBC_2.1   __wcsxfrm_l
+0005ab10  w   DF .text 0000009b  GLIBC_2.0   vsscanf
+00111370 g    DF .text 0000006c (GLIBC_2.0)  gethostbyaddr_r
+000e9670 g    DF .text 0000030c  GLIBC_2.1.2 gethostbyaddr_r
+00016890 g    DF .text 00000179 (GLIBC_2.0)  __divdi3
+00090ad0 g    DF .text 0000018e  GLIBC_2.0   fgetpwent
+000f1170 g    DF .text 000000a7  GLIBC_2.0   setaliasent
+0002a640 g    DF .text 000000a7  GLIBC_2.1.3 __sigsuspend
+000f9530 g    DF .text 0000007f  GLIBC_2.0   xdr_rejected_reply
+000d31b0 g    DF .text 00000038  GLIBC_2.1   capget
+0010ea10 g    DF .text 00000110 (GLIBC_2.1)  readdir64_r
+0008eb20 g    DF .text 00000110  GLIBC_2.2   readdir64_r
+000b7550 g    DF .text 0000003a  GLIBC_2.0   __sched_setscheduler
+000fe250 g    DF .text 000000fc  GLIBC_2.0   getpublickey
+000f9c90 g    DF .text 00000039  GLIBC_2.2.3 __rpc_thread_svc_pollfd
+000c7540 g    DF .text 00000551  GLIBC_2.0   fts_open
+000fa030 g    DF .text 0000007e  GLIBC_2.0   svc_unregister
+00106ae0  w   DF .text 00000062  GLIBC_2.0   pututline
+00093810  w   DF .text 0000002c  GLIBC_2.0   setsid
+00000004 g    D  .tdata        00000004  GLIBC_PRIVATE __resp
+00106970  w   DF .text 0000005e  GLIBC_2.0   getutent
+000c14a0 g    DF .text 00000037  GLIBC_2.2   posix_spawnattr_getsigdefault
+000d6db0  w   DF .text 00000092  GLIBC_2.3   iswgraph_l
+00045bf0 g    DF .text 00000902  GLIBC_2.1   printf_size
+000df110 g    DF .text 0000003c  GLIBC_2.0   pthread_attr_destroy
+0007feb0  w   DF .text 00000037  GLIBC_2.0   wcscoll
+00077bf0 g    DF .text 00000045  GLIBC_2.0   __wcstoul_internal
+0010a5d0 g    DF .text 00000031  GLIBC_2.0   __deregister_frame
+0002a360  w   DF .text 00000157  GLIBC_2.0   __sigaction
+00103630 g    DF .text 000000bb  GLIBC_2.1.1 xdr_uint64_t
+00103130 g    DF .text 00000274  GLIBC_2.1   svcunix_create
+0002e090  w   DF .text 00000058  GLIBC_2.0   nrand48_r
+000ca310 g    DF .text 00000076  GLIBC_2.0   cfsetspeed
+000d8030 g    DF .text 000003cc  GLIBC_PRIVATE _nss_files_parse_spent
+00112c00 g    DF __libc_freeres_fn     0000007b  GLIBC_2.1   __libc_freeres
+000c3c00  w   DF .text 000000b7  GLIBC_2.0   fcntl
+000e8010 g    DF .text 0000003b  GLIBC_2.4   __wcpncpy_chk
+000d6730  w   DF .text 0000009e  GLIBC_2.0   wctype
+00076340 g    DF .text 0000004f  GLIBC_2.0   wcsspn
+00110e20 g    DF .text 0000008e (GLIBC_2.1)  getrlimit64
+000caa50 g    DF .text 0000008e  GLIBC_2.2   getrlimit64
+000f37f0 g    DF .text 00000039  GLIBC_2.3.3 inet6_option_init
+000d71b0 g    DF .text 0000006e  GLIBC_2.1   __iswctype_l
+000cfd20 g    DF .text 00000055  GLIBC_2.0   ecvt
+000e7d90 g    DF .text 0000002e  GLIBC_2.4   __wmemmove_chk
+000e6d20 g    DF .text 00000032  GLIBC_2.3.4 __sprintf_chk
+000eea00 g    DF .text 0000001b  GLIBC_2.0   rresvport
+000f5860 g    DF .text 000001b4  GLIBC_2.0   bindresvport
+000ca240 g    DF .text 00000051  GLIBC_2.0   cfsetospeed
+000465f0 g    DF .text 00000034  GLIBC_2.1   __asprintf
+00071350 g    DF .text 0000004f  GLIBC_2.1   __strcasecmp_l
+0005f250 g    DF .text 000000f7  GLIBC_2.2   fwide
+0010eea0 g    DF .text 0000005f (GLIBC_2.0)  getgrgid_r
+000901a0 g    DF .text 000001ec  GLIBC_2.1.2 getgrgid_r
+000df5f0 g    DF .text 00000043  GLIBC_2.3.2 pthread_cond_init
+001111f0 g    DF .text 00000043 (GLIBC_2.0)  pthread_cond_init
+000937b0 g    DF .text 0000001c  GLIBC_2.0   setpgrp
+00075fc0 g    DF .text 0000005b  GLIBC_2.0   wcsdup
+000ca220 g    DF .text 00000018  GLIBC_2.0   cfgetispeed
+0002b920 g    DF .text 0000002b  GLIBC_2.0   atoll
+0002a060  w   DF .text 000000cf  GLIBC_2.0   bsd_signal
+00108b00  w   DF .text 0000039c  GLIBC_2.1   ptsname_r
+0002ea30  w   DF .text 00000030  GLIBC_2.1   __strtol_l
+000d2880 g    DF .text 00000046  GLIBC_2.3   fsetxattr
+000e94c0 g    DF .text 0000001d  GLIBC_2.0   __h_errno_location
+000fd360 g    DF .text 00000162  GLIBC_2.0   xdrrec_create
+0010dde0 g    DF .text 000003de (GLIBC_2.0)  _IO_file_seekoff
+00056ed0 g    DF .text 00000069  GLIBC_2.0   _IO_ftrylockfile
+000632e0 g    DF .text 0000055b  GLIBC_2.1   _IO_file_seekoff
+000c3610  w   DF .text 00000065  GLIBC_2.0   __close
+00065890 g    DF .text 0000000b  GLIBC_2.2   _IO_iter_next
+000ccec0  w   DF .text 000008d5  GLIBC_2.0   getmntent_r
+000750d0 g    DF .text 0000001b  GLIBC_2.1.1 __strchrnul_c
+0002d210 g    DF .text 00000011  GLIBC_2.0   labs
+001430c8 g    DO .data 00000004  GLIBC_2.0   obstack_exit_failure
+000c4bd0  w   DF .text 00000038  GLIBC_2.0   link
+00088f70 g    DF .text 0000215c  GLIBC_2.3   __strftime_l
+001008e0 g    DF .text 00000068  GLIBC_2.0   xdr_cryptkeyres
+000cd990 g    DF .text 00000167  GLIBC_2.4   futimesat
+0005cc20 g    DF .text 000000f1  GLIBC_2.2   _IO_wdefault_xsgetn
+000f0910 g    DF .text 00000399  GLIBC_2.0   innetgr
+001435f8 g    DO .data 00000004  GLIBC_2.0   _IO_list_all
+000c33c0  w   DF .text 00000089  GLIBC_2.4   openat
+0005c1c0  w   DF .text 000000f7  GLIBC_2.2   vswprintf
+000d6be0 g    DF .text 00000090  GLIBC_2.1   __iswcntrl_l
+000604b0  w   DF .text 000000dd  GLIBC_2.0   vdprintf
+000e7a30 g    DF .text 00000049  GLIBC_2.4   __pread64_chk
+000750f0 g    DF .text 0000001d  GLIBC_2.1.1 __strchrnul_g
+000f7430 g    DF .text 00000046  GLIBC_2.0   clntudp_create
+000eb680 g    DF .text 0000012d  GLIBC_2.0   getprotobyname
+0010a610 g    DF .text 000000ea  GCC_3.0     __deregister_frame_info_bases
+000596e0 g    DF .text 000001a4  GLIBC_2.1   _IO_getline_info
+00023eb0  w   DF .text 00000011  GLIBC_2.3   tolower_l
+00061460 g    DF .text 00000038  GLIBC_2.2   __fsetlocking
+00088e80  w   DF .text 00000044  GLIBC_2.3.2 strptime_l
+00072130  w   DF .text 000000d8  GLIBC_2.0   argz_create_sep
+001433f8 g    DO .data 00000004 (GLIBC_2.0)  __ctype32_b
+000c1f90 g    DF .text 0000008e  GLIBC_2.0   __xstat
+000800b0  w   DF .text 00000ef3  GLIBC_2.3   wcscoll_l
+000e6100 g    DF .text 00000160  GLIBC_2.1   __backtrace
+000d30b0 g    DF .text 00000038 (GLIBC_2.0)  getrlimit
+000ca9d0 g    DF .text 0000003f  GLIBC_2.2   getrlimit
+0002a860  w   DF .text 00000063  GLIBC_2.0   sigsetmask
+00100470 g    DF .text 00000073  GLIBC_2.1   key_encryptsession
+00023a20 g    DF .text 00000048  GLIBC_2.0   isdigit
+00055cc0 g    DF .text 00000041  GLIBC_2.0   scanf
+000d28d0 g    DF .text 00000040  GLIBC_2.3   getxattr
+000c2d30 g    DF .text 00000022  GLIBC_2.3.2 lchmod
+000239d0 g    DF .text 00000046  GLIBC_2.0   iscntrl
+000d43c0 g    DF .text 000000c5  GLIBC_PRIVATE __libc_msgrcv
+000cb830  w   DF .text 00000039  GLIBC_2.0   getdtablesize
+000d35d0  w   DF .text 00000046  GLIBC_2.0   mount
+0012d500 g    DO .rodata       00000004  GLIBC_2.4   sys_nerr
+0012d50c g    DO .rodata       00000004 (GLIBC_2.3)  sys_nerr
+0012d508 g    DO .rodata       00000004 (GLIBC_2.1)  sys_nerr
+0012d504 g    DO .rodata       00000004 (GLIBC_2.0)  sys_nerr
+00023ed0 g    DF .text 00000011  GLIBC_2.1   __toupper_l
+0002d9f0  w   DF .text 000000b7  GLIBC_2.0   random_r
+000d64c0  w   DF .text 000000c9  GLIBC_2.0   iswpunct
+000d1c30 g    DF .text 00000026  GLIBC_2.0   errx
+00071350  w   DF .text 0000004f  GLIBC_2.3   strcasecmp_l
+00076550 g    DF .text 00000073  GLIBC_2.0   wmemchr
+00091e40  w   DF .text 00000034  GLIBC_2.0   uname
+00070ee0 g    DF .text 0000008f  GLIBC_2.0   memmove
+00100270 g    DF .text 0000005a  GLIBC_2.1   key_setnet
+00063150 g    DF .text 00000097  GLIBC_2.1   _IO_file_write
+0010dd70 g    DF .text 0000006d (GLIBC_2.0)  _IO_file_write
+00146514 g    DO .bss  00000004  GLIBC_2.2   svc_max_pollfd
+00077e10  w   DF .text 0000003f  GLIBC_2.0   wcstod
+00146238 g    DO .bss  00000004  GLIBC_2.0   _nl_msg_cat_cntr
+000e7500 g    DF .text 00000046  GLIBC_2.3.4 __chk_fail
+000f9fa0 g    DF .text 00000082  GLIBC_2.0   svc_getreqset
+000d5c60  w   DF .text 00000013  GLIBC_2.0   mcount
+0006df50 g    DF .text 00000099  GLIBC_2.0   mprobe
+000c15e0 g    DF .text 00000050  GLIBC_2.2   posix_spawnp
+00077f10  w   DF .text 0000003f  GLIBC_2.0   wcstof
+0010e690 g    DF .text 00000153 (GLIBC_2.0)  _IO_file_overflow
+000e8b00 g    DF .text 00000042  GLIBC_2.4   __wcsrtombs_chk
+000e6260  w   DF .text 000002bc  GLIBC_2.1   backtrace_symbols
+00063920 g    DF .text 000001ef  GLIBC_2.1   _IO_file_overflow
+00065950 g    DF .text 0000002e  GLIBC_2.2   _IO_list_resetlock
+000d3030 g    DF .text 0000003a  GLIBC_PRIVATE __modify_ldt
+000d4ea0 g    DF .text 00000044  GLIBC_2.0   _mcleanup
+000d7220 g    DF .text 00000073  GLIBC_2.2   __wctrans_l
+00023e90  w   DF .text 00000017  GLIBC_2.3   isxdigit_l
+0002b2f0  w   DF .text 00000061  GLIBC_2.1   sigtimedwait
+00059270 g    DF .text 0000015f  GLIBC_2.0   _IO_fwrite
+000effc0 g    DF .text 00000426  GLIBC_2.0   ruserpass
+00076390 g    DF .text 0000009b  GLIBC_2.0   wcstok
+000df8d0 g    DF .text 00000030  GLIBC_2.0   pthread_self
+000fa2e0 g    DF .text 000000b9  GLIBC_2.0   svc_register
+00091f70 g    DF .text 00000070  GLIBC_2.0   __waitpid
+00077ba0 g    DF .text 00000046  GLIBC_2.0   wcstol
+0005ad80  w   DF .text 00000032  GLIBC_2.1   fopen64
+000df400 g    DF .text 00000043  GLIBC_2.0   pthread_attr_setschedpolicy
+0005c2c0 g    DF .text 000000a6  GLIBC_2.2   vswscanf
+00016570 g    DF .text 00000031 (GLIBC_2.0)  __fixunsxfdi
+000ec1c0 g    DF .text 000000b0  GLIBC_2.0   endservent
+000e5b20 g    DF .text 0000008c  GLIBC_2.0   __nss_group_lookup
+000c0e50  w   DF .text 000000bc  GLIBC_2.1   pread
+00016610 g    DF .text 00000038 (GLIBC_2.0)  __ucmpdi2
+0003bf00 g    DF .text 00000030  GLIBC_2.0   ctermid
+00077b20  w   DF .text 00000024  GLIBC_2.2   wcschrnul
+00109740 g    DF .text 00000099  GLIBC_PRIVATE __libc_dlsym
+000c0f10  w   DF .text 000000bc  GLIBC_2.1   pwrite
+000cce00 g    DF .text 0000002c  GLIBC_2.2   __endmntent
+00077c90  w   DF .text 00000046  GLIBC_2.0   wcstoq
+0002ab50 g    DF .text 0000007c  GLIBC_2.0   sigstack
+00092a30 g    DF .text 00000051  GLIBC_2.1.2 __vfork
+00071970  w   DF .text 00000090  GLIBC_2.0   strsep
+00061360 g    DF .text 00000013  GLIBC_2.2   __freadable
+000d6b50  w   DF .text 00000090  GLIBC_2.3   iswblank_l
+0006f210 g    DF .text 000000c9  GLIBC_2.0   _obstack_begin
+000f0f10 g    DF .text 000000be  GLIBC_2.0   getnetgrent
+000645a0 g    DF .text 00000210  GLIBC_2.1   _IO_file_underflow
+0010e1c0 g    DF .text 000000e8 (GLIBC_2.0)  _IO_file_underflow
+00100e00 g    DF .text 000000fb  GLIBC_2.1   user2netname
+000e4630 g    DF .text 000000b0  GLIBC_2.0   __nss_next
+000770a0  w   DF .text 0000035f  GLIBC_2.0   wcsrtombs
+00143970 g    DO .data 00000004  GLIBC_2.0   __morecore
+00024400  w   DF .text 00000015  GLIBC_2.0   bindtextdomain
+000c37a0  w   DF .text 00000038  GLIBC_2.0   access
+000b7590 g    DF .text 00000034  GLIBC_2.0   __sched_getscheduler
+000397c0 g    DF .text 00000495  GLIBC_2.1   fmtmsg
+000d0410 g    DF .text 000000c4  GLIBC_2.0   qfcvt
+0002e490 g    DF .text 00000045 (GLIBC_2.0)  __strtoq_internal
+0008df80 g    DF .text 00000056  GLIBC_2.1   ntp_gettime
+0006de70 g    DF .text 000000e0  GLIBC_2.2   mcheck_pedantic
+0006e9d0 g    DF .text 000001e5  GLIBC_2.0   mtrace
+0005fc60 g    DF .text 000000e7  GLIBC_2.0   _IO_getc
+000c23f0 g    DF .text 000001dc  GLIBC_2.4   __fxstatat
+00071cb0 g    DF .text 00000084  GLIBC_2.0   memmem
+0014635c g    DO .bss  00000004  GLIBC_2.0   loc1
+00061300 g    DF .text 0000002a  GLIBC_2.2   __fbufsize
+00065710 g    DF .text 0000002f  GLIBC_2.0   _IO_marker_delta
+00146360 g    DO .bss  00000004  GLIBC_2.0   loc2
+00071d40  w   DF .text 000000c6  GLIBC_2.1   rawmemchr
+000cbd50 g    DF .text 0000002c  GLIBC_2.0   sync
+000d3860 g    DF .text 00000034  GLIBC_2.0   sysinfo
+0008f810 g    DF .text 000000ae  GLIBC_2.2.4 getgrouplist
+00070ec0  w   DF .text 0000001e  GLIBC_2.0   bcmp
+0005b1d0  w   DF .text 0000002a  GLIBC_2.2   getwc_unlocked
+0002aa40  w   DF .text 00000104  GLIBC_2.0   sigvec
+001430d4 g    DO .data 00000004  GLIBC_2.0   opterr
+00071f70  w   DF .text 00000074  GLIBC_2.0   argz_append
+000f9f60 g    DF .text 00000036  GLIBC_2.0   svc_getreq
+00093600  w   DF .text 00000070  GLIBC_2.0   setgid
+00068a60  w   DF .text 0000045a  GLIBC_2.0   malloc_set_state
+000e69c0 g    DF .text 00000057  GLIBC_2.3.4 __strcat_chk
+00072040 g    DF .text 00000041  GLIBC_2.0   __argz_count
+0005c030 g    DF .text 00000039  GLIBC_2.2   wprintf
+000d86f0  w   DF .text 00000079  GLIBC_2.0   ulckpwdf
+000c85f0 g    DF .text 00000146  GLIBC_2.0   fts_children
+00111a00 g    DF .text 00000066 (GLIBC_2.0)  getservbyport_r
+000ebe10 g    DF .text 000001fb  GLIBC_2.1.2 getservbyport_r
+000c1f00 g    DF .text 0000003a  GLIBC_2.0   mkfifo
+00070ce0 g    DF .text 0000003e  GLIBC_2.0   strxfrm
+000c3580  w   DF .text 00000089  GLIBC_2.4   openat64
+000b7590  w   DF .text 00000034  GLIBC_2.0   sched_getscheduler
+0002ce30  w   DF .text 00000051  GLIBC_2.0   on_exit
+000c38e0 g    DF .text 000002bb  GLIBC_2.4   faccessat
+001465b4 g    DO .bss  00000004  GLIBC_2.1   __key_decryptsession_pk_LOCAL
+000e1410 g    DF .text 0000000f  GLIBC_2.0   __res_randomid
+000602b0 g    DF .text 00000032  GLIBC_2.0   setbuf
+00059890 g    DF .text 00000180  GLIBC_2.0   _IO_gets
+00061f30 g    DF .text 000000a7  GLIBC_2.1   fwrite_unlocked
+0006f9b0 g    DF .text 00000054  GLIBC_2.0   strcmp
+00029f60 g    DF .text 00000064  GLIBC_PRIVATE __libc_longjmp
+0002e530 g    DF .text 00000045  GLIBC_2.0   __strtoull_internal
+000d6f80  w   DF .text 00000092  GLIBC_2.3   iswspace_l
+000d3ca0  w   DF .text 0000006c  GLIBC_2.0   recvmsg
+00023dd0  w   DF .text 00000017  GLIBC_2.3   islower_l
+00066240 g    DF .text 00000128  GLIBC_2.0   __underflow
+000c10c0  w   DF .text 000000ef  GLIBC_2.1   pwrite64
+0006fd60 g    DF .text 000000b6  GLIBC_2.0   strerror
+000391c0 g    DF .text 00000042  GLIBC_2.1   __strfmon_l
+000fca40 g    DF .text 0000003a  GLIBC_2.0   xdr_wrapstring
+000ca6c0 g    DF .text 00000038  GLIBC_2.0   tcgetpgrp
+00015f50 g    DF .text 000001b6  GLIBC_2.0   __libc_start_main
+0008ea40 g    DF .text 0000000a  GLIBC_2.0   dirfd
+0005b1d0  w   DF .text 0000002a  GLIBC_2.2   fgetwc_unlocked
+00110d50 g    DF .text 0000002b (GLIBC_2.1)  nftw
+000f96d0 g    DF .text 00000022  GLIBC_2.0   xdr_des_block
+000c61a0 g    DF .text 00000052  GLIBC_2.3.3 nftw
+000f94a0 g    DF .text 0000008c  GLIBC_2.0   xdr_callhdr
+000d6e50  w   DF .text 00000092  GLIBC_2.3   iswprint_l
+001009b0 g    DF .text 0000006c  GLIBC_2.0   xdr_cryptkeyarg2
+000913e0 g    DF .text 000000a7  GLIBC_2.0   setpwent
+000d4570 g    DF .text 00000062  GLIBC_2.0   semop
+000cc420 g    DF .text 00000034  GLIBC_2.0   endfsent
+00023e70 g    DF .text 00000017  GLIBC_2.1   __isupper_l
+0005c070 g    DF .text 00000041  GLIBC_2.2   wscanf
+0005f6a0  w   DF .text 0000009a  GLIBC_2.0   ferror
+00106a70  w   DF .text 00000069  GLIBC_2.0   getutent_r
+000fec10 g    DF .text 0000009b  GLIBC_2.1   authdes_create
+000c8f00 g    DF .text 00000220  GLIBC_2.4   ppoll
+00071170  w   DF .text 00000041  GLIBC_2.0   stpcpy
+000df5b0 g    DF .text 0000003c  GLIBC_2.3.2 pthread_cond_destroy
+00091bf0  w   DF .text 00000221  GLIBC_2.0   fgetpwent_r
+00073ef0 g    DF .text 00000d51  GLIBC_2.1   __strxfrm_l
+00106940 g    DF .text 00000022  GLIBC_2.1   fdetach
+00029710  w   DF .text 00000085  GLIBC_2.0   ldexp
+001111b0 g    DF .text 0000003c (GLIBC_2.0)  pthread_cond_destroy
+000cfcd0 g    DF .text 00000050  GLIBC_2.0   gcvt
+00091ec0  w   DF .text 000000ac  GLIBC_2.0   __wait
+0005bf70  w   DF .text 00000034  GLIBC_2.2   fwprintf
+000fcbb0 g    DF .text 000000fe  GLIBC_2.0   xdr_bytes
+0002cbe0  w   DF .text 00000074  GLIBC_2.0   setenv
+00022820  w   DF .text 00000067  GLIBC_2.3   nl_langinfo_l
+000cae80 g    DF .text 0000003a  GLIBC_2.0   setpriority
+000c1310 g    DF .text 00000094  GLIBC_2.2   posix_spawn_file_actions_addopen
+00017b30 g    DF .text 00000016  GLIBC_PRIVATE __gconv_get_modules_db
+00066080 g    DF .text 0000007e  GLIBC_2.0   _IO_default_doallocate
+001097e0 g    DF .text 00000088  GLIBC_PRIVATE __libc_dlopen_mode
+00058d00 g    DF .text 00000118  GLIBC_2.0   _IO_fread
+0008f090 g    DF .text 00000192  GLIBC_2.0   fgetgrent
+000e7ac0 g    DF .text 00000040  GLIBC_2.4   __recvfrom_chk
+000cb9d0 g    DF .text 00000038  GLIBC_2.0   setdomainname
+000c36f0  w   DF .text 00000070  GLIBC_2.0   write
+000ebcb0 g    DF .text 0000013d  GLIBC_2.0   getservbyport
+000f2380 g    DF .text 00000048  GLIBC_2.1   if_freenameindex
+00034930  w   DF .text 00000029  GLIBC_2.3   strtod_l
+000eaae0 g    DF .text 000000ab  GLIBC_2.0   getnetent
+00106f60  w   DF .text 00000068  GLIBC_2.0   getutline_r
+00076020  w   DF .text 00000054  GLIBC_2.0   wcslen
+000c91a0 g    DF .text 000001ae  GLIBC_2.2   posix_fallocate
+000c3fc0 g    DF .text 00000034  GLIBC_2.0   __pipe
+000d8770  w   DF .text 0000038b  GLIBC_2.0   lckpwdf
+000fdb00 g    DF .text 000000aa  GLIBC_2.0   xdrrec_endofrecord
+00060af0 g    DF .text 000000fa  GLIBC_2.1   fseeko
+000d72a0  w   DF .text 0000005d  GLIBC_2.3   towctrans_l
+0006fa10 g    DF .text 00000037  GLIBC_2.0   strcoll
+000f44a0 g    DF .text 00000048  GLIBC_2.5   inet6_opt_set_val
+0002a060  w   DF .text 000000cf  GLIBC_2.0   ssignal
+0003d040 g    DF .text 000043ec  GLIBC_2.0   vfprintf
+0002d680  w   DF .text 00000067  GLIBC_2.0   random
+00094d50 g    DF .text 0000006a  GLIBC_2.0   globfree
+000d3270 g    DF .text 0000003a  GLIBC_2.0   delete_module
+00077e50 g    DF .text 0000003e  GLIBC_2.0   __wcstold_internal
+000dd050  w   DF .text 000000af  GLIBC_2.1   argp_state_help
+00141580 g    DO .data.rel.ro  00000100 (GLIBC_2.1)  _sys_siglist
+00141580 g    DO .data.rel.ro  00000104  GLIBC_2.3.3 _sys_siglist
+00072e20 g    DF .text 0000002b  GLIBC_2.0   basename
+00141580 g    DO .data.rel.ro  00000080 (GLIBC_2.0)  _sys_siglist
+000e8f40  w   DF .text 00000007  GLIBC_2.0   ntohl
+00093780 g    DF .text 00000008  GLIBC_2.0   getpgrp
+000b7430 g    DF .text 00000047  GLIBC_2.0   getopt_long_only
+000cf690 g    DF .text 000000a2  GLIBC_2.0   closelog
+00076130 g    DF .text 000000d2  GLIBC_2.0   wcsncmp
+000b5ae0  w   DF .text 0000004d  GLIBC_2.0   re_exec
+00023cc0 g    DF .text 00000011  GLIBC_2.0   isascii
+000d2340  w   DF .text 000001a0  GLIBC_2.0   get_nprocs_conf
+000f5fa0 g    DF .text 0000003d  GLIBC_2.0   clnt_pcreateerror
+000e7c70 g    DF .text 0000003b  GLIBC_2.4   __ptsname_r_chk
+000d4ef0  w   DF .text 000001a0  GLIBC_2.0   monstartup
+000c3c00  w   DF .text 000000b7  GLIBC_2.0   __fcntl
+000e8f50  w   DF .text 0000000e  GLIBC_2.0   ntohs
+00046570  w   DF .text 0000003b  GLIBC_2.0   snprintf
+00066460 g    DF .text 00000066  GLIBC_2.0   __overflow
+0002e3f0 g    DF .text 00000045  GLIBC_2.0   __strtoul_internal
+000766b0  w   DF .text 00000024  GLIBC_2.0   wmemmove
+000c9170 g    DF .text 00000030  GLIBC_2.3.3 posix_fadvise64
+00110db0 g    DF .text 00000024 (GLIBC_2.2)  posix_fadvise64
+00100950 g    DF .text 00000057  GLIBC_2.0   xdr_cryptkeyarg
+00094670  w   DF .text 0000041d  GLIBC_2.0   sysconf
+000e7330 g    DF .text 000001ab  GLIBC_2.3.4 __gets_chk
+0006f610 g    DF .text 00000078  GLIBC_2.0   _obstack_free
+000d2fc0 g    DF .text 00000068  GLIBC_2.3.3 gnu_dev_makedev
+000fc580 g    DF .text 000000ea  GLIBC_2.1.1 xdr_u_hyper
+000f0850 g    DF .text 000000bb  GLIBC_2.0   setnetgrent
+000c22a0 g    DF .text 0000014d  GLIBC_2.4   __xmknodat
+000165e0 g    DF .text 00000023 (GLIBC_2.0)  __fixunsdfdi
+0010cb50 g    DF .text 000001b6 (GLIBC_2.0)  _IO_fdopen
+00057fa0 g    DF .text 000002da  GLIBC_2.1   _IO_fdopen
+000f38e0 g    DF .text 000000d6  GLIBC_2.3.3 inet6_option_find
+000791a0  w   DF .text 00000040  GLIBC_2.3   wcstoull_l
+000f6d20 g    DF .text 000002a9  GLIBC_2.0   clnttcp_create
+00023df0  w   DF .text 00000017  GLIBC_2.3   isgraph_l
+000ec010 g    DF .text 000000a2  GLIBC_2.0   getservent
+000e88e0 g    DF .text 0000003b  GLIBC_2.4   __ttyname_r_chk
+0002d5e0 g    DF .text 00000093  GLIBC_2.0   wctomb
+00146364 g    DO .bss  00000004  GLIBC_2.0   locs
+00062090 g    DF .text 00000099  GLIBC_2.1   fputs_unlocked
+0002af90 g    DF .text 00000024  GLIBC_2.0   siggetmask
+00143330  w   DO .data 00000004  GLIBC_2.0   __memalign_hook
+00090d60 g    DF .text 00000177  GLIBC_2.0   putpwent
+0005bdb0 g    DF .text 0000004f  GLIBC_2.2   putwchar_unlocked
+00075ac0 g    DF .text 00000073  GLIBC_2.1.1 __strncpy_by2
+000d45e0 g    DF .text 00000062  GLIBC_2.0   semget
+00066ce0 g    DF .text 0000004c  GLIBC_2.0   _IO_str_init_readonly
+00075b40 g    DF .text 0000006b  GLIBC_2.1.1 __strncpy_by4
+0002dbc0  w   DF .text 00000116  GLIBC_2.0   initstate_r
+000f95b0 g    DF .text 0000008f  GLIBC_2.0   xdr_accepted_reply
+0005ab10  w   DF .text 0000009b  GLIBC_2.0   __vsscanf
+0006ce00 g    DF .text 000001e5  GLIBC_2.0   free
+00076430 g    DF .text 0000011e  GLIBC_2.0   wcsstr
+00076310 g    DF .text 00000028  GLIBC_2.0   wcsrchr
+00023b60 g    DF .text 00000046  GLIBC_2.0   ispunct
+00062390 g    DF .text 0000003b  GLIBC_2.0   _IO_file_seek
+001447c0 g    DO .bss  00000004  GLIBC_2.0   __daylight
+000e6740 g    DF .text 00000005  GLIBC_2.2   __cyg_profile_func_exit
+000df270 g    DF .text 00000043  GLIBC_2.0   pthread_attr_getinheritsched
+000e7b60 g    DF .text 00000032  GLIBC_2.5   __readlinkat_chk
+001003f0 g    DF .text 00000073  GLIBC_2.1   key_decryptsession
+000d1960 g    DF .text 00000137  GLIBC_2.0   vwarn
+00076730  w   DF .text 00000038  GLIBC_2.0   wcpcpy
+
+