Commit mostly-finished clscan, a tool to scan file copyrights and licenses
authorIan Beckwith <ianb@erislabs.net>
Wed, 9 Sep 2009 17:46:03 +0000 (18:46 +0100)
committerIan Beckwith <ianb@erislabs.net>
Wed, 9 Sep 2009 17:46:03 +0000 (18:46 +0100)
debian/clscan/clscan [new file with mode: 0755]
debian/clscan/copyright.in [new file with mode: 0644]
debian/clscan/files.yaml [new file with mode: 0644]
debian/copyright.new [new file with mode: 0644]

diff --git a/debian/clscan/clscan b/debian/clscan/clscan
new file mode 100755 (executable)
index 0000000..fd7413b
--- /dev/null
@@ -0,0 +1,429 @@
+#!/usr/bin/perl -w
+# Ian Beckwith <ianb@erislabs.net>
+#
+
+use strict;
+use vars qw($me);
+$me=($0=~/(?:.*\/)?(.*)/)[0];
+
+use Getopt::Long;
+use YAML::Any;
+use Digest::SHA qw(sha256_hex);
+use File::Find;
+use File::Copy;
+
+our $CLSCANDIR="debian/clscan";
+our $FILESCACHE="$CLSCANDIR/files.yaml";
+our $NEWFILES="$CLSCANDIR/new.txt";
+our $COPYRIGHTSTUB="$CLSCANDIR/copyright.in";
+
+our @filenames=();
+our $files={};
+our $new={};
+
+my $scan=0;
+my $merge=0;
+my $writecopyright=0;
+
+usage() unless(@ARGV);
+usage() unless GetOptions("scan|s" => \$scan,
+                         "merge|m" => \$merge,
+                         "write|w" => \$writecopyright,
+                         "help|h" => sub { usage(); });
+
+load_cache();
+scan() if($scan);
+merge() if($merge);
+write_copyright() if ($merge || $writecopyright);
+
+sub scan
+{
+    get_filenames();
+    for my $file (@filenames)
+    {
+       scan_file($file);
+    }
+    write_new();
+    find_deleted();
+}
+
+sub merge
+{
+    merge_new();
+    save_cache();
+}
+
+sub write_copyright
+{
+    unless(keys(%$files))
+    {
+       die("$me: no files known, run $0 --scan\n");
+    }
+    unless(copy($COPYRIGHTSTUB, "debian/copyright.new"))
+    {
+       die("$me: cannot copy $COPYRIGHTSTUB to debian/copyright: $!\n");
+    }
+    unless(open(COPYRIGHT, ">>debian/copyright.new"))
+    {
+       die("$me: cannot append to debian/copyright: $!\n");
+    }
+
+    # group files by license/license_text/copyright
+    my $licenses={};
+    for my $file (sort keys(%$files))
+    {
+       my $license=$files->{$file}->{license};
+       my $copyright=$files->{$file}->{copyright};
+       my $license_text=$files->{$file}->{license_text};
+       push(@{$licenses->{$license}->{$license_text}->{$copyright}}, $file);
+    }
+    for my $license (sort keys(%$licenses))
+    {
+       for my $license_text (sort keys(%{$licenses->{$license}}))
+       {
+           for my $copyright (sort keys(%{$licenses->{$license}->{$license_text}}))
+           {
+               next if(!length($license) && !length($copyright) && !length($license_text));
+               my @filelist=sort @{$licenses->{$license}->{$license_text}->{$copyright}};
+               print COPYRIGHT "Files: ", join(', ', @filelist), "\n";
+               print COPYRIGHT "Copyright: $copyright\n" if length($copyright);
+               print COPYRIGHT "License: $license\n" if length($license);
+               if(length($license_text))
+               {
+                   my @text=split(/\n/, $license_text);
+                   print COPYRIGHT map { "    " . $_ . "\n" } @text;
+               }
+               print COPYRIGHT "\n";
+           }
+       }
+    }
+    print COPYRIGHT license_trailer(sort keys(%$licenses));
+    close(COPYRIGHT);
+}
+
+sub license_trailer
+{
+    my @licenses_used=@_;
+    my $license_data = {
+       "Apache-2.0" => "Apache License Version 2.0",
+       "Artistic" => "Artistic License",
+       "GFDL-1.2" => "GNU Free Documentation License Version 1.2",
+       "GFDL-1.3" => "GNU Free Documentation License Version 1.3",
+       "GFDL" => "GNU Free Documentation License",
+       "GPL-2" => "GNU General Public License Version 2",
+       "GPL-3" => "GNU General Public License Version 3",
+       "GPL" => "GNU General Public License",
+       "LGPL-2" => "GNU Library General Public License Version 2",
+       "LGPL-2.1" => "GNU Lesser General Public License Version 2.1",
+       "LGPL-3" => "GNU Lesser General Public License Version 3",
+       "LGPL" => "GNU Lesser General Public License",
+    };
+
+    my %types_found=();
+TYPE: for my $type (keys(%$license_data))
+    {
+       for my $license (@licenses_used)
+       {
+           if($license =~ /$type(\+|\b)/i)
+           {
+               $types_found{$type}=1;
+               # avoid matching eg GPL-2 *and* GPL
+               next TYPE;
+           }
+       }
+    }
+    my $text="\n";
+    for my $type (sort keys(%types_found))
+    {
+       $text .= "The complete text of the " . $license_data->{$type} ." can be\n";
+       $text .= "found in /usr/share/common-licenses/$type\n";
+    }
+    return $text;
+}
+
+
+sub merge_new
+{
+    unless(open(NEW, $NEWFILES))
+    {
+       die("$me: $NEWFILES: cannot open: $!\n");
+    }
+    my $license='';
+    my $copyright='';
+    my $hash='';
+    my $file='';
+    my $license_text='';
+    my $in_license_text=0;
+    my $line=0;
+    while(<NEW>)
+    {
+       $line++;
+       chomp;
+       next if(/^\s*$/);
+       next if(/^\s*\#/);
+       if($in_license_text && /^\s+(.*)/)
+       {
+           $license_text .= "\n" . $1;
+       }
+       elsif(/^File:\s*(.*)/)
+       {
+           my $newfile=$1;
+           # save previous entry
+           if(length($file) && length($hash))
+           {
+               $files->{$file}={ hash=>$hash,
+                                 copyright=>$copyright,
+                                 license=>$license,
+                                 license_text=>$license_text };
+           }
+           $file=$newfile;
+           $license='';
+           $copyright='';
+           $hash='';
+           $license_text='';
+       }
+       elsif(/^Hash:\s*(.*)/)
+       {
+           $hash=$1;
+       }
+       elsif(/^Copyright:\s*(.*)/)
+       {
+           $copyright=$1;
+       }
+       elsif(/^License:\s*(.*)/)
+       {
+           $license=$1;
+       }
+       elsif(/^License_text:\s*(.*)/)
+       {
+           $in_license_text=1;
+           $license_text=$1;
+       }
+       elsif($in_license_text && /^\s+(.*)/)
+       {
+           $license_text .= "\n" . $1;
+       }
+       else
+       {
+           warn("$me: $file: line $line not recognized\n");
+       }
+    }
+    close(NEW);
+    # save last entry
+    if(length($file) && length($hash))
+    {
+       $files->{$file}={ hash=>$hash,
+                         copyright=>$copyright,
+                         license=>$license,
+                         license_text=>$license_text };
+    }
+}
+
+sub guess_license
+{
+    my $file=shift;
+    my $license='';
+    my $copyright='';
+    if(open(LICENSECHECK, "licensecheck --copyright \"$file\"|"))
+    {
+       while(<LICENSECHECK>)
+       {
+           chomp;
+           if(/^\s+\[(.*)\]$/)
+           {
+               $copyright=$1;
+           }
+           elsif(/.*:\s+(.*)/)
+           {
+               $license=$1;
+           }
+       }
+       close(LICENSECHECK);
+       $copyright =~ s/^\s*Copyright\s*:\s*//;
+       $license =~ s/.*UNKNOWN.*//;
+       $license =~ s/(L?GPL) \(v([\.\d]+) or later\)/$1-$2+/i;
+       $license =~ s/(L?GPL) \(v([\.\d]+)\)/$1-$2/i;
+       $license =~ s/G?FDL \(v([\.\d]+) or later\)/GFDL-$1+/i;
+       $license =~ s/G?FDL \(v([\.\d]+)\)/GFDL-$1/i;
+       $license =~ s/Apache \(v([\.\d]+) or later\)/Apache-$1+/i;
+       $license =~ s/Apache \(v([\.\d]+)\)/Apache-$1+/i;
+    }
+    return($license, $copyright);
+}
+
+sub scan_file
+{
+    my $filename=shift;
+    unless(open(FILE, $filename))
+    {
+       warn("$me: $filename: cannot open: $!\n");
+       return;
+    }
+    my $header='';
+    for(my $i=0; $i < 15; $i++)
+    {
+       my $line=<FILE>;
+       last unless($line);
+       $header .= $line;
+    }
+    close(FILE);
+    my $hash=sha256_hex($header);
+    if( (!exists($files->{$filename})) ||
+       ($files->{$filename}->{hash} ne $hash))
+    {
+       filechanged($filename, $hash, $header);
+    }
+}
+
+
+sub filechanged
+{
+    my($filename, $hash, $header)=@_;
+    my($license_guess, $copyright_guess)=guess_license($filename);
+    $new->{$filename}={
+       hash=>$hash,
+       license=>$license_guess,
+       copyright=>$copyright_guess,
+       header=>$header,
+    };
+    if(exists($files->{$filename}))
+    {
+       if(exists($files->{$filename}->{copyright}))
+       {
+           $new->{$filename}->{copyright_old}=$files->{$filename}->{copyright};
+       }
+       if(exists($files->{$filename}->{license}))
+       {
+           $new->{$filename}->{license_old}=$files->{$filename}->{license};
+       }
+       if(exists($files->{$filename}->{license_text}))
+       {
+           $new->{$filename}->{license_text_old}=$files->{$filename}->{license_text};
+       }
+    }
+}
+
+sub wanted
+{
+    if(/^\.git/ || /^\.cvs/ || /^debian/)
+    {
+       $File::Find::prune=1;
+    }
+    elsif(-f)
+    {
+       push(@filenames, $File::Find::name);
+    }
+}
+
+sub get_filenames
+{
+    find(\&wanted, ".");
+#    find(\&wanted, "lib/uniname");
+#    find(\&wanted, "lib/uniconv");
+}
+
+sub load_cache
+{
+    unless(open(YAML,$FILESCACHE))
+    {
+       warn("$me: cannot load cache $FILESCACHE: $!\n");
+       return;
+    }
+    my $yaml;
+    {
+       local $/=undef;
+       $yaml=<YAML>;
+    }
+    close(YAML);
+    $files=Load($yaml);
+}
+
+sub save_cache
+{
+    backup($FILESCACHE);
+    unless(open(YAML,">$FILESCACHE"))
+    {
+       warn("$me: cannot save cache $FILESCACHE: $!\n");
+       return;
+    }
+    print YAML Dump($files);
+    close(YAML);
+}
+
+sub write_new
+{
+    backup($NEWFILES);
+    unless(keys(%$new))
+    {
+       warn("$me: no new/changed files found\n");
+       return;
+    }
+    unless(open(NEW,">$NEWFILES"))
+    {
+       die("$me: cannot write to $NEWFILES: $!\n");
+    }
+    for my $file (sort keys %$new)
+    {
+       print NEW "File: $file\n";
+       print NEW "Hash: ", $new->{$file}->{hash}, "\n";
+       print NEW "License: ", $new->{$file}->{license}, "\n";
+       print NEW "Copyright: ", $new->{$file}->{copyright}, "\n";
+       print NEW "Licence-Text: \n";
+       if($new->{$file}->{license_old})
+       {
+           print NEW "#License_old: ", $new->{$file}->{license_old}, "\n";
+       }
+       if($new->{$file}->{copyright_old})
+       {
+           print NEW "#Copyright_old: ", $new->{$file}->{copyright_old}, "\n";
+       }
+       if($new->{$file}->{licence_text_old})
+       {
+           print NEW "#License_text_old: ", $new->{$file}->{licence_text_old}, "\n";
+       }
+       print NEW "#Header: \n";
+       my @headerlines=split(/\n/, $new->{$file}->{header});
+       @headerlines=map { "#" . $_ } grep { defined $_; } @headerlines;
+       print NEW join("\n", @headerlines);
+       print NEW "\n\n";
+    }
+    close NEW;
+}
+
+sub find_deleted
+{
+    my @deleted=();
+    my %newnames = map { $_ => 1 } @filenames;
+    for my $file (sort keys(%$files))
+    {
+       unless(exists($newnames{$file}))
+       {
+           push(@deleted, $file);
+       }
+    }
+    if(@deleted)
+    {
+       print "Removed files:\n";
+       print join("\n", @deleted),"\n";
+    }
+}
+
+sub backup
+{
+    my $base=shift;
+    my $old="$base.old";
+    if(-f $base)
+    {
+       unlink($base);
+       move($base, $old);
+    }
+}
+
+sub usage
+{
+    die("usage: $me [--scan] [--merge]\n",
+       "  --scan      Scan for new files & files with changed copyright headers\n",
+       "              Writes to debian/clscan/new.txt for manual review.\n",
+       "  --merge     Merges new data from debian/clscan/new.txt\n",
+       "              Writes updated debian/copyright.\n");
+}
diff --git a/debian/clscan/copyright.in b/debian/clscan/copyright.in
new file mode 100644 (file)
index 0000000..f2920f0
--- /dev/null
@@ -0,0 +1,34 @@
+This package was debianized by Daniel Baumann <daniel@debian.org> on
+Thu,  1 Jun 2006 00:00:00 +0200.
+
+It was downloaded from <http://www.gnu.org/software/gnulib/>.
+
+> The files in here are mostly copyright (C) Free Software Foundation, and
+> are under assorted licenses.  Mostly, but not entirely, GPL.
+>
+> Many modules are provided dual-license, either GPL or LGPL at your
+> option.  The headers of files in the lib directory (e.g., lib/error.c)
+> state GPL for convenience, since the bulk of current gnulib users are
+> GPL'd programs.  But the files in the modules directory (e.g.,
+> modules/error) state the true license of each file, and when you use
+> 'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
+> the files to have an LGPL header as part of copying them from gnulib
+> to your project directory, or fails because the modules you requested
+> were not licensed under LGPL.
+>
+> Some of the source files in lib/ have different licenses.  Also, the
+> copy of maintain.texi in doc/ has a verbatim-copying license, and
+> doc/standards.texi and make-stds.texi are GFDL.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL file,
+the GNU Lesser General Public License in /usr/share/common-licenses/LGPL,
+and the GNU Free Document License in /usr/share/common-licenses/GFDL.
+
+The Debian packaging is Copyright 2006-2008, Daniel Baumann <daniel@debian.org>
+and Copyright 2009 Ian Beckwith <ianb@debian.org>, and is licensed
+under the GPL-2, see `/usr/share/common-licenses/GPL-2'.
+
+Detailed copyright information follows, see debian/clscan/README
+in the gnulib source package for information on updating this.
+
diff --git a/debian/clscan/files.yaml b/debian/clscan/files.yaml
new file mode 100644 (file)
index 0000000..3531010
--- /dev/null
@@ -0,0 +1,33981 @@
+--- 
+./COPYING: 
+  copyright: Free Software Foundation, and
+  hash: 60c25a32bddb8e12cdd819cc29ec9a6d941431c6a013a71e2878536fa16d4dd7
+  license: ''
+  license_text: ''
+./ChangeLog: 
+  copyright: ''
+  hash: 0fc0c9c0235be8c8ba21d40facf534e03437b77886effa77a634fc9a1929b3e8
+  license: ''
+  license_text: ''
+./DEPENDENCIES: 
+  copyright: ''
+  hash: 3c8640aeff44fe6c30a27836e926fcaa6f6a5f4d35d8c540f71f7c568cf60d4f
+  license: ''
+  license_text: ''
+./MODULES.html.sh: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
+  license: "GPL-3+ "
+  license_text: ''
+./Makefile: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 7ad5a3ccd8892f7a29384dd4ed455a2c57cdadf2624c943f51127745751ffbe7
+  license: ''
+  license_text: ''
+./NEWS: 
+  copyright: ''
+  hash: 141ae5843fb9df760bf1e31402eb714cf1261d9c6db16e4db30aeba3acf9e663
+  license: ''
+  license_text: ''
+./README: 
+  copyright: ''
+  hash: 3da1ae1f2de3a84a70abca2325e281203ffe123afbc003420697463b56efd35c
+  license: ''
+  license_text: ''
+./build-aux/announce-gen: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/bootstrap: 
+  copyright: 2003-2009 Free Software Foundation, Inc
+  hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/bootstrap.conf: 
+  copyright: 2006, 2007 Free Software Foundation, Inc
+  hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/compile: 
+  copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software
+  hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
+  license: GPL GENERATED FILE
+  license_text: ''
+./build-aux/config.guess: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 / 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+  hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
+  license: GPL-2+ GENERATED FILE
+  license_text: ''
+./build-aux/config.libpath: 
+  copyright: 1996-2008 Free Software Foundation, Inc
+  hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./build-aux/config.rpath: 
+  copyright: 1996-2008 Free Software Foundation, Inc
+  hash: c52259321cfea86c34876e34db5356168f319d7f0dda0fd76efa9dce5e6fea4d
+  license: ''
+  license_text: ''
+./build-aux/config.sub: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+  hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
+  license: GPL-2+ GENERATED FILE
+  license_text: ''
+./build-aux/csharpcomp.sh.in: 
+  copyright: 2003-2006 Free Software Foundation, Inc
+  hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/csharpexec.sh.in: 
+  copyright: 2003, 2005 Free Software Foundation, Inc
+  hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/depcomp: 
+  copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
+  hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
+  license: GPL GENERATED FILE
+  license_text: ''
+./build-aux/elisp-comp: 
+  copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software
+  hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
+  license: GPL GENERATED FILE
+  license_text: ''
+./build-aux/gendocs.sh: 
+  copyright: 2009 Free Software Foundation, Inc / 2003, 2004, 2005, 2006, 2007, 2008, 2009
+  hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/git-version-gen: 
+  copyright: 2007-2008 Free Software Foundation
+  hash: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
+  license: "GPL "
+  license_text: ''
+./build-aux/gitlog-to-changelog: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/gnupload: 
+  copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
+  hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
+  license: "GPL "
+  license_text: ''
+./build-aux/install-reloc: 
+  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/install-sh: 
+  copyright: 1994 X Consortium
+  hash: 5dcf8a8dd376f4c95767a2dcb626e89a66d6f2fda2352f534a296ac6cc9a20b3
+  license: "MIT/X11 (BSD like) "
+  license_text: ''
+./build-aux/javacomp.sh.in: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/javaexec.sh.in: 
+  copyright: 2001, 2006 Free Software Foundation, Inc
+  hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/ldd.sh.in: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/link-warning.h: 
+  copyright: ''
+  hash: cb78032cfaf626adb1bc97576502516519b4888988a51aaa1c4963817b48b0e2
+  license: ''
+  license_text: ''
+./build-aux/mdate-sh: 
+  copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
+  hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
+  license: GPL GENERATED FILE
+  license_text: ''
+./build-aux/missing: 
+  copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
+  hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
+  license: GPL GENERATED FILE
+  license_text: ''
+./build-aux/mkinstalldirs: 
+  copyright: ''
+  hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65
+  license: ''
+  license_text: ''
+./build-aux/mktempd: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/move-if-change: 
+  copyright: 2007 Free Software Foundation, Inc / 2002-2007 Free Software Foundation, Inc
+  hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/ncftpput-ftp: 
+  copyright: 2008 Free Software Foundation
+  hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/pmccabe.css: 
+  copyright: ''
+  hash: 0d101dc42f369f71b997fc77eb3bc11d765e5c437b6824ef244bda483f9a1c48
+  license: ''
+  license_text: ''
+./build-aux/pmccabe2html: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/po/Makefile.in.in: 
+  copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+  hash: 5580fc36bc0f59414a3844a04f9f2f4185bddc3a262525fa98898da44a4a9e95
+  license: ''
+  license_text: ''
+./build-aux/po/remove-potcdate.sin: 
+  copyright: ''
+  hash: ff1cc3a86fdab7c5764e80f794afd6f5e81d05421c0e52dc27c4cc93e9546f19
+  license: ''
+  license_text: ''
+./build-aux/reloc-ldflags: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./build-aux/relocatable.sh.in: 
+  copyright: 2003, 2005-2007 Free Software Foundation, Inc
+  hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/texinfo.tex: 
+  copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995
+  hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/update-copyright: 
+  copyright: target rule in maint.mk from gnulib's / 1990-2005, 2007-2009 Free Software / statement is not recognized because the / statements to be updated. For example, you might wish to / &copy; 90,2005,2007-2009 / statement must be formated correctly in / year list to include the current year / 2009 Free Software Foundation, Inc / year intervals. (See "Environment variables" / @{} 1990-2005, 2007-2009 Free Software / statement is recognized in a file and the final
+  hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
+  license: "GPL "
+  license_text: ''
+./build-aux/useless-if-before-free: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/vc-list-files: 
+  copyright: $year Free Software Foundation, Inc / 2006-2009 Free Software Foundation, Inc
+  hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
+  license: "GPL-3+ "
+  license_text: ''
+./build-aux/x-to-1.in: 
+  copyright: 2001, 2003, 2006 Free Software Foundation, Inc
+  hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
+  license: "GPL-3+ "
+  license_text: ''
+./check-module: 
+  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc / 2006 Free Software Foundation, Inc.\n"
+  hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
+  license: "GPL-3+ "
+  license_text: ''
+./config/argz.mk: 
+  copyright: 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
+  hash: 6931c96d920bb98e9705beea49aa8e61ce728439d16bcc702289e9f16d04fe90
+  license: "GPL "
+  license_text: ''
+./config/srclist-update: 
+  copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc
+  hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
+  license: "GPL-3+ "
+  license_text: ''
+./config/srclist.txt: 
+  copyright: ''
+  hash: 82bb09655cee0a765f990da640454c5099c5e49f722a0d14d35fde12270d2983
+  license: ''
+  license_text: ''
+./config/srclistvars.sh: 
+  copyright: 2002, 2003, 2004 2005, 2006, 2008
+  hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
+  license: "GPL-3+ "
+  license_text: ''
+./doc/COPYING.LESSERv2: 
+  copyright: the / 1991, 1999 Free Software Foundation, Inc
+  hash: c5e2ab2668641c2e13afa9e23551ae614f835ac715d30aec90e5d7bada5ecbff
+  license: ''
+  license_text: ''
+./doc/COPYING.LESSERv3: 
+  copyright: 2007 Free Software Foundation, Inc. <http://fsf.org/>
+  hash: f5b4a69119b8d0acfc04d77831874f339432846e9ed129e412b15fb328c9d2c6
+  license: ''
+  license_text: ''
+./doc/COPYINGv2: 
+  copyright: 1989, 1991 Free Software Foundation, Inc. / the software, and
+  hash: 2b241f6064bd3616cb72a4d0c6dae9821c891d4c8fd63493b6ad9933c3be72c9
+  license: ''
+  license_text: ''
+./doc/COPYINGv3: 
+  copyright: on the software, and (2) offer you this License / 2007 Free Software Foundation, Inc. <http://fsf.org/>
+  hash: cbf8d8990150fe3b4cd5e988bb081217b05d988766f352fed4de6d2e5a35a58e
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.changes.manual: 
+  copyright: holder so / to the Foundation is to sign an assignment / on the new version
+  hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.future.manual: 
+  copyright: holder so / to the Foundation is to sign an assignment / on the new version
+  hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.manual: 
+  copyright: on this manual to the Foundation is to / interest
+  hash: fc744c2d1b5aa2c596922b17b46b760d852e99717883fe9fd547d5f5bd318a9c
+  license: ''
+  license_text: ''
+./doc/Copyright/assign.translation.manual: 
+  copyright: on the new version. I'm assuming that you / holder so that / to the Foundation is to sign an assignment
+  hash: 5fd32468982f7402a68b288a2906b1351ffe45a2bb839b5ae13ab97a63827460
+  license: ''
+  license_text: ''
+./doc/Copyright/conditions.text: 
+  copyright: holder, the Foundation can sue anyone who tries to / to the Free Software Foundation / laws, even though / means signing a contract that makes the Free / law for helping / to defend users' freedom, by means
+  hash: a0ea940fa380501407151c5ccd168afabc1749eab7ed1ccda3b32b2b85b9255a
+  license: ''
+  license_text: ''
+./doc/Copyright/disclaim.changes.manual: 
+  copyright: interest in my
+  hash: 757e8f68162152a11f39cc06de884e60f95476ecd4cd382194c22af4d7c2dbfe
+  license: ''
+  license_text: ''
+./doc/Copyright/disclaim.manual: 
+  copyright: interest in my / interest
+  hash: 8bb37e0674a0a2ffd0a89682057126b8e58280dde15573436bf8b307c5db7c92
+  license: ''
+  license_text: ''
+./doc/Copyright/disclaim.program: 
+  copyright: interest in my / interest
+  hash: 1004a718603464ea52341822431714f6de8c4bdcf58f20f53f418a13c0457c30
+  license: ''
+  license_text: ''
+./doc/Copyright/request-assign.changes: 
+  copyright: registration, what country are you a citizen of?]
+  hash: 2ba32591db9fee4f110bdbcbe22f674ab921b555585aa905d212b9c56b4c01c4
+  license: ''
+  license_text: ''
+./doc/Copyright/request-assign.future: 
+  copyright: registration, what country are you a citizen of?]
+  hash: 9ba7d169c4fc06b01a773daf5ff5c2a9b2e52ac0b79a3d41aa123c51c9755a03
+  license: ''
+  license_text: ''
+./doc/Copyright/request-assign.program: 
+  copyright: ''
+  hash: f1c1a0ce3e67f88c09551e5dde215d5bf03022945d5fce5d47eb781f971a6699
+  license: ''
+  license_text: ''
+./doc/Copyright/request-disclaim.changes: 
+  copyright: ''
+  hash: 5d1569edac388e95ffe46d8a867730615f1a0ff33075596038d3e7a3eb06ee36
+  license: ''
+  license_text: ''
+./doc/INSTALL: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+  hash: 71a35b239f3b448ef8b27fd63a6722f5cbec0a5bc5f700deb5038afa3caa84ba
+  license: ''
+  license_text: ''
+./doc/INSTALL.ISO: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+  hash: 6e5a01010be07ff0d4d534b3b790b151a8e39cbc596c45033bf1d82ec269eed6
+  license: ''
+  license_text: ''
+./doc/INSTALL.UTF-8: 
+  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+  hash: 0b6f2758c270e39f2120bc2beb256a3dcdd878e3ab6f36c81cfe1110d4a65fbb
+  license: ''
+  license_text: ''
+./doc/Makefile: 
+  copyright: 2004, 2006-2009 Free Software Foundation, Inc
+  hash: e588412f4808f445922802b7c5310650b2edc4fc1d22da096884812313562f82
+  license: ''
+  license_text: ''
+./doc/README: 
+  copyright: ''
+  hash: 5eb4b0ac21e256e6b201f1d6038cfc9fe8c0d168484e6471bda54699c84b88c9
+  license: ''
+  license_text: ''
+./doc/acl-cygwin.txt: 
+  copyright: ''
+  hash: 7512950629f04d795e20ac566c5fc7f846b829a09031acfd3ba424841e3f6e71
+  license: ''
+  license_text: ''
+./doc/acl-resources.txt: 
+  copyright: ''
+  hash: 65da96ac4e110970dd7bee204441e94d575e83310791c7f95365082981b55962
+  license: ''
+  license_text: ''
+./doc/agpl-3.0.texi: 
+  copyright: "@{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer"
+  hash: 77c3f2a9718accc065836d61cf2575b50220f1f3c121e281fec0a06ee3ad8b46
+  license: ''
+  license_text: ''
+./doc/alloca-opt.texi: 
+  copyright: 2004, 2007 Free Software Foundation, Inc
+  hash: ba0ad6232fbf3ba81b9dece15497df973cbcf4a4b7e2295ca66b0bed803d82da
+  license: ''
+  license_text: ''
+./doc/alloca.texi: 
+  copyright: 2004, 2007 Free Software Foundation, Inc
+  hash: abaafa45b821b2064d735be4848a476c92e67742811e7c991eefbf8b0314210c
+  license: ''
+  license_text: ''
+./doc/c-ctype.texi: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 02681cc5ffcc4bb503782c8ce7f5b053f524a61d77b10dfd3c8d29e8696a8cd5
+  license: ''
+  license_text: ''
+./doc/c-strcase.texi: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 12a8966489a243d56b5727a843e8d199ce1be4cbddf810d6e0546fc0d47c0db9
+  license: ''
+  license_text: ''
+./doc/c-strcaseeq.texi: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 07a09de098c41135d2b8c252e34d16942a2df705d4165259604efc2bc89f32df
+  license: ''
+  license_text: ''
+./doc/c-strcasestr.texi: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 28f551e29d750587564a6c9d605d880b4adc908e73ba20486dad95089bcbe988
+  license: ''
+  license_text: ''
+./doc/c-strstr.texi: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: dc0b4e2b4ae14f6c0b231a1cb517386171cdd2e79bad16e5c8468a6d3f05d863
+  license: ''
+  license_text: ''
+./doc/c-strtod.texi: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: f12b034c095af6fedebe50970c03692a308cd6d76c710040021e05e14111d0e6
+  license: ''
+  license_text: ''
+./doc/c-strtold.texi: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: acd8d275bc49ba09e74845ef9ab62f76fe1ec2a82b7358a85790af57c33de3eb
+  license: ''
+  license_text: ''
+./doc/ctime.texi: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: c54a4356bb5de6dc3dd73b82b8ba0e40975a2cf465b639f8cf8456097c6f8658
+  license: ''
+  license_text: ''
+./doc/error.texi: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: a5f78c9c537fb0dbb6b9d6740073f5c7cf4f1bc3af0531c33806fbfd624de688
+  license: ''
+  license_text: ''
+./doc/fdl-1.2.texi: 
+  copyright: law / holder saying it can be / @{} 2000,2001,2002 Free Software Foundation, Inc
+  hash: 6f673a8c0082124229a9a100543bd41368cfe3db307ab0db0b89cf84c611cf1b
+  license: ''
+  license_text: ''
+./doc/fdl-1.3.texi: 
+  copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
+  hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+  license: ''
+  license_text: ''
+./doc/fdl.texi: 
+  copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
+  hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+  license: ''
+  license_text: ''
+./doc/func.texi: 
+  copyright: ''
+  hash: f8cd19fcf35037aa6fd49e493bd85eb6f696afa87e1bc56fbf2ee045329f20e7
+  license: ''
+  license_text: ''
+./doc/gcd.texi: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: aa4594d335a46b562a96ebd76cabc7451a3ba2737bf0b032f1b66f18ab3fc5cb
+  license: ''
+  license_text: ''
+./doc/gendocs_template: 
+  copyright: ''
+  hash: 61dc5a61685d6ce9d5377c109bba5dc71089a86add68e14628f17ca13697d849
+  license: ''
+  license_text: ''
+./doc/gendocs_template_min: 
+  copyright: ''
+  hash: 8599a5f69e6110fe324e413e04c4920db1f37a9becf5db55f27a6d132bbfb8b2
+  license: ''
+  license_text: ''
+./doc/getdate.texi: 
+  copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+  hash: b49cb20e0eb9f85da9aeb64338b8442bd47b45259faf2e6fce118e6c90af6579
+  license: ''
+  license_text: ''
+./doc/glibc-functions/accept4.texi: 
+  copyright: ''
+  hash: b17ebc577f3ee392f19100a7b506ff1a38cc1328a92bea909d6d34690aa2bed2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/acct.texi: 
+  copyright: ''
+  hash: d37daf7575d441486ace90191eefb3bea667e4d10eff5e8a14a8c41493b0fab8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/addmntent.texi: 
+  copyright: ''
+  hash: 859dc5755ca851474f5acfa8db53055f59573e5bbaf332b8dd8e5754fda11b50
+  license: ''
+  license_text: ''
+./doc/glibc-functions/addseverity.texi: 
+  copyright: ''
+  hash: 6e44d5223f4987a83f8c4db55cfdc1f9e81c6d998c1853716aba498d5d9a1535
+  license: ''
+  license_text: ''
+./doc/glibc-functions/adjtime.texi: 
+  copyright: ''
+  hash: cbc4f68c7f77addbdc16bd13629e75db5fcff64a0567488ceb04a9459e6b992d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/adjtimex.texi: 
+  copyright: ''
+  hash: 5c618ea0205407dfab68f9bf13e88e944c25e7be821a02d1e42f49998b5ed63b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/advance.texi: 
+  copyright: ''
+  hash: 83424853aeaa0dbc7252aa0ae47b7e9f9b633576a94942c0519d53e8e4fbf526
+  license: ''
+  license_text: ''
+./doc/glibc-functions/aio_init.texi: 
+  copyright: ''
+  hash: 9776ff627d5968a12d86d200038f926555e224daed04cde21769fc19b58856f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_err_exit_status.texi: 
+  copyright: ''
+  hash: 5ad7e936e9599c8501ca2844805be318d773b5d5c7e96714c730596e5bf02292
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_error.texi: 
+  copyright: ''
+  hash: 72fdeba016c2e94cd219221fd18adfb4d13c5ba9759e2a0ec006c587799f0239
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_failure.texi: 
+  copyright: ''
+  hash: 0f61197bb59045af63a046f1456ddcc1efe393b7d73e170c2c112ac960feedd3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_help.texi: 
+  copyright: ''
+  hash: 773dd3780b48dabb78efa3e3f644e7c823f67de3b7e87ec93b0ec5cac2323bfc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_parse.texi: 
+  copyright: ''
+  hash: 3ca5263fc5663150b7dc9362a3114bd350d03d1e3e5be932c07299810577ebe2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_program_bug_address.texi: 
+  copyright: ''
+  hash: 3abb0a66f95fb062ec1970dbc8bf29e7fbf683b64d7334d38c1c58e2e175a8ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_program_version.texi: 
+  copyright: ''
+  hash: ff08b5d2808dc3501de2605f1631bd2e0a60676ba06b47d3a6faa09728c9989f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_program_version_hook.texi: 
+  copyright: ''
+  hash: 7a8f425b15b7e6abda323db20c96f40c5b56729b1bd3ddb9ab1f2130c590935c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_state_help.texi: 
+  copyright: ''
+  hash: 10e9a562637cf6c60d5b43a4e8512e74cd9a74db87707e628300d49e0e4f2512
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argp_usage.texi: 
+  copyright: ''
+  hash: ece258de9630be5b079b97514e35aca806a96c4ebff29277d1c07379649f5e7d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_add.texi: 
+  copyright: ''
+  hash: 18f2bcea93aa6152c099688d18a0b6ae9f76590ab025af5ec39e16865f55f96c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_add_sep.texi: 
+  copyright: ''
+  hash: 3cdf339fc9645ea7cdac7064100ed6a6fecefa47e48581d2c75e8335220b9fcd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_append.texi: 
+  copyright: ''
+  hash: ae244a6da5f6ca8ef7107924f21425880f8154ab51c14f8fb43be0f5bb7c4f52
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_count.texi: 
+  copyright: ''
+  hash: 599ba24548a6631c721c4a913df6101ad0f19f0f7bfecd4549cc20fba44c1252
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_create.texi: 
+  copyright: ''
+  hash: 6b7edc8f20ff0749926679da311d9d61a120537cb7e071ee58074a4646d19ca8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_create_sep.texi: 
+  copyright: ''
+  hash: ecd63dedd9dabcd06f22d5430d23801af84b2cfd41025684200edc2f9f951256
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_delete.texi: 
+  copyright: ''
+  hash: c5327fcde9bb049ceb161f6953d623b95ee853ed45e9616599b6acc5b2097039
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_extract.texi: 
+  copyright: ''
+  hash: a09a50dff90d595c24ae23bdccfbb09746c37bffdc88cc2b94d1864b1a9e738b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_insert.texi: 
+  copyright: ''
+  hash: 85103c1f755497213b705dcb1ecf79bf4d7564fe11243f89c5a611b642a6dde3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_next.texi: 
+  copyright: ''
+  hash: 254e88751b133e09414abfe834861a0459847c67e138f81405303735f07fdf9e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_replace.texi: 
+  copyright: ''
+  hash: f9fc8e8e0ef61fb433d129ebe214dbceab9d516d9500a9721fccc477e35cd882
+  license: ''
+  license_text: ''
+./doc/glibc-functions/argz_stringify.texi: 
+  copyright: ''
+  hash: 2e019d0347b285bd91926d5e328effc134b65090ca4bdb5bed2e6ec696baea24
+  license: ''
+  license_text: ''
+./doc/glibc-functions/asprintf.texi: 
+  copyright: ''
+  hash: 4d17afdfffec5aaf5d84729b98b8b39011e25b70ce4a732557fcbb77ec8941e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authdes_create.texi: 
+  copyright: ''
+  hash: af49562730f4bc1eae2bf729db613caedd3c19062f2e837d3c451c9dbbe0bf6d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authdes_getucred.texi: 
+  copyright: ''
+  hash: 3962401affaa1079d18bf6751923e893ff9ad89ac80ef2a1e4319d506af10472
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authdes_pk_create.texi: 
+  copyright: ''
+  hash: 49a5ec10bf2dcafa8d0765e2c3399c5485bda1fe79ab9e8b963d5b9b448df435
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authnone_create.texi: 
+  copyright: ''
+  hash: e2755104eebcd1c86babce2250ea655d235714bacc7ac9af5fff656edbb4ff04
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authunix_create.texi: 
+  copyright: ''
+  hash: 2249d61f5ba791a25990c863209b5e439f4be7bacaa22901a17fca65ff57c5d9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/authunix_create_default.texi: 
+  copyright: ''
+  hash: e2042c8ffb02a472907f345c6a79e7d47ebdb04ccdeda8fcc0d8e0247419d5ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/backtrace.texi: 
+  copyright: ''
+  hash: 9218fc11f85121754f3dce8759f4abfc2e96678cdcde0b64b8c5bc1dac4784fc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/backtrace_symbols.texi: 
+  copyright: ''
+  hash: 8cd5973763a4a86ca3d03a9cd93b877ccae2393c527f1c27316b5179d6d4a5c9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/backtrace_symbols_fd.texi: 
+  copyright: ''
+  hash: 568caed6a6ac65d5fd1787fd3dffafa08ff544cb3fab9405ebefa12bbe3a264f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bdflush.texi: 
+  copyright: ''
+  hash: c9d58ca272a569549bccbc6cf430bbd0e3766a2fd96f4f85d28b264e7c3aac4f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bind_textdomain_codeset.texi: 
+  copyright: ''
+  hash: 99bf7d082540b4e76c5810e19f258198590dcbd8ed95ba7f249e11e2385ebbe5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bindresvport.texi: 
+  copyright: ''
+  hash: 407362b84b67ca56f509dfede5907a628e1dbc66d95aaf1fade0d8278be1ab76
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bindtextdomain.texi: 
+  copyright: ''
+  hash: 893f7472a65a60adec27ff2fd59fc1b10ef4c8c79721df77b684108c5bd4b3c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/brk.texi: 
+  copyright: ''
+  hash: 79f13ae11705a8f029f92450cb76d735a551947e2dc605f30eb41181253dcbfd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bswap_16.texi: 
+  copyright: ''
+  hash: 8637c5832585d431bfc3e334d7b4f7b28dba3867e892c9bb3212b23a83fd7832
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bswap_32.texi: 
+  copyright: ''
+  hash: 45c27263a3c7a55e61f4965f1a769c37aec80440fea88a85fac0c011a534fab0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/bswap_64.texi: 
+  copyright: ''
+  hash: 0c90737dd8475488dfe04bdea14b07139f68b9db3ffe7ef7413b6d0c90aa050f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/callrpc.texi: 
+  copyright: ''
+  hash: b20e0a5aabcff3296d32c26431ce49c9d028ceed0945caea1ac15b3c39b11cc1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/canonicalize_file_name.texi: 
+  copyright: ''
+  hash: 88ff6a4a9c1a9c691748ecbfc050f992518fae1d30dc880577caea53f2fd759c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/capget.texi: 
+  copyright: ''
+  hash: 30ca364f553845f7411c9144e8fc54534e63b47c00f1d2d8b7d42651556ee971
+  license: ''
+  license_text: ''
+./doc/glibc-functions/capset.texi: 
+  copyright: ''
+  hash: 0d46ec1a25dc5ae5c2a09e23c6df148f90bc4f6a3f339202728bc731521a79bc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cbc_crypt.texi: 
+  copyright: ''
+  hash: 2fafbda5215452dabaecd6ae338b1b42292fc7649957d7dfd53298e125c73aff
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cfmakeraw.texi: 
+  copyright: ''
+  hash: e17dc832db4056f94397e2cca5eebec2b7e7ebbf4dfd1961d7d04c2a54348d78
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cfree.texi: 
+  copyright: ''
+  hash: 3bf2ea530728c4bf2675d2c138bc897e2c61fb86e52eb1aaa5f595ee3ac1334f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cfsetspeed.texi: 
+  copyright: ''
+  hash: 3fa0159499537d1d12632e4721c20870e24b362744100c8ebf05001ac60def9a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/chroot.texi: 
+  copyright: ''
+  hash: 939c1364cb648d6985389a66cee0f7eafea4bbfeb9d87202357b7a923da9c3c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clearenv.texi: 
+  copyright: ''
+  hash: 45a56cc1e9cf0437cab4c9d9ef7939585bcd832ff2630a99ac47277be6afa7ea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clearerr_unlocked.texi: 
+  copyright: ''
+  hash: 18ac3bd638d52e5eea084f0693462f14b38c9236ffa469c9d3523413afead17a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_broadcast.texi: 
+  copyright: ''
+  hash: 1c8663af16571cdf3d9365225d9a0e98784cc856191f3febbc639bd263193ca9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_create.texi: 
+  copyright: ''
+  hash: 9b8db11b5c1ea0786cad25ac17504a90a35d649d816e719443ded731822eebc4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_pcreateerror.texi: 
+  copyright: ''
+  hash: eb667a76af61d29859afcfdcbfe23a1ba8685a7697247f375d88458d6272bd60
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_perrno.texi: 
+  copyright: ''
+  hash: ad17b85da3516ff2f72cb23d033c48e8b7a2aac5a02c5d7a01d41c6aa6600db0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_perror.texi: 
+  copyright: ''
+  hash: 82cd26d158a5d3c44dece6a886244ce36c49ebeffa26673909de77d5a788b10e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_spcreateerror.texi: 
+  copyright: ''
+  hash: 209e1e3f9cdb5fb2ae93d82626397a91f86fc5de7e053a4e9dd9ee984590ac29
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_sperrno.texi: 
+  copyright: ''
+  hash: 85facf37092f224547c9b22de2ce7120f6223b123880955f9741d4f1192ef962
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnt_sperror.texi: 
+  copyright: ''
+  hash: 3c5cb03e7db0c9890413fb8274e3e0825571fe513b5c3c4a8a1f381da141440a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntraw_create.texi: 
+  copyright: ''
+  hash: 369e8f51ad73920a35f5bb49c46788c9676a78b5c1efd70b19cfd8bacfc2e9ea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clnttcp_create.texi: 
+  copyright: ''
+  hash: 4d775bbea4f66563fecb2274103849755071792c5af93c5f597ecc85ab8899f3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntudp_bufcreate.texi: 
+  copyright: ''
+  hash: a962c5041725d4a71eba817fb867bd2533442b43a7b467916e11b4d2fcfb6abd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntudp_create.texi: 
+  copyright: ''
+  hash: b7e0dbcfcc8ab25b818f1f10021ffb0ffe9346f911c9a9d2e6c3831177732fe5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clntunix_create.texi: 
+  copyright: ''
+  hash: 9e698ad851ba6e1fd147fe815aaf57881ff7dc062416604dbf2d545352bfcfff
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clog10.texi: 
+  copyright: ''
+  hash: acd1d6d0a6a71603c0428c8498650814dd43eb9d6baabdc9fd80237f71c3516b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clog10f.texi: 
+  copyright: ''
+  hash: 203698100193133e3bf5e65d9190cc87f10ec2adb8ad31f194c46c6bc5dd8f7c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clog10l.texi: 
+  copyright: ''
+  hash: 82e4a4440dbf9ba56b1f888e1715adc2e915ae8648ef4e9f1e7f35416ed36343
+  license: ''
+  license_text: ''
+./doc/glibc-functions/clone.texi: 
+  copyright: ''
+  hash: a8582f08a00c2362dd1296178cbbf88992b956c0c3b535cf196b0bc2936a9a6b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/crypt_r.texi: 
+  copyright: ''
+  hash: cac89bde4b8094201459b5c860197e43c9d19a1edd5f4d19e61f5ae2388e36c2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/cuserid.texi: 
+  copyright: ''
+  hash: 0a6b5bac9d5e7c8e6bb2e247a67c1a11e93e5a19c3ae107a8a7f6ec904f7da68
+  license: ''
+  license_text: ''
+./doc/glibc-functions/daemon.texi: 
+  copyright: ''
+  hash: 2fd4f418d424f8b9ec2b30aef1ee09500ac5b4be47c7188da99adceaacfbe873
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dcgettext.texi: 
+  copyright: ''
+  hash: 905acd2a435ee383e3a90021092c71b1e0353a4d830f8b3368f44b7e0f16621b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dcngettext.texi: 
+  copyright: ''
+  hash: 25fe3abe9d3c981d8e134eb1eac98ed4d5431cb316b695e9f394e1730882e212
+  license: ''
+  license_text: ''
+./doc/glibc-functions/des_setparity.texi: 
+  copyright: ''
+  hash: 25d06dfb2357289c755d22b55b35fc27d29e2cbd1890ff499f26685f4fd63577
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dgettext.texi: 
+  copyright: ''
+  hash: 77128e568c7dc65aa42f7e606fa4877bc5ed42b1e00fca2a430f035f9cebc529
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dl_iterate_phdr.texi: 
+  copyright: ''
+  hash: 62ea16c0513d25faf9ec94dacddf8fd09577503f95ac512b43dd64272f621007
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dladdr.texi: 
+  copyright: ''
+  hash: a3b59426c942a6c73ba2a3ab0fdca76a02287d69dcd0af66101519b5c9f9d90f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dladdr1.texi: 
+  copyright: ''
+  hash: e173046f4a96855e31bf1e8a5e8c06752872379e66c84803e099a466f56dc35c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dlinfo.texi: 
+  copyright: ''
+  hash: cce858a4949abfcaf32a9011a7bc103723a2e8c5f3f68484d8771ba6041580c4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dlmopen.texi: 
+  copyright: ''
+  hash: 88c9a180c401ca6f03ae86e95becba54896b826306370ca3b8a8507fc8e60f07
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dlvsym.texi: 
+  copyright: ''
+  hash: 26ff4f9d467ee71d017515429de5fbfa4882051545692dbcb1c41de7af914f5f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dn_expand.texi: 
+  copyright: ''
+  hash: 63ce3292ca5569aa0366ad9c7de252d6fe18bafa7a89a5a2df6a635d5803e33f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dngettext.texi: 
+  copyright: ''
+  hash: ab37ed0effb5751971a1b3250c420469fd3bf15abc3ddfcd104904dbeb4580c1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/drand48_r.texi: 
+  copyright: ''
+  hash: 2b593e3e6fd04f9338b7138257ca7619720da7ed3fd534ee3e3a1e430c2785d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/drem.texi: 
+  copyright: ''
+  hash: 568abf399954900f4cff6dd482ab33c057fe68b9a59bafe4bec9ae73f7865399
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dremf.texi: 
+  copyright: ''
+  hash: aff887dbc137c68938b4349c5ed83048621700344ed2835c697e57fc4be7ffbb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dreml.texi: 
+  copyright: ''
+  hash: 5e5742ed947607742512dfd05cc9ec610d696663893755f51adbce805ccdd0a3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dup3.texi: 
+  copyright: ''
+  hash: 16c23e59c857fb99c7bb7b25fe21d101a640baae3518a4cf20d572e9434992eb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/dysize.texi: 
+  copyright: ''
+  hash: 47a7fd72f74631c010e68a98e309a73c1c98bf25571524e582306739c239555b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ecb_crypt.texi: 
+  copyright: ''
+  hash: f690509aa7eae66e6d744b6d94375a3c735a95b856afbe31631cc213d35a0b4a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ecvt_r.texi: 
+  copyright: ''
+  hash: a3766480ff58d17093f27198c734a920722b79f48f9ad3a220c417d3edce8342
+  license: ''
+  license_text: ''
+./doc/glibc-functions/encrypt_r.texi: 
+  copyright: ''
+  hash: 979cf283d7e89b787857095878553ce9fdd52f37d25528614248c801640a4e3a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endaliasent.texi: 
+  copyright: ''
+  hash: fb6325f2b1786c6daada61f5763b2eabe62ef7167e29c6def8dfec6b29b9efd4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endfsent.texi: 
+  copyright: ''
+  hash: 2ef59b14a9f5b3b4eff8dc92d40599d2989beb3056a9d905f3c287651b2051e7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endmntent.texi: 
+  copyright: ''
+  hash: 902f99fbfabd3d3eaea54807c5d37d8ae32561911a61da4d7d826c453956b788
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endnetgrent.texi: 
+  copyright: ''
+  hash: b561dcd1b6c6b62e9a3a88367b4035c2c7254d8d090337ab0323e327358e23d3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endrpcent.texi: 
+  copyright: ''
+  hash: 2ec149a39480679f19e566cbfe837884852ce67563d81ddb5af842b60a2f7b75
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endspent.texi: 
+  copyright: ''
+  hash: 23caa8ff196980b0fe2091e5ac0cd11117a6bc13a244ba4e59f2afe4d63f808e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endttyent.texi: 
+  copyright: ''
+  hash: 353485a83507aee8c9e0f8d7543cfde2ffd936dd4661252f07a58245a7f06e86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endusershell.texi: 
+  copyright: ''
+  hash: 3d7510451d51d0337b32959a55732d9db68c360bd0ddf5f7c342657074518413
+  license: ''
+  license_text: ''
+./doc/glibc-functions/endutent.texi: 
+  copyright: ''
+  hash: 1d2126a81c39601d25ce2479b13997eea4be84fe13500e6223a15603a36a7e79
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_add.texi: 
+  copyright: ''
+  hash: 929a0bb40555c4cdf9b1d14eeb8e7c789a7a221706e2ee56ea67fb701185641f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_entry.texi: 
+  copyright: ''
+  hash: 28cf6f28a93c0ade5125892036a65037b8be5e0b2265132a56172664cb295d70
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_get.texi: 
+  copyright: ''
+  hash: 73dcfdab7c19f3e3b899aea56ac1cbe8433dc5d91c87650f0d62f50d9e29f1a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_merge.texi: 
+  copyright: ''
+  hash: da6f80f14d5cb2706ee602a6ebdcc7e2783bd46cc4dd1e217286de438f3b1bc7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_remove.texi: 
+  copyright: ''
+  hash: 052e269cc2f4c958fc937cfe92377318ac659e361bdfde1ed31ef03cc8225a04
+  license: ''
+  license_text: ''
+./doc/glibc-functions/envz_strip.texi: 
+  copyright: ''
+  hash: 9f33728bf5d1263c41541e31829546c6be1bb7149bbee554414674b7a5a76f8f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/epoll_create.texi: 
+  copyright: ''
+  hash: e2be8db1d90a7447a960b5dd2f418cf2aae182562f396030b1d0b0ebba5e9289
+  license: ''
+  license_text: ''
+./doc/glibc-functions/epoll_ctl.texi: 
+  copyright: ''
+  hash: 9999e16055753d71a31950a02ef676ba0eea5e033afa1141140e66638120a8ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/epoll_wait.texi: 
+  copyright: ''
+  hash: f9429a26d6f4f4f72fa6635a53726a953061d951e8626269cd305df15371327b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/erand48_r.texi: 
+  copyright: ''
+  hash: 6669b6ab848630d8eb97b64fbb7732d3d5f0adb9cfb2efc13c602d06f44c3011
+  license: ''
+  license_text: ''
+./doc/glibc-functions/err.texi: 
+  copyright: ''
+  hash: f2822ce953258b67212742fa39cd8f3e71211dcb9ad9e1c08f1733549c5e87b4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error.texi: 
+  copyright: ''
+  hash: 8cef704a2bef7f901913e2ecb6a79a974c5c929784cd1a3efb83762ff9f0f78c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_at_line.texi: 
+  copyright: ''
+  hash: cf9e32d64af320b9a0a362a3a2030fe267c9975dd806450fc034a5271fba6b68
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_message_count.texi: 
+  copyright: ''
+  hash: 64921e6e3cbf254851de971c005efed63de341e918d68815a9cbaf0144fc2474
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_one_per_line.texi: 
+  copyright: ''
+  hash: 41c37fa05255f035aae595ba8be8bf6a948f194d6e8f062a4dc1b3b3621b98c2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/error_print_progname.texi: 
+  copyright: ''
+  hash: bc96d8956a86cae93032b2c4c2b2cf3d10a7c8eec32d2dd8a20d3eee8c26b4a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/errx.texi: 
+  copyright: ''
+  hash: a7cdc040dd2e090c274719420cedb80b530aacdfe42b7ede1d77a24a148456ce
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_aton.texi: 
+  copyright: ''
+  hash: a842346260d42e4c0a45db5dd7cd75a3177bb0f0df8c990257803c214823ddad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_aton_r.texi: 
+  copyright: ''
+  hash: fe43aa6c687d10c66577fc64c58745d2f5062b4b111066512e0416e4780c8143
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_hostton.texi: 
+  copyright: ''
+  hash: fe52a6f7a718ca3e4bc6d97cb686fe2b65337b46a9fcaae9ef54f7d9ccef5ee7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_line.texi: 
+  copyright: ''
+  hash: 3cc5f18d0bece8d4994e39601f8c8889a33a4f38e50df1990fad90d20e90a0c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_ntoa.texi: 
+  copyright: ''
+  hash: babf9fe2efe3a0d0c4490b4ce7caec7f2b819fa28fa57afb55ab319051106de8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_ntoa_r.texi: 
+  copyright: ''
+  hash: c2b5156ddda84f53d15db242391715e0f2ca131662587d0cd4d9e62f75b2da45
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ether_ntohost.texi: 
+  copyright: ''
+  hash: c2091a64f35c0ae5d661860b1f60d57ad6944ad0403e4bf28a3cc7c96131aaa7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/euidaccess.texi: 
+  copyright: ''
+  hash: 2a87b5e240d11086cffaf06df3881482e1ffa24627ab797f4715fc9a215386f2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/exp10.texi: 
+  copyright: ''
+  hash: 28f79331e4b58884933515b29863bc9a52742bc7f370744a0e4a10452f099f06
+  license: ''
+  license_text: ''
+./doc/glibc-functions/exp10f.texi: 
+  copyright: ''
+  hash: 6bc7b61d534ef6f83c8461e72de721f5118651239555193971f3dad02fa23d46
+  license: ''
+  license_text: ''
+./doc/glibc-functions/exp10l.texi: 
+  copyright: ''
+  hash: f9565a3a532005973d9b6f51e0c7706ec6dc8d01c19746fa8e505147d54a29ca
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fallocate.texi: 
+  copyright: ''
+  hash: 31fafd55b211c7951256cf510c48929dbf0905c1d6adf6ce67a5f2c834d89e9b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fcloseall.texi: 
+  copyright: ''
+  hash: 2454b1a7e29b85b95416951cb3def913d0d4ff6d29f3a9d5ada2168be1b14e49
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fcvt_r.texi: 
+  copyright: ''
+  hash: 1226fb28c13dfae15d1f84e2ace830d894b9a5785effc4bf23eae22e0819d4c7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fedisableexcept.texi: 
+  copyright: ''
+  hash: 559755cb3f08a938aa3cae6ba68289ae9e8545baf594d71a8c7a6242d0371b94
+  license: ''
+  license_text: ''
+./doc/glibc-functions/feenableexcept.texi: 
+  copyright: ''
+  hash: db385ebfb7a42feb0e9f02c96ef0ede1e5be24761c1ddbefc2f57da58df53306
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fegetexcept.texi: 
+  copyright: ''
+  hash: 6ca79a91498b9b0bc91e5a1534a1e08167e795a7018a76dea8c52af2b42cb25b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/feof_unlocked.texi: 
+  copyright: ''
+  hash: 1845120fe96136edef181ead3d3d621b9fbfbc50ad928e98b75b0958c34d1bf8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ferror_unlocked.texi: 
+  copyright: ''
+  hash: cb31a7959c6e17cb428009f020898f3aa9f5a5a94d802a13b13b4d91987f3e0d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fflush_unlocked.texi: 
+  copyright: ''
+  hash: 7b77cc9354310377449aa1c5e033d3389b2ef98d4d87cdcaf133abc67e518637
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ffsl.texi: 
+  copyright: ''
+  hash: 7ff7df1ee7b12f75c430eb45418546d6ca7af38ee555686d46292d1c6b0d546e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ffsll.texi: 
+  copyright: ''
+  hash: f42ded9a37fabd10750809c4fb7af7893b2feea0826b23d5ac2ce7574eef4094
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetc_unlocked.texi: 
+  copyright: ''
+  hash: fd047b70f29ecc5dfbe87e98fb2412798cc35c51efd44e6e2fc83f3893738c27
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetgrent.texi: 
+  copyright: ''
+  hash: 0b18f0b797c2a7c1860c33c9304af2bfa428622038cbb34e5ada28bba02c0602
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetgrent_r.texi: 
+  copyright: ''
+  hash: 85ec05e27db7a4cd0043130657bcc7d21de99ba3e8547888923170a8a0799df0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetpwent.texi: 
+  copyright: ''
+  hash: a57008ebce017626f01d164e1f36cb66ddcaf81e7aa1d43cd1d92b0223d81ebb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetpwent_r.texi: 
+  copyright: ''
+  hash: 75100ef488211123031efb59301d244ecb208b1cb9b65c4246803fa12ab4d41d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgets_unlocked.texi: 
+  copyright: ''
+  hash: 3afe49da21531770e755913daf2957e563869eaf7311d0bbae6c4d2a664b00ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetspent.texi: 
+  copyright: ''
+  hash: d22f7bf1109eaba8e95ebe8c050a77b9c677932e482068de0092aa1abc993d1d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetspent_r.texi: 
+  copyright: ''
+  hash: 88cce64476ac720a065d48f7ed83e89757d63c47b0397b2e4f66e30384ac5bc4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetwc_unlocked.texi: 
+  copyright: ''
+  hash: b29178e60e8b553881d945e4be798334def8c4123d44b176462d522bfe1af2f1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetws_unlocked.texi: 
+  copyright: ''
+  hash: 73140a13f61673c53dbb5d6a98e4edbf6648d239c6cd9dfa1e58eec08b3ed1f5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fgetxattr.texi: 
+  copyright: ''
+  hash: 690019b55ebc29fa70959ccca4ceea265daeeef5ab17782576151fab734ef1c7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fileno_unlocked.texi: 
+  copyright: ''
+  hash: b114e30579686f868d9b5c0c1ebc7b367451428905308c9c5b44788b23cc5fa4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/finite.texi: 
+  copyright: ''
+  hash: 29b265d6f1a1c66117c921380d2f8541ecb864d9bb4b99bd063377b2fc379fb1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/finitef.texi: 
+  copyright: ''
+  hash: 327d8133425a2bca8406a7ae88aa480fc96ef29d5d813d12bef4d00fbb84c11a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/finitel.texi: 
+  copyright: ''
+  hash: f1dfd14d92d720128a297b18802208de0aef77b8a55724a3bab52e1479a959b7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/flistxattr.texi: 
+  copyright: ''
+  hash: f690841408ca5558193c7cb2548a0fde981b916ecc72db6ff57263c37ed95f21
+  license: ''
+  license_text: ''
+./doc/glibc-functions/flock.texi: 
+  copyright: ''
+  hash: 7efcc517b27c29ac838581e490b7de074f2a907c7d0e8019e6f1ca8837296a92
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fopencookie.texi: 
+  copyright: ''
+  hash: 84f7e5764f5c5ba2402d7e79c475c8bdfacd7d6257c9f7b26fdb3330d7c09349
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputc_unlocked.texi: 
+  copyright: ''
+  hash: eaa6f4ff0366284337b9d6cf787c8b90a4496e22f732d5b3c75a7ad81a701d60
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputs_unlocked.texi: 
+  copyright: ''
+  hash: edd6df84c06304c0437c886bb83502513adc2964f412e1083b0437c0375aea57
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputwc_unlocked.texi: 
+  copyright: ''
+  hash: 1ff188f75d9abcd7575d0fa34888759b6bb1e3f5f8a22b388e78dae16f032015
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fputws_unlocked.texi: 
+  copyright: ''
+  hash: 1c1444e165a52b94709303c0bbe816b400d1f56a57e11dc5ea3b2d2caa8fd7ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fread_unlocked.texi: 
+  copyright: ''
+  hash: b9d76fc01917357762291957d2a045fc020498ed7c8a767c6b27b2e3046e4fbe
+  license: ''
+  license_text: ''
+./doc/glibc-functions/freeifaddrs.texi: 
+  copyright: ''
+  hash: d5198cf034f6423206e3904ec037f3d2d3cddd2d2a19eb6f4bd11bca16cfb781
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fremovexattr.texi: 
+  copyright: ''
+  hash: 6ba4e774379ac053b21a8a26c04a2a2c453da0770521225903b9ed6de6e3067c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fsetxattr.texi: 
+  copyright: ''
+  hash: 0fc330b04332599ebb973d94e987ef0f2b31b571ab2cd7a34947c41a12ae1a42
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fstatfs.texi: 
+  copyright: ''
+  hash: 7c08a51a0efa25dffbf458537d7aecd92c717d76e40ca2966251a39e1c8a70eb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_children.texi: 
+  copyright: ''
+  hash: 94455de1757c151913c00f827b1a2cb6789f967ea511921a4f9c02f6ef1d5acb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_close.texi: 
+  copyright: ''
+  hash: f24724092bc824c6d20defedcf74897ac95ebf70949559820a3bc366b0e1f58b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_open.texi: 
+  copyright: ''
+  hash: 71e6cf5ee44d9e7d6be7a9d4d2ffdfa9e4b96b9ec8e5de10eaf3bbbae82ad330
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_read.texi: 
+  copyright: ''
+  hash: 7b1858d353c66d3dbd174039b17a0a4d0b16e8c3899a13eed362f1a4c13244c1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fts_set.texi: 
+  copyright: ''
+  hash: 256a8d88f0cc0955a51687ecf5615cf7a881767b10a089ca44992d99aa8b1429
+  license: ''
+  license_text: ''
+./doc/glibc-functions/futimes.texi: 
+  copyright: ''
+  hash: 037829991904df1c3901b1d01cb83109588552f04f88343861b5c4f4f1bf40bc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/fwrite_unlocked.texi: 
+  copyright: ''
+  hash: 974ebb20ba87289b7f0e6ddefcd90961129b8d175829ffce2e381725d2ba1945
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gamma.texi: 
+  copyright: ''
+  hash: 9cb11d5b2e84aa422c9f2e2133ccd0932dfd228551eadc06b20ec078581b38aa
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gammaf.texi: 
+  copyright: ''
+  hash: 7edaf91ce2d925820a9a78615837f905f281f4bc2790b11ce2c8772eee1ffee1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gammal.texi: 
+  copyright: ''
+  hash: 6e51220bdbd524db03f3041796922be83f750d1c72d031514e4ccb6818a1e395
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_avphys_pages.texi: 
+  copyright: ''
+  hash: 86b817fa554261cffad4b234b1c1f76b937059593d07a00c86d3952baeb25aec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_current_dir_name.texi: 
+  copyright: ''
+  hash: c881b750dfad7180315ee97d2b221ffda075390499de4c95d673654bef8f112a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_myaddress.texi: 
+  copyright: ''
+  hash: 57dd4818b22e5ed6e62a684c49b21a6e70f5d70f8819ad0d069ce50a11aece52
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_nprocs.texi: 
+  copyright: ''
+  hash: e4ae1bf4f5a4a4d2fa18f4004fe315b6c3797753a31462fb10b80bab3eebeef5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_nprocs_conf.texi: 
+  copyright: ''
+  hash: 871ded04b70eb098a066433e66a0719f426de8652e8bf2a018c78cce4a8feab6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/get_phys_pages.texi: 
+  copyright: ''
+  hash: 0b435c167f36008b1c489bbe6e654c84a71339cf253b6e0bf9f6375012ca3fac
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasbyname.texi: 
+  copyright: ''
+  hash: 65689c5a2dcbda4a359ef794eb15c9024496d01b08165a300e1e95910bb8a18a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasbyname_r.texi: 
+  copyright: ''
+  hash: 7f5a394056e5e3ef999c0ef65ff789e3fd223586bf3ed8bb06e41f1b0198cdb3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasent.texi: 
+  copyright: ''
+  hash: 0660506d75982e5d03be95aa0f0eb1a59daf650761a21da74b3eac6fcc147867
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getaliasent_r.texi: 
+  copyright: ''
+  hash: 66b222cfcd7497514392309a78bb93a837b1b127131214cafae44be18f39f75f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdate_r.texi: 
+  copyright: ''
+  hash: dc9df7e7e7403e56c170c3b7a33bce22bdb2507b21a261c3a2274538a431816c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdirentries.texi: 
+  copyright: ''
+  hash: 3a012dd3241b1456caee10d79274eb940c4214014790fc72543bc952dcd7480c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdomainname.texi: 
+  copyright: ''
+  hash: cf1b6b4a46a7477005767cb622701ab85b7d6406b5d6491f46a8c4f65ebcf436
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getdtablesize.texi: 
+  copyright: ''
+  hash: 06cf32c410472a7d90298a5830e61e20c06ede2e722334ae6e9f63aa9fb918af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getfsent.texi: 
+  copyright: ''
+  hash: 8fe4b7150bb087d51ba540574f6fd67b6f8d21603d46806af136aa0c804a4f03
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getfsfile.texi: 
+  copyright: ''
+  hash: 4d6b165155cbcf1d90f346c076836501c493c3c4d5b3b50911fdde6a51d30a4f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getfsspec.texi: 
+  copyright: ''
+  hash: 98cbde6d93830b56dd77d5410108faad88aa601e687bc9e7db3a330fc2faec5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getgrent_r.texi: 
+  copyright: ''
+  hash: 415a963f427a26141a3101785143c8ae15441636078d0713398e1d6806cd824e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getgrouplist.texi: 
+  copyright: ''
+  hash: a49850ad2d6a07c35ad979f1159ebcb648b6cbe8736094494ca1469400eaf72d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyaddr_r.texi: 
+  copyright: ''
+  hash: df45e5647825973d9f0dd763fa040795dcb4f5bc902da7282abcb73868525863
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyname2.texi: 
+  copyright: ''
+  hash: e719f389b44f23c32ed792b3458b6ea0553f49ed5f3ac8daf200f4b116f9a484
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyname2_r.texi: 
+  copyright: ''
+  hash: 7dffb2287bac4f81d6d7f64d5e7ec94935a87c3de4f3f32a5dd53d7cc95cc52a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostbyname_r.texi: 
+  copyright: ''
+  hash: 19e1150763a82fe7e0239e6fde63ed8e2c97ca30a9d81e16934d038d8f015a8a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gethostent_r.texi: 
+  copyright: ''
+  hash: 0a7b5beeb6683459d5d242bebe81d29591081a3dc8337b6bf4794ef911d90a47
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getifaddrs.texi: 
+  copyright: ''
+  hash: b6e093fdcea493b5eaf3d05eebf59cc8019e8c30ec1f918dca2ff11926e45f5d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getipv4sourcefilter.texi: 
+  copyright: ''
+  hash: 6c4a84dbb00ebe732e345872cd6238e6b6a21d0c570782c5027f85a132939cdc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getloadavg.texi: 
+  copyright: ''
+  hash: 5c50122cf493b14e89404a2529742e0eb7f769eaf1ad2e2eb1de55c522f72070
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getmntent.texi: 
+  copyright: ''
+  hash: 118d57e88ed72fcb5c276a839dcf8b0c904f5692b6a0edb3f06e68455489f824
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getmntent_r.texi: 
+  copyright: ''
+  hash: 48eb7d81bc253d4a805ba2492968265048fdcbb16ced813c0c7e47fa43786e19
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetbyaddr_r.texi: 
+  copyright: ''
+  hash: 8836358d4db5b375335c43a5829364489815a6743c667794e43dfbe350165119
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetbyname_r.texi: 
+  copyright: ''
+  hash: 74b2ce77d900b1b43ab6ecf6d5ab1609135ccd0f61fbfbeaed71ec533218ce92
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetent_r.texi: 
+  copyright: ''
+  hash: 9d9954b6b2c0763e4863e77e693ca5b27b4af1bb9628c68b09b84c5fbfd32569
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetgrent.texi: 
+  copyright: ''
+  hash: c13ce3af9094527db4d66d68ef8b1753c8c544443356ccae7c3b6c80a8192153
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetgrent_r.texi: 
+  copyright: ''
+  hash: 31b5ec65e6bdf042d6ec5850f70992b8512f0847207be624ae421c1eba543c4a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getnetname.texi: 
+  copyright: ''
+  hash: 0a4a9be7822c9ece381caf81f9e18f6b702a742c21ad0cb63bbaeb38723fe229
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getopt_long.texi: 
+  copyright: ''
+  hash: dad8eb73ad490ceaf3ee7e5c203f85a5bf4c98806402d26ebcd62dbaed58c7a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getopt_long_only.texi: 
+  copyright: ''
+  hash: 38aefb0c9ffea52916f9d325982549e94f16a1f00e0fcbef4b0c17571276c80d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpagesize.texi: 
+  copyright: ''
+  hash: 17c733598549bd7e5467f30df030367e9330861157dd95d74e0b470ba83f72a8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpass.texi: 
+  copyright: ''
+  hash: 694469640b9f29046e9d2544e5ac1f53e9b4c5a8f5be710ac49bcab014eb3f6a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getprotobyname_r.texi: 
+  copyright: ''
+  hash: aac24abffdfc1f64410dd5a2db7699f92d0dcff5a635a2a699f8751026986cad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getprotobynumber_r.texi: 
+  copyright: ''
+  hash: e2bf616350a39627ccee7c70afff54cc519b109982c4b47c8fd24d1c5a24a6dd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getprotoent_r.texi: 
+  copyright: ''
+  hash: 1b20b82271d78e1add8a6c551ecf444f41b8844b3aa86f658341c1da9c4ca1ed
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpt.texi: 
+  copyright: ''
+  hash: c6fc22204ce304b1a58766533965391bf90544a87140bc3c144d1b2ec3c2005e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpublickey.texi: 
+  copyright: ''
+  hash: 1e5ed1f2dd2cd6f816c391c3c1400afff1a8594c11c520707eba9311d64d99ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpw.texi: 
+  copyright: ''
+  hash: 3396864fd691dff5978be16d1c8ca280115900c5ab81b4ec3cd820be7c12b6cd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getpwent_r.texi: 
+  copyright: ''
+  hash: d35394471916e21a74403c692013b97e794c9e13ee8b73d01ba8c40a30973da3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getresgid.texi: 
+  copyright: ''
+  hash: 4efd93f503f97b2da4db28219cb83a1d67ad3a1ee604faf21c7edb0cde3788e3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getresuid.texi: 
+  copyright: ''
+  hash: 4f1280ba0721b8f9c76f825e14245c788548755fad562195beea6cba0ad1d1f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbyname.texi: 
+  copyright: ''
+  hash: 905f78969e816bd350371c52ebe91dad4a5b048ee6f000151ac80b4a65e48b2e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbyname_r.texi: 
+  copyright: ''
+  hash: 44eac722eea8be2fcae7d693ea0284f9ab65ca59b43434d0fa9cdc3978586116
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbynumber.texi: 
+  copyright: ''
+  hash: 19a049fa39885a88b1b1656784167616f7a0f06cc386b49b096128fe8a14849b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcbynumber_r.texi: 
+  copyright: ''
+  hash: 5b8dd84e20a06df244b7d3edc8605103662dfe841148bf00b9a454ef95f02a88
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcent.texi: 
+  copyright: ''
+  hash: 548d13540a5fe2e1a3f06658f9888ec428a4921edbcb4e94fbb13845c393cf20
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcent_r.texi: 
+  copyright: ''
+  hash: 19ab0f4d93c76eb06be0821328366797143747ba178622a0f9ad32e40bed4f3b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getrpcport.texi: 
+  copyright: ''
+  hash: cf4a3213ca4830fdea0aaa73c4e0d6bbecd11482e8b41445b0b799f0a900fd3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getsecretkey.texi: 
+  copyright: ''
+  hash: cb680a88fb1c4043d7ad5aeede48e3b45f280065222c98269e3b7e2f1ff3a4c9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getservbyname_r.texi: 
+  copyright: ''
+  hash: 2d08f58dc31a7a5d6ce63b87427c82c10463d0677ed9a96c6744dac760cf7262
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getservbyport_r.texi: 
+  copyright: ''
+  hash: f488f6a67c41f08aaf2d078d1bee111c5ba850008601f5abe7cb2fcdf2dbd64a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getservent_r.texi: 
+  copyright: ''
+  hash: 6f3fb5e0944a60104ac0c0367388c291c6bd330cf92a5ce3ea037bada24731ae
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getsourcefilter.texi: 
+  copyright: ''
+  hash: 15322732f310afc29502328c640113b0330af4800e7215f544f5bed24ed06e0e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspent.texi: 
+  copyright: ''
+  hash: 816a3e44c64019324be118cf732622c9b41800b00d54207318c5ca679391c448
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspent_r.texi: 
+  copyright: ''
+  hash: c90f3c1a8151fd685d77b05c06edad9008729c3d6da221cc0f5f83ffc04fd932
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspnam.texi: 
+  copyright: ''
+  hash: e631c5008ad912f6ea71bb26ec876dfa92e9b2bd194088697e5d399c962b248c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getspnam_r.texi: 
+  copyright: ''
+  hash: 06de88fb505a2a1a6c2b68ab76d83c4b0cbbe1d455a47eda337bc53683c07825
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gettext.texi: 
+  copyright: ''
+  hash: c3e128d9a2aad55928c0e6dec0d5eb46e61499055328c6a496a176b7c9ac4c25
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getttyent.texi: 
+  copyright: ''
+  hash: 6323d546b13f1fa19f8d12c7493f30c83d3069e5d758e42d85fff135a2af58d1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getttynam.texi: 
+  copyright: ''
+  hash: d37f8ec697e742f31810a75c3856bdd3135ac59ca5aff77900a26735a96fc0c7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getusershell.texi: 
+  copyright: ''
+  hash: cfab9f44b6e745d3d468f31d513f50ed5583cc39de18788eee15bf69ef1df781
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutent.texi: 
+  copyright: ''
+  hash: 6f5c71a6983b4ea15e9a021b7b35f04339c8f553d0a6665bee201e2a4029e32d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutent_r.texi: 
+  copyright: ''
+  hash: f23aa1bb4cf2e15afff917913cf5fa875fcce3fd76bf28b6286146cf1a8312cb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutid.texi: 
+  copyright: ''
+  hash: 439997018c8b769dfb084615688bafe72428d4474bdfb0161939704cec828897
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutid_r.texi: 
+  copyright: ''
+  hash: 9ba7da53bc2795a796bdf6f0dd1b970e8c280d5f17ce03a6b670e9bccb38494b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutline.texi: 
+  copyright: ''
+  hash: fe54ac8a004414583269fc3344705760ecb22c3c50e12363d49ade9a623af8dc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutline_r.texi: 
+  copyright: ''
+  hash: 36891c71d337e6950a6843a4569e906ecbc3d31a1cced286b170ebf0444c16ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutmp.texi: 
+  copyright: ''
+  hash: 5c40fd3e795045b2d723783cb2d898de33a3b0c6c7730816e237fe1cf9a4198b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getutmpx.texi: 
+  copyright: ''
+  hash: 860f5db05955b646b09ef98b56e1d0f553aba1321aff45ae114e2477330863e0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getw.texi: 
+  copyright: ''
+  hash: ab2d47caf89a7b4d27c816c5fa8ae1dc26e8bb1719b7513534a167d08bc66bba
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getwc_unlocked.texi: 
+  copyright: ''
+  hash: e15241f0f79501082baf0556344152cb4ad99e048310bddd3307f49fcd782590
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getwchar_unlocked.texi: 
+  copyright: ''
+  hash: 4bc33b5e349b95a16b08328563f1705c3a8b377d4bba92760d98a3c2e53e0dcc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/getxattr.texi: 
+  copyright: ''
+  hash: 03a413c12f46294e620434f6988a843d1c7b71e9093540c05f8c052577dc98b5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/glob_pattern_p.texi: 
+  copyright: ''
+  hash: e5a45525080d1fb6f20b346c999fc57bf1d945c563ca219e40b7df38385c616f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_dev_major.texi: 
+  copyright: ''
+  hash: 2c8f2c8cd3092dac8fde1de1fa9eba83afac47e2d00f2579adf9f6ea6fa342ab
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_dev_makedev.texi: 
+  copyright: ''
+  hash: 91456ec1cb52c337a02eab045a676bccd9b81ab87d293c4bb059c08f8cf09782
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_dev_minor.texi: 
+  copyright: ''
+  hash: f4ba04dbd23ce77e3cefff8b4b2b5c60dfa80629d1069a98d9397a37023b61e1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_get_libc_release.texi: 
+  copyright: ''
+  hash: ef4a4671b053aa45ce96e73496c747ef75fcdc144a722460e0be44456916ec38
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gnu_get_libc_version.texi: 
+  copyright: ''
+  hash: b5114fbee7bd09824fa503582703e09f7f6b2a7585e6663c67a35609ed382e10
+  license: ''
+  license_text: ''
+./doc/glibc-functions/group_member.texi: 
+  copyright: ''
+  hash: 0e0b082f81548c68c61dd3a9eeda82ebf07d7b1fd5b61543994344e045a92408
+  license: ''
+  license_text: ''
+./doc/glibc-functions/gsignal.texi: 
+  copyright: ''
+  hash: b2b2657d25fbc80d269f5a0685e399bf312b4d68ba672a068f8f2431ad41b553
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hasmntopt.texi: 
+  copyright: ''
+  hash: 36f7270890737ec725e1cc0561841b5887be379932a7033ec8b834289f5d3a8b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hcreate_r.texi: 
+  copyright: ''
+  hash: abc69a457cc1547bbeecb52c53a69d35e837795fca08831198f38f4dfccd9c5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hdestroy_r.texi: 
+  copyright: ''
+  hash: bf9ebc5b6f3dc6c2fef05616d7749656828c50f575497157021cd89b734630c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/herror.texi: 
+  copyright: ''
+  hash: 7efb9d00e25020573fe0ca6d431f5327a0e107cfdb5d169ea32044a5b6a90981
+  license: ''
+  license_text: ''
+./doc/glibc-functions/host2netname.texi: 
+  copyright: ''
+  hash: b79d5bf0b0a6505453d8350062b6df0e9778f32ddb2362c3f8588bdef2810d9e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hsearch_r.texi: 
+  copyright: ''
+  hash: 5e162a4ac8adb0bbf7952b6adb65c2b16238a077bfe346cf416573a5d02bf8b9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/hstrerror.texi: 
+  copyright: ''
+  hash: ff2896c321e129159b197b089ba7d3b2bd432f5c19892df7bbcce553a885f3f5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/in6addr_any.texi: 
+  copyright: ''
+  hash: 3343d5d1d2109f64c2734eaff57f503f856d8cf36c052b02fbea1534b6b254ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/in6addr_loopback.texi: 
+  copyright: ''
+  hash: f691c99e758b8950e9d2c3d2632ba2188ccce0bf0e2a694b5fc6bfb3d8d0e62f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_alloc.texi: 
+  copyright: ''
+  hash: f8ee416c2fafae2cc7de879032e7e823c23f002bb1f0da2f9775c0365c34ba50
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_append.texi: 
+  copyright: ''
+  hash: 32eed6853d5746e0ae79df426c83fbbe260b5d207cb80f91e936621abbc3c97c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_find.texi: 
+  copyright: ''
+  hash: 8baa6d877ecd7d6bb686c29f627489c85204f5aaf48caa2abaf89eec92dcb309
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_init.texi: 
+  copyright: ''
+  hash: 716e71d5494dfdb22f64896bde3fa8ae205c6bb991f7e9c6d0fc952c846f47dc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_next.texi: 
+  copyright: ''
+  hash: 13cbcc7303e27c83c1774694d78389e69aa86407793a5949c9d9405345911b82
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet6_option_space.texi: 
+  copyright: ''
+  hash: 6a338b1ab5bf78425879176034fbd8ce86ea60012693598f4ea14ecae1e3a5f6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_aton.texi: 
+  copyright: ''
+  hash: 9a56198c1b11ffa7150833f8ee1d9a4028f6aa89bd414b1f7a0e7c543cff9f16
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_lnaof.texi: 
+  copyright: ''
+  hash: 20483661f4173ae4282bab0f288af2fa5e182b5412f23a427c4436a1f8265660
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_makeaddr.texi: 
+  copyright: ''
+  hash: ecbcf0e5b28d43d1b529117c3fc1158cf0098e7ce14f76ed0d567668319cb56e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_net_ntop.texi: 
+  copyright: ''
+  hash: 77ee21bd1f169d7eb033b898b34b45a0237e0df1410f25dd455a01729c3c05d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_net_pton.texi: 
+  copyright: ''
+  hash: 8091b168ada9dce7cbb5a6a514333edd9f7183085b640320a395810c26b5a4b4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_neta.texi: 
+  copyright: ''
+  hash: 3c964ed2f9db297bb4dcf3465662c790ab871bb6097a662047e7c1e08390065c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_netof.texi: 
+  copyright: ''
+  hash: d70586041f476627921035730357871373233e52c0c6e94f91818550e6b66eaf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_network.texi: 
+  copyright: ''
+  hash: f2254b279938a2eec4c6ecc5454ce2b3beb3bd6351d7975d0f0cd8790b21f533
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_nsap_addr.texi: 
+  copyright: ''
+  hash: c1c16ad1ff261f383ff1c3afc2d485879cd52700b11d1b32d6dd64c261374cc3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/inet_nsap_ntoa.texi: 
+  copyright: ''
+  hash: 22cbce91c0a84fc930ea34428b2487e2cc500468c4078b1cb753e56d6c91d490
+  license: ''
+  license_text: ''
+./doc/glibc-functions/initgroups.texi: 
+  copyright: ''
+  hash: 10e6d0b7a28afe505954b18d7222af105b5c0d8bdd5981dd65217435dc52cfa6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/initstate_r.texi: 
+  copyright: ''
+  hash: 50335fba65ff9a2874843ef28cf645262a1f58db8252219f19d40c753f96617f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/innetgr.texi: 
+  copyright: ''
+  hash: 98fc724eab658d8ed65ba83432248a5d34c20a9d3d052ad6a96bfbcb9bcc62cb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ioperm.texi: 
+  copyright: ''
+  hash: 823826c8fd5e3e084b894cb58615b662b2bf53547e5e3808f4249cd4101bcadc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/iopl.texi: 
+  copyright: ''
+  hash: 3e7a8dd4e5b5ae33a9f5e799d208ddc48030ed9fee2c0d94b15262ab5b16030a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isctype.texi: 
+  copyright: ''
+  hash: 889baa1d5aa326c2837dc4f72b30c184cea862b1a32ed8dc7d20b6b87d5f235f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isfdtype.texi: 
+  copyright: ''
+  hash: b493b5b3e930e6aa2d5182a88f186dbf845e087ff44fddeb94fb7989c9969514
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isinff.texi: 
+  copyright: ''
+  hash: 7b778ea3f39894bff3a41540003a2ea2ce14fef3bb60ef86d52ee6660ef0e805
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isinfl.texi: 
+  copyright: ''
+  hash: d68b2173aab022dadd5e172ba5216fba620cd71f9e5b92a99548f1ae1ebfe338
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isnanf.texi: 
+  copyright: ''
+  hash: 1bce23ee271e7eef2d71e8db58edf3ca47dc80441668f74c81dbe8826bf87b2b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/isnanl.texi: 
+  copyright: ''
+  hash: efbd3688a2c450ca48c45b0136ced1c4aff2c88514808efec73f03fd9b78c319
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j0f.texi: 
+  copyright: ''
+  hash: f018984a8e665058bcee8aba2e80e8d77c5ac1a803125c397151f46fe43e20e6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j0l.texi: 
+  copyright: ''
+  hash: be8df2ff66c9633147a1dc233d630b26af08ffdfa1933cf4aaf9f4d09d5a5941
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j1f.texi: 
+  copyright: ''
+  hash: e6ea933aca4d80ea575f33af255ab6a3a2eda0cdd27784b83b53ca5d66211d21
+  license: ''
+  license_text: ''
+./doc/glibc-functions/j1l.texi: 
+  copyright: ''
+  hash: 36579052197222d9efc066047354b6a133e706205b9f137ecf4b71427b4fdc15
+  license: ''
+  license_text: ''
+./doc/glibc-functions/jnf.texi: 
+  copyright: ''
+  hash: f14a75b388ab7fe56275dae1799ba1c17cde27b7e5d9b96b1a391a33b3df3efc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/jnl.texi: 
+  copyright: ''
+  hash: 3349339e57b6eade070ba4b9cbe16e5a0618a9b85fddbc1a5247036cc12fa268
+  license: ''
+  license_text: ''
+./doc/glibc-functions/jrand48_r.texi: 
+  copyright: ''
+  hash: 875e437face5769c385f1106637fd80c5bb8eb5b226ca64b99af6987eddd8647
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_decryptsession.texi: 
+  copyright: ''
+  hash: f14cf546a9737b2f8028dafe7ef389ce9b886ba35d2542ddc8ae65517df1610d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_decryptsession_pk.texi: 
+  copyright: ''
+  hash: 5a61fcee114acb7ca73e3e27b17554cff55f4d20b58627e0d6482974bcfd9fc1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_encryptsession.texi: 
+  copyright: ''
+  hash: a352d0f45112554f83095b1b11cfc6c2fe3dd18846a2e279d57a07069eaeaa29
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_encryptsession_pk.texi: 
+  copyright: ''
+  hash: 50ce495fb62eac5281e2a5197c60eb843d01fa0e0d74462c77c5f5d108c772bf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_gendes.texi: 
+  copyright: ''
+  hash: ff565b8a1f485504fddc3dd79b2a5298cafee45d9cfd295f06952f93cf0fc41c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_get_conv.texi: 
+  copyright: ''
+  hash: 2d67dd92f660d35a6c01ee3ab092b29f019bce6e4cc42b7d6090ddcd22078945
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_secretkey_is_set.texi: 
+  copyright: ''
+  hash: bd6b7b1dace7b7a1b74b4b0b2c58048aed86b897ffc611526f68c6c8582b5f8b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/key_setsecret.texi: 
+  copyright: ''
+  hash: 6094078abb1f07ee4edafc08a32407f75d51ce0754608fbcf30285aa93aeeed9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/klogctl.texi: 
+  copyright: ''
+  hash: e94f06a40c4d0334e6164193081d720d3919f87240350763f60fc1bd02243920
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lchmod.texi: 
+  copyright: ''
+  hash: 41c523da30a051dd99ec2257cb0be4a516ebd67cf98f27fd1cdec7233791c0e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lckpwdf.texi: 
+  copyright: ''
+  hash: 6ce97709bb88f0181fdead5cdd63ba4ea2ff23e2133e08ef3ad6f38aad44d168
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lcong48_r.texi: 
+  copyright: ''
+  hash: cdf1fc0cf75c5dfa76850685b7dfa0970223c08ac3c313511109705f041e32e5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgamma_r.texi: 
+  copyright: ''
+  hash: f1067f2deef4d6d086b613dafcf75e2d8a8b33516dcea3d650a4e53eb798be85
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgammaf_r.texi: 
+  copyright: ''
+  hash: 07fc9d2fb55d3b03b25613c659cd7a421cec84336ba790a0140f2b5170959e36
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgammal_r.texi: 
+  copyright: ''
+  hash: a202db76414d545a82571afd6b5b142038b5c76857892595291bd0956dbabded
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lgetxattr.texi: 
+  copyright: ''
+  hash: b4016960542d19ab531b198fa260b565e234aa75f52e450a4ddac8c4153c2b86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/listxattr.texi: 
+  copyright: ''
+  hash: 766b533e1039bda67b46b2abc106e61b68237807b365fa2d8c7cd9cedb09b7ed
+  license: ''
+  license_text: ''
+./doc/glibc-functions/llistxattr.texi: 
+  copyright: ''
+  hash: cb2cc96665e3469eab1aca6e9914d527d7deebeb1c577cf6e66e9927b5d0d9af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/loc1.texi: 
+  copyright: ''
+  hash: 9949724a8185c91f3ef464d2aa050f0b5b43eaa8321a6a2515bd0b6999330021
+  license: ''
+  license_text: ''
+./doc/glibc-functions/loc2.texi: 
+  copyright: ''
+  hash: df9bf9c136fd206c3634b2407f5b42dc6c9288ce610651a6db47701b1370b762
+  license: ''
+  license_text: ''
+./doc/glibc-functions/locs.texi: 
+  copyright: ''
+  hash: 1a2e4532efeb8ca8cc341d087d36601be44fa8bae2739f429d389c234c74841b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lrand48_r.texi: 
+  copyright: ''
+  hash: 7b0e546feae99c2ea77f3129dd3efb78f581ebbc0ac49a32cf55bbac1a3c8d1e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lremovexattr.texi: 
+  copyright: ''
+  hash: dac08211e81a4886e6300466d6179c752fa4e88d6e18909047d998eb01c48fe1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lsetxattr.texi: 
+  copyright: ''
+  hash: e72b0131c569a6b2919740004a201d9042a5886861a99a6682116e0d74deedd0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/lutimes.texi: 
+  copyright: ''
+  hash: 4494237aa78d1f5feae4a8716c80b67462a78776a0e04621a5e002a93c5e9db1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/madvise.texi: 
+  copyright: ''
+  hash: 0abf4aaa28a84d398b86fc0b64fe40ba82661a7aa28be80be83ce5481999c24b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mallinfo.texi: 
+  copyright: ''
+  hash: 53dc1fe63b43700cfc5595bb7c9b42bf254ea159738be0d6f19e32959922a525
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_get_state.texi: 
+  copyright: ''
+  hash: 0f8db5157459002d516fab08a56deebcf940e6ed3025d83ef829c901798a9bf3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_set_state.texi: 
+  copyright: ''
+  hash: 4bf70c2bcd80fab43784d28c0b12af9e30854ed31c601ff859a7b01f3acfb720
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_stats.texi: 
+  copyright: ''
+  hash: 2298a8823b378dea8818f1d9a770ac197b8503a13a69fd7346fec1b8adc5badf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_trim.texi: 
+  copyright: ''
+  hash: 8fa0f761ba3f7a709958c154bc5b00060432a7bc5d64dd87a029374c23b3c721
+  license: ''
+  license_text: ''
+./doc/glibc-functions/malloc_usable_size.texi: 
+  copyright: ''
+  hash: e03768f538df19a72d96df56a8d72b851ed620417a3cfbf0f023984a7aa27cbc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mallopt.texi: 
+  copyright: ''
+  hash: 354303e13ef60ac8f163ce31970099caae693733e806a3d784b35c6502380d33
+  license: ''
+  license_text: ''
+./doc/glibc-functions/matherr.texi: 
+  copyright: ''
+  hash: c9f25db9aa8e2d44cb7c2d7eb36e59a781374db3345e762d9947e00308b640af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mcheck.texi: 
+  copyright: ''
+  hash: 43737afc82a18aee7de3fedd13d407ddc56eb478a24e445430f3562474a8d00d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mcheck_check_all.texi: 
+  copyright: ''
+  hash: 05f9d5fb933246bb5f0e7c78250f93db035e76fc439f2b23d51d878607946515
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mcheck_pedantic.texi: 
+  copyright: ''
+  hash: 073bd20f56761fe3864be551f40f53acdf50e7f558c6283e8bb446e1a7507e0a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memalign.texi: 
+  copyright: ''
+  hash: f136fa4c4d15ffdbd5f531220ea80a0fe280ea744efe2df2464ca729ed50544a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memfrob.texi: 
+  copyright: ''
+  hash: 90bb532679e589dc002bdac93373fb237660eee372041a4d57bbc10bca2b4613
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memmem.texi: 
+  copyright: ''
+  hash: 04f124a3fcb1df4da38a60d37d4857c9345452b7fbf71a71c6002a518c95ead1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mempcpy.texi: 
+  copyright: ''
+  hash: b858f2e5874b7b279e54b70d044ef9bd6b836bf3cdb7e62182ef094457ea7fb6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/memrchr.texi: 
+  copyright: ''
+  hash: f10096eec4df36c30bc322d5f37c71eb9e1295c8d1279caa10d7337adb9e9bfe
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mincore.texi: 
+  copyright: ''
+  hash: d5ceb391e9ca3ad88142c561d35df48487b2b5244eb31c59c10c86148c729d52
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mkostemp.texi: 
+  copyright: ''
+  hash: b2b1685ff0c8b88ee8472b3ef555c792849913110ee83219aad70e59cb6ecb84
+  license: ''
+  license_text: ''
+./doc/glibc-functions/monstartup.texi: 
+  copyright: ''
+  hash: 66ff5e7ec331a6bc6b660646ab8eb22538317c7d33f96fcabd0c5d425803cfad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mount.texi: 
+  copyright: ''
+  hash: 89d49f190bf722b33bba60f3422d827ee83250869251d905394a34bf4bba6a9b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mprobe.texi: 
+  copyright: ''
+  hash: 2ac42cda54a697d68ea2e325e4ba43eb65736cd30b4382aede8dc4824572f9b1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mrand48_r.texi: 
+  copyright: ''
+  hash: ffb500a2ff554d63422da2ea61c5b231549100a88736dd7fc3b506d3b5fb3094
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mremap.texi: 
+  copyright: ''
+  hash: 4e3207e5e74599c816870d954202dcdae1715843b3df121a4f2e92175bff329d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/mtrace.texi: 
+  copyright: ''
+  hash: db58f2773449db5048f8cfc6447f1ec6a5800205846cafe936b2e50df304b6c0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/muntrace.texi: 
+  copyright: ''
+  hash: e4ef0e069f49433b429895b055f989584f43aee61bc11729d0b12690d53265a0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/netname2host.texi: 
+  copyright: ''
+  hash: f6e22e73db730831231e52473244e21f49b9472597a7d25ee6374780b72b7be4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/netname2user.texi: 
+  copyright: ''
+  hash: 297df46c6a600ed01680f8e1ab82d3eb8dfea80bafc392c63ff042c3066b957d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ngettext.texi: 
+  copyright: ''
+  hash: 353e35ccc3655d2746555f2166fe50c9745ff46f8d3b9da62cdf4e2478edfd0d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_add.texi: 
+  copyright: ''
+  hash: 263e816d7afa10f2eff1d04d45ad18c9376fefc8387e038002157f1fb9b9e627
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_add_entry.texi: 
+  copyright: ''
+  hash: be462a1c0813a2fbe4a6c63c656728103b648f8ebf90d7d65cfd43b7c9bf2122
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_addmember.texi: 
+  copyright: ''
+  hash: 7072a94c1c6a763fbdb403984914dab8d19e94f4e006d2da05d793a5e9d79671
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_checkpoint.texi: 
+  copyright: ''
+  hash: e4226fd044059c8fe33f10a2fdb76cc5fc56b89c1d3311a5df12bfd78967e027
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_clone_object.texi: 
+  copyright: ''
+  hash: a464d80bc89c5ec658aa632ff8d84414cbbe990b840f5d53e82199e019a4222c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_creategroup.texi: 
+  copyright: ''
+  hash: 5e4f2f700588803a40a7426e00f416c4be2652170b4665a3b23aa6e553094d81
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_destroy_object.texi: 
+  copyright: ''
+  hash: 86f6389d465a145bc9091b09bed0c51c1c7ee4d09f94612821e1b529fe29074a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_destroygroup.texi: 
+  copyright: ''
+  hash: e11e32b812c8f945ae14541ca337f9536b7a79ef57894734a37d2778596935ac
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_dir_cmp.texi: 
+  copyright: ''
+  hash: 5ab7cef0103aeadbae156d28208185b62d0745b1f91b0201776b400d5fdbbd3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_domain_of.texi: 
+  copyright: ''
+  hash: cb2e2f91fac66b3ef7cbbed96c046597d9402dac44e48715e298c5d3325b33e2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_domain_of_r.texi: 
+  copyright: ''
+  hash: e01fa11b120ba609cc2b03eb06432003342c5c2f6777c32b6b476bc8c80107ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_first_entry.texi: 
+  copyright: ''
+  hash: 45660d94336a14941d4700b9f46ae7b03258556c408af401e0bc43e60c92fdc4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freenames.texi: 
+  copyright: ''
+  hash: 33c1a1ff5e5749756bb71d4be9085a4e0906d101402c28d9b918a58d5c2ff30d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freeresult.texi: 
+  copyright: ''
+  hash: d641a6f0bd155a2f4fb7439d570eccb55e645429ca22e9c07c97a8ab658afbc5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freeservlist.texi: 
+  copyright: ''
+  hash: a313a31d105e0e98d83014e7b059a110654b88e2bcd163dba39b969d19d33446
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_freetags.texi: 
+  copyright: ''
+  hash: a3ff251aea66d507b2063975140b06150d679a9a9bf00017624ff85f8f6bd28f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_getnames.texi: 
+  copyright: ''
+  hash: d43fe192fa29a30b8f90ac61d180ccfe184211ed3f0977faa89ef0f7a07d6099
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_getservlist.texi: 
+  copyright: ''
+  hash: 1a83d9805324b888d5311711e68616fedd684b59f87f51d69b563dc9f00f6858
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_ismember.texi: 
+  copyright: ''
+  hash: 2857c63d04a9936f8ba3d20d28940517296bf8b20f803c8a743c104988d93034
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_leaf_of.texi: 
+  copyright: ''
+  hash: b6c67a9456cca5e2b69c86c0ecbbd2fedb8440c625e979a1f5566c64ab27f6d5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_leaf_of_r.texi: 
+  copyright: ''
+  hash: 725eaebe89c74f16acce404fdf0f071aec15529fef9f090ef5c34be4d433546b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_lerror.texi: 
+  copyright: ''
+  hash: 4ffdf8647b3c5221348e69ed7337e739bdff92f8eb769471e9d6689991070429
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_list.texi: 
+  copyright: ''
+  hash: d4769bf377fc70bdf55491b7a67377fd1a0aa1dd73dc058055d72c76e32af56c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_directory.texi: 
+  copyright: ''
+  hash: ba21442c5b7d1c1e7df74f813f51c39739ef4c44fdd4c3e30410aac44ffff269
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_group.texi: 
+  copyright: ''
+  hash: 35d966e801ccbc175af0d271405896cdf076aee2a3963cccf9c344996b6ef16e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_host.texi: 
+  copyright: ''
+  hash: 61acdea5cc4f7e391d7a17ca71f48b4e99ce85adf87422596ff9b9fe9ad33c17
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_local_principal.texi: 
+  copyright: ''
+  hash: bda75c39fa29b305e57270533cd43fcff4b8957b7c33a88720f576e56d2df59c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_lookup.texi: 
+  copyright: ''
+  hash: dff8a627d19f85a944417280c3e06bac997c1e3e602fb256a92071677849b399
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_mkdir.texi: 
+  copyright: ''
+  hash: 5cab157d00861d7ae6a2e0a5aa9eb68901e09a0368fe1f5a3eb24cf0ed06cae2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_modify.texi: 
+  copyright: ''
+  hash: 5114449ba61f1c9ab605553b89b6123d3a32078f00e5a76e499b68d8366876c8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_modify_entry.texi: 
+  copyright: ''
+  hash: 293d5bb41a19fcfbea60ee5f78972517c0bcc93b6eddeb5e0b1f79ea538f3c49
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_name_of.texi: 
+  copyright: ''
+  hash: bd40e5451a5dadee1589a2ca890f0c4be95459bfd4710d3b00c0f7032a323d41
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_name_of_r.texi: 
+  copyright: ''
+  hash: 74450547b58277c638dc8c9fc5a9f77735cefc00af5581f21b477426174cba91
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_next_entry.texi: 
+  copyright: ''
+  hash: b5d18a883a8082cf62c0f70127d027f2d730dfee8bdf4fce9f78fac612a11059
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_perror.texi: 
+  copyright: ''
+  hash: 63e175ba3d8d9462bf33f5591c26da377537e4c2d19f98ce94b1bf4e6667cda4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_ping.texi: 
+  copyright: ''
+  hash: a283339d6df98d521b354c7c3a19f12800177c783e36c4496190befec8058db3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_directory.texi: 
+  copyright: ''
+  hash: 0d12a211acc7071d10598c83dbc6b33b328ab633b38ba33d6ffcce607c22c16e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_entry.texi: 
+  copyright: ''
+  hash: 3c03608e3d357f4f2ae81a76f45c8440141609a4fb7c6ed2db95ac5b426ce10d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_group.texi: 
+  copyright: ''
+  hash: d191e435ff63ff626db4247802381f0d2ca23de51ccd223ae5b0e3fa8798d383
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_group_entry.texi: 
+  copyright: ''
+  hash: 94235e89b9b74f3643923e90bf96ae311c285f6e306e968846b16b97edf831f9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_link.texi: 
+  copyright: ''
+  hash: db76e611302d621d742ecbc5f0b7748aa41a52c75fef66b7d51a9b61e47b31b8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_object.texi: 
+  copyright: ''
+  hash: 4b444fa06c5c0e05d28efd64f53953c251fe11cd356c7072f605f7b81fe44643
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_result.texi: 
+  copyright: ''
+  hash: 065717135cf4120bb8595486c857722fac9a7ff6efa0cb228ee5ed7bd4b0b62f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_rights.texi: 
+  copyright: ''
+  hash: ef827fc3aeb4e8739745772e04c2bb33dfb616b5c139e9899cef7de0b2c61ff9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_print_table.texi: 
+  copyright: ''
+  hash: e0f15bef44e6d6c29b27cf7fb973a373c824b49e6f6cac7d78e1a4e24ffe9c8f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_remove.texi: 
+  copyright: ''
+  hash: 32a1b74e420a969df9b898f94512ffe55692fccd53e5bc0a8b49747dd12ae9c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_remove_entry.texi: 
+  copyright: ''
+  hash: b942f308181744e8798341c6f5941ded24f4e0c7da25c1418c85aa877c6e8883
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_removemember.texi: 
+  copyright: ''
+  hash: 25febaa8a16ad94e35bc18a7488d7982d4f78ce14918877d291c9c5c767bfd6a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_rmdir.texi: 
+  copyright: ''
+  hash: 1520922fcc74b7d84ab000e8f2cc44f6b632d3b360c994c96ce622aaac36c8ea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_servstate.texi: 
+  copyright: ''
+  hash: ae1e425890ce2bd608090b7d4fda1a425f4eb9e9d9f8a723ea19657380abe127
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_sperrno.texi: 
+  copyright: ''
+  hash: f10e0ad2db9f765254f6314102b1293f9016812a67324536afc77869bea491fd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_sperror.texi: 
+  copyright: ''
+  hash: 0424f046ae5b85b906c4f37dde7692dda8837b71c3e8e5f2fe20a3803efdb6be
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_sperror_r.texi: 
+  copyright: ''
+  hash: 0b85879da12a5e9e29a941c50f3efd8e45e0541a0e18802f9a4506be929cb612
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_stats.texi: 
+  copyright: ''
+  hash: 42c64c2e6a6584e33cd7eb39921d729dbd6e6a26115b6d2826df92d6939149ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nis_verifygroup.texi: 
+  copyright: ''
+  hash: be6731f73427f2734ac003d261a86ec8c46e25e1fc47cce640ccd74020f884c5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/nrand48_r.texi: 
+  copyright: ''
+  hash: 7712ccaaa3bdcae2f7eb09d18a52fe84269c4bafff25c8852f4fcba3ac3e98d2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ntp_adjtime.texi: 
+  copyright: ''
+  hash: 9e4776f50a88065a71713e5f612bce9632cc30b1f8bc4d2954a2446f9cb88aef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ntp_gettime.texi: 
+  copyright: ''
+  hash: 43d0ca9a1f71946a1212081c572d4bbf1200a6741aac69b1615aab6a59449b55
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_alloc_failed_handler.texi: 
+  copyright: ''
+  hash: 5a162a65e8a06e06e90a6b0899fd99e63db1b413893f10ba7032f07f8aef588b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_exit_failure.texi: 
+  copyright: ''
+  hash: 2edf67bf7a1835c04266ee354618b79b2cf1a55504e63f8df43d88e33fa7adea
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_free.texi: 
+  copyright: ''
+  hash: 07713f4fe1679f4214b0ef91479610382e1e71da8177afffda8ef741d4bf2bef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_printf.texi: 
+  copyright: ''
+  hash: b365a91c2948c92bec6e04ad47471246074c066e91a9c7280419a2b0565744ba
+  license: ''
+  license_text: ''
+./doc/glibc-functions/obstack_vprintf.texi: 
+  copyright: ''
+  hash: 0116c5a2b4b5e76cede18a9b00d4584b1fe9c48eab74d203c12d979e2b2e39c9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/on_exit.texi: 
+  copyright: ''
+  hash: f98b9178741dde52f30e55489bd237902b8cb9e5b46daed74deb35af2053adb3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/parse_printf_format.texi: 
+  copyright: ''
+  hash: 08ec06c5f956c4070a8b8054be634cc362e5e0e26e4ec8caef463a3ab9cd4cc9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/personality.texi: 
+  copyright: ''
+  hash: 63ce42d8b39416dbcd2374b3db74e391930f2df790ac086e8b1e7f762ae2fd69
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pipe2.texi: 
+  copyright: ''
+  hash: 12ae9770c7677e3b83f1a72345d69c53783e89421def3b00a427828aa4aae3b7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_getmaps.texi: 
+  copyright: ''
+  hash: 9d85f6d0f65096677f4732a2bc82f6afa1f50403b05bf01e92206309db3f8873
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_getport.texi: 
+  copyright: ''
+  hash: 43960c367109816c9e5617623378139b66ceb8f0b929615750e1c5f4843f9dd2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_rmtcall.texi: 
+  copyright: ''
+  hash: 03654d766f665bb32b4a7b827d20aa8f6bea089916d5f00fa3f88848d411778d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_set.texi: 
+  copyright: ''
+  hash: 201b0d49ff805bb952b775dcdb25c33a70a6d0ee2aa959f9dcdce21ab7926ce5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pmap_unset.texi: 
+  copyright: ''
+  hash: 054bd3e1cd0792cb25c68df8fb153cd370444146dfc243b81cb187e177db8e48
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pow10.texi: 
+  copyright: ''
+  hash: f7912dfe94bb0f8ed4dee6d39483b4a4f76d7351546ef2c3e26fd901e252d2d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pow10f.texi: 
+  copyright: ''
+  hash: 877756c67f392d56fce20c2950bec91968190c557374f63cd87a22763ce81b47
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pow10l.texi: 
+  copyright: ''
+  hash: a4c1ab66b2a92023aed121a70e545bc9d98b47f6df5d36b1351cc504e97d55d5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/prctl.texi: 
+  copyright: ''
+  hash: 2427ec4bec38663fd75581e4a8602ed0c541707f2cba09a65af9825adb32a23c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/printf_size.texi: 
+  copyright: ''
+  hash: ccc98cc15667f89d94b22bc643ce60325dd868e79cd95487d7f6ad497a1210b9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/printf_size_info.texi: 
+  copyright: ''
+  hash: 237a32ff30c1e23980f4360ba09bfb50c6be4224fabd7a59919bd51aeffaaafc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/profil.texi: 
+  copyright: ''
+  hash: 0285b1f65b72595b3cdc34f19758d6a7c23b39ca0f9fbea16ce0fd482b5633ae
+  license: ''
+  license_text: ''
+./doc/glibc-functions/program_invocation_name.texi: 
+  copyright: ''
+  hash: db3aa2f7f6e63fde4dd4838f5ca464248be07d6ce02f604a2409cb704bb60f78
+  license: ''
+  license_text: ''
+./doc/glibc-functions/program_invocation_short_name.texi: 
+  copyright: ''
+  hash: 8fcb3035a868fc5dfa3c18c5064f3f8923e58487d6fd76f3c7b2b0655ee2d384
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_getattr_np.texi: 
+  copyright: ''
+  hash: 5590b31dad731bebfe2b8ceb8113ac27a6c50d9217e44e6ab3f30cead2c0d24e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_kill_other_threads_np.texi: 
+  copyright: ''
+  hash: e25942ee2f53e9ca33f05e74e0ae70f80054d143a1ee2b6fe1dfd8e3289969b3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_rwlockattr_getkind_np.texi: 
+  copyright: ''
+  hash: f84f03d67a82f7e2c4af4bc8a182657f2a4551524d997213cee786e26dfbf543
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_rwlockattr_setkind_np.texi: 
+  copyright: ''
+  hash: 5ae7f4598ef73bf7ce5a8f90875cdcff75b082163e7d79da8ba002b34fb91ea2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pthread_yield.texi: 
+  copyright: ''
+  hash: e1337bc33112135e65c647d51a8d5adee256835cb800205a520d0546efcf4873
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ptrace.texi: 
+  copyright: ''
+  hash: 27af6240148516067e80c328ec3534ed7e40044622162395eef385f5719f584d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ptsname_r.texi: 
+  copyright: ''
+  hash: 1cc50cfb5fafbdd0153d9c1788a49c41bb87fc9100e76edd9175ae4fc9547845
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putgrent.texi: 
+  copyright: ''
+  hash: 544f112128ba4307a201ac0244bdcf3352fce4cb574457ff2406b5b357d0d483
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putpwent.texi: 
+  copyright: ''
+  hash: 93178cf90ec4ac36c8ae75028fca56b82288ccb6f4fe145a418aa253bc3fe25c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putspent.texi: 
+  copyright: ''
+  hash: d6963772ef8e056c5e923c67f34fd2e931d6bf1f1e62dd2bae741ace73ec4265
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pututline.texi: 
+  copyright: ''
+  hash: afff12c0ed2226e45909cef2f6b409fddf503c4d0245a035fa85302e70bd9e10
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putw.texi: 
+  copyright: ''
+  hash: a7028bb2975807511cf4acd39f137c540e13cdcd67e0f00188a345645605ccc2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putwc_unlocked.texi: 
+  copyright: ''
+  hash: 570a8de4fa9f99fd2e735a412763e2dd138191615b64b9bb16bc3c3cd03b535a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/putwchar_unlocked.texi: 
+  copyright: ''
+  hash: f69ccaf0b8879e1b32f8329370cbbd3eef8ebf53964299657799567911f280e6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/pvalloc.texi: 
+  copyright: ''
+  hash: 01f71af124d7774fd46b6a3c388a86a7a0039fc30d235d2ea226ee8bc659912b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qecvt.texi: 
+  copyright: ''
+  hash: c2c83522e967fd4ceb406a9629d36310bedc29e77ba38d75f3a5367a178f8932
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qecvt_r.texi: 
+  copyright: ''
+  hash: a1c7516fe37f8c935920a2793726be94fcb48c5064bf4fbcc516a47b9bf9d2db
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qfcvt.texi: 
+  copyright: ''
+  hash: 1b0d08244caaca9dd6f63183a50f81ee270c7250b6c4090fec67e3cf11e0e253
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qfcvt_r.texi: 
+  copyright: ''
+  hash: 06b32b91bdd122fb691306a30ee07dd366dc10afd4fb5f4b797675626c46cf22
+  license: ''
+  license_text: ''
+./doc/glibc-functions/qgcvt.texi: 
+  copyright: ''
+  hash: ec9dd3a171af5d5d31ec024141385d5bd30972d0d66e42dca15e845bd24f395f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/quotactl.texi: 
+  copyright: ''
+  hash: 836ab775c2feab3b068d36d672ad6123aad387f6fb1f5fa368f06a01ac807f2e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/random_r.texi: 
+  copyright: ''
+  hash: 5844e7a46c936938dfbf2ce4fdbcbe51d82a4074a6bc5b2414f2a107311479dd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rawmemchr.texi: 
+  copyright: ''
+  hash: a88efb16cc1008fb2069f17f86e19d4ca86a2ee95560cffd35e015f79d55c8b2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rcmd.texi: 
+  copyright: ''
+  hash: e257d1d57a345cddc907c3e227b0d51dfbece0c211d1b0e9d7b2519ba85090b1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rcmd_af.texi: 
+  copyright: ''
+  hash: 33267b7d2782d13d76324a3812e2ce79aae5bf28b639472be4e5dbeb29588118
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_comp.texi: 
+  copyright: ''
+  hash: 01bfce768f404c4fff73edfee715bcfea880485a92171532c28dd24ee902ddda
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_compile_fastmap.texi: 
+  copyright: ''
+  hash: df04f615fa59f124aea7423c97c3ab28d68bc4e7354fdba5bec20ec2189c38bc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_compile_pattern.texi: 
+  copyright: ''
+  hash: ed911d035be21cdd51ea9886bfeac42f4b1528025c790409d988e1dd298ec0e4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_exec.texi: 
+  copyright: ''
+  hash: a1297936ebe8c37bd2e40e89c02f620cee30ab8e066c05b44c9e007fbcbebe85
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_match.texi: 
+  copyright: ''
+  hash: b18566e77f75118465e53a1b14a0cf42da170947642f9c6d7d32272329b89661
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_match_2.texi: 
+  copyright: ''
+  hash: b456a65fbeabbb70c1ea7c3cc9d9af1c0d1fd7313ae2cab14bf0fcdfe8a9d949
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_search.texi: 
+  copyright: ''
+  hash: 1546d42e4213de80f339e367568465dddb64971f935cca31fff6a46ceaa22107
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_search_2.texi: 
+  copyright: ''
+  hash: 81618d34a0a95e7bf19b0c3f6e9bb7dc853e954bc4bc0e91581cc76af5aec179
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_set_registers.texi: 
+  copyright: ''
+  hash: 56b39a6302e400bfb705a54caefa53c2433d8b834ddd4f96e4322a2afd219580
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_set_syntax.texi: 
+  copyright: ''
+  hash: 748a99045110cf56f79df6e0d5f4b234bf7dde20a723d93a0a673da3b03c90ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/re_syntax_options.texi: 
+  copyright: ''
+  hash: 0c830a2c8456fd51772baaa9a4090458bb2e6b76f76c386603a25c228f7b6ca6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/readahead.texi: 
+  copyright: ''
+  hash: 8f826416be974f9a1e522ef20f3a12a29ef06badbf895c58d04588577d843e0e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/reboot.texi: 
+  copyright: ''
+  hash: 821bc1ae818abe8915a90b46f5222f4ada16fbea77e88d86c0358421e73b709c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/register_printf_function.texi: 
+  copyright: ''
+  hash: 55330e647478ac89ec8173c27dc6ccde685c0c9ff1aa731f92c403c3643264f3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/remap_file_pages.texi: 
+  copyright: ''
+  hash: 6ebd3f6be34b6b2bfd24e20710e6b8f9eb129fa6248ab974a952205fd4a98f67
+  license: ''
+  license_text: ''
+./doc/glibc-functions/removexattr.texi: 
+  copyright: ''
+  hash: 84ac25baaee52cbb40f99f510e79d07b6b8428d24256042b6ae785a0868f9883
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_init.texi: 
+  copyright: ''
+  hash: 388e462fc34d47868da844ac1b41166ca1d710720fc4cf90949471b6b22e06df
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_mkquery.texi: 
+  copyright: ''
+  hash: 0b93eb65d4f8eb234d2cf53f9be95119f92ba036e114bccffaad8f4217b8be95
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_query.texi: 
+  copyright: ''
+  hash: 86b37d31764f008efaccff858dd736522731703d0e3db5df805ff8a8641830d7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_querydomain.texi: 
+  copyright: ''
+  hash: 4febd67db3cafc50012c62f08b9150179b6b6a86fe3b563308abcf8aef41ea22
+  license: ''
+  license_text: ''
+./doc/glibc-functions/res_search.texi: 
+  copyright: ''
+  hash: c61477ed9ea9b2f03e6d988d1459e5c85d6d767e5d5afd77688cbe1531c9d6bb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/revoke.texi: 
+  copyright: ''
+  hash: adf7f5046e9f85a1de13826a1877dab9bfb1e3f8926f96c31feb8fc9917c69a0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rexec.texi: 
+  copyright: ''
+  hash: 4beb711fc9303350ba038dd9e41dd18a54e9cd1df22fd2848b2ccdb633abc29a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rexec_af.texi: 
+  copyright: ''
+  hash: 2d2addfd332aeac29c6e6f0199609364003aa36cfe6edb4da81edd73f408250d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rpc_createerr.texi: 
+  copyright: ''
+  hash: cd184775acd5c98bf80055c4f63cc5e4f1cf8be76c79f8359575324e96c0126c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rpmatch.texi: 
+  copyright: ''
+  hash: 5626ebb2b2a3e883ddea5f7983fd541e62176b8fe1b90b6315281551744b773a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rresvport.texi: 
+  copyright: ''
+  hash: a97f5ee77da3a964130fe12ad34f4429a25dc4e8983614eee3ff2228e41a5f05
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rresvport_af.texi: 
+  copyright: ''
+  hash: 5211bddef422718e87e6aed59cf45e467d35e86554b9620b72846aa840542485
+  license: ''
+  license_text: ''
+./doc/glibc-functions/rtime.texi: 
+  copyright: ''
+  hash: 2da678ee5e984b04b11b8441f6c38275bfce06b3d62f5bbf89e85c5510b10242
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ruserok.texi: 
+  copyright: ''
+  hash: 4521b929c1ed87ca5ae848c5a95d221964ecfdc3efb41a6f0d05adc5c438fb6c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ruserok_af.texi: 
+  copyright: ''
+  hash: 54c8a002ff9e44fc49fb4bffd3bccdcc0f11e545b23463d9e3d3945bc8862e56
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sbrk.texi: 
+  copyright: ''
+  hash: 4d580822d85c2db8a05c71c6bbc254541a6ce7666158f73bc52fe573cc565151
+  license: ''
+  license_text: ''
+./doc/glibc-functions/scalbf.texi: 
+  copyright: ''
+  hash: b16e449629ea32f221f6a63199f6b1691aa80be4d73e7215d8a0e1139149a9d6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/scalbl.texi: 
+  copyright: ''
+  hash: b30afc7e613e8f733f740a96f53c657699ace3dd840b3dd6859224ee96ca2385
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sched_getaffinity.texi: 
+  copyright: ''
+  hash: c3f41bc0b5cc0b9f81a9b3c03a45c74c58936a3ed3fda2d3983a1de9c0cdf054
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sched_setaffinity.texi: 
+  copyright: ''
+  hash: 2df764b35ee0d3f8a787b710f5154954dd0775e3daf75a5b9cfb34c1cd8c010c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/seed48_r.texi: 
+  copyright: ''
+  hash: 6f0ca8a62a531d471a5968c0b0117f6bfd1b3c4f8292a2f805e916f1b4ebea5d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/semtimedop.texi: 
+  copyright: ''
+  hash: 80ac3efc9c4674b2a8c0fba162e409c061324e76e3715bb034e48f06d744c1ec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sendfile.texi: 
+  copyright: ''
+  hash: 20c385fd8bd96b281377ff50c7eedf88fe7f424d965765b9ed3429976ffe788a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setaliasent.texi: 
+  copyright: ''
+  hash: c676df80fadf27ec301ff8d5668fb6e7aa5e057788c4b334847bcd9402724933
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setbuffer.texi: 
+  copyright: ''
+  hash: 840463919c23c80fb9256b4d89f5a8a975413c47a4b18d99a291d2c3fd775c74
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setdomainname.texi: 
+  copyright: ''
+  hash: d246fb85da1d127786c3c8c54fdd4662f2ab4234985ba4ec0f9e983a2856970d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setfsent.texi: 
+  copyright: ''
+  hash: 92cc739baa4eb3f52eefcad295bba2960905e5acec6e3f69afdb6cccac5b9d96
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setfsgid.texi: 
+  copyright: ''
+  hash: a3e35a76fb66fc7edfe5eadb4fca7c217aa0f2dc521b0784d0e1e47749f1c49e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setfsuid.texi: 
+  copyright: ''
+  hash: 72853abaad0d3750b660aaa0496f1d95d3ea3a182bc34a16df3ea00a1b25ac1b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setgroups.texi: 
+  copyright: ''
+  hash: d47bf569c94762a70603caaa8b89619e1820828049b0a19af2694cf7928da98c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sethostid.texi: 
+  copyright: ''
+  hash: 2caed9ea890d6844a17a375c6b579ec03850c96c9aed240cea87bd0b882c9561
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sethostname.texi: 
+  copyright: ''
+  hash: 6359c3be8e8047c37933b2a94e5323fc44e3be3ef72ad19957500e4d1449c832
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setipv4sourcefilter.texi: 
+  copyright: ''
+  hash: 769bdc41e8ac069fabcdf83b06be2c5741e75b340352c2b9eafa1d294f032097
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setkey_r.texi: 
+  copyright: ''
+  hash: ff01f1e3f4faf132318c0d62ae42e6e536e83adf9f04b6987d397f18b871dda1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setlinebuf.texi: 
+  copyright: ''
+  hash: 823f1a2c56b9bfd0fc25a9476ef59c90fadb49050d097037bc459d3d71e7c1e4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setlogin.texi: 
+  copyright: ''
+  hash: 9eaafc78df2669e5b4e72a2e5a485085acb927d50e5be2953dbeb2d81701391f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setmntent.texi: 
+  copyright: ''
+  hash: b332b02169657299a7ca3ba9af1e7e3fc737d24cd2983f7a4d133af81b092961
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setnetgrent.texi: 
+  copyright: ''
+  hash: 30d8d87126649c90573d67b04ff921db26d84a756946067181cb5946356b0c0a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setresgid.texi: 
+  copyright: ''
+  hash: 4975dfd5771c4957030f086d8ac5ce7189cdde23f5e2bb67d0ff07d968e35479
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setresuid.texi: 
+  copyright: ''
+  hash: cbd55c93dfbb005061c4332bb10d9cd19c08f8a184a1d192c45d42466ac5fc85
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setrpcent.texi: 
+  copyright: ''
+  hash: ca47e2ef511b58040b7786ede8b64eaa8d0cb58ac434221596b0d7243d1b480c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setsourcefilter.texi: 
+  copyright: ''
+  hash: 9e3a447c3cd41174f4b9ea6a4eede7e34ee84c95483674ed06d20ff866e0bfc8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setspent.texi: 
+  copyright: ''
+  hash: 68ed2648af0ebecb98d3bf880c5be4de1fce4929b0de543754c298c458c011fd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setstate_r.texi: 
+  copyright: ''
+  hash: e4d7b351007b8e8def79a82d454f164d8f556f4bf6826632ba9d25a7145afb84
+  license: ''
+  license_text: ''
+./doc/glibc-functions/settimeofday.texi: 
+  copyright: ''
+  hash: fc6c7b74ed55751f1b9cd21d152fa6e70b668dcf57710351f309902b5e5affb9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setttyent.texi: 
+  copyright: ''
+  hash: 872b4c7efffec76c314ae3692798b581b59be4b0a11eb6e347a2433f8d3d1b74
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setusershell.texi: 
+  copyright: ''
+  hash: 477ef1c7ddfce9e2288f6a88e43c3ea8e145e597f6e804432e490c88a6fbdb7d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setutent.texi: 
+  copyright: ''
+  hash: 36be58898a9d9619f987500bb8ad48703b3b386cdb1dca7f13a8f722980c3f51
+  license: ''
+  license_text: ''
+./doc/glibc-functions/setxattr.texi: 
+  copyright: ''
+  hash: af409fa4c1d03fe81bac55d63c469cdc03226ca561f727c619154204da0bf115
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sgetspent.texi: 
+  copyright: ''
+  hash: 2f4846b40833b0c7688dfa37b976889a9f8cf678e31e3d1531283d9a60baf9f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sgetspent_r.texi: 
+  copyright: ''
+  hash: 978bcfc4fc40a2fdb82866fb2987a7a8e76d94770f437d12d4fcd9f1f53520da
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigandset.texi: 
+  copyright: ''
+  hash: 5b76732bc467d481bed4bf2c89662fa7a83bd3efb8edbe663a459dacc489df5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigblock.texi: 
+  copyright: ''
+  hash: d24395448034650dd3561cf398904e9423525f1ea310dcc9495ad4389678ff5f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/siggetmask.texi: 
+  copyright: ''
+  hash: 9547fcbda13bfb47700b223e5625b1dd8f7ead952650f7f1601796a5bd9bfd75
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigisemptyset.texi: 
+  copyright: ''
+  hash: adc7331e09d3e1906354d3f1088b3d82a0f374a49d70553bf2a8bdf5dabd6d98
+  license: ''
+  license_text: ''
+./doc/glibc-functions/significand.texi: 
+  copyright: ''
+  hash: e3fc1148c171fbea7b8a88291964da753fc483cc72e395f90defc8f913dab945
+  license: ''
+  license_text: ''
+./doc/glibc-functions/significandf.texi: 
+  copyright: ''
+  hash: 914e8ed95038b7596b6f8664b5d356e94bf64fd371a8d34e5c6993514c247e80
+  license: ''
+  license_text: ''
+./doc/glibc-functions/significandl.texi: 
+  copyright: ''
+  hash: b914050d57690497a42bf4f9ea1629690571bf8f248678bb27144558244459bf
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigorset.texi: 
+  copyright: ''
+  hash: 0f90cd35021ca496fcca811f88941ad4c53f6bb7f4bb5309ac69e9cec7b2607a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigreturn.texi: 
+  copyright: ''
+  hash: 4109f568a6d1455056f5d91d0c44277e0af12df9f48ead1d3b0b093d9cb88367
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigsetmask.texi: 
+  copyright: ''
+  hash: 21b02d389a2a52be020e6d2debdbb63155256cbcd340a7139e37883d164a2f53
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigstack.texi: 
+  copyright: ''
+  hash: b27976cb6de009f776f9d77d1e943fd892684d910082b2e313ab25dbd9929c56
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sigvec.texi: 
+  copyright: ''
+  hash: c8f0aa7dc316b819ba924fdd1b032a56d1c51033556703a95693b7ad37469047
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sincos.texi: 
+  copyright: ''
+  hash: e099c2aa2af17f5445683b13950dc83c8f36a8c799ddd736778f60b769bfa978
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sincosf.texi: 
+  copyright: ''
+  hash: 9acbcc862d6641f66afd97f947372db43d1da508ebf44bb2e097cfb5dadfe08a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sincosl.texi: 
+  copyright: ''
+  hash: a89fd4b147815474f331d64f144fbd4d7d75f2227af7eb93441703a0b16d3c32
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sprofil.texi: 
+  copyright: ''
+  hash: c08fdfe99dcfab4dca1cb86b587f2240b31c837207173d7174db1f34d4062e2c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/srand48_r.texi: 
+  copyright: ''
+  hash: a1b31d907a31703ac36d663284071ace96275b5a27822fe0a1e5e4f1c2b603a5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/srandom_r.texi: 
+  copyright: ''
+  hash: 2a08e55af0f00d7af009ec4676559ba9918f061ab74e235b22c59972ac050349
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ssignal.texi: 
+  copyright: ''
+  hash: fcb2979253673c67d4c09487a6cc8cf39be3c2252c6ec496042be4023ea0a398
+  license: ''
+  license_text: ''
+./doc/glibc-functions/statfs.texi: 
+  copyright: ''
+  hash: 9d6fc5e1c0bdfae6063e50e332eb0012b995748c979a5d8580eef86bfd8264ee
+  license: ''
+  license_text: ''
+./doc/glibc-functions/step.texi: 
+  copyright: ''
+  hash: 426a0a4b16e9bcbd7d7aa2ec82179983156979e5d4f5cf3b4873f222927b3649
+  license: ''
+  license_text: ''
+./doc/glibc-functions/stime.texi: 
+  copyright: ''
+  hash: f64814a768ab3a8c2dfc527a6996a254ae0378f1372004713722faa0f7539d86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strcasestr.texi: 
+  copyright: ''
+  hash: 6be97e12f20df96d2042b184ed047d50673dc850649541ba46094f6487dc5932
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strchrnul.texi: 
+  copyright: ''
+  hash: c291b83d07a36362c9038066bdc0d7d21ec01dd7ae29f155f14de1706c7fc7f7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strfry.texi: 
+  copyright: ''
+  hash: eca813b0b80cd6fd4f69613929302810c07d23628958246d8b381f371a8ab226
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strptime_l.texi: 
+  copyright: ''
+  hash: 61de6a13e4b945c81a96495f6c1314565151113468844dc21ee8250c55736e4b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strsep.texi: 
+  copyright: ''
+  hash: b489bf696b48cd524d457667002388a229416e42dc1a63eb63730caa7f9f834e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtod_l.texi: 
+  copyright: ''
+  hash: 96d95390352ef1aaccbdef7d3046cd2710855e0956a86dd2d9ae0a73882d8d2f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtof_l.texi: 
+  copyright: ''
+  hash: 3a7c917085697f19f398d2dff4f912cc2558df8b1a20619530347c1a32cf2a10
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtol_l.texi: 
+  copyright: ''
+  hash: 1056e76e6f3b96576d6daa749628144d71173983258b917cfabdad15c2a5cc84
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtold_l.texi: 
+  copyright: ''
+  hash: 980aab34470b28f72b4d05de96192a884c5a5b4735613778864b58c978d2a052
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoll_l.texi: 
+  copyright: ''
+  hash: 7c77b5e468dba6520dad40a9029afb868c0e77759d1aded41f788d9512fa7fc1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoq.texi: 
+  copyright: ''
+  hash: 3ee5c14f722fd6571b509d168bebaa6eac29ae9fa67e06fa6185e1c6434f843a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoul_l.texi: 
+  copyright: ''
+  hash: 2e9edb1ca6317be19540834bdc994101d4e1ba3acf938a92f0a208d703663327
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtoull_l.texi: 
+  copyright: ''
+  hash: d72937fc153e6134f62f1e5e091dc1fba60c2bfe36ee0fde62e11f29af458254
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strtouq.texi: 
+  copyright: ''
+  hash: 4d4e4b1560b347f7c940bf2f1ab536573b722bc14621595d1f58b0beb6fbcc56
+  license: ''
+  license_text: ''
+./doc/glibc-functions/strverscmp.texi: 
+  copyright: ''
+  hash: 0434fb9a8d1d9eb76da42138e9dddaabb2ed83e8256c8125e1518d22996cdf13
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_exit.texi: 
+  copyright: ''
+  hash: 742a22a37b97a093d94bfb5e450a99a8493496e7a45e9fbc9523dd8b1e8e26ad
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_fdset.texi: 
+  copyright: ''
+  hash: 86ac209423900ccf82784e29806514f557a75814e294a8ec878a178bc4a43d7a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreq.texi: 
+  copyright: ''
+  hash: 0d0f553c97d0c006ff8fd51d80811496471a155c5f6142ef18346229375be10a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreq_common.texi: 
+  copyright: ''
+  hash: 6eb644f28f759de13fb4a8a99336de8a03220b4313b734f69fd0f7592bec8385
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreq_poll.texi: 
+  copyright: ''
+  hash: bd3b4fdaad69465c30adb4295f68efa66bf8f4ed1eb19fb4516ab39d442f9cfc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_getreqset.texi: 
+  copyright: ''
+  hash: 998123121ccd30984d17bd2695098f64638509b84567a5245ad531e5460c24a2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_max_pollfd.texi: 
+  copyright: ''
+  hash: a8c742ad774e846b1ae0224476a8eafacf12814e0d2d92e51c10c19c89d47f72
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_pollfd.texi: 
+  copyright: ''
+  hash: a5eb6ae06444b07898b1ff83435e446b709bee52ac757f9bbe48742ee666ed57
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_register.texi: 
+  copyright: ''
+  hash: 1a6f4f41aac1621aa10a247323bad0698f2b0531c10b84782216e3728f0009ff
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_run.texi: 
+  copyright: ''
+  hash: da083b143bb1db65e5210a2456b483c19b833f3d2d3e495fcf9b4b319b6a1fec
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_sendreply.texi: 
+  copyright: ''
+  hash: d710e6624e82f543d3ad7fdefe76aefd4b88cd0142ad24f75d5403c7942f93dd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svc_unregister.texi: 
+  copyright: ''
+  hash: ad6885dfeb185cdf4f0ce763b440c8805f8e4b02ac9c44df6231576ac68918aa
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_auth.texi: 
+  copyright: ''
+  hash: 657d79eaada1f05fcd496f9faf8a85c5b914419aee6c0681b961250cba6b8bd2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_decode.texi: 
+  copyright: ''
+  hash: 013d5c25e6c2ab654f6b6b95e33881fc2e774e31b404265acdba1610fe7ff4a1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_noproc.texi: 
+  copyright: ''
+  hash: 0093d9d2b2f48942af33a201c8aa57b2d588db21b684f0cb9622ba87f780ac97
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_noprog.texi: 
+  copyright: ''
+  hash: 0411b3b4407bb4ebf4a5a86b619c044ee035b2a77fbcf2de14ab8c04a44708d5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_progvers.texi: 
+  copyright: ''
+  hash: 63b59aa0eaba24585ee2ea85ba6b8d2ce2212ced66266f5fff5ef99043ca4675
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_systemerr.texi: 
+  copyright: ''
+  hash: 9a43f8242ce29eea2b3dabe6eba74372a66b998d24a8784634b931912ab118e5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcerr_weakauth.texi: 
+  copyright: ''
+  hash: 60f129f48b216becf43b7a6e107572bad1c0aa12975c9b9e2dcb4de32ea12bb6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcraw_create.texi: 
+  copyright: ''
+  hash: 9875045015fb706eed8645e1d24f2b6d09cff0018b985afe987c567c3f262168
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svctcp_create.texi: 
+  copyright: ''
+  hash: 76e63979ea96b2ce48409fcba007b8d2a2dd2d1da33cd8c4be2477376f860d6a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcudp_bufcreate.texi: 
+  copyright: ''
+  hash: ebad62a46d00b7f175d1ac81978d861de596d20f37be2a7e01c918ee9ad815bb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcudp_create.texi: 
+  copyright: ''
+  hash: e6c5c92dcfc4d6256d7c0c8704a3ab0156d7b8f8f4da9cdb264522e3cffcca68
+  license: ''
+  license_text: ''
+./doc/glibc-functions/svcunix_create.texi: 
+  copyright: ''
+  hash: c2d36cc3e9b42dc5c0087798d08088d981fee60bb2b1fc134cb051015dfdf364
+  license: ''
+  license_text: ''
+./doc/glibc-functions/swapoff.texi: 
+  copyright: ''
+  hash: d28e58cd281ea7d216c396bbe6cbb28c4ade6a1b1cb8f5d2bdfae763de8eb9bd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/swapon.texi: 
+  copyright: ''
+  hash: a2ae81f7c69492bebb553992ff91279a5e17c259426a305e78c4398175810bd4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sys_errlist.texi: 
+  copyright: ''
+  hash: 9484aa6c644fd4efcf3f9c79bbb710107e54086b9d2cfea822a505e85b11d95f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sys_nerr.texi: 
+  copyright: ''
+  hash: 6c269f9e04c5d53a2917b1fddeb7d432f614326628f60cdf42128bdbc1b4bf58
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sys_siglist.texi: 
+  copyright: ''
+  hash: cdfa2194216664145565158d29ce28afe50425b6434879005d1f09fc2e353de8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/syscall.texi: 
+  copyright: ''
+  hash: 190444fde09ca92f5d3c1a088254e8ea24f8ad21e7e743bd7bc74d5e7c3d8422
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sysctl.texi: 
+  copyright: ''
+  hash: 7caee75d99a482a34152821c313157a935611e93d37475e51fcfa966c389b00f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sysinfo.texi: 
+  copyright: ''
+  hash: 2ad08e1570e50f92819f57b496af7be37f638f2c45f31ddf1445f35d928e58b8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/sysv_signal.texi: 
+  copyright: ''
+  hash: 53654570fe739a0174eac69d3395bed8f5ee0a66ab1dce4870f0c6a9ef8da8d8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/tdestroy.texi: 
+  copyright: ''
+  hash: 2b159ca8f8ccd5a6ba34012b632072be835387cef1daa34853fdbdec8d11bfd3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/textdomain.texi: 
+  copyright: ''
+  hash: 2b3b638baceaf30671d2612435628b02e3510a81bcb035c4d0953415beb44aa0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/timegm.texi: 
+  copyright: ''
+  hash: b33fd6b9183cda8ba31a038b0646223cf342064f7f57f96a60c01adee101f593
+  license: ''
+  license_text: ''
+./doc/glibc-functions/timelocal.texi: 
+  copyright: ''
+  hash: aa7d6d8db5573d824931cad1a0e543b7ac6615fb9f76d7e294700027c2a7f901
+  license: ''
+  license_text: ''
+./doc/glibc-functions/tmpnam_r.texi: 
+  copyright: ''
+  hash: 867eda2cdd3958cb2d0774ac423ace6f99f332061f97fc1e89ee182b4defd593
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ttyslot.texi: 
+  copyright: ''
+  hash: a2db69dfed6d03d128a80b25100aa8bfdbf9ab8b7e6aae779b69352fe68be984
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ulckpwdf.texi: 
+  copyright: ''
+  hash: 5f913bc70494c38469fbeb1b242348e0d6818d5efa27ce69d1e56d0bf9733477
+  license: ''
+  license_text: ''
+./doc/glibc-functions/umount.texi: 
+  copyright: ''
+  hash: fda8d64fea228f847027a34530867b8fb61767a6b19b9bd8a2bccd46400dd1c5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/umount2.texi: 
+  copyright: ''
+  hash: 2957ef22d4b034fe43264d7a077e0c0b79acfe9b8d77dac47cbd9871e7322a87
+  license: ''
+  license_text: ''
+./doc/glibc-functions/updwtmp.texi: 
+  copyright: ''
+  hash: 0b9cdb5b25e1d740d3d4f9c7f3b42619f569938aba2412951a154103a9300952
+  license: ''
+  license_text: ''
+./doc/glibc-functions/updwtmpx.texi: 
+  copyright: ''
+  hash: 3d8f09f5afded96b9f0ae4b4d20dfa978893205440ea6bd95424e0e3861d624a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/user2netname.texi: 
+  copyright: ''
+  hash: 5f52a0441b2809065a8fa64c97c5c16eccf950ae9ed3108a0f0746ffc0ecea5a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ustat.texi: 
+  copyright: ''
+  hash: f6cc53dfd21cf85c0e451aeea98c50ccd011ea4c88da39fcde741121726e1183
+  license: ''
+  license_text: ''
+./doc/glibc-functions/utmpname.texi: 
+  copyright: ''
+  hash: 30f2c75b23465299b58ac58dd7d8782080f478c88177e4f4a383f7c45f7120db
+  license: ''
+  license_text: ''
+./doc/glibc-functions/utmpxname.texi: 
+  copyright: ''
+  hash: 7f048aaa1c923da17dbac39bf8b24992e0e1429d0f8f1b07ad60a6b4c0959974
+  license: ''
+  license_text: ''
+./doc/glibc-functions/valloc.texi: 
+  copyright: ''
+  hash: bc0a2963c65006320c0a49b64417fe78e8b2fa1dfa9bacec78dcada637280365
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vasprintf.texi: 
+  copyright: ''
+  hash: 01dc69843bb08b39bbef53771785a3f74e86491f2d1dddc8739d898d2a8bdf9a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/verr.texi: 
+  copyright: ''
+  hash: 78267ac4d25a9129dd9b2509e14064e457b8c938b2f7075931403403963d17da
+  license: ''
+  license_text: ''
+./doc/glibc-functions/verrx.texi: 
+  copyright: ''
+  hash: 243ae75a133530c958e53bb80fbef71f2528824270327400efbe249a75c523cd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/versionsort.texi: 
+  copyright: ''
+  hash: a8d292fdf0af9d2eb2473ecba25b36c64863e58acce8c463bf054dc5476603c8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vhangup.texi: 
+  copyright: ''
+  hash: 24826dfcb8f9b2e73d2e89ddd190426d8e5d0f227b0082ac812909b10b8a8b3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vlimit.texi: 
+  copyright: ''
+  hash: 9462f628ec3422857cc94eb976adec9a79466b27f54a83ab819f916053c96976
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vm86.texi: 
+  copyright: ''
+  hash: c86ac73a01f52ed04acc07d62d1ec512640f650cb0347dd079e7ec4c71e0af5d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vsyslog.texi: 
+  copyright: ''
+  hash: 848e6a794d99db034fd60bb81dd195003e60770bffcdee4dbaeaebcf71c98ddd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vtimes.texi: 
+  copyright: ''
+  hash: 06d2ebc51079102284cf04e82831a57f97849fd2a1e177aaed25aa462f93e12f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vwarn.texi: 
+  copyright: ''
+  hash: fdc2b63b39a6cb2c3207ba881f0765eb8768f34d2fa7badb91b15c0a291b715c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/vwarnx.texi: 
+  copyright: ''
+  hash: a36189d641dc9338fd1667d162ed6642f0a3bea5356d5357aedfcc2888b47337
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wait3.texi: 
+  copyright: ''
+  hash: a7b4066310d3a25054fa4f7aa01e708505f766e673c9cd25645a820129cf5d2d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wait4.texi: 
+  copyright: ''
+  hash: 6d200273bf91bf0dcb399661230e36cac133661d4bc9dff07cc419dae1f76c05
+  license: ''
+  license_text: ''
+./doc/glibc-functions/warn.texi: 
+  copyright: ''
+  hash: 723908ecf30a2a6a42d40630b7c66884afeb923239309b052149301d01d48d41
+  license: ''
+  license_text: ''
+./doc/glibc-functions/warnx.texi: 
+  copyright: ''
+  hash: 5f98d682eb3ca5672fcbad900bd876090ced691d922879ea4bc661c541d83d1e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcschrnul.texi: 
+  copyright: ''
+  hash: 5d417933737648f79c9b9091e34dd6de4bdcbacabb611962290237a8b1a53f78
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcsftime_l.texi: 
+  copyright: ''
+  hash: ef33c1a0f5969ac80dfac455c2ab398baa7e2ae22403663282b851abcacb0c86
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstod_l.texi: 
+  copyright: ''
+  hash: ad0ddbd33f44160180dc6a5116dec058c419d4cbabf88fa761763aa9f38e11a4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstof_l.texi: 
+  copyright: ''
+  hash: e3b0808da41d177b2fc26f9fa6dbaf17fde774661f00d708a7599f32e8ae22c8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstol_l.texi: 
+  copyright: ''
+  hash: 7f70614683c069b068bdd6f22a9f557afb8a5cc586f5c4a6e434506834c08c2c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstold_l.texi: 
+  copyright: ''
+  hash: c68fa338d011fe9288ac28b1eb729b469531db1475cae1b1b7dadbcf7098b90a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoll_l.texi: 
+  copyright: ''
+  hash: bf5c9212a552069833ed365917ab1628caaac9bafde388b648aeb9d3d96cb709
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoq.texi: 
+  copyright: ''
+  hash: 4999de040d3a057b3a08f5a332220ea773287f6916b8f012d3e0b184c3f26592
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoul_l.texi: 
+  copyright: ''
+  hash: e614b148fe54e7838a90ab850f729e323d6669bf7e07312bf4789ce74918119d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstoull_l.texi: 
+  copyright: ''
+  hash: 745c028ab6e80155cab792bf525124410699c33d23085c42d2be99ab905f0f24
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wcstouq.texi: 
+  copyright: ''
+  hash: ba85b34761c3f98505456e786d5ed3c3259271db6f67594a58751d4cf48f6053
+  license: ''
+  license_text: ''
+./doc/glibc-functions/wmempcpy.texi: 
+  copyright: ''
+  hash: 4bcdb18550e5c7d28fb6c83a0313ce9f4ace5cc915c3d08084984599785bc2fa
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_array.texi: 
+  copyright: ''
+  hash: 19c6ca0199f50e5f501e77f148ab91dcbfe91b661cf52da5e6856f5cbcea03d3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_authunix_parms.texi: 
+  copyright: ''
+  hash: cdb3df779cceb4d74a88670f6a4610951a2aa4394de151d1e7fadb24c5d0be3b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_bool.texi: 
+  copyright: ''
+  hash: 4ea286fe1a567849deeabf993df9d993ba60ebca88953089f743484495cd055b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_bytes.texi: 
+  copyright: ''
+  hash: 3cb975a4ce2552c20f4957ccd8b73cdb7b626672140bef0b1e2f72f6e5fc0d1e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_callhdr.texi: 
+  copyright: ''
+  hash: 6f417e2360984d05faa4f6e29ec925d45ff15aaff8b559b8797a3e1323b85751
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_callmsg.texi: 
+  copyright: ''
+  hash: cb750ed335f8990d02c2f270df2af3936914bca25e3c6ccf0744ca6cecfb28c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cback_data.texi: 
+  copyright: ''
+  hash: d4a37bb7dc668a544a5cd09991da24d8096f4b12f9e6e37e8393a26940361fa9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_char.texi: 
+  copyright: ''
+  hash: c14040bd19324e444f22eb519f081124ad19cc489ff3204c2b48e52576921e8a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cryptkeyarg.texi: 
+  copyright: ''
+  hash: dcdd59591f3dca753276ddb3dc166b55ae1e1dd469fa7a80f9ce2a998423b84d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cryptkeyarg2.texi: 
+  copyright: ''
+  hash: e7b71aa3c2b7935333c3782753185038023468223a630d977a16a3ffd24e105d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_cryptkeyres.texi: 
+  copyright: ''
+  hash: 3b754af6685bd5ebf15014e7cf19ccbbfef72939d1c5a815488b0007e0352e44
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_des_block.texi: 
+  copyright: ''
+  hash: 3ce2fdf69ba45fff5fc0faa36f81ae554c4a5af6ea364d6a134a230d870b4f93
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_domainname.texi: 
+  copyright: ''
+  hash: 3881316adc80be14ad5c4fbdae5d311b492d7109e80cf05a00314e9e69aa5ff9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_double.texi: 
+  copyright: ''
+  hash: f91e2921b11504f0c91cbd54470b2973bc77623887893e0b94e964b503f7277f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_enum.texi: 
+  copyright: ''
+  hash: b149f650f465a2faa5f1d68bd93ece4c0a0ed0896afeabae4dcb70ba405b89d0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_float.texi: 
+  copyright: ''
+  hash: 78543df2289178a87a35441879ce5a1ff664fcc58c7b8c6426ba648e3ff4a8cb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_free.texi: 
+  copyright: ''
+  hash: a47ac9b7d37b8d0cb2f75c4d7d96e563dd8047c92de3f49a33e3c3ce8f66020e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_getcredres.texi: 
+  copyright: ''
+  hash: beaa386f00d0505786655c3db8d09815047d87487d12835741e566bf945bbed9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_hyper.texi: 
+  copyright: ''
+  hash: 8e26f31e26f57ef964cd9116f3d9e2574589b14caaa979585e198941bd24bb9e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int.texi: 
+  copyright: ''
+  hash: cb72dde3124b8fd76f079ba72974518af41d6411110e224ad69a9dd66c4e377e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int16_t.texi: 
+  copyright: ''
+  hash: 9d69be17ce7fcf05a552f56855ca688ec4eb9692b7e7133dd74cf3af7a0ff4c6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int32_t.texi: 
+  copyright: ''
+  hash: 17df4279175d33cbffeb13dfc3723dd8cff57e6848ac36fcd31b6f662e0083e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int64_t.texi: 
+  copyright: ''
+  hash: 4753692e70e7e2651f024e883c7f010c103b4c79709fff8ef1fdf941047ec0e1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_int8_t.texi: 
+  copyright: ''
+  hash: 1a0aa6477a573362cb68f4a632c0a058c2ec2902f2151ff9e84ac6a5a6b780e8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_key_netstarg.texi: 
+  copyright: ''
+  hash: 0f4590353eccd2b066cc84ed1e150a99a544717e54a13be8af2bb22d7dd4a240
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_key_netstres.texi: 
+  copyright: ''
+  hash: ca085bcc181d082d1a2f1577ccc05c0d4b52ee79579b97259bfc6f5bf07dc781
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_keybuf.texi: 
+  copyright: ''
+  hash: a9c13f98859f695a73919a5fc0a4b2ba5b2b45f2ae7e162642343596d1533435
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_keydat.texi: 
+  copyright: ''
+  hash: 73378018a2b511581dae3489763c619c7d7bfc34028fb1b7b863c5a39bb2f04c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_keystatus.texi: 
+  copyright: ''
+  hash: 298e5a8921550a28dba370bdccc49d13dd939586385108de443e2ed839be59a1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_long.texi: 
+  copyright: ''
+  hash: e06094afc04e32d73c2acc605cafcc9e09437632f2b5c2abe358e516f94f18a7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_longlong_t.texi: 
+  copyright: ''
+  hash: 53de27845b0a5e03ff5f8130b12a1b13999547c01fb30c65b73cf92694bb0803
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_mapname.texi: 
+  copyright: ''
+  hash: b9e02d47cff97af875c28948086c04f39cc7552f7a2a0497f3027dc263b9c919
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_netnamestr.texi: 
+  copyright: ''
+  hash: fb5440773a3cf802982b1e1410236bbfce22b04dab527a1bfefd607e06ee96af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_netobj.texi: 
+  copyright: ''
+  hash: 918ec09950c6cef891df450e39e65854ad72f515eed4a07675ad526d7d029271
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_obj_p.texi: 
+  copyright: ''
+  hash: 7ebd559c8f4ce57177436f5f78c4c8d2b3896199fe11a24f1af48c471cda310e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_opaque.texi: 
+  copyright: ''
+  hash: f79ec3f8db308c32f344e9d267e031c96c9b3a017a6d431bc0a7348be7ce1fd8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_opaque_auth.texi: 
+  copyright: ''
+  hash: 54c3c5c297b9d6cf5c898ae54e857b841a1e16df4f1571dadfe2f3ba295f391f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_peername.texi: 
+  copyright: ''
+  hash: 8538bdb09599068f97b98edfb2a62e4ea6127f54711bd870c49aa117313eaa7f
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_pmap.texi: 
+  copyright: ''
+  hash: caaac80f2f2fa2612d1e842bfd4a93f557882c7eea684560c0d85549a95f91c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_pmaplist.texi: 
+  copyright: ''
+  hash: ff5f2a65c464e0a939f8b99d477a84604052392e0b2992a9476887c90c433043
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_pointer.texi: 
+  copyright: ''
+  hash: b660e5bf17a26cdf685fc6d23dffdb14a71b632f4eaa27f03edeb522f5aa7f99
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_quad_t.texi: 
+  copyright: ''
+  hash: ea704f7e0d01c043c1e277cd4963dbf6187e89e3654dc699e7b5fcb850a840a7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_reference.texi: 
+  copyright: ''
+  hash: 6134f57fa3312cce201a4c6d77ba8e811fd8790b22ccb6b8a73e687644ac9330
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_replymsg.texi: 
+  copyright: ''
+  hash: 4e007440139b2dda257c96d363b3b80ccb149be9009ae80ae2bd3a629b6b2135
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_rmtcall_args.texi: 
+  copyright: ''
+  hash: bec9d04d82d941309b9d46bf423d0eff1f90382e71cdc9e3a08357dfc740bdd5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_rmtcallres.texi: 
+  copyright: ''
+  hash: 150f8543b53edd291c4b83bc2eefebe934b2c8158a173cf8e2650e0f38c12d60
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_short.texi: 
+  copyright: ''
+  hash: d8f8eb2c0ee517e33fff798e697baf8765a32bb01fdb018e1c7e4c5d24d47ddd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_sizeof.texi: 
+  copyright: ''
+  hash: b9e8e1b750d3cfa2d374d483dac1308f4b5a8e614ddc1bc89201bcdca2b53bd2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_string.texi: 
+  copyright: ''
+  hash: 2a056d27011ebfb9c2fde0648bb47ace5429329369eeae141bbd0b5dd7d19abe
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_char.texi: 
+  copyright: ''
+  hash: 6b8f014daebc6193c1fe4b95ca2bc0c9a75a34bf91e625a64779cf4d09632198
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_hyper.texi: 
+  copyright: ''
+  hash: 38a30d406c25e5e945e21ba8df38a61a5bea26be525257fea360edf720f62be9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_int.texi: 
+  copyright: ''
+  hash: bc84e1bcbc9c805eeae8970f26c2f2c08cc6f3c7b3aca4d3d3bc4116ccd18762
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_long.texi: 
+  copyright: ''
+  hash: 79996dfe2a34829be53444eeb81caf5bf33642fb5791eadf467cc5be2efb58ca
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_longlong_t.texi: 
+  copyright: ''
+  hash: 68109be44fd22b27b66ac2dfe47e3ef9a8cc0f9aff21e2fade30373aae96ffa7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_quad_t.texi: 
+  copyright: ''
+  hash: c1debccf71d14e14221ed9c5848cc1aa2366a65948f68845fcd2b57b0749ee79
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_u_short.texi: 
+  copyright: ''
+  hash: 5277089c7dbf9c47c789cddf19c5d1b80af4a83c8fc5858daae1d6f960a9c0d8
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint16_t.texi: 
+  copyright: ''
+  hash: 5056c5c947997ff404e63d557adb270b3a96be18eb85d91a99ba658f262c307b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint32_t.texi: 
+  copyright: ''
+  hash: 0e93d9fbd8816dd776781b73ba642602968d88b1a9a1835f2aacf5d163f256bb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint64_t.texi: 
+  copyright: ''
+  hash: f40a280712d786b4c58851ea0ada93ee7e8dd374dc6bedb1d88d1eb3029e5171
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_uint8_t.texi: 
+  copyright: ''
+  hash: 6944d05901cc4f743764f005d098d50799ed43b4aa6de7469c40a94cc1d92d87
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_union.texi: 
+  copyright: ''
+  hash: e8c3b53eade2aaea2a515e16d398bf97e4c667a4fb5aed2dadff6bf8dfb8b62b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_unixcred.texi: 
+  copyright: ''
+  hash: 9f888821059934a9e8d72e85c34b0c74fff437fff04af14d3e1f7b8adc0c95ce
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_valdat.texi: 
+  copyright: ''
+  hash: 3ed49a721838c98227ffa1d475de25866ae591b1f5a580e5f9dfeb46cbef4f91
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_vector.texi: 
+  copyright: ''
+  hash: 53d9bca4da0f5eaed77104e988310b12bc2f5d42c83b6937c5200c174cbc3708
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_void.texi: 
+  copyright: ''
+  hash: 81033902e9049ef9f57a463240c562bc2d5d68852657d2a8088758b1418b5ba0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_wrapstring.texi: 
+  copyright: ''
+  hash: c8c995b3843fb29dbc49af22efbda22eaa1a4c9a3ac036833c892b533db4384a
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_yp_buf.texi: 
+  copyright: ''
+  hash: 967c6a5a78890236ee181eba0d63eb789115e8eeedc2c58621664544ec9bd493
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypall.texi: 
+  copyright: ''
+  hash: 49021a841d747afa6c867addf2fdad46adfed7820ba1999395e264b2e4e3a96c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_binding.texi: 
+  copyright: ''
+  hash: abd640055eb5a0d21f0f6a06024ef8e25da1cab867fd84151c3fbfa71ba49b0b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_resp.texi: 
+  copyright: ''
+  hash: e71ba4166aa4b084e54b251c076892d86209e5c4026c9621bb83cd82420518a2
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_resptype.texi: 
+  copyright: ''
+  hash: fc323b9e591fd7d0405fbbfdf6a350828bb3e37b17f5698ce0853da9accfca6e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypbind_setdom.texi: 
+  copyright: ''
+  hash: 715266fd7005c68155bc84c3bfd72a0dbd2839f4f9c1431cdccda41d2516c61b
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypdelete_args.texi: 
+  copyright: ''
+  hash: 5a2b2391166fd729def02629326df511cb557403bb3430e8c309d40f0151bd0e
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypmap_parms.texi: 
+  copyright: ''
+  hash: 31deda1200c8b55648464a71a80e05c092d1c342a11dcf1621ae60f75649e2c3
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypmaplist.texi: 
+  copyright: ''
+  hash: 3770fe4174a30510e6650d1532f1254d90b4ee9a8fd55a240704aeceac7116d4
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_yppush_status.texi: 
+  copyright: ''
+  hash: bed774ce7f2689102ac04fcebe6f8bb353d2fa812ccf8fef9e3c9f9ef7707539
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_yppushresp_xfr.texi: 
+  copyright: ''
+  hash: caacebd076371cf8370ef66bd87d61c5a969ba9b2de9263437267a78a4582b2d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypreq_key.texi: 
+  copyright: ''
+  hash: 5e8853ba7b6102e9ef59daad62f95b5ad79482a0809507ad302e7efb7e14c180
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypreq_nokey.texi: 
+  copyright: ''
+  hash: ca0a55c40a73ff170a59e2e77693a4b0099f9f21cf68112362b10c73ba4897bd
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypreq_xfr.texi: 
+  copyright: ''
+  hash: 38242199a4947757bcca43ae41c1aceeaf21204f91662b6c6a70870aa6c52105
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_all.texi: 
+  copyright: ''
+  hash: 7b3944e0fdfcd0437b44e330fd160a5a452738e4f2ed88a06c428507135704af
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_key_val.texi: 
+  copyright: ''
+  hash: 16879a199e808011cfb7bce444c0400f537d3299a1c9667ca1581d622e8387f1
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_maplist.texi: 
+  copyright: ''
+  hash: d8f02b128e983b30f2be817f09ec1636d1d22863908833b9a104231736c1757d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_master.texi: 
+  copyright: ''
+  hash: e623a774cfbf5390ac5ab6db1871df8fc813438aa10e701c19f067fbf11ca3e0
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_order.texi: 
+  copyright: ''
+  hash: d68c39c59fcbfefdb10d7e77def68a96ee1536b33e42d7cae1249a59fbddc7e5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_val.texi: 
+  copyright: ''
+  hash: 7c45b13e75ad02e922ffc50bd1e0f74f246ff392ec0f7269f784490ff6421332
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypresp_xfr.texi: 
+  copyright: ''
+  hash: 6684da40fa119c7354fda920dbc8067d4e6769687a66c08c96342311d0dc1a9c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypstat.texi: 
+  copyright: ''
+  hash: 1e7de73d56c70be501e608841a86d6e7c23b5b3d58f1d9a3f6e09d9868d5d6e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypupdate_args.texi: 
+  copyright: ''
+  hash: 77aaa0ef10b3095e45964efa46e739376002decd90cf42f0f8a8dec3d5eff977
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdr_ypxfrstat.texi: 
+  copyright: ''
+  hash: c78e6f06c5fd2a43a28a72a7ce49d02b158b37062e80b1d9788be764b82b26ab
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrmem_create.texi: 
+  copyright: ''
+  hash: 2a203690a726870fade84da1208be0cdfab169f22001ee6efe93f06e3742ebb7
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_create.texi: 
+  copyright: ''
+  hash: 8073fe892a74de188dd302a4a43e971cf0e3fb48c86cebeef96240e0ac4bd4cc
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_endofrecord.texi: 
+  copyright: ''
+  hash: 88344824ec838d41448198022405e5dac92019e2bc1475a230608b4518bec054
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_eof.texi: 
+  copyright: ''
+  hash: 25422c24889db04aa8ff53d00ce41fae2e5444730364cb37890ccacd15e10f3d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrrec_skiprecord.texi: 
+  copyright: ''
+  hash: 0b1d2e89f6f0d930e81e40412735caed420e496c1d7e2c3317083704ddbc822c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xdrstdio_create.texi: 
+  copyright: ''
+  hash: 0898f08554917e889fd206ae59a18d6bf78f9f57a5a9e636844660f8bb4460ba
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xprt_register.texi: 
+  copyright: ''
+  hash: c94e94912422f8a89d1046086b09b5f1aa13198a6ecd72276a6cba7caf0364ef
+  license: ''
+  license_text: ''
+./doc/glibc-functions/xprt_unregister.texi: 
+  copyright: ''
+  hash: f682b2bfcd16651912315034106c71ff0946a50daaf430177bd0624a37f88416
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y0f.texi: 
+  copyright: ''
+  hash: 53011f664d3903683e4544d10dcf5b7c7f2c1222c9acab2e70d9f2c9df387afb
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y0l.texi: 
+  copyright: ''
+  hash: 049581b8d62217de9d548fee3df56a779e216c9b490a92081b3e440174e277df
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y1f.texi: 
+  copyright: ''
+  hash: 2af7a392fb4304dd9bdf7cedc4f950d151b3e72dc31b5eb42d9b53451859e389
+  license: ''
+  license_text: ''
+./doc/glibc-functions/y1l.texi: 
+  copyright: ''
+  hash: 9f65d87b286eb81df62bfdb118cb3ab8c763aab3cae81aea9a9dc16161bdaa12
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ynf.texi: 
+  copyright: ''
+  hash: b20e9430fc3cd02a0586eed22a0cd3eb2d271582b9087490395973f33038aac6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ynl.texi: 
+  copyright: ''
+  hash: 8802eb9677218d45cd4e44dd735d1115f0fcb9e61acec28ab17b887b50ffe117
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_all.texi: 
+  copyright: ''
+  hash: b42b025cf632d8cf7da519a7528a9a2d1210f4e357dcd9390c882bb8a38c0e53
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_bind.texi: 
+  copyright: ''
+  hash: be7340086b6000053f761dfd46aea30bcc1bd2f4dfa161204a8bedc5ec212967
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_first.texi: 
+  copyright: ''
+  hash: 448d2709a2f0d219dbd749d8367b8c82fcb12aa01988d1ecc33e5deb2fc824c5
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_get_default_domain.texi: 
+  copyright: ''
+  hash: 41048d71e875a399559a8d3438f700a43b5468548935403691f02ca2351e141c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_master.texi: 
+  copyright: ''
+  hash: 0b2a7eb836405fa27ed19e381580f7e43df719ab12e78763c129576b5cdd1a7c
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_match.texi: 
+  copyright: ''
+  hash: 627851384f34c2c955e0e1e24fb264440f4559b4e2d93ed5661a97bf32a4380d
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_next.texi: 
+  copyright: ''
+  hash: 6a2841054c2ea3aed8bf5bc393b4dd9b7b3178b199b119fdd82678eec3ed21a6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_order.texi: 
+  copyright: ''
+  hash: 8eae91da78f387f713f35b9d102c4fa66c5931737f6f1467289f76628a8334e9
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_unbind.texi: 
+  copyright: ''
+  hash: bd6cf9c478e4596ec9082e569e2bf6937f7985d1ba7c2d5db1f9802195b5bd26
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yp_update.texi: 
+  copyright: ''
+  hash: 117e4ddb5bcaf2a5e0768d85e23471c5895cc162da1390b7c5fdb77ba5ddc775
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ypbinderr_string.texi: 
+  copyright: ''
+  hash: e7167ff396db2d51dfefcd5b793df6d529e9425dd1aead57cb012d97584e6cf6
+  license: ''
+  license_text: ''
+./doc/glibc-functions/yperr_string.texi: 
+  copyright: ''
+  hash: c94934aac4843428b891128424e3012dee61594fb6bd1dddf9d466de2ada7482
+  license: ''
+  license_text: ''
+./doc/glibc-functions/ypprot_err.texi: 
+  copyright: ''
+  hash: 2670cca93cbe02f004e8676febd96ceb18676682aae42a869b01c0697332a068
+  license: ''
+  license_text: ''
+./doc/glibc-headers/a.out.texi: 
+  copyright: ''
+  hash: c82b738632f1965d1559f7667c877af774465a98c6ca3f81c897beaf7b374357
+  license: ''
+  license_text: ''
+./doc/glibc-headers/aliases.texi: 
+  copyright: ''
+  hash: 94f129741de8a7fd4521bae2dc42f429abfaba102e9fa06c5a9351e1379a4c5f
+  license: ''
+  license_text: ''
+./doc/glibc-headers/alloca.texi: 
+  copyright: ''
+  hash: 42d72a383eea05edb7de100160f56e7ab4d915e5dab4668c2fd128f4b651d2f0
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ar.texi: 
+  copyright: ''
+  hash: 63a2433058954240c8a3d62a4b5b0a2809326d5c6b82b623799d2a8cf39cc734
+  license: ''
+  license_text: ''
+./doc/glibc-headers/argp.texi: 
+  copyright: ''
+  hash: 7250680a987ff78ed8feac3a74ec4a5661c071de4e4d1dfc60de9db22d28e589
+  license: ''
+  license_text: ''
+./doc/glibc-headers/argz.texi: 
+  copyright: ''
+  hash: c0d05a1e13f8f4f7a4a4002cb7e9683b657434da45c97b304951986f7d94bfc9
+  license: ''
+  license_text: ''
+./doc/glibc-headers/byteswap.texi: 
+  copyright: ''
+  hash: daf819b6395c3de377b3efb8f8176107e27f2b3b26561d77a8a3b2dad08e147a
+  license: ''
+  license_text: ''
+./doc/glibc-headers/crypt.texi: 
+  copyright: ''
+  hash: fa453cee950ed9d2d41db4eac6a4c5fcad6f4186d3d207d519045a9f68ae65ef
+  license: ''
+  license_text: ''
+./doc/glibc-headers/endian.texi: 
+  copyright: ''
+  hash: 0f822251f51808592a371b872b6ac045d213519befa9311b36eb6e28bddc9324
+  license: ''
+  license_text: ''
+./doc/glibc-headers/envz.texi: 
+  copyright: ''
+  hash: 939b798b1ec8e61e63e9f93a82c69c5db6f6c05bf98f7f3bbfb8e44c9bb4453e
+  license: ''
+  license_text: ''
+./doc/glibc-headers/err.texi: 
+  copyright: ''
+  hash: 771c351eba6fadf44f8ac86e707dfc90823ead9582e51fb8c95a54702a09395d
+  license: ''
+  license_text: ''
+./doc/glibc-headers/error.texi: 
+  copyright: ''
+  hash: 564594bacc029daac4577221c831b68ab6e6b141d225252b2e5a1ff6a2b5c377
+  license: ''
+  license_text: ''
+./doc/glibc-headers/execinfo.texi: 
+  copyright: ''
+  hash: 442281157e2f5c7d15617b99dc65c5e2740ed8132d5ef4b6a637d7bd0efe8a16
+  license: ''
+  license_text: ''
+./doc/glibc-headers/fpu_control.texi: 
+  copyright: ''
+  hash: 0d1f21a6828be61eaafc50791e6648cadd3cf5986071c19912bb0e485780e01e
+  license: ''
+  license_text: ''
+./doc/glibc-headers/fstab.texi: 
+  copyright: ''
+  hash: d765e5f871ae90bba1b85512cdbbd9d04babbb1073e89f28a5e4203003ccbb3b
+  license: ''
+  license_text: ''
+./doc/glibc-headers/fts.texi: 
+  copyright: ''
+  hash: 05a382b4ee91017936ce7dceda2379ade746af1154b3977321604b116f237f5b
+  license: ''
+  license_text: ''
+./doc/glibc-headers/getopt.texi: 
+  copyright: ''
+  hash: d2425536ed01e34b35b1f3c58f4cf07ca9b09f6d81663efab78da5a5ab688a03
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ieee754.texi: 
+  copyright: ''
+  hash: 515398e288e2a4e2e6118c4c896dbb4c1a9019d6b91221aa076f2d5cac32f9f7
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ifaddrs.texi: 
+  copyright: ''
+  hash: c85198be6c0f9e8ac1c65d365a6cc7bc0cc665bdbc72fe83acf7b0ab0cc955c9
+  license: ''
+  license_text: ''
+./doc/glibc-headers/libintl.texi: 
+  copyright: ''
+  hash: 79beb5970e6f446c6a04900828534f021471762201935c60cfd021c6332b7e78
+  license: ''
+  license_text: ''
+./doc/glibc-headers/mcheck.texi: 
+  copyright: ''
+  hash: dedb846dbfd04c6c9a2a967d276c9de008ac4c79e61e07aeafd412846df98fee
+  license: ''
+  license_text: ''
+./doc/glibc-headers/mntent.texi: 
+  copyright: ''
+  hash: bd4559256ee3494644710f4e1602495d4050f8fa0d4c703f11fcaf8fde02a704
+  license: ''
+  license_text: ''
+./doc/glibc-headers/obstack.texi: 
+  copyright: ''
+  hash: 1c5f322397603a32199f6a1983459423e6610d00288bfb2f3e8b8ee875abd7a8
+  license: ''
+  license_text: ''
+./doc/glibc-headers/paths.texi: 
+  copyright: ''
+  hash: 8dc24f98bf823265dd3378f42860137cacdfd735284b75108ef5437552a339b1
+  license: ''
+  license_text: ''
+./doc/glibc-headers/printf.texi: 
+  copyright: ''
+  hash: c7159716f5c2910ec7d390f7877340ba3998b5fbbb63bd559484742f859ba86b
+  license: ''
+  license_text: ''
+./doc/glibc-headers/pty.texi: 
+  copyright: ''
+  hash: 210686eb5ebf3e3163fa609fea0156ea611363bde9b6a363135e2697765a0594
+  license: ''
+  license_text: ''
+./doc/glibc-headers/resolv.texi: 
+  copyright: ''
+  hash: 67e701d549c3af1a21fa81ac7bb0aea9bc236210f49d4a58e44a93ef173d7d1d
+  license: ''
+  license_text: ''
+./doc/glibc-headers/shadow.texi: 
+  copyright: ''
+  hash: a366437bb8a42ee9261518470bfbaf0fdc8da97ebdfafd9b582e0896d7f739ad
+  license: ''
+  license_text: ''
+./doc/glibc-headers/sys_ioctl.texi: 
+  copyright: ''
+  hash: 9368a7f1aab344a4a2b9c5e895868ca14cc69044c0b1c04a8bf3a9c89cef6e41
+  license: ''
+  license_text: ''
+./doc/glibc-headers/sysexits.texi: 
+  copyright: ''
+  hash: e281f6c23b36b8fd6bfaaa9e8983259765fa320d989f9d77639cdf67c7b74182
+  license: ''
+  license_text: ''
+./doc/glibc-headers/ttyent.texi: 
+  copyright: ''
+  hash: a9e0f8c8e52a08d612b970503007b714f785c88f0d36786a6f2a8917b56c59d8
+  license: ''
+  license_text: ''
+./doc/gnu-oids.texi: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: a8b7560867c2aed55edee1312ccb3b71d4a7d36209c0544d538aafc0c990c7d2
+  license: ''
+  license_text: ''
+./doc/gnulib-intro.texi: 
+  copyright: ''
+  hash: 8afe4cf237d90be78640df9ef7349588a2a5bcb07901f8bc2ad44b625b00afea
+  license: ''
+  license_text: ''
+./doc/gnulib-tool.texi: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 86878555c512a6423372b2cd838d55c7c6a02da7eb97664a78e4bbf111f33b31
+  license: ''
+  license_text: ''
+./doc/gnulib.texi: 
+  copyright: "@{} 2004-2009 Free Software Foundation, Inc"
+  hash: de3a5da4c9cc7db7d7ef6de60a5248025bed7cbc6b9dc0320c0075bb28b18b77
+  license: ''
+  license_text: ''
+./doc/gpl-2.0.texi: 
+  copyright: the software, and / @{} 1989, 1991 Free Software Foundation, Inc
+  hash: ba36a1e79e0a6db5aa3012803fd12acab7bc7be569da100c6659fff959670389
+  license: ''
+  license_text: ''
+./doc/gpl-3.0.texi: 
+  copyright: "@{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer you this License"
+  hash: 1c68a24b291a0eebaa1fabba67326ad8c5d48968b84bba0907bf74d8d3b01971
+  license: ''
+  license_text: ''
+./doc/havelib.texi: 
+  copyright: ''
+  hash: b178e7f4be5c66b0756783fc65a9fdbefb2ddb9e2fce18cfe4838383506ba25f
+  license: ''
+  license_text: ''
+./doc/inet_ntoa.texi: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 44cfa1261391ab7b6da6a8387826d35826ef9238214aea7713a3bdae92621afc
+  license: ''
+  license_text: ''
+./doc/install.texi: 
+  copyright: "@{} 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004"
+  hash: 3579aa06fdcde2788de2bdb2ac9e3f7dddaaf305033e3819b0bd5e8bcd321ad5
+  license: ''
+  license_text: ''
+./doc/ld-output-def.texi: 
+  copyright: ''
+  hash: f3adaf3de58b4ee8286574e8dc7d25e0d536753026018880d7ed6299129dee1c
+  license: ''
+  license_text: ''
+./doc/ld-version-script.texi: 
+  copyright: ''
+  hash: 21a0a61901f55f0d7c8ba37d1ce6dc1d569e74583bd96a03ea211db7d969fc10
+  license: ''
+  license_text: ''
+./doc/lgpl-2.1.texi: 
+  copyright: the / @{} 1991, 1999 Free Software Foundation, Inc
+  hash: 85eec7ec57d7c054ced20ff937a0dbb6f85ef080feef81c969e3338c4e07c237
+  license: ''
+  license_text: ''
+./doc/lgpl-3.0.texi: 
+  copyright: "@{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}"
+  hash: a4c865bb56a69cee86c1ab9bb354cd6a81b95e64a6ed096b1b3e616af3f85cc1
+  license: ''
+  license_text: ''
+./doc/lib-symbol-visibility.texi: 
+  copyright: 2005-2006, 2009 Free Software Foundation, Inc
+  hash: ace49800754530f3421436b0c69c07faa05fec9319591a7a4d30b2bd37a98525
+  license: ''
+  license_text: ''
+./doc/maintain.texi: 
+  copyright: "@{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999"
+  hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
+  license: ''
+  license_text: ''
+./doc/make-stds.texi: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
+  hash: 6856144813c56da2dd64ded78323b4e4e1be9177837113f827f9340b8cb74446
+  license: ''
+  license_text: ''
+./doc/manywarnings.texi: 
+  copyright: ''
+  hash: eb20f35c0202b22d36b97d775196f85053b54dc0a181eced05ac1f19457dd4df
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bcmp.texi: 
+  copyright: ''
+  hash: ee5e5047ceaf869e5c235c6f2702e7f43b6b4ea02ef553524b75e92be07c640b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bcopy.texi: 
+  copyright: ''
+  hash: 223523ff87be634108d2bf747ce5fbe13ad98f02904e0c098e5bbf60bf490330
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bsd_signal.texi: 
+  copyright: ''
+  hash: 00704a5cfe69597fb6d992575594832eb5947e8748892a721d7ffb17283aa90b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/bzero.texi: 
+  copyright: ''
+  hash: c850be8ba6f681e50eb0a4ecc5820bf7e59d6ff4b4614588c060201ea49eb02e
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/ecvt.texi: 
+  copyright: ''
+  hash: e6504270c1681b6065cb639e57224dd1f372edfa0a59123f7d37173406a4f494
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/fcvt.texi: 
+  copyright: ''
+  hash: 430225c066876772ad6b84ef2fec19a1c57b804a039583810795399f63705b54
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/ftime.texi: 
+  copyright: ''
+  hash: 89c4865146e1c4cbe085be8b535cc4895846e0d7dc5d9463cd893f2a2611cc6b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/gcvt.texi: 
+  copyright: ''
+  hash: b58c5c40dd157cd45a90cc8116c094bc7467118421b812fa7603d85ef5f9a216
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/getcontext.texi: 
+  copyright: ''
+  hash: d4cff088a3b331819944b6dd371788d793587a91a2e300d45e194025ba3912f0
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/gethostbyaddr.texi: 
+  copyright: ''
+  hash: f62bfb5224b154effd3082e24c0573f955ccece64433a088bf72f82c97797593
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/gethostbyname.texi: 
+  copyright: ''
+  hash: 776bee42bc3143a75a126fc67510c85e732caff095d2618cf3dad9adfde2823e
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/getwd.texi: 
+  copyright: ''
+  hash: 0ea55e75af07fb3979e1a63cf6b6182eefbaea7dd5556d849894438bd700541e
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/h_errno.texi: 
+  copyright: ''
+  hash: 8ad4e6a01308643335b767c77d0f461f310eeeb59a03fd2b7057f5064c165625
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/index.texi: 
+  copyright: ''
+  hash: a5fca5d0786ced2a2f131a143afab2f5ee54b26b419e1be48f0139c208117de8
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/makecontext.texi: 
+  copyright: ''
+  hash: 1c5f3629d45da8aa766f448b81564a651ce98fcf39f5982732a39f9309b6760b
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/mktemp.texi: 
+  copyright: ''
+  hash: 9eb524104f966e5d2bec99631296f09f0f359d79cd59f39feeb96ab11d99fc43
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/pthread_attr_getstackaddr.texi: 
+  copyright: ''
+  hash: 4d63b667e605bb58aa0663e91f62ede2047edc8b47c59feb336a73fcbfe9fc8a
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/pthread_attr_setstackaddr.texi: 
+  copyright: ''
+  hash: 6321fd00b2cdfca18d37e2da59c1746b49d208d9342fd98061524fae66a617fc
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/rindex.texi: 
+  copyright: ''
+  hash: 7d63a4ee6bc483b81e2d88abf9ecc5576e30f3c911e8a00ae2a6c79aeaa0f141
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/scalb.texi: 
+  copyright: ''
+  hash: 466c68b70229a839f6d041c664ca3b58a0cd8bbe7b878e3d1fbe68f1bf578b90
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/setcontext.texi: 
+  copyright: ''
+  hash: cf06f7a1492f1b932e521f9532748e9d6e93638ac687bda4eabebd45b8f14fda
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/swapcontext.texi: 
+  copyright: ''
+  hash: cbd3d366ba77cedb5d159f4ba6325e42dc851244f91750aac38dd037bbe32ebd
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/ualarm.texi: 
+  copyright: ''
+  hash: 2e8b19c1c34350007a55f47aec6a9c248d12f48f6b5b350f391b723c0b93392c
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/usleep.texi: 
+  copyright: ''
+  hash: f501d093118e406965e4dad35b035eee7346fec9ca5ee2a69867718e32d277fe
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/vfork.texi: 
+  copyright: ''
+  hash: 36148ae554abcc4b634cf714f4fd99d663a957814057cf580370d48944a22ff5
+  license: ''
+  license_text: ''
+./doc/pastposix-functions/wcswcs.texi: 
+  copyright: ''
+  hash: c56c89e0ec1d7221fa616889acfc8be4eff6a18d830fb452fd62c2c59c115c32
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_CLR.texi: 
+  copyright: ''
+  hash: 4bdcc69109a06b2a638508e0e88920c7b9144c36295828451960cc3937dfa0ee
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_ISSET.texi: 
+  copyright: ''
+  hash: 1291518a4f9111d9e9475c542cc9c025c2150e824852f4f5d689b43aff16f0d1
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_SET.texi: 
+  copyright: ''
+  hash: 16e13795165195f4a4eacd97bb731c1cc32746395eda808584fe24e7bf2bf040
+  license: ''
+  license_text: ''
+./doc/posix-functions/FD_ZERO.texi: 
+  copyright: ''
+  hash: 867ed157d794920b1e6ef522bd1389065fa176a2745516597adc9d957c6d9c1f
+  license: ''
+  license_text: ''
+./doc/posix-functions/_Exit_C99.texi: 
+  copyright: ''
+  hash: f2971a822bc1838157a0c388c7112b4fb3512e7285ad00028a64ed2d126560ca
+  license: ''
+  license_text: ''
+./doc/posix-functions/_exit.texi: 
+  copyright: ''
+  hash: 617e14d15ded9c83e30656eee2982fbd7779fae2a9ebb85434e731e0448ea376
+  license: ''
+  license_text: ''
+./doc/posix-functions/_longjmp.texi: 
+  copyright: ''
+  hash: a4efad25c9a2aa0a0bb68cb8f8d93469f8dededd867d67616165bd2cac5b49ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/_setjmp.texi: 
+  copyright: ''
+  hash: fd4f68ff284ebc28908272e8ba70caa11cd851a607710395440093198b78da33
+  license: ''
+  license_text: ''
+./doc/posix-functions/_tolower.texi: 
+  copyright: ''
+  hash: af965647c2059fa305a0ea66425e067f6351285e242a80bfb79892d04af1efe2
+  license: ''
+  license_text: ''
+./doc/posix-functions/_toupper.texi: 
+  copyright: ''
+  hash: a60a13b20e2c158a30d313107892d5c7445595700c098bf69aa2e09a9932a27d
+  license: ''
+  license_text: ''
+./doc/posix-functions/a64l.texi: 
+  copyright: ''
+  hash: 9a48aa5a59249118c5ed8abb938d8c66ee17754847ba48b97d1bb34ebd736950
+  license: ''
+  license_text: ''
+./doc/posix-functions/abort.texi: 
+  copyright: ''
+  hash: f7017d331926830c3d0ee3ef193aaba54cc29e400d26730478300ed46c330278
+  license: ''
+  license_text: ''
+./doc/posix-functions/abs.texi: 
+  copyright: ''
+  hash: 8a6be2b119b4780391f1a407aef5ce6064c1f1c2fb42b2d9801e81446320a575
+  license: ''
+  license_text: ''
+./doc/posix-functions/accept.texi: 
+  copyright: ''
+  hash: 81b3c3211aee16330e76a0b86a339f4d352a02421066633fc356a3bff5365aec
+  license: ''
+  license_text: ''
+./doc/posix-functions/access.texi: 
+  copyright: ''
+  hash: 5c9fe6527a708f0f5699ddaa241a010325972adaaf5f6dbd5a05728a80ab7de0
+  license: ''
+  license_text: ''
+./doc/posix-functions/acos.texi: 
+  copyright: ''
+  hash: 150b61e719501d08ba13f5c263800804a50eefb71d3ce76b4c267c5cf01f297c
+  license: ''
+  license_text: ''
+./doc/posix-functions/acosf.texi: 
+  copyright: ''
+  hash: 9c84c5a1592f90ebe189dd0411e60fae1dc44b75d1b85235767ba29fdb461845
+  license: ''
+  license_text: ''
+./doc/posix-functions/acosh.texi: 
+  copyright: ''
+  hash: 194f7fc07993dbde9913bcdc50b1f595c79f07e3bcc99a22abd2c7f996be9615
+  license: ''
+  license_text: ''
+./doc/posix-functions/acoshf.texi: 
+  copyright: ''
+  hash: 16975c50d57f3c7d1e6e146f12dd4fb00edf62eb981cd7ca0086ba4637a6c4ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/acoshl.texi: 
+  copyright: ''
+  hash: c48a11ab5a5cbe1b315d4eba844ada7b360515d9dde684063df356b4e26ca7cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/acosl.texi: 
+  copyright: ''
+  hash: e7792ee050ec415ebb3afb0943ed08c5a1d8473e4a3965fc294a40f54508ff80
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_cancel.texi: 
+  copyright: ''
+  hash: b66233d7d61128517a0b7295d5acec1e95f4b39184ffb18d77fb8ef6b78fe623
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_error.texi: 
+  copyright: ''
+  hash: c373cc41047b3d210041a50ec055a65ffe89026e4fdf391bc4a45890df6fe34c
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_fsync.texi: 
+  copyright: ''
+  hash: e727b3d41bef54f2e5c2729130af2eb90f1010edc998c99bd06e02f466e47cdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_read.texi: 
+  copyright: ''
+  hash: 3d17ee9b9556d524d7d7f90a80fe07b3fcd01a23d833c1bd12815ded8abe1f0c
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_return.texi: 
+  copyright: ''
+  hash: 7991e57a0afdf4886417e32b5ff2fefca051625e020d2f99c6ba13a9ba0b93f6
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_suspend.texi: 
+  copyright: ''
+  hash: 6a7462cef0037932257eeb80998e3fe8d56418d33006cdfd729b36c2ee2442f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/aio_write.texi: 
+  copyright: ''
+  hash: 1bcfee726b7f2c39b8ab864a98213996e3d6550bc91ffe27e68ca52cc42fef61
+  license: ''
+  license_text: ''
+./doc/posix-functions/alarm.texi: 
+  copyright: ''
+  hash: e2e54168615ce20a9bdb520184cdb94f8c87bc7afbe08bad9e3fa30228948609
+  license: ''
+  license_text: ''
+./doc/posix-functions/alphasort.texi: 
+  copyright: ''
+  hash: ef1142784d13d61cc5243b241b611436b5c41936674ff9c822f3bd5a525a541d
+  license: ''
+  license_text: ''
+./doc/posix-functions/asctime.texi: 
+  copyright: ''
+  hash: 721bc2ac5ac79045cbf87988e789bbab5132485fcfb82753f1341d315c4ac690
+  license: ''
+  license_text: ''
+./doc/posix-functions/asctime_r.texi: 
+  copyright: ''
+  hash: f9f95df6f49642a423caa4d7f15c2f032790dc10388af51c7661f87407f1f260
+  license: ''
+  license_text: ''
+./doc/posix-functions/asin.texi: 
+  copyright: ''
+  hash: b329f7976db842d1b576513d498164f1469586519242f55a3549f35d19fa5c8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinf.texi: 
+  copyright: ''
+  hash: dcc23541874407b670f6aaa98d3206d52d1dc7d332c61591c21b902c0c88175a
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinh.texi: 
+  copyright: ''
+  hash: ca1f10207ab80b34856d7d221917ab4e3ea8ec66daabfad193f620a43e0890fa
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinhf.texi: 
+  copyright: ''
+  hash: 57aa296f938827a7b7ccc0146a519d2daec080d5a4fd9faaeb912ba6b25fc5a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinhl.texi: 
+  copyright: ''
+  hash: 5334814ec20f8cb6f5b4fa90b116944da8b21130f87f170143da8c5e7d0ed90a
+  license: ''
+  license_text: ''
+./doc/posix-functions/asinl.texi: 
+  copyright: ''
+  hash: f38089461ff6de8a2e20fe6faf14bb3536b88885f71406ec3678f9eeddb3b7e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/assert.texi: 
+  copyright: ''
+  hash: c57a5393ad06cfbf14e522f23e99c9f7c79ff4295814b68d038ebfc9914898a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan.texi: 
+  copyright: ''
+  hash: 4ff1b784715d8fccd274a4d46d6c0a2aaa69ba2d80d1b6551033c492cf599c98
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan2.texi: 
+  copyright: ''
+  hash: 7fdc70bbb2d4ec9e2f5cb007bc3c45617de137614d5d793d80e6a1c7d28fdcb9
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan2f.texi: 
+  copyright: ''
+  hash: e097eb1773d31fceff278a30c31286bc5600c4b73b1c152778dd1057036982d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/atan2l.texi: 
+  copyright: ''
+  hash: f4c5ca77363c312560873e8094350021d32b086379d14a23fb80a75147fbc45c
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanf.texi: 
+  copyright: ''
+  hash: ba3c7c2fc2662ad55ef268494c70149f99f16a3ef9f266870508454cd70e12a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanh.texi: 
+  copyright: ''
+  hash: 2ebfd2d4f0608e214eee8e76ea21fa027dd8496d685b81231e7e7e40bcd83689
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanhf.texi: 
+  copyright: ''
+  hash: 327fcf33922e20f61594c5d6bfb40a36d60661a50594ed1373cb04182f78ad1f
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanhl.texi: 
+  copyright: ''
+  hash: 7d84523ad7598e7932a11e3bdf4cfaa78a0e2844bfa8fef21ac0a9445a7d2461
+  license: ''
+  license_text: ''
+./doc/posix-functions/atanl.texi: 
+  copyright: ''
+  hash: f9fdd043f291ef30c72d8b86bec63f81872c4e27c075eb44555e3519a942ce71
+  license: ''
+  license_text: ''
+./doc/posix-functions/atexit.texi: 
+  copyright: ''
+  hash: 07af21ce2184b60a35aff17a7de75adac18a1c23a31c8ef3966fe5a19b11f702
+  license: ''
+  license_text: ''
+./doc/posix-functions/atof.texi: 
+  copyright: ''
+  hash: cb598c82f7c415f1525ac2f407c7924853f15d7f63a42471e2e980e263aed83b
+  license: ''
+  license_text: ''
+./doc/posix-functions/atoi.texi: 
+  copyright: ''
+  hash: 42f659e4671bf747e181f5ef4b3f949ecb73cdd988944a3847e0b43b3af9a980
+  license: ''
+  license_text: ''
+./doc/posix-functions/atol.texi: 
+  copyright: ''
+  hash: 509a54f5251640192f8b2054f91f5c2d8acf54dbe7ed65ef8ef07747502402af
+  license: ''
+  license_text: ''
+./doc/posix-functions/atoll.texi: 
+  copyright: ''
+  hash: 8c9a6dc1b25278f7455c06e10fdccf05c49405df1d7116aca867349387b4d9f4
+  license: ''
+  license_text: ''
+./doc/posix-functions/basename.texi: 
+  copyright: ''
+  hash: 580230c22dd6f6cf1cf798e506e89d861118db39bc129e9f4257f55de4915995
+  license: ''
+  license_text: ''
+./doc/posix-functions/bind.texi: 
+  copyright: ''
+  hash: 075c556c5fdc1c0a9aa62c6cc8c9c94ab0a632352b43e43c36daf2682dafbcac
+  license: ''
+  license_text: ''
+./doc/posix-functions/bsearch.texi: 
+  copyright: ''
+  hash: a52cfb1ef7418d53462eb86d9b8153cf8589b501f912e649c765afe6ee090968
+  license: ''
+  license_text: ''
+./doc/posix-functions/btowc.texi: 
+  copyright: ''
+  hash: 86660f1a58cfde44606f43b85c540b2e731dca2e3387fb1a2486656615ba03e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/cabs.texi: 
+  copyright: ''
+  hash: 5a57e05203246e471ecb597d82a6df81a9a9324e7f9d41c4c07524134f1a742f
+  license: ''
+  license_text: ''
+./doc/posix-functions/cabsf.texi: 
+  copyright: ''
+  hash: 6206f6a5f20a0c6471551ea93ba80961472d58caa288e80acc5400a973546d49
+  license: ''
+  license_text: ''
+./doc/posix-functions/cabsl.texi: 
+  copyright: ''
+  hash: d6d3a323b448fe92e604e0121be72ea0fdf5c8876ab74c851cae2119804a23af
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacos.texi: 
+  copyright: ''
+  hash: 50eeefeabe4315e966bc544fdef355a310e83c8d3a199628c70c4333fb3659c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacosf.texi: 
+  copyright: ''
+  hash: 5574c38edf482540ee0ccabea8512ea3b254bc971aac84d48c0814a9161b71ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacosh.texi: 
+  copyright: ''
+  hash: d5668e987d967fa28f2fc14ee7b0b32cab5b7ce204f9724133c81b1ab9d0d38c
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacoshf.texi: 
+  copyright: ''
+  hash: 09c419d35ce19ad5101b87b37cb67507975fa38ad4e5558a78c3fb28897d45a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacoshl.texi: 
+  copyright: ''
+  hash: dc375481504fafa3bd2f505b3a24f913052b5d7cc8f6be09d322b23ecd72fe4f
+  license: ''
+  license_text: ''
+./doc/posix-functions/cacosl.texi: 
+  copyright: ''
+  hash: bf1d59e5f937aa85da28fa866443894e6a227636f9c2075f81c13a6ff1f010fb
+  license: ''
+  license_text: ''
+./doc/posix-functions/calloc.texi: 
+  copyright: ''
+  hash: 8d5ecf56975464579d01f08920bee2441850c4e3e295ee55688c1669a6d871c3
+  license: ''
+  license_text: ''
+./doc/posix-functions/carg.texi: 
+  copyright: ''
+  hash: a82fbcbbd57f46c534a0b7c0498648ccb5d1b990a71c3f00b7f71d62ead996f1
+  license: ''
+  license_text: ''
+./doc/posix-functions/cargf.texi: 
+  copyright: ''
+  hash: 3400afd0256e66a6906d3ec9034955305cd3018876434b982005c1070ff4d9b1
+  license: ''
+  license_text: ''
+./doc/posix-functions/cargl.texi: 
+  copyright: ''
+  hash: 05ba0a0471f75afc9164bf93664b3e3169236684072ba2e750805ba7c441ce71
+  license: ''
+  license_text: ''
+./doc/posix-functions/casin.texi: 
+  copyright: ''
+  hash: 088c0bcfac54314d20520422d335a2cdd8fd8de1fa28f7a3574b049b64206d4c
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinf.texi: 
+  copyright: ''
+  hash: e1eda8eda74e50383462f6250d8797995b4bd9e33630a97b11068457b25079ad
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinh.texi: 
+  copyright: ''
+  hash: c92401d5821a5c2e8eae6e1ee0e4d0f404fed62fe860d51ca34276cbe5c67fdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinhf.texi: 
+  copyright: ''
+  hash: 955a15c8ef8373798497a79b8303d6ddc32b5a9ca5132389339e2934344d3d45
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinhl.texi: 
+  copyright: ''
+  hash: bc36d55b4db6c64eec973c48e5f4e01bf2524e0774b4ed7575a0962e6c752d60
+  license: ''
+  license_text: ''
+./doc/posix-functions/casinl.texi: 
+  copyright: ''
+  hash: 2fdcbfd22461c6328f3a88b4a220c43c7e669f760b9247dc13924213b3608ca4
+  license: ''
+  license_text: ''
+./doc/posix-functions/catan.texi: 
+  copyright: ''
+  hash: 1900ac3c57172c7fcf543e7c2bdbbe29786d3e2de52b270034ba0d1043b03142
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanf.texi: 
+  copyright: ''
+  hash: 15a02393981d9d54e9343892174f0f4460b9a912a7e081154ee9549d2e7ffbf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanh.texi: 
+  copyright: ''
+  hash: 26f0ae150358d27a41ebd8a1ea04f9894175f61babb39a6b98f5d61599a9edd1
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanhf.texi: 
+  copyright: ''
+  hash: 4e75f5881fbb08aa54a2fff4134b3762fa0e12469c74932a38fd9e4207a3623a
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanhl.texi: 
+  copyright: ''
+  hash: 82d0c974c64a7cf16231948261385d9481c370fccd9c1505479c1570315fcd47
+  license: ''
+  license_text: ''
+./doc/posix-functions/catanl.texi: 
+  copyright: ''
+  hash: 9e7691d069d4a4738e083cf638a18a533a7c823dcd5703365ab766d077e8744f
+  license: ''
+  license_text: ''
+./doc/posix-functions/catclose.texi: 
+  copyright: ''
+  hash: 01ecba8a97e46807f4fbb86f8f783a4aac58738c54a0100b32283f4d64f2307f
+  license: ''
+  license_text: ''
+./doc/posix-functions/catgets.texi: 
+  copyright: ''
+  hash: 85222dd53c8d87d37d1fc345d441786afb858cfbd76117d6ad374541305c418b
+  license: ''
+  license_text: ''
+./doc/posix-functions/catopen.texi: 
+  copyright: ''
+  hash: 6735bd2f884c12725cdae1f82a0d5e53c6773f3803e206c4d2fbb773e74834c2
+  license: ''
+  license_text: ''
+./doc/posix-functions/cbrt.texi: 
+  copyright: ''
+  hash: 67c9f016fcf80f7a7bb55861e8547c42548312e7370fc73728b5274032f976b6
+  license: ''
+  license_text: ''
+./doc/posix-functions/cbrtf.texi: 
+  copyright: ''
+  hash: 803d4a7e0a751e168dc18cd98d0f2c41155e2c26493040183d792e4024515762
+  license: ''
+  license_text: ''
+./doc/posix-functions/cbrtl.texi: 
+  copyright: ''
+  hash: 43de9ac1aa9e5cc0d8bd8702ede4d1aa16e6dcef3ad574242605a0c8bbec94cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccos.texi: 
+  copyright: ''
+  hash: 8fa59bae0d8f0c675e9ef48de43de0b4c10b0507a31cd2d81550f52d9712cff0
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccosf.texi: 
+  copyright: ''
+  hash: 2eaf3ff8e1a7a5cbb0233238640c6a1134ae3cc80acc412585115fd63358bf61
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccosh.texi: 
+  copyright: ''
+  hash: 8acf4ecf1abbec6b25ab0cc53f8a452f4ddb32bd61ff4a6ff94c16a5602ec2ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccoshf.texi: 
+  copyright: ''
+  hash: f30beb9e547118702e7f30525f258e4cf50a5195e03fb66554802fe0a580f7c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccoshl.texi: 
+  copyright: ''
+  hash: eb9e28e48f625d3e2eb5e13e96cbbe361b852162d3d90ba26a5837e1889af495
+  license: ''
+  license_text: ''
+./doc/posix-functions/ccosl.texi: 
+  copyright: ''
+  hash: 3d9df8f9f71f802e5d84323b16351e60dbabdbb3cd0abd9bc862b3e291439694
+  license: ''
+  license_text: ''
+./doc/posix-functions/ceil.texi: 
+  copyright: ''
+  hash: cf8b5752573720cc25bec831c538c1394b14f3b1460f5cc3a2e16ac7016e0497
+  license: ''
+  license_text: ''
+./doc/posix-functions/ceilf.texi: 
+  copyright: ''
+  hash: e13c58fd23e0ed41d99a7bd4d0e8d7849bd2da76d7ce095fdaa587ccb3839d6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/ceill.texi: 
+  copyright: ''
+  hash: c9b79f28ab9283d893f155d1f25c8e75cb360e0d04af0b245bf3e1d009217a5a
+  license: ''
+  license_text: ''
+./doc/posix-functions/cexp.texi: 
+  copyright: ''
+  hash: d3f7892298fdf378f2828a6b51fe4805c92d3a2a217a3e38d4bed5f7c4cc3da4
+  license: ''
+  license_text: ''
+./doc/posix-functions/cexpf.texi: 
+  copyright: ''
+  hash: 09f585a4aba129816d1cb526a14f28ff83ca3fa54016e7bf8b8c08494c2db323
+  license: ''
+  license_text: ''
+./doc/posix-functions/cexpl.texi: 
+  copyright: ''
+  hash: 883e3b88e16b87337802472c75c00fa5b35462c0b8573f7ef558e9a4c0e4faf9
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfgetispeed.texi: 
+  copyright: ''
+  hash: 14c4e6e62c223931253fb497e69a93dad3a1c6a51fca15f3e63337795107bea5
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfgetospeed.texi: 
+  copyright: ''
+  hash: c2519db2b4f519fd3f66640aabd8e497ba1ce5892d23c916a38576bbb580361e
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfsetispeed.texi: 
+  copyright: ''
+  hash: 3b3d21a8f207d8e41d3c912c4a0083264a6fa411c2da6c3f604d7050dee0fed8
+  license: ''
+  license_text: ''
+./doc/posix-functions/cfsetospeed.texi: 
+  copyright: ''
+  hash: c20afc895be661df0733a8dc75794fa7293263468d39678a301ff494d2c87109
+  license: ''
+  license_text: ''
+./doc/posix-functions/chdir.texi: 
+  copyright: ''
+  hash: 53aded6f64b0941116e51303b73ac8e6e9278e3f201af7c6ad326820b5e2e3f6
+  license: ''
+  license_text: ''
+./doc/posix-functions/chmod.texi: 
+  copyright: ''
+  hash: 3a349653c163fa2e3564b1e31ed14ab490934bba7fd3d0096f0d7b1efded7348
+  license: ''
+  license_text: ''
+./doc/posix-functions/chown.texi: 
+  copyright: ''
+  hash: fb9f116f87fc01e4ef30e188f7c9360ac6f517f9eb1370ae2491f5246ed6fef0
+  license: ''
+  license_text: ''
+./doc/posix-functions/cimag.texi: 
+  copyright: ''
+  hash: fd22dd26750766a15751078eb653fdc2ddde0ce0fbd929b258c9fe161e04170e
+  license: ''
+  license_text: ''
+./doc/posix-functions/cimagf.texi: 
+  copyright: ''
+  hash: 76a569fc520aa0eb83fadc9a9e735b2a0a5f3f6daeeeaab322bac1b697554888
+  license: ''
+  license_text: ''
+./doc/posix-functions/cimagl.texi: 
+  copyright: ''
+  hash: c881d444238f5203c0d3b0087372957be2f909c63037c1d14ee0a916707a9c6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/clearerr.texi: 
+  copyright: ''
+  hash: 5fed5a649725e8940e5adb12d4fbf3f5af27aade47daa719911b155f7421149d
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock.texi: 
+  copyright: ''
+  hash: 71e1ceb2d0f5f512ab4a9a0fb2ce9e895457e1b6c7425130bf8ba7896980978a
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_getcpuclockid.texi: 
+  copyright: ''
+  hash: e72acf21acf80e70335aa212455e60bf1f9815caa0e8d1bf2d2d192c9e337803
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_getres.texi: 
+  copyright: ''
+  hash: bf955ddbae540035a89e35302304365a2a775aabb9ae7fccbc9c66948de3619e
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_gettime.texi: 
+  copyright: ''
+  hash: ac68c2fc02227f916df88dfa46f6b2dfbe111860e20dfa605934d149550ef2e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_nanosleep.texi: 
+  copyright: ''
+  hash: 59ca36060acae6a447a4111243c638108a3a98fcf1b53dd7681aaf989698df2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/clock_settime.texi: 
+  copyright: ''
+  hash: 297b8d0066f505aa8c21939c73612aaf536cf0e4f977f1edbb2c4f242d2c5a3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/clog.texi: 
+  copyright: ''
+  hash: 47702f69c3982416c0512a7bd4025df239fefbe4a2f1707cd4745b9fdb500379
+  license: ''
+  license_text: ''
+./doc/posix-functions/clogf.texi: 
+  copyright: ''
+  hash: 2e2bd1295966040f14759ef405f2038a279e164148b402035e9f0633e8e9f49e
+  license: ''
+  license_text: ''
+./doc/posix-functions/clogl.texi: 
+  copyright: ''
+  hash: d40dfa8fa5b96d52d881955e61b8f0cedd381b1e8ca3d7b5ab72c35fb5cdaf55
+  license: ''
+  license_text: ''
+./doc/posix-functions/close.texi: 
+  copyright: ''
+  hash: cdb920f0119a8df783e378bc05571ee2ca4308b3f841b50ca48bd1a3a592ecdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/closedir.texi: 
+  copyright: ''
+  hash: 7e1885ff9368f59c6f2b55a3f04b6ff7a6aa6b2ca796b91c3c88c5c8ec50eaf7
+  license: ''
+  license_text: ''
+./doc/posix-functions/closelog.texi: 
+  copyright: ''
+  hash: 30ca3ffe1cf65500c3bcc3580781dcc34252bea949f3270ce75ad084a281b055
+  license: ''
+  license_text: ''
+./doc/posix-functions/confstr.texi: 
+  copyright: ''
+  hash: 2ce3fc57057be6a24091d7ea399f22cba994b4346cef4ad9e0905d51edb913bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/conj.texi: 
+  copyright: ''
+  hash: 0eb7d2bbdb99c6fd78b92c2b7914b2877cf9e69c4ba5b330f498ef280b11e362
+  license: ''
+  license_text: ''
+./doc/posix-functions/conjf.texi: 
+  copyright: ''
+  hash: 11074f4091f08fd28a9c95b2c7dba4bd66f6fffe7db41e961cfc565ec2d5e960
+  license: ''
+  license_text: ''
+./doc/posix-functions/conjl.texi: 
+  copyright: ''
+  hash: 2c89f05a72f75624bbe8a6c3541f8d3907e91507537a6a5fa75fdceab2a35963
+  license: ''
+  license_text: ''
+./doc/posix-functions/connect.texi: 
+  copyright: ''
+  hash: 122c3713f1fc98b41082aeaf30a2698ca66f35c223d70b97b76ef1b622c58db0
+  license: ''
+  license_text: ''
+./doc/posix-functions/copysign.texi: 
+  copyright: ''
+  hash: 93dede54d4a068e03c2a790b968101fcce78809d3aa2353f8cf98fda60d7c269
+  license: ''
+  license_text: ''
+./doc/posix-functions/copysignf.texi: 
+  copyright: ''
+  hash: 936705fb4bcc082135aa1afc2248b7cfc45cf37f22d002866acaa14c654baaff
+  license: ''
+  license_text: ''
+./doc/posix-functions/copysignl.texi: 
+  copyright: ''
+  hash: 5540cb65bb917d842bc6d0e81dcce0f16f2d1a6d0a8bb9add553a8c9559fabe7
+  license: ''
+  license_text: ''
+./doc/posix-functions/cos.texi: 
+  copyright: ''
+  hash: 80045abb71f4e33aea591a9a33a90bef9af7125bbb532ff6e163c7c900307481
+  license: ''
+  license_text: ''
+./doc/posix-functions/cosf.texi: 
+  copyright: ''
+  hash: 6a11bab0ddf9d06df138b7698cf452d382efa0ac3c383bf36c1b2932b9e8f892
+  license: ''
+  license_text: ''
+./doc/posix-functions/cosh.texi: 
+  copyright: ''
+  hash: dcd6e2553d7fcd67f7d7ac4b296e0b86c27791599a33b0f849b7b6b9ae783102
+  license: ''
+  license_text: ''
+./doc/posix-functions/coshf.texi: 
+  copyright: ''
+  hash: ac511adc238f0fc43aee913691ce5b4d5758b02ba0edc1f377f07bc2b24b427d
+  license: ''
+  license_text: ''
+./doc/posix-functions/coshl.texi: 
+  copyright: ''
+  hash: 10b1339882714ecb27f3595789ff7e57531e1394b8047b6a66d9784f909f0a64
+  license: ''
+  license_text: ''
+./doc/posix-functions/cosl.texi: 
+  copyright: ''
+  hash: 29fb7a5e98a754431e7f3a277096efe178611cc623d9e14b592014d367fd3c58
+  license: ''
+  license_text: ''
+./doc/posix-functions/cpow.texi: 
+  copyright: ''
+  hash: c196fd3e6b5e82b2df412700bd551e90fdcb006566259e526e52d5066a7f136a
+  license: ''
+  license_text: ''
+./doc/posix-functions/cpowf.texi: 
+  copyright: ''
+  hash: 20082274ab3053bb9211077523ac71a8564395068d111a99a4471e5bc315270a
+  license: ''
+  license_text: ''
+./doc/posix-functions/cpowl.texi: 
+  copyright: ''
+  hash: 0aa484e5a20be1692c9b64d6039dd16438e77e2176ec0f54625f67c854b498b2
+  license: ''
+  license_text: ''
+./doc/posix-functions/cproj.texi: 
+  copyright: ''
+  hash: 4f7a4e43573aea662d11b57f91b99a7039874efc4c3cc6de132223a6dc634f3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/cprojf.texi: 
+  copyright: ''
+  hash: b964a10e871a0bf9d13731339a259aa619636a7a3f618a002b287ff1ab07e402
+  license: ''
+  license_text: ''
+./doc/posix-functions/cprojl.texi: 
+  copyright: ''
+  hash: 7f382c38eb94bcc1fa720f6c78e14a0b20186f2f595d2c3894535797f3e52942
+  license: ''
+  license_text: ''
+./doc/posix-functions/creal.texi: 
+  copyright: ''
+  hash: 8079a8295b42f1edf95f7aeb2f5be551b970419bfdf820bbce90b95c10754e45
+  license: ''
+  license_text: ''
+./doc/posix-functions/crealf.texi: 
+  copyright: ''
+  hash: f25ddd8b33eb1c125e29e84ae98346e7e5bd73fe20ed9b18090e2080ef09f851
+  license: ''
+  license_text: ''
+./doc/posix-functions/creall.texi: 
+  copyright: ''
+  hash: 77e4a42b2d8f9df278e80f0af88cc71dd02401f1ecbddcca69cb825cab14f2cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/creat.texi: 
+  copyright: ''
+  hash: d7c959e3c46a579a8bdeecfc246074e2c424686307d26c1a2210fb8317cb37c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/crypt.texi: 
+  copyright: ''
+  hash: 624eda7840abf45802a77fc455c11da3a559654831f98db3d3f531ed87f2d5b8
+  license: ''
+  license_text: ''
+./doc/posix-functions/csin.texi: 
+  copyright: ''
+  hash: a3921e459decb8485fa5b129f122cef9545da177d143a848426285bbaadeb33c
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinf.texi: 
+  copyright: ''
+  hash: 7d43a6e3c333aea75c123600828d0b90aa74bbded515c37a4db2b85ee38c126f
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinh.texi: 
+  copyright: ''
+  hash: c1ec8076f91041ba9035541b53fa4ea34899663273fca8b5a1aa7bf0cb69a8a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinhf.texi: 
+  copyright: ''
+  hash: 0e63f7261e62673ea3b38947c2a39fd9db130b5f5f6a331868887d540e142eb4
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinhl.texi: 
+  copyright: ''
+  hash: 6fbfd0066984d87f0912c9ecdb72a51d186bc09e5c6ba6ae1e28384af1cf5d31
+  license: ''
+  license_text: ''
+./doc/posix-functions/csinl.texi: 
+  copyright: ''
+  hash: b007c3e190ebac0645cd770b5c59156ce9fefdd69d6efe8c4c63fb31f755e647
+  license: ''
+  license_text: ''
+./doc/posix-functions/csqrt.texi: 
+  copyright: ''
+  hash: 674aaf134efc75885dbf3a74d1b636639cb36e0a4184887474a94ebf2c2117a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/csqrtf.texi: 
+  copyright: ''
+  hash: dee3f07a84edad6fe1c9fc858ddddbfde40e931e0eba9cd6ed4f129ddccb0c32
+  license: ''
+  license_text: ''
+./doc/posix-functions/csqrtl.texi: 
+  copyright: ''
+  hash: 6e5c675bdaa9c6de16b1437dee1a4578708ca2d94cad7ab22385916abcbf83e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctan.texi: 
+  copyright: ''
+  hash: b3788601cf4d71a0cd3e0f83b165f9556069a213808938b81f8762424ac4cde1
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanf.texi: 
+  copyright: ''
+  hash: c6ade3600b8cb0d385042d424923b9aea79b8679bd9eb4572f88dbb02c6f7a90
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanh.texi: 
+  copyright: ''
+  hash: bd520abfb5efe1fb710b0517325d5182e0545c9689b91778748c9412721b3620
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanhf.texi: 
+  copyright: ''
+  hash: 3720fbb944a55cd90c0a1f0d77340b8cad30d78fe539987b1c69bd7413f11f76
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanhl.texi: 
+  copyright: ''
+  hash: e113c1cf9ab21c84fa4c81d59985e973897534cc9e6665f558871d0cf03e73c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctanl.texi: 
+  copyright: ''
+  hash: c74871a8ab6020712b65b9fd9c94c489711ef5a70448492128fa827232d23241
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctermid.texi: 
+  copyright: ''
+  hash: 998eb7b4802db4cd5694a08d47f1fa146468dabeb663940c9a4cee7ea3eaf42b
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctime.texi: 
+  copyright: ''
+  hash: 876f9405ee65afc513f57061e6dfec1fb9574bf891461ba945785c568bfcd824
+  license: ''
+  license_text: ''
+./doc/posix-functions/ctime_r.texi: 
+  copyright: ''
+  hash: f61cab990b7729cbfa70832fec62258bdb1525389b98ce8812758d43f48f7209
+  license: ''
+  license_text: ''
+./doc/posix-functions/daylight.texi: 
+  copyright: ''
+  hash: 8d3098ea9ad8b8ef46605bc072c9331cbdea31642aadd1cba1c0b77dd2e26d05
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_clearerr.texi: 
+  copyright: ''
+  hash: 404719a3ea24ab08a483c2d52fbc4ce115c9f62356a612c8d5b37c6d2f88d935
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_close.texi: 
+  copyright: ''
+  hash: 6548f4878fe9cc6e0bc32b937fe1a6f124dc133cdccea8a9d5f35af09af63c2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_delete.texi: 
+  copyright: ''
+  hash: 6fdb38f85cb8686811b1f8d621bce24ae42e425900e214548bdefa3cc6580296
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_error.texi: 
+  copyright: ''
+  hash: ba9684e442829d2cd936d0401e6c75a9ae5c98c09272748d6d193d4e8bdbccd6
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_fetch.texi: 
+  copyright: ''
+  hash: 6d17b86b8c0819900bd8c5d9fe44d29e1107aae2add1a3e9439adaadab897c21
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_firstkey.texi: 
+  copyright: ''
+  hash: 7c66943240b0604d0884c80187d2009341aa20acb5992586bce538c60250e1c1
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_nextkey.texi: 
+  copyright: ''
+  hash: 907dd9d709bd00b11a2c1817ccf8cb6a99fa421dca171b04f45cb1fedebe38e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_open.texi: 
+  copyright: ''
+  hash: 1cc347d0c6a0be9a8e6d9dec70c02c6d3dedab0fb0d7fa81da905fc8acb78849
+  license: ''
+  license_text: ''
+./doc/posix-functions/dbm_store.texi: 
+  copyright: ''
+  hash: 9efc0b89e379c522dda1685b5f77dc8fe675d5322d86a80b109e1192448946e9
+  license: ''
+  license_text: ''
+./doc/posix-functions/difftime.texi: 
+  copyright: ''
+  hash: 84a0956c4c5dcddc035048c947ef6629a6e66095464de78530e27871000c15bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/dirfd.texi: 
+  copyright: ''
+  hash: 2bd7841ff2afa0a70d616b84e1906017373f51418bdd86ca173a04dff6f34705
+  license: ''
+  license_text: ''
+./doc/posix-functions/dirname.texi: 
+  copyright: ''
+  hash: f40d32a5b09a2d3082bd21b2dbefb29e49487fff0e58e65aebf7684001a2cccc
+  license: ''
+  license_text: ''
+./doc/posix-functions/div.texi: 
+  copyright: ''
+  hash: 8abae0791655f93d6f27ab614e8aab52311af2f48ace39be233641eb023bbb54
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlclose.texi: 
+  copyright: ''
+  hash: b7ad68ff89c49b30e1120badaca083df7a0212c4cd958724d2ea503699839ec8
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlerror.texi: 
+  copyright: ''
+  hash: 18aa8e729144b1c85ed453e1836cfdcb36a51e27948f9be843a8fc5052273686
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlopen.texi: 
+  copyright: ''
+  hash: 4c4b9aafdfdb94ad9522183dcc6e15ea6612ec8878d2cddc263b0c8fd1e525b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/dlsym.texi: 
+  copyright: ''
+  hash: dd6299cfe6e25b4ebdd8c529c1830ec00c5aabce68fe16f83a0fad14d0266a6e
+  license: ''
+  license_text: ''
+./doc/posix-functions/dprintf.texi: 
+  copyright: ''
+  hash: 4751b081c02483b01d9b3b4340023c6f72f038c6686acaf54e22c02946547333
+  license: ''
+  license_text: ''
+./doc/posix-functions/drand48.texi: 
+  copyright: ''
+  hash: a1f797c389c3e5ec0aa1eb2c68a1c83aed789fe57d9bd614926f905fcd89e020
+  license: ''
+  license_text: ''
+./doc/posix-functions/dup.texi: 
+  copyright: ''
+  hash: b84bc5f93c7ef614338e0acaea061c144c4db4bef66e45640957a5f7d68ac292
+  license: ''
+  license_text: ''
+./doc/posix-functions/dup2.texi: 
+  copyright: ''
+  hash: 6828543830165fe771f033b863d748a69fe320dbeca8ddff166cb1cf61f4f12e
+  license: ''
+  license_text: ''
+./doc/posix-functions/duplocale.texi: 
+  copyright: ''
+  hash: 710286021da197a56a6ff757ea4b40eb32315d8cdd124b218fde41b477292cce
+  license: ''
+  license_text: ''
+./doc/posix-functions/encrypt.texi: 
+  copyright: ''
+  hash: ffff0c779c125a709762efbe2bbaf866da55f9ae8393e65bc5091fc7fa271658
+  license: ''
+  license_text: ''
+./doc/posix-functions/endgrent.texi: 
+  copyright: ''
+  hash: 4e04d52da59c5b86120124d10eaead06c5d849601c0086f6f9c834b8b2e49c62
+  license: ''
+  license_text: ''
+./doc/posix-functions/endhostent.texi: 
+  copyright: ''
+  hash: d4743bbdeecf932ce5f921a9697664b6e546fdc0ff5c1d0ce2bef461801ad3fe
+  license: ''
+  license_text: ''
+./doc/posix-functions/endnetent.texi: 
+  copyright: ''
+  hash: 35901299f3d5b96b44b5eb948d7487f22459c03c4727060ee906472a4e312adc
+  license: ''
+  license_text: ''
+./doc/posix-functions/endprotoent.texi: 
+  copyright: ''
+  hash: 9c3786c66c5d21c3c66fd8549c52c7e49d0d62e009874b2b7a793b928e1af183
+  license: ''
+  license_text: ''
+./doc/posix-functions/endpwent.texi: 
+  copyright: ''
+  hash: af0fe91d02a2753ca91f54afaf844c3707ced1d9be084ccac9e8cefb9ebe1b31
+  license: ''
+  license_text: ''
+./doc/posix-functions/endservent.texi: 
+  copyright: ''
+  hash: c85845c73056fb697ef3ae552c71cfdaccae39eb7773d0cc29e3bcd1e79c0ce2
+  license: ''
+  license_text: ''
+./doc/posix-functions/endutxent.texi: 
+  copyright: ''
+  hash: bb8a45f95293fa56ec75b28457798dd1b02c7b3182b15f58c4248cf7481d9e58
+  license: ''
+  license_text: ''
+./doc/posix-functions/environ.texi: 
+  copyright: ''
+  hash: e747cca924afc1250dbc590720b67ba9544e2a9cb2f94e82589b313e6a879de5
+  license: ''
+  license_text: ''
+./doc/posix-functions/erand48.texi: 
+  copyright: ''
+  hash: 9fc0f6ee76cd0df9c17bdfe1476a1988701d217815345d2e0c0b6c16a2f896ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/erf.texi: 
+  copyright: ''
+  hash: 6a0bddafde57341e89aedc7b0c94be4d959ef1d17041a2ad94edd14eee8dd3aa
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfc.texi: 
+  copyright: ''
+  hash: f7444fc988cc99e0fd5446db910fd6d7afcfa0c6d4af7f69a14279b5ab8764f7
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfcf.texi: 
+  copyright: ''
+  hash: c7f88297596ece737d50e1ad13f8c91e74a1b527820e1af073e08acf85db5ae0
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfcl.texi: 
+  copyright: ''
+  hash: 8ff05f100bfca3045397b764329527a06a324242fe3e7fb12e7ad7017e0a6415
+  license: ''
+  license_text: ''
+./doc/posix-functions/erff.texi: 
+  copyright: ''
+  hash: 94bddf50aa84764165cf1b5515a0d4822d31a78191c2fc058ad8dd11d6b87538
+  license: ''
+  license_text: ''
+./doc/posix-functions/erfl.texi: 
+  copyright: ''
+  hash: b9cea5650518bc063a5f516d263389c127b354ee95a6a244f63c139ee4aff932
+  license: ''
+  license_text: ''
+./doc/posix-functions/errno.texi: 
+  copyright: ''
+  hash: c0bff9e535b487ea1482ae7839b2e0beb289bcec626771844faf76f21a3b2333
+  license: ''
+  license_text: ''
+./doc/posix-functions/execl.texi: 
+  copyright: ''
+  hash: c6c83a0078524e270da3abf8c26bcc630b35e6fb919dfe39752ea97d562d72f8
+  license: ''
+  license_text: ''
+./doc/posix-functions/execle.texi: 
+  copyright: ''
+  hash: 07664367ccaccf55659cf34f6b7129c7f3f581aa26ce635c1ab013412e05ae45
+  license: ''
+  license_text: ''
+./doc/posix-functions/execlp.texi: 
+  copyright: ''
+  hash: ab00274de528810efb9aceee886685a863f27112315256f0480c1a4d8843371d
+  license: ''
+  license_text: ''
+./doc/posix-functions/execv.texi: 
+  copyright: ''
+  hash: e883433082ab1ac2be9bdf46989b074da82660c56db5ea58500bc26598ac89f1
+  license: ''
+  license_text: ''
+./doc/posix-functions/execve.texi: 
+  copyright: ''
+  hash: 24209843e836bcdf1137fd665736c2818b4315e9b506a39bb714d91e998bafcd
+  license: ''
+  license_text: ''
+./doc/posix-functions/execvp.texi: 
+  copyright: ''
+  hash: 289494b8493d01c6d99eab7016f77c2ab1571db2ceee8a9b02c5c901d7a056fc
+  license: ''
+  license_text: ''
+./doc/posix-functions/exit.texi: 
+  copyright: ''
+  hash: bad61c12c0e3e5dfabfd90405e72e5dd828138ca2d2e5261ade25edfd7c97bc8
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp.texi: 
+  copyright: ''
+  hash: a1022846973af4a29037736d84104cc89ce1379a01df12b468890ef0474e0419
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp2.texi: 
+  copyright: ''
+  hash: 8c017fc45146c3df6aea1366497a258bc3a4db0644f0bef6bacda5f4e4833266
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp2f.texi: 
+  copyright: ''
+  hash: 6f2524530958b637f54013d885de946b49bc5b79b6d465436e1e03dcf1952f6c
+  license: ''
+  license_text: ''
+./doc/posix-functions/exp2l.texi: 
+  copyright: ''
+  hash: 7ef33c7a723390ab01411dcd5c5441a11362046a9e8b31ef68bbe4a4dc06a7a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/expf.texi: 
+  copyright: ''
+  hash: 0b478085209dd93a9db5bbce385735bd59753036228a6dc21cdc955d74d5fcd7
+  license: ''
+  license_text: ''
+./doc/posix-functions/expl.texi: 
+  copyright: ''
+  hash: 72311a84d89f58e68fbec7f6fc2c9b9920c27de99832dc73a3424377bf28db52
+  license: ''
+  license_text: ''
+./doc/posix-functions/expm1.texi: 
+  copyright: ''
+  hash: 0a4624e622e7d4e617219004a6095aaa748dd6ec2dcaaf7133518448b81be4a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/expm1f.texi: 
+  copyright: ''
+  hash: 6602aa751036b237ea9fc139d16405892a01d4d4738974a93671e2b24ece70a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/expm1l.texi: 
+  copyright: ''
+  hash: 0107f0369e91579efd87610be8b2b738b16b1b95378d3588ec286cde144d0c42
+  license: ''
+  license_text: ''
+./doc/posix-functions/fabs.texi: 
+  copyright: ''
+  hash: c612c588a2cfffd96be4f47419e7ef786861c356100cc27616f21cbe5723eccb
+  license: ''
+  license_text: ''
+./doc/posix-functions/fabsf.texi: 
+  copyright: ''
+  hash: ea51158ca0b73c832f1bcbede534dabd7771f99529353e24ca24569a90965703
+  license: ''
+  license_text: ''
+./doc/posix-functions/fabsl.texi: 
+  copyright: ''
+  hash: d651616c3fb582db805e35c045e9bb8d0f0529f3aef35e96ff269fff414acae7
+  license: ''
+  license_text: ''
+./doc/posix-functions/faccessat.texi: 
+  copyright: ''
+  hash: 0a8c43215d15ff69db0e57a500af9439c420b21c2ee4cc491931e601edb3f308
+  license: ''
+  license_text: ''
+./doc/posix-functions/fattach.texi: 
+  copyright: ''
+  hash: 2335deee0d43aa46c1c3503f7feae75c7c142c535296827a8e6e183b18a7e756
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchdir.texi: 
+  copyright: ''
+  hash: 8f0f8b4111a6a4dc2945e10940df05e54955ad67de944cb7c9fc3fd965ddcb61
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchmod.texi: 
+  copyright: ''
+  hash: 9bfcb2e4f0142676a15392cad61a13121966364ba601e3e45ba4df6a4fddb283
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchmodat.texi: 
+  copyright: ''
+  hash: 791d16ea744eadb81ceffa282aeedc529ee1432f726b782ba507c62a330259d1
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchown.texi: 
+  copyright: ''
+  hash: 3f8e50fb78c4ca01b3c9d74c32d562d9309038b0aaf2a7ee22ddea159be69c5b
+  license: ''
+  license_text: ''
+./doc/posix-functions/fchownat.texi: 
+  copyright: ''
+  hash: e17fc8eff75380638ff191900612065d2fc77e8926e59ca860c6faad743650ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/fclose.texi: 
+  copyright: ''
+  hash: b68bb8ad4e081e12205b3f7dcfa105c005cbe8fdb312880af5d87be355525e9f
+  license: ''
+  license_text: ''
+./doc/posix-functions/fcntl.texi: 
+  copyright: ''
+  hash: 17f3caf36d2c2f9a664acd0c737de34d5a64c6e6bdc186f325ca6867222adccf
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdatasync.texi: 
+  copyright: ''
+  hash: 57f7709061810bd5896998adeb9f3d2fe72380a7f2dc09bded617489700ef2f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdetach.texi: 
+  copyright: ''
+  hash: fd54a027b23acd7d79f8f796360b31949be6d6d99d77a21ee56cb0aefd2f4208
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdim.texi: 
+  copyright: ''
+  hash: 387bce6ebad92e5ef48ffe946c26a2a42310baa9c69a47d7ff020f61b698899a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdimf.texi: 
+  copyright: ''
+  hash: 04e0f917203a56effba8c34a4541f6bc2a107f6d09b70e51af95a6473320fa02
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdiml.texi: 
+  copyright: ''
+  hash: e4ab81e086d8a6b6633e26501eb964e8c5f9de428edd84b106ce690f7c8637c3
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdopen.texi: 
+  copyright: ''
+  hash: e763566373aec112a9e84b961c32faf690c517c3db12d6eb5a6f839f42b765d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/fdopendir.texi: 
+  copyright: ''
+  hash: 77c4e1f653c030b8389397c264b670095f530d9a4f131679c1db06dff8143cca
+  license: ''
+  license_text: ''
+./doc/posix-functions/feclearexcept.texi: 
+  copyright: ''
+  hash: b982ba6aeaedabf3354982f022c731c771f3cd82f055f6f59d666a8f1a57bcaf
+  license: ''
+  license_text: ''
+./doc/posix-functions/fegetenv.texi: 
+  copyright: ''
+  hash: 0899bacdfa0523a69893c4968ba4889363c79409c45e55c3ea8782351e3f9e16
+  license: ''
+  license_text: ''
+./doc/posix-functions/fegetexceptflag.texi: 
+  copyright: ''
+  hash: 34c0d1502982592c37c0e902a639dbc3ae01546f3c93ce70ca9f8c7d17e38156
+  license: ''
+  license_text: ''
+./doc/posix-functions/fegetround.texi: 
+  copyright: ''
+  hash: bcd175725d7173502ca62d3e7f40a23565add2e0d8a50f5e6b31d622a2f7c834
+  license: ''
+  license_text: ''
+./doc/posix-functions/feholdexcept.texi: 
+  copyright: ''
+  hash: 6a8976e6ff7285ec392afbd6d41c13756842fb99c799645ae85ce5c536aa1757
+  license: ''
+  license_text: ''
+./doc/posix-functions/feof.texi: 
+  copyright: ''
+  hash: 20663c1a2fa66678f13880eea8ab1c99980cdef004bdb5e2cb5f182a0654cbe1
+  license: ''
+  license_text: ''
+./doc/posix-functions/feraiseexcept.texi: 
+  copyright: ''
+  hash: 752c504ac8b81d058b11051349d0b2e4291fcc1c488ea6f29fdd111c97ce4ffb
+  license: ''
+  license_text: ''
+./doc/posix-functions/ferror.texi: 
+  copyright: ''
+  hash: 2cc317e89975e266a5d297a47d3cb2a9a147d5b82f9199535182f440b9008a81
+  license: ''
+  license_text: ''
+./doc/posix-functions/fesetenv.texi: 
+  copyright: ''
+  hash: 3d2f6a1d8b2e5939ba3ebdde32deb42cf59eb78c27ffbc6387f7c4e149d35097
+  license: ''
+  license_text: ''
+./doc/posix-functions/fesetexceptflag.texi: 
+  copyright: ''
+  hash: 97552023ee289a5ff8e84e60b3520a19fb0f9a4874de3c470657f10b0c6a8068
+  license: ''
+  license_text: ''
+./doc/posix-functions/fesetround.texi: 
+  copyright: ''
+  hash: 39499b13852e55ef8009ae3db5a7aebad2afc986a40f26b7c48c151b9e86fc24
+  license: ''
+  license_text: ''
+./doc/posix-functions/fetestexcept.texi: 
+  copyright: ''
+  hash: 4eac9c618c477726e112f8b26dbb7d2d4397be157969de91943c43742a390550
+  license: ''
+  license_text: ''
+./doc/posix-functions/feupdateenv.texi: 
+  copyright: ''
+  hash: 8b153cba36a94a6c2b66f6e421ecd4e2b9a46036392e2210785970e6ab34b8e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/fexecve.texi: 
+  copyright: ''
+  hash: df29f2ca7c01d154444462d530e082f939e3151a011ef347587deb8f25a3690d
+  license: ''
+  license_text: ''
+./doc/posix-functions/fflush.texi: 
+  copyright: ''
+  hash: 9bcd03018a5e64e321e5da36fc16b1ac1c3247e6e8ffda3d7339b1d1e9fe8294
+  license: ''
+  license_text: ''
+./doc/posix-functions/ffs.texi: 
+  copyright: ''
+  hash: 21aa35d4426a78734a84676cb0d454c75acee469c9ffd615a5fbb9de9daa1a42
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetc.texi: 
+  copyright: ''
+  hash: e7c425a41e66d08ffac2b8d0222bf45baf73e2f9459b8795691411c4b5357659
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetpos.texi: 
+  copyright: ''
+  hash: 275859ced43d62e5be3273f8c7c7fa9442de1b8d1287714892e23f0087f467f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgets.texi: 
+  copyright: ''
+  hash: 71414045cbbe67d9efb6b83bce606a8de25b97f9e08980d09d10444db31a02a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetwc.texi: 
+  copyright: ''
+  hash: a603a66a1e031dd3727b3b379a537e32014c54e932b01846b26200af8510ea94
+  license: ''
+  license_text: ''
+./doc/posix-functions/fgetws.texi: 
+  copyright: ''
+  hash: e396ca7cb9c9423e66bacf0c7e4aa69ff7b814a1bd5ebb0e6810220b55a68bb8
+  license: ''
+  license_text: ''
+./doc/posix-functions/fileno.texi: 
+  copyright: ''
+  hash: abc9e47b66277f9ba067894c61eef516a4cd6da18b0bd79671f5117ad7a9e37b
+  license: ''
+  license_text: ''
+./doc/posix-functions/flockfile.texi: 
+  copyright: ''
+  hash: ef8a277424e6a1aba4db3cfc8341fb0ce9acf254adb5691c66986e3462484cb4
+  license: ''
+  license_text: ''
+./doc/posix-functions/floor.texi: 
+  copyright: ''
+  hash: b07bf778811aac7f3e96a3af59c18dec2a8944c6a6b30082ff2eb0f6eebcd70d
+  license: ''
+  license_text: ''
+./doc/posix-functions/floorf.texi: 
+  copyright: ''
+  hash: ec2e982ab48eb54039f21f74d449bbd932bf6ce341f44ed67443841fafb99517
+  license: ''
+  license_text: ''
+./doc/posix-functions/floorl.texi: 
+  copyright: ''
+  hash: 4bd7c2e91d448d223f565886a273c53f07df96dce012d7afb8057de24dcbaf29
+  license: ''
+  license_text: ''
+./doc/posix-functions/fma.texi: 
+  copyright: ''
+  hash: e7afe0eb9016dee7ae95382952e183234e3d4e632950f62cde0cda8b3458feca
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmaf.texi: 
+  copyright: ''
+  hash: 92a275d7d2e32246725903039974adea241feae8587da17c6161230d307e4f8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmal.texi: 
+  copyright: ''
+  hash: d26907c96ceae9a7551c6a50ae32adddf5657735ec64d5ff3bc23301a1bc9440
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmax.texi: 
+  copyright: ''
+  hash: a45b7a4dd49c6ccb1d51374c51a37958f64f965be332e874b741671f00c6a2c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmaxf.texi: 
+  copyright: ''
+  hash: cc63ffb93e596bd2d86d82f3b3dd04626cc8683c8e919dc1f1868b6e8b549335
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmaxl.texi: 
+  copyright: ''
+  hash: f3a58f157499f078945af3bea4bdf315a104abb54df51e7b12dca522da70eba9
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmemopen.texi: 
+  copyright: ''
+  hash: 977725664c869f310611befaeafecddca0a4595deb9aa92b1e5edf38854a527d
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmin.texi: 
+  copyright: ''
+  hash: 00763f301200d7eac7d4ebc557feaf0901bc2efa0a1d7ed5b91dc3fa0edd8841
+  license: ''
+  license_text: ''
+./doc/posix-functions/fminf.texi: 
+  copyright: ''
+  hash: 3755886d1bb03aaec9755b2c34e4972ef0c8387c82b056d527b1afc61a5f0fb2
+  license: ''
+  license_text: ''
+./doc/posix-functions/fminl.texi: 
+  copyright: ''
+  hash: b5a0cc5a37fd46620b53cde5c2657ad4095f85f712ff3f0f414c4692a98489bf
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmod.texi: 
+  copyright: ''
+  hash: 5862ec5b61a832641dde66acb7eb859b7407994f7624cb83001e4e5411877b24
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmodf.texi: 
+  copyright: ''
+  hash: be9fb731e931317464eaadfa409ac9ba5fac8cf6f488f1dca04dfb25f4a87c9e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmodl.texi: 
+  copyright: ''
+  hash: da2bd3cfd9d33b8218d82300d5863a329002ab59ee62c591df043c7cbc3e2bf5
+  license: ''
+  license_text: ''
+./doc/posix-functions/fmtmsg.texi: 
+  copyright: ''
+  hash: cda2c53b8e96e2e813629d5a07ee3ec6bae5dae9835cd30bfb79b5a6cd9809ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/fnmatch.texi: 
+  copyright: ''
+  hash: 4be762a04e97a3e099e16422bcdf9db17a4385c25e71916c2dc8620cce12c689
+  license: ''
+  license_text: ''
+./doc/posix-functions/fopen.texi: 
+  copyright: ''
+  hash: cb37df82cdfc62d799a6208a0cb896815c99a21aa72e61ee66add9794bc0caef
+  license: ''
+  license_text: ''
+./doc/posix-functions/fork.texi: 
+  copyright: ''
+  hash: 47e401050fdd39055e37b7942ecf9e6acc2dd1b0ba893ca9efce7fbe07512f26
+  license: ''
+  license_text: ''
+./doc/posix-functions/fpathconf.texi: 
+  copyright: ''
+  hash: dc753382cbb40d381330cae488511d20499ac593648fdea05451978ec6236e18
+  license: ''
+  license_text: ''
+./doc/posix-functions/fpclassify.texi: 
+  copyright: ''
+  hash: 4f9658ae83ffe86a91686e050b951b3a779cff3a3d113b99a8d567580a71ce2e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fprintf.texi: 
+  copyright: ''
+  hash: b9f426d7699941849d81c004ea41301049efff02e408a1dab1b04c5a33c2e1f5
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputc.texi: 
+  copyright: ''
+  hash: b13cd308b550d7216762f444ad5ff6437fab475480073a7c372b42c0414e9568
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputs.texi: 
+  copyright: ''
+  hash: f443e76ec0801cf0481eb89de8e604d424c93acc535cceb7a11050b2d602d617
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputwc.texi: 
+  copyright: ''
+  hash: c69261284cad8a715adc606ac68ce522bfd1a94849d795d8289febf07cdad00e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fputws.texi: 
+  copyright: ''
+  hash: a0056c49a80a1aa877213437ddd4cb5955ac2c462fa78f053a4c3a6f3782d334
+  license: ''
+  license_text: ''
+./doc/posix-functions/fread.texi: 
+  copyright: ''
+  hash: 203ffb455bb4140455e841f5fae6f63fea6055043808d00adafcc88b630cb01f
+  license: ''
+  license_text: ''
+./doc/posix-functions/free.texi: 
+  copyright: ''
+  hash: 5d242e3032ca93238450312616b0835cee0d16bdd29424c0a5b8d9e265e306b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/freeaddrinfo.texi: 
+  copyright: ''
+  hash: 2a85ac5773ce37228a9b001b2f6102d2ccb5ee712dc6a104372a3caa7add64a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/freelocale.texi: 
+  copyright: ''
+  hash: 8776a23dd2eca0e57d0e59149570dc4afb924e23c11ae4ac4d8e9119ef78334a
+  license: ''
+  license_text: ''
+./doc/posix-functions/freopen.texi: 
+  copyright: ''
+  hash: c5b8bff1922535abcc1fec969516b476b349e17b5f65b47484da8bfe7f3f823c
+  license: ''
+  license_text: ''
+./doc/posix-functions/frexp.texi: 
+  copyright: ''
+  hash: 692f49020a87b80d1037790d020971803bc0afebe14c158150a4e52031487353
+  license: ''
+  license_text: ''
+./doc/posix-functions/frexpf.texi: 
+  copyright: ''
+  hash: 331ce16fc8e4dc1d4b90dd42bc5e7ccb13e6190ee4286fb3fe9e4b6e78dc5bd6
+  license: ''
+  license_text: ''
+./doc/posix-functions/frexpl.texi: 
+  copyright: ''
+  hash: 2b05d97865d15965f7eaaf726466ca7938f8aa8a4fb5c3074b88296c6175fd8e
+  license: ''
+  license_text: ''
+./doc/posix-functions/fscanf.texi: 
+  copyright: ''
+  hash: c6cbb6eb2da370d053d700306d3f3d2fced6edb533846ce87c3eecd9f5b64d05
+  license: ''
+  license_text: ''
+./doc/posix-functions/fseek.texi: 
+  copyright: ''
+  hash: 44d940d7b3f70696e57564a133ec06b608f75eb80f823893cc8d791cf20858f4
+  license: ''
+  license_text: ''
+./doc/posix-functions/fseeko.texi: 
+  copyright: ''
+  hash: fce7c54e29aecbe63e018aa87b29db3cdc06947fed30a56dfdbb75ecffccfd68
+  license: ''
+  license_text: ''
+./doc/posix-functions/fsetpos.texi: 
+  copyright: ''
+  hash: 406badc26cb637f4a19da664e003024401fc353dff4fd1b141a6d824183d2d7a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fstat.texi: 
+  copyright: ''
+  hash: 029d0fe3f92d95173e6f28cccdbe2fe0ea1ab1e62cda2da6da2602071242e5c3
+  license: ''
+  license_text: ''
+./doc/posix-functions/fstatat.texi: 
+  copyright: ''
+  hash: b452283c1ad4c7f6620b47e705c065d8ec9f7d7311e26521d50d978dde098b0c
+  license: ''
+  license_text: ''
+./doc/posix-functions/fstatvfs.texi: 
+  copyright: ''
+  hash: ea42e0f03ea940ad7488f661925d44bc715e874caff49d8cf4c755fb3afb9a0a
+  license: ''
+  license_text: ''
+./doc/posix-functions/fsync.texi: 
+  copyright: ''
+  hash: 8bf1bac4285f032b09e4f9c7087f3af31e559b5f52eca758141cbb391f5ac608
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftell.texi: 
+  copyright: ''
+  hash: 7a09c5de0c501bb7cdeb65cf20f5582009c8ff539b59a7c5fee036acd65c1a78
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftello.texi: 
+  copyright: ''
+  hash: 37cf02f3716a62b6bba4c06fcadb95b4edf7b6cc034cd29b5b4a9b90ae04ac54
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftok.texi: 
+  copyright: ''
+  hash: 9c0bb158262d297799d36d6d588c26e3e41b95226a77dd4cf11cd992e4a9a1e6
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftruncate.texi: 
+  copyright: ''
+  hash: f1e0566861d589db1bb60cda3d8b8317d1ff9520cc36f00549df03b3419b269e
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftrylockfile.texi: 
+  copyright: ''
+  hash: e43223544d05c58b1bead69da882754ab20a449b9b600200c4ea8709b16fa01f
+  license: ''
+  license_text: ''
+./doc/posix-functions/ftw.texi: 
+  copyright: ''
+  hash: e978b2519b0f3806a7dab0e5e344fe47bca8fc2f523fde61b4dde209495588b1
+  license: ''
+  license_text: ''
+./doc/posix-functions/funlockfile.texi: 
+  copyright: ''
+  hash: 8b38246093f70a1e9599e3b040144aae94cf838305b81707500c579661d7f5ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/futimens.texi: 
+  copyright: ''
+  hash: d1320304b274deef5c2d65cf3e1ffd0c50367a79176ef371756373ca29705fcb
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwide.texi: 
+  copyright: ''
+  hash: ad8af32a87ba8df0b7982ed23d296cf78858b76463e35ad868d09fcc6cdd6653
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwprintf.texi: 
+  copyright: ''
+  hash: 40435c2105f61e2dfae56b633e183a81a1d955f0d0d5e0a3cbfce5865fbaa133
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwrite.texi: 
+  copyright: ''
+  hash: 0bc2efa6c28e32fe14ef25c64543ad9693dbb01be6f3fc8a5086a76ae6ed95e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/fwscanf.texi: 
+  copyright: ''
+  hash: 0350aa62241649e46ebcc0a699ed578f770f8d8c4ab946f80522abc793281936
+  license: ''
+  license_text: ''
+./doc/posix-functions/gai_strerror.texi: 
+  copyright: ''
+  hash: 9fa1d09a15180298f0966016d7c07be6488b7d90ae0fabfb8bd7e41bc43f22d2
+  license: ''
+  license_text: ''
+./doc/posix-functions/getaddrinfo.texi: 
+  copyright: ''
+  hash: 14a705c905635f12d64464c1acf0d56577117e53d94fcb0d641b12f4913a4dfd
+  license: ''
+  license_text: ''
+./doc/posix-functions/getc.texi: 
+  copyright: ''
+  hash: 58714462b4f4187bd08744681c000e72e90a9431f84add6e9360050466fbbf17
+  license: ''
+  license_text: ''
+./doc/posix-functions/getc_unlocked.texi: 
+  copyright: ''
+  hash: 719010c698afd2db8d1b61b7885706a8940c7fc71fbd2a10a01468665a3ee895
+  license: ''
+  license_text: ''
+./doc/posix-functions/getchar.texi: 
+  copyright: ''
+  hash: 38cf4d3f15b593d55ec4c5968a96c38a6fbe440c9060e0ad506473175e94e95b
+  license: ''
+  license_text: ''
+./doc/posix-functions/getchar_unlocked.texi: 
+  copyright: ''
+  hash: be20adfbc37a9b00e3ff1dc74c54d3358c9fd38ac388e4818d22abcaecbd4ec7
+  license: ''
+  license_text: ''
+./doc/posix-functions/getcwd.texi: 
+  copyright: ''
+  hash: 17c216e7edd5cd839916fe367c97d27dd035e38e34a93c49bde48ea868c5296f
+  license: ''
+  license_text: ''
+./doc/posix-functions/getdate.texi: 
+  copyright: ''
+  hash: 79d3612b99d1e09b631440139db05273fe95959c259b5127693a9cb0223b3cee
+  license: ''
+  license_text: ''
+./doc/posix-functions/getdate_err.texi: 
+  copyright: ''
+  hash: f92239cab29da0644d61d19629631685b6abcbc7b621f1aba5179029e5a28f84
+  license: ''
+  license_text: ''
+./doc/posix-functions/getdelim.texi: 
+  copyright: ''
+  hash: efafb82e4876cff26df193267dcbd2a3a2f1f2fd97431a4ec5c761663a3886e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/getegid.texi: 
+  copyright: ''
+  hash: b5b2f176703267d09132755529f870787751c23195ef12e2c9971d9a9c838a6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/getenv.texi: 
+  copyright: ''
+  hash: 274cd2f5b8925d63386ac9c50ef8831a97f390e3e58e5977bf9785aae707cd97
+  license: ''
+  license_text: ''
+./doc/posix-functions/geteuid.texi: 
+  copyright: ''
+  hash: 5839ba963ace9183575af71a0ede6093646d1924b7d9e2db4fdebd83dbed9a0e
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgid.texi: 
+  copyright: ''
+  hash: 39a7aed4f6ecf6142c9c4c9f46a2d8a17a802609c2b75dc92ec40c30e196196b
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrent.texi: 
+  copyright: ''
+  hash: 0596e2089898956df5fd5cae81e2c3a8891e10e1746e9f13a3c8357d7c9edcb5
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrgid.texi: 
+  copyright: ''
+  hash: e90d86643f77ea14655319e842600c5f9de7a54494abce14088dd53ea2931a25
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrgid_r.texi: 
+  copyright: ''
+  hash: ae21c2ca2f91e6e4083483a87b4dc644e670c029cd4cc1f1e1b14c0a0e0adedf
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrnam.texi: 
+  copyright: ''
+  hash: 7e47a3eaa33be90ec41d4856255adb5c1434663e691c7362ce1297d74ff858d2
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgrnam_r.texi: 
+  copyright: ''
+  hash: 2e107e9b689d02131cfc4599989f420a227a95b4c35d4bca5774e73a2ff568e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/getgroups.texi: 
+  copyright: ''
+  hash: dc11c7f3733247e37a0bc53249ea948e76d259d158544b2a5a082a1d111129e0
+  license: ''
+  license_text: ''
+./doc/posix-functions/gethostent.texi: 
+  copyright: ''
+  hash: a1ddf37deaf3136d395c6e2fc6bc008837e691f6b6c615c6bfbac8c2316ceb5c
+  license: ''
+  license_text: ''
+./doc/posix-functions/gethostid.texi: 
+  copyright: ''
+  hash: 75b6790bd3fd3e7bb67cc34c87a613cc4bfa446ce4e2a43a11e9788c583ed63c
+  license: ''
+  license_text: ''
+./doc/posix-functions/gethostname.texi: 
+  copyright: ''
+  hash: 77e832d8786df64fef14857e4611bc7324c762142a78e5a347f789b35d563a1c
+  license: ''
+  license_text: ''
+./doc/posix-functions/getitimer.texi: 
+  copyright: ''
+  hash: 35af7f4dc16bc874c784085e9bed6ab3be4728a30937389be5aa1e3026ce4f47
+  license: ''
+  license_text: ''
+./doc/posix-functions/getline.texi: 
+  copyright: ''
+  hash: cc4e1cdd660ad29d4fdf61fef17a363fd2de9ca8f2f9864e8a11fb14978e6715
+  license: ''
+  license_text: ''
+./doc/posix-functions/getlogin.texi: 
+  copyright: ''
+  hash: 1dcdcd176e1153b391bee72702dd8c20b7e79e32970b1db82044598c636350f6
+  license: ''
+  license_text: ''
+./doc/posix-functions/getlogin_r.texi: 
+  copyright: ''
+  hash: 7ad532d82f0519617a84dc82bf028aa4181ba189dda51b3ac511ab5648042f8e
+  license: ''
+  license_text: ''
+./doc/posix-functions/getmsg.texi: 
+  copyright: ''
+  hash: e67c2c51ff394f18250f43089b89a0820105195fe338f2b68ca2448fde73a130
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnameinfo.texi: 
+  copyright: ''
+  hash: 7ce827533a3feb9e2f219bc867cb7dbf8f5d39dae596203b9425157ee79fa86c
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnetbyaddr.texi: 
+  copyright: ''
+  hash: 4e93c87df34262cc9fe05be16d01964a06924666bc4513614053d626ae6b5ff7
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnetbyname.texi: 
+  copyright: ''
+  hash: 52a931503da2c42cbd8f8be86549e2575e48ab5b65090fa85ec33f2910e00cb2
+  license: ''
+  license_text: ''
+./doc/posix-functions/getnetent.texi: 
+  copyright: ''
+  hash: b32da6dbd572fe5c7c653c8c600ebebe87b0f794b2758f02c7c175587c1b63ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/getopt.texi: 
+  copyright: ''
+  hash: af7f8ffb87a9e53611a6c79fa27787cb8686d2fad31f999c12e345d89db483ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpeername.texi: 
+  copyright: ''
+  hash: 3da780655ab68f30fec710038214a4e109ad4247a561349954bb1b0cfde8d117
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpgid.texi: 
+  copyright: ''
+  hash: 0b7b188ca82fc0428055b148ff19fcb11abe7c13f97b23f913ec4afeed84e3e3
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpgrp.texi: 
+  copyright: ''
+  hash: db8b430ed2f111ddbd6fe64c6fed03b269ab342d0242b27ab145239c9281296c
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpid.texi: 
+  copyright: ''
+  hash: ac1bc30305416ea508f16362ec87cbe917851fdd1a598a828e711ede91b2d825
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpmsg.texi: 
+  copyright: ''
+  hash: aa2a70e33feb57d1e999ef4b424ecd3c44e308fc2b6446eae7418d25a30bb2c5
+  license: ''
+  license_text: ''
+./doc/posix-functions/getppid.texi: 
+  copyright: ''
+  hash: 6d2bf74d0a29e047baeb1ef37707f41406274cc3f248d75e8dc46781a6b68f69
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpriority.texi: 
+  copyright: ''
+  hash: e9c531e0f622d4d952957f619ff81ce3d19931316589b633ff0b611f43fd2843
+  license: ''
+  license_text: ''
+./doc/posix-functions/getprotobyname.texi: 
+  copyright: ''
+  hash: 963e8861ff62a9d05859487128caa20536bb577825ce96399658e741f7be3193
+  license: ''
+  license_text: ''
+./doc/posix-functions/getprotobynumber.texi: 
+  copyright: ''
+  hash: e805cea0486255ad0074dde515a503115e33ed43868aecacfb1a0ac558cf8b98
+  license: ''
+  license_text: ''
+./doc/posix-functions/getprotoent.texi: 
+  copyright: ''
+  hash: 551ad27d45a3a2173629a313fa52369ff33c06beaec3bbc2377baf67b8bd6a63
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwent.texi: 
+  copyright: ''
+  hash: 68e520992b1a0489112d7282fd41decd194ca4fd35a4d9b802cc3c4f7668109d
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwnam.texi: 
+  copyright: ''
+  hash: 998a0dbf244f755876f23b998c559ba89e13530dd2773a04938a04b5b4f4ea58
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwnam_r.texi: 
+  copyright: ''
+  hash: 70f8d6647f1e66692bd073a00720fdd78908c840c5d79bfdc49a0f125598a275
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwuid.texi: 
+  copyright: ''
+  hash: e8fe050b21b5adc384e3955d5ffd092c6a04e7f31d5a9f4812d4d928483a13b4
+  license: ''
+  license_text: ''
+./doc/posix-functions/getpwuid_r.texi: 
+  copyright: ''
+  hash: d44ef7b94c25b62423eedbe94c7a59721af5023d7f9798dcb6f9bca0b3188b84
+  license: ''
+  license_text: ''
+./doc/posix-functions/getrlimit.texi: 
+  copyright: ''
+  hash: 1741e65462f624b55fa08f6c137d5fef0491b29550153ff7b2298da4af716d35
+  license: ''
+  license_text: ''
+./doc/posix-functions/getrusage.texi: 
+  copyright: ''
+  hash: c9eeb4d92f5a2e7811c9223fd928527c6a5417e8594cbd9ea14eeefede635a25
+  license: ''
+  license_text: ''
+./doc/posix-functions/gets.texi: 
+  copyright: ''
+  hash: 9acd238c8a9d2d9c4330c312cafbdcd705e2429713392b36d2ce7c289b4e53ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/getservbyname.texi: 
+  copyright: ''
+  hash: 3ecea5dc3404e1e38010cd73a8404324b1f9d1b54340701156549b8d5bfd01be
+  license: ''
+  license_text: ''
+./doc/posix-functions/getservbyport.texi: 
+  copyright: ''
+  hash: bcdebeab2eff4908ac4d0c1c82b94bf2d68700c98b4cd97a78214034f96b2ed3
+  license: ''
+  license_text: ''
+./doc/posix-functions/getservent.texi: 
+  copyright: ''
+  hash: c838d8a89540e74f6101898ed07696b8825936baf417b8f2832655d311f571b9
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsid.texi: 
+  copyright: ''
+  hash: 431bb53ecff71e3d8b417174c16796f529609cd3acb88ebc10eb477a349185bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsockname.texi: 
+  copyright: ''
+  hash: 31f2b7be44434718f4efc1d7b1eeab9bf763e3e363342fb0650f7dd2febe12b3
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsockopt.texi: 
+  copyright: ''
+  hash: af2dad761ea7f44bcf81197c78bf3fcfb362822bad6f0ece6311338d86e3af08
+  license: ''
+  license_text: ''
+./doc/posix-functions/getsubopt.texi: 
+  copyright: ''
+  hash: aa4a53d47e730a1f992d7f1aa922e1aa79be10c34bfb255f50c46bfcb2f31234
+  license: ''
+  license_text: ''
+./doc/posix-functions/gettimeofday.texi: 
+  copyright: ''
+  hash: 92a496410d954f2a49525954f98a8b06037522f580f6c0db5ade027332d23bde
+  license: ''
+  license_text: ''
+./doc/posix-functions/getuid.texi: 
+  copyright: ''
+  hash: 19539881b0771df459953a324b6b357f9054362136b7bf9e0dd8765b028602e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/getutxent.texi: 
+  copyright: ''
+  hash: 87341c2493c319192244895c4b3a8f0e235c13e0c6621010175a0c36db050f8b
+  license: ''
+  license_text: ''
+./doc/posix-functions/getutxid.texi: 
+  copyright: ''
+  hash: 0bbf1db488c0b8719e88a95cd605fa67768a93ef69ddd9169b67e61711ae1e9d
+  license: ''
+  license_text: ''
+./doc/posix-functions/getutxline.texi: 
+  copyright: ''
+  hash: d12b5dfe0bf0b375c1ca7848376ae825fc319ade3d15ad4eaef723461569e33a
+  license: ''
+  license_text: ''
+./doc/posix-functions/getwc.texi: 
+  copyright: ''
+  hash: 24a89fa271805bfe4e8cc573f5ca543254fe76dc9df6b5d9120d24be2e7e8409
+  license: ''
+  license_text: ''
+./doc/posix-functions/getwchar.texi: 
+  copyright: ''
+  hash: f75ad5d5c3cf53828966a82b52a7ef76b530dcdb646790e3e093dac8390a43f3
+  license: ''
+  license_text: ''
+./doc/posix-functions/glob.texi: 
+  copyright: ''
+  hash: 768db78c0332b8bc395ab0e47410eda2ecd7e7199d167bdda85c58ecc1aa45a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/globfree.texi: 
+  copyright: ''
+  hash: 377e052eed5cf3a7e869b6b866cfeac8cd5ee86bcbdb7a7e8917773dd9409ab8
+  license: ''
+  license_text: ''
+./doc/posix-functions/gmtime.texi: 
+  copyright: ''
+  hash: 9066a6d0b686e0fd9eaf52c3daccffe11d300f0093beec88c8dea2637d591a89
+  license: ''
+  license_text: ''
+./doc/posix-functions/gmtime_r.texi: 
+  copyright: ''
+  hash: d899d0d3944063104a3a87bec32233cf8c8c5c00340d8a31c276be78149609b2
+  license: ''
+  license_text: ''
+./doc/posix-functions/google-ranking.txt: 
+  copyright: ''
+  hash: 6669619e4c21ebf3f0f0cfa39caf63574d638db746cee3ab5241ae4e8ab02dff
+  license: ''
+  license_text: ''
+./doc/posix-functions/grantpt.texi: 
+  copyright: ''
+  hash: ebd0e873fe02818ecf4ed2990c273103a39ad0f2043ff06acc9e07254bcd44f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/hcreate.texi: 
+  copyright: ''
+  hash: 1f1de04c8b3137e208712afe58b67737a41e3c494046ea3632c2d6bebfdb5e08
+  license: ''
+  license_text: ''
+./doc/posix-functions/hdestroy.texi: 
+  copyright: ''
+  hash: 852046bda95f89dc1f65f887ebfcb271af87a79cfa85a2c30a2596dea55ffb6c
+  license: ''
+  license_text: ''
+./doc/posix-functions/hsearch.texi: 
+  copyright: ''
+  hash: 1c3dfdf5fd7c26d554eaa4394d12da4e71fb0ff8b6c6a7d956fbdf226e6db77c
+  license: ''
+  license_text: ''
+./doc/posix-functions/htonl.texi: 
+  copyright: ''
+  hash: 96da0ca2386362f2d4e4dd58a33905ddbd207738ec194c1f90078bb0176b923d
+  license: ''
+  license_text: ''
+./doc/posix-functions/htons.texi: 
+  copyright: ''
+  hash: 112e415883bc9b3912343a8c5535eab4ed1e5eb8e2a0cb6203b1b4c829c2ac10
+  license: ''
+  license_text: ''
+./doc/posix-functions/hypot.texi: 
+  copyright: ''
+  hash: 5916e7c5c00d00967198f74805aafa986ae5501cc50a0b6c535f859c4accae49
+  license: ''
+  license_text: ''
+./doc/posix-functions/hypotf.texi: 
+  copyright: ''
+  hash: dd7047f4fcc4c2890b72412ea78a97e134cb3d4b52b5eddb8523a2402c15fbd4
+  license: ''
+  license_text: ''
+./doc/posix-functions/hypotl.texi: 
+  copyright: ''
+  hash: f90a4791fa83d5bb2611a343ee4e76c4b640340bb22acf21f71a0d33ec9a80e0
+  license: ''
+  license_text: ''
+./doc/posix-functions/iconv.texi: 
+  copyright: ''
+  hash: f965f19658c91456314bbd0c675bd6052312f237295341335b35c38475791d91
+  license: ''
+  license_text: ''
+./doc/posix-functions/iconv_close.texi: 
+  copyright: ''
+  hash: 16082c1b0665d66075df97aca7dffc9193a3dd54469ce1e20fd61a7e65e01635
+  license: ''
+  license_text: ''
+./doc/posix-functions/iconv_open.texi: 
+  copyright: ''
+  hash: 49b9b82fed6c3b4bf87cd2443ef07037863a7832c4cb38eb16f75dd2c83a2826
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_freenameindex.texi: 
+  copyright: ''
+  hash: 3409250e6643d5a9d763dad8f6d778213c5262060d57245d9969168b5717c8ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_indextoname.texi: 
+  copyright: ''
+  hash: e0c658b26a0038f9e0d93a4e91f11249f2b4af91b6eea372a208a05cf161b2a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_nameindex.texi: 
+  copyright: ''
+  hash: efe0055691b143943238c3973ce7a34ab9e1512434fad06838d9cb1579027e7d
+  license: ''
+  license_text: ''
+./doc/posix-functions/if_nametoindex.texi: 
+  copyright: ''
+  hash: ae69d6500c998134e95d763fd4d4d4b74f3b9a32ae8320f90da673dddd7082e7
+  license: ''
+  license_text: ''
+./doc/posix-functions/ilogb.texi: 
+  copyright: ''
+  hash: 18dbb833f6c37415f3c211e4872a95fea279a0c41a745edc0581e9ccfaea9bf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/ilogbf.texi: 
+  copyright: ''
+  hash: 1c1c7486eb6998de905eda978324bfc91f9c1b8ba52fcdc6ce6b1d26f3aa0a14
+  license: ''
+  license_text: ''
+./doc/posix-functions/ilogbl.texi: 
+  copyright: ''
+  hash: 3b010d3a7060a6064b0717b3c0cb764eaab983dde75fe55e71e7775e15e72ede
+  license: ''
+  license_text: ''
+./doc/posix-functions/imaxabs.texi: 
+  copyright: ''
+  hash: 666ba73e5b2cde72e1e5b6bc0d407b8d52982031343e5627f4c7986c9f8ab588
+  license: ''
+  license_text: ''
+./doc/posix-functions/imaxdiv.texi: 
+  copyright: ''
+  hash: 138d9df51523cec7035dcf949fb2b46186fdbfc8e3f5d93e07abef452fe90ec4
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_addr.texi: 
+  copyright: ''
+  hash: 74b2fccbbd9d74392aa7fcb6c422f554038225e221802537f85556e3622f5b7a
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_ntoa.texi: 
+  copyright: ''
+  hash: 17301bd2cf66ebdfb65182b0dade44f1dae8345b2125ff8d9356dcf108d83fa4
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_ntop.texi: 
+  copyright: ''
+  hash: 2bfb9c3c48534a0ef693f09aa78498cebe4f1efdd5dc1287daffe91e312d3b46
+  license: ''
+  license_text: ''
+./doc/posix-functions/inet_pton.texi: 
+  copyright: ''
+  hash: 179d6b99ccbdec429d7b7be478695dc0d41e2340f79f6d9c5b5a693cba0489ed
+  license: ''
+  license_text: ''
+./doc/posix-functions/initstate.texi: 
+  copyright: ''
+  hash: ef35a8ba1f7a2c80bbc096e54a5309a312b91cc5cf46e6da71a3af2e92b733d5
+  license: ''
+  license_text: ''
+./doc/posix-functions/insque.texi: 
+  copyright: ''
+  hash: bd5c85638f4a8abfa676097f05367cf4a7a5c6df9e4814c7956a55497fd70cdd
+  license: ''
+  license_text: ''
+./doc/posix-functions/ioctl.texi: 
+  copyright: ''
+  hash: 0e9992e44abd4da7febddb076d29b2cbcd8d088f04d6a99e46d65446440a621c
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalnum.texi: 
+  copyright: ''
+  hash: 7e8f6f0e1c5391eeeee418d3daba0ca9a8f1acc734524864a393b569cb4d9e7e
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalnum_l.texi: 
+  copyright: ''
+  hash: 184b40cbdba1ef6f81331ed1f0dbb4e7bad0df440e0c8a0d7069ac1908d68897
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalpha.texi: 
+  copyright: ''
+  hash: 21bde3d1e2fd36e6b70354be9db9d5b7bf8e1f1d4288c356e93cec01c117bca6
+  license: ''
+  license_text: ''
+./doc/posix-functions/isalpha_l.texi: 
+  copyright: ''
+  hash: 891b0a65e8c759c81c621ba0197e0f95e55ca090eee63dcaccba5faa52ca9077
+  license: ''
+  license_text: ''
+./doc/posix-functions/isascii.texi: 
+  copyright: ''
+  hash: 556beb2df9bb209f85e402d40e0fe3811644560424c74fb2b3ef07a8dd6d705b
+  license: ''
+  license_text: ''
+./doc/posix-functions/isastream.texi: 
+  copyright: ''
+  hash: 9eeda95fb91e67be24bb2e4b8ebcb41758144638e315c9b8a38e5f24c9c464a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/isatty.texi: 
+  copyright: ''
+  hash: e2c2970db6e080721b6f59c180087535d30c7f0e6e49510851e8c56bbf62b571
+  license: ''
+  license_text: ''
+./doc/posix-functions/isblank.texi: 
+  copyright: ''
+  hash: 607aeac320bbcef0aff904e331fd9ba48021afb702586fadfb024e3c2399987a
+  license: ''
+  license_text: ''
+./doc/posix-functions/isblank_l.texi: 
+  copyright: ''
+  hash: 87c4aa73b132fb5e2406a64e6d5f4d9033fe4ccc616daf189d3d61ccaacaa732
+  license: ''
+  license_text: ''
+./doc/posix-functions/iscntrl.texi: 
+  copyright: ''
+  hash: 1bed23b3d80fa67f3d9c7863ae52969b33682335542e31bf5d3f1f2b64e25e09
+  license: ''
+  license_text: ''
+./doc/posix-functions/iscntrl_l.texi: 
+  copyright: ''
+  hash: b81253dfdbbc5302ec5dc376fb8351bff010960f66b6c07cf6c792dc6359808a
+  license: ''
+  license_text: ''
+./doc/posix-functions/isdigit.texi: 
+  copyright: ''
+  hash: a099acfd541a9eb34af0f26be1e535eb935149cd2a5947c165a62b70c9f185d4
+  license: ''
+  license_text: ''
+./doc/posix-functions/isdigit_l.texi: 
+  copyright: ''
+  hash: 1c50a0ff745432c67953ccf4c610ffac0bd4d4a3ee60e5dddb93be325738db84
+  license: ''
+  license_text: ''
+./doc/posix-functions/isfinite.texi: 
+  copyright: ''
+  hash: 8de73e1f76a93c11dd0144e087c5a5668d7a3356c4ad47b6a839386c6878abaa
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgraph.texi: 
+  copyright: ''
+  hash: c587baa5d3ff8f02b0d039fea812685da5bf8e75c7fcbc88f2814e62835758c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgraph_l.texi: 
+  copyright: ''
+  hash: 98888e1d5b988e61eaa41d7727524eaa67a1b20fc59aa4649d866b39630fb81a
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgreater.texi: 
+  copyright: ''
+  hash: d998c4e8134e688b0dbd93c7f31be3bee6fa1c6ac588447dbaf04296b983fb45
+  license: ''
+  license_text: ''
+./doc/posix-functions/isgreaterequal.texi: 
+  copyright: ''
+  hash: ab4e53e9c3972f5aed62439cc18f494263bb0f880ef864045d24d0f02eb635cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/isinf.texi: 
+  copyright: ''
+  hash: eba9361c1691fec1805dbb0caeef08b27f06567a49e51e510a778c2f95decf10
+  license: ''
+  license_text: ''
+./doc/posix-functions/isless.texi: 
+  copyright: ''
+  hash: dd004ed16bf5f26451a45799145ea12ee1a016fa0966fe3eb6290da0386db8eb
+  license: ''
+  license_text: ''
+./doc/posix-functions/islessequal.texi: 
+  copyright: ''
+  hash: 28e0f408e7dfce3c4fad65911c4558d2b2aa8aef2be00cf46c2bdae6383a8b1c
+  license: ''
+  license_text: ''
+./doc/posix-functions/islessgreater.texi: 
+  copyright: ''
+  hash: cd242279d55f7ff21ca138eb552ad88514e3806094a2158a4df3eac316e2c0cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/islower.texi: 
+  copyright: ''
+  hash: 71c3f0e0c264095972634ce0074fd2083e8b2174467f9d894e5f4519dbed4cc3
+  license: ''
+  license_text: ''
+./doc/posix-functions/islower_l.texi: 
+  copyright: ''
+  hash: 96fcedded01879c7734672f03889e128a2f1dbc5f405b10d13627fc4b2523144
+  license: ''
+  license_text: ''
+./doc/posix-functions/isnan.texi: 
+  copyright: ''
+  hash: 5214ffd8e70b47877e52ef9490a41b22c7ed2e3a6bc37c7782a4ca5c3ac07f11
+  license: ''
+  license_text: ''
+./doc/posix-functions/isnormal.texi: 
+  copyright: ''
+  hash: 2dd1a3add6afd000b680d1c31a781dc539c9658de7d445da59004bfd50e0783b
+  license: ''
+  license_text: ''
+./doc/posix-functions/isprint.texi: 
+  copyright: ''
+  hash: bf8d5e33042f9cf87ecd8cc480294ad8a7646150ad9ef130c8358c3eae863a90
+  license: ''
+  license_text: ''
+./doc/posix-functions/isprint_l.texi: 
+  copyright: ''
+  hash: 5cff105ffadf19f833473bbadfaaa615774fe044e725fa630923a66b3e7f8707
+  license: ''
+  license_text: ''
+./doc/posix-functions/ispunct.texi: 
+  copyright: ''
+  hash: 4fb607609ae1049ee43f812ba62fbb60c3272f24017331383aed15bafd786cd1
+  license: ''
+  license_text: ''
+./doc/posix-functions/ispunct_l.texi: 
+  copyright: ''
+  hash: 18d2164678e563017b26a85fb23ec4d064c90da5a3e714113416b8c634505f4d
+  license: ''
+  license_text: ''
+./doc/posix-functions/isspace.texi: 
+  copyright: ''
+  hash: dfdacdcbfce11be693ae3ba8a9a7a3b61ca4817c0ebba178e618b4a6afa7110c
+  license: ''
+  license_text: ''
+./doc/posix-functions/isspace_l.texi: 
+  copyright: ''
+  hash: 9a9cbcf45014b1475014e6893b767c3bc3b8a2535e835a56cd748ae79bb7c131
+  license: ''
+  license_text: ''
+./doc/posix-functions/isunordered.texi: 
+  copyright: ''
+  hash: 627509cf98ac3516674b3f4b12aca1ab39c75bf3356a60c72c724751dbe27bd4
+  license: ''
+  license_text: ''
+./doc/posix-functions/isupper.texi: 
+  copyright: ''
+  hash: e5ecf479da300eaedb8c203077aa16f133a0d8b46870bf7575460ae23aa0eb86
+  license: ''
+  license_text: ''
+./doc/posix-functions/isupper_l.texi: 
+  copyright: ''
+  hash: 84dd39b30cb42e91a2527f26e9c643b49582f593536ff106a61f4827186690b6
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalnum.texi: 
+  copyright: ''
+  hash: c88cc6395532271af8c31a1c5919f67010036b8dec37195a5de9c9e6fc4fe99a
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalnum_l.texi: 
+  copyright: ''
+  hash: c7b749280c0d42ff34ec793f356734be117a43ede8aab61c3eac40296b8a8359
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalpha.texi: 
+  copyright: ''
+  hash: b8a1133f56ec62b284a4d3b3779f7faa3a3e71a0882041311a4875fa886799ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswalpha_l.texi: 
+  copyright: ''
+  hash: e0a8c0ea63ecd10ff043c3b5bc68e731cb92ee02b8e1525a750ce6ca9b28712e
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswblank.texi: 
+  copyright: ''
+  hash: faf5a6047eaaa0b928dba0c8cfb5eb9a505c0e5bb25f687c7bf9a3563727d030
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswblank_l.texi: 
+  copyright: ''
+  hash: f8ab06e1ce64e0c1a05e484a4252a62ffe13629ac1abda44784530d4816cbdf7
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswcntrl.texi: 
+  copyright: ''
+  hash: e9ac01bd3a5328c6929e67d29991c8eabd27f30cefd73ba88b67f87383e0be83
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswcntrl_l.texi: 
+  copyright: ''
+  hash: 457ab57b3569fa9bd430130d48e2e2c8af2b63ba356bd0b53785e04957519624
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswctype.texi: 
+  copyright: ''
+  hash: ef1349d2e828e29feea41a7a9e7b876f1c93d47ec38be89d1529905da34176d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswctype_l.texi: 
+  copyright: ''
+  hash: c671724332e6cc92a3c3f170c366ec38aeefab3906b3e85e0d8f2b19e536dfac
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswdigit.texi: 
+  copyright: ''
+  hash: 0e822111a3da05620947869ae4f3b596526ba2375fc5f56696a7e7a1561ac12e
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswdigit_l.texi: 
+  copyright: ''
+  hash: 22f6b5c90a47f37efe4ba4db24bed97cae416e8e0c8f6933a1d288bcb1ca185d
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswgraph.texi: 
+  copyright: ''
+  hash: 896e84f517e4788236750a0615c2133f547aeba276f20c53c87c42d9c53dc4c8
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswgraph_l.texi: 
+  copyright: ''
+  hash: 10aee45c72cc14f9a99bec78b29aa44fe09e9c54a545008cc4b19baa4dec61a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswlower.texi: 
+  copyright: ''
+  hash: 1a9d7fa78a4d5d99b5fbff24e4e93ead4ecacf42a38182cdfd6fb45136f6e28d
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswlower_l.texi: 
+  copyright: ''
+  hash: 25b3f6605949010e6e24d0c2e1f7b3510e17cfd8745092c6def04ae7dc005143
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswprint.texi: 
+  copyright: ''
+  hash: 5e205ee334496a2f8d2c4d3aaf02ed2c1e8bc2afcf953ccfdc8615e0bb390b4a
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswprint_l.texi: 
+  copyright: ''
+  hash: 67681be4a107eb027c4062ff76d698c22b4ce822bd002dfa7a17b1493d54f45e
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswpunct.texi: 
+  copyright: ''
+  hash: d73020eb450cf8316c2be7df99c089c6fe0034ef0600f050d907760b2e6ff366
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswpunct_l.texi: 
+  copyright: ''
+  hash: 5e322758293c6c526a9eeb5a1b026d42b7faf671accd5638f9df410a04689eea
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswspace.texi: 
+  copyright: ''
+  hash: c67ec587b829ddefc9f19782b9e1029ecdc6ab6c00583aff4ccaf07e51564193
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswspace_l.texi: 
+  copyright: ''
+  hash: 0f4b7e4d958774500fae6e07482d9e57bd0da51d009cd74ccbd706e78ba58b08
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswupper.texi: 
+  copyright: ''
+  hash: 528d4efc9e63b92cc7d1d0c7e31b7c77e67763927eeb07b4788aecb640c11719
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswupper_l.texi: 
+  copyright: ''
+  hash: 6e31fe14738f6db822099564d598cf2f05446f077266420bf4d7422ef633ab38
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswxdigit.texi: 
+  copyright: ''
+  hash: 3526ec49ca1bd1d095e59320f1a32b5a218365abdedc5b43651cdb1be31176fe
+  license: ''
+  license_text: ''
+./doc/posix-functions/iswxdigit_l.texi: 
+  copyright: ''
+  hash: 9936301340cebe26c7bcd05652078bb16be4607552be00033b001521ab9d41a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/isxdigit.texi: 
+  copyright: ''
+  hash: 52cb4c1aa9423d60ea39014291385b09505d50690e931fec03fdf135080b1bdc
+  license: ''
+  license_text: ''
+./doc/posix-functions/isxdigit_l.texi: 
+  copyright: ''
+  hash: d2ad8a517fc760eb3955762719d2090c1f9c1decfdc2887089f7eb266851562a
+  license: ''
+  license_text: ''
+./doc/posix-functions/j0.texi: 
+  copyright: ''
+  hash: 92c5c4686c56a6222dc04a17a722b38fcb07bfadefa01ec42f495d70a4d704ce
+  license: ''
+  license_text: ''
+./doc/posix-functions/j1.texi: 
+  copyright: ''
+  hash: bca6d61fb0a24dad8de3b48af62434780af39426be5adfa93dc9957532493814
+  license: ''
+  license_text: ''
+./doc/posix-functions/jn.texi: 
+  copyright: ''
+  hash: 5b29066ceb64fe7ad17eb38d78939fc0e5f67fb7b89c71269a590db08bf9bd26
+  license: ''
+  license_text: ''
+./doc/posix-functions/jrand48.texi: 
+  copyright: ''
+  hash: 5eccfdaf1fb9d042601589acec674823d983cebc21a085b5c12bb7119ed3040d
+  license: ''
+  license_text: ''
+./doc/posix-functions/kill.texi: 
+  copyright: ''
+  hash: 11e385ab05f5ce42cb6247de6ee659925b11ecc4aae8abd33e1c2c674a40fdf4
+  license: ''
+  license_text: ''
+./doc/posix-functions/killpg.texi: 
+  copyright: ''
+  hash: 22626f2cc60de026029ba237c7c48240d598b37acbd580a1b71c3c5928b73aab
+  license: ''
+  license_text: ''
+./doc/posix-functions/l64a.texi: 
+  copyright: ''
+  hash: 3a5a8f79a5d9f35a37ef6d7a789b7b472f3216854a7fcb47020cf74971354cb3
+  license: ''
+  license_text: ''
+./doc/posix-functions/labs.texi: 
+  copyright: ''
+  hash: c5d6a703807a85238752dd8f84cbce03bcd5814315c8604e89065b8a9f29f77a
+  license: ''
+  license_text: ''
+./doc/posix-functions/lchown.texi: 
+  copyright: ''
+  hash: 2a095b0a88ad06a14515b1dbde6ec7043620d305fc7b453723867cdf5ed0cb1f
+  license: ''
+  license_text: ''
+./doc/posix-functions/lcong48.texi: 
+  copyright: ''
+  hash: 88459cb0ea9ae0af730dd212d7fc277aea0a7c769e94d2f6b79199ce12b2a512
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldexp.texi: 
+  copyright: ''
+  hash: d8b30651c56cc57e6184976bcd3f5cdc4337432a710df366e0f95f5859ba6449
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldexpf.texi: 
+  copyright: ''
+  hash: d00bcb96e34e28360e66b5c978e0f9c1bb5b3bdb899b81fe0b02631ba7e84d4d
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldexpl.texi: 
+  copyright: ''
+  hash: 829ada339592493a785909dc30d169fbeb9dc8ac27f6bf686b8ebe09d785dbba
+  license: ''
+  license_text: ''
+./doc/posix-functions/ldiv.texi: 
+  copyright: ''
+  hash: d0888e9dfe273c20f6b12c927742f3d6638da50b661f54f0ecc3a1d496153711
+  license: ''
+  license_text: ''
+./doc/posix-functions/lfind.texi: 
+  copyright: ''
+  hash: a9ab017bcc9e5a9fcabf969e05e09ca84876c73534d89e870d8a1f3d903f3f98
+  license: ''
+  license_text: ''
+./doc/posix-functions/lgamma.texi: 
+  copyright: ''
+  hash: 470520a61a348188fbde1ddb355db3ec98317bbbd5a4bbef6235b7529dc8fa2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/lgammaf.texi: 
+  copyright: ''
+  hash: 3340ca1262b620b9ed75884a30a81db4835f22d9c860f0fdfbd49037ce37e709
+  license: ''
+  license_text: ''
+./doc/posix-functions/lgammal.texi: 
+  copyright: ''
+  hash: 5e5d8253d524d33f78063e3e074de5de4790d5287281de939f9ada54a6705852
+  license: ''
+  license_text: ''
+./doc/posix-functions/link.texi: 
+  copyright: ''
+  hash: 721fb6b25032be524f91ee20555d327e72ab7483675467a12a62292b15936298
+  license: ''
+  license_text: ''
+./doc/posix-functions/linkat.texi: 
+  copyright: ''
+  hash: ce3f61559a6101fa604cccc0a81fbe487ceb354cf4adb09a34aa00f85e7fc351
+  license: ''
+  license_text: ''
+./doc/posix-functions/lio_listio.texi: 
+  copyright: ''
+  hash: c1d08fd64ff293ccace2ccce4dfb34ec109f7090f89c52f2cb06db5c54a8cffa
+  license: ''
+  license_text: ''
+./doc/posix-functions/listen.texi: 
+  copyright: ''
+  hash: 03a2a6206b0bfcb7a04ed70467f6c79be8290cffa99530b8a9e039d33dbdd79f
+  license: ''
+  license_text: ''
+./doc/posix-functions/llabs.texi: 
+  copyright: ''
+  hash: 5704f5b51267973492147aeb77944c9ad0933fc1384a10a423b46df15b4901b5
+  license: ''
+  license_text: ''
+./doc/posix-functions/lldiv.texi: 
+  copyright: ''
+  hash: ee22224d40c7a02e5745932772fee532f233469cdfb89c246432ef992ebac66a
+  license: ''
+  license_text: ''
+./doc/posix-functions/llrint.texi: 
+  copyright: ''
+  hash: 3f862bfbf3caf84d717ca4155ee2f2ada393f410182a60fc56366f4925537dfd
+  license: ''
+  license_text: ''
+./doc/posix-functions/llrintf.texi: 
+  copyright: ''
+  hash: 83247aede57c3ef038725aecc9f342683fc1b1cfdb67b650ceace4bb856a26dd
+  license: ''
+  license_text: ''
+./doc/posix-functions/llrintl.texi: 
+  copyright: ''
+  hash: ab3eeef6cd1c1dc19abc2a4f396784418136ff2da2b0a6e6cd91e9d7b64d5b9f
+  license: ''
+  license_text: ''
+./doc/posix-functions/llround.texi: 
+  copyright: ''
+  hash: c748140ca47bdf7b93d2ddb245999ef7671f9e6329ae7386dd7aa9bdc0c0c61d
+  license: ''
+  license_text: ''
+./doc/posix-functions/llroundf.texi: 
+  copyright: ''
+  hash: a974d182d48cf3f4f1387914256124829fc72ced4b4f0e241a1d298a1e6ab17c
+  license: ''
+  license_text: ''
+./doc/posix-functions/llroundl.texi: 
+  copyright: ''
+  hash: 16c0786bf5b7bd64b25182d4c35925082061e14e27ab40c6203d0f5f7838d6cb
+  license: ''
+  license_text: ''
+./doc/posix-functions/localeconv.texi: 
+  copyright: ''
+  hash: d9b5bac65cb3629c70d7c2bbc8423d1181dd32c3fd8e7a9c3db48a7fc5f2e884
+  license: ''
+  license_text: ''
+./doc/posix-functions/localtime.texi: 
+  copyright: ''
+  hash: f55efabe8a9cc3efe0e97ec9cc7abd10fdd6b44ce79eabb8ba9494a170c44414
+  license: ''
+  license_text: ''
+./doc/posix-functions/localtime_r.texi: 
+  copyright: ''
+  hash: 18eff3ee8b506b64c19546e4585097687ef46c56cf3023f29bbb7c36549bc668
+  license: ''
+  license_text: ''
+./doc/posix-functions/lockf.texi: 
+  copyright: ''
+  hash: c7357159d3ec65d81d8ae3ae09048741deb17c3d24105341bb844ae4d6c68f75
+  license: ''
+  license_text: ''
+./doc/posix-functions/log.texi: 
+  copyright: ''
+  hash: be6326972647fb62ffadb5a669d7d58dde061bc0c584cdd502e09f1b939d4926
+  license: ''
+  license_text: ''
+./doc/posix-functions/log10.texi: 
+  copyright: ''
+  hash: 4bf234e16cce10eb06a07bc2c0c01211e19431dd14e99f073621a87a4c1fb68f
+  license: ''
+  license_text: ''
+./doc/posix-functions/log10f.texi: 
+  copyright: ''
+  hash: 811604f34b79d58d4d2b00f03dec4623e329696cae765555f7a016594f0310e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/log10l.texi: 
+  copyright: ''
+  hash: e985c831bb6f56ba639b385c95b36fbff47864717facca550c8cac55e5055b21
+  license: ''
+  license_text: ''
+./doc/posix-functions/log1p.texi: 
+  copyright: ''
+  hash: 499f997d56262cd2f6418e1ec7e697e73874bf8fa3bf66d94d569994cc040c7f
+  license: ''
+  license_text: ''
+./doc/posix-functions/log1pf.texi: 
+  copyright: ''
+  hash: 850d0d4573c9bf0ffb16b33e910d10c99a45e0cd8d0eac98494724760c777cd2
+  license: ''
+  license_text: ''
+./doc/posix-functions/log1pl.texi: 
+  copyright: ''
+  hash: 6920d505b2ccd43777218043d90d6c4410d8c87997dd73b2f249bc2360d67582
+  license: ''
+  license_text: ''
+./doc/posix-functions/log2.texi: 
+  copyright: ''
+  hash: 72c0f561bdbe81af893f8e873ebd4dbe806bad530db44f519b19409199082887
+  license: ''
+  license_text: ''
+./doc/posix-functions/log2f.texi: 
+  copyright: ''
+  hash: 109ae05a1b36fa1174a4d4407fa99b2c5eaae2e7b9e30f59e3faab1178d9e85f
+  license: ''
+  license_text: ''
+./doc/posix-functions/log2l.texi: 
+  copyright: ''
+  hash: 98e4205ef799d4c24375f28e935eff27ccd0d67d86bd6779b8405677d11f0523
+  license: ''
+  license_text: ''
+./doc/posix-functions/logb.texi: 
+  copyright: ''
+  hash: 6d395e4ef941920f778506ad202ac5dcb235ae030c9ccfe916329e49a63c7b71
+  license: ''
+  license_text: ''
+./doc/posix-functions/logbf.texi: 
+  copyright: ''
+  hash: c732075e88b1628ef63b9205c9def17bcaf758d1e0c35992a2fafc3d2528655f
+  license: ''
+  license_text: ''
+./doc/posix-functions/logbl.texi: 
+  copyright: ''
+  hash: fca1988f0cb72ad80a0962568a412de015cffb28a4cbbb9a1a81db50e29f47c2
+  license: ''
+  license_text: ''
+./doc/posix-functions/logf.texi: 
+  copyright: ''
+  hash: 599a740ebf9dc12b8baa17e0e18aa126df9b8bc2ac51aa7c7a556693ceb61af2
+  license: ''
+  license_text: ''
+./doc/posix-functions/logl.texi: 
+  copyright: ''
+  hash: 96139ba06494cf8c9fdb20a21e11fe8877bb1c22c528f5f8fafc57131b5be12b
+  license: ''
+  license_text: ''
+./doc/posix-functions/longjmp.texi: 
+  copyright: ''
+  hash: 8037266751fc7a136b74fc698dde403a0fa71c5aaf9c84d2f4e0ae27994fd458
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrand48.texi: 
+  copyright: ''
+  hash: 869c04b348c9b6123c213743a00e56a0f3c5b4140dd0c88b90af0677a594a7ac
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrint.texi: 
+  copyright: ''
+  hash: 5e8f49fd176642d39b75ce85fa4883dd177ae6365bb3f7bc01d1adfe57137f05
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrintf.texi: 
+  copyright: ''
+  hash: 08dafff5e7cdc373b185b07d2e59e50c6c21f34bba5297e4622267f3e5ba81bf
+  license: ''
+  license_text: ''
+./doc/posix-functions/lrintl.texi: 
+  copyright: ''
+  hash: b6b93015a9cd70a2b2a2d7f4f6c4e03b259a83dfb0e4850be2dbc5125557a3a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/lround.texi: 
+  copyright: ''
+  hash: 7ce7fba4c411195fb1fd21ceab0c0087af9f72fa0c8582ecf336f7e485e1d50f
+  license: ''
+  license_text: ''
+./doc/posix-functions/lroundf.texi: 
+  copyright: ''
+  hash: d2fd89e04139885ec3fe722000f941fae649dc9a7e37e9e57651994f02c20e9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/lroundl.texi: 
+  copyright: ''
+  hash: 921cf7eb1bc71b4502501b3ce8d15cdf97000bd44378a8c58f624e8b89f6d528
+  license: ''
+  license_text: ''
+./doc/posix-functions/lsearch.texi: 
+  copyright: ''
+  hash: 37eec18ff286f167792759b48ba4225deeb6aa273436f0b3dbbe0bdd23c4f2c6
+  license: ''
+  license_text: ''
+./doc/posix-functions/lseek.texi: 
+  copyright: ''
+  hash: 51e17228d34badd1144f78cdd1d398bd81f85ac3231f9ce3c1158f58e2cd98ad
+  license: ''
+  license_text: ''
+./doc/posix-functions/lstat.texi: 
+  copyright: ''
+  hash: ee413eccd9b78bf14988721a2eeb3e0ef1a0f352a9381743add4a0fde7d15484
+  license: ''
+  license_text: ''
+./doc/posix-functions/malloc.texi: 
+  copyright: ''
+  hash: e78d7433731db2f25215c9b85d86bab4074a9386c851e3e7652b3a773f9ffa4c
+  license: ''
+  license_text: ''
+./doc/posix-functions/mblen.texi: 
+  copyright: ''
+  hash: 6d48d1ed4b248c087c438895fc11497d19518e31fd66e3b62dfb31a82725fba4
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbrlen.texi: 
+  copyright: ''
+  hash: 0ad799fbab5e5ba27244d58a868783bef00fefc119f78dc1e60bbd4798d4f51e
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbrtowc.texi: 
+  copyright: ''
+  hash: 520568480543ec68eb430ac4973176f6b1b2d43c0e6e4d45ba73aef60a87eee5
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbsinit.texi: 
+  copyright: ''
+  hash: 5df56fe636ad7622c7d031432f90eb3e4538ae9741ef0dae2b26dce74bf28c6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbsnrtowcs.texi: 
+  copyright: ''
+  hash: 1e379a2b7e5692fee1cf2caa04b0f12222eb783c0aacffee63560278e24e6ecc
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbsrtowcs.texi: 
+  copyright: ''
+  hash: 45316856d475ec5e2b93376b87b78c48f7f8d80439cd569005b87b8ae1d7f903
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbstowcs.texi: 
+  copyright: ''
+  hash: 0ce649672c4e398cd8cf49a87e9b998673d368e3f9cccb224a05f172ce73e065
+  license: ''
+  license_text: ''
+./doc/posix-functions/mbtowc.texi: 
+  copyright: ''
+  hash: 715f7f61b6dea73f4e6db5662d9eb0d7117bf43a6e82afd979f2992d992de84d
+  license: ''
+  license_text: ''
+./doc/posix-functions/memccpy.texi: 
+  copyright: ''
+  hash: a6d645adccd00addeee11377bd0d94a9a49c5abc74697957704ef86ef88d7ecb
+  license: ''
+  license_text: ''
+./doc/posix-functions/memchr.texi: 
+  copyright: ''
+  hash: 3548b31bdafed633760e3d40a863cfb4b7eb601216d255a29de29bb5f7088f9e
+  license: ''
+  license_text: ''
+./doc/posix-functions/memcmp.texi: 
+  copyright: ''
+  hash: fb3797a49dc2164707d9ba379894b5b1e34d43b30e554e4bc3782e4509001f2f
+  license: ''
+  license_text: ''
+./doc/posix-functions/memcpy.texi: 
+  copyright: ''
+  hash: 271f9b21c10b20785135079403e037a4f52ad844b7602913211ff63f94564bcb
+  license: ''
+  license_text: ''
+./doc/posix-functions/memmove.texi: 
+  copyright: ''
+  hash: 0f200deaacb14c33d323ffa83873f3b54922ae9f6c0306fe66c0516671387261
+  license: ''
+  license_text: ''
+./doc/posix-functions/memset.texi: 
+  copyright: ''
+  hash: 493093091c332e7fc5a23362e072380e883d206806a2326770839b8e60f0d3ca
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkdir.texi: 
+  copyright: ''
+  hash: 93475369c168cbc0c38f7b20835aee152d2ae281996e0d345aac4cbfa7abc331
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkdirat.texi: 
+  copyright: ''
+  hash: 55a0d02781ba86cb46e9723bea32885e1790894fa991dc3c01e6506e5fae2f81
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkdtemp.texi: 
+  copyright: ''
+  hash: 58eea11250f1276e5fd5c59cc33e1addcc62f6cd091dd15a83e428be08f7b252
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkfifo.texi: 
+  copyright: ''
+  hash: 39b9fab073e009e8b6a169b2190d5572e513385c694e327e70bcf1db6a159b35
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkfifoat.texi: 
+  copyright: ''
+  hash: 205800e3bc3436f4b16ce670afff063c55a0da3a798b107e364045fa4a967ed5
+  license: ''
+  license_text: ''
+./doc/posix-functions/mknod.texi: 
+  copyright: ''
+  hash: 3f6809f0a4fa73e85bc918802a632cd0192c1c5c2801cd7eaa1b2824469fd3a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/mknodat.texi: 
+  copyright: ''
+  hash: 8e780cc65b29f438053a6cb070c21ca28168dc988f47fb72e9f3810c721768d8
+  license: ''
+  license_text: ''
+./doc/posix-functions/mkstemp.texi: 
+  copyright: ''
+  hash: 854e7e497a0388612e8d2d0c212c25f4fd94333ba825e1b9df90b94bbbff394a
+  license: ''
+  license_text: ''
+./doc/posix-functions/mktime.texi: 
+  copyright: ''
+  hash: 9948a151a3eb7c4b07a411a58f1bc5da74bdf24f291daae2f1262a0fdd044804
+  license: ''
+  license_text: ''
+./doc/posix-functions/mlock.texi: 
+  copyright: ''
+  hash: 3ddcd068484f0953b2b2583b4036fdd4d6ecb22893c51cacbb61a36f1493c6bc
+  license: ''
+  license_text: ''
+./doc/posix-functions/mlockall.texi: 
+  copyright: ''
+  hash: 2d15848617dd2c8c5b5d582ba37f8def1777193fefd8f521f1e8583682c62a21
+  license: ''
+  license_text: ''
+./doc/posix-functions/mmap.texi: 
+  copyright: ''
+  hash: bfee4ecb3ebec6d283db88b6cd390ef0301ce7a0937a80d25529c74f0b8f569e
+  license: ''
+  license_text: ''
+./doc/posix-functions/modf.texi: 
+  copyright: ''
+  hash: 36b354917e56d61e5900a08fab91604eaa9cc08e2d86e46267f8d898c818bf40
+  license: ''
+  license_text: ''
+./doc/posix-functions/modff.texi: 
+  copyright: ''
+  hash: f7b8c38291b91e6ad35e04c0ebfb9097945ce77ebda26a3c990bf2fe1aaea28a
+  license: ''
+  license_text: ''
+./doc/posix-functions/modfl.texi: 
+  copyright: ''
+  hash: 3b679719015e572d20de79124954057ab191f83370ed03edd791b794cfe6bc43
+  license: ''
+  license_text: ''
+./doc/posix-functions/mprotect.texi: 
+  copyright: ''
+  hash: 3d0e06eb9e85ed18105ac9c8f7ad12a98e74b8b3a67de5e954dc6154290cb58c
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_close.texi: 
+  copyright: ''
+  hash: a56bfb44d12f03e97f995b9a9c1633b24f89498f43ebbc542b4d352b1778cd08
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_getattr.texi: 
+  copyright: ''
+  hash: 8ac60fce24f63e597e3177997e50fb60bcc5fb27a291934c400a0648f9326552
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_notify.texi: 
+  copyright: ''
+  hash: e0ba4512bebe0e27c550f7b746e54cb1925f3b3db361afaa8f4ee31a7e528710
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_open.texi: 
+  copyright: ''
+  hash: 8849def00e0a469a4c36a935d2a9edacc7a8fca13afc8d0b189b1ab3a8c4a263
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_receive.texi: 
+  copyright: ''
+  hash: 41a216e485977c77bc0469b7caca4239d7b859ee983130f7cbb60df8b0c743e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_send.texi: 
+  copyright: ''
+  hash: 034db31411edca3bd8d9aa67b8dcebc8bda230d3dfe632da530c17bd4c4544d4
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_setattr.texi: 
+  copyright: ''
+  hash: e5a4f564cc977a25d0ee56ff5129950ab519621fa7e8161649ef772f72159396
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_timedreceive.texi: 
+  copyright: ''
+  hash: 8d49fce0e031fc61180b5352a420b1fe8ba491b8ecf4ccba972e3e9ebd6e7631
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_timedsend.texi: 
+  copyright: ''
+  hash: a79f94772aefae158a027486aea868c68d2fe9e08eaf409ec3540d187dc16f00
+  license: ''
+  license_text: ''
+./doc/posix-functions/mq_unlink.texi: 
+  copyright: ''
+  hash: 7b5dab50039e7c0b0f3170569e637158b1c1bf41c38e13d14986cea14f56c25d
+  license: ''
+  license_text: ''
+./doc/posix-functions/mrand48.texi: 
+  copyright: ''
+  hash: 77b10e37a5687d7495e536135140dd9e074b12afc20f2d3e3dd07073057b8972
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgctl.texi: 
+  copyright: ''
+  hash: 46d3ee99b2282ef2910c1b2592050c0cf79178bff7eae0c92ca2ac2f7336b2a3
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgget.texi: 
+  copyright: ''
+  hash: 58fc127eae240377ef7505629f2570cf4e3276d5d301994fcb171e5d6b367ffc
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgrcv.texi: 
+  copyright: ''
+  hash: 88bf2464eb8f30cbb7678eb5f8582cf8d2c4644bc486f30146d77d2064e10c7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/msgsnd.texi: 
+  copyright: ''
+  hash: 9f75f5e72c64235284ea705f9b5fe2e6f9aea288231af9bc5dfaf7f66a26fa7f
+  license: ''
+  license_text: ''
+./doc/posix-functions/msync.texi: 
+  copyright: ''
+  hash: ff9ca91d2e004f54a4b0ef17bb84d7b272507c512312101dae3bd3af1be33e90
+  license: ''
+  license_text: ''
+./doc/posix-functions/munlock.texi: 
+  copyright: ''
+  hash: f441bed9fcbcb0651991726777c715db07ca4847e81820ede03031a157d97c9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/munlockall.texi: 
+  copyright: ''
+  hash: 550be841155556e1b32abab434902c90652e6a481f0e539fa6ad9f0342967900
+  license: ''
+  license_text: ''
+./doc/posix-functions/munmap.texi: 
+  copyright: ''
+  hash: 47168b653c372c13df047fa6fdb676f3064d2f2a0968c7e9dcd0383d16134841
+  license: ''
+  license_text: ''
+./doc/posix-functions/nan.texi: 
+  copyright: ''
+  hash: 0a369ac906fcd75126107c5a2079e19d39ac77c16fff7959d1283f3692f2d6c9
+  license: ''
+  license_text: ''
+./doc/posix-functions/nanf.texi: 
+  copyright: ''
+  hash: ddff9bef8fbddbb5702b052b2591f73ae516edafe27040fe81d4abbdbc0d2dd8
+  license: ''
+  license_text: ''
+./doc/posix-functions/nanl.texi: 
+  copyright: ''
+  hash: 55f965fb9e233ea8afdd9b3ef17ce5d14877c6ac793e0c9e8b160ac423075509
+  license: ''
+  license_text: ''
+./doc/posix-functions/nanosleep.texi: 
+  copyright: ''
+  hash: 74dbeddd80b4214c4974b632dae914216068c850827943c4904342e11ef8a2a6
+  license: ''
+  license_text: ''
+./doc/posix-functions/nearbyint.texi: 
+  copyright: ''
+  hash: 13393f4950af6047d63e095573a302430f81f67dc0c50408609af16e34d6e142
+  license: ''
+  license_text: ''
+./doc/posix-functions/nearbyintf.texi: 
+  copyright: ''
+  hash: 658e59bc27cd904e0cc47775321320c8377162f26b6d18de60806a40b96e1352
+  license: ''
+  license_text: ''
+./doc/posix-functions/nearbyintl.texi: 
+  copyright: ''
+  hash: 661f4dab520ac6b7bb2b11af811a20f3f94e1316de51decb0473347458399b8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/newlocale.texi: 
+  copyright: ''
+  hash: c04df75e62461fd14ae6c3d3ebe84ee9df02879c42e5ec26e3badb347e8a822b
+  license: ''
+  license_text: ''
+./doc/posix-functions/nextafter.texi: 
+  copyright: ''
+  hash: 23887e9fbefc390b519abbea6463ab6aa11624d06486049a55f9027ab63e0297
+  license: ''
+  license_text: ''
+./doc/posix-functions/nextafterf.texi: 
+  copyright: ''
+  hash: a0739a1545689a8a038e7f98cb5da84b0c2e4c668767cc241f669e1704194921
+  license: ''
+  license_text: ''
+./doc/posix-functions/nextafterl.texi: 
+  copyright: ''
+  hash: d20c3001ccd5e5ce8d6ef61d92bfc6ecf9e9bca011df94ced795f48cf3dc789f
+  license: ''
+  license_text: ''
+./doc/posix-functions/nexttoward.texi: 
+  copyright: ''
+  hash: 837e8d7788c026deb3665bb845b6da33504cb7b33b457b86b2b8ec0916d1947a
+  license: ''
+  license_text: ''
+./doc/posix-functions/nexttowardf.texi: 
+  copyright: ''
+  hash: bb03bf44dad18e6e2a6f1c7a066871d7a89d2fbeb520bf1399522c9d7b35ba98
+  license: ''
+  license_text: ''
+./doc/posix-functions/nexttowardl.texi: 
+  copyright: ''
+  hash: 082ca469237887b3be9e6ddbe4ae66c7f5eed2f7fb7062b0459ab448bd830692
+  license: ''
+  license_text: ''
+./doc/posix-functions/nftw.texi: 
+  copyright: ''
+  hash: 7fc01f24b0225147ab2c52dc7481fb2663bb13253c9fc0a485991f3bc872b472
+  license: ''
+  license_text: ''
+./doc/posix-functions/nice.texi: 
+  copyright: ''
+  hash: 58412f950c076fdb2593a0a7f2cefa1a80d9d131fb4c3052ea7ef9dc859fecf5
+  license: ''
+  license_text: ''
+./doc/posix-functions/nl_langinfo.texi: 
+  copyright: ''
+  hash: 8cf67efe07150e73545ca1afa1ae02d47bff384e876aed78f1b75998dc918249
+  license: ''
+  license_text: ''
+./doc/posix-functions/nl_langinfo_l.texi: 
+  copyright: ''
+  hash: 46d1682b37126005dcf251b40c854bbc8203ebdd0e7574f91535b4bfa8be7ead
+  license: ''
+  license_text: ''
+./doc/posix-functions/nrand48.texi: 
+  copyright: ''
+  hash: e36c51acdcb113964729a4a2eeb0ac143221961015efa80b42f2cd34f7270f66
+  license: ''
+  license_text: ''
+./doc/posix-functions/ntohl.texi: 
+  copyright: ''
+  hash: 84d74eeaededb546d305d99930dcbdc1ec3918999eb3fb851e28a2e7e37774c2
+  license: ''
+  license_text: ''
+./doc/posix-functions/ntohs.texi: 
+  copyright: ''
+  hash: 346b0124f78840014b5262a674e22a0703994c64c3adb0382afd49fafd802917
+  license: ''
+  license_text: ''
+./doc/posix-functions/open.texi: 
+  copyright: ''
+  hash: 9e866007c32b3f629186f32bce84b0a2a3e8cc628147c7d200325bd60e5b530e
+  license: ''
+  license_text: ''
+./doc/posix-functions/open_memstream.texi: 
+  copyright: ''
+  hash: 4afd28eeda8db17ab5af1f4571340f1593a74742069e35c8cf025d3e3edabb55
+  license: ''
+  license_text: ''
+./doc/posix-functions/open_wmemstream.texi: 
+  copyright: ''
+  hash: ab0f60c7c0a5d80df458598941a4f36408ebce2fc18455086a89a587a8b6e310
+  license: ''
+  license_text: ''
+./doc/posix-functions/openat.texi: 
+  copyright: ''
+  hash: 80fc53551f0a774542028faa3cd7dd7f257f96517e5a3bbf7f15d60c3fcab7ec
+  license: ''
+  license_text: ''
+./doc/posix-functions/opendir.texi: 
+  copyright: ''
+  hash: 409c08736bec42c21409505d8b5549e441a5af2426e3bd68dfcc7c0b5880f4f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/openlog.texi: 
+  copyright: ''
+  hash: 40e398533022603918e1db1621467abcac006a911ad223ea5ea7b80d98a69100
+  license: ''
+  license_text: ''
+./doc/posix-functions/optarg.texi: 
+  copyright: ''
+  hash: e9113b3f78a586f104d7a7e3bdce30cec774d7049394ed1c71473825b52c869e
+  license: ''
+  license_text: ''
+./doc/posix-functions/opterr.texi: 
+  copyright: ''
+  hash: ddda71a2c3fda560885aaf6c435efd85469d21bcb910f55e513971e25fb01fd2
+  license: ''
+  license_text: ''
+./doc/posix-functions/optind.texi: 
+  copyright: ''
+  hash: 192b89c39131f5ac56cb1a3d9199545cfee9c6fe3a13676980cf647c873d9124
+  license: ''
+  license_text: ''
+./doc/posix-functions/optopt.texi: 
+  copyright: ''
+  hash: d9f81d4c490100d92492662b974e59f12d07be11c28dc993037a84dfb37fdc0b
+  license: ''
+  license_text: ''
+./doc/posix-functions/pathconf.texi: 
+  copyright: ''
+  hash: c0dbda6dd42136873beaddaea136fa8d5e46596bfdc335e578a88f1954718794
+  license: ''
+  license_text: ''
+./doc/posix-functions/pause.texi: 
+  copyright: ''
+  hash: 7be4007b12a3aa330139297e66ae074f67ed9e19f3efa28582619f8c071c874a
+  license: ''
+  license_text: ''
+./doc/posix-functions/pclose.texi: 
+  copyright: ''
+  hash: 4361d8543ae29315a5c5e958d4db37667ba5317d2a3b334cc611046b77e73a7c
+  license: ''
+  license_text: ''
+./doc/posix-functions/perror.texi: 
+  copyright: ''
+  hash: b652cbfe9d21d2bbd3ee7784a6a707d27fc1e60293c59183002538640dc279f3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pipe.texi: 
+  copyright: ''
+  hash: cb47c3d1e90c0d73c702255148b3c20889270387c041db34e9c41b29920f90dc
+  license: ''
+  license_text: ''
+./doc/posix-functions/poll.texi: 
+  copyright: ''
+  hash: f05ad8c422fac0e80c3ae47f256e275d4a2f386ad1a8c258b3a40f16337f8dbe
+  license: ''
+  license_text: ''
+./doc/posix-functions/popen.texi: 
+  copyright: ''
+  hash: 4c7662a6c9a1f5fec49e1ed88fe924f8ba389ced30dc44570469332009095c20
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_fadvise.texi: 
+  copyright: ''
+  hash: ea8c8e4c81a8ad7a313cb6d2071239f26e453d6034b32cad4214ea95e4536247
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_fallocate.texi: 
+  copyright: ''
+  hash: 96ba33b3301a1d3b05885d284a49dcbeb84b73adc39ac1b7752f694e0f2eeab2
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_madvise.texi: 
+  copyright: ''
+  hash: 98abbcde99ca724ebecd7393f0bdc2f4425d743cdd8680118aa3df87c6d3fe81
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_mem_offset.texi: 
+  copyright: ''
+  hash: d18ab511cf764975dd21a03e966791ffe4e4f7352616a030dcaeca77dde7fca9
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_memalign.texi: 
+  copyright: ''
+  hash: 02a09479dd9153ce72aaa2dedefd1dd8b5e57f2b88e5f8d303f49dc60e4b3246
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_openpt.texi: 
+  copyright: ''
+  hash: 0f0fb194f87d863cb37d2585c3b4f6bde4369d1319d5d306c27d39d61844d363
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn.texi: 
+  copyright: ''
+  hash: e8116c7284d0ec8e3dc77be2760763dd4af6ccb6994f2021dd212cdf8e8ada0f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_addclose.texi: 
+  copyright: ''
+  hash: 5828164a4deeee9c954a4136871b3177b6eecfce75506176eb6cf3a4a9a62b21
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_adddup2.texi: 
+  copyright: ''
+  hash: 23e93dc2b98cc5650771f750cd28d8a2c3cfa59af0b565de46c712cf0b06ecd8
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_addopen.texi: 
+  copyright: ''
+  hash: 522057f36d8f4a88c26630242bc87528fe3805438388b44c93d97243e5e86ee4
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_destroy.texi: 
+  copyright: ''
+  hash: 0320d879a8c7e3d36619bfb1f542513ab285a601fc716bcab9fdea8764842984
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawn_file_actions_init.texi: 
+  copyright: ''
+  hash: 9c12cdbb6ac1e39ce5f80f8dacd02b40fdce55904a2e4d3273598a7f1bffe25b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_destroy.texi: 
+  copyright: ''
+  hash: 385601a0adb59e6a946cc5ae70ad2121a0fc1f9cf9bde84bbbf7067ec3c2cc3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getflags.texi: 
+  copyright: ''
+  hash: 695f28460ef4a0e41614dff4ca0af1d3a1198c9ef166951ba33c8c1c6b9b83fb
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getpgroup.texi: 
+  copyright: ''
+  hash: 26c66e902b05529bac72419304ce248d35a25c40c99998b6cd93e4ea45cf0df7
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getschedparam.texi: 
+  copyright: ''
+  hash: 3e2294ef0ab8ac17b6d863152ba655db225f70152c455f422c01d3f765dea9b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getschedpolicy.texi: 
+  copyright: ''
+  hash: dd9c3f74a80529c49eb3962334b976c600292f50854c2eac240b32cdc573d28d
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getsigdefault.texi: 
+  copyright: ''
+  hash: 3e7e418f2d92c3196aa025cc49aa12be6db364564c10b87d44627ef5fb4f2807
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_getsigmask.texi: 
+  copyright: ''
+  hash: 26b824db4f09a65050f6350b6971cbf95f99ad40d1c7659764abde3e54fd3227
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_init.texi: 
+  copyright: ''
+  hash: 05f5786c234980a42a111d033f5130bc683e09bd9cd420dbb993e0db4223241f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setflags.texi: 
+  copyright: ''
+  hash: c3de08bb23b2e056a9d1fa457d78be2d64717b957d66d6f7705215017389224b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setpgroup.texi: 
+  copyright: ''
+  hash: 548430de694da18955230250c1034b6b515fcf30129079d539a13f426c9fe22c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setschedparam.texi: 
+  copyright: ''
+  hash: af7be1846ac7bd0fc6d107f8399458067710b5e221a3b728512b6a6204c21913
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setschedpolicy.texi: 
+  copyright: ''
+  hash: 3adfc655a7b0cf55cc89761c9d64309a2cbf0adc724701cd3e2b2bd9a51f09ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setsigdefault.texi: 
+  copyright: ''
+  hash: cb24fc7291758ad7f30bad7a96cdd26f0defa4f28fec0be8d02a1e2ed6bc20a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnattr_setsigmask.texi: 
+  copyright: ''
+  hash: 3661e1c23a65c97c9af7008e3af513555234a91aaaeffc6e801f0757067618d5
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_spawnp.texi: 
+  copyright: ''
+  hash: 55d59c76213c7914c86b8a3fb623b4c073d49641d72949547638acb49c9019d7
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_destroy.texi: 
+  copyright: ''
+  hash: 26c37bafe4af14e0a6c567e810277b9b5847122cf0f87cac16ff94a8b8e214be
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getclockres.texi: 
+  copyright: ''
+  hash: c6df2399c6ebb47e6328cf303b80492f9748c8a4f167ef2f563cda59860e2cfd
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getcreatetime.texi: 
+  copyright: ''
+  hash: 0bba6eb668452771990a8c1dfff7134f74e136d9f8618c4228b9f56cdd51e442
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getgenversion.texi: 
+  copyright: ''
+  hash: 3494fd0e404cc8a99e72fc28c50d13b44d0438785ac74292e84c20347da5a40b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getinherited.texi: 
+  copyright: ''
+  hash: 9c3dc2682ee4f8efbe8238a459642164bd53c4a73c5054f8cdc73dcb152db424
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getlogfullpolicy.texi: 
+  copyright: ''
+  hash: c6e5f0d91562ec40cc54987dbb2c567e9c66d6c87ac0954dca87d52b5b9f8e60
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getlogsize.texi: 
+  copyright: ''
+  hash: 04803d6d78b225f53aa3c6147bba5367f18ba362fcb9b9b55fba0719c8d75776
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getmaxdatasize.texi: 
+  copyright: ''
+  hash: c25ba97d572d5ca4f69629f2a78822d6aff93b73f4da397cf43e16e3b61a6aac
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getmaxsystemeventsize.texi: 
+  copyright: ''
+  hash: b0a2f0041320b5b3ad358757b24ed4fa1e016672af6746d8933e84075d33360e
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getmaxusereventsize.texi: 
+  copyright: ''
+  hash: 52791fc875f1f82253f29df6b7455f7e038f106efc716777d0f6fa70436a9822
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getname.texi: 
+  copyright: ''
+  hash: 37e62b2df1671442499b27356f9b6d3b77eb20ee5016cd5b4b15952e434d472f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getstreamfullpolicy.texi: 
+  copyright: ''
+  hash: 08910c37877f7e37e6eb305bbefb233cdc16865ebbb89081846a042134cae954
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_getstreamsize.texi: 
+  copyright: ''
+  hash: bcc8352edee634fdc1577f4039f78bd777f7964032fcd36127a7251536f3cd8c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_init.texi: 
+  copyright: ''
+  hash: a2e83a06a534390b4974622a6b4d2ac1c637e52b91cf34d49576569d44148323
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setinherited.texi: 
+  copyright: ''
+  hash: 15dd2776c5a4bae1ff25c0388da2c6fe92ff206b9cdbf3c29544d97f2ba7465c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setlogfullpolicy.texi: 
+  copyright: ''
+  hash: 6123eeb6328f6381169708420c2560630406f4964acc3c260c358ed4f9a68cda
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setlogsize.texi: 
+  copyright: ''
+  hash: b25853b00b814a81dd0c5814c1d42f14d70347723160104fcd5d43ddd8d42077
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setmaxdatasize.texi: 
+  copyright: ''
+  hash: 6bdf3f85571c822f319ac0ff9e310fa9bfcf584558103f79368e262095a9c6ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setname.texi: 
+  copyright: ''
+  hash: 64e32d78a18d51e8bfd3b23f91878fb761b87cff345ed77fed1d753114b50c10
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setstreamfullpolicy.texi: 
+  copyright: ''
+  hash: 7123836aad4e0fb02113ade7138723da2ba36370a18b5b0751b1efbceb8f444c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_attr_setstreamsize.texi: 
+  copyright: ''
+  hash: 5e25d2adbc668b88bbd5d7a0ed7d0aa2c96a97c05f31f042fb5da5d54131db92
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_clear.texi: 
+  copyright: ''
+  hash: 246ba5555dc290c8b1e1320450b1caf1e1557a92ffaa798ce663c95dfda7e0e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_close.texi: 
+  copyright: ''
+  hash: f8b48c02b26295e68c4219cd771eb0485349083c7fd45d6fa34e4dc34e5adba5
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_create.texi: 
+  copyright: ''
+  hash: 7fcab2cefac75343564f45dbea419a5e305edbbcdf582d145a6314dc15a79296
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_create_withlog.texi: 
+  copyright: ''
+  hash: 60662414b3106f8d3a4ca1c75fc0484fa0d8d79d90421b817b18d77f2b516f7a
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_event.texi: 
+  copyright: ''
+  hash: f60fcf4bc32cf69788ea0b35884a8fdacd82591cbd0161391ff5eb298baf6cee
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventid_equal.texi: 
+  copyright: ''
+  hash: e98ad15e6d288cda7cd84504ad757be753c58e981254126a7013557aea9fd9c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventid_get_name.texi: 
+  copyright: ''
+  hash: c7596250743fd190cad5213006d0b9666c3a936be1dcebe04bdbe171a6cd0749
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventid_open.texi: 
+  copyright: ''
+  hash: b0962f6ecae87f4770e047b7d06cbf279151b4e50c6379241b1313e47e552d0a
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_add.texi: 
+  copyright: ''
+  hash: 1a546240a8fc1faa3f949ef383a67908b8070463825c543c0a4279b1ca25f784
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_del.texi: 
+  copyright: ''
+  hash: 972884e849006cdfeb74f21d360284b7f8c194ecb4114409b8a0d6ce7784242e
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_empty.texi: 
+  copyright: ''
+  hash: a8873a5c14dd2b52a595ecdbad9fde48f9b8d1cd659a88e899e4b3806908eeed
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_fill.texi: 
+  copyright: ''
+  hash: 4aa69e4079390a52ce6a9d3e70c0b2e66e884db7cdb9dd8836333ec31ef6ca8b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventset_ismember.texi: 
+  copyright: ''
+  hash: b2bcb139cf0f406f68a7da6a050f50a20ce76053be2cf598d5ce01720859938f
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventtypelist_getnext_id.texi: 
+  copyright: ''
+  hash: 8168eab83a8019726c73e5a3eafd53fb848cb20f17bfb391eecef7f726781423
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_eventtypelist_rewind.texi: 
+  copyright: ''
+  hash: a8b698cb04bae7452a1aa92c9af23fb6bb24d78a4de08d7f6e7b2b6774769be9
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_flush.texi: 
+  copyright: ''
+  hash: 6adfa76be6079e6353cd3606c896b41897072e16923d73b136f08cbadc2a571c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_get_attr.texi: 
+  copyright: ''
+  hash: cdb6cef8bf0e98eb4ed074289005960626c82293df0ab4a32ea5527680c8e6de
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_get_filter.texi: 
+  copyright: ''
+  hash: b4e182e8a9af7d9168dd35eb4290462fb40be47f09e99710f4b84431a626f2c4
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_get_status.texi: 
+  copyright: ''
+  hash: 71d6651b8f05644b9a642980d8e8b1a2923ae9dcfd58048c81e91f82c3356f7c
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_getnext_event.texi: 
+  copyright: ''
+  hash: 49bead6bca4c38a5341f86b18485d77660b93f22e7b56d9f034ac4a8636f5b5d
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_open.texi: 
+  copyright: ''
+  hash: fc529d52215c5e0f770f104bdbea24af448b43f1e793ade2b64d70205443868b
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_rewind.texi: 
+  copyright: ''
+  hash: b3eff434d8501389631044c23517d57d12b9a80e0bdb7cac5b15fe1fee7b3bb1
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_set_filter.texi: 
+  copyright: ''
+  hash: 4d7f6ea838ed6c51adbe31fa219a22b5df80e697e4814dbd9ecc8f269cf762ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_shutdown.texi: 
+  copyright: ''
+  hash: 9293a9916aeabb2c74c1bc62ccf37cbae78dc1276a9a7276ac61ca129a5843bd
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_start.texi: 
+  copyright: ''
+  hash: f96fc628919e2fb8d1f0b687a9bf7590eb610167571abd2fafa736c37cfe9570
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_stop.texi: 
+  copyright: ''
+  hash: bdea8f560c0aa039862bbcf7dd669b6e17cbf3df5ffab49eb84d322a646fa644
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_timedgetnext_event.texi: 
+  copyright: ''
+  hash: e02e2628db360e9552151ea3cfdbe0d7cb10d05f5084c82be6fceac00c12fffc
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_trid_eventid_open.texi: 
+  copyright: ''
+  hash: c90234d6928930eb571c09a335c80e685e6188844d6032c5cb4f08d1d346c4af
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_trace_trygetnext_event.texi: 
+  copyright: ''
+  hash: d73011efa2346a98ca0b075ad9ca871f92a3a336c550aa614c44dabed4cbf0ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_typed_mem_get_info.texi: 
+  copyright: ''
+  hash: c1ffc2cdb081c341c855a6166079e907b5f30d2bbd089fcdf3d4a5efb4c3e8a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/posix_typed_mem_open.texi: 
+  copyright: ''
+  hash: c0923dcacc2e10d19cde0116b916900ee58bee17184540c4fc0fca56cf27afa5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pow.texi: 
+  copyright: ''
+  hash: 3588200be9beae88172c588ed3166f06aeaa63d7f7708b709e51179849668047
+  license: ''
+  license_text: ''
+./doc/posix-functions/powf.texi: 
+  copyright: ''
+  hash: 2c20228be41c7ae06e16f334a350ecd67e67d780f15ab1ace0b981472ff76e5a
+  license: ''
+  license_text: ''
+./doc/posix-functions/powl.texi: 
+  copyright: ''
+  hash: ec73f774d4f9e2730678a99849d7e449fa33553a4e00aa301eb3c37dee018529
+  license: ''
+  license_text: ''
+./doc/posix-functions/pread.texi: 
+  copyright: ''
+  hash: 94344ff20d9188dff7bcce1466828d3d8e19d41207d8c20e5eda87fce1752780
+  license: ''
+  license_text: ''
+./doc/posix-functions/printf.texi: 
+  copyright: ''
+  hash: cc1b5932488eafd7041e224c3c5f101cd6d45de4c770de8eb00c90ce7f61f056
+  license: ''
+  license_text: ''
+./doc/posix-functions/pselect.texi: 
+  copyright: ''
+  hash: 2d26ab5240ac27a518b2e987ba8d79e7b2c2528bc6a94093db97760c1cd30f9a
+  license: ''
+  license_text: ''
+./doc/posix-functions/psiginfo.texi: 
+  copyright: ''
+  hash: 110101075e0eb4d997d3fcf1818bff6cd029be26a916d95148d0b02c9a3823a1
+  license: ''
+  license_text: ''
+./doc/posix-functions/psignal.texi: 
+  copyright: ''
+  hash: 2c42cdb7d36d4524202363bbc6c21af4dcf480f7996acbb464831b3501bb2401
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_atfork.texi: 
+  copyright: ''
+  hash: bd6f0ab6ff93e450c2bc4ca3c2863c21a3fe0696083d275cb1a9d1605ed02eed
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_destroy.texi: 
+  copyright: ''
+  hash: d033d6af41be3237328cbc28811f8e729e3d295b2e92e0c7f5051a73cfffdbf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getdetachstate.texi: 
+  copyright: ''
+  hash: 6e2a3ef0f6207878bb09ad68185f8e07bc1b0d23b1c7551d5445d9439f63cadb
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getguardsize.texi: 
+  copyright: ''
+  hash: dcc2fc4b9fa5d43877dbdae216c9a782af6ddd21b4cc251c6f0884d6ead8ddcf
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getinheritsched.texi: 
+  copyright: ''
+  hash: a6a1f044119243f02220493504aea24e555e10d684d75f76be7703cdc7907117
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getschedparam.texi: 
+  copyright: ''
+  hash: acf2bc407210fd0a87ea5a8bc8aca6ba382914a2ad8788c13589d65f5efb4662
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getschedpolicy.texi: 
+  copyright: ''
+  hash: 6568aff8a62e24e659319143e01e108068eb82ecb1d73e9305ba8e3af43f1dbd
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getscope.texi: 
+  copyright: ''
+  hash: 53127e6a0846038a197f491f7d9d4486cbd9e0d92e23182eca4a23643b7c7987
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getstack.texi: 
+  copyright: ''
+  hash: d55b1da7b04008428ba631234be9cfb38b53312aa69c148e116b682139eaf108
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_getstacksize.texi: 
+  copyright: ''
+  hash: 345f3ee43d1e0f2efa8d4fab2b196d824b44868ee55bf828d4135653b9cb64e1
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_init.texi: 
+  copyright: ''
+  hash: 5ac9b50be719d7ce090e57f14970fbaa0109b04968d270e9f52a9c3d9e8508ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setdetachstate.texi: 
+  copyright: ''
+  hash: d78b76b4ed5cfe55a6f5e4ed77d137e8f317ea2d8f6eb5b160a72f7c5567e411
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setguardsize.texi: 
+  copyright: ''
+  hash: e7fac577329d9a3b6446d353473c83fd01c59f7e8548ad31cd292354304ac6f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setinheritsched.texi: 
+  copyright: ''
+  hash: cf31a0c5775bfd82489898e7c3f8c5b1bcf03787ac97d313de504a9f1a640463
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setschedparam.texi: 
+  copyright: ''
+  hash: a01e60c15e39cbd05318117c6a353663a658cff4c0060c732552bc0735e1a0b5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setschedpolicy.texi: 
+  copyright: ''
+  hash: 28c89cdb4b18dfaab2c400b96220600365c448c666125d97cc54c888ee6d4623
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setscope.texi: 
+  copyright: ''
+  hash: 546a917a46a49835d47fb7f4b9be526e27c99339c85e86b332417f39456da902
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setstack.texi: 
+  copyright: ''
+  hash: 3218b205686cd35238646c3f6be7ce58a9283171a1a242eb6d7949da02576197
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_attr_setstacksize.texi: 
+  copyright: ''
+  hash: 15ec368b367a6144ee7d39b56b4a4e994ccc0fc231413484a5bc5596417964b3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrier_destroy.texi: 
+  copyright: ''
+  hash: 6431e7465c2f611d477e2e0bbed31e7cb6dfa1f57afed483e3de3d06fbabc55d
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrier_init.texi: 
+  copyright: ''
+  hash: 2ccf8776f1720db644b2e40f5e45b2accd8e3a5134f9f5446d6ac243729f7ad7
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrier_wait.texi: 
+  copyright: ''
+  hash: c1b386eae130fb603d2f6d476958efcf09387fb73ce297e459e6d81e0dd9b133
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_destroy.texi: 
+  copyright: ''
+  hash: 913c8f495efff25824dbd8dc5faf2526b5b0e5160b1faae28f67452b3aee6936
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_getpshared.texi: 
+  copyright: ''
+  hash: 8e4afc65315f8b2e25d2c5b9e859363fd9ee7371eb7247d6112773c642337f6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_init.texi: 
+  copyright: ''
+  hash: 45369e6ac6f2f62e775581d3694e1c9ab726b910790ef4b5da5efe94778e2e49
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_barrierattr_setpshared.texi: 
+  copyright: ''
+  hash: 34825fd8bf5a6ae16e5b7a0ceaa60428e8ead85b8e0ada77345f10600eeec249
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cancel.texi: 
+  copyright: ''
+  hash: e8ba2f30835e3adf32710558d20f30e1cede0f548e4cc612f0aa36cefd207619
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cleanup_pop.texi: 
+  copyright: ''
+  hash: 56219e3c4261a24f8ae5c345420375bfed930edd72fe9de1145ad9bb6c8981b4
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cleanup_push.texi: 
+  copyright: ''
+  hash: a198aceadab367b9b5ec5528e6d9eb7071b44e88ba80d7505b07e86ed47b3799
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_broadcast.texi: 
+  copyright: ''
+  hash: 027f86eba7dbadc497e225c26b709124f8d27d3720f641e9a16d6e244f2e9999
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_destroy.texi: 
+  copyright: ''
+  hash: 700b1a47bb870ae67a0829d45bbe702d4e2d5c068f21338fe743c5f781a79b41
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_init.texi: 
+  copyright: ''
+  hash: 1aac869c309f1e1259d594533ca99cbcb409ae20698e04313ecb76af8f586125
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_signal.texi: 
+  copyright: ''
+  hash: a3a421ae49ccf251516d0a9d806441c29c08782dec6a949f1b4132722924935e
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_timedwait.texi: 
+  copyright: ''
+  hash: b554412ccdd6610c8224a5828fc0cbed66e33dcf855b76bece44c72854f4b9fa
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_cond_wait.texi: 
+  copyright: ''
+  hash: 69b9ed912a9a849f38ef59137cf08ef99807a0e560af5baa98a843186838f299
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_destroy.texi: 
+  copyright: ''
+  hash: dc71cdaf1bfce2c599af6d02608e23a7a1a36b35773b61a9352930193521ceb6
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_getclock.texi: 
+  copyright: ''
+  hash: 4f39462a8d0cccfa468c219ae84735d0e4959170660ddb5335d4d0e58a310952
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_getpshared.texi: 
+  copyright: ''
+  hash: fd9bb140a4bb9d1596e1a1db77d9fc3e265aa7cbfeae2d7b82c203a3933a4aa2
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_init.texi: 
+  copyright: ''
+  hash: 644aa43dccb6aaa12b07b5af03bbaa07a2ce79c14e11441ffcc89e2980b45fbf
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_setclock.texi: 
+  copyright: ''
+  hash: b5413f0e67888a8c5591631a2e7fc8f9d5940b4295d578bc47c5f6b392fe5775
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_condattr_setpshared.texi: 
+  copyright: ''
+  hash: 18c18d1442e96df08c95dff4c476f839a9bf33f67fc7cb2d318af1f7a5129452
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_create.texi: 
+  copyright: ''
+  hash: a7e377395df018ad7be35a051f5a0cd6cd2c76118befa1e9d53a2023bd751923
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_detach.texi: 
+  copyright: ''
+  hash: e80c073a363c91dbc7080f7a4e511f7b648bd28f030c4f98faa1490086d52a32
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_equal.texi: 
+  copyright: ''
+  hash: 6e2bd3ef9f0cae069ffd29ff4fba0879fbbcdd9cfbaf39327b389d27c0d21dc0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_exit.texi: 
+  copyright: ''
+  hash: 232c5cf778c2cfd1e637aee54d72705efcf3dbff8f7164240c1a171d0cdc7d8f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getconcurrency.texi: 
+  copyright: ''
+  hash: da08fbe0f6fd2e342e8e5de796f98166968f5292462c2b0bde472cc2cd27aebf
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getcpuclockid.texi: 
+  copyright: ''
+  hash: 5189825a695d0c00cc9f0275ad6f2d9c949771c1d65c1f33eefbf58f45da4e30
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getschedparam.texi: 
+  copyright: ''
+  hash: 6fb7f3364b7723dcfe69708e696f958421113a542fc16c23d6b437c61c3ebe69
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_getspecific.texi: 
+  copyright: ''
+  hash: 24418f9959f93b40084233797e9374b3d70eca2260a775e1abdc744d43b0e72b
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_join.texi: 
+  copyright: ''
+  hash: 9039ce2feb029a58d9fbd965e0d2f4cee351059727f82a85c67059c0319bf525
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_key_create.texi: 
+  copyright: ''
+  hash: a1cb1a3db0f8853edb4e810872d4337be4fe45284107e1fb1fc3811fd3b4559c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_key_delete.texi: 
+  copyright: ''
+  hash: 7a66f0931de9d103c2dd8e413f396dae4cd106a88c96ad695cd60bd31febd79e
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_kill.texi: 
+  copyright: ''
+  hash: f08bf3510c8f593d3dd76d9a59eac31ac729ba9d94dc75958d0e904f5c9c98a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_consistent.texi: 
+  copyright: ''
+  hash: b6e43d57f04c939eeeedf83aceb7a105ca5067531ea8db38d44306ebe8e9fd4c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_destroy.texi: 
+  copyright: ''
+  hash: fd4bde78e9fa8b117ae2482b8597dddc097527885e32cacbf6730f38ca8e06ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_getprioceiling.texi: 
+  copyright: ''
+  hash: 2a9d8cf7cc4fc5e2fe50656bf10493668ed1c6a1a0e8cdebcb14f4a3fc762e88
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_init.texi: 
+  copyright: ''
+  hash: 0e842a0e38c78b48dff33e93b8092d7977b5e64e398a246dbcf508bd957d2d61
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_lock.texi: 
+  copyright: ''
+  hash: c6d6b927e067c0c74541aa777d5aca52d14f124a01c458da4e0c465d2a535fc5
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_setprioceiling.texi: 
+  copyright: ''
+  hash: e3a36023a14d9b48e692ccf929e1848ccb1c04cb2570216858055dff256c6a62
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_timedlock.texi: 
+  copyright: ''
+  hash: 140fb1fb8fe999687fe6799e7169f0dd2973de5387296d1d31033f527570ee9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_trylock.texi: 
+  copyright: ''
+  hash: 20faf9cb662d153f4c93433660e024c693a1211a5181532029be3d28bce03e6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutex_unlock.texi: 
+  copyright: ''
+  hash: 7110cf9b01daabfcf76bd06905a56f819033d4d7a93c89b05800b79171d38e19
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_destroy.texi: 
+  copyright: ''
+  hash: 1290c79fa1c38da5e15fedcbf354d4a3a0e1481df5bd5433387c1d96f2baac32
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getprioceiling.texi: 
+  copyright: ''
+  hash: 449f95217262c8abc79143cb2459f618a5967e7af42b2ac3981a442ddb9a9c06
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getprotocol.texi: 
+  copyright: ''
+  hash: 9f9268d4333f759584749fd1605652f4186d5f0b5acc680b39bdb7061b54f48c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getpshared.texi: 
+  copyright: ''
+  hash: 295bd74fc073a734721873fa72a22a174e18783e9deeec13f06517f689eacd22
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_getrobust.texi: 
+  copyright: ''
+  hash: e0610f724a55de771fe504907799acfe94fb6ba3c67d0ce579d759ab973d19e7
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_gettype.texi: 
+  copyright: ''
+  hash: d12236caf122faf894bb50228a5472f020d954e207cd9dfd0e577ee8c8383f71
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_init.texi: 
+  copyright: ''
+  hash: 3b3ecf6261d6da298805c4cc95962a3ad36890bb77ff6b7b6f3132086e051167
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setprioceiling.texi: 
+  copyright: ''
+  hash: 1ece8317019dd82c5e318b4d9b5882802ea01045a409297cf8dd440ad9d3103f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setprotocol.texi: 
+  copyright: ''
+  hash: 5e6a366266f46a0357684749782e6197e1809fba9a2d513688406e49ad31d2d3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setpshared.texi: 
+  copyright: ''
+  hash: 2fb993d88e4bbc911842803392deba53e3813c527c52d905c948b73bb4925286
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_setrobust.texi: 
+  copyright: ''
+  hash: 6bcbd7ab232100484cccf5e34ae17399d7c916a5acc23f403e0a0a844cc3e4ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_mutexattr_settype.texi: 
+  copyright: ''
+  hash: fd9b09b6caf5b9d30b13ad9e48dc4603f3ed94da2f8183e721cddb1ccc436dcc
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_once.texi: 
+  copyright: ''
+  hash: 263f7917fd13b0a74ac2ac702382080845565de894f62c71a2ac5a00ade097a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_destroy.texi: 
+  copyright: ''
+  hash: e474fee400949358c98c0d2eb0e85c3467fc0ca4bdb4fcc639ed9f36abe8fd82
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_init.texi: 
+  copyright: ''
+  hash: db1cb2523554cd336286ed884dc68f8f79b1558822da6d7872998801edbde3cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_rdlock.texi: 
+  copyright: ''
+  hash: 0d60cb0bd577699f1938cb35e9d4d33c4fee07c9b066bcdb6827770477de24a8
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_timedrdlock.texi: 
+  copyright: ''
+  hash: 3599fc1e125134eddc84887d08f98a66259a161a2e20d3eb6aeaa56e388c0c49
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_timedwrlock.texi: 
+  copyright: ''
+  hash: 2b1fcd9f3b9fa43c87a6c4e253ab9f0d59c266668fa4f8bf951ba0c9ef16d66c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_tryrdlock.texi: 
+  copyright: ''
+  hash: 42205ebc500b32d14edfe041eda18f6ab7ca80e145b0b5f39ca6012f2cf1bab4
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_trywrlock.texi: 
+  copyright: ''
+  hash: 4a1dfb6ad7aeb5bb915ca30df282fd851dd2b7924ddced7c4855bfe9c520b2bd
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_unlock.texi: 
+  copyright: ''
+  hash: f87d3a230966b3d5b888d51b96f49074ee121a4c6f0b44cc339c281aac4fe6e3
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlock_wrlock.texi: 
+  copyright: ''
+  hash: 615fd6fce3bfa2157552bbf3a06e7840653a17f0f5f5a23268553002b5871983
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_destroy.texi: 
+  copyright: ''
+  hash: d650c45f94e3f7cb29c19693d46694c3b1d965e41bf6db7f4490611eee0a1c89
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_getpshared.texi: 
+  copyright: ''
+  hash: 3b9cf0c4acb7572f4c5ae44b36365c60d1a3ef364d683ba6d741c60c30cda433
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_init.texi: 
+  copyright: ''
+  hash: 749ddd92db56e96ecaadb08122546a3cc441cbca68fd274de2de3c69514cc95a
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_rwlockattr_setpshared.texi: 
+  copyright: ''
+  hash: b91d04b919f5d05dbda7c3530244929f89f83ebbdba05fffc494820d2a853842
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_self.texi: 
+  copyright: ''
+  hash: 13a7ed58caa8e8ed5afd05a4866c5a149f397fc180ae483191be4f2bbe1e873f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setcancelstate.texi: 
+  copyright: ''
+  hash: bf779426dbcb25c40780822d1af78c8c245730481c02b2f663b25c06032cc1ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setcanceltype.texi: 
+  copyright: ''
+  hash: 21d2905f71f6a29504e1e41139d61d4c2c30ebeb03d8315cdc5e4a92e4d2b80c
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setconcurrency.texi: 
+  copyright: ''
+  hash: 3a0aabbee0c7c7de01d8e594d7585d2f80b108a9824299253f41979ab4dbfb82
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setschedparam.texi: 
+  copyright: ''
+  hash: 6420aa34f4afee0ebe566288a398a735322e438b631ce128637752bc8e8820be
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setschedprio.texi: 
+  copyright: ''
+  hash: 9354214523a1c7e37170ac1a21531f009477b6c148aaa0a251544066c31aa78f
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_setspecific.texi: 
+  copyright: ''
+  hash: 154fa05dbb23ec8136e52430b633c487de9c68431f8bdd889864189f88b4d946
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_sigmask.texi: 
+  copyright: ''
+  hash: 5f84be77ac9a94d39f9890e0d6fc55981fdce2afa262726750e4bb8b08d930fc
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_destroy.texi: 
+  copyright: ''
+  hash: 9b80cbaf20504167e3cee0833877632e1cb5cec0ec848e17e6e92911498e12ab
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_init.texi: 
+  copyright: ''
+  hash: a3726f0acaefef327cb10544fdff423af698b5f1cdabe0a26b27c4b5d8d80521
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_lock.texi: 
+  copyright: ''
+  hash: df22dcb8f68c58da23c21856c108590d8b7be072110595e1db0cc8f04a431ac0
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_trylock.texi: 
+  copyright: ''
+  hash: 322d6baf08a723f11fa1176b4877d385268cf6390c885ef2cd4defda8e7767db
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_spin_unlock.texi: 
+  copyright: ''
+  hash: 14e1ef4681b04777a2effa8cc09f6b9f54df272574e33f41a53c61fdce370242
+  license: ''
+  license_text: ''
+./doc/posix-functions/pthread_testcancel.texi: 
+  copyright: ''
+  hash: ed23a37d1c2d0cd758558e27f966f24f80c536576d6fcdca1253c41b23f3edaf
+  license: ''
+  license_text: ''
+./doc/posix-functions/ptsname.texi: 
+  copyright: ''
+  hash: 1b5c93eea933da86b4d3af086ecdd2d1251250a5ea58a3a65f293562e0e8a336
+  license: ''
+  license_text: ''
+./doc/posix-functions/putc.texi: 
+  copyright: ''
+  hash: 5d141e589a84fd6b8317e39d3fc5aab79d8b46f53d544ff312902a7b91ab26ed
+  license: ''
+  license_text: ''
+./doc/posix-functions/putc_unlocked.texi: 
+  copyright: ''
+  hash: 37f5c73db32107b5c76b4cba44714c31abc9c138e1073d8c4925179e2cfd6c5e
+  license: ''
+  license_text: ''
+./doc/posix-functions/putchar.texi: 
+  copyright: ''
+  hash: d34911f284b53c744d1adaff6fd19a42a32617bcf3680978cc05a4eefe594d45
+  license: ''
+  license_text: ''
+./doc/posix-functions/putchar_unlocked.texi: 
+  copyright: ''
+  hash: fe7ef6645bdf1963d78a2b5127e040bde49dc0e5025aaa9b7dfbbb6260da429b
+  license: ''
+  license_text: ''
+./doc/posix-functions/putenv.texi: 
+  copyright: ''
+  hash: 1225f20a845f37cd71a9e0bced02458df4fb6c6f115771fbbe61fea3b4780848
+  license: ''
+  license_text: ''
+./doc/posix-functions/putmsg.texi: 
+  copyright: ''
+  hash: 75b6e41c21c6f36a1fdbc2b4c6e03a8c887088897174ec890231899889f30172
+  license: ''
+  license_text: ''
+./doc/posix-functions/putpmsg.texi: 
+  copyright: ''
+  hash: 3903ad394832d99822a9c28af39ea21eee403b16803d11d6480024d27d06bec2
+  license: ''
+  license_text: ''
+./doc/posix-functions/puts.texi: 
+  copyright: ''
+  hash: 0c3315db7f98e899502f5a99bd2659f35187abd17e2e6a8cee77f243ce622cce
+  license: ''
+  license_text: ''
+./doc/posix-functions/pututxline.texi: 
+  copyright: ''
+  hash: 66c8ffbb27d2df0fdd75e0c8c96790e18a16ed8b4f6bb78fc388232254be3a95
+  license: ''
+  license_text: ''
+./doc/posix-functions/putwc.texi: 
+  copyright: ''
+  hash: 6c60fa1822603d2c92c59f1e5e591e1af2b89112396c238d847a4b696eb5f93a
+  license: ''
+  license_text: ''
+./doc/posix-functions/putwchar.texi: 
+  copyright: ''
+  hash: b09cb7a268544b361a6518977d0cbb34f145881c66588f7a4834577e439bfe17
+  license: ''
+  license_text: ''
+./doc/posix-functions/pwrite.texi: 
+  copyright: ''
+  hash: c9bd2a13a91714d5752f09ef6f92b210e7e5e7df7f7ae6ad069e2705e8560aa4
+  license: ''
+  license_text: ''
+./doc/posix-functions/qsort.texi: 
+  copyright: ''
+  hash: eccfafd811e895dab2d612139558414963994ad85641a831a19ac92054427b1b
+  license: ''
+  license_text: ''
+./doc/posix-functions/raise.texi: 
+  copyright: ''
+  hash: 9168fc29b1d48f00797fd8aa7575ace765b3f20cb4ff6df9c81e2c5a7f75a505
+  license: ''
+  license_text: ''
+./doc/posix-functions/rand.texi: 
+  copyright: ''
+  hash: fbbf8b1aa9c9585a1951e87f039d4335f526c24c0e78e219db3192d1135cd0d8
+  license: ''
+  license_text: ''
+./doc/posix-functions/rand_r.texi: 
+  copyright: ''
+  hash: 59c958eb67399b934750dc9454b7bb7fb2fcdacdcd793765b49f2de183a98292
+  license: ''
+  license_text: ''
+./doc/posix-functions/random.texi: 
+  copyright: ''
+  hash: 1ac28c8bc3664266beda4e1a8bedddfe6e9a2b9d922712df684fce6a569d57c7
+  license: ''
+  license_text: ''
+./doc/posix-functions/read.texi: 
+  copyright: ''
+  hash: c0772bc36f187c182877807725aef9e66db5d39de1fd4ba4fb0f3e1d1b104499
+  license: ''
+  license_text: ''
+./doc/posix-functions/readdir.texi: 
+  copyright: ''
+  hash: 8acd1c9966f71ead4b10ca70d897276aa12fbc5a41f1ad088cfe1e1849f09d32
+  license: ''
+  license_text: ''
+./doc/posix-functions/readdir_r.texi: 
+  copyright: ''
+  hash: 0b985cea57ac53aacdc262c142dc6836da7ea2f6805a75a52c6badba2a1edfb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/readlink.texi: 
+  copyright: ''
+  hash: 289041e8eac3117ecaa306f00b03008b7ed1f7f7e8e458edb64e3658d2a78df8
+  license: ''
+  license_text: ''
+./doc/posix-functions/readlinkat.texi: 
+  copyright: ''
+  hash: 8e82d14041b87e19c1298c597787ddb51fb2c6d4f3aba4087a064ff6db8445e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/readv.texi: 
+  copyright: ''
+  hash: 3a5a744fc3b388558d7a6ce32e3cd2409238e7c1de9877ef421916a0a0dc41ff
+  license: ''
+  license_text: ''
+./doc/posix-functions/realloc.texi: 
+  copyright: ''
+  hash: f0e891898abaa0a80d3cda3e3bfd9d8ba9d886fe03eeac0524b958a62e9910cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/realpath.texi: 
+  copyright: ''
+  hash: 31d1d7d2fbb89b8b73a9f8c9233c47944c665081515957cdf622af70b157dee5
+  license: ''
+  license_text: ''
+./doc/posix-functions/recv.texi: 
+  copyright: ''
+  hash: 8a15266da832a4a27bba9fc686336216b9e0f53e3039ae3c90803932b0bd6dda
+  license: ''
+  license_text: ''
+./doc/posix-functions/recvfrom.texi: 
+  copyright: ''
+  hash: 5b8c576d3b7631a1252a36815ca4dbc99a02857999908fd47132065297ba5145
+  license: ''
+  license_text: ''
+./doc/posix-functions/recvmsg.texi: 
+  copyright: ''
+  hash: 6954352174e93bc859b4f4cb4d2f3108621106dc0eac7cce11fed1a3bf900d34
+  license: ''
+  license_text: ''
+./doc/posix-functions/regcomp.texi: 
+  copyright: ''
+  hash: 467aa5c6a5b8e8746e54af135c6a20a7db4192236b82e8aae0fea24c3bf6f04d
+  license: ''
+  license_text: ''
+./doc/posix-functions/regerror.texi: 
+  copyright: ''
+  hash: 851681f9c2f6d3b714a4821fa8b8221ccb948088c6a6a676321ede8ecb6e9985
+  license: ''
+  license_text: ''
+./doc/posix-functions/regexec.texi: 
+  copyright: ''
+  hash: 71275ebcea7b64e5b5a339139d33520241c8f6f2cc2ca66861b663729e14e128
+  license: ''
+  license_text: ''
+./doc/posix-functions/regfree.texi: 
+  copyright: ''
+  hash: 546e9045c4a3cd6c27e6d0587177908f4858d68ead5d3956c561ee5a6ae56a59
+  license: ''
+  license_text: ''
+./doc/posix-functions/remainder.texi: 
+  copyright: ''
+  hash: 9048696feeff04cd557d5d0dedca4a672700965097384662d135b754e54b7fbc
+  license: ''
+  license_text: ''
+./doc/posix-functions/remainderf.texi: 
+  copyright: ''
+  hash: eaf831bc14b2dcc900fa892a2e14ba7617b1e6ab61f619f0cd6f7e14d41acd88
+  license: ''
+  license_text: ''
+./doc/posix-functions/remainderl.texi: 
+  copyright: ''
+  hash: 14d1ff2d407b0012762b50554da703265c6294096c17d5ae4b14bdc14fc8596e
+  license: ''
+  license_text: ''
+./doc/posix-functions/remove.texi: 
+  copyright: ''
+  hash: 3ede2b0a88caf86dc972a636e28b9ba38caf6de6256e0e3bceba9beea59854d9
+  license: ''
+  license_text: ''
+./doc/posix-functions/remque.texi: 
+  copyright: ''
+  hash: ba75b73c8d591b696fcd813c3ef76bf5c44770df9c6fbd9ae87c697481437522
+  license: ''
+  license_text: ''
+./doc/posix-functions/remquo.texi: 
+  copyright: ''
+  hash: ea3584c21d497ada4dae115741acd1194efd92211942117063c080ae68d3615a
+  license: ''
+  license_text: ''
+./doc/posix-functions/remquof.texi: 
+  copyright: ''
+  hash: 0f8f9fedc0e9bfe935f7ff6c31311da4900518eab1a3495c3adff52fdd073454
+  license: ''
+  license_text: ''
+./doc/posix-functions/remquol.texi: 
+  copyright: ''
+  hash: ee10dc1ef5a7800459907dc568a7acc6c3cf233713b3dbefffca813daf3a8576
+  license: ''
+  license_text: ''
+./doc/posix-functions/rename.texi: 
+  copyright: ''
+  hash: 12e0eb4b7f2d1ab2b06996c40987438ed9f8b4ca2e3bd0798e28a9bfd0aabbfe
+  license: ''
+  license_text: ''
+./doc/posix-functions/renameat.texi: 
+  copyright: ''
+  hash: c6dc7142536a2a805bcece8b9c0f15fcf548fed2410b817fad4b8d005496bed4
+  license: ''
+  license_text: ''
+./doc/posix-functions/rewind.texi: 
+  copyright: ''
+  hash: 7e31de0009419f05734b5d6a322389c5e103c5cd40a060f49efd1f68da2cabb0
+  license: ''
+  license_text: ''
+./doc/posix-functions/rewinddir.texi: 
+  copyright: ''
+  hash: 42b2c06301ed85a0dfdfd8ef098bdcd6f8cf4a5198eb5fa3f0231f63e14d3ee7
+  license: ''
+  license_text: ''
+./doc/posix-functions/rint.texi: 
+  copyright: ''
+  hash: 0bdbf8e00f3fb2386cfd9a6ef340864607e19f553ea1a84aadaf6f352b8eec33
+  license: ''
+  license_text: ''
+./doc/posix-functions/rintf.texi: 
+  copyright: ''
+  hash: 04b86653c1aebb521570910a97edd79efcfb3d9d4ce5ee36b0bc12caefc93feb
+  license: ''
+  license_text: ''
+./doc/posix-functions/rintl.texi: 
+  copyright: ''
+  hash: 3cdf8671de573e8aa145192d0e4b51bdb9813c54328232493738ee146c15f55c
+  license: ''
+  license_text: ''
+./doc/posix-functions/rmdir.texi: 
+  copyright: ''
+  hash: f46fa6bd3452720b41ce3c646a159d837c815958bdb713632742c746227a658e
+  license: ''
+  license_text: ''
+./doc/posix-functions/round.texi: 
+  copyright: ''
+  hash: ad1fac248f0027fffeb846b4bcbb10d65dbb8ee2814bf99ca320dc6b76d3591b
+  license: ''
+  license_text: ''
+./doc/posix-functions/roundf.texi: 
+  copyright: ''
+  hash: a93f03fd0a866d50dae90b7ed84de5e54ee93a776770d19334d918c68e937352
+  license: ''
+  license_text: ''
+./doc/posix-functions/roundl.texi: 
+  copyright: ''
+  hash: 34c9077c2dec24f5eac8f86ac817d972e19810b75227e4b638cff1c10952f098
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbln.texi: 
+  copyright: ''
+  hash: 20b33ecc23fc5311a3eb8423dfb90ed0acc8f5e0a27ce08b33548700dcfd087b
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalblnf.texi: 
+  copyright: ''
+  hash: 721d2584694f2c17e701b77dafb1a4a0fce1b4cf75e67286c1de9b3d2bc5fc4d
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalblnl.texi: 
+  copyright: ''
+  hash: e29e5eab4e9e4a6a341613b203cb7b6c05be7c3ad6119e0e5b069d8019bbb4e3
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbn.texi: 
+  copyright: ''
+  hash: b98ad8538407e08879d31e648dcf8eacc0c0c187ac2cba1dcec79b87a7d8afe0
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbnf.texi: 
+  copyright: ''
+  hash: 6c2dfea485571431562f1b51e5920eb4bbe8499512abd58d46fb3e842ea6af67
+  license: ''
+  license_text: ''
+./doc/posix-functions/scalbnl.texi: 
+  copyright: ''
+  hash: ad72f6be73a435b5d81d01a8b5849eb4531c88a21370bcb2ad87afb73047e436
+  license: ''
+  license_text: ''
+./doc/posix-functions/scandir.texi: 
+  copyright: ''
+  hash: 19a5e174895872d8102d75603b1f0491cc13b1da4c7c4e4dd0efb3c3c64887ce
+  license: ''
+  license_text: ''
+./doc/posix-functions/scanf.texi: 
+  copyright: ''
+  hash: 7dfd669e166d9e21af87270f3155e7f1df47d71fd39bcc8b13bccc6b14baace9
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_get_priority_max.texi: 
+  copyright: ''
+  hash: 11f5ff6c55fdb90459f2389d7c1a7818fdce76b58ad1f2b38daea990e1ef5038
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_get_priority_min.texi: 
+  copyright: ''
+  hash: edadeaea746bd2c08a9d041afbd07ec8efeae648a41e6360339affd3dd164930
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_getparam.texi: 
+  copyright: ''
+  hash: 84f8a1c27e8b95d02bcf6537325ba48127e03e6b84a85899c04754859e6bb9de
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_getscheduler.texi: 
+  copyright: ''
+  hash: effbc16e72658dd54d3a4dfda735c9a847b984cac1770d3a69e21b18e3295643
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_rr_get_interval.texi: 
+  copyright: ''
+  hash: 28dde9d502544175d3e577faf43edfc9cdebc23ad5698817f93739b89eaa30ae
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_setparam.texi: 
+  copyright: ''
+  hash: 72b52136de2d388c0b20b342359f6341550f2f169138066f6506aef13dc568a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_setscheduler.texi: 
+  copyright: ''
+  hash: 09602d1144a443906cd95a7abc7338702e87e3a31a3d97685a073899186cb3d3
+  license: ''
+  license_text: ''
+./doc/posix-functions/sched_yield.texi: 
+  copyright: ''
+  hash: d2d8c8ac69459f6402005138854b6d4056187e0de6abcf753e292102ea96d34c
+  license: ''
+  license_text: ''
+./doc/posix-functions/seed48.texi: 
+  copyright: ''
+  hash: 28bdf259829fb9387b78e51eab714e073170bbcea61949755e114d1604be8e25
+  license: ''
+  license_text: ''
+./doc/posix-functions/seekdir.texi: 
+  copyright: ''
+  hash: 4f3fdb7b17387addc89235b72cd26b1de5f0bad70b0e7b33bbd312857128967b
+  license: ''
+  license_text: ''
+./doc/posix-functions/select.texi: 
+  copyright: ''
+  hash: e9ce5f847344b7fb8a70e7c53420b8235ed385d3d43466db2d604a4b87e8c5f7
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_close.texi: 
+  copyright: ''
+  hash: ac874d36dada463ddff2c441e9b401348f525c81472a7913b9f056732453f98b
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_destroy.texi: 
+  copyright: ''
+  hash: 358f0ff417eb0b678c15aa7d2c4c5a230bf8442a78f36e8ec075e0d7c6d21037
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_getvalue.texi: 
+  copyright: ''
+  hash: 9bcf8c054cef77229c7f601724f90759b075f4360424fc988f0eb35527e37c5f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_init.texi: 
+  copyright: ''
+  hash: f8c33d28ce23da0f1f9468414b072f0cafd5a250a437f9e67217d0aa46d606f5
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_open.texi: 
+  copyright: ''
+  hash: 535b9d92fa34b5d3a942d1d0c71d5b1cb895b1b3d1a0e1a40976b1aa8369eeef
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_post.texi: 
+  copyright: ''
+  hash: 33572c6870717902841189ed2faa2f22e870317e232b8a0df96ca7f464d55a3b
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_timedwait.texi: 
+  copyright: ''
+  hash: a6440ffe149ca3730afe7d0809bc0df9069248efb58db6d2a78ef3a95cce44d4
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_trywait.texi: 
+  copyright: ''
+  hash: 4ceedb230b907d2689613064f8e6d5f7d1ef7d3d3671f98c73cc49e62ded6ebd
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_unlink.texi: 
+  copyright: ''
+  hash: 0ee14f8c63cb4f610209419ac2a952f0baa08190ba720bd498efa60cb4813ad2
+  license: ''
+  license_text: ''
+./doc/posix-functions/sem_wait.texi: 
+  copyright: ''
+  hash: ef6661da464b7311b32b8ecf0428d6ade99f613ecf710a160c964cf9da984909
+  license: ''
+  license_text: ''
+./doc/posix-functions/semctl.texi: 
+  copyright: ''
+  hash: a727b206d89f2f607838a05121a9ac9fb8bbbf2b261fec2b53405bade9fc0e8a
+  license: ''
+  license_text: ''
+./doc/posix-functions/semget.texi: 
+  copyright: ''
+  hash: 3f7d131455914cf554feafcf7c52b429e71825175d3554a71018da6cbd964bfc
+  license: ''
+  license_text: ''
+./doc/posix-functions/semop.texi: 
+  copyright: ''
+  hash: 1174ca67c0eb6ca2cacbe0fbf7493c05e89c9479194549f198df5c92e8c6b935
+  license: ''
+  license_text: ''
+./doc/posix-functions/send.texi: 
+  copyright: ''
+  hash: 17bc1f1b9e840a2c9d5faeb78362adfb9876d3b22c19eed265a563b48712ba65
+  license: ''
+  license_text: ''
+./doc/posix-functions/sendmsg.texi: 
+  copyright: ''
+  hash: f483c1453c90cde160dee58c7e1cbbb5710ae07f304e0ebb96b04d68d1040e21
+  license: ''
+  license_text: ''
+./doc/posix-functions/sendto.texi: 
+  copyright: ''
+  hash: 9e49433726ffd274b30a586229b8e7b56b963711aa9363f3fde85e68eeaeabcf
+  license: ''
+  license_text: ''
+./doc/posix-functions/setbuf.texi: 
+  copyright: ''
+  hash: c1b80b2010ab858159853eb49c404f80e62c63fcf5efa4f8b361656ec17d8acb
+  license: ''
+  license_text: ''
+./doc/posix-functions/setegid.texi: 
+  copyright: ''
+  hash: 4eb55b5c084cfe20710d1e8373c22fa6391501c1f03ffb45c8a65a67cdce44a2
+  license: ''
+  license_text: ''
+./doc/posix-functions/setenv.texi: 
+  copyright: ''
+  hash: 9c4d89ace2b70d38c942c3f8944928cccef4db906dd979b8657e523b25e949d0
+  license: ''
+  license_text: ''
+./doc/posix-functions/seteuid.texi: 
+  copyright: ''
+  hash: 11065f33239479b6f7e52c623212e0e108290ba7a2f225b2fe71d52257a5054f
+  license: ''
+  license_text: ''
+./doc/posix-functions/setgid.texi: 
+  copyright: ''
+  hash: 780d6ade51dbdac0c12016d3fbf16bb2421e62eb4aa70a733b243488d132023c
+  license: ''
+  license_text: ''
+./doc/posix-functions/setgrent.texi: 
+  copyright: ''
+  hash: ac27d566a363f416471a065bb4b80dfbb1b3d72c6f44d262c47b9bebc5db0069
+  license: ''
+  license_text: ''
+./doc/posix-functions/sethostent.texi: 
+  copyright: ''
+  hash: 725baa41c0d9b152ca68a043ff588e0e6db3c11f5ef2b9a7b7628389905bb4d2
+  license: ''
+  license_text: ''
+./doc/posix-functions/setitimer.texi: 
+  copyright: ''
+  hash: 3852bfb85fac9dc66769defed010733ef020845a51b59b8d8ec679dd20aa2d81
+  license: ''
+  license_text: ''
+./doc/posix-functions/setjmp.texi: 
+  copyright: ''
+  hash: 22af0a92b03cbb7a563685898895441b261083b6684d0ee9a48f47ed26891ea4
+  license: ''
+  license_text: ''
+./doc/posix-functions/setkey.texi: 
+  copyright: ''
+  hash: 240a7ea97fba8b9ff6d9a47fa42c31b3e28640d0e8e5981f317b1d9b720e73bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/setlocale.texi: 
+  copyright: ''
+  hash: 817b6e7446ec7a47293c021378b27a59878f207483191864702dda72c8b57585
+  license: ''
+  license_text: ''
+./doc/posix-functions/setlogmask.texi: 
+  copyright: ''
+  hash: 765d03a247b4621b0d48e4590dedcc6a0d2ec29510e0404540bc61421ae9e253
+  license: ''
+  license_text: ''
+./doc/posix-functions/setnetent.texi: 
+  copyright: ''
+  hash: c2c9917076799c5935791b59d9d3ac025ed0ab177cd6b2dbfc31693ec9dd0ed6
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpgid.texi: 
+  copyright: ''
+  hash: 7c2356192fa6799002224dc1a24029063c4cc90586ebfc253e3559145369bb56
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpgrp.texi: 
+  copyright: ''
+  hash: e51777dacdd7dc22f04da87cbeee294893c758828e56420309995df635994374
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpriority.texi: 
+  copyright: ''
+  hash: c87be1e3b56994f1042308d42e8bdc660f03f0e69c82ee6783262e448151014f
+  license: ''
+  license_text: ''
+./doc/posix-functions/setprotoent.texi: 
+  copyright: ''
+  hash: 884e72272c0ebda015c9d69e01182a99e021068f7839b75d276086d994d0fbea
+  license: ''
+  license_text: ''
+./doc/posix-functions/setpwent.texi: 
+  copyright: ''
+  hash: 9396b76d7feb617576732f7d10cbf77a866f72f161546b7662bad0b1a54081a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/setregid.texi: 
+  copyright: ''
+  hash: 6bcd6d07ac44360dc656876796a21f972bb05480d9bf57323e40fc5ca550dae3
+  license: ''
+  license_text: ''
+./doc/posix-functions/setreuid.texi: 
+  copyright: ''
+  hash: a2894c1abc3680e75c9c62fe31090120166f9edff985537da0b3b07621a7b130
+  license: ''
+  license_text: ''
+./doc/posix-functions/setrlimit.texi: 
+  copyright: ''
+  hash: 5958d803819871762a9194cd467efc0bf2d71ad529a8dbc42aeb3e56d18ef353
+  license: ''
+  license_text: ''
+./doc/posix-functions/setservent.texi: 
+  copyright: ''
+  hash: 4140e3b3d42a1e14ceb0d81d7204b6f59b76655866b6693950bfecdae9605d99
+  license: ''
+  license_text: ''
+./doc/posix-functions/setsid.texi: 
+  copyright: ''
+  hash: 5420e9cae04273dfc040f5832b9174b5564f4b38e482b274ecc0e0a8b17bc2c5
+  license: ''
+  license_text: ''
+./doc/posix-functions/setsockopt.texi: 
+  copyright: ''
+  hash: bd5dd31491d9fba4a723fbc708f0f984a77f61bacefaf2fc2ca396fcafc0fe34
+  license: ''
+  license_text: ''
+./doc/posix-functions/setstate.texi: 
+  copyright: ''
+  hash: 7b70df59e5d17161587200bda69c41606bc0d74689c8ebe00a6fe3d6b89e534e
+  license: ''
+  license_text: ''
+./doc/posix-functions/setuid.texi: 
+  copyright: ''
+  hash: 6d8ea2173f4dd28ad1e91fef87b91f4b37f312d94ecde8c2ea7a1def4b20af2c
+  license: ''
+  license_text: ''
+./doc/posix-functions/setutxent.texi: 
+  copyright: ''
+  hash: c888acebdd69ac6f546bde407b3b5ca347fce9a4abc3738e52bf16116e4782ac
+  license: ''
+  license_text: ''
+./doc/posix-functions/setvbuf.texi: 
+  copyright: ''
+  hash: fbfcee6cf17813046c5d7770e3e28de66747fae03b99febcc83a7afd709adb1a
+  license: ''
+  license_text: ''
+./doc/posix-functions/shm_open.texi: 
+  copyright: ''
+  hash: 711cb8029e21657fbc064d404ae7c2ef07e04ac28a7d26aa81a85561f93282bb
+  license: ''
+  license_text: ''
+./doc/posix-functions/shm_unlink.texi: 
+  copyright: ''
+  hash: 35c8021da60f69c9ebcff71354f190dd9ee08ceb621dfcf03648e74f82ff0abd
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmat.texi: 
+  copyright: ''
+  hash: af47252558f36f307c6ce55289a619bde06542814c0df5fe5c6eee825741498c
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmctl.texi: 
+  copyright: ''
+  hash: bbdc41b3831e90eb39d93d9959b3a97aebd44e0ad7838445371d377f11831af0
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmdt.texi: 
+  copyright: ''
+  hash: b232456ce946eab53cb5c9dd93b637d707efd563a3002b96feae52b49bf35788
+  license: ''
+  license_text: ''
+./doc/posix-functions/shmget.texi: 
+  copyright: ''
+  hash: 1d43d652e94e8910fa095f710d53122c2eb95d2f07f9b0d0dcba635a7c51ec84
+  license: ''
+  license_text: ''
+./doc/posix-functions/shutdown.texi: 
+  copyright: ''
+  hash: 29fd2d2990cf30cf14c302f76697e11d96f31a9d4e14073f070bd38a84a0bdda
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigaction.texi: 
+  copyright: ''
+  hash: 3cdd81c159f9d0dba0a772d6ee39c302d310b9bc0c05293ff05fc4a08daadf1d
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigaddset.texi: 
+  copyright: ''
+  hash: 87d0a09d5c3d0fa0a9ad87967175e1c39afbf2d4bb335cdae4e557454163fd5f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigaltstack.texi: 
+  copyright: ''
+  hash: e8985e3e771fbc1c26d97574a451d0a10395aceb70a1d365d4144ca3045b4de4
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigdelset.texi: 
+  copyright: ''
+  hash: 6ab4bcad934cc4107635ba22f4edbec51c53bd010e628837c8a794db9106befb
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigemptyset.texi: 
+  copyright: ''
+  hash: 14e1a070f0a75d6ed8d5d0c03a87fb88c716371c984180c7bff89e802c58c46b
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigfillset.texi: 
+  copyright: ''
+  hash: 3b2a1a255cefe69a417f80a0edf260888c0db54bfdd3d12424bb30b31df0c59d
+  license: ''
+  license_text: ''
+./doc/posix-functions/sighold.texi: 
+  copyright: ''
+  hash: c28922c54cf2987fd419a7e53c1c070521cdcf17e4c18b7cd7dcb213e7f6006c
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigignore.texi: 
+  copyright: ''
+  hash: 3ccf3776aadb2d683f46c2e2259b1059bf8f109cbf6322bd4534dbfb315a472c
+  license: ''
+  license_text: ''
+./doc/posix-functions/siginterrupt.texi: 
+  copyright: ''
+  hash: 3349e08d5be99e38c5a03fe7b7d459078dcd284fd0149a41c075402bbfb7c405
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigismember.texi: 
+  copyright: ''
+  hash: 49eccb6e25f6f97abb2511bd20e9d3e01769d0bd25e1401230b3a252e95c213f
+  license: ''
+  license_text: ''
+./doc/posix-functions/siglongjmp.texi: 
+  copyright: ''
+  hash: 24a32bca7cf45f9d1b12aeeda5dcb11dd4fd66f53d74c27d12bd42e474c9d1d0
+  license: ''
+  license_text: ''
+./doc/posix-functions/signal.texi: 
+  copyright: ''
+  hash: c518a9f0387ab90d8b170e72d3583f762ac4a05461790508d01beab9ab3d8558
+  license: ''
+  license_text: ''
+./doc/posix-functions/signbit.texi: 
+  copyright: ''
+  hash: 9e6a47f6d9259e813d6797c19a71415f8e4647438247ff24e8e2424a0a565702
+  license: ''
+  license_text: ''
+./doc/posix-functions/signgam.texi: 
+  copyright: ''
+  hash: 3ef7a55a9465be68ba43768332914144bd6c2c173b9a7a9a2e4b07f33121c7ed
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigpause.texi: 
+  copyright: ''
+  hash: 90fce48a0d49ab718dd652a5a5a87668ce9617dad7ff70874f4b1f7460432841
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigpending.texi: 
+  copyright: ''
+  hash: 2de6219e44b909caad92df6778f831f8b2a15b1ccf7e05f729d33dd54c5fc27a
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigprocmask.texi: 
+  copyright: ''
+  hash: 7811aa27382f44d47c7d149b3806ae14f1198c12a3dd63ebcf6f243a6558b74f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigqueue.texi: 
+  copyright: ''
+  hash: 9c5d6f633c6f30e8fc0156ab80d63f803626e6f8bb5643e76ab141df5110c706
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigrelse.texi: 
+  copyright: ''
+  hash: 65be3cf6a9cbb69df7b4747865bd7efa29653d3e971d39e3aa1419deb39a80ea
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigset.texi: 
+  copyright: ''
+  hash: 817f69cc205c41f70b80ea90ab05062b190f96036502febe7c854c33b17a253a
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigsetjmp.texi: 
+  copyright: ''
+  hash: cc4ca79a3fb359807d0b9b990ec85be94f2c178350a771f908b5256c556a8817
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigsuspend.texi: 
+  copyright: ''
+  hash: 9f9cff8e739048a9f60008555c57b52b49ef7d90ca097e08f8988d24a4c1a8a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigtimedwait.texi: 
+  copyright: ''
+  hash: 0d47c3fdba144dd0c0aa13adc6924d3275b3cfec99c840ed982482cc8d729c12
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigwait.texi: 
+  copyright: ''
+  hash: 6dddd4ba0f84a96575d582a6ff6afe6edf8ed9f95b14fa5a75a0e30525066682
+  license: ''
+  license_text: ''
+./doc/posix-functions/sigwaitinfo.texi: 
+  copyright: ''
+  hash: 8519df8c6af7a55c5e9a477e0ea273270f47ecec2e180025c7e26a2992b94378
+  license: ''
+  license_text: ''
+./doc/posix-functions/sin.texi: 
+  copyright: ''
+  hash: f676105dffa7de8f92a0b6f8f57abef62d5cd3185cfbbb94f4dcc80a1d2a0170
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinf.texi: 
+  copyright: ''
+  hash: 6b533d6508b0c237bc96b621b1f7e8f506f848ceff578dc4c25a0739ff026e70
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinh.texi: 
+  copyright: ''
+  hash: eee78b2f05fd0d6a7ca4c90460bb0440ce78fa090a075e3ec74f104b18b887f1
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinhf.texi: 
+  copyright: ''
+  hash: 15948ac5234b4e3f9763f212e52c490c8d917e214e3314f63e42d48a96c66721
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinhl.texi: 
+  copyright: ''
+  hash: 4ee1ad6e044636412b8f958d57116513ef7412caaa45b936796b888f154f96e9
+  license: ''
+  license_text: ''
+./doc/posix-functions/sinl.texi: 
+  copyright: ''
+  hash: 10f6d3e1420c92efabdee4ff2ec16a1c2a547530c24cd0a0fd564d70e751838e
+  license: ''
+  license_text: ''
+./doc/posix-functions/sleep.texi: 
+  copyright: ''
+  hash: 4cee9d14a9da82cb86de0e74f1bf4ba2a685783e472474fcef506b8a3a209ff6
+  license: ''
+  license_text: ''
+./doc/posix-functions/snprintf.texi: 
+  copyright: ''
+  hash: 6c65c8fb2c2be3898412015204e121e2d318c68b72bb30da42e1e97638cfc92f
+  license: ''
+  license_text: ''
+./doc/posix-functions/sockatmark.texi: 
+  copyright: ''
+  hash: 920043e499988efb4a6ecd649dee0e51423706cdf1b627d287ee498e733a5e9d
+  license: ''
+  license_text: ''
+./doc/posix-functions/socket.texi: 
+  copyright: ''
+  hash: bb5c8946b1533c378b8b51008463815ff926bf3edc8d434945008788336605e6
+  license: ''
+  license_text: ''
+./doc/posix-functions/socketpair.texi: 
+  copyright: ''
+  hash: 770e250df219be1c39ad0bc54906007f1364594d855db008855fd5027ed6fd17
+  license: ''
+  license_text: ''
+./doc/posix-functions/sprintf.texi: 
+  copyright: ''
+  hash: adef99bf429ec5dc65bbb09f6b18391699c7c0b404cf95ba34bb4db35c474dc9
+  license: ''
+  license_text: ''
+./doc/posix-functions/sqrt.texi: 
+  copyright: ''
+  hash: 7bd904a48d9461c5ab7ec22f185475d3849dd2b798f72cb54986fec482103eec
+  license: ''
+  license_text: ''
+./doc/posix-functions/sqrtf.texi: 
+  copyright: ''
+  hash: 440a2d8390eee454a3f25219d743c8e847045e11fc366fcf2ab6272bff843532
+  license: ''
+  license_text: ''
+./doc/posix-functions/sqrtl.texi: 
+  copyright: ''
+  hash: 527035958e9ce2e375b8e03b8d1d37300c3da351d34b8c0eff9e1aba9b15ff54
+  license: ''
+  license_text: ''
+./doc/posix-functions/srand.texi: 
+  copyright: ''
+  hash: b21bd4917b432b6818ebe2f3cbadd1ecb2903b11d0158f2a2af18294b9026cc8
+  license: ''
+  license_text: ''
+./doc/posix-functions/srand48.texi: 
+  copyright: ''
+  hash: d80029584212c15658a5fd5e7e068068dfdf634b4f7e0411b2ef09a698ee7b3c
+  license: ''
+  license_text: ''
+./doc/posix-functions/srandom.texi: 
+  copyright: ''
+  hash: a10bfc704c425ab26485a296899f84e820bede1c112a19af796ee0bdce64d078
+  license: ''
+  license_text: ''
+./doc/posix-functions/sscanf.texi: 
+  copyright: ''
+  hash: 639cf4a9a282985958da828fe209b80969230cb51e066f6f4fdaf79063d373cc
+  license: ''
+  license_text: ''
+./doc/posix-functions/stat.texi: 
+  copyright: ''
+  hash: 8d8fe8d3a054025b09c15989283e7d4754db8266583f7eb712f079efc1893db4
+  license: ''
+  license_text: ''
+./doc/posix-functions/statvfs.texi: 
+  copyright: ''
+  hash: c157e04fe064fb845027f0118a7978e9efb42c003ebd892582269ef5f45d64e4
+  license: ''
+  license_text: ''
+./doc/posix-functions/stderr.texi: 
+  copyright: ''
+  hash: 7632aaef92a1ca4ce28394d00756b3e8919b15817cbf548d8402404408cce9e7
+  license: ''
+  license_text: ''
+./doc/posix-functions/stdin.texi: 
+  copyright: ''
+  hash: a2f171d9774add6803c2df2f4d78912d32460e395041035c75c15c3216501ae2
+  license: ''
+  license_text: ''
+./doc/posix-functions/stdout.texi: 
+  copyright: ''
+  hash: 1820d40f78e54bd1362377e4b2d5f8f9a9da71a37a5e7cb5888e97a455e2b8f9
+  license: ''
+  license_text: ''
+./doc/posix-functions/stpcpy.texi: 
+  copyright: ''
+  hash: ec7fba60db1ae08ec7e335c879369c5952909faa0b097d50f883bf4067adc92b
+  license: ''
+  license_text: ''
+./doc/posix-functions/stpncpy.texi: 
+  copyright: ''
+  hash: 594dc6a1a62217496f0a4a517ccb4d256911977cf21ad5649ae9ae2c5cb260ec
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcasecmp.texi: 
+  copyright: ''
+  hash: 7f49d3eceda3f51eb6ede418807164200915a15c26aabee9e3c678f79455ccfc
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcasecmp_l.texi: 
+  copyright: ''
+  hash: 2d4cf5c896e1982e35fb0a9e338fe2e67c0c87e9eac900de5045c1af7035bbb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcat.texi: 
+  copyright: ''
+  hash: a0407da6c606d87607b8e64140519deb5030ee90004ac26fb72a067c9c0cfbd8
+  license: ''
+  license_text: ''
+./doc/posix-functions/strchr.texi: 
+  copyright: ''
+  hash: 91fade2e19fa83ad5590281a8e15b2056505d2812d8c5741760a5ad0dbea0bff
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcmp.texi: 
+  copyright: ''
+  hash: 7fbbcf029f56138b09c72dda4b9ef0fecc39fbed9deff9b401c58a58d9a0666d
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcoll.texi: 
+  copyright: ''
+  hash: ee188da4f400e65ed26ff9866ff2b8bc30f430eb0512b332087ea2c2cd7a5a7f
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcoll_l.texi: 
+  copyright: ''
+  hash: edfafaa4cc6ba9b3a175802811fc246df5f91d0e63ab0790111490fde6c12719
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcpy.texi: 
+  copyright: ''
+  hash: 2b0a1e8d63a747c6e10fdbdea6ebb0c24d6c6ca2a7c397a53b918eeb2ef6ff3d
+  license: ''
+  license_text: ''
+./doc/posix-functions/strcspn.texi: 
+  copyright: ''
+  hash: 94cc29735d1e83beac880fb97a531b0c6f2a2783f478fa86e97ed03beb2b9920
+  license: ''
+  license_text: ''
+./doc/posix-functions/strdup.texi: 
+  copyright: ''
+  hash: 045dfd18a8b270e77e36277809c55abff0128a0b9029d4decc6afaeed460a08b
+  license: ''
+  license_text: ''
+./doc/posix-functions/strerror.texi: 
+  copyright: ''
+  hash: b8b53ff22e7edfdd1ffa1e448407b39e80470f5bce87c775e406765a97263fe7
+  license: ''
+  license_text: ''
+./doc/posix-functions/strerror_l.texi: 
+  copyright: ''
+  hash: a02032d1af6e599476219e5ff404c30bede78cee58da6ccb0197d0c5e7d9c5a6
+  license: ''
+  license_text: ''
+./doc/posix-functions/strerror_r.texi: 
+  copyright: ''
+  hash: 62874d18f06f58af8ef7a84e900cbf6a0912c558dfd0a20144dc6cc45bfb2c48
+  license: ''
+  license_text: ''
+./doc/posix-functions/strfmon.texi: 
+  copyright: ''
+  hash: 9ee64b73d67aa190bec10ff662e522af5c95efa58b091cf0b6b95ab6dea7f54c
+  license: ''
+  license_text: ''
+./doc/posix-functions/strfmon_l.texi: 
+  copyright: ''
+  hash: 951fbe0fd04da1ac6ec3e5d5e9e25a1ffff8cfbe2af8461f983b46a8b8087809
+  license: ''
+  license_text: ''
+./doc/posix-functions/strftime.texi: 
+  copyright: ''
+  hash: 2179be9ea7f8728eb9666e1eaf244afabb1776e0aa5cfa301eb494dda908f72c
+  license: ''
+  license_text: ''
+./doc/posix-functions/strftime_l.texi: 
+  copyright: ''
+  hash: 2b951eeeafdb7d06f61bd455bfbe223cb6aa0dd8c6bbe1f207dd5d52d07b13a4
+  license: ''
+  license_text: ''
+./doc/posix-functions/strlen.texi: 
+  copyright: ''
+  hash: 9d334c502f628671c63c034801c7e852a2e7800124aa68628543bdb69ecc5684
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncasecmp.texi: 
+  copyright: ''
+  hash: e5148eae134f9d79ab3966b17c5120ad16132967ed193205abdc9f704ab59d6c
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncasecmp_l.texi: 
+  copyright: ''
+  hash: 3b874f7e054f2f3d2998d2cce8ffd7973b63dab2a40949e464bfd1d728459114
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncat.texi: 
+  copyright: ''
+  hash: 654e14224e9e3ed7ebad2de0510dbed9efce12256abd7259258bec7ae5c780b0
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncmp.texi: 
+  copyright: ''
+  hash: 2c3a13c7830cccc3f0be728c0540ddb7ff29f8351df316dfb24b4f1f921aea7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/strncpy.texi: 
+  copyright: ''
+  hash: 4c05ddf672725788270b9d16711cdbddf4f81bbd16e806664314c222a0a8ecc0
+  license: ''
+  license_text: ''
+./doc/posix-functions/strndup.texi: 
+  copyright: ''
+  hash: ec1c126888ea4ef0b27a3f98df47b67a5ec5102a51b9885ba7336ee6784fc6b2
+  license: ''
+  license_text: ''
+./doc/posix-functions/strnlen.texi: 
+  copyright: ''
+  hash: 354bc895a0b87fd89bdd8ee323c4d2ec021252f194ef630ec03cc4d8a1fb7554
+  license: ''
+  license_text: ''
+./doc/posix-functions/strpbrk.texi: 
+  copyright: ''
+  hash: 9557cbb965eb68e1a8e3a75904d406cdac427d63f8d312e48f06b63112641189
+  license: ''
+  license_text: ''
+./doc/posix-functions/strptime.texi: 
+  copyright: ''
+  hash: ef3417cc5487eadb9fc54afbab9f4462fdae78770f52efe81eb8c9362b1a8e11
+  license: ''
+  license_text: ''
+./doc/posix-functions/strrchr.texi: 
+  copyright: ''
+  hash: a4a53fda2b5af669b4617b1bdbcafe0fe580a8fb9d5d8d9d5de32baedcd16e80
+  license: ''
+  license_text: ''
+./doc/posix-functions/strsignal.texi: 
+  copyright: ''
+  hash: 58c763d79113d00d2daf87b0ea1ca853653533082ecf927ef77d737ebb214c96
+  license: ''
+  license_text: ''
+./doc/posix-functions/strspn.texi: 
+  copyright: ''
+  hash: 47c5ad5b37dcc46737f8b28f1398366d4240315e8f53ece412d032dc9bc7b440
+  license: ''
+  license_text: ''
+./doc/posix-functions/strstr.texi: 
+  copyright: ''
+  hash: 51205fda2f8406dc3daf66d5ea624d5963fe65610dfab99e46a1785fca95ec46
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtod.texi: 
+  copyright: ''
+  hash: adba58dc750ac05f63ccdc0320c3ea4c0880205e3336a5666aa8cbdbc5fb5cf1
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtof.texi: 
+  copyright: ''
+  hash: f83812681f499b58973a270204a0b5d82f5efe872f0ddc2ffe61902c91845a14
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoimax.texi: 
+  copyright: ''
+  hash: b479a9a1a65dddbcd340e536ac8bf12ab8474dec475b665594875c836c7b0c7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtok.texi: 
+  copyright: ''
+  hash: 76ae3da669ccced4bbe8c116203fe16def6351c6762a852bbf1a5f130e1b71aa
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtok_r.texi: 
+  copyright: ''
+  hash: 5532819e105838ee4483b268600ad0ab59dbff5a536f814ad80c711e8f0fdaac
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtol.texi: 
+  copyright: ''
+  hash: 478cd81757360e8ff9c6d66c0d859402961adac17a3166c02d8291432b546cc3
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtold.texi: 
+  copyright: ''
+  hash: cc0d00fe20a006116f837e389883fd2c3bedef7c16b2e55d8f379052aa8f33af
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoll.texi: 
+  copyright: ''
+  hash: 3aa3df77f158c0f7cc3a99994f2281a6a5ba800aa43fcdbdbd265c4fb4bab884
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoul.texi: 
+  copyright: ''
+  hash: fa2e866b9953be91e9970e632d9eb90cf63d61c43c2f431084379e169bd72bb1
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoull.texi: 
+  copyright: ''
+  hash: 7672cc8ef139fb96545da9219cbb7e967b8365abd92d12f235ead6afddfdea98
+  license: ''
+  license_text: ''
+./doc/posix-functions/strtoumax.texi: 
+  copyright: ''
+  hash: 5d686d899707d3f7ed00e8545527d6cb3334bddbf769f422c9077c9c908c59f7
+  license: ''
+  license_text: ''
+./doc/posix-functions/strxfrm.texi: 
+  copyright: ''
+  hash: 38eb4167ca28913e09d1aa3cebce875f918b4004b3def72276795b854da15103
+  license: ''
+  license_text: ''
+./doc/posix-functions/strxfrm_l.texi: 
+  copyright: ''
+  hash: 5877b7bc3ae18925e11da5490d2bf91124f91afffa86d7adbc9daee59b9ce3b8
+  license: ''
+  license_text: ''
+./doc/posix-functions/swab.texi: 
+  copyright: ''
+  hash: 5f1b9e4cd038dfa4ba9b6cced84f7ca4a093bcc874734b7308a6c9f908e2a979
+  license: ''
+  license_text: ''
+./doc/posix-functions/swprintf.texi: 
+  copyright: ''
+  hash: 05d43b5965871120633aaa8e07db8b65e0b5c76f32a79209886f5cd9808d9574
+  license: ''
+  license_text: ''
+./doc/posix-functions/swscanf.texi: 
+  copyright: ''
+  hash: bdb33f918f65de4079d17d12db4ce89974b98874586b5239708ca87ea604bf47
+  license: ''
+  license_text: ''
+./doc/posix-functions/symlink.texi: 
+  copyright: ''
+  hash: 8ab46669c8aa3f1a94011e96ead35ad94b6b860acfdf93045e2f5fcb4abe68a5
+  license: ''
+  license_text: ''
+./doc/posix-functions/symlinkat.texi: 
+  copyright: ''
+  hash: 74823e16d2e2127a2cea8f8012bde6f13eb46e16b92b95378e44ff1ccdfbe489
+  license: ''
+  license_text: ''
+./doc/posix-functions/sync.texi: 
+  copyright: ''
+  hash: f3254dc3fe6e69ccec6ed1fabcc4a937b762d47399b42417b4602600f7a74e02
+  license: ''
+  license_text: ''
+./doc/posix-functions/sysconf.texi: 
+  copyright: ''
+  hash: 7fa91e5905cb666480886ed1fbfcc8bd6143aa15ad991c50e185713932e3954d
+  license: ''
+  license_text: ''
+./doc/posix-functions/syslog.texi: 
+  copyright: ''
+  hash: 3fa7a8bce58b4fc35d8de2b7f83302751a10774cd9c47317a649594a412d85a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/system.texi: 
+  copyright: ''
+  hash: f2f18381b4fc011d3e3ff57014455b7ad72095ab5dfcd5110c38ad243b1a574a
+  license: ''
+  license_text: ''
+./doc/posix-functions/tan.texi: 
+  copyright: ''
+  hash: 2548baf13b89054a685577793dcb420503cb01784088d0b67f0b8d4ebef7619e
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanf.texi: 
+  copyright: ''
+  hash: a1ccbad3ea8fc17a79b7965bd07071f3f7a644b3ac32045136f0e3d23ec6da47
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanh.texi: 
+  copyright: ''
+  hash: 323d1753b2bff97aa6a4d046eb95e878347cfbcce6759c4063bcb2a2700fcac6
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanhf.texi: 
+  copyright: ''
+  hash: 585f42d0c0f485ddd0481ca748825a4c1120748889c8bf8cfb92d8e2896045d0
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanhl.texi: 
+  copyright: ''
+  hash: 78a63792dc3fb91f708b6fee2002e2f3cbfd37e4de31be1eb5788e483f6db288
+  license: ''
+  license_text: ''
+./doc/posix-functions/tanl.texi: 
+  copyright: ''
+  hash: 506a2a087c69a32413365c5cc59a894210da81f58ffa38d9342524d45ac84243
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcdrain.texi: 
+  copyright: ''
+  hash: db2ff21ff51f9c0ea21890eafa4e14d4cdcae60837f9aad0aac6d5ef96f769f5
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcflow.texi: 
+  copyright: ''
+  hash: 2cf29c5dda1ad174414674a2cf89d10e0da61f1bde45d97c7b529e04fcbc41bd
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcflush.texi: 
+  copyright: ''
+  hash: e8023b50addee8b28e96ff5b5fa800c3d112d7fe5954fd200142697499fe9a31
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcgetattr.texi: 
+  copyright: ''
+  hash: 4df9e953232c6815dc79daf79e34deec796ff7d1a571df03a7286e75ac5bf9f2
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcgetpgrp.texi: 
+  copyright: ''
+  hash: 929a9e3c434cd83961f1091fd879ec9319832d9a1dcc32cee93a0a2e113a1fd2
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcgetsid.texi: 
+  copyright: ''
+  hash: 51246de9b6b65dcd29ae45a202226470a5c414dd3d410f555ddd4843cd7f4300
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcsendbreak.texi: 
+  copyright: ''
+  hash: 75192304ee0383d9d9794c92e1a21890b0f0b483a5728e8c855fd8465e3e405f
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcsetattr.texi: 
+  copyright: ''
+  hash: 6cb8777002ba2e5fa4ee6b5b5b24bb8f26d030711132e546d4024dca56f3143c
+  license: ''
+  license_text: ''
+./doc/posix-functions/tcsetpgrp.texi: 
+  copyright: ''
+  hash: 5f5d907f551275116726385beb40b9a93cc627d3ec22cc80438ab198ef99b131
+  license: ''
+  license_text: ''
+./doc/posix-functions/tdelete.texi: 
+  copyright: ''
+  hash: 743411155abe9d4d6ea3db338cb01d5793ca8941833126cf12c40c7a1a62fba6
+  license: ''
+  license_text: ''
+./doc/posix-functions/telldir.texi: 
+  copyright: ''
+  hash: 11cc06c4ebed4b75dd250b1e0d7f6c484c5efd024f99cc72605dee3dd4e37289
+  license: ''
+  license_text: ''
+./doc/posix-functions/tempnam.texi: 
+  copyright: ''
+  hash: 5374a2d9bda620f20d7b0e7ff1338996187c94b68069775c6843bec9cbd83307
+  license: ''
+  license_text: ''
+./doc/posix-functions/tfind.texi: 
+  copyright: ''
+  hash: ae8afd2eeb59398111a80bc961cca20e8d133a9bb048511d1f4306337d1c6cb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/tgamma.texi: 
+  copyright: ''
+  hash: 5ca38955dab4ce6bfd9f61431c2c951e0a15408d7badaeb3a6f04de57a479c8e
+  license: ''
+  license_text: ''
+./doc/posix-functions/tgammaf.texi: 
+  copyright: ''
+  hash: 99ee30fd4ccc81ec31d37b8c92e5f73f72aa25df0ecc6a890e333694d95aa450
+  license: ''
+  license_text: ''
+./doc/posix-functions/tgammal.texi: 
+  copyright: ''
+  hash: a34594b5d992fbd9d2ee3d630e41c30a2933670fc3c919693b58fe75eb281688
+  license: ''
+  license_text: ''
+./doc/posix-functions/time.texi: 
+  copyright: ''
+  hash: 16c2fb4377781ee1d83d384004670abaaa5b4340f5a5d3fa90b3a5e75a552f88
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_create.texi: 
+  copyright: ''
+  hash: a78b5d9fddb3b0e38eb12f1ad442e64b16db90732893875b4d6bae5341152518
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_delete.texi: 
+  copyright: ''
+  hash: 2c2e487fad74e481ec0ef80f805bc04993d69f6b50c2f97c3757b2b29573dc61
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_getoverrun.texi: 
+  copyright: ''
+  hash: 23232ec05fbd7834bad0c5dad506c88ebe2c884fd8c303b913f79ba31c76fc6f
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_gettime.texi: 
+  copyright: ''
+  hash: 7e92301a5ff64562c7cd009453b91b9be29abf75c1ef65daefc14ff865249300
+  license: ''
+  license_text: ''
+./doc/posix-functions/timer_settime.texi: 
+  copyright: ''
+  hash: 8bfaf4e88066cc93846df1a23d788fabf61c3be89fdd3195f934c2479e16123c
+  license: ''
+  license_text: ''
+./doc/posix-functions/times.texi: 
+  copyright: ''
+  hash: 4b480d61e6dcfe3f0b24cb82dc5d20be0bb6d167ec66c561c37255751821f969
+  license: ''
+  license_text: ''
+./doc/posix-functions/timezone.texi: 
+  copyright: ''
+  hash: b83ab677215817b1528836ef12de7773c8adbdbb48e495ef2c7a1ab5dd616c7b
+  license: ''
+  license_text: ''
+./doc/posix-functions/tmpfile.texi: 
+  copyright: ''
+  hash: edbab21902041e8d278c6745d0290e1659e7d0a29f3f0b6583bc7b860136e14a
+  license: ''
+  license_text: ''
+./doc/posix-functions/tmpnam.texi: 
+  copyright: ''
+  hash: 9f8cf065941f401bc1e26df99d907d69353ab52d98c46fc54127b405a144a3a9
+  license: ''
+  license_text: ''
+./doc/posix-functions/toascii.texi: 
+  copyright: ''
+  hash: a97da9d9fd148dad24bcad63d57d69efb5d18fb115eab3e85e04f1a5c4d51e4e
+  license: ''
+  license_text: ''
+./doc/posix-functions/tolower.texi: 
+  copyright: ''
+  hash: 196548b9522eb8b3c56f209a99d1e13daf87f5f7f2dcd8a1b88eaa49180bbce9
+  license: ''
+  license_text: ''
+./doc/posix-functions/tolower_l.texi: 
+  copyright: ''
+  hash: ea6dc968b7beb65776cd2184cf2b9b1504f25b58bbcb22ba1c8ae30e387cfe08
+  license: ''
+  license_text: ''
+./doc/posix-functions/toupper.texi: 
+  copyright: ''
+  hash: e2defa72d3095d58b3ba26fce4a0aa35b98f40a3f1e08be65e7490c9ed2dc142
+  license: ''
+  license_text: ''
+./doc/posix-functions/toupper_l.texi: 
+  copyright: ''
+  hash: 20eedfcf323d2479bb4dbbd241cc190f8ff601fe0516815011c12011b4574cbd
+  license: ''
+  license_text: ''
+./doc/posix-functions/towctrans.texi: 
+  copyright: ''
+  hash: 8a1e03793aab23ee1d7076c4d9319a4f1b361362e121fa37248bd3503d4a4665
+  license: ''
+  license_text: ''
+./doc/posix-functions/towctrans_l.texi: 
+  copyright: ''
+  hash: ce31c960b403299b70c3a391016c626884a941aa1cbfcce216840436bf7b7b37
+  license: ''
+  license_text: ''
+./doc/posix-functions/towlower.texi: 
+  copyright: ''
+  hash: edd5f5eb25dfcebf7dc296ba43b616d3b4002387d649c2abaa1a044b20643a8d
+  license: ''
+  license_text: ''
+./doc/posix-functions/towlower_l.texi: 
+  copyright: ''
+  hash: 0ba70fedd9ed1733360ed322e14367f432080bf314f87bc6e83649fc9f7e2326
+  license: ''
+  license_text: ''
+./doc/posix-functions/towupper.texi: 
+  copyright: ''
+  hash: f46446812e0e4d98a8fbf546a8bf40e189b7fab597162b8ada7ec247311c4fe3
+  license: ''
+  license_text: ''
+./doc/posix-functions/towupper_l.texi: 
+  copyright: ''
+  hash: 3a01be213186f9daf15f189b511d432b1929134741e4e08800b2394700cfe591
+  license: ''
+  license_text: ''
+./doc/posix-functions/trunc.texi: 
+  copyright: ''
+  hash: 2c7faf7f86690c2de6fef3d76f0688aad0b11e1eadce8e1ee31e3963ae357601
+  license: ''
+  license_text: ''
+./doc/posix-functions/truncate.texi: 
+  copyright: ''
+  hash: ad6988f2a3cf922df9d441be49aceaf0213a6ef329c5e192db4736ae321057a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/truncf.texi: 
+  copyright: ''
+  hash: de12f43f978664b351f577e9a5daef41a3fc84222f4f5fc9262f8db26b0f3f25
+  license: ''
+  license_text: ''
+./doc/posix-functions/truncl.texi: 
+  copyright: ''
+  hash: d6a3a1679bb8e28f9a3a76b46add1afd31d4ca16e9ba4f3f695ae8d4e2393119
+  license: ''
+  license_text: ''
+./doc/posix-functions/tsearch.texi: 
+  copyright: ''
+  hash: f6916106a56867ee562714e2d11a56ee7e62ba2a5b044f890f5950fc751ff1ac
+  license: ''
+  license_text: ''
+./doc/posix-functions/ttyname.texi: 
+  copyright: ''
+  hash: 3a53e9dbfb459ef95a6ffd1bd907d0bcd515b0307761cacb5721be060046a0e8
+  license: ''
+  license_text: ''
+./doc/posix-functions/ttyname_r.texi: 
+  copyright: ''
+  hash: f6cbfb6ecafbe6dfdb5f40882b617419be277fa894414db40639a726aec47b7e
+  license: ''
+  license_text: ''
+./doc/posix-functions/twalk.texi: 
+  copyright: ''
+  hash: 90a77428e374001fd58a522352dbfa4286280c931b9524ea5a2723f8899129ef
+  license: ''
+  license_text: ''
+./doc/posix-functions/tzname.texi: 
+  copyright: ''
+  hash: 0441a989ad0b47a309a27221970489ae177f7356e8eb7363d67c878656b54452
+  license: ''
+  license_text: ''
+./doc/posix-functions/tzset.texi: 
+  copyright: ''
+  hash: 7231d68420d2e952b405f8b492d785b0bf45c997a872cf32b108435420f627ba
+  license: ''
+  license_text: ''
+./doc/posix-functions/ulimit.texi: 
+  copyright: ''
+  hash: 328ce2059c0079cf2abc56052da27d917f58ab3422f811cf714d9e423fd04c2a
+  license: ''
+  license_text: ''
+./doc/posix-functions/umask.texi: 
+  copyright: ''
+  hash: 8a2f402496200e1fc0c0fd2e0bccccf52b3dcaa6eddfbc48ae47d087deeeb0cf
+  license: ''
+  license_text: ''
+./doc/posix-functions/uname.texi: 
+  copyright: ''
+  hash: 6755bde328f8c8a2e26f8eab4760f1a7d572c5339449f2882fdad83f7ff92001
+  license: ''
+  license_text: ''
+./doc/posix-functions/ungetc.texi: 
+  copyright: ''
+  hash: 1c34639f7f967f2a66214ca4d0cecc7ff95302248f83b9a70f7e3c06e141669d
+  license: ''
+  license_text: ''
+./doc/posix-functions/ungetwc.texi: 
+  copyright: ''
+  hash: 0d06c6a96b420d7b9dccd98aabbd9baac8521acd967cae84e6022cdb8a31c2e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/unlink.texi: 
+  copyright: ''
+  hash: 1958802de215f64594d391a7f9879329562d8ee7e6321902fc20d289e90a113a
+  license: ''
+  license_text: ''
+./doc/posix-functions/unlinkat.texi: 
+  copyright: ''
+  hash: 098fa59dd086b58401a4710af7fb3c3171a08c95cf2395f5307f02161cd88f5e
+  license: ''
+  license_text: ''
+./doc/posix-functions/unlockpt.texi: 
+  copyright: ''
+  hash: e50e8903ad77ab19f79c13a319ed068480f63ddd947f8dc15a13e534280ff990
+  license: ''
+  license_text: ''
+./doc/posix-functions/unsetenv.texi: 
+  copyright: ''
+  hash: 1541d212606cd33eb1679bcda974df45e99a82dfd665f7d33aac243662a838d7
+  license: ''
+  license_text: ''
+./doc/posix-functions/uselocale.texi: 
+  copyright: ''
+  hash: a1209e949b8c92d82a51dae8e2148b275f81c13b3dd348f543a0b62d47e94db2
+  license: ''
+  license_text: ''
+./doc/posix-functions/utime.texi: 
+  copyright: ''
+  hash: a24aa88412826d7b02bfe1f02fb6795c7b9a8a59b60ff0a975ec583740290792
+  license: ''
+  license_text: ''
+./doc/posix-functions/utimensat.texi: 
+  copyright: ''
+  hash: 173c9ec29703395497e840d32a3fa8155bc291e23d2efa0a7a54e4b42d86a219
+  license: ''
+  license_text: ''
+./doc/posix-functions/utimes.texi: 
+  copyright: ''
+  hash: 8d51beec714b4e3c4ad595e9be1b118696c5a12977fa12a42a629ad03f4669b1
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_arg.texi: 
+  copyright: ''
+  hash: 2da6d5e606404f38325aec110f29032d73d826516de59cd65a1b0cc3e5ef1e9b
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_copy.texi: 
+  copyright: ''
+  hash: 89c374aa138c4359ac2b7e0059a6884cc316ed6c9742a1889fcc910d71cfba01
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_end.texi: 
+  copyright: ''
+  hash: 71e8d133b425de3bb999821a3f0e5b9939a9b340de8f85f096f86886c9d05d1b
+  license: ''
+  license_text: ''
+./doc/posix-functions/va_start.texi: 
+  copyright: ''
+  hash: 13ed783939fb33555b552e86b00411ec0032076a9d909a99b9812c75e0080654
+  license: ''
+  license_text: ''
+./doc/posix-functions/vdprintf.texi: 
+  copyright: ''
+  hash: 855f46947553e9d6e745ed76dd9fc96252202d5a7670d1f7edb31f897d59c866
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfprintf.texi: 
+  copyright: ''
+  hash: ea7d201cdc68907be08bab243835a24441895b202d77e63b48559ddc9086c069
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfscanf.texi: 
+  copyright: ''
+  hash: f0b4648d4126271ca14486c4fece1894aca7086f8db26508927cd4d246a2f77f
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfwprintf.texi: 
+  copyright: ''
+  hash: 200c520c974f536a06bfb5ce702add69f502c35b3b57c25eac925fcde5db8f86
+  license: ''
+  license_text: ''
+./doc/posix-functions/vfwscanf.texi: 
+  copyright: ''
+  hash: 1468115a6058c2641c7ae1ca0a62944642b5841ba17513ad35c6c43fde79142e
+  license: ''
+  license_text: ''
+./doc/posix-functions/vprintf.texi: 
+  copyright: ''
+  hash: ee2fa0a176a8b7c847e9ec8b4a3bc56c77937cb49dc176fa078e41637967586d
+  license: ''
+  license_text: ''
+./doc/posix-functions/vscanf.texi: 
+  copyright: ''
+  hash: eca0bed937adee2b64abc9215eb27744f667f0d4eda4a232a7dad80995a36c1c
+  license: ''
+  license_text: ''
+./doc/posix-functions/vsnprintf.texi: 
+  copyright: ''
+  hash: 3e468e6f97b3571aee0963c7fc2871601b0e518e07a1df85fb873f8c25d6bcc2
+  license: ''
+  license_text: ''
+./doc/posix-functions/vsprintf.texi: 
+  copyright: ''
+  hash: 8a9b9edf7d98f987517cb3b7650a739a7d959ba37dfc9ead9527dc4f9257c2a0
+  license: ''
+  license_text: ''
+./doc/posix-functions/vsscanf.texi: 
+  copyright: ''
+  hash: a962e8a48ae62bf84f0ca9e7a5c3f1a5e9f96e855b3f79cff91032624d693a88
+  license: ''
+  license_text: ''
+./doc/posix-functions/vswprintf.texi: 
+  copyright: ''
+  hash: 705139250cb9f7e443a4dc17c4728cd63e8fd6e2c9414bca636536cda23fd758
+  license: ''
+  license_text: ''
+./doc/posix-functions/vswscanf.texi: 
+  copyright: ''
+  hash: e7a04f078ac79b1890e517f87e8d4694a6e45679b0fb48f236580d197a4e46ca
+  license: ''
+  license_text: ''
+./doc/posix-functions/vwprintf.texi: 
+  copyright: ''
+  hash: b72b770973a6ef5051e9ff66aa22bcbc8b58a2c6431543512147c1f22ff9c9a6
+  license: ''
+  license_text: ''
+./doc/posix-functions/vwscanf.texi: 
+  copyright: ''
+  hash: 923b5d92b22daf9ad2ccba87d91bfa15e157309420f4db651b8629ca43207c6d
+  license: ''
+  license_text: ''
+./doc/posix-functions/wait.texi: 
+  copyright: ''
+  hash: 7b072a3b82336d00ed25a885cbda48782e1b863c4c027836b77ce61763f3bcc5
+  license: ''
+  license_text: ''
+./doc/posix-functions/waitid.texi: 
+  copyright: ''
+  hash: f1062ba46c44cfd335b13fa64595732f330100537d8e9339af1abdd7571845d7
+  license: ''
+  license_text: ''
+./doc/posix-functions/waitpid.texi: 
+  copyright: ''
+  hash: 5676832d45eb43ebf1c1aea887bc4c019db4810fbbb16cce5cdc283748655ac9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcpcpy.texi: 
+  copyright: ''
+  hash: adbf37b23fbedfbd3bef3f5c4c0088880a853cfbad97f9a7c943fef6cb366636
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcpncpy.texi: 
+  copyright: ''
+  hash: 89c94c9fc1d0bd17f9cdd12a4dc7fc1d510297fd642acbb2ea6f35e3e97c1572
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcrtomb.texi: 
+  copyright: ''
+  hash: 20040edab7d3f5b765282992f971d3c8adc2532ca47ffba40dbb3791f4a66dc0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscasecmp.texi: 
+  copyright: ''
+  hash: 66134fa29f6569f7caaa554bd0513520f1e5319669215d2b3edb1b5732391db9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscasecmp_l.texi: 
+  copyright: ''
+  hash: 92ad8bd9e265fce46bc834d14274050bb01214d2391ccdc3caf5d1961f54f444
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscat.texi: 
+  copyright: ''
+  hash: fdccf8e9cbeccb400ec7d5a4539b3af4454602490af20dea7751c2dab2555a34
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcschr.texi: 
+  copyright: ''
+  hash: 23b351cedf83b8a8765000a2d21512ec922f12e2240a530bc21f41813933e27b
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscmp.texi: 
+  copyright: ''
+  hash: 71ddccea8ca18d3fd9f2ae85027f8b97cf654fa0316334a151d284aeb63f2666
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscoll.texi: 
+  copyright: ''
+  hash: aad7c92bbfe1458195cba400ceeedc2f972b53cc82943bb8d33389ebac5806cb
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscoll_l.texi: 
+  copyright: ''
+  hash: 5586b954da59befd5f0ebe05d67197dae1dba49e676f9ce27dd5fbc99ca1ad34
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscpy.texi: 
+  copyright: ''
+  hash: 8304e8f34e5dfb5355ee75b71b3d43120a60e068eb1ec43897ceb9a0256740a7
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcscspn.texi: 
+  copyright: ''
+  hash: 5ffbf9e0f0e2c1fc7d927eb8fd22d924e8d80327a3f0eb7fc61b3ab2d49b0cb7
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsdup.texi: 
+  copyright: ''
+  hash: 1e78bf9c90542816d00bba60747a68e20620b86c752a95623727f40ab7a51668
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsftime.texi: 
+  copyright: ''
+  hash: 0fd19a9a4993f2b17716c4eac56ccb29a09cdb415a4a84ca0923b41c94d020fc
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcslen.texi: 
+  copyright: ''
+  hash: e16a5c07a3374522e6426a1cc7e2905cb38bd08c629f2bc0d8edcda65b931dc2
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncasecmp.texi: 
+  copyright: ''
+  hash: 5e9069b6210dd425da54820a9ac0d1e48fc54777a9053a5fbdf09a0ae91c47b9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncasecmp_l.texi: 
+  copyright: ''
+  hash: 623af56af0d98ff81b22a7026dc47dfb9c7c956abcfcf65b79de181098eb5cd9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncat.texi: 
+  copyright: ''
+  hash: 025d8c6060e4cf49fbb4d9773fea8a45f0cb32c6ac60d7cd5cf5c593de8a3098
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncmp.texi: 
+  copyright: ''
+  hash: b2a701a27ef1cd29151fdd7695d90734d9c3263f9c90979e8139694b42f3cca0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsncpy.texi: 
+  copyright: ''
+  hash: 680c88556c2891e79ba30e5426925cdf6237497b1db6cd6928f9db38175a4a73
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsnlen.texi: 
+  copyright: ''
+  hash: c88fc97c86b35cbaaafc72677673750e51c18d4839a2282280f51f3a7c94f29f
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsnrtombs.texi: 
+  copyright: ''
+  hash: 38e32313de6075fb014a419f95846e08fe3b6ef0232e974dda96524b9a58ce95
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcspbrk.texi: 
+  copyright: ''
+  hash: b7e3aae920e207a4ffa9c2d58154db777dab5c03956c90676b7f830dd32b1b9c
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsrchr.texi: 
+  copyright: ''
+  hash: 4827a5725f798d8548c1dc931b4c9ba1cdf0c28742d7023b2fd5648db4f166af
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsrtombs.texi: 
+  copyright: ''
+  hash: 20549abaf5995e8fc9e206506df36fa821bd6111c06f81f5643fbb9556b833e2
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsspn.texi: 
+  copyright: ''
+  hash: 9830a44067be9bad8959677dbe641b591b2b3af00a0615925af0d6d559879a34
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsstr.texi: 
+  copyright: ''
+  hash: d40e47110c8a0582ea5f8a83b11a33c806f3aa455de094b23a17e91b3363ebf0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstod.texi: 
+  copyright: ''
+  hash: 842e8b42f92fd1208caa5feafd8ba211e1f8f809df69858f908c70071e535a8f
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstof.texi: 
+  copyright: ''
+  hash: 26784e4f1151882911d064b9fb4dd362386ae570fcba9ad669e3db39b5b8f189
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoimax.texi: 
+  copyright: ''
+  hash: 6eea93e73c4f3194727b65b2224f65b4f2877fa01a29c2944b8199698cdfea74
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstok.texi: 
+  copyright: ''
+  hash: 557d0180fe43d4074b887b380e8dfe206bb8618788157779751fd3c3771a371e
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstol.texi: 
+  copyright: ''
+  hash: c5b9451a8dbe0bc8c7a11b2ca01b2900c65ca297d593f90d7c575237b9da6093
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstold.texi: 
+  copyright: ''
+  hash: 2c506830e10b71cbd323b5fbe08af43575e2d3f4551b080a61a87b6db385f690
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoll.texi: 
+  copyright: ''
+  hash: a7464fcc6fe1de31cdd9f9ce1603fcc1f573603ea086e0eba7d70e59d86a77e0
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstombs.texi: 
+  copyright: ''
+  hash: 60461f3cad84dd817af8c419fd7b6bbd16d55c9f50e1e9d5736ed893fa558782
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoul.texi: 
+  copyright: ''
+  hash: ea33073e6a7d43480d7024db4c22205b35d28c07f51b5b7bd7ae008c264ea608
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoull.texi: 
+  copyright: ''
+  hash: 9cb3f44e0ecec8fcea7543b5267aa6e0c308d6cfad5d40e00fbb9e2bde0282cd
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcstoumax.texi: 
+  copyright: ''
+  hash: b565c0f20f9d2fb4e4cfb2fd9d0287cf65ea32a8914754d89b1b1084952f6dd1
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcswidth.texi: 
+  copyright: ''
+  hash: 896decdcde4828a47aa820a0fcb87b34d2c259ff5f12bfbbd366dc21f062ca2d
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsxfrm.texi: 
+  copyright: ''
+  hash: a225016ded36398af868e7a7eec2100ec87aa24295fe1b89569cef92ece2b497
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcsxfrm_l.texi: 
+  copyright: ''
+  hash: 79db8278300b2e6d0cd705e56a80b189b6cd6fefd07141570ad020c6b58ade06
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctob.texi: 
+  copyright: ''
+  hash: a328a016c849d39aecc034af1289545c879261dd4d1c0397c13bc897fc1ba248
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctomb.texi: 
+  copyright: ''
+  hash: 271fa327aba8172c6ff974324015b11eb97e362d59a82b5f708cf40f31a0ad77
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctrans.texi: 
+  copyright: ''
+  hash: 777b5cc1977d214324ba2a17afb9e29ac1f236adb3d8d8d17105305d0b8d7428
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctrans_l.texi: 
+  copyright: ''
+  hash: 542a8806218cda3159f88863801a4c1411528a8d93987683fcdbf4feccc4f334
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctype.texi: 
+  copyright: ''
+  hash: 2774f59844136310c38578106f1ae858d399cea66f4120c2d61347d88187bea9
+  license: ''
+  license_text: ''
+./doc/posix-functions/wctype_l.texi: 
+  copyright: ''
+  hash: 33c31ade64fdf052f408f9cf8d3fe1537a19181f94ba7c7664bb3e3950f3258b
+  license: ''
+  license_text: ''
+./doc/posix-functions/wcwidth.texi: 
+  copyright: ''
+  hash: d006f3954b9dbe5f0f62725919a8f69247ee7b5d59027c6100ccdaa54b067c28
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemchr.texi: 
+  copyright: ''
+  hash: 0e16deaafb7a56b294ef7beac0845e67c88466e988628403b6ae76191929896f
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemcmp.texi: 
+  copyright: ''
+  hash: 7ef06384b1bd437f31fc61be3c8ca6f2cd44db4665392435161774ecebfe8cc2
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemcpy.texi: 
+  copyright: ''
+  hash: 371919a935508d67b755bcafdd62402723141e2fc181b84d0af55c3283d70566
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemmove.texi: 
+  copyright: ''
+  hash: c60c122626faea9445a6d85c423bd3943f18d9290dd31f23fb364dcb4a152a37
+  license: ''
+  license_text: ''
+./doc/posix-functions/wmemset.texi: 
+  copyright: ''
+  hash: 5926f9711c9be1d1a12776c1d5450ba89a635c7e8b333ba5ad91b9f3bc8cd935
+  license: ''
+  license_text: ''
+./doc/posix-functions/wordexp.texi: 
+  copyright: ''
+  hash: d8cf559a0d704061199c24c113cba50f0548d1daaff98b347fae58eeb7c4ad93
+  license: ''
+  license_text: ''
+./doc/posix-functions/wordfree.texi: 
+  copyright: ''
+  hash: f880186c7147a2fa91a929968c6a8d244d03f025699248b285ee838869ae12c4
+  license: ''
+  license_text: ''
+./doc/posix-functions/wprintf.texi: 
+  copyright: ''
+  hash: ee3d50061cb4af26c4e9465ec1754b86d3e04370f066ba326a62dd3010bd2d98
+  license: ''
+  license_text: ''
+./doc/posix-functions/write.texi: 
+  copyright: ''
+  hash: fd88455aac642a64b0861cd64659fe85a1ebd5e22959b03c07e1f66d655d2924
+  license: ''
+  license_text: ''
+./doc/posix-functions/writev.texi: 
+  copyright: ''
+  hash: f1a345feaf1b45dfce39b4541f67387416d39596695dfbe3591fb464ea2a7730
+  license: ''
+  license_text: ''
+./doc/posix-functions/wscanf.texi: 
+  copyright: ''
+  hash: ae71fd02dddd945d442c5db2676638828bfa5cbbab67e09eb6db357b58bd121f
+  license: ''
+  license_text: ''
+./doc/posix-functions/y0.texi: 
+  copyright: ''
+  hash: 101d5a5de97702c6a595b520995e10c8a5d87321309e9754faf260dc9b0dfe76
+  license: ''
+  license_text: ''
+./doc/posix-functions/y1.texi: 
+  copyright: ''
+  hash: de9c81ff2036effeba44607d218f61f4d1de6705ea1d44518df8f9a059045317
+  license: ''
+  license_text: ''
+./doc/posix-functions/yn.texi: 
+  copyright: ''
+  hash: ae6fd587065d1cfd4705b711d50b84951ad55d885acebe2da13ec077928f4c38
+  license: ''
+  license_text: ''
+./doc/posix-headers/aio.texi: 
+  copyright: ''
+  hash: b5feffffede6b90b47f211b2664652c4c6c256ce00066d8a019328535a217723
+  license: ''
+  license_text: ''
+./doc/posix-headers/arpa_inet.texi: 
+  copyright: ''
+  hash: ff625ebdd28615e9101d9db60bb98cc044314373a15ccd3f277781dcd9e47d6b
+  license: ''
+  license_text: ''
+./doc/posix-headers/assert.texi: 
+  copyright: ''
+  hash: f5dd70d9b33819f71ef223c8e8178c1f74c0844199442db3f1dc94fca17fd0c7
+  license: ''
+  license_text: ''
+./doc/posix-headers/complex.texi: 
+  copyright: ''
+  hash: 52bf5734bb5d06958672f56209d843d575a9159d0a403da67ea90323dc6e7a80
+  license: ''
+  license_text: ''
+./doc/posix-headers/cpio.texi: 
+  copyright: ''
+  hash: 4f3f64a0fee70498e119df8ea2b685d226a566fea46235d4f7ed474d78762abb
+  license: ''
+  license_text: ''
+./doc/posix-headers/ctype.texi: 
+  copyright: ''
+  hash: 2261b16ead35a385ba1290e174b81a5cdb6f21a6c43ca0d746830f02b6e75c8a
+  license: ''
+  license_text: ''
+./doc/posix-headers/dirent.texi: 
+  copyright: ''
+  hash: ae0c082fd86691f88441a0e699f09ecd8d56497a9d00c095f604702f69dd38b1
+  license: ''
+  license_text: ''
+./doc/posix-headers/dlfcn.texi: 
+  copyright: ''
+  hash: 7773db810790b9370b355e02d7fe355e0ff29986c349754aeae818578a77ca53
+  license: ''
+  license_text: ''
+./doc/posix-headers/errno.texi: 
+  copyright: ''
+  hash: e845a33891fb534504b0b538e7d614b4ba914cd3172289569843740bd7875ef8
+  license: ''
+  license_text: ''
+./doc/posix-headers/fcntl.texi: 
+  copyright: ''
+  hash: 9e1afcf5976af7bcc27cfa70afb8b20678e579392a2da17a15d5438d320af442
+  license: ''
+  license_text: ''
+./doc/posix-headers/fenv.texi: 
+  copyright: ''
+  hash: b84959cdb9de245d1918278e4308945ba58a8b530782338c4051c473614d81ef
+  license: ''
+  license_text: ''
+./doc/posix-headers/float.texi: 
+  copyright: ''
+  hash: bb06dd01d519ce57e4003bee2a6144e940f92705ccb07ddc48bac06e65e10d46
+  license: ''
+  license_text: ''
+./doc/posix-headers/fmtmsg.texi: 
+  copyright: ''
+  hash: c8d59077dd6ed5e479e80e667a322a69acdbe1d2c1bfa3477d800bc8f0dd83de
+  license: ''
+  license_text: ''
+./doc/posix-headers/fnmatch.texi: 
+  copyright: ''
+  hash: 8327e6d21c05ab578dc51d533e5fc009683e8ed5a66573d6e0c02c7daf46d516
+  license: ''
+  license_text: ''
+./doc/posix-headers/ftw.texi: 
+  copyright: ''
+  hash: b57fdf7c8aed07040361be0defb098f165954dbb516d650fe90cf30f503b9a25
+  license: ''
+  license_text: ''
+./doc/posix-headers/glob.texi: 
+  copyright: ''
+  hash: 93a0a84bb15d874aa8d300eff27f3b095d0865ce4ddbfb6da8df24b0fd884e82
+  license: ''
+  license_text: ''
+./doc/posix-headers/google-ranking.txt: 
+  copyright: ''
+  hash: 36d854034f1dcae0198af5e680acf7f643d6d4b9147571c430f0c755d007f46f
+  license: ''
+  license_text: ''
+./doc/posix-headers/grp.texi: 
+  copyright: ''
+  hash: e6a25df21268de19163d73313b9939f6da2173ed7200c4bbaf09ae3dc0c6b235
+  license: ''
+  license_text: ''
+./doc/posix-headers/iconv.texi: 
+  copyright: ''
+  hash: c55452ea875d46c50e54baea90b4886d24d2dd6a082a16ea14aa6d54f0e95f0f
+  license: ''
+  license_text: ''
+./doc/posix-headers/inttypes.texi: 
+  copyright: ''
+  hash: 4da04e950bd05c7c376371e68dd6cf709ebb220a80eaa28707cf8893d276f780
+  license: ''
+  license_text: ''
+./doc/posix-headers/iso646.texi: 
+  copyright: ''
+  hash: 9e67ac3c5beac4ffd5e496de5a3637d5ee7e8200a5a79afbf069e97151e1af29
+  license: ''
+  license_text: ''
+./doc/posix-headers/langinfo.texi: 
+  copyright: ''
+  hash: 779a37fb6afdfe4894daba2a8d910718aec86f46348d6dec2614db4cd0ca7476
+  license: ''
+  license_text: ''
+./doc/posix-headers/libgen.texi: 
+  copyright: ''
+  hash: 85d49c38bf9a2370252f10d007ff8458b6f69b38de05edfb0e12dc7d45de2487
+  license: ''
+  license_text: ''
+./doc/posix-headers/limits.texi: 
+  copyright: ''
+  hash: e634ce8670c851c54ad83b550cdb854c9d08bcbc9777c01c61e521974df770e8
+  license: ''
+  license_text: ''
+./doc/posix-headers/locale.texi: 
+  copyright: ''
+  hash: baee6e53c2544b87f7bfcabea0e3afc907ae0354856fc3ccda8776ec61ce2580
+  license: ''
+  license_text: ''
+./doc/posix-headers/math.texi: 
+  copyright: ''
+  hash: 3ea2c31002adb9a489426663a739c78120fbc5bf8c853b45679fe7d336a12977
+  license: ''
+  license_text: ''
+./doc/posix-headers/monetary.texi: 
+  copyright: ''
+  hash: a34c02edb7baef72752df520a8004292a877a4149eea0e6714305c5d497ea42a
+  license: ''
+  license_text: ''
+./doc/posix-headers/mqueue.texi: 
+  copyright: ''
+  hash: 9e26ec683c374aedfac424770de10bffb88d1fc1e35343906dd4971c3745b380
+  license: ''
+  license_text: ''
+./doc/posix-headers/ndbm.texi: 
+  copyright: ''
+  hash: 7c094880e953813e313ccc986d896808eec19926093dde5b77d0543593225871
+  license: ''
+  license_text: ''
+./doc/posix-headers/net_if.texi: 
+  copyright: ''
+  hash: 9d3f40aa662eebd30b64649ee11e1312f03d64ca3f113074154344985421b22f
+  license: ''
+  license_text: ''
+./doc/posix-headers/netdb.texi: 
+  copyright: ''
+  hash: 81efac0cde64e7933c49ca6ba20888bcc1e4d14e39943f3e514dfa6d33bbd1e0
+  license: ''
+  license_text: ''
+./doc/posix-headers/netinet_in.texi: 
+  copyright: ''
+  hash: e542809271aa2cd707d4719a1f8f8d7cbf8226bb1dfb72838ce89a452f2245ac
+  license: ''
+  license_text: ''
+./doc/posix-headers/netinet_tcp.texi: 
+  copyright: ''
+  hash: 23509502b23ef5cd9c39b8b860bfcbb7f18954a73524fcbe1e2f042b359a4d59
+  license: ''
+  license_text: ''
+./doc/posix-headers/nl_types.texi: 
+  copyright: ''
+  hash: eb08f2ce3f333f7bff7d2153a728b0acf4c4b28b52cef6ca33a13e76f65b5590
+  license: ''
+  license_text: ''
+./doc/posix-headers/poll.texi: 
+  copyright: ''
+  hash: ec7ca96e1a5c5ef8c863895984b85ecc85f6746c9c36a183628c9caa38b7cfd4
+  license: ''
+  license_text: ''
+./doc/posix-headers/pthread.texi: 
+  copyright: ''
+  hash: a5be7cd565626355b119c3b1e61b4f6ed8f98e31dda19ee0b4b93dc62385f1f5
+  license: ''
+  license_text: ''
+./doc/posix-headers/pwd.texi: 
+  copyright: ''
+  hash: d470a92661247c63368bbd26dc5049ffd6e0c107b2a613ac524295009eef284d
+  license: ''
+  license_text: ''
+./doc/posix-headers/regex.texi: 
+  copyright: ''
+  hash: b016c9a3b15736ba0b5699d0161a0f323aacab56bb4360ee7a9991d6a9f8f29c
+  license: ''
+  license_text: ''
+./doc/posix-headers/sched.texi: 
+  copyright: ''
+  hash: 8d21cf78b24cdf8383d5c5e1abde4f12e080f061aaa86706189afdb9471b492a
+  license: ''
+  license_text: ''
+./doc/posix-headers/search.texi: 
+  copyright: ''
+  hash: 4964471e3637333930dc8a6852075de64051c2a5d24d0c36cc52b0af772e0968
+  license: ''
+  license_text: ''
+./doc/posix-headers/semaphore.texi: 
+  copyright: ''
+  hash: 46f4edae0baf6b13b4db3f0de34e44d78f0580050e9053080262852035d475e4
+  license: ''
+  license_text: ''
+./doc/posix-headers/setjmp.texi: 
+  copyright: ''
+  hash: 57c43ae545a375c5a52a670a2bfd301f686d1c93025d59c6ac73c93e3e940fa4
+  license: ''
+  license_text: ''
+./doc/posix-headers/signal.texi: 
+  copyright: ''
+  hash: 62595715b74ae647915d4afa4fb949307b061f6c95b3ed52ee4522b67a94d7be
+  license: ''
+  license_text: ''
+./doc/posix-headers/spawn.texi: 
+  copyright: ''
+  hash: 035868e3075dfb31415e3611932d366e4cd17c744caf3973f3c2ce700041c92d
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdarg.texi: 
+  copyright: ''
+  hash: 76bfda1aa2271dc3a394ffa60a359ab70eaee46995d95df2e459724a4f77b800
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdbool.texi: 
+  copyright: ''
+  hash: 125bb0ccd0983b885486dcaebf4ddce35dad39e11a1a60c943646ae6a9361866
+  license: ''
+  license_text: ''
+./doc/posix-headers/stddef.texi: 
+  copyright: ''
+  hash: 997124bfc90ae125326493c1a5c47f183bb74423ce01fcf55f1601f534dd4617
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdint.texi: 
+  copyright: ''
+  hash: cceffcda2dd894a5e695d4e67857815bade971288c965c84717203bef3c950cd
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdio.texi: 
+  copyright: ''
+  hash: 0a4463d4d6a612e66896c384608312ebda0d44e646b2a9130cd7e17fc222c313
+  license: ''
+  license_text: ''
+./doc/posix-headers/stdlib.texi: 
+  copyright: ''
+  hash: 8ec58fc5ab8a7dab2c799d972b003a16eaa9ce993ade7447eb799b5495c106cd
+  license: ''
+  license_text: ''
+./doc/posix-headers/string.texi: 
+  copyright: ''
+  hash: 1e05fd8054a02aa18813a2afaedb80d990ab2762b21331032d6643a5d2bbc6ea
+  license: ''
+  license_text: ''
+./doc/posix-headers/strings.texi: 
+  copyright: ''
+  hash: c36bb3c4fd013835f3f170695cb65bdf9d9941a6a7c8a1ea473deb6c6304c3ea
+  license: ''
+  license_text: ''
+./doc/posix-headers/stropts.texi: 
+  copyright: ''
+  hash: 10ce7f6bd56eb5c087bfc1445d5d7d6c1a3a3ab49a46f6f5536f9abf99d0ea5f
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_ipc.texi: 
+  copyright: ''
+  hash: 987709fd9b281e1c72ecddc44b2260deaf8643078f674f0b8184e910c3ca940a
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_mman.texi: 
+  copyright: ''
+  hash: 19b6d15cb1e745b8e5b181dfb3cc8d33c73ef5963de3d9edce93f850082ade3e
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_msg.texi: 
+  copyright: ''
+  hash: 3cf9367fe2756d8bbf6a523719715cc088118e49d2c040a4ea03dffe9a7f05e1
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_resource.texi: 
+  copyright: ''
+  hash: 53065ace2cd2231da57a4083773882092b6706781e9d6613dc3f139612645100
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_select.texi: 
+  copyright: ''
+  hash: f1a346ce9d9da46a8ac1f06b73c709f9d438ecb6dbf91d537d3628cf1d1ffdea
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_sem.texi: 
+  copyright: ''
+  hash: 8c8f9fe68b61ca3c2d0075ac577c1541e33cc7e42e088659651cc7aa5a43f384
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_shm.texi: 
+  copyright: ''
+  hash: 7bcaeeb0859bf5db9953896a7dafdfb71b7dd1c278eab4da77097f2f1eba2850
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_socket.texi: 
+  copyright: ''
+  hash: ad3994d837d6fbde926d68dbd51a4ee1e670df6a7ce683df8f1afcd8f26b9b4b
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_stat.texi: 
+  copyright: ''
+  hash: 60dae061a3c75ef68ebb90a832c8d4fa057e5819930adbb7aaec240da84acb59
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_statvfs.texi: 
+  copyright: ''
+  hash: 384c0ac41e3f35d7e1ef9ebe2102866be29bb1d1881ee4f95226d7fd225365ef
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_time.texi: 
+  copyright: ''
+  hash: 195cc421036aa90abc0bc0c8e8c5727e61ecf1865acb542bdc289c5010dae9c6
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_timeb.texi: 
+  copyright: ''
+  hash: f6dbc92a61228daf56911be1d37146ecacd4df82501bead2009dd5f34f9e7488
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_times.texi: 
+  copyright: ''
+  hash: facec7ecb6acfc5ee08859c13f611d7009bf66d95b8f460cff2b71e52d315b77
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_types.texi: 
+  copyright: ''
+  hash: 2d7a9db00a00c36d5e166bbf043eb9069b477d61a170213f082f756088c8e4c2
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_uio.texi: 
+  copyright: ''
+  hash: a3f6385a4227f285dc37fb9ff1db96aa384fbff8a392a2d640bf005f152df908
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_un.texi: 
+  copyright: ''
+  hash: a27feb6784f4c51abd27d5667f986f4110373fe629966424d405c5a840342cee
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_utsname.texi: 
+  copyright: ''
+  hash: efbe687e091876e6c676db5a9533062a85adf3009dbf550c52a4d71a69989fb0
+  license: ''
+  license_text: ''
+./doc/posix-headers/sys_wait.texi: 
+  copyright: ''
+  hash: 44aee91fd4c85b72a8c966954ba061b965aaac1482f69a98aa61089579ff1bc5
+  license: ''
+  license_text: ''
+./doc/posix-headers/syslog.texi: 
+  copyright: ''
+  hash: 28ddc4c29384e0d9f34b7aa9cd25745fcaa0985a112d645b84a4f450cc484775
+  license: ''
+  license_text: ''
+./doc/posix-headers/tar.texi: 
+  copyright: ''
+  hash: cd109697e8a666ccea3d2f6b9996b60c898cf4c21568a8ef35a2cb8142f026bc
+  license: ''
+  license_text: ''
+./doc/posix-headers/termios.texi: 
+  copyright: ''
+  hash: 54b678c554704bf0a1177cbcf6d2db98edbe298e1bcfb6d7d820d268620cc09a
+  license: ''
+  license_text: ''
+./doc/posix-headers/tgmath.texi: 
+  copyright: ''
+  hash: 4eb1d7fef4d580e91df7a35edfa926ffd821f8636083b87b8a99413caecbaf13
+  license: ''
+  license_text: ''
+./doc/posix-headers/time.texi: 
+  copyright: ''
+  hash: 83887ff1ac780b4b176ca9e9a2836a3d28f0793b67904c221acf46cfc4252de3
+  license: ''
+  license_text: ''
+./doc/posix-headers/trace.texi: 
+  copyright: ''
+  hash: d7736e6e0e1a98fcc3b9870300fc691ed4c2fbfaf424f08eda8a19fab101bf66
+  license: ''
+  license_text: ''
+./doc/posix-headers/ucontext.texi: 
+  copyright: ''
+  hash: 2975ec1d3f351969dcc37b7d72d6c691a3136116a08ba38bb94723f101f3b069
+  license: ''
+  license_text: ''
+./doc/posix-headers/ulimit.texi: 
+  copyright: ''
+  hash: 641e0cae8c99f664100b54a41e03e453846ecc8fc889f91a93239c355e8c1ed2
+  license: ''
+  license_text: ''
+./doc/posix-headers/unistd.texi: 
+  copyright: ''
+  hash: 1e47066520002dbb14539e81acb50184d273f51d047815d246ba2e0a284d8ce5
+  license: ''
+  license_text: ''
+./doc/posix-headers/utime.texi: 
+  copyright: ''
+  hash: 0a7e8d03567fb3f77e998cf10c309e06154b4cf560909dfe3640b3ccc20f94ee
+  license: ''
+  license_text: ''
+./doc/posix-headers/utmpx.texi: 
+  copyright: ''
+  hash: 58a3f69e19d495d7189394ede301568c15bc5ee82908884671156bc5c4f1b052
+  license: ''
+  license_text: ''
+./doc/posix-headers/wchar.texi: 
+  copyright: ''
+  hash: c9e0acf5b953cdbb5d2a816fb831f55f3e2ab2b85b3793c61f6114b530134e7e
+  license: ''
+  license_text: ''
+./doc/posix-headers/wctype.texi: 
+  copyright: ''
+  hash: c5994d40b69ca8ae0d1bc6c2251fb7cb3b7ec5f64f7bef24fd40ee364b7cab9e
+  license: ''
+  license_text: ''
+./doc/posix-headers/wordexp.texi: 
+  copyright: ''
+  hash: 7027331cb789ce356e7d3e2b2313dd9b791f9b96444503905a2657230522a331
+  license: ''
+  license_text: ''
+./doc/quote.texi: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 9cc2b24f70ec69e8dbc53ef7d8100f87dbcf6e4f207d834ce82c872fbeed98bf
+  license: ''
+  license_text: ''
+./doc/regexprops-generic.texi: 
+  copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
+  hash: 953ea60aeff18a45851d07c4fd84c6d47156d1cb6056d2808293b45b3663d4c4
+  license: ''
+  license_text: ''
+./doc/relocatable-maint.texi: 
+  copyright: ''
+  hash: 1c95896b667fba221783ec193abf89b00a652dec4c76b849a14b605ed0c5abc3
+  license: ''
+  license_text: ''
+./doc/relocatable.texi: 
+  copyright: ''
+  hash: cb899ceab0383cc484f3b15b049b8386a304eb4b3680a196f042fcc2bea03139
+  license: ''
+  license_text: ''
+./doc/safe-alloc.texi: 
+  copyright: ''
+  hash: 3902a00303495772ce656b944dfff81237d6a421ad80d871254c12d04cc341ae
+  license: ''
+  license_text: ''
+./doc/solaris-versions: 
+  copyright: 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: bc33ea4cd4eb6126d5633cd3fa7e2adf36078fe37bd648e41612bea8614d2d12
+  license: ''
+  license_text: ''
+./doc/standards.texi: 
+  copyright: "@{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999"
+  hash: 758abab5b6cc5d66a433405b865acfbe95b4ea85d3de8e4f7810aa21cc026056
+  license: ''
+  license_text: ''
+./doc/verify.texi: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: d43e9fbb06bf63392263ab1163c57627f0091d17c88ef1ea645d7d77e2054335
+  license: ''
+  license_text: ''
+./doc/warnings.texi: 
+  copyright: ''
+  hash: 7d0b8720b49dad5ab65dc973fbdc274a1bece799f17f45b51ebdfbd71ea094a7
+  license: ''
+  license_text: ''
+./gnulib-tool: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/.cppi-disable: 
+  copyright: ''
+  hash: ed4ff8357c74f26ce7298059529040adbec140e2aff3512d6f0218a9df753e79
+  license: ''
+  license_text: ''
+./lib/Makefile: 
+  copyright: ''
+  hash: 2cd78169faa2196a45036c205f87158a07795f2333fdf1355032503b7c578f5a
+  license: ''
+  license_text: ''
+./lib/README: 
+  copyright: ''
+  hash: b8e700743605335681712b4fc41327c0e5ec1304558ae837865d0ef791afcf65
+  license: ''
+  license_text: ''
+./lib/accept.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/accept4.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
+  license: "GPL "
+  license_text: ''
+./lib/acl-internal.h: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+  hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/acl.h: 
+  copyright: 2002, 2008 Free Software Foundation, Inc
+  hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
+  license: "GPL-3+ "
+  license_text: ''
+./lib/acl_entries.c: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+  hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
+  license: "GPL-3+ "
+  license_text: ''
+./lib/acosl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+  license: ''
+  license_text: ''
+./lib/alignof.h: 
+  copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
+  license: "GPL "
+  license_text: ''
+./lib/alloca.c: 
+  copyright: ''
+  hash: 431aec7ca1324fce73e1038b2634ad070f21bb7fee11867cc153c883cbc9e178
+  license: ''
+  license_text: ''
+./lib/alloca.in.h: 
+  copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software
+  hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
+  license: "GPL "
+  license_text: ''
+./lib/alphasort.c: 
+  copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc
+  hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
+  license: "GPL "
+  license_text: ''
+./lib/arcfour.c: 
+  copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software
+  hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
+  license: "GPL "
+  license_text: ''
+./lib/arcfour.h: 
+  copyright: 2000, 2001, 2002, 2003, 2004, 2005
+  hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
+  license: "GPL "
+  license_text: ''
+./lib/arctwo.c: 
+  copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc
+  hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
+  license: "GPL "
+  license_text: ''
+./lib/arctwo.h: 
+  copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc
+  hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
+  license: "GPL "
+  license_text: ''
+./lib/areadlink-with-size.c: 
+  copyright: 2001, 2003-2007 Free Software Foundation, Inc
+  hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/areadlink.c: 
+  copyright: 2001, 2003-2007 Free Software Foundation, Inc
+  hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/areadlink.h: 
+  copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
+  hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argmatch.c: 
+  copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+  hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argmatch.h: 
+  copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
+  hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-ba.c: 
+  copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc
+  hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-eexst.c: 
+  copyright: 1997 Free Software Foundation, Inc
+  hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-fmtstream.c: 
+  copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc
+  hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-fmtstream.h: 
+  copyright: 1997, 2006-2008 Free Software Foundation, Inc
+  hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-fs-xinl.c: 
+  copyright: 1997, 2003, 2004 Free Software Foundation, Inc
+  hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-help.c: 
+  copyright: 1995-2005, 2007 Free Software Foundation, Inc
+  hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-namefrob.h: 
+  copyright: 1997, 2003, 2007 Free Software Foundation, Inc
+  hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-parse.c: 
+  copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc
+  hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-pin.c: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-pv.c: 
+  copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc
+  hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-pvh.c: 
+  copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc
+  hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-version-etc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-version-etc.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp-xinl.c: 
+  copyright: 1997, 1998, 2004 Free Software Foundation, Inc
+  hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argp.h: 
+  copyright: 1995-1999,2003-2008 Free Software Foundation, Inc
+  hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argv-iter.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argv-iter.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+  license: "GPL-3+ "
+  license_text: ''
+./lib/argz.c: 
+  copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc
+  hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
+  license: "GPL "
+  license_text: ''
+./lib/argz.in.h: 
+  copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc
+  hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/arpa_inet.in.h: 
+  copyright: 2005-2006, 2008 Free Software Foundation, Inc
+  hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
+  license: "GPL "
+  license_text: ''
+./lib/array-mergesort.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/asinl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+  license: ''
+  license_text: ''
+./lib/asnprintf.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
+  license: "GPL "
+  license_text: ''
+./lib/asprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
+  license: "GPL "
+  license_text: ''
+./lib/at-func.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/atanl.c: 
+  copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+  hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/atexit.c: 
+  copyright: ''
+  hash: 9dfd71e9081a0d0955d144016b832253b840f16f0bfe5144f72ad0ce5a13525c
+  license: "*No copyright* Public domain"
+  license_text: ''
+./lib/atoll.c: 
+  copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc
+  hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/backupfile.c: 
+  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+  hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
+  license: "GPL-3+ "
+  license_text: ''
+./lib/backupfile.h: 
+  copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
+  hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/base64.c: 
+  copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software
+  hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
+  license: "GPL "
+  license_text: ''
+./lib/base64.h: 
+  copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
+  license: "GPL "
+  license_text: ''
+./lib/basename.c: 
+  copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
+  hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
+  license: "GPL-3+ "
+  license_text: ''
+./lib/bcopy.c: 
+  copyright: ''
+  hash: 141099f203ec7aabf4aefe89031c9d7194ecbcdb85a1f49f18068aaae4da74f5
+  license: ''
+  license_text: ''
+./lib/binary-io.h: 
+  copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc
+  hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/bind.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/bitrotate.h: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
+  license: "GPL-3+ "
+  license_text: ''
+./lib/btowc.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/byteswap.in.h: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-ctype.c: 
+  copyright: 2000-2003, 2006 Free Software Foundation, Inc
+  hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
+  license: "GPL-2+ "
+  license_text: ''
+./lib/c-ctype.h: 
+  copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
+  hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
+  license: "GPL-2+ "
+  license_text: ''
+./lib/c-stack.c: 
+  copyright: 2002, 2004, 2006, 2008, 2009 Free Software
+  hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-stack.h: 
+  copyright: 2002, 2004, 2008 Free Software Foundation, Inc
+  hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strcase.h: 
+  copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc
+  hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
+  license: "GPL "
+  license_text: ''
+./lib/c-strcasecmp.c: 
+  copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
+  hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
+  license: "GPL "
+  license_text: ''
+./lib/c-strcaseeq.h: 
+  copyright: 2001-2002, 2007 Free Software Foundation, Inc
+  hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/c-strcasestr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strcasestr.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strncasecmp.c: 
+  copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
+  hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
+  license: "GPL "
+  license_text: ''
+./lib/c-strstr.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strstr.h: 
+  copyright: 2001-2003, 2006 Free Software Foundation, Inc
+  hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strtod.c: 
+  copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strtod.h: 
+  copyright: 2003-2004, 2009 Free Software Foundation, Inc
+  hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/c-strtold.c: 
+  copyright: ''
+  hash: f2f3327044df634e0b933cb776f209274b8ebea5df3c977a51422befbd6db63a
+  license: ''
+  license_text: ''
+./lib/calloc.c: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/canon-host.c: 
+  copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc
+  hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
+  license: "GPL "
+  license_text: ''
+./lib/canon-host.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
+  license: "GPL "
+  license_text: ''
+./lib/canonicalize-lgpl.c: 
+  copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc
+  hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/canonicalize.c: 
+  copyright: 1996-2009 Free Software Foundation, Inc
+  hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/canonicalize.h: 
+  copyright: 1996-2007 Free Software Foundation, Inc
+  hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ceil.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ceilf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ceill.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/chdir-long.c: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/chdir-long.h: 
+  copyright: 2004, 2005 Free Software Foundation, Inc
+  hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/chdir-safer.c: 
+  copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc
+  hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
+  license: "GPL-3+ "
+  license_text: ''
+./lib/chdir-safer.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
+  license: "GPL-3+ "
+  license_text: ''
+./lib/check-version.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+  hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
+  license: "GPL "
+  license_text: ''
+./lib/check-version.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
+  license: "GPL "
+  license_text: ''
+./lib/chown.c: 
+  copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc
+  hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/classpath.c: 
+  copyright: 2001-2003, 2006 Free Software Foundation, Inc
+  hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/classpath.h: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/clean-temp.c: 
+  copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc
+  hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/clean-temp.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
+  license: "GPL-3+ "
+  license_text: ''
+./lib/cloexec.c: 
+  copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
+  license: "GPL-3+ "
+  license_text: ''
+./lib/cloexec.h: 
+  copyright: ''
+  hash: cfe5843e2e0ac5ad5fc12a47d962d9f8305a2542693105f25917b8f36614b582
+  license: ''
+  license_text: ''
+./lib/close-hook.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/close-hook.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/close-stream.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free
+  hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
+  license: "GPL-3+ "
+  license_text: ''
+./lib/close-stream.h: 
+  copyright: ''
+  hash: 827172f355991afad504e0cbf0ca7bc6df709d57f14b498de472fed1cff3c71d
+  license: ''
+  license_text: ''
+./lib/close.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/closein.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/closein.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/closeout.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+  hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/closeout.h: 
+  copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation
+  hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
+  license: "GPL-3+ "
+  license_text: ''
+./lib/concat-filename.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+  hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+  license: "GPL "
+  license_text: ''
+./lib/concat-filename.h: 
+  copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc
+  hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/config.charset: 
+  copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc
+  hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
+  license: "GPL "
+  license_text: ''
+./lib/connect.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
+  license: "GPL-3+ "
+  license_text: ''
+./lib/copy-acl.c: 
+  copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc
+  hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
+  license: "GPL-3+ "
+  license_text: ''
+./lib/copy-file.c: 
+  copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc
+  hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/copy-file.h: 
+  copyright: 2001-2003 Free Software Foundation, Inc
+  hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/cosl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: f94441c30759bff7b800832d4a5ca7f10ab4fdec07fa304c2a367ee6814a1ada
+  license: ''
+  license_text: ''
+./lib/count-one-bits.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
+  license: "GPL-3+ "
+  license_text: ''
+./lib/crc.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
+  license: GPL GENERATED FILE
+  license_text: ''
+./lib/crc.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/creat-safer.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
+  license: "GPL-3+ "
+  license_text: ''
+./lib/csharpcomp.c: 
+  copyright: 2003-2008 Free Software Foundation, Inc
+  hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/csharpcomp.h: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/csharpexec.c: 
+  copyright: 2003-2008 Free Software Foundation, Inc
+  hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
+  license: "GPL-3+ "
+  license_text: ''
+./lib/csharpexec.h: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
+  license: "GPL-3+ "
+  license_text: ''
+./lib/cycle-check.c: 
+  copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/cycle-check.h: 
+  copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+  hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
+  license: "GPL-3+ "
+  license_text: ''
+./lib/des.c: 
+  copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+  hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
+  license: "GPL "
+  license_text: ''
+./lib/des.h: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
+  license: "GPL "
+  license_text: ''
+./lib/dev-ino.h: 
+  copyright: ''
+  hash: 389d203acc8519fb2e74b471a247ffd831d6dd93ff076a42ee47a8a48b4f821a
+  license: ''
+  license_text: ''
+./lib/diacrit.c: 
+  copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software
+  hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
+  license: "GPL-3+ "
+  license_text: ''
+./lib/diacrit.h: 
+  copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc
+  hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
+  license: "GPL-3+ "
+  license_text: ''
+./lib/diffseq.h: 
+  copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free
+  hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirchownmod.c: 
+  copyright: 2006, 2007, 2008 Free Software Foundation, Inc
+  hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirchownmod.h: 
+  copyright: ''
+  hash: 2377b01e9bac7aabe4b35b4ee9493ca91cf6d0edae1905934deb6462f7dfcdb7
+  license: ''
+  license_text: ''
+./lib/dirent--.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirent-safer.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirent.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirfd.c: 
+  copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirname.c: 
+  copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
+  hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dirname.h: 
+  copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc / (((unsigned int) | ('a' - 'A')) - 'a' \ / ( == DIRECTORY_SEPARATOR)
+  hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dprintf.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dummy.c: 
+  copyright: 2004, 2007 Free Software Foundation, Inc
+  hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dup-safer.c: 
+  copyright: 2001, 2004, 2005, 2006, 2009 Free Software
+  hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dup2.c: 
+  copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software
+  hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/dup3.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
+  license: "GPL "
+  license_text: ''
+./lib/eealloc.h: 
+  copyright: 2003, 2008 Free Software Foundation, Inc
+  hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
+  license: "GPL-3+ "
+  license_text: ''
+./lib/errno.in.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
+  license: "GPL "
+  license_text: ''
+./lib/error.c: 
+  copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc
+  hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/error.h: 
+  copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc
+  hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
+  license: "GPL-3+ "
+  license_text: ''
+./lib/euidaccess.c: 
+  copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006
+  hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
+  license: "GPL-3+ "
+  license_text: ''
+./lib/exclude.c: 
+  copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003
+  hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
+  license: "GPL-3+ "
+  license_text: ''
+./lib/exclude.h: 
+  copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005
+  hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/execute.c: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+  hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
+  license: "GPL-3+ "
+  license_text: ''
+./lib/execute.h: 
+  copyright: 2001-2003, 2008 Free Software Foundation, Inc
+  hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/exitfail.c: 
+  copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
+  license: "GPL-3+ "
+  license_text: ''
+./lib/exitfail.h: 
+  copyright: 2002 Free Software Foundation, Inc
+  hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
+  license: "GPL-3+ "
+  license_text: ''
+./lib/expl.c: 
+  copyright: 2002, 2003, 2007 Free Software Foundation, Inc
+  hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/faccessat.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fatal-signal.c: 
+  copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc
+  hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fatal-signal.h: 
+  copyright: 2003-2004 Free Software Foundation, Inc
+  hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fbufmode.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fbufmode.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fchdir.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fchmodat.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fchown-stub.c: 
+  copyright: ''
+  hash: 01f08654cdc736f611bedc64897d6cde20db20238576d2e399050a59b54b6609
+  license: ''
+  license_text: ''
+./lib/fchownat.c: 
+  copyright: 2006-2007, 2009 Free Software Foundation, Inc
+  hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fclose.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fcntl--.h: 
+  copyright: 2005, 2009 Free Software Foundation, Inc
+  hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fcntl-safer.h: 
+  copyright: 2005, 2009 Free Software Foundation, Inc
+  hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fcntl.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fd-safer.c: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fdopendir.c: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fflush.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/file-has-acl.c: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+  hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/file-set.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/file-set.h: 
+  copyright: ''
+  hash: 4bacc096f8105ab71d14c90967bb7855d2ad8da0afc132d32c8df03d2eb427dd
+  license: ''
+  license_text: ''
+./lib/file-type.c: 
+  copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free
+  hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
+  license: "GPL-3+ "
+  license_text: ''
+./lib/file-type.h: 
+  copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+  hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fileblocks.c: 
+  copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software
+  hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filemode.c: 
+  copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software
+  hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filemode.h: 
+  copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc
+  hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filename.h: 
+  copyright: ( == '/' || == '\\') / tests whether C is a directory separator character / 2001-2004, 2007-2008 Free Software Foundation, Inc / ( == '/')
+  hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filenamecat.c: 
+  copyright: 1996-2007 Free Software Foundation, Inc
+  hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filenamecat.h: 
+  copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc
+  hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filevercmp.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+  hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+  license: "GPL-3+ "
+  license_text: ''
+./lib/filevercmp.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+  hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+  license: "GPL-3+ "
+  license_text: ''
+./lib/findprog-lgpl.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+  hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
+  license: "GPL-3+ "
+  license_text: ''
+./lib/findprog.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+  hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
+  license: "GPL-3+ "
+  license_text: ''
+./lib/findprog.h: 
+  copyright: 2001-2003 Free Software Foundation, Inc
+  hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/float+.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
+  license: "GPL "
+  license_text: ''
+./lib/float.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/flock.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
+  license: "LGPL-2.1+ "
+  license_text: ''
+./lib/floor.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+  license: "GPL-3+ "
+  license_text: ''
+./lib/floorf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+  license: "GPL-3+ "
+  license_text: ''
+./lib/floorl.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fnmatch.c: 
+  copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
+  hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
+  license: "GPL "
+  license_text: ''
+./lib/fnmatch.in.h: 
+  copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003
+  hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
+  license: "GPL "
+  license_text: ''
+./lib/fnmatch_loop.c: 
+  copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
+  hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
+  license: "GPL "
+  license_text: ''
+./lib/fopen-safer.c: 
+  copyright: 2001, 2004, 2005, 2006, 2009 Free Software
+  hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fopen.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fpending.c: 
+  copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc
+  hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fpending.h: 
+  copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fprintftime.c: 
+  copyright: ''
+  hash: 2f439ed60059d2a1a96bdb1e19ca32c81fdcced639c884f1deaf416f4d750e84
+  license: ''
+  license_text: ''
+./lib/fprintftime.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fpucw.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fpurge.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadable.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadable.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadahead.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadahead.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freading.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freading.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadptr.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadptr.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadseek.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freadseek.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/free.c: 
+  copyright: 2003, 2006 Free Software Foundation, Inc
+  hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
+  license: "GPL-3+ "
+  license_text: ''
+./lib/freopen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/frexp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/frexpl.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fseek.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fseeko.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
+  license: "GPL "
+  license_text: ''
+./lib/fseterr.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fseterr.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fstatat.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fstrcmp.c: 
+  copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
+  hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fstrcmp.h: 
+  copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software
+  hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fsusage.c: 
+  copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009
+  hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fsusage.h: 
+  copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software
+  hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fsync.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
+  license: "LGPL-2.1+ "
+  license_text: ''
+./lib/ftell.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ftello.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ftruncate.c: 
+  copyright: ''
+  hash: 7e7eb364e0c33931844842e8432d1ba9a9f8b8dd506599b01ab206d1a414039f
+  license: "*No copyright* Public domain"
+  license_text: ''
+./lib/fts-cycle.c: 
+  copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fts.c: 
+  copyright: 1990, 1993, 1994 / 2004-2009 Free Software Foundation, Inc
+  hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+  license: "BSD (3 clause) GPL-3+ "
+  license_text: ''
+./lib/fts_.h: 
+  copyright: 1989, 1993 / 2004-2009 Free Software Foundation, Inc
+  hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+  license: "BSD (3 clause) GPL-3+ "
+  license_text: ''
+./lib/full-read.c: 
+  copyright: 2002, 2003 Free Software Foundation, Inc
+  hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
+  license: "GPL-3+ "
+  license_text: ''
+./lib/full-read.h: 
+  copyright: 2002 Free Software Foundation, Inc
+  hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
+  license: "GPL-3+ "
+  license_text: ''
+./lib/full-write.c: 
+  copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+  hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/full-write.h: 
+  copyright: 2002-2003 Free Software Foundation, Inc
+  hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fwritable.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fwritable.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fwriteerror.c: 
+  copyright: 2003-2006, 2008 Free Software Foundation, Inc
+  hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fwriteerror.h: 
+  copyright: 2003, 2005-2006 Free Software Foundation, Inc
+  hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fwriting.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/fwriting.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gai_strerror.c: 
+  copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
+  license: "GPL "
+  license_text: ''
+./lib/gc-gnulib.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+  hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
+  license: "GPL "
+  license_text: ''
+./lib/gc-libgcrypt.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+  hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
+  license: "GPL "
+  license_text: ''
+./lib/gc-pbkdf2-sha1.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
+  license: "GPL "
+  license_text: ''
+./lib/gc.h: 
+  copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
+  hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
+  license: "GPL "
+  license_text: ''
+./lib/gcd.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gcd.h: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gen-uni-tables.c: 
+  copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
+  hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getaddrinfo.c: 
+  copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
+  hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
+  license: "GPL "
+  license_text: ''
+./lib/getcwd.c: 
+  copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc
+  hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getdate.h: 
+  copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software
+  hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getdate.y: 
+  copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+  hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getdelim.c: 
+  copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007
+  hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
+  license: "GPL "
+  license_text: ''
+./lib/getdomainname.c: 
+  copyright: 2003, 2006, 2008 Free Software Foundation, Inc
+  hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getdtablesize.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getgroups.c: 
+  copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software
+  hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gethostname.c: 
+  copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gethrxtime.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gethrxtime.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getline.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
+  license: "GPL "
+  license_text: ''
+./lib/getloadavg.c: 
+  copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994
+  hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getlogin_r.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
+  license: "GPL "
+  license_text: ''
+./lib/getndelim2.c: 
+  copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free
+  hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getndelim2.h: 
+  copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+  hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getnline.c: 
+  copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+  hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getnline.h: 
+  copyright: 2003, 2004 Free Software Foundation, Inc
+  hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getopt.c: 
+  copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
+  hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getopt.in.h: 
+  copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
+  hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getopt1.c: 
+  copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
+  hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getopt_int.h: 
+  copyright: 1989-1994,1996-1999,2001,2003,2004
+  hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getpagesize.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getpass.c: 
+  copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
+  hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
+  license: "GPL "
+  license_text: ''
+./lib/getpass.h: 
+  copyright: 2004 Free Software Foundation, Inc
+  hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
+  license: "GPL "
+  license_text: ''
+./lib/getpeername.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getsockname.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getsockopt.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getsubopt.c: 
+  copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc
+  hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gettext.h: 
+  copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc
+  hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
+  license: "GPL "
+  license_text: ''
+./lib/gettime.c: 
+  copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gettimeofday.c: 
+  copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software
+  hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
+  license: "GPL "
+  license_text: ''
+./lib/getugroups.c: 
+  copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation
+  hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getugroups.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/getusershell.c: 
+  copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free
+  hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
+  license: "GPL-3+ "
+  license_text: ''
+./lib/git-merge-changelog.c: 
+  copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
+  hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
+  license: "GPL-2+ "
+  license_text: ''
+./lib/gl_anyavltree_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anyavltree_list2.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anyhash_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anyhash_list2.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anylinked_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anylinked_list2.h: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anyrbtree_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anyrbtree_list2.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anytree_list1.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anytree_list2.h: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anytree_oset.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anytreehash_list1.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_anytreehash_list2.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_array_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_array_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_array_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_array_oset.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_avltree_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_avltree_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_avltree_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_avltree_oset.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_avltreehash_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_avltreehash_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_carray_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_carray_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_linked_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_linked_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_linkedhash_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_linkedhash_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_list.h: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_oset.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_rbtree_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_rbtree_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_rbtree_oset.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_rbtree_oset.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_rbtreehash_list.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_rbtreehash_list.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_sublist.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/gl_sublist.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/glob-libc.h: 
+  copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc
+  hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/glob.c: 
+  copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+  hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/glob.in.h: 
+  copyright: 2005-2007 Free Software Foundation, Inc
+  hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
+  license: "GPL "
+  license_text: ''
+./lib/glthread/cond.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
+  license: "GPL "
+  license_text: ''
+./lib/glthread/cond.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
+  license: "GPL "
+  license_text: ''
+./lib/glthread/lock.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+  license: "GPL "
+  license_text: ''
+./lib/glthread/lock.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+  license: "GPL "
+  license_text: ''
+./lib/glthread/thread.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+  license: "GPL "
+  license_text: ''
+./lib/glthread/thread.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+  license: "GPL "
+  license_text: ''
+./lib/glthread/threadlib.c: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
+  license: "GPL "
+  license_text: ''
+./lib/glthread/tls.c: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
+  license: "GPL-3+ "
+  license_text: ''
+./lib/glthread/tls.h: 
+  copyright: 2005, 2007-2008 Free Software Foundation, Inc
+  hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
+  license: "GPL-3+ "
+  license_text: ''
+./lib/glthread/yield.h: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
+  license: "GPL "
+  license_text: ''
+./lib/group-member.c: 
+  copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software
+  hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
+  license: "GPL-3+ "
+  license_text: ''
+./lib/group-member.h: 
+  copyright: 1994, 1997, 2003 Free Software Foundation, Inc
+  hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hard-locale.c: 
+  copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free
+  hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hard-locale.h: 
+  copyright: 1999, 2003, 2004 Free Software Foundation, Inc
+  hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hash-pjw.c: 
+  copyright: 2001, 2003, 2006 Free Software Foundation, Inc
+  hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hash-pjw.h: 
+  copyright: 2001, 2003 Free Software Foundation, Inc
+  hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hash-triple.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hash-triple.h: 
+  copyright: ''
+  hash: 96088774b989d1fc41e81f6377fbe2c1a17baec684be47bbca7ec9a7c0071c04
+  license: ''
+  license_text: ''
+./lib/hash.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007
+  hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hash.h: 
+  copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc
+  hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/hmac-md5.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
+  license: "GPL "
+  license_text: ''
+./lib/hmac-sha1.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
+  license: "GPL "
+  license_text: ''
+./lib/hmac.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
+  license: "GPL "
+  license_text: ''
+./lib/human.c: 
+  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+  hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/human.h: 
+  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+  hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
+  license: "GPL-3+ "
+  license_text: ''
+./lib/i-ring.c: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/i-ring.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/iconv.c: 
+  copyright: 1999-2001, 2007 Free Software Foundation, Inc
+  hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
+  license: "GPL "
+  license_text: ''
+./lib/iconv.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
+  license: "GPL "
+  license_text: ''
+./lib/iconv_close.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
+  license: "GPL "
+  license_text: ''
+./lib/iconv_open-aix.gperf: 
+  copyright: ''
+  hash: 6da2acfc8d64cb160d117fcf2ae6ff0c1074e75e98ec00cebcbcd25c91ff6c71
+  license: ''
+  license_text: ''
+./lib/iconv_open-hpux.gperf: 
+  copyright: ''
+  hash: 1af956e948c4e74ae425bc40a8df179820746ac4407e809a8c2c83971c8e0f6f
+  license: ''
+  license_text: ''
+./lib/iconv_open-irix.gperf: 
+  copyright: ''
+  hash: 828615fa97c1771502ef557a7aef007676e378822a93f914e2b67b5ec3ce3912
+  license: ''
+  license_text: ''
+./lib/iconv_open-osf.gperf: 
+  copyright: ''
+  hash: 2c9f609f72f0c386bfbcac0e2f65cd6624a1279429fae6d38e4c2fb91bb4fa2b
+  license: ''
+  license_text: ''
+./lib/iconv_open-solaris.gperf: 
+  copyright: ''
+  hash: 855843d24b44701480c504188b9c91b3b602d6c134e3b450cd8573fd92b35ca6
+  license: ''
+  license_text: ''
+./lib/iconv_open.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
+  license: "GPL "
+  license_text: ''
+./lib/iconveh.h: 
+  copyright: 2001-2007, 2009 Free Software Foundation, Inc
+  hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/idcache.c: 
+  copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
+  hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
+  license: "GPL-3+ "
+  license_text: ''
+./lib/idcache.h: 
+  copyright: ''
+  hash: be4efe8ffdf2e8d49697677451ff6b5db99c836286bace3d23e00fe57cf35725
+  license: ''
+  license_text: ''
+./lib/idpriv-drop.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
+  license: "GPL-3+ "
+  license_text: ''
+./lib/idpriv-droptemp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
+  license: "GPL-3+ "
+  license_text: ''
+./lib/idpriv.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ignore-value.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
+  license: "GPL-3+ "
+  license_text: ''
+./lib/imaxabs.c: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/imaxdiv.c: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/imaxtostr.c: 
+  copyright: ''
+  hash: c5ccba8a9cadbb5e7d6bcb207caa40a490337d0f938712b6886792bb1c3f750f
+  license: ''
+  license_text: ''
+./lib/inet_ntop.c: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc / 1996-1999 by Internet Software Consortium
+  hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
+  license: "ISC GPL "
+  license_text: ''
+./lib/inet_pton.c: 
+  copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
+  license: "ISC GPL-3+ "
+  license_text: ''
+./lib/intprops.h: 
+  copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc
+  hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/inttostr.c: 
+  copyright: 2001, 2006, 2008 Free Software Foundation, Inc
+  hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/inttostr.h: 
+  copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software
+  hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
+  license: "GPL-3+ "
+  license_text: ''
+./lib/inttypes.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ioctl.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isapipe.c: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isapipe.h: 
+  copyright: ''
+  hash: 1e08bd60adc2a94f785eb57858cc60eee319d0250d409627b746953c9778a34e
+  license: ''
+  license_text: ''
+./lib/isdir.c: 
+  copyright: 1990, 1998, 2006 Free Software Foundation, Inc
+  hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isfinite.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
+  license: "GPL "
+  license_text: ''
+./lib/isinf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
+  license: "GPL "
+  license_text: ''
+./lib/isnan.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isnand-nolibm.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isnand.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isnanf-nolibm.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isnanf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isnanl-nolibm.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/isnanl.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javacomp.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javacomp.h: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javaexec.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javaexec.h: 
+  copyright: 2001-2002 Free Software Foundation, Inc
+  hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javaversion.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javaversion.class: 
+  copyright: ''
+  hash: 2bee26b0b761a52a418a6488d94be8af824a30a3f87f50cb8d35f4b7a54a13a6
+  license: ''
+  license_text: ''
+./lib/javaversion.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/javaversion.java: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
+  license: "GPL-3+ "
+  license_text: ''
+./lib/lchown.c: 
+  copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free
+  hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ldexpl.c: 
+  copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc
+  hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/linebuffer.c: 
+  copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
+  hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/linebuffer.h: 
+  copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software
+  hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
+  license: "GPL-3+ "
+  license_text: ''
+./lib/link.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
+  license: "GPL "
+  license_text: ''
+./lib/listen.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
+  license: "GPL-3+ "
+  license_text: ''
+./lib/localcharset.c: 
+  copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
+  hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
+  license: "GPL "
+  license_text: ''
+./lib/localcharset.h: 
+  copyright: 2000-2003 Free Software Foundation, Inc
+  hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
+  license: "GPL "
+  license_text: ''
+./lib/locale.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
+  license: "GPL-3+ "
+  license_text: ''
+./lib/localename.c: 
+  copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc
+  hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
+  license: "LGPL "
+  license_text: ''
+./lib/localename.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
+  license: "LGPL "
+  license_text: ''
+./lib/logl.c: 
+  copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+  hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/long-options.c: 
+  copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005
+  hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/long-options.h: 
+  copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc
+  hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
+  license: "GPL-3+ "
+  license_text: ''
+./lib/lseek.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
+  license: "GPL "
+  license_text: ''
+./lib/lstat.c: 
+  copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc
+  hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/malloc.c: 
+  copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc
+  hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
+  license: "GPL "
+  license_text: ''
+./lib/malloca.c: 
+  copyright: 2003, 2006-2007 Free Software Foundation, Inc
+  hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
+  license: "GPL "
+  license_text: ''
+./lib/malloca.h: 
+  copyright: 2003-2007 Free Software Foundation, Inc
+  hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
+  license: "GPL "
+  license_text: ''
+./lib/malloca.valgrind: 
+  copyright: ''
+  hash: 93322a37edfb58a01aa98fa0cc0c4887861c816c873681286b20873bee36e170
+  license: ''
+  license_text: ''
+./lib/math.in.h: 
+  copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
+  hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbchar.c: 
+  copyright: 2001, 2006 Free Software Foundation, Inc
+  hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbchar.h: 
+  copyright: 2001, 2005-2007 Free Software Foundation, Inc
+  hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbfile.h: 
+  copyright: 2001, 2005 Free Software Foundation, Inc
+  hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbiter.h: 
+  copyright: 2001, 2005, 2007 Free Software Foundation, Inc
+  hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbmemcasecmp.c: 
+  copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc
+  hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbmemcasecmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/mbmemcasecoll.c: 
+  copyright: 2001, 2009 Free Software Foundation, Inc
+  hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/mbmemcasecoll.h: 
+  copyright: 2001, 2009 Free Software Foundation, Inc
+  hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/mbrlen.c: 
+  copyright: 1999-2000, 2008 Free Software Foundation, Inc
+  hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbrtowc.c: 
+  copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc
+  hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbscasecmp.c: 
+  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+  hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbscasestr.c: 
+  copyright: "2005-2008 Free Software Foundation, Inc / TOLOWER "
+  hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbschr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbscspn.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsinit.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbslen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsncasecmp.c: 
+  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+  hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsnlen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsnrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbspbrk.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbspcasecmp.c: 
+  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+  hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsrchr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsrtowcs-state.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbssep.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsspn.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbsstr.c: 
+  copyright: c / 2005-2008 Free Software Foundation, Inc
+  hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbstok_r.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbswidth.c: 
+  copyright: 2000-2008 Free Software Foundation, Inc
+  hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbswidth.h: 
+  copyright: 2000-2004, 2007 Free Software Foundation, Inc
+  hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mbuiter.h: 
+  copyright: 2001, 2005, 2007 Free Software Foundation, Inc
+  hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/md2.c: 
+  copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+  hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
+  license: "GPL "
+  license_text: ''
+./lib/md2.h: 
+  copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
+  hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
+  license: "GPL "
+  license_text: ''
+./lib/md4.c: 
+  copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+  hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
+  license: "GPL "
+  license_text: ''
+./lib/md4.h: 
+  copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
+  hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
+  license: "GPL "
+  license_text: ''
+./lib/md5.c: 
+  copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008
+  hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
+  license: "GPL "
+  license_text: ''
+./lib/md5.h: 
+  copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
+  hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
+  license: "GPL "
+  license_text: ''
+./lib/memcasecmp.c: 
+  copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
+  hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memcasecmp.h: 
+  copyright: 1996, 1998, 2003 Free Software Foundation, Inc
+  hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memchr.c: 
+  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
+  hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
+  license: "GPL "
+  license_text: ''
+./lib/memchr.valgrind: 
+  copyright: ''
+  hash: c4d33a28f691c84b723d8efc9fcdf251c64affe0008457a7b2fe246c1493dff7
+  license: ''
+  license_text: ''
+./lib/memchr2.c: 
+  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006
+  hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
+  license: "GPL "
+  license_text: ''
+./lib/memchr2.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memchr2.valgrind: 
+  copyright: ''
+  hash: 44d9292cd45aeb29569397844ca468602c6e200a76dcba52f4f852fd64fab480
+  license: ''
+  license_text: ''
+./lib/memcmp.c: 
+  copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
+  hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
+  license: "GPL "
+  license_text: ''
+./lib/memcmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/memcmp2.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/memcoll.c: 
+  copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc
+  hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memcoll.h: 
+  copyright: 1999, 2003 Free Software Foundation, Inc
+  hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memcpy.c: 
+  copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
+  hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memmem.c: 
+  copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+  hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+  license: "GPL "
+  license_text: ''
+./lib/memmove.c: 
+  copyright: ''
+  hash: bbdc865dae97e17c0683fdb3a8eada83f89acfb60003bfa558dc1a7bb63fd59c
+  license: ''
+  license_text: ''
+./lib/mempcpy.c: 
+  copyright: 2003, 2007 Free Software Foundation, Inc
+  hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
+  license: "GPL "
+  license_text: ''
+./lib/memrchr.c: 
+  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005
+  hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
+  license: "GPL-3+ "
+  license_text: ''
+./lib/memset.c: 
+  copyright: 1991, 2003 Free Software Foundation, Inc
+  hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
+  license: "GPL "
+  license_text: ''
+./lib/memxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/memxfrm.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/memxor.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
+  license: "GPL "
+  license_text: ''
+./lib/memxor.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
+  license: "GPL "
+  license_text: ''
+./lib/minmax.h: 
+  copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc
+  hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
+  license: "GPL "
+  license_text: ''
+./lib/mkancesdirs.c: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkancesdirs.h: 
+  copyright: ''
+  hash: a956611cade93a9ab7ab7b3a953fd1555ed37d0bf625e985bf66067e1b158431
+  license: ''
+  license_text: ''
+./lib/mkdir-p.c: 
+  copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005
+  hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkdir-p.h: 
+  copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006
+  hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkdir.c: 
+  copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc
+  hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkdirat.c: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkdtemp.c: 
+  copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkostemp.c: 
+  copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkstemp-safer.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mkstemp.c: 
+  copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mktime.c: 
+  copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
+  license: "GPL "
+  license_text: ''
+./lib/modechange.c: 
+  copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005
+  hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/modechange.h: 
+  copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free
+  hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mountlist.c: 
+  copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc
+  hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mountlist.h: 
+  copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
+  hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mpsort.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
+  license: "GPL-3+ "
+  license_text: ''
+./lib/mpsort.h: 
+  copyright: ''
+  hash: b88563a5eb4834d0691531bdfead0f4a1c6441fb83fca6b4d49b862ca6d4e651
+  license: ''
+  license_text: ''
+./lib/nanosleep.c: 
+  copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
+  hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
+  license: "GPL-3+ "
+  license_text: ''
+./lib/netdb.in.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
+  license: "GPL "
+  license_text: ''
+./lib/netinet_in.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
+  license: "GPL "
+  license_text: ''
+./lib/nproc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+  license: "GPL "
+  license_text: ''
+./lib/nproc.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+  license: "GPL "
+  license_text: ''
+./lib/obstack.c: 
+  copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
+  hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/obstack.h: 
+  copyright: 1988-1994,1996-1999,2003,2004,2005,2006
+  hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
+  license: "GPL-3+ "
+  license_text: ''
+./lib/obstack_printf.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
+  license: "GPL "
+  license_text: ''
+./lib/offtostr.c: 
+  copyright: ''
+  hash: 97beafafd8e31c4c52db5355eb0acef1fa5771aa4b21e8d75e9355494786978b
+  license: ''
+  license_text: ''
+./lib/open-safer.c: 
+  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
+  license: "GPL-3+ "
+  license_text: ''
+./lib/open.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
+  license: "GPL-3+ "
+  license_text: ''
+./lib/openat-die.c: 
+  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/openat-priv.h: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/openat-proc.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/openat-safer.c: 
+  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/openat.c: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/openat.h: 
+  copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc
+  hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
+  license: "GPL-3+ "
+  license_text: ''
+./lib/opendir-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pagealign_alloc.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pagealign_alloc.h: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/parse-duration.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/parse-duration.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pathmax.h: 
+  copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc
+  hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
+  license: "GPL "
+  license_text: ''
+./lib/perror.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
+  license: "GPL-3+ "
+  license_text: ''
+./lib/physmem.c: 
+  copyright: 2000, 2001, 2003, 2005, 2006 Free Software
+  hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
+  license: "GPL-3+ "
+  license_text: ''
+./lib/physmem.h: 
+  copyright: 2000, 2003 Free Software Foundation, Inc
+  hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe-filter-aux.h: 
+  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+  hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe-filter-gi.c: 
+  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+  hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe-filter-ii.c: 
+  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+  hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe-filter.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe-safer.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe.c: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+  hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe.h: 
+  copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pipe2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
+  license: "GPL "
+  license_text: ''
+./lib/poll.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
+  license: "GPL "
+  license_text: ''
+./lib/poll.in.h: 
+  copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc
+  hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
+  license: "GPL "
+  license_text: ''
+./lib/popen-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
+  license: "GPL-3+ "
+  license_text: ''
+./lib/popen.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/posixtm.c: 
+  copyright: ((unsigned int) - '0' <= 9) / 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004
+  hash: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/posixtm.h: 
+  copyright: 1998, 2003, 2005, 2007 Free Software Foundation Inc
+  hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
+  license: "GPL-3+ "
+  license_text: ''
+./lib/posixver.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software
+  hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/posixver.h: 
+  copyright: ''
+  hash: 36d1d0fffe2504bfc87051722c32887652d6719a80a23e93cc01daee61006134
+  license: ''
+  license_text: ''
+./lib/printf-args.c: 
+  copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc
+  hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
+  license: "GPL "
+  license_text: ''
+./lib/printf-args.h: 
+  copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc
+  hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
+  license: "GPL "
+  license_text: ''
+./lib/printf-frexp.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/printf-frexp.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/printf-frexpl.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/printf-frexpl.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/printf-parse.c: 
+  copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc
+  hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
+  license: "GPL "
+  license_text: ''
+./lib/printf-parse.h: 
+  copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc
+  hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
+  license: "GPL "
+  license_text: ''
+./lib/printf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/priv-set.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/priv-set.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/progname.c: 
+  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+  hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/progname.h: 
+  copyright: 2001-2004, 2006 Free Software Foundation, Inc
+  hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/progreloc.c: 
+  copyright: 2003-2009 Free Software Foundation, Inc
+  hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
+  license: "GPL-3+ "
+  license_text: ''
+./lib/propername.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
+  license: "GPL-3+ "
+  license_text: ''
+./lib/propername.h: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/pthread.in.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
+  license: "GPL "
+  license_text: ''
+./lib/putenv.c: 
+  copyright: 1991, 1994, 1997-1998, 2000, 2003-2008
+  hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
+  license: "GPL "
+  license_text: ''
+./lib/quote.c: 
+  copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free
+  hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
+  license: "GPL-3+ "
+  license_text: ''
+./lib/quote.h: 
+  copyright: 1998, 1999, 2000, 2001, 2003 Free Software
+  hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/quotearg.c: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007
+  hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/quotearg.h: 
+  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+  hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/raise.c: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/random_r.c: 
+  copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation
+  hash: 56ff6e2aaf2d55a023c78529f964988504c867e654d0df6993406e27656be439
+  license: "BSD (3 clause) LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/rawmemchr.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/rawmemchr.valgrind: 
+  copyright: ''
+  hash: f728bb18311f04d34ed0495880117ccaa59b4c6bc8ebaac82459903cfc3247c8
+  license: ''
+  license_text: ''
+./lib/read-file.c: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
+  license: "GPL "
+  license_text: ''
+./lib/read-file.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
+  license: "GPL "
+  license_text: ''
+./lib/readline.c: 
+  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readline.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readlink.c: 
+  copyright: 2003-2007 Free Software Foundation, Inc
+  hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readtokens.c: 
+  copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc
+  hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readtokens.h: 
+  copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc
+  hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readtokens0.c: 
+  copyright: 2004, 2006 Free Software Foundation, Inc
+  hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readtokens0.h: 
+  copyright: 2004 Free Software Foundation, Inc
+  hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readutmp.c: 
+  copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software
+  hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
+  license: "GPL-3+ "
+  license_text: ''
+./lib/readutmp.h: 
+  copyright: 1992-2007 Free Software Foundation, Inc
+  hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/realloc.c: 
+  copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
+  hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/recv.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
+  license: "GPL-3+ "
+  license_text: ''
+./lib/recvfrom.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
+  license: "GPL-3+ "
+  license_text: ''
+./lib/ref-add.sin: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
+  license: "GPL "
+  license_text: ''
+./lib/ref-del.sin: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
+  license: "GPL "
+  license_text: ''
+./lib/regcomp.c: 
+  copyright: 2002,2003,2004,2005,2006,2007,2008,2009
+  hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
+  license: "GPL "
+  license_text: ''
+./lib/regex.c: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
+  license: "GPL "
+  license_text: ''
+./lib/regex.h: 
+  copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006
+  hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
+  license: "GPL "
+  license_text: ''
+./lib/regex_internal.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+  license: "GPL "
+  license_text: ''
+./lib/regex_internal.h: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+  license: "GPL "
+  license_text: ''
+./lib/regexec.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+  license: "GPL "
+  license_text: ''
+./lib/relocatable.c: 
+  copyright: 2003-2006, 2008 Free Software Foundation, Inc
+  hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
+  license: "LGPL "
+  license_text: ''
+./lib/relocatable.h: 
+  copyright: 2003, 2005, 2008 Free Software Foundation, Inc
+  hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
+  license: "LGPL "
+  license_text: ''
+./lib/relocwrapper.c: 
+  copyright: 2003, 2005-2007 Free Software Foundation, Inc
+  hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
+  license: "GPL-3+ "
+  license_text: ''
+./lib/rename-dest-slash.c: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/rename.c: 
+  copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software
+  hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
+  license: "GPL-3+ "
+  license_text: ''
+./lib/rijndael-alg-fst.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 49cc6c6e9d8de361675d0546671526e3109140364ce29855fbb8de575d6fee29
+  license: "BSD GPL "
+  license_text: ''
+./lib/rijndael-alg-fst.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 162ce649f0d069335d8228a612fdf65ceae6f3475f5dac1558ec29010f225634
+  license: "BSD GPL "
+  license_text: ''
+./lib/rijndael-api-fst.c: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: b99f158275dd4fe795b389f5caccddb053dff98d2b957da0f54453adbfd5a538
+  license: "BSD GPL "
+  license_text: ''
+./lib/rijndael-api-fst.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 5e47a11e8fa358f2f9d5b74032b2f486490674675a23560778ff639f0ac38985
+  license: "BSD GPL "
+  license_text: ''
+./lib/rmdir.c: 
+  copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free
+  hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/round.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+  license: "GPL "
+  license_text: ''
+./lib/roundf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+  license: "GPL "
+  license_text: ''
+./lib/roundl.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+  license: "GPL "
+  license_text: ''
+./lib/rpmatch.c: 
+  copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software
+  hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/safe-alloc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/safe-alloc.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/safe-read.c: 
+  copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free
+  hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
+  license: "GPL-3+ "
+  license_text: ''
+./lib/safe-read.h: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/safe-write.c: 
+  copyright: 2002 Free Software Foundation, Inc
+  hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/safe-write.h: 
+  copyright: 2002 Free Software Foundation, Inc
+  hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/same-inode.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/same.c: 
+  copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free
+  hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/same.h: 
+  copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software
+  hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/save-cwd.c: 
+  copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free
+  hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
+  license: "GPL-3+ "
+  license_text: ''
+./lib/save-cwd.h: 
+  copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc
+  hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
+  license: "GPL-3+ "
+  license_text: ''
+./lib/savedir.c: 
+  copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+  hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
+  license: "GPL-3+ "
+  license_text: ''
+./lib/savedir.h: 
+  copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc
+  hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
+  license: "GPL-3+ "
+  license_text: ''
+./lib/savewd.c: 
+  copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/savewd.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/scandir.c: 
+  copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc
+  hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
+  license: "GPL "
+  license_text: ''
+./lib/sched.in.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/se-context.in.h: 
+  copyright: ''
+  hash: e71efe13fc9c187c71a5f39e76a5a4e4c03a3194a14acf7b4af3fb81c3d879a8
+  license: ''
+  license_text: ''
+./lib/se-selinux.in.h: 
+  copyright: ''
+  hash: 70669262b44df770b656e06dd0607d4fa4e070616a4a93731d36d8254d0eb8bb
+  license: ''
+  license_text: ''
+./lib/search.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
+  license: "GPL-3+ "
+  license_text: ''
+./lib/select.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
+  license: "GPL "
+  license_text: ''
+./lib/selinux-at.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/selinux-at.h: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/send.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sendto.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
+  license: "GPL-3+ "
+  license_text: ''
+./lib/set-mode-acl.c: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+  hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/setenv.c: 
+  copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc
+  hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/setsockopt.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
+  license: "GPL-3+ "
+  license_text: ''
+./lib/settime.c: 
+  copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software
+  hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sh-quote.c: 
+  copyright: 2001-2004, 2006 Free Software Foundation, Inc
+  hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sh-quote.h: 
+  copyright: 2001-2002, 2004 Free Software Foundation, Inc
+  hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sha1.c: 
+  copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
+  hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
+  license: "GPL "
+  license_text: ''
+./lib/sha1.h: 
+  copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009
+  hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
+  license: "GPL "
+  license_text: ''
+./lib/sha256.c: 
+  copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+  hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sha256.h: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sha512.c: 
+  copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+  hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sha512.h: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/shutdown.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sig-handler.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sig2str.c: 
+  copyright: 2002, 2004, 2006 Free Software Foundation, Inc
+  hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sig2str.h: 
+  copyright: 2002, 2005 Free Software Foundation, Inc
+  hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sigaction.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
+  license: "GPL-3+ "
+  license_text: ''
+./lib/siglist.h: 
+  copyright: 1996,97,98,99,2008 Free Software Foundation, Inc
+  hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/signal.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
+  license: "GPL-3+ "
+  license_text: ''
+./lib/signbitd.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
+  license: "GPL-3+ "
+  license_text: ''
+./lib/signbitf.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+  license: "GPL-3+ "
+  license_text: ''
+./lib/signbitl.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sigpipe-die.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sigpipe-die.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sigprocmask.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sincosl.c: 
+  copyright: 1999, 2006, 2007 Free Software Foundation, Inc
+  hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sinl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: aec40ee7886ef37669c9218c5d8a5e07ad40fefa4fc7a1e4e48703d51124a9dc
+  license: ''
+  license_text: ''
+./lib/size_max.h: 
+  copyright: 2005-2006 Free Software Foundation, Inc
+  hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
+  license: "GPL "
+  license_text: ''
+./lib/sleep.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/snprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
+  license: "GPL "
+  license_text: ''
+./lib/socket.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sockets.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sockets.h: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn.in.h: 
+  copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc
+  hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn_faction_addclose.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn_faction_adddup2.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn_faction_addopen.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn_faction_destroy.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn_faction_init.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawn_int.h: 
+  copyright: 2000, 2008 Free Software Foundation, Inc
+  hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_destroy.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_getdefault.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_getflags.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_getpgroup.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_getschedparam.c: 
+  copyright: 2000, 2008 Free Software Foundation, Inc
+  hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_getschedpolicy.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_getsigmask.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_init.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_setdefault.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_setflags.c: 
+  copyright: 2000, 2004 Free Software Foundation, Inc
+  hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_setpgroup.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_setschedparam.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_setschedpolicy.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnattr_setsigmask.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawni.c: 
+  copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
+  hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
+  license: "GPL-3+ "
+  license_text: ''
+./lib/spawnp.c: 
+  copyright: 2000 Free Software Foundation, Inc
+  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sqrtl.c: 
+  copyright: 2002, 2003, 2007 Free Software Foundation, Inc
+  hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stat-macros.h: 
+  copyright: ''
+  hash: 148738a233ce05f8eb8f7d34330ceb02c5bd65c8221d02bbab595257b813e2ed
+  license: ''
+  license_text: ''
+./lib/stat-time.h: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdarg.in.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
+  license: "GPL "
+  license_text: ''
+./lib/stdbool.in.h: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
+  license: "GPL "
+  license_text: ''
+./lib/stddef.in.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
+  license: "GPL "
+  license_text: ''
+./lib/stdint.in.h: 
+  copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc
+  hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
+  license: "GPL "
+  license_text: ''
+./lib/stdio--.h: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdio-impl.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdio-safer.h: 
+  copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc
+  hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdio-write.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdio.in.h: 
+  copyright: 2004, 2007-2009 Free Software Foundation, Inc
+  hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
+  license: "GPL "
+  license_text: ''
+./lib/stdlib--.h: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdlib-safer.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stdlib.in.h: 
+  copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc
+  hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
+  license: "GPL-3+ "
+  license_text: ''
+./lib/stpcpy.c: 
+  copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc
+  hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
+  license: "GPL "
+  license_text: ''
+./lib/stpncpy.c: 
+  copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc
+  hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
+  license: "GPL "
+  license_text: ''
+./lib/str-kmp.h: 
+  copyright: A macro that canonicalizes an element right after / 2005-2008 Free Software Foundation, Inc
+  hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
+  license: "GPL "
+  license_text: ''
+./lib/str-two-way.h: 
+  copyright: 2008 Free Software Foundation, Inc / A macro that canonicalizes an element right after
+  hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
+  license: "GPL "
+  license_text: ''
+./lib/strcasecmp.c: 
+  copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
+  hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
+  license: "GPL "
+  license_text: ''
+./lib/strcasestr.c: 
+  copyright: "2005-2008 Free Software Foundation, Inc / TOLOWER "
+  hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
+  license: "GPL "
+  license_text: ''
+./lib/strchrnul.c: 
+  copyright: 2003, 2007, 2008 Free Software Foundation, Inc
+  hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strchrnul.valgrind: 
+  copyright: ''
+  hash: 110d49dc4750f651d0f237887bbdd3ed01c2d8950db226835e552d195ad9dc03
+  license: ''
+  license_text: ''
+./lib/strcspn.c: 
+  copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc
+  hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
+  license: "GPL "
+  license_text: ''
+./lib/strdup.c: 
+  copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
+  hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
+  license: "GPL "
+  license_text: ''
+./lib/streq.h: 
+  copyright: 2001-2002, 2007 Free Software Foundation, Inc
+  hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/strerror.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strftime.c: 
+  copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
+  hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strftime.h: 
+  copyright: 2002, 2004, 2008 Free Software Foundation, Inc
+  hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/striconv.c: 
+  copyright: 2001-2007 Free Software Foundation, Inc
+  hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
+  license: "GPL "
+  license_text: ''
+./lib/striconv.h: 
+  copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
+  hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
+  license: "GPL "
+  license_text: ''
+./lib/striconveh.c: 
+  copyright: 2001-2009 Free Software Foundation, Inc
+  hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/striconveh.h: 
+  copyright: 2001-2007, 2009 Free Software Foundation, Inc
+  hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
+  license: "GPL-3+ "
+  license_text: ''
+./lib/striconveha.c: 
+  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/striconveha.h: 
+  copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc
+  hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/string.in.h: 
+  copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc
+  hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
+  license: "GPL "
+  license_text: ''
+./lib/strings.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
+  license: "GPL "
+  license_text: ''
+./lib/stripslash.c: 
+  copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc
+  hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strncasecmp.c: 
+  copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
+  hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
+  license: "GPL "
+  license_text: ''
+./lib/strndup.c: 
+  copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
+  hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
+  license: "GPL "
+  license_text: ''
+./lib/strnlen.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
+  license: "GPL "
+  license_text: ''
+./lib/strnlen1.c: 
+  copyright: 2005-2006 Free Software Foundation, Inc
+  hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strnlen1.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strpbrk.c: 
+  copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software
+  hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
+  license: "GPL "
+  license_text: ''
+./lib/strptime.c: 
+  copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc
+  hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
+  license: "GPL "
+  license_text: ''
+./lib/strsep.c: 
+  copyright: 2004, 2007 Free Software Foundation, Inc
+  hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
+  license: "GPL "
+  license_text: ''
+./lib/strsignal.c: 
+  copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc
+  hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./lib/strstr.c: 
+  copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+  hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+  license: "GPL "
+  license_text: ''
+./lib/strtod.c: 
+  copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
+  hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strtoimax.c: 
+  copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software
+  hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strtok_r.c: 
+  copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc
+  hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strtol.c: 
+  copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005
+  hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
+  license: "GPL "
+  license_text: ''
+./lib/strtoll.c: 
+  copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc
+  hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strtoul.c: 
+  copyright: 1991, 1997 Free Software Foundation, Inc
+  hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
+  license: "GPL-3+ "
+  license_text: ''
+./lib/strtoull.c: 
+  copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc
+  hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
+  license: "GPL "
+  license_text: ''
+./lib/strtoumax.c: 
+  copyright: ''
+  hash: 20d59ba9f3d7a1001d08e6aab61d928dbae2fd051e69eab2867765f8663460b6
+  license: ''
+  license_text: ''
+./lib/strverscmp.c: 
+  copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc / ((unsigned int) - '0' <= 9)
+  hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
+  license: "GPL "
+  license_text: ''
+./lib/symlinkat.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/sys_file.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
+  license: "GPL "
+  license_text: ''
+./lib/sys_ioctl.in.h: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
+  license: "GPL "
+  license_text: ''
+./lib/sys_select.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
+  license: "GPL "
+  license_text: ''
+./lib/sys_socket.in.h: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
+  license: "GPL "
+  license_text: ''
+./lib/sys_stat.in.h: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
+  license: "GPL "
+  license_text: ''
+./lib/sys_time.in.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
+  license: "GPL "
+  license_text: ''
+./lib/sys_times.in.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
+  license: "GPL "
+  license_text: ''
+./lib/sys_utsname.in.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
+  license: "GPL "
+  license_text: ''
+./lib/sys_wait.in.h: 
+  copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
+  hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
+  license: "GPL "
+  license_text: ''
+./lib/sysexits.in.h: 
+  copyright: 2003, 2006-2008 Free Software Foundation, Inc
+  hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/t-idcache: 
+  copyright: ''
+  hash: af02ece347f0cc0361537b092cba7066186fc98ab1a92c6d10435a9be9ec9f84
+  license: ''
+  license_text: ''
+./lib/tanl.c: 
+  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+  hash: 1f3518e0705fc06460c8a4c98999f4c188b0dacc611e78239f11c5deaaf35b27
+  license: ''
+  license_text: ''
+./lib/tempname.c: 
+  copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+  hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/tempname.h: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
+  license: "GPL-3+ "
+  license_text: ''
+./lib/time.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
+  license: "GPL "
+  license_text: ''
+./lib/time_r.c: 
+  copyright: 2003, 2006, 2007 Free Software Foundation, Inc
+  hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
+  license: "GPL "
+  license_text: ''
+./lib/timegm.c: 
+  copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software
+  hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
+  license: "GPL "
+  license_text: ''
+./lib/times.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
+  license: "GPL "
+  license_text: ''
+./lib/timespec.h: 
+  copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc
+  hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/tmpdir.c: 
+  copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc / ( == '/' || == '\\') / tests whether C is a directory separator character / ( == '/')
+  hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
+  license: "GPL-3+ "
+  license_text: ''
+./lib/tmpdir.h: 
+  copyright: 2001-2002 Free Software Foundation, Inc
+  hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
+  license: "GPL-3+ "
+  license_text: ''
+./lib/tmpfile-safer.c: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
+  license: "GPL-3+ "
+  license_text: ''
+./lib/tmpfile.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/trigl.c: 
+  copyright: 1999, 2007 Free Software Foundation, Inc
+  hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/trigl.h: 
+  copyright: 2002, 2003 Free Software Foundation, Inc
+  hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/trim.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
+  license: "GPL-3+ "
+  license_text: ''
+./lib/trim.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/trunc.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/truncf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/truncl.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/tsearch.c: 
+  copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc
+  hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
+  license: "GPL "
+  license_text: ''
+./lib/u64.h: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
+  license: "GPL-3+ "
+  license_text: ''
+./lib/uinttostr.c: 
+  copyright: ''
+  hash: 2dc91a8e7841d85e1d053f04554487d1eb07a9f84f68af10180ba7b0d865ac01
+  license: ''
+  license_text: ''
+./lib/umaxtostr.c: 
+  copyright: ''
+  hash: 690d780ea9b95f6c5cdc34874b540dd5b1bb28599537659f46ace170d23ed219
+  license: ''
+  license_text: ''
+./lib/uname.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unicase.h: 
+  copyright: 2002, 2009 Free Software Foundation, Inc
+  hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/cased.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/cased.h: 
+  copyright: ''
+  hash: dff874729fe88b9abf1df3a7e29d95060e758a13afe27f18862e9091171bac89
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/casefold.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/caseprop.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/context.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/empty-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/empty-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/ignorable.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/ignorable.h: 
+  copyright: ''
+  hash: eebec1a20e857e920041811c16a084f7517860f172ebf6dbe93bc9e89b00de9c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/invariant.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/locale-language.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/locale-languages.gperf: 
+  copyright: ''
+  hash: 95c56feb8187781fe9f326e97d88816e218edd31dfceee6446844c7d8009bfa8
+  license: ''
+  license_text: ''
+./lib/unicase/simple-mapping.h: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/special-casing-table.gperf: 
+  copyright: ''
+  hash: a4b12e5d88d868cec05dd05e6bcf4f2484acfc55fde9c60a44d9f7bf345a9d93
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/special-casing.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/special-casing.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/tocasefold.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/tocasefold.h: 
+  copyright: ''
+  hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/tolower.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/tolower.h: 
+  copyright: ''
+  hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/totitle.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/totitle.h: 
+  copyright: ''
+  hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/toupper.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/toupper.h: 
+  copyright: ''
+  hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unicase/u-casecmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-casecoll.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-casefold.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-casemap.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-casexfrm.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-ct-casefold.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-ct-totitle.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-is-cased.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-is-invariant.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-prefix-context.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-suffix-context.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u-totitle.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-casemap.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-ct-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-ct-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-ct-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-ct-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-is-invariant.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u16-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-casemap.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-ct-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-ct-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-ct-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-ct-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-is-invariant.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u32-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-casemap.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-ct-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-ct-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-ct-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-ct-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-is-invariant.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-prefix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-suffix-context.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/u8-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/ulc-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/ulc-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/ulc-casexfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicase/unicasemap.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unicodeio.c: 
+  copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
+  hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unicodeio.h: 
+  copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc
+  hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
+  license: "GPL-3+ "
+  license_text: ''
+./lib/uniconv.h: 
+  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u-conv-from-enc.h: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u-conv-to-enc.h: 
+  copyright: 2002, 2006-2009 Free Software Foundation, Inc
+  hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u-strconv-from-enc.h: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u-strconv-to-enc.h: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u16-conv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u16-conv-to-enc.c: 
+  copyright: 2002, 2006-2008 Free Software Foundation, Inc
+  hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u16-strconv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u16-strconv-from-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u16-strconv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u16-strconv-to-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u32-conv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u32-conv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u32-strconv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u32-strconv-from-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u32-strconv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u32-strconv-to-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u8-conv-from-enc.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u8-conv-to-enc.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u8-strconv-from-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u8-strconv-from-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u8-strconv-to-enc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniconv/u8-strconv-to-locale.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype.h: 
+  copyright: 2002, 2005-2009 Free Software Foundation, Inc
+  hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/3level.h: 
+  copyright: 2000-2001 Free Software Foundation, Inc
+  hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
+  license: "GPL "
+  license_text: ''
+./lib/unictype/3levelbit.h: 
+  copyright: 2000-2002 Free Software Foundation, Inc
+  hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
+  license: "GPL "
+  license_text: ''
+./lib/unictype/Makefile: 
+  copyright: ''
+  hash: bdab4fa6ea70dfa476e8e0bfb1a837bc7e67c3fb607376e6171cc27d23e66848
+  license: ''
+  license_text: ''
+./lib/unictype/bidi_byname.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/bidi_name.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/bidi_of.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/bidi_of.h: 
+  copyright: ''
+  hash: c2182d910737b90cff77f4bab4cc2b1567a8713202c2b24e55951bab986d6627
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/bidi_test.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/bitmap.h: 
+  copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
+  hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/block_test.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/blocks.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/blocks.h: 
+  copyright: ''
+  hash: b6a9e5481a1b0ef31c2bcdeecce12f84a6b3107f42cda43d7b5490e51c7e6b88
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_C.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_C.h: 
+  copyright: ''
+  hash: 8e35c171e0730e196c1752e71128804f55f2ae84579e656cc0a6aa47a1eb35ba
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Cc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Cc.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Cf.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Cf.h: 
+  copyright: ''
+  hash: 47db4afe1e094f7e2c2ef9d8189af3a3412ffc4705e0de359c9f1b921fd15e66
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Cn.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Cn.h: 
+  copyright: ''
+  hash: b39549af020761e1993a548f9b823c05ff2a6e49e6a537ce7fa343aeaa53b145
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Co.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Co.h: 
+  copyright: ''
+  hash: 99e430ef6329b9f7d5ebc51a76e1e2ca53c0507494d6c10546b784e6049bc663
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Cs.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Cs.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_L.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_L.h: 
+  copyright: ''
+  hash: 8fc9e0984df0753aa0b9fad85007840415de5c70af85be4dfbe95bf520fb1385
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Ll.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Ll.h: 
+  copyright: ''
+  hash: 785b1fa8fec42960be4917a6e8f82b3c4c7525cadc22dd518aac0cb7bfcd958f
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Lm.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Lm.h: 
+  copyright: ''
+  hash: a37e7a248becadc97caf50c64c3a3e054194e5a71c4eb62054f56f24f2c97729
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Lo.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Lo.h: 
+  copyright: ''
+  hash: 65c339f1a109086f8d25277fa55fd83bf5aa46d2fc13004aecbc8ca503750a54
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Lt.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Lt.h: 
+  copyright: ''
+  hash: f78dca06ee53b82be63262113da2e6f5ddd027a997d069657b643daff281d7c6
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Lu.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Lu.h: 
+  copyright: ''
+  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_M.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_M.h: 
+  copyright: ''
+  hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Mc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Mc.h: 
+  copyright: ''
+  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Me.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Me.h: 
+  copyright: ''
+  hash: 19978c351a45dad43fc65cd804226182244c2b634a8a7e6541489ac1f174e000
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Mn.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Mn.h: 
+  copyright: ''
+  hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_N.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_N.h: 
+  copyright: ''
+  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Nd.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Nd.h: 
+  copyright: ''
+  hash: 645d0029c292be21c462e6bd7af2d005278ff9bc83122e0eeaacaadf94cd21d3
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Nl.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Nl.h: 
+  copyright: ''
+  hash: e884eada39c812b459e7b7e481b4419599b18f1af710bd8482a696c5cada155a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_No.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_No.h: 
+  copyright: ''
+  hash: 0deece216789474ac445dbdb7296d6d5e8e7e5a8f95dfaf2e67a4c5711e18b57
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_P.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_P.h: 
+  copyright: ''
+  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Pc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Pc.h: 
+  copyright: ''
+  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Pd.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Pd.h: 
+  copyright: ''
+  hash: f547ebd71e710e45743883d9de8b47192f46dfc611373c5c89daf8bdaf5aca6e
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Pe.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Pe.h: 
+  copyright: ''
+  hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Pf.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Pf.h: 
+  copyright: ''
+  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Pi.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Pi.h: 
+  copyright: ''
+  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Po.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Po.h: 
+  copyright: ''
+  hash: 26e8efe9bcc1419927bbca15527c8d81a1b903390185ff5e0b585341b94ad994
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Ps.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Ps.h: 
+  copyright: ''
+  hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_S.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_S.h: 
+  copyright: ''
+  hash: 81291c4df9432e81c35739340c26ef260186afb2e55916cadd9c6a52dc28dae6
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Sc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Sc.h: 
+  copyright: ''
+  hash: a172e78fd27a83c4692b30614cc4ebd009a1b0684b24bb6be9aeb769febacdd8
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Sk.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Sk.h: 
+  copyright: ''
+  hash: c15094a471ca185c4c200e38783cf9e759fa3e0e8fd07b81e3058a1a7ffd5f44
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Sm.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Sm.h: 
+  copyright: ''
+  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_So.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_So.h: 
+  copyright: ''
+  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Z.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Z.h: 
+  copyright: ''
+  hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Zl.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Zl.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Zp.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Zp.h: 
+  copyright: ''
+  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_Zs.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_Zs.h: 
+  copyright: ''
+  hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_and.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_and_not.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_byname.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_name.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_none.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_of.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_of.h: 
+  copyright: ''
+  hash: 2a28fb8f13c04a8d3e8f05dba59e8336dbb1c9fcd244a69729bda0d6cab7903c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/categ_or.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/categ_test.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/combining.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/combining.h: 
+  copyright: ''
+  hash: 1344ff3ca3a44994d02dfae3bf4d2e1ef6b65e951856e19ba186eff2a5f3ddfe
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_alnum.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_alnum.h: 
+  copyright: ''
+  hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_alpha.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_alpha.h: 
+  copyright: ''
+  hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_blank.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_blank.h: 
+  copyright: ''
+  hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_cntrl.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_cntrl.h: 
+  copyright: ''
+  hash: c07f81242830a91177e15d05045170319602acc2f3494d6e1d6abc1ddd693c0d
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_digit.h: 
+  copyright: ''
+  hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_graph.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_graph.h: 
+  copyright: ''
+  hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_lower.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_lower.h: 
+  copyright: ''
+  hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_print.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_print.h: 
+  copyright: ''
+  hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_punct.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_punct.h: 
+  copyright: ''
+  hash: cb1c5c1ff9e38b590896695c0436f5a583961a5aecf9ca57e76b27ba0a4e33c8
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_space.h: 
+  copyright: ''
+  hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_upper.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_upper.h: 
+  copyright: ''
+  hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/ctype_xdigit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/ctype_xdigit.h: 
+  copyright: ''
+  hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/decdigit.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/decdigit.h: 
+  copyright: ''
+  hash: 729a7ffd2cedc46ac857f670fadbd787a8bd1dae5b9433ebebda7916d18af8ce
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/digit.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/digit.h: 
+  copyright: ''
+  hash: e354516c3c1294749f97668b7aecc4aba4cd72013024992226add61ca235a879
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/identsyntaxmap.h: 
+  copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
+  hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/mirror.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/mirror.h: 
+  copyright: ''
+  hash: 4e47d47442a6953840583406acab5bcd285bb8c2d7356180dc28bb277e1e7953
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/numeric.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/numeric.h: 
+  copyright: ''
+  hash: ba1e5ba6fcb88dbb798cd02e5cc119132bc31e49b5a24d8e19ae906ada5711ea
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_alphabetic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_alphabetic.h: 
+  copyright: ''
+  hash: 99efc65e4f46e3ad0efe4f73de0fc1fd74196d0de0892e8640d57da681726ea2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_ascii_hex_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_ascii_hex_digit.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_arabic_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_arabic_digit.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_arabic_right_to_left.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_arabic_right_to_left.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_block_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_block_separator.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_boundary_neutral.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_boundary_neutral.h: 
+  copyright: ''
+  hash: cfee85fd908c11272a95f63abb54df22efd9342b5462d93c6b38df59fbd1ab71
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_common_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_common_separator.h: 
+  copyright: ''
+  hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_control.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_embedding_or_override.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_embedding_or_override.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_eur_num_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_eur_num_separator.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_eur_num_terminator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_eur_num_terminator.h: 
+  copyright: ''
+  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_european_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_european_digit.h: 
+  copyright: ''
+  hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_hebrew_right_to_left.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_hebrew_right_to_left.h: 
+  copyright: ''
+  hash: 66483e8eda823c6234a852450a0e3d7d1b26de2c6f4e7ed117dfd7a5f60b4eb8
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_left_to_right.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_left_to_right.h: 
+  copyright: ''
+  hash: cca189bf24e298f3c3f5f843ff18dfce8c007eed8233e52d0e6dd7f92c32a2bf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_non_spacing_mark.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_non_spacing_mark.h: 
+  copyright: ''
+  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_other_neutral.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_other_neutral.h: 
+  copyright: ''
+  hash: 1e8e84691fd416f70f94e14f52604d742feb401a9e83a8f82c5c2610488e4849
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_pdf.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_pdf.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_segment_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_segment_separator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_bidi_whitespace.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_bidi_whitespace.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_byname.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_byname.gperf: 
+  copyright: ''
+  hash: b16f7907c490b5f7fb2747f5b6b19bd7f6792f0f901474152f7c7fc7b95b151c
+  license: ''
+  license_text: ''
+./lib/unictype/pr_combining.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_combining.h: 
+  copyright: ''
+  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_composite.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_composite.h: 
+  copyright: ''
+  hash: c768605f7580ce16b1f809ff6581158ff3026e0f7e626da4b880421c26f3f758
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_currency_symbol.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_currency_symbol.h: 
+  copyright: ''
+  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_dash.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_dash.h: 
+  copyright: ''
+  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_decimal_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_decimal_digit.h: 
+  copyright: ''
+  hash: d43559860ba0321bc4126988b80b371e40fefd13543804b8cf1e2f323c2e6757
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_default_ignorable_code_point.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_default_ignorable_code_point.h: 
+  copyright: ''
+  hash: 10c6b0ae007cf9d8f016b4a35adc99a18c9253e20cb8212c2920cf601eee37fc
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_deprecated.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_deprecated.h: 
+  copyright: ''
+  hash: eaf7422b8873ab174df241ef321d8b1048a085432d4f6eef3b7e0549335dd9a8
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_diacritic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_diacritic.h: 
+  copyright: ''
+  hash: c22e31f490d3c3010b02a8bd72e1f9d47cdcb168d70d30b805d732b343b511aa
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_extender.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_extender.h: 
+  copyright: ''
+  hash: 7454c1a8c7e88851161788171e398142fc47d8bd1c23e62960fa7d9c0c991b33
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_format_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_format_control.h: 
+  copyright: ''
+  hash: f060d73220f70a9073c426b53a1c1b77d83d62d53b2c20c8ed16a37dbec4466e
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_grapheme_base.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_grapheme_base.h: 
+  copyright: ''
+  hash: 61aa89df11fbca4b079e004f95edb176863f5f5bda22579d93489404b0f9a3bb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_grapheme_extend.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_grapheme_extend.h: 
+  copyright: ''
+  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_grapheme_link.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_grapheme_link.h: 
+  copyright: ''
+  hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_hex_digit.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_hex_digit.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_hyphen.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_hyphen.h: 
+  copyright: ''
+  hash: 1cfda6a60e4fbb2baa92f4c06e315f40f4b685e0d1330afe5788de693a79afdb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_id_continue.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_id_continue.h: 
+  copyright: ''
+  hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_id_start.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_id_start.h: 
+  copyright: ''
+  hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_ideographic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_ideographic.h: 
+  copyright: ''
+  hash: 91d9bdf96ea6ddc4acbc5e4dba0610a5f9dd7cf5121431e1d34dafbe7e715f36
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_ids_binary_operator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_ids_binary_operator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_ids_trinary_operator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_ids_trinary_operator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_ignorable_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_ignorable_control.h: 
+  copyright: ''
+  hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_iso_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_iso_control.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_join_control.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_join_control.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_left_of_pair.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_left_of_pair.h: 
+  copyright: ''
+  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_line_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_line_separator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_logical_order_exception.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_logical_order_exception.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_lowercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_lowercase.h: 
+  copyright: ''
+  hash: c49d818a753284b69b8292112ec7829b4973d7c33cabb0b264bc3eb7193f2e2a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_math.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_math.h: 
+  copyright: ''
+  hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_non_break.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_non_break.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_not_a_character.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_not_a_character.h: 
+  copyright: ''
+  hash: 69c1881b0d0172f2bd222a8d49636e2525f8c53af810fa281b7bf91d2cfaef79
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_numeric.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_numeric.h: 
+  copyright: ''
+  hash: e82cebb512f6ebca3baf39cf0cfb1d65899d1000520acb30b4c4c52fef800dba
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_alphabetic.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_alphabetic.h: 
+  copyright: ''
+  hash: 6eed9d08b80ef5850bc90bf4ec966d5e32a1f13697b484b978c1984ba200e200
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_default_ignorable_code_point.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_default_ignorable_code_point.h: 
+  copyright: ''
+  hash: 670e3738c51a7b91634167670f9f9f7d24237d3bc2d1def297357bed948de48e
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_grapheme_extend.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_grapheme_extend.h: 
+  copyright: ''
+  hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_id_continue.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_id_continue.h: 
+  copyright: ''
+  hash: 68dddcca5a9cf7a98b19f1dbcf36daedc23cbb189126ba3d560fc72cadddf7e1
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_id_start.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_id_start.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_lowercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_lowercase.h: 
+  copyright: ''
+  hash: d5edc016b278de0f7e45c4b97282e69eeaa7e2dcf8ccdf80305e0631a2265331
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_math.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_math.h: 
+  copyright: ''
+  hash: 29e60ffb17e0d28d6faf0dabcb729b97f9ea2640083c733e9d5bb80550af024d
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_other_uppercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_other_uppercase.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_paired_punctuation.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_paired_punctuation.h: 
+  copyright: ''
+  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_paragraph_separator.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_paragraph_separator.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_pattern_syntax.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_pattern_syntax.h: 
+  copyright: ''
+  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_pattern_white_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_pattern_white_space.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_private_use.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_private_use.h: 
+  copyright: ''
+  hash: b579ae087c5f5d39920557ccb10ed9e3e85c9a37d1579f40c7e51b7442503680
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_punctuation.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_punctuation.h: 
+  copyright: ''
+  hash: 879fa687217ae7978e17cdb24937d63ed1b30c34acca5d08c249fb2aa2bec067
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_quotation_mark.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_quotation_mark.h: 
+  copyright: ''
+  hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_radical.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_radical.h: 
+  copyright: ''
+  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_sentence_terminal.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_sentence_terminal.h: 
+  copyright: ''
+  hash: ba2398b9115f8b18f76d9aacaa96041ae918a63b2834f16d66e586276b3b6afd
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_soft_dotted.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_soft_dotted.h: 
+  copyright: ''
+  hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_space.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_terminal_punctuation.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_terminal_punctuation.h: 
+  copyright: ''
+  hash: 8a1e71d67eab269ce9dc3e2893389f951c1c2a7c64c1f722df6206f210ee662c
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_test.c: 
+  copyright: 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_titlecase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_titlecase.h: 
+  copyright: ''
+  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_unassigned_code_value.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_unassigned_code_value.h: 
+  copyright: ''
+  hash: d60cbdaeaf6f4a9135cbd2ec2066e26df90bf74818e2fb55771b0ea03d148c4a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_unified_ideograph.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_unified_ideograph.h: 
+  copyright: ''
+  hash: 4429500f5e5676e777499ce11cef619f91b5e880a9dabd1669bca41d0718d5f8
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_uppercase.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_uppercase.h: 
+  copyright: ''
+  hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_variation_selector.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_variation_selector.h: 
+  copyright: ''
+  hash: abe47e0d33a6fde0c278a443c6255038d6cea6574c38f56dd5d7c1a4fd4a91ec
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_white_space.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_white_space.h: 
+  copyright: ''
+  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_xid_continue.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_xid_continue.h: 
+  copyright: ''
+  hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_xid_start.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_xid_start.h: 
+  copyright: ''
+  hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/pr_zero_width.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/pr_zero_width.h: 
+  copyright: ''
+  hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/scripts.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/scripts.h: 
+  copyright: ''
+  hash: 909da48adc878aafd8b39b3ea48765c54e60373f9511c2132c27bb2108fccafd
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/scripts_byname.gperf: 
+  copyright: ''
+  hash: 2957f52be908b9f9a16d6385681ed2513485321c9f2d54c8d365790acb1236e3
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/sy_c_ident.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/sy_c_ident.h: 
+  copyright: ''
+  hash: 9a50ec74eda18bc573df963aa5bae900789cff2ac4b9193674828efc5b802f69
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/sy_c_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/sy_c_whitespace.h: 
+  copyright: ''
+  hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/sy_java_ident.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/sy_java_ident.h: 
+  copyright: ''
+  hash: 0f004bb9bffa1f06d3a475612c9cd4f5f5df347a81109f243602e9360583f592
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unictype/sy_java_whitespace.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unictype/sy_java_whitespace.h: 
+  copyright: ''
+  hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/unilbrk.h: 
+  copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
+  hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/lbrkprop1.h: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+  hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./lib/unilbrk/lbrkprop2.h: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+  hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./lib/unilbrk/lbrktables.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/lbrktables.h: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/u16-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/u16-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/u32-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/u32-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/u8-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/u8-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/ulc-common.c: 
+  copyright: "|| c_isspace )) / 2001-2003, 2006-2008 Free Software Foundation, Inc"
+  hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/ulc-common.h: 
+  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+  hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/ulc-possible-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unilbrk/ulc-width-linebreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniname.h: 
+  copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc
+  hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniname/gen-uninames.lisp: 
+  copyright: ''
+  hash: d28d41fa6a3eef2669af73aaeb8ce7e2479501eff9b820f3649344dceec287b2
+  license: ''
+  license_text: ''
+./lib/uniname/uniname.c: 
+  copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniname/uninames.h: 
+  copyright: ''
+  hash: 5cc016a12ea5182eb761959d10e5191aca3a76fa8980e231f2449ac38c1ea1dc
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/uninorm.h: 
+  copyright: 2001-2002, 2009 Free Software Foundation, Inc
+  hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/canonical-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/compat-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/composition-table.gperf: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./lib/uninorm/composition.c: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/decompose-internal.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/decompose-internal.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/decomposing-form.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/decomposition-table.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/decomposition-table.h: 
+  copyright: 2001-2003, 2009 Free Software Foundation, Inc
+  hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/decomposition-table1.h: 
+  copyright: ''
+  hash: 295f82a865c8d38feab20d2d0ef7c344f2af45d2a8a6e47aaaebfccfbb53cc24
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/uninorm/decomposition-table2.h: 
+  copyright: ''
+  hash: b855a154049268ffe6cdfea458537883ba134e854cf00d17be5ab3b2b3559f4d
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./lib/uninorm/decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/normalize-internal.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u-normalize-internal.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u-normcoll.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u-normxfrm.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u16-normalize.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u16-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u16-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u16-normxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u32-normalize.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u32-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u32-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u32-normxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u8-normalize.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u8-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u8-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/u8-normxfrm.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uninorm/uninorm-filter.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistd--.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unistd-safer.h: 
+  copyright: 2001, 2003, 2005 Free Software Foundation, Inc
+  hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unistd.in.h: 
+  copyright: 2003-2009 Free Software Foundation, Inc
+  hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
+  license: "GPL "
+  license_text: ''
+./lib/unistdio.h: 
+  copyright: 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-asnprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-asprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-printf-args.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-printf-args.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-printf-parse.h: 
+  copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc
+  hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-snprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-sprintf.h: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-vasprintf.h: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-vsnprintf.h: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u-vsprintf.h: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-u16-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u16-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-u32-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u32-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-asprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-u8-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/u8-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-asnprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-asprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-fprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-printf-parse.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-snprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-sprintf.c: 
+  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-vasnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-vasprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-vfprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-vsnprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistdio/ulc-vsprintf.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr.h: 
+  copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc
+  hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-cmp2.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-cpy-alloc.h: 
+  copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-cpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-endswith.h: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-move.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-set.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-startswith.h: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-stpcpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-stpncpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strcat.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strcoll.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strcpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strcspn.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strdup.h: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strlen.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strncat.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strncpy.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strnlen.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strpbrk.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strspn.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strstr.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u-strtok.h: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-check.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-chr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-cmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-cmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-cpy-alloc.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-cpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-endswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mbsnlen.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mbtouc-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mbtouc-unsafe-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mbtouc-unsafe.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mbtouc.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-mbtoucr.c: 
+  copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
+  hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-move.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-next.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-prev.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-set.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-startswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-stpcpy.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-stpncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strcat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strcmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strcspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strdup.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strmblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strmbtouc.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strncat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strncmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strnlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strpbrk.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strrchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strstr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-strtok.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-to-u32.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-to-u8.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-uctomb-aux.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u16-uctomb.c: 
+  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+  hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-check.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-chr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-cmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-cmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-cpy-alloc.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-cpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-endswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-mblen.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-mbsnlen.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-mbtouc-unsafe.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-mbtouc.c: 
+  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-mbtoucr.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-move.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-next.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-prev.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-set.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-startswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-stpcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-stpncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strcat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strchr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strcmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strcspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strdup.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strmblen.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strmbtouc.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strncat.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strncmp.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strnlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strpbrk.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strrchr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strstr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-strtok.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-to-u16.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-to-u8.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u32-uctomb.c: 
+  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+  hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-check.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-chr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-cmp.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-cmp2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-cpy-alloc.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-cpy.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-endswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mbsnlen.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mbtouc-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mbtouc-unsafe-aux.c: 
+  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mbtouc-unsafe.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mbtouc.c: 
+  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-mbtoucr.c: 
+  copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-move.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-next.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-prev.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-set.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-startswith.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-stpcpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-stpncpy.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strcat.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strcmp.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strcpy.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strcspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strdup.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strlen.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strmblen.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strmbtouc.c: 
+  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strncat.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strncmp.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strncpy.c: 
+  copyright: 2002, 2006 Free Software Foundation, Inc
+  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strnlen.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strpbrk.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strrchr.c: 
+  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strspn.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strstr.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-strtok.c: 
+  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+  hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-to-u16.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-to-u32.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-uctomb-aux.c: 
+  copyright: 2002, 2006-2007 Free Software Foundation, Inc
+  hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unistr/u8-uctomb.c: 
+  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+  hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unitypes.h: 
+  copyright: 2002, 2005-2006 Free Software Foundation, Inc
+  hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk.h: 
+  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+  hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/u-wordbreaks.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/u16-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/u32-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/u8-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/ulc-wordbreaks.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/wbrkprop.h: 
+  copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
+  hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./lib/uniwbrk/wbrktable.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/wbrktable.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwbrk/wordbreak-property.c: 
+  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth.h: 
+  copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc
+  hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/cjk.h: 
+  copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
+  hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/u16-strwidth.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/u16-width.c: 
+  copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
+  hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/u32-strwidth.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/u32-width.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/u8-strwidth.c: 
+  copyright: 2001-2002, 2006 Free Software Foundation, Inc
+  hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/u8-width.c: 
+  copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
+  hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/uniwidth/width.c: 
+  copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
+  hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
+  license: "LGPL-3+ "
+  license_text: ''
+./lib/unlinkdir.c: 
+  copyright: 2005-2006, 2009 Free Software Foundation, Inc
+  hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unlinkdir.h: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unlocked-io.h: 
+  copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc
+  hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
+  license: "GPL-3+ "
+  license_text: ''
+./lib/unsetenv.c: 
+  copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc
+  hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
+  license: "GPL-3+ "
+  license_text: ''
+./lib/userspec.c: 
+  copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
+  hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/userspec.h: 
+  copyright: ''
+  hash: 8fc9e48846b3c4b567f7da8a4b872193d48989f6861b60277e4077a61585ad55
+  license: ''
+  license_text: ''
+./lib/utime.c: 
+  copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software
+  hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
+  license: "GPL "
+  license_text: ''
+./lib/utimecmp.c: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/utimecmp.h: 
+  copyright: 2004 Free Software Foundation, Inc
+  hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/utimens.c: 
+  copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+  hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
+  license: "GPL "
+  license_text: ''
+./lib/utimens.h: 
+  copyright: ''
+  hash: d065c418d4fc1dad24e122f61cd9c4d59db9b05a6dba7ec8c17a8fd0fd9d9472
+  license: ''
+  license_text: ''
+./lib/vasnprintf.c: 
+  copyright: 1999, 2002-2009 Free Software Foundation, Inc
+  hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
+  license: "GPL "
+  license_text: ''
+./lib/vasnprintf.h: 
+  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+  hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
+  license: "GPL "
+  license_text: ''
+./lib/vasprintf.c: 
+  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+  hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
+  license: "GPL "
+  license_text: ''
+./lib/vdprintf.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+  license: "GPL-3+ "
+  license_text: ''
+./lib/verify.h: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
+  license: "GPL-3+ "
+  license_text: ''
+./lib/verror.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/verror.h: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
+  license: "GPL-3+ "
+  license_text: ''
+./lib/version-etc-fsf.c: 
+  copyright: "%s %d Free Software Foundation, Inc.\"; / 1999-2006 Free Software Foundation, Inc / goes to the FSF. */"
+  hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/version-etc.c: 
+  copyright: 1999-2009 Free Software Foundation, Inc
+  hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
+  license: "GPL-3+ "
+  license_text: ''
+./lib/version-etc.h: 
+  copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc
+  hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/vfprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+  license: "GPL-3+ "
+  license_text: ''
+./lib/vprintf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/vsnprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
+  license: "GPL "
+  license_text: ''
+./lib/vsprintf.c: 
+  copyright: 2004, 2006-2008 Free Software Foundation, Inc
+  hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/w32sock.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
+  license: "GPL-3+ "
+  license_text: ''
+./lib/w32spawn.h: 
+  copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc
+  hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wait-process.c: 
+  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+  hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wait-process.h: 
+  copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wchar.in.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
+  license: "GPL "
+  license_text: ''
+./lib/wcrtomb.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wcsnrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wcsrtombs-state.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wcsrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wctob.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/wctype.in.h: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
+  license: "GPL "
+  license_text: ''
+./lib/wcwidth.c: 
+  copyright: 2006, 2007 Free Software Foundation, Inc
+  hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
+  license: "GPL-3+ "
+  license_text: ''
+./lib/write-any-file.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
+  license: "GPL-3+ "
+  license_text: ''
+./lib/write-any-file.h: 
+  copyright: ''
+  hash: 3baee9b8366345680cfc53a87f5dee015146c4255cee16b96803bb3f26cc9d2c
+  license: ''
+  license_text: ''
+./lib/write.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xalloc-die.c: 
+  copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free
+  hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xalloc.h: 
+  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+  hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xasprintf.c: 
+  copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc
+  hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xconcat-filename.c: 
+  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+  hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+  license: "GPL "
+  license_text: ''
+./lib/xgetcwd.c: 
+  copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
+  hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xgetcwd.h: 
+  copyright: 1995, 2001, 2003 Free Software Foundation, Inc
+  hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xgetdomainname.c: 
+  copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
+  hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xgetdomainname.h: 
+  copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc
+  hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xgethostname.c: 
+  copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009
+  hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xgethostname.h: 
+  copyright: ''
+  hash: e9a81c8fca91ef7a8fd72e8246a5fe6367dba77986f6935a318fe7d551ab1e7a
+  license: ''
+  license_text: ''
+./lib/xmalloc.c: 
+  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+  hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xmalloca.c: 
+  copyright: 2003, 2006-2007 Free Software Foundation, Inc
+  hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xmalloca.h: 
+  copyright: 2003, 2005, 2007 Free Software Foundation, Inc
+  hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xmemcoll.c: 
+  copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc
+  hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xmemcoll.h: 
+  copyright: ''
+  hash: 06a32178ba593d8d983c9d741edf99f4a67fa37ba8e8b45cfe60e796fe6e9fcc
+  license: ''
+  license_text: ''
+./lib/xmemdup0.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xmemdup0.h: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xnanosleep.c: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+  hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xnanosleep.h: 
+  copyright: ''
+  hash: dec8f8b2087a79c9bb77d7f89d934625f2b83dd66bbfda194299b351baa1a38c
+  license: ''
+  license_text: ''
+./lib/xprintf.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xprintf.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xreadlink.c: 
+  copyright: 2001, 2003-2007 Free Software Foundation, Inc
+  hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xreadlink.h: 
+  copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
+  hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xsetenv.c: 
+  copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
+  hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xsetenv.h: 
+  copyright: 2001-2002, 2007 Free Software Foundation, Inc
+  hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xsize.h: 
+  copyright: 2003, 2008 Free Software Foundation, Inc
+  hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
+  license: "GPL "
+  license_text: ''
+./lib/xstriconv.c: 
+  copyright: 2001-2004, 2006 Free Software Foundation, Inc
+  hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstriconv.h: 
+  copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
+  hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstriconveh.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstriconveh.h: 
+  copyright: 2001-2007, 2009 Free Software Foundation, Inc
+  hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrndup.c: 
+  copyright: 2003, 2006, 2007 Free Software Foundation, Inc
+  hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrndup.h: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrtod.c: 
+  copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free
+  hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrtod.h: 
+  copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc
+  hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrtoimax.c: 
+  copyright: ''
+  hash: b2ce36a250657c54d51627b616310f70c9870fd5fc7941bf18d3924067f28563
+  license: ''
+  license_text: ''
+./lib/xstrtol-error.c: 
+  copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
+  hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrtol.c: 
+  copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+  hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrtol.h: 
+  copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007
+  hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xstrtold.c: 
+  copyright: ''
+  hash: 1a077cc54d4bfd4cee5ff0022623e5f8553d4eae977ca2f0bed5d0de5c51119b
+  license: ''
+  license_text: ''
+./lib/xstrtoul.c: 
+  copyright: ''
+  hash: bebc6e6916fdada92bda5d5fd7a22c71074205ca0b8476130d540d9139a83d3a
+  license: ''
+  license_text: ''
+./lib/xstrtoumax.c: 
+  copyright: ''
+  hash: 70b5ba83b8bfc540ad4dfead90cff12b8240919d0e368c0ded31a409271b5de6
+  license: ''
+  license_text: ''
+./lib/xtime.h: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xvasprintf.c: 
+  copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc
+  hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
+  license: "GPL-3+ "
+  license_text: ''
+./lib/xvasprintf.h: 
+  copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc
+  hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
+  license: "GPL-3+ "
+  license_text: ''
+./lib/yesno.c: 
+  copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc
+  hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
+  license: "GPL-3+ "
+  license_text: ''
+./lib/yesno.h: 
+  copyright: 2004 Free Software Foundation, Inc
+  hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
+  license: "GPL-3+ "
+  license_text: ''
+./m4/00gnulib.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 199b5fcd827c6451f70d8e1d1a64e314dbae7654c56b74f6588a5bdc54544e70
+  license: ''
+  license_text: ''
+./m4/README: 
+  copyright: ''
+  hash: ba4cd61e99798f7ea35082c20cc09f366c65ec5fccfd0fed9f9d155cf7e29bc5
+  license: ''
+  license_text: ''
+./m4/absolute-header.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: cd06c8f2c0e593aea317496f932d01531368be33ed202d8f67fa9d07f592d4e4
+  license: ''
+  license_text: ''
+./m4/accept4.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b3e97bc4b7996b0d54a8110f94d6eeb97c61532d392ee4edc10ac18bb4ecbea4
+  license: ''
+  license_text: ''
+./m4/acl.m4: 
+  copyright: 2002, 2004-2009 Free Software Foundation, Inc
+  hash: 2062b336b8b9acae4a5a7acd0bc88988e5d79d2868fcd2e28ef211ee2fa0844d
+  license: ''
+  license_text: ''
+./m4/afs.m4: 
+  copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc
+  hash: 568ef913f651e507daaa7d5e2f78566ce66e4d1c1b275c229fbfe1810ea7e0b2
+  license: ''
+  license_text: ''
+./m4/alloca.m4: 
+  copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 1c05b753d58a7541c6aabb8d0ae65e359233c6e0f6c660cee8edffbb50d0dba1
+  license: ''
+  license_text: ''
+./m4/alphasort.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ca5d108291340e87953a7da10112597eb36fe789578740fa3ce5266b621c777d
+  license: ''
+  license_text: ''
+./m4/arcfour.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: a5713df7392190ea048a75a71afb1588cabaa6e3d6c1417961eb77168f44eca1
+  license: ''
+  license_text: ''
+./m4/arctwo.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 36abc4a75d5117bfc913d1a8bf2c5e8e8a8bc6d7286f1303ce8880ee46be3431
+  license: ''
+  license_text: ''
+./m4/argmatch.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 4854bb865e261cec0fbb829700d2a7cd23fbebf0289ebf4a02f105691ccaedd9
+  license: ''
+  license_text: ''
+./m4/argp.m4: 
+  copyright: 2003-2007, 2009 Free Software Foundation, Inc
+  hash: 21e67baca54a3803f21fb63836804e99e202c709dcbc16d3ad6a7b7e272a3381
+  license: ''
+  license_text: ''
+./m4/argz.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 07bb623d7aa89977ca15b1d78a201ca4b7b4762561dac92466c89d0a65c17336
+  license: ''
+  license_text: ''
+./m4/arpa_inet_h.m4: 
+  copyright: 2006, 2008 Free Software Foundation, Inc
+  hash: 50b6027adea6ea1c675d502272095e88d7dc11f7e5ceca51ec845c4aa15295a5
+  license: ''
+  license_text: ''
+./m4/assert.m4: 
+  copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc
+  hash: 9939631ab7942c8ec4fe23d07695acdee8af208c98c7c15871b671dee73aaf8e
+  license: ''
+  license_text: ''
+./m4/atexit.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc
+  hash: 8085939167e8cb64ea4d9d89a945f2cde32d6b68df8fc6153ed1d7b8d1512597
+  license: ''
+  license_text: ''
+./m4/atoll.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: ba4f896e8c9fb0a4bd310145ca06ec6cf35be47f96e9e6af01ba1eb817fa40b4
+  license: ''
+  license_text: ''
+./m4/autobuild.m4: 
+  copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc
+  hash: f5a4a593a144c5649aecf131a8cd7921e8f6c6f5e7dbfba1343aaae61734bd59
+  license: ''
+  license_text: ''
+./m4/backupfile.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 08bbe11639a7958632ef367b118a0616b7375a316d87e5ef868c26ebe410ea2f
+  license: ''
+  license_text: ''
+./m4/base64.m4: 
+  copyright: 2004, 2006 Free Software Foundation, Inc
+  hash: f0a6ca66fe9b14a51cd93f1f25116d916ffe72477c4f6cc44ab0f660d9041459
+  license: ''
+  license_text: ''
+./m4/bison-i18n.m4: 
+  copyright: 2005-2006, 2009 Free Software Foundation, Inc
+  hash: 965fc67b33c005ee86dca5eecdd0a9497bbe1bd8b6720bc3909c72fea2e4ae5d
+  license: ''
+  license_text: ''
+./m4/bison.m4: 
+  copyright: 2002, 2005, 2009 Free Software Foundation, Inc
+  hash: 894a0216128f06bd77d174d18135624574366e95de47fbc8921d6d504eec8072
+  license: ''
+  license_text: ''
+./m4/btowc.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: a5eb4065f63412f6a83feb9e1f65a2a1f8e26da7c83823787165acbaf0137222
+  license: ''
+  license_text: ''
+./m4/byteswap.m4: 
+  copyright: 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: c5aa765b7c6ccc3353870fb151665077a7e38babbeecd726d47c374b6030c142
+  license: ''
+  license_text: ''
+./m4/c-stack.m4: 
+  copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc
+  hash: 5f84f6648d7bba8f1b4a27bd6990d3121ad247cf746dd1e1800dbfea6f2a189b
+  license: ''
+  license_text: ''
+./m4/c-strtod.m4: 
+  copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: f63125eb425fbf1a0f952fabacdb1cc92e8b73b7b535d827cf0238214ec38f7e
+  license: ''
+  license_text: ''
+./m4/calloc.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 3df4bb22fb92d400e022a50e89cbafc7864c637c4a8bdb540128cdd270263b53
+  license: ''
+  license_text: ''
+./m4/canon-host.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 6e792084f158286ac4f73322ef6232e1d46915a0c9c1d49175ff0f95524d60ff
+  license: ''
+  license_text: ''
+./m4/canonicalize-lgpl.m4: 
+  copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 52633d2d1b4de8d850f6a261c9674850ad6b49a6a1cd0bac28a179df50fef773
+  license: ''
+  license_text: ''
+./m4/canonicalize.m4: 
+  copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: bfb8373080498188c794855955e00f51ab9ba1a0f71f87a369fb782b100ecdac
+  license: ''
+  license_text: ''
+./m4/ceil.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 99018f7541cafb7232e12934ab1020dd0c0071912a56b3a0e268f7c97f009c36
+  license: ''
+  license_text: ''
+./m4/ceilf.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 8a43f29a1a6f510ada6a916c12bc8dce19af13bec5252876c9ea5c451fd175db
+  license: ''
+  license_text: ''
+./m4/ceill.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: e7b2a8c6575e96a75b4e0b39c67c8045b023dc4e774d6db56460903035d99847
+  license: ''
+  license_text: ''
+./m4/chdir-long.m4: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: a4f29bf720ac294a5e9815f9bf97d5b315066371d5ba0c1f73ea8480b87e1d35
+  license: ''
+  license_text: ''
+./m4/chdir-safer.m4: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: d4d11a65f4290f666741af1268b3191fe98f808dc2542a5178b54ed4e55ed126
+  license: ''
+  license_text: ''
+./m4/check-math-lib.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 375574fd5cbe36e53461e37f4abbae1347d1b94d1bb7fb713784f988d6509c82
+  license: ''
+  license_text: ''
+./m4/check-version.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: db75405103fdbe9b17d63917d875dc924fd24638440bf489dd2e258d75c154d8
+  license: ''
+  license_text: ''
+./m4/chown.m4: 
+  copyright: 1997-2001, 2003-2005, 2007, 2009
+  hash: 9b3def56d60d2eebd5ca9f5e8163027800bf2fc01df3d092143caa00f80ffa01
+  license: ''
+  license_text: ''
+./m4/clock_time.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: 19824aa72500f6ce1cd7dad2280d6742b8b97adf59dec61783b165208a384aa8
+  license: ''
+  license_text: ''
+./m4/cloexec.m4: 
+  copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 4d4b571bd482f975c487221e5a04b89a98bb9ecde57248f8b8e6cc066718ae68
+  license: ''
+  license_text: ''
+./m4/close-stream.m4: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 3091fb73ef0ac31a2cc908760c33c471d4e7a5c1283c03f5a69d5a82301043fe
+  license: ''
+  license_text: ''
+./m4/close.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 7e1b55433c7364fb5ea4be276aa2f2761dd7b50c399d474f11ed787201ad29d2
+  license: ''
+  license_text: ''
+./m4/closein.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: f58bf58484cebc1a8bc332904efa060564ca19565dde390c83faa28be18d672f
+  license: ''
+  license_text: ''
+./m4/closeout.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: b472fe6270917cb33de443e6130c9722c4f316f255f00a8a00f3ae37fab0b26a
+  license: ''
+  license_text: ''
+./m4/codeset.m4: 
+  copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 798184a7fbbc98c7faaca47a01a72ef637da6852ab2ea8d9ed4b19ad8f83be66
+  license: ''
+  license_text: ''
+./m4/cond.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: fc7299e2068e6ff7fb2c149ae8bf9720b040cf1ee5a6862dc34a9fc507a01556
+  license: ''
+  license_text: ''
+./m4/config-h.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: c6cf92e91910d0bd085cf645a73b6ae7cd932ae193edb3c41c9e285aeb84122a
+  license: ''
+  license_text: ''
+./m4/copy-file.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc
+  hash: 23a58772c01c55b3d027ceae709201c9fafb97744dbe367577674e28588d64d5
+  license: ''
+  license_text: ''
+./m4/count-one-bits.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 7cb9f7f46b3c69bd552292ce5a9d8ad5372dc27602d1adfffd765688bb918c6e
+  license: ''
+  license_text: ''
+./m4/crc.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: ac3b61507ffd5e75e6cb43ecc272a4c802c6b05131d7f8855c2a7509fc610386
+  license: ''
+  license_text: ''
+./m4/csharp.m4: 
+  copyright: 2004-2005, 2009 Free Software Foundation, Inc
+  hash: 3e03d469ea0a067f286a667d6fc8fb7c8e373ec8c6aa13b6b7d73d5ecdd411bf
+  license: ''
+  license_text: ''
+./m4/csharpcomp.m4: 
+  copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc
+  hash: bed35278c23c7f90f65c2e1a03b0b535b14f290ba7007cc11f8c3c0a97b06d1e
+  license: ''
+  license_text: ''
+./m4/csharpexec.m4: 
+  copyright: 2003-2005, 2009 Free Software Foundation, Inc
+  hash: e1de084636e1f5efc990513007c3cfa05561055efcecf49e159166249f61ea8a
+  license: ''
+  license_text: ''
+./m4/cycle-check.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 08b0141983dcbe0af6eb3adced2241ebe8b6ab88474fe14396559bf2c280ee1e
+  license: ''
+  license_text: ''
+./m4/d-ino.m4: 
+  copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software
+  hash: ebc82fd998746123b58231e2d774d7709bbfc7594df11bbc8552c63a28b75c48
+  license: ''
+  license_text: ''
+./m4/d-type.m4: 
+  copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc
+  hash: aaf8c30e46246b12f62710018b00b56cd4ae3ed0f1a0133325d2d727a75db56b
+  license: ''
+  license_text: ''
+./m4/des.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: b9009b10ac57e2829610ad77f600ca717a7ddd2622a071ca3393ffee39f474c1
+  license: ''
+  license_text: ''
+./m4/dirent-safer.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0df2785f4f2c25e6850aeb7ae112f5292cb556f96c2d79c933b062ec5a840276
+  license: ''
+  license_text: ''
+./m4/dirent_h.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 1e19ccad9ce6a2f856861bf7c23b8cd3e5a42edb574fdb4878ccb77562e5eee0
+  license: ''
+  license_text: ''
+./m4/dirfd.m4: 
+  copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc
+  hash: f1a40a07c8854f4be0b3f0f4deae0b1f72de8eb88ed8b30c7a938ad9c4ef1635
+  license: ''
+  license_text: ''
+./m4/dirname.m4: 
+  copyright: 2002-2006 Free Software Foundation, Inc
+  hash: 5e5b390ea6a0270ff48f6e0b985c95d3d178a29ab54c859758c87bd19b543cee
+  license: ''
+  license_text: ''
+./m4/dos.m4: 
+  copyright: ( == '/' || == '\\') / 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc / ( == '/')
+  hash: 0686518ef84a5fed6f1bb276c02d11c84efe40f4450b8b956b4b0f0f4af1f739
+  license: ''
+  license_text: ''
+./m4/double-slash-root.m4: 
+  copyright: 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 00cf683e37d5296236bb31b34728935f45e051dd74abf695fda2272406f6231f
+  license: ''
+  license_text: ''
+./m4/dprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 4d518e6a74aa81ddadb7111ad05a9447d5c22202ff954d6dca5964ec1e755cf3
+  license: ''
+  license_text: ''
+./m4/dprintf.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 193180d094ccea061d44e273da365b72498002d167766c58b7ebe3d9ae421b03
+  license: ''
+  license_text: ''
+./m4/dup2.m4: 
+  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: 7c4b1a9d5d67bca60012e759553f97b72a0ec7f8106e3881845c6545005cb452
+  license: ''
+  license_text: ''
+./m4/dup3.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4ce79f58847153c5a32e74acc00c061c31a87fef94e418168dddb0c0641f1710
+  license: ''
+  license_text: ''
+./m4/eaccess.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc
+  hash: 2eca1bd5e8430964e61caf77d01a5abf3514931453355b3a99a513ba4203cce0
+  license: ''
+  license_text: ''
+./m4/eealloc.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc
+  hash: b48072eda4c415f4c70dabf3f484840e7dcb508b206b48b83d93b9646361d27e
+  license: ''
+  license_text: ''
+./m4/environ.m4: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+  hash: 4283b25a258a4358150e4422f3c22bc4a5a95fd3b05c3864c656997f245d571f
+  license: ''
+  license_text: ''
+./m4/errno_h.m4: 
+  copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 4fe293d8c7486c74c2a6ec7b383c10f11e80af0ac1c6c28451e798a62117bd96
+  license: ''
+  license_text: ''
+./m4/error.m4: 
+  copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
+  hash: d8d8360113fea1e0eab7095a3331097070f8c4adf2dd86b5fd11dc22f73ceebf
+  license: ''
+  license_text: ''
+./m4/euidaccess.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: b2aa7901f1599ebf72d901afba98b9e218c1855b4396cb39194784aeb9051200
+  license: ''
+  license_text: ''
+./m4/exclude.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: f157d5680a79611b130e7e6082cdfd076c29a03eaa43c6edc97cc8e5fe25a1bf
+  license: ''
+  license_text: ''
+./m4/execute.m4: 
+  copyright: 2003, 2008, 2009 Free Software Foundation, Inc
+  hash: d91a2923d49049f4b4d8e89e4c75b86ff3a90420e1e36337461f09aef719825f
+  license: ''
+  license_text: ''
+./m4/exitfail.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: c0bca886587d8ac9978c63a4cd4016879923984497dee2730b5c8cf3e14162f1
+  license: ''
+  license_text: ''
+./m4/exponentd.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5058bb832cabaa10e4a9c9d86746cf504a7f65f202f513d0672d569ca22365ff
+  license: ''
+  license_text: ''
+./m4/exponentf.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 9959e539475d1417ce2a219cbace11d88034d81641007a866c4219aa5341a302
+  license: ''
+  license_text: ''
+./m4/exponentl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 794a89c1dcefd7d2a44a7627ed950cc1de34a3439fb6104e42b476ef7ee745e7
+  license: ''
+  license_text: ''
+./m4/extensions.m4: 
+  copyright: 2003, 2006-2009 Free Software Foundation, Inc
+  hash: bdff048b894f22bac6a6632e68de81828283256a335be4b9e464e943190c0801
+  license: ''
+  license_text: ''
+./m4/faccessat.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9f08b4c94c4a06294b64072a9e6b684b627b44440875f145615f66814fc0b702
+  license: ''
+  license_text: ''
+./m4/fatal-signal.m4: 
+  copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 2a78cb0997683eca979321f1f2eb2973b442ce77f106bcefa8859968fbf58f04
+  license: ''
+  license_text: ''
+./m4/fbufmode.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 47eae3094e71bbbbbdf5e844b7e46629cccefb272730dd90e15929281f04fa48
+  license: ''
+  license_text: ''
+./m4/fchdir.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 18dfd391edf590486365f2410fe2d2fb805d743a68136299ddc47fe80711db98
+  license: ''
+  license_text: ''
+./m4/fclose.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: cb8402f12d3a7e62c3e5617f98e19cc1c0ddef4904bf4d04467c445f5853ed0c
+  license: ''
+  license_text: ''
+./m4/fcntl-safer.m4: 
+  copyright: 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 125531e3fb7fa9ce62b6f25142454078fdc1653288e56dd770c0917c3e88f4e3
+  license: ''
+  license_text: ''
+./m4/fcntl_h.m4: 
+  copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 876ecbcebae308d5b51d7fefbbb44a0cc20781eae03ab416895c50118ad8d06c
+  license: ''
+  license_text: ''
+./m4/fdopendir.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5d0d75f6c33c69ddb9b253fdf2cbcb08752a3bca92d5a9e44cac0d0935f05e1d
+  license: ''
+  license_text: ''
+./m4/fflush.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a42927338afd7b316951faf1c953daafbea033ab310824f84ecbb58383228f48
+  license: ''
+  license_text: ''
+./m4/file-type.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+  hash: 312a84168ac2f1b1c14220aeb335cf1268efe38307848c9a882c099a057ed59e
+  license: ''
+  license_text: ''
+./m4/fileblocks.m4: 
+  copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: afc5994b8cd6b810f81c0bb605c9768ba3c724ebf1ac33b1940081b564db76fd
+  license: ''
+  license_text: ''
+./m4/filemode.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+  hash: 8dd4d3ccf500ebd64522a379c41fec1ed74e007244f7cd946dc9a8c6b0a95e4e
+  license: ''
+  license_text: ''
+./m4/filenamecat.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: ac5ada6787a8617ef2ca718ff8043193dda141d1d57be957af8840cd2ec371dd
+  license: ''
+  license_text: ''
+./m4/findprog.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc
+  hash: 90578a64ef1f6ce7f9d541fac5cb328d7f900ca600e1b1c491e97a729c4391ed
+  license: ''
+  license_text: ''
+./m4/flexmember.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 91bd9e053632cf0678e82035378bc32d21c404e017c0cb13c1888887ccceed56
+  license: ''
+  license_text: ''
+./m4/float_h.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: ed0472c9ce5a69206792765536ce26bf056cb09a0e4e00fbf6f92a804b92dce6
+  license: ''
+  license_text: ''
+./m4/flock.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 46ec46659d20d4d889859493fcff0d6fa0adf9c0f714cf2e1f26abc0d5d26878
+  license: ''
+  license_text: ''
+./m4/floor.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 1c106d3c05b2afa08097d196eed80b85166a5c7058ba2e9e36be6635d27b1cec
+  license: ''
+  license_text: ''
+./m4/floorf.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: aa5e12760098221878cffc006320adffba688133460e279f740759c7faec4b05
+  license: ''
+  license_text: ''
+./m4/floorl.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: b85a4fe69e190a88a16dd404a61599e8070a3b3bf9ab37c9690b543c81b629e3
+  license: ''
+  license_text: ''
+./m4/fnmatch.m4: 
+  copyright: 2000-2007, 2009 Free Software Foundation, Inc
+  hash: 5ad2559cc52140959c55fdd9939dbda831638089cfc85ed96288f33906ae6f79
+  license: ''
+  license_text: ''
+./m4/fopen.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ad0e94c6fd7ae83f339ed3ab8e1bff3dd2758d7f6031df649ed0b0b97f6e0be1
+  license: ''
+  license_text: ''
+./m4/fpending.m4: 
+  copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc
+  hash: 15e76893dd5eb2ccd584f05adfd4d0bf825205860f2ff756e9e1020c18908f66
+  license: ''
+  license_text: ''
+./m4/fpieee.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 3f59244481168ae5dfff004b81aeb6f8c894e83e649b61756a5728bbd99f7c0c
+  license: ''
+  license_text: ''
+./m4/fprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a6008d1598b7a24895a472734caac4147d7e0e83af64445440435d102702f0db
+  license: ''
+  license_text: ''
+./m4/fprintftime.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: b7fa3778dc0b75cfe801816cc9055dc7cf465859763cf969813048c198e5a4f2
+  license: ''
+  license_text: ''
+./m4/fpurge.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: f62512d54c7b8d9c80dd8cce01a414ff826212c7c2c6248a9ed3c7b633c05db5
+  license: ''
+  license_text: ''
+./m4/freadable.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 3bf013bf28d20f59da11208e07e1df5b7bce00db26854e6f051e7d5d9f8accab
+  license: ''
+  license_text: ''
+./m4/freading.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 1b93e3045ca266145966f8cc03253dc078a20bcc5718c4cbfb0143e96e71623b
+  license: ''
+  license_text: ''
+./m4/free.m4: 
+  copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
+  hash: a73accbd96194e981cf77ac3c837092a69e5bc17d503029f7289b87d3b368a63
+  license: ''
+  license_text: ''
+./m4/freopen.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5ebdad15bb6e2f7016d5c80253fb741aa55cd8d814b9540de1a847331950da0f
+  license: ''
+  license_text: ''
+./m4/frexp.m4: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: dc1ae79deeb763eff6de3d5298100b251865503e40b019a89e3db089bcad3a31
+  license: ''
+  license_text: ''
+./m4/frexpl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 9eaf5d91b7fdceaec549c9d2f9ab9d7e1310c826c42c98e3617d338820d46491
+  license: ''
+  license_text: ''
+./m4/fseek.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 31705112d71a7dca0c55e58f71bb7793f5e8c34f031a0c8c3a9e5fc4e02f831d
+  license: ''
+  license_text: ''
+./m4/fseeko.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 6395a4c99169cdd30546e688899aafb3463f40f644f76627f7faa5ae579e04ee
+  license: ''
+  license_text: ''
+./m4/fstypename.m4: 
+  copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc
+  hash: febf3d78aaad07d686dc0df84606d52ac546108e705860bb0215d8ce5a405cc9
+  license: ''
+  license_text: ''
+./m4/fsusage.m4: 
+  copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc
+  hash: 3f4ff242e495ac68b8e83f016aa01d83f890eb555ecd89730b95db0b1519d48b
+  license: ''
+  license_text: ''
+./m4/fsync.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 77db5b0972952ed1ea04f93e7da8814121e35fe2dd6ac987ecb230dad1ff2e6a
+  license: ''
+  license_text: ''
+./m4/ftell.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: d75a25a7df953391070aaf846037d45c4acd0b49dec2f2b6d5ffd42efa912d8f
+  license: ''
+  license_text: ''
+./m4/ftello.m4: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 8325ff7415b489bb4cda6d66da300385b44ef26bc5d2d2f0dcea088931d45276
+  license: ''
+  license_text: ''
+./m4/ftruncate.m4: 
+  copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc
+  hash: f7488bef88571b9f271591596eb95b19045177a6732d63cf4f1d4bbb4682840d
+  license: ''
+  license_text: ''
+./m4/fts.m4: 
+  copyright: 2005-2008 Free Software Foundation, Inc
+  hash: 4f513e7bacffd2fd728bbb1ba8590d68154aad24bd93f9e3f180437b79c5ceea
+  license: ''
+  license_text: ''
+./m4/func.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 399a8add7bf539263c73610b55864fa380c55b671a1475c2665b4e44a492f651
+  license: ''
+  license_text: ''
+./m4/fwritable.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 5e3d7fabafc4390341689eab88fb336422580b76c3d8e69bf3ee14c4d1b8fb5f
+  license: ''
+  license_text: ''
+./m4/fwriting.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 1ad3e75d2fb60d18c45f3836e75300e8269bc88ec64462820c09c910d9f52503
+  license: ''
+  license_text: ''
+./m4/gc-arcfour.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 9efa840a3efc3447c567fa7289fe2ebe32bb1d871418edd1b4b24110a85851df
+  license: ''
+  license_text: ''
+./m4/gc-arctwo.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 2e87cd8b7b772699b901021af1778dc199583766bcde241517d2b31dede60e28
+  license: ''
+  license_text: ''
+./m4/gc-camellia.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 1cc1d8a7ebf5b851e2e4dbd647b73831533ee517189c1e5b42395944508f3c90
+  license: ''
+  license_text: ''
+./m4/gc-des.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 00b153202ac5b51eb239ca87808efccc65a24713beb6211f670533ac858b2417
+  license: ''
+  license_text: ''
+./m4/gc-hmac-md5.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 2cc833715be1b2e57351273907eaff653c0165732898f852fbc4aac9a9eaf89c
+  license: ''
+  license_text: ''
+./m4/gc-hmac-sha1.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: b1c3c8753c14de1d3eddf5de258bbfbad6c215251cd5b61018a7515d6cef20e6
+  license: ''
+  license_text: ''
+./m4/gc-md2.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: ac2dbdefb3eb77364d1898cf795c625244227b19b4d0ea88ed078d333cf09ea9
+  license: ''
+  license_text: ''
+./m4/gc-md4.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: eb88ac5149f21b181faa2db6f1b13cb63b4902c3ef347111cf4fe93d44407c6f
+  license: ''
+  license_text: ''
+./m4/gc-md5.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: afc266c338301066708dc7430a92399e3d8716e33001daba899c95640e527f0c
+  license: ''
+  license_text: ''
+./m4/gc-pbkdf2-sha1.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 477893cd24822028dd94a1f6ec75e6effc823ddbe57289886454a1b353c1b8eb
+  license: ''
+  license_text: ''
+./m4/gc-random.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 7c6359250cc4a22a27311b673688f6b1f0622d00c42f57e47425c75c31dd6b17
+  license: ''
+  license_text: ''
+./m4/gc-rijndael.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 6caca24fa5408e0286cbdfb716068d66a352c80142643dba35fcd4011bf6a33e
+  license: ''
+  license_text: ''
+./m4/gc-sha1.m4: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 443bfafc3a5eb25299291d7dcfef2ed68f0b57841caf360fc8eb1abb0f32493a
+  license: ''
+  license_text: ''
+./m4/gc.m4: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: a8f9ebf6d8f1983cbd8b32378b928174f6026da55c11a81aae47e2b2e1c25142
+  license: ''
+  license_text: ''
+./m4/getaddrinfo.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 162f35cf358a5ad9b171d16e437f37a717d01d22d5f17725767ed7f76f6b650b
+  license: ''
+  license_text: ''
+./m4/getcwd-abort-bug.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: fd355ed2ae698981232b9c3a5b92ee842d9928342394217c98f5576848b08577
+  license: ''
+  license_text: ''
+./m4/getcwd-path-max.m4: 
+  copyright: 2003-2007, 2009 Free Software Foundation, Inc
+  hash: bb780d0c969c10a9d14d8d61d726b682113b7fe3a5505eee66e649fefe99c063
+  license: ''
+  license_text: ''
+./m4/getcwd.m4: 
+  copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 0fc304520a41fcf7ad345780a1cb9eaf73bef3856834b3448bc2283210c77b07
+  license: ''
+  license_text: ''
+./m4/getdate.m4: 
+  copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc
+  hash: c237091fdbe4035e27c3be4829e9e1798870c51bb982585a5c11c1bca74fb1ee
+  license: ''
+  license_text: ''
+./m4/getdelim.m4: 
+  copyright: 2005, 2006, 2007 Free Software dnl Foundation, Inc
+  hash: b6b738dbf34edff9dc3d2f0be5088bfb974fdbe55ac6aa7a255b39a851384122
+  license: ''
+  license_text: ''
+./m4/getdomainname.m4: 
+  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+  hash: 7fb3faebffb6a66d558b99423801631258e92e4a782809f808d9f7cd0bcb5094
+  license: ''
+  license_text: ''
+./m4/getdtablesize.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 67ccf670de71994ed6710e1897f64f871a74271c9af2c827cbe55bfaa538a8de
+  license: ''
+  license_text: ''
+./m4/getgroups.m4: 
+  copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc
+  hash: c3ad064f9d4de711f983f1b373e261e6c5c254520cf1cd2353e98941b5fd3285
+  license: ''
+  license_text: ''
+./m4/gethostname.m4: 
+  copyright: 2002, 2008, 2009 Free Software Foundation, Inc
+  hash: 9fd3d06a71eff8d2be5bd62a266b0bd71283c871f3dda177fb83476dd922e426
+  license: ''
+  license_text: ''
+./m4/gethrxtime.m4: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 84c7e59b44315629631075311dee0c40fcc834324dd7672cb0f3148be10ba6a4
+  license: ''
+  license_text: ''
+./m4/getline.m4: 
+  copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 89ec9fb86746e481d3340d6a2bec769a1bb1ea00e6ed30bdea292e8f1242036a
+  license: ''
+  license_text: ''
+./m4/getloadavg.m4: 
+  copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003
+  hash: 7b0c35c25d813983e2ffc981ad4773d7cbcf126d0d853391cee73b7ad3e60db4
+  license: ''
+  license_text: ''
+./m4/getlogin_r.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: f42c8994afabe3f85235db3850925d5e613daad1e9f64024023826ff10feef97
+  license: ''
+  license_text: ''
+./m4/getndelim2.m4: 
+  copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 3172ac8aa677c2d97b39f9d6af0fed26d2fed4da679b616e668066329ec2bd1e
+  license: ''
+  license_text: ''
+./m4/getnline.m4: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: 9af45bdccbe7d6ae432a8112390145eaa29f89ba5e448fe8aadd58355ce77f7d
+  license: ''
+  license_text: ''
+./m4/getopt.m4: 
+  copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc
+  hash: 5f06c376d4d0eab902bcd59374dcc3569716156e6a5b3a9f057e901cd8460904
+  license: ''
+  license_text: ''
+./m4/getpagesize.m4: 
+  copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc
+  hash: 2b7fd04beb6e26d86c114fa975404317f7fa575b5902dae6f392c060fb8bce22
+  license: ''
+  license_text: ''
+./m4/getpass.m4: 
+  copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc
+  hash: a34c89dcb9d116383941ad1d076e7df7db9ecaa7058c9a85b09d0b938d5dc5a8
+  license: ''
+  license_text: ''
+./m4/getsubopt.m4: 
+  copyright: 2004, 2007 Free Software Foundation, Inc
+  hash: 9b04ceb2d89042a3ff134954522fe3cefea7441790d31ab74fc2d0c265c1309d
+  license: ''
+  license_text: ''
+./m4/gettext.m4: 
+  copyright: 1995-2009 Free Software Foundation, Inc
+  hash: 209767111675e6bd3167db5ee4bbcde54189112719d3de3db9f87f6850f60440
+  license: ''
+  license_text: ''
+./m4/gettime.m4: 
+  copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 2dee3947ea628455e6f99a9429ca412a5727e6ae81fcfc765de229a5f214cb4e
+  license: ''
+  license_text: ''
+./m4/gettimeofday.m4: 
+  copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: 2813667e7bf563ab4d0f747953be0ea2a763ff773c3f251ff9f08daf2f33013b
+  license: ''
+  license_text: ''
+./m4/getugroups.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 5fa33ebc62e80a7f354f6e432c4dac78bac05bd75f9381b430a0f638994381ea
+  license: ''
+  license_text: ''
+./m4/getusershell.m4: 
+  copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc
+  hash: 85822f50f91b2679b6b3607288c46cd4fb5c2f08c12a4329a1ff7de39e2766c0
+  license: ''
+  license_text: ''
+./m4/gl_list.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8b2a1802af815eebecaaf1e75e8931f2f40e8f48695c96b0230339ff56d88eaa
+  license: ''
+  license_text: ''
+./m4/glibc2.m4: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+  hash: 11b39a2f3ca03b195c0ff0fb9170ea87fbe38dd4ff8a481000feb62e48168c97
+  license: ''
+  license_text: ''
+./m4/glibc21.m4: 
+  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+  hash: c38afe2c0836f2ddec80a6aac76a85735b6b0a3e487fea600816d7a460492c6f
+  license: ''
+  license_text: ''
+./m4/glob.m4: 
+  copyright: 2005-2007 Free Software Foundation, Inc
+  hash: a90e23db91a3c58be62de6c2bf9556087e2266f338a41bbdfe4d4e9c9017fe47
+  license: ''
+  license_text: ''
+./m4/gnu-make.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 70a7aba0c8a2889370654a6a63b8c36d43163088c2fa61cf20d080eb6151bb6f
+  license: ''
+  license_text: ''
+./m4/gnulib-common.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: cf953d1ede907c6631070667a43748f8f22368503be57c4207aba45ea49e1804
+  license: ''
+  license_text: ''
+./m4/gnulib-tool.m4: 
+  copyright: 2004-2005 Free Software Foundation, Inc
+  hash: c6d2fd9c5bba8e3f3ebfc4650a4b9d0432d43d2e4810f637fda353b1f61d7de7
+  license: ''
+  license_text: ''
+./m4/group-member.m4: 
+  copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc
+  hash: b9ef1ff8203530e2e78714b55cf01b1bbf1c7c258b61ee3536c1cb5892bd8d16
+  license: ''
+  license_text: ''
+./m4/hard-locale.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 97264040027e35bb6dbe3df675fe93938e7a66d8b148d6fba0ecc36e19d5cf40
+  license: ''
+  license_text: ''
+./m4/hash.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 819523e80720760423e01ca0720b2940895aef21577d206f09dbc782bf0f5d93
+  license: ''
+  license_text: ''
+./m4/hmac-md5.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 01aa0b99269598138f369e395801e415957d1f5e99e42b67da35a667bd88f307
+  license: ''
+  license_text: ''
+./m4/hmac-sha1.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: f261317ddd13a6feb35c7a801adc7f7156819362d3d5efd1e0636fc54e3f67cc
+  license: ''
+  license_text: ''
+./m4/host-os.m4: 
+  copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+  hash: cf2577e3c69f36ee157700e347082ddfb55659d7ec921569d78be17be2df1a3f
+  license: ''
+  license_text: ''
+./m4/hostent.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 86614585cb9169151c04f411f5a9e8f576954e89bf686b988b3ec4e8d56234be
+  license: ''
+  license_text: ''
+./m4/human.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: a7fb86bd0bbe797cf1a99630e2764b76f2a8c322acdb3fd3e32d9f5f52288246
+  license: ''
+  license_text: ''
+./m4/i-ring.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 8a89b11945fad17cf70d3830685f646050122bba7c19ecca33a7feec4e7b73a6
+  license: ''
+  license_text: ''
+./m4/iconv.m4: 
+  copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc
+  hash: 58adc1feb91f7df348f3072f3187d4b2487b22efb486a17366fdefadfe1e2453
+  license: ''
+  license_text: ''
+./m4/iconv_h.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 4bf94c8ab903d28caab6ad4c0ff7f6976cff8aac193e26f06a4ef161ab7cfb7f
+  license: ''
+  license_text: ''
+./m4/iconv_open.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: cc6a4cffaeedc925c4b77d44679278ce74a324ae280a69086127a1244e575694
+  license: ''
+  license_text: ''
+./m4/idcache.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 684c8544db4656472183f046dacda8f3db85963ccd23353fbcd5dfe988c1356e
+  license: ''
+  license_text: ''
+./m4/idpriv.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5b4a91d383eb4ddf7108b571d3eeead786ce2af3a1dc207b5b5faee7009db536
+  license: ''
+  license_text: ''
+./m4/imaxabs.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 9ac282ca81021c035a86c34f143d6b7a49de4067e4b69b1b93f39a146447bfac
+  license: ''
+  license_text: ''
+./m4/imaxdiv.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 5fadf938b03a5ea38a211bb8d57402bb672b551cbe5701a7d9db8d054dc16098
+  license: ''
+  license_text: ''
+./m4/include_next.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: fc10e0ad2c9bd80b98f37d913b9021a9b6538bbcea1386183abe1a5b7ae89d0e
+  license: ''
+  license_text: ''
+./m4/inet_ntop.m4: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 2961f88ceca9369b98135b582ea275427282cf3cee5edefabe6510f3a36637a3
+  license: ''
+  license_text: ''
+./m4/inet_pton.m4: 
+  copyright: 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 3f59e48fd6fa87c38851d0fb7f14d7fddeb46f50d526beeca3383d01002dfd06
+  license: ''
+  license_text: ''
+./m4/inline.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 1ce32c0db262c643f6c513cf276d533c45afeea4b8f10681b2fd8d8c770f0e9e
+  license: ''
+  license_text: ''
+./m4/intdiv0.m4: 
+  copyright: 2002, 2007-2008 Free Software Foundation, Inc
+  hash: 3b41e9fe7c042186c2004a938b8f651898d683f34d60198d65048c00eaffe3aa
+  license: ''
+  license_text: ''
+./m4/intl.m4: 
+  copyright: 1995-2007 Free Software Foundation, Inc
+  hash: 0d7179b34d75a5812cc919c4190baf120690b0155fc61f344967c0805e0d566a
+  license: ''
+  license_text: ''
+./m4/intldir.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 612428195affe98a7d5441899325dd49d191670b691459bc02e12ab0cfbf966a
+  license: ''
+  license_text: ''
+./m4/intlmacosx.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 447c46fa3888adb2ccaab83f4cf703a630ef162e4933d79887ea9039a02729e0
+  license: ''
+  license_text: ''
+./m4/intmax.m4: 
+  copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc
+  hash: c110fc0f8772eb14b1d5e4e98f3bb7a7973aee6a673907e18409a3e79e319b56
+  license: ''
+  license_text: ''
+./m4/intmax_t.m4: 
+  copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 86248e08dfb3dbae4bf34645c7909fcfdc517fb975573a8f57f9fa11a9c47fb0
+  license: ''
+  license_text: ''
+./m4/inttostr.m4: 
+  copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: e2b51832fe091eaf612d6dac65a6e704009d76fe68224aed958f392d2637a269
+  license: ''
+  license_text: ''
+./m4/inttypes-pri.m4: 
+  copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 8649b8fa7043ccf53fdf62500bad888da4180ee519fb31fab64aaf8c8ce9ded8
+  license: ''
+  license_text: ''
+./m4/inttypes.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: e5b427858f7a6dbbb30e7d900d76402ff9a42c6ec9c38bff2bfa3f59be20e3eb
+  license: ''
+  license_text: ''
+./m4/inttypes_h.m4: 
+  copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: ca5eb68f1650e18a89c61c9ad23ecf5786ead724c985f8a06dc12877c9d326c4
+  license: ''
+  license_text: ''
+./m4/isapipe.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 694aef61dce5554fcd26fb2c28e2544ba8e385f8d6e673c37164e578fd6dc342
+  license: ''
+  license_text: ''
+./m4/isdir.m4: 
+  copyright: 2002 Free Software Foundation, Inc
+  hash: e9d65c52fa170654224baaa1a9a48b18398df1b62c8f0595813ec62b53a55729
+  license: ''
+  license_text: ''
+./m4/isfinite.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: c19d2f133ca402c36f7c2d02bb1793b8722b49205ea44e74e40e92cef27db4fc
+  license: ''
+  license_text: ''
+./m4/isinf.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: fe9d10fd7eb4cd6bcb9b2cb63a4d24340313246a2d39faa8a63a5ca82998ff9a
+  license: ''
+  license_text: ''
+./m4/isnan.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e7b33f83d3ce859e8f1395ea66d91f251c145404b1b04abc907a4966f213aa24
+  license: ''
+  license_text: ''
+./m4/isnand.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 51e8e66a3b57025d5bc688689425eb32e6c8e064ede078c4d6e080b56d3aab04
+  license: ''
+  license_text: ''
+./m4/isnanf.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 595cb32bba81892f6ea7ddb98c352f5796a0535a6fa78a172cfb89437609af6b
+  license: ''
+  license_text: ''
+./m4/isnanl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: f803ad5cf4c44855de734207bee9190902ea849cbb2b13dc2e61ae9733015193
+  license: ''
+  license_text: ''
+./m4/javacomp.m4: 
+  copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 14e19c009a90dde63c919635e6c67c76ca1ea166444f296ba5e1841d14e51aba
+  license: ''
+  license_text: ''
+./m4/javaexec.m4: 
+  copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc
+  hash: 4918c3e11f2ea4072f3311b390e4ae81540c6a5adf57fb986a3fcf7dab7e771d
+  license: ''
+  license_text: ''
+./m4/jm-winsz1.m4: 
+  copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009
+  hash: 301531f58811d581f72b13a77914c5ce9116ba7ee471486ae31a75aedd85f502
+  license: ''
+  license_text: ''
+./m4/jm-winsz2.m4: 
+  copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc
+  hash: 060d85fec2c0b5c74229e5cb538ab49a2731fdcf7d9af9cd2fa2e23e3f57357e
+  license: ''
+  license_text: ''
+./m4/lchmod.m4: 
+  copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+  hash: f8d332af32afc5284f1da28186423c4b1f8df943fec36a1415936007a868b4e4
+  license: ''
+  license_text: ''
+./m4/lchown.m4: 
+  copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc
+  hash: 114159d41d1474abd908058b69f4373686342a1796d9f9f65bbbb9267cbc9d69
+  license: ''
+  license_text: ''
+./m4/lcmessage.m4: 
+  copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
+  hash: e2cc3d8b92945a9d0baa9a803ba03d5516916bfa463cb50f551414bc550edef9
+  license: ''
+  license_text: ''
+./m4/ld-output-def.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: e5ffc015c39b58438c1616034da6eecc2ac346360cd22575e51c5f72c4aa9ff7
+  license: ''
+  license_text: ''
+./m4/ld-version-script.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: efaad515a17443f74a72ceef2bbbbb094f1e5a36515b84a35a66266ce54995ca
+  license: ''
+  license_text: ''
+./m4/ldd.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 343928a20ff84e1b66ee2da65a5b896efdce4f69135b19e5df4de074a5f007b2
+  license: ''
+  license_text: ''
+./m4/ldexpl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 7e93193fa9d20667368d04017e56f0514bc859b102b064aa96d292d53fc0b3ce
+  license: ''
+  license_text: ''
+./m4/lib-ignore.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 16d25c2943c615eb393319fda49b7d52096e1b32ff542bb57aea0ffe1a566f1f
+  license: ''
+  license_text: ''
+./m4/lib-ld.m4: 
+  copyright: 1996-2003, 2009 Free Software Foundation, Inc
+  hash: 5c208fa42b078f46f3d6aff909c14418be3e034817c1a91a5d6677bb6d143ac1
+  license: ''
+  license_text: ''
+./m4/lib-link.m4: 
+  copyright: 2001-2009 Free Software Foundation, Inc
+  hash: ddf8673d6148d43b50fa4e60fe33f19cfbf4fee56b6d017c9ff5f180b45b2247
+  license: ''
+  license_text: ''
+./m4/lib-prefix.m4: 
+  copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc
+  hash: 670991582b722e16a12293d7f817562b4f6c9d6a8d034573c7d1b049a3f618e7
+  license: ''
+  license_text: ''
+./m4/libsigsegv.m4: 
+  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+  hash: 417798efd6f0af14a61894f4f838a3188a159231210a7ac3cfb80dbcdd38bb04
+  license: ''
+  license_text: ''
+./m4/libunistring.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 30e764db0ea63d7c4b4a6d5886a6417f11b355c04a873f4c97609a0975144b63
+  license: ''
+  license_text: ''
+./m4/link-follow.m4: 
+  copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc
+  hash: bfcaf0beba8f8e7b4b5b35b52c14f4f2074cfd8d85c0ad824c32f6a189b31dc9
+  license: ''
+  license_text: ''
+./m4/link.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0cdff13ae7180563eed4c0316a5c6f515ae921b3805f4cf6e8b642cc1c206498
+  license: ''
+  license_text: ''
+./m4/localcharset.m4: 
+  copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 00e8162fc6c53b329b35513aace655880fbf6e8c3f684923cff2b97e11eed3a3
+  license: ''
+  license_text: ''
+./m4/locale-fr.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc
+  hash: f37c0c563b84177f67f66c1c84aa0f80fae71061d5dd4f49cd60b7a0f12ad7e2
+  license: ''
+  license_text: ''
+./m4/locale-ja.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc
+  hash: 46355008a2c63f595d7c452c1f36c5f9e9b11bd8b469d5a16a2f4960b545d1e7
+  license: ''
+  license_text: ''
+./m4/locale-tr.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc
+  hash: 8f7943111b5706039847295a518091bf667a3ddd04727fee2858357e3659a0ee
+  license: ''
+  license_text: ''
+./m4/locale-zh.m4: 
+  copyright: 2003, 2005-2009 Free Software Foundation, Inc
+  hash: af44fa1110a57fb71f22d7f43efce6bb0b4d1ad67d39bb8a01e10b65ec282a7c
+  license: ''
+  license_text: ''
+./m4/locale_h.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: df7aaa065eb91a465c6b5dec83ca26b2b8cb4e790cf0abc5c387326fbacd066c
+  license: ''
+  license_text: ''
+./m4/localename.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 3fa8b3a4ca986ad17a8dc24d01300ad487fc51243c3d584d651327f08a15561f
+  license: ''
+  license_text: ''
+./m4/lock.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 591f64f47b0546c5ab1769dc5f6a995ac3c2c0846e4f37c456601638e8353127
+  license: ''
+  license_text: ''
+./m4/long-options.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 90915cdfe1004a2676f30d1c36306db44f25076401bb5e07ce04d7c2f8e55396
+  license: ''
+  license_text: ''
+./m4/longlong.m4: 
+  copyright: 1999-2007, 2009 Free Software Foundation, Inc
+  hash: 31bf5606914914e2b190d30413b6ee86c190153a1ba10b6b71d66f9853693ad8
+  license: ''
+  license_text: ''
+./m4/ls-mntd-fs.m4: 
+  copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 843fe15f5a9827e6d8388ec64749b6a3fadb7705147e34ecdb189c731ef849da
+  license: ''
+  license_text: ''
+./m4/lseek.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 7f0502309efd6839c977e3419c2aee0f013e5a2541bcb22bdc6e04e4868dfd1c
+  license: ''
+  license_text: ''
+./m4/lstat.m4: 
+  copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc
+  hash: 477d1ff15d11599304c8b73e8e2dbada5a9bf4c7057fdfe47cc5f23a66a66a66
+  license: ''
+  license_text: ''
+./m4/malloc.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 2a8252ecabf5e3af574f01ee6254422f36889314949c50fc9245d94e857c3652
+  license: ''
+  license_text: ''
+./m4/malloca.m4: 
+  copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc
+  hash: 574f23c6a3908adea4bc9f052f415c65e5b9c444ca4433a34c9120c94870b237
+  license: ''
+  license_text: ''
+./m4/manywarnings.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: d8731a4a9dfaecf297b136b0f85f850c4519fc39a44680674853bba3644ad22c
+  license: ''
+  license_text: ''
+./m4/math_h.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 821573f4fcedee707630697c2cf95ed24b271a9152c84dbc6bf920ee554afb56
+  license: ''
+  license_text: ''
+./m4/mathl.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+  hash: 6ce43398f3875ee3f91451cbf904c142813d768bd7a6e9cf330e3fe8dd62a27b
+  license: ''
+  license_text: ''
+./m4/mbchar.m4: 
+  copyright: 2005-2007 Free Software Foundation, Inc
+  hash: b486f2469239c36107f6b2b0b0541b087405ba8fbc85d9256b4cf6454550c144
+  license: ''
+  license_text: ''
+./m4/mbfile.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: e87810bc66d7019634d2b30038f24b16e1a9ef49c6c32e805f6f71360452cbb2
+  license: ''
+  license_text: ''
+./m4/mbiter.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: a969e27c30aefb7073965ab1cd4bcee97268f6b82bf96522509e713eacc853a2
+  license: ''
+  license_text: ''
+./m4/mbrlen.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: a606b1ca8b598c52bfd7f233eb4984ca878fb179d80e06220d85b5d9b36d960d
+  license: ''
+  license_text: ''
+./m4/mbrtowc.m4: 
+  copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
+  hash: d660822110548e8d7d79255d5ac60fe496a9e7f04a9de7397f3a6d5a8dbb54f1
+  license: ''
+  license_text: ''
+./m4/mbsinit.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 8d7472d2b364b4379c7f634f7a4f6800e19078099331fac228780eb697a2cd58
+  license: ''
+  license_text: ''
+./m4/mbsnrtowcs.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: a7a12a2e7dfec6902d1398d30ee7a15b86c159a0a1265611a5546ab220f7bc4c
+  license: ''
+  license_text: ''
+./m4/mbsrtowcs.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 5425f085251dacc43b461b2b77cdbc1fe485d1c81e33989687f213dfc3a1d389
+  license: ''
+  license_text: ''
+./m4/mbstate_t.m4: 
+  copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc
+  hash: 59a390c7f53d4878a2370306835400bd423ea9dfa0b34e8e2a92fa00b0d70255
+  license: ''
+  license_text: ''
+./m4/mbswidth.m4: 
+  copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc
+  hash: 2deb63d9fcc93ac349da112c631d337964c474754e5387a42d368f90157012cd
+  license: ''
+  license_text: ''
+./m4/md2.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 130e33f82decb4d039a56ebd2b85e32c70de213b254873ac543bf5b7e0cb24d5
+  license: ''
+  license_text: ''
+./m4/md4.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 7978358bc5de59163559a74cf8c7992190472b1269112e939f5ecf2a4e26f8fc
+  license: ''
+  license_text: ''
+./m4/md5.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: aad43f86e0054029b846a78045d88f8d03aec67b5b6ad6f4b59b3a6e2d6d7c7a
+  license: ''
+  license_text: ''
+./m4/memcasecmp.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 479e27cf51cc18056b84824cad8a4ba0d97d0fc9116fd12b2e872c409c570ddb
+  license: ''
+  license_text: ''
+./m4/memchr.m4: 
+  copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc
+  hash: d3882d0a7e536c7f6eca2a953e8a9a77d1e0486d3ccadb9b5a4a469c4c069bb8
+  license: ''
+  license_text: ''
+./m4/memcmp.m4: 
+  copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc
+  hash: 449f2f83be3f02edb3e248d1e7ae3d7362782610e06dd191239165716870c19d
+  license: ''
+  license_text: ''
+./m4/memcoll.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 9395ae323be423646eecb762e010a41756b958911635ef8a1f45bdd9db176663
+  license: ''
+  license_text: ''
+./m4/memcpy.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc
+  hash: 84c3b639c26e2935d10c98c4eca37254a25f95b6a8c2f8f1f3b626eae72595ff
+  license: ''
+  license_text: ''
+./m4/memmem.m4: 
+  copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: aee6e80d6f3a27178e82414b2705d8b5824e26f352bcdbd457d309de9bd526c2
+  license: ''
+  license_text: ''
+./m4/memmove.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc
+  hash: 197891df3f9fd08854095f4665cc9dc917fe595d189a4f613d1575a3c9b43adc
+  license: ''
+  license_text: ''
+./m4/mempcpy.m4: 
+  copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: 348c790aab8f85294c57e021f04e15befa7530aabb531a4f21fc10ddabb271b0
+  license: ''
+  license_text: ''
+./m4/memrchr.m4: 
+  copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: e1b3e57cb26a5122045e5a65c1e06f24e2ce5a75cf6ce12f8992208e34b7e74d
+  license: ''
+  license_text: ''
+./m4/memset.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc
+  hash: e7937ae3941db76c84b41bc3aab29231fc5a0e57018a6fad797cd527f0578eaf
+  license: ''
+  license_text: ''
+./m4/memxor.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: bef5cfa0b422bb86f6c6713336c527d14407c55ee8a792d0780bbab8a1233d98
+  license: ''
+  license_text: ''
+./m4/minmax.m4: 
+  copyright: 2005, 2009 Free Software Foundation, Inc
+  hash: 9377265286ad8108a58bb33b19f69b867035ff53bcbea4df3e6b0016347b90f9
+  license: ''
+  license_text: ''
+./m4/mkancesdirs.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 5636abd1471767ac9a49a328344cf3e04afc98405063b73cca8c95049d237a8e
+  license: ''
+  license_text: ''
+./m4/mkdir-p.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: ac650e70d9346b2fb4df3ba6740e9aa14e1d5df373d1de3e080555faaf3aea47
+  license: ''
+  license_text: ''
+./m4/mkdir-slash.m4: 
+  copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc
+  hash: e49b5a74f72ac1bf48beee660429e250ce6c84debef307189bdde551178a40e6
+  license: ''
+  license_text: ''
+./m4/mkdtemp.m4: 
+  copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+  hash: e9d10a2443d799828ab3560664f80a1b3eeab2c1c44ff3a03343a8a6d559d246
+  license: ''
+  license_text: ''
+./m4/mkostemp.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: de670586ec4849c79719a5083d4615315bc12f021062c3f712dd943602f919c8
+  license: ''
+  license_text: ''
+./m4/mkstemp.m4: 
+  copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 68e1a719526a1664819987fb68462270a281870e6343e8f7ad24a6d0ecbbda1c
+  license: ''
+  license_text: ''
+./m4/mktime.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: a694524fe822949b46a4e4bc24861958d73ebb75afdf8c2b30a008b5e254c067
+  license: ''
+  license_text: ''
+./m4/mmap-anon.m4: 
+  copyright: 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: fc74a563ed0275f38790da335f29a098d015f5246ea7765f0b7769ebe7b120d1
+  license: ''
+  license_text: ''
+./m4/mode_t.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: edba1bc2a5883adbb22efb7d249f1d36eb813483301ecc40cde9c2a6571f5837
+  license: ''
+  license_text: ''
+./m4/modechange.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: ce44dcfc3a8e8574a4ef4d768d020e9829048e7f077112a3a6e8428e3e7b56d6
+  license: ''
+  license_text: ''
+./m4/mountlist.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: d152d842444b1deff2d4b4fd74538c7f5b1e00dff162d9ffdf6f933996d8e05b
+  license: ''
+  license_text: ''
+./m4/mpsort.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 809791f443252bbfc151a010255ce7ec04024f6eb00f35995ab8faf19fd664fd
+  license: ''
+  license_text: ''
+./m4/multiarch.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: b653258f3ce7cd64c7398d9233856eb610cb9f25c8220388ac8f8d69522e0093
+  license: ''
+  license_text: ''
+./m4/nanosleep.m4: 
+  copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc
+  hash: 674b956f064d364a077586afb415cb25d57fc568f9fba0489cba169168844500
+  license: ''
+  license_text: ''
+./m4/netdb_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: d08ed8e4f180214d652b09a8eaafd373f90309951733c48e677e83037b6ed4f2
+  license: ''
+  license_text: ''
+./m4/netinet_in_h.m4: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: a85cc8fd45199ab9ef11d6ac7d13daa751abfde221865a0a73fe7cfe21c2f2f0
+  license: ''
+  license_text: ''
+./m4/nls.m4: 
+  copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc
+  hash: e7e360a53812d679422ef6f4d1e35bb7646879dfcaf785927d7ac9095f8b7ec7
+  license: ''
+  license_text: ''
+./m4/no-c++.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: 0b0031352efd05fda906a5128060bd0ae56b31d85f23def26558caef30481782
+  license: ''
+  license_text: ''
+./m4/nocrash.m4: 
+  copyright: 2005, 2009 Free Software Foundation, Inc
+  hash: 6adf83dadf8d1dcb76ced51fc0508c5debc83ec4ceed2c5f870a9fc82912bd39
+  license: ''
+  license_text: ''
+./m4/obstack-printf-posix.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 7ba595af510c3e8cd2d9f3680cabbe5987b67bee7a5c830deea8a29b90e93e52
+  license: ''
+  license_text: ''
+./m4/obstack-printf.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 6368c454be42588d8224ccee3a953a7b53f7ad95c71f7ee3740973a41f824199
+  license: ''
+  license_text: ''
+./m4/onceonly.m4: 
+  copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc
+  hash: 7ae946e07bc12c2ed2eb7a4a8c826cf7debadef975bffbf2cb04c5d8f27c6f38
+  license: GENERATED FILE
+  license_text: ''
+./m4/open.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 48fe6d09b376e833462ed32fe6065929561bff664179f71223340c481e677893
+  license: ''
+  license_text: ''
+./m4/openat.m4: 
+  copyright: 2004-2009 Free Software Foundation, Inc
+  hash: 1267346fb934ac50ef7887759e67e0545b095eb3e6566be665648aff87044f82
+  license: ''
+  license_text: ''
+./m4/openmp.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: a545c428a801683ce74ede4d47c7cbeb6744eec734c6b68eec57751db85caf3b
+  license: ''
+  license_text: ''
+./m4/pagealign_alloc.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 3f2dd3a771fa6b3fa816d2a6ef721ac63b3cd5a057cac1163026788956369502
+  license: ''
+  license_text: ''
+./m4/pathmax.m4: 
+  copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 4a5873ef823f40afa9b33adebbe5392c0fc1d30d76eba4b657430e5f02ec0ece
+  license: ''
+  license_text: ''
+./m4/perl.m4: 
+  copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc
+  hash: eaec6e8145dda32d044eb5468e58bf0e13df68f863a2acc0cd81caf4731d3231
+  license: ''
+  license_text: ''
+./m4/perror.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 6171e44ca4ed0431a2f8f57591ef3a383767b93b66f002363bd6a9099673b0b9
+  license: ''
+  license_text: ''
+./m4/physmem.m4: 
+  copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
+  hash: bb350fe56d68536870397663b7824edd4b945d8ca3696c879c0c4ba53dc95bdf
+  license: ''
+  license_text: ''
+./m4/pipe.m4: 
+  copyright: 2004, 2008, 2009 Free Software Foundation, Inc
+  hash: 7ec8856c90f4355e601693e33d8b18a4a41691fa9c4fa43d39f81766ccac21a4
+  license: ''
+  license_text: ''
+./m4/pipe2.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f3be301c98df31830acfab4197dbc2dc8f6e0cb418d9d733192622f22c101c08
+  license: ''
+  license_text: ''
+./m4/pmccabe2html.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: d45dc024d6753f4004ddaf9f6d235159c452d9b7d7c57432207d03d0d9c5e93e
+  license: ''
+  license_text: ''
+./m4/po.m4: 
+  copyright: 1995-2009 Free Software Foundation, Inc
+  hash: ca8c03e98db7b6d5561401741d13196032accefca210b2a7526f814ec686348e
+  license: ''
+  license_text: ''
+./m4/poll.m4: 
+  copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 629b8155ef9034734706a637ca9b60025a6c7444057a99b02f7635b34b886f14
+  license: ''
+  license_text: ''
+./m4/popen.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b8ce7c048df6b2fc3a6f11ed7eabff8c2dd0bf8009bb134de915c68c330baa80
+  license: ''
+  license_text: ''
+./m4/posix-shell.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: cce92ab970bd18d6bc66e86dc66f01a7bc16b77a2c1543222fee39cbe9f902ae
+  license: ''
+  license_text: ''
+./m4/posix_spawn.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 4ccf3aca29a25f057325f00cb8cab9ffb7f4a3503475529bf10ad4391d8673a2
+  license: ''
+  license_text: ''
+./m4/posixtm.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 1b08ede3cabafa63d4dbcfce84463f53cb28d1fbf6d0b644a548ef4b6a60c1f5
+  license: ''
+  license_text: ''
+./m4/posixver.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: 27aa6d893cf20144880953b6b445f87561cdb0e31bc9b60cb030a6ec5accd3e5
+  license: ''
+  license_text: ''
+./m4/printf-frexp.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: c738950347dfbc774896c9b0ef0160a9d16a50ec5b9e4b29c7afe19b8c70b609
+  license: ''
+  license_text: ''
+./m4/printf-frexpl.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: a493cf44285f516390a2b9eb2ad1cc36c11f71093eb74e7c3e8d5ca2dd14fcd2
+  license: ''
+  license_text: ''
+./m4/printf-posix-rpl.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: f4213c12c22486c51e995cbc0a9f55e9dd1c733fac30cb191d33ae57ab1d2ace
+  license: ''
+  license_text: ''
+./m4/printf-posix.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+  hash: 4eb5f8f07750e884b5f4220c2b95cda187b6cd81bde447aeb413d684c514d5b2
+  license: ''
+  license_text: ''
+./m4/printf.m4: 
+  copyright: 2003, 2007-2009 Free Software Foundation, Inc
+  hash: 4fca85cb7811468dc8f84a7799c133cda593ab144a2c0889378f3795a95ddbb0
+  license: ''
+  license_text: ''
+./m4/priv-set.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9a5807b3867d86d02784078b14f20e8ecec79dc64ad187bab11bca20e19faf9d
+  license: ''
+  license_text: ''
+./m4/progtest.m4: 
+  copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc
+  hash: 09334de09d3e23a27f655f7a3100e19ef96683339bad9621defeef669cf53b22
+  license: ''
+  license_text: ''
+./m4/pthread.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 265b8582edae0ecc5f191cf2467aa5ed8c46e146649c4d56574377f70eeaf78e
+  license: ''
+  license_text: ''
+./m4/putenv.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: cfd04c6acec3664269e09cc4df394fe9867d342ab357dc89253e1d39a1e68dde
+  license: ''
+  license_text: ''
+./m4/quote.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 7ffb907d173b896d2a36a8e52aa4b8ecf251434ab83fc96696dbbae5e504f319
+  license: ''
+  license_text: ''
+./m4/quotearg.m4: 
+  copyright: 2002, 2004-2009 Free Software Foundation, Inc
+  hash: 854a2ee3e971d89ce829e16d546d384896d9e30e0d56dc00566b5258a417c5e9
+  license: ''
+  license_text: ''
+./m4/random_r.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 939838424d3346e2501950202577efffce7afa68ddebb50685b2e4fed9cd5248
+  license: ''
+  license_text: ''
+./m4/rawmemchr.m4: 
+  copyright: 2003, 2007, 2008 Free Software Foundation, Inc
+  hash: 7024edb1193d19e0b7cd589e12a26d7f04496a74c0fd6af161959ff04393e450
+  license: ''
+  license_text: ''
+./m4/read-file.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 701de727d98bbec795fb137cbd0dda7bce40c10b48b4b639b9b3234236cc1c2a
+  license: ''
+  license_text: ''
+./m4/readline.m4: 
+  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 306d4bdcf575f32b920d548041595f6a25fb4dccda136654ae1fed59747c3f13
+  license: ''
+  license_text: ''
+./m4/readlink.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+  hash: 79b1927a8bcf23b28a5cc28478dc3d6f950a99d190e08d2905f9a6f75f685c02
+  license: ''
+  license_text: ''
+./m4/readtokens.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 6acb946573cfb59d9fd9e5abe494f8fbe2e82d0ee8aa14241255eeb9e695bbf6
+  license: ''
+  license_text: ''
+./m4/readutmp.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: 13e39ae48466c9d6aa29e3b518add10485fdb50c74bedfc98ae48e463dd6c0ae
+  license: ''
+  license_text: ''
+./m4/realloc.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 3203f9e4584c814b1a0aba0d18d5bb7d602ddbc2180758ca81a03dcdcf06b8df
+  license: ''
+  license_text: ''
+./m4/regex.m4: 
+  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+  hash: 50d725ee6bfae6e6879133200a319aa551c76ee42b59bb3e5250356750508c4f
+  license: ''
+  license_text: ''
+./m4/relocatable-lib.m4: 
+  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 6c4a390de69c7b321b900f2958baa712e3add7837b874bebf5bcd13345311e3b
+  license: ''
+  license_text: ''
+./m4/relocatable.m4: 
+  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 7904ef75bd84bfbb557af2cf86deab67f2dcbf7ea08c90ab00c96baf2df2d70c
+  license: ''
+  license_text: ''
+./m4/rename-dest-slash.m4: 
+  copyright: 2006, 2009 Free Software Foundation, Inc
+  hash: 1030b715fefa3094ee7fcbf64ce0706064a84983eed1b4b60ee7ed860552d258
+  license: ''
+  license_text: ''
+./m4/rename.m4: 
+  copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 3727e61e57c8da8fe778f71d8a8f9b0695955b2bd98f13525e02cafbfe02b528
+  license: ''
+  license_text: ''
+./m4/rijndael.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: d469a617f466ee153eb791bc1baf7332f9496bc003ddfbf9588ec685c45cf79f
+  license: ''
+  license_text: ''
+./m4/rmdir-errno.m4: 
+  copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 82f75f1f04ed076254ed8791efc6e3913cb2ffb9bda1cdd17db04758b5ad50b9
+  license: ''
+  license_text: ''
+./m4/rmdir.m4: 
+  copyright: 2002, 2005, 2009 Free Software Foundation, Inc
+  hash: 9f146503d645bcd65330d3382d22de8a0a4087be948ff0708262576c170266eb
+  license: ''
+  license_text: ''
+./m4/round.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 9ed0939cc0bc62c08c7caaeb3ba6a8ae4966dec6012a7e5c1f8456f7bd7f284f
+  license: ''
+  license_text: ''
+./m4/roundf.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 728510381d8789794d1603525bf92e099b51221002637804fe176d177d5cb5ad
+  license: ''
+  license_text: ''
+./m4/roundl.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: b7f0e4329463736e5220c0e399eab82daa9435fd83c530b0d2f6b136d11e0869
+  license: ''
+  license_text: ''
+./m4/rpmatch.m4: 
+  copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
+  hash: bdab7870b8c20ab0ea4e40b85ddc77ab1647f1f137f9c7fc0a7647cd5e46ffda
+  license: ''
+  license_text: ''
+./m4/safe-alloc.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 413010db9362f28824c713f0f47b27ef75e4753f03a76613e49d8202ddd53a86
+  license: ''
+  license_text: ''
+./m4/safe-read.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 476dd0e86a34ed7381cdbbea6186a965785622ace99ab7703e9be61e4019ecb1
+  license: ''
+  license_text: ''
+./m4/safe-write.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+  hash: 28152483a0fa11421395beab43c19554eab15267add044139559fcd463b47d34
+  license: ''
+  license_text: ''
+./m4/same.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: fe78499501b2c0deee1cef23c7a6de78dea2f97c7c006c4a82cfe34634febdec
+  license: ''
+  license_text: ''
+./m4/save-cwd.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: 2b070560df3e3154c5dbad3693e1c3b16f9b87cd0d77bcf1a76496e6dcd396f7
+  license: ''
+  license_text: ''
+./m4/savedir.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 35d4b396e58ef3251d4ca921edb871afd2bbd4da5385903c2a08804ebdfe27a5
+  license: ''
+  license_text: ''
+./m4/savewd.m4: 
+  copyright: 2004 Free Software Foundation, Inc
+  hash: a7f3517138f4540f6fd6729e867b9b3aea6e5816996ecd19235dc669b62dcb10
+  license: ''
+  license_text: ''
+./m4/scandir.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f62dae469db2be2c5aa610e2882be87dbfdcc84cadace38211e7bc734819bad1
+  license: ''
+  license_text: ''
+./m4/sched_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 5626e514b7b5c64bd9f1bdf4fa1c37bcbff1286524c62153db60ae3ecd91d7ec
+  license: ''
+  license_text: ''
+./m4/search_h.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d6cd8150036593b84d4c4d12581f7f39c8a6978ba7cc8116c5d691c6ff7fc60e
+  license: ''
+  license_text: ''
+./m4/select.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c0772bb6d91794c1312ebd0f3fb6f90dff9bcae093320dc8c253f548913bf2ce
+  license: ''
+  license_text: ''
+./m4/selinux-context-h.m4: 
+  copyright: 2006, 2007 Free Software Foundation, Inc
+  hash: f022e113eadd22af7edced97b3f1b6289856b6ba35c8da13736665221910d34f
+  license: ''
+  license_text: ''
+./m4/selinux-selinux-h.m4: 
+  copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: 63a4551cf14a0eea214ecbf472ef61294bad8e3c23d81decf5b981df46db633a
+  license: ''
+  license_text: ''
+./m4/servent.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: d8abbdc489bcd9264fcadfb8b7dee9be3dc239d512e7796a83ddd48f85286b5b
+  license: ''
+  license_text: ''
+./m4/setenv.m4: 
+  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+  hash: 4b641ccd52cc1b86e45020d008a003b15aef914961b26426cf25f5c5ba714ad2
+  license: ''
+  license_text: ''
+./m4/settime.m4: 
+  copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: 363d17c5d1dcf71322d552fde8d642ac641613cf211019c5b6d5df8bf176c37e
+  license: ''
+  license_text: ''
+./m4/sha1.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: b0b8e653e77e441a1327e5cc5eedc4d33e13ce74887bfb2299a070224b9d2310
+  license: ''
+  license_text: ''
+./m4/sha256.m4: 
+  copyright: 2005, 2008, 2009 Free Software Foundation, Inc
+  hash: adc2fe832d2a4759e55c651b42169d33f24c32053f7515748e255052dd2d3b90
+  license: ''
+  license_text: ''
+./m4/sha512.m4: 
+  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 6a041f1d10fb35ab195140e844574a07dd5d6053918f4fd60ab8be21f949f069
+  license: ''
+  license_text: ''
+./m4/sig2str.m4: 
+  copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
+  hash: bdb3da52f346182e43b31c11fd3c962c84680a5371a57343ce224811e860387e
+  license: ''
+  license_text: ''
+./m4/sig_atomic_t.m4: 
+  copyright: 2003, 2009 Free Software Foundation, Inc
+  hash: 8740a92b3f85af3d8178fdeffb26883a7a2e43709a560f117045327cee0005ad
+  license: ''
+  license_text: ''
+./m4/sigaction.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 942bae0f7e59cbdbd839bdd114df80a180753adfe2265673852caba753983e67
+  license: ''
+  license_text: ''
+./m4/signal_h.m4: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: f195a17f93179f7442308dc8f19fca18a62277f9951cff0b47bf9d6282685a15
+  license: ''
+  license_text: ''
+./m4/signalblocking.m4: 
+  copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
+  hash: 9675e385710eb500da44e7dc0b7dfeba96ca339daaea8e8a75be21e8b1ca1940
+  license: ''
+  license_text: ''
+./m4/signbit.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 090599e0809b686c818f8870e466ddf1b1e8f85e13da7c88c4ad47433ed45479
+  license: ''
+  license_text: ''
+./m4/sigpipe.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 6589a9faf1c563d75e6001b20a2376598e62467f80ac99df43696aabd386d4d0
+  license: ''
+  license_text: ''
+./m4/size_max.m4: 
+  copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
+  hash: 274e63ac0e607476b00e8fd52ecec9926865a0706eb1c15307249c8beb224094
+  license: ''
+  license_text: ''
+./m4/sleep.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 9ae4e28f795cced506809b2931038bf12f5d14f730ac5db4b564251d78d15ff1
+  license: ''
+  license_text: ''
+./m4/snprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e547253a212edd6b4044615bbc22655e0a4818d8f937f962adfc5e439e1d5301
+  license: ''
+  license_text: ''
+./m4/snprintf.m4: 
+  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+  hash: 5f7fbeef790dad54ac03ec944e2a45fda19bfb17da369aa9c2e8f4f4d40d4f0f
+  license: ''
+  license_text: ''
+./m4/sockets.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: d50a2dfb51a1c8b126cef59648b59553940f8192635e1f111fdd3babb93d74ff
+  license: ''
+  license_text: ''
+./m4/socklen.m4: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 85dbe7f87a9332ee77a25565add42e2c12aac7e29cdc58cde00ab978b11a42a2
+  license: ''
+  license_text: ''
+./m4/sockpfaf.m4: 
+  copyright: 2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 1b8177a55958f8bf0898f45528ba4c08eddc3deac75871ca1a9a70fd98ce16fc
+  license: ''
+  license_text: ''
+./m4/spawn_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 9b595c5f8fccef298fabfb159fe9b0cd7c2965a2388f8738ecc8dae8c87bb194
+  license: ''
+  license_text: ''
+./m4/sprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 965f8b08288f9f0122559dd27581c39a9cd3182f9976f0b0fa1a7639e6c07c60
+  license: ''
+  license_text: ''
+./m4/ssize_t.m4: 
+  copyright: 2001-2003, 2006 Free Software Foundation, Inc
+  hash: 83b000495759790b16631fd82c8cc8126e7cbabbb484fa2a324fce5abf7030a0
+  license: ''
+  license_text: ''
+./m4/st_dm_mode.m4: 
+  copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc
+  hash: e4230d99ce739fdfea2b6f9e534426e32367b91d82adb42e215c9ab63582ccb8
+  license: ''
+  license_text: ''
+./m4/stat-macros.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 0e0d077f14daca1a98a036b872304dfa730067f1906786f8a64eed1b275c8edf
+  license: ''
+  license_text: ''
+./m4/stat-time.m4: 
+  copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software
+  hash: 6e44781ea55874bf9fd31759924207238aa4a99a01fc2d2cbf09e345c2fede85
+  license: ''
+  license_text: ''
+./m4/stdarg.m4: 
+  copyright: 2006, 2008-2009 Free Software Foundation, Inc
+  hash: e69d47aadd54239ff949f8ec2bd0cb0436b737ba6663b3c72e2266a01d2a42cf
+  license: ''
+  license_text: ''
+./m4/stdbool.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: 43abf0fdf4a37444e2d4e8fd6ec486c9eebe8e90a6e7ae1845d2e499d0a29df1
+  license: ''
+  license_text: ''
+./m4/stddef_h.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c70f43db810289c46455f5b2b2b3ecbcb171fa0171d09e73ad2240e1d5bdac60
+  license: ''
+  license_text: ''
+./m4/stdint.m4: 
+  copyright: 2001-2009 Free Software Foundation, Inc
+  hash: e9bb030f38c5c54c68cbdc8403016d05da6f6328ff69e4272d77e10820e438b7
+  license: ''
+  license_text: ''
+./m4/stdint_h.m4: 
+  copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: d60bbf3881f6e22ed2fb6dfee322f368978721175058446282e77eb42f543ccc
+  license: ''
+  license_text: ''
+./m4/stdio-safer.m4: 
+  copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: ce00d79eaa9ab3c24483dbf666fdf1af476557c24f8fac41ccd6f1b39980db4d
+  license: ''
+  license_text: ''
+./m4/stdio_h.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 5279f85ff4aea689d0c384bbb577d873e5214e2b351a7f4aeeae85e8ebb960fe
+  license: ''
+  license_text: ''
+./m4/stdlib-safer.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: 9a8abafa8a805182498c9212e370537b3d0964d913d3b7550e7ee8dc02b977d2
+  license: ''
+  license_text: ''
+./m4/stdlib_h.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 97c8e01551bb911dd737aa6d57f937fbecc41dacaa9a6bb8086d8292fead4c36
+  license: ''
+  license_text: ''
+./m4/stpcpy.m4: 
+  copyright: 2002, 2007, 2009 Free Software Foundation, Inc
+  hash: 6183753fe8a97fa0b9fdf0b1dbdce611077c78894a88b08aa016a358b26785e8
+  license: ''
+  license_text: ''
+./m4/stpncpy.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: aa4c3046b85c5bc93ed41603a5a58dbcbb3281c604047231e2bd9df2deac2fee
+  license: ''
+  license_text: ''
+./m4/strcase.m4: 
+  copyright: 2002, 2005-2009 Free Software Foundation, Inc
+  hash: fe5c1d6b65e6380dc44d958082105a90e9e4bdda2acd0874069ae5d440ce9b18
+  license: ''
+  license_text: ''
+./m4/strcasestr.m4: 
+  copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: e8fde0ec0800c5eafbe974aec107608e45a0455e252b6989480d50ddd9fecf05
+  license: ''
+  license_text: ''
+./m4/strchrnul.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+  hash: b20cc5ae07de6b6cb4f6cce803e713349ec527e29256225c91e80c2f5445cda2
+  license: ''
+  license_text: ''
+./m4/strcspn.m4: 
+  copyright: 2002-2003, 2009 Free Software Foundation, Inc
+  hash: 69120ab7a86a050f7433f63fd1bfa6349dd8b7f10929f902bb3628e90ad587ca
+  license: ''
+  license_text: ''
+./m4/strdup.m4: 
+  copyright: 2002-2009 Free Software Foundation, Inc
+  hash: fe737b962549dcee9d8390ff44f480c277ccf76b0e643fdfd2e04d06cd4b335e
+  license: ''
+  license_text: ''
+./m4/strerror.m4: 
+  copyright: 2002, 2007-2008 Free Software Foundation, Inc
+  hash: 43b8156f92eab0feb512dc43c24fdb2ae1b05f0c0aad8317af6384b9317ae1f8
+  license: ''
+  license_text: ''
+./m4/strftime.m4: 
+  copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+  hash: efe49b1ba70db0a0b5b2067df6731e51e24c7b4c899928f18b8b9dc0a3b348e2
+  license: ''
+  license_text: ''
+./m4/string_h.m4: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: e6a759b26fd667fc80f888975ad5360aacae9aa17704b9771e43634cef8b706d
+  license: ''
+  license_text: ''
+./m4/strings_h.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 9092e61439d73d058d4db2c78b740947b3de19e407de536cc8abb3b33dcbd658
+  license: ''
+  license_text: ''
+./m4/strndup.m4: 
+  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+  hash: de520713683d189d757c29f5cfdf12e2f063ec1a16abd534c9253233d845c1ea
+  license: ''
+  license_text: ''
+./m4/strnlen.m4: 
+  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+  hash: 17c0880897960356780a1d18125984a4de5acffa88fa8f578c732f6a4deb2283
+  license: ''
+  license_text: ''
+./m4/strpbrk.m4: 
+  copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc
+  hash: 3a3a46c86df5272af728492b47a253d0bc90d6c1304a9e6298c370a516ff5c7b
+  license: ''
+  license_text: ''
+./m4/strptime.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 36d8ffad63cd866a25244dc178c60c7c2eae106c2b22a5d088209d708e8ba17c
+  license: ''
+  license_text: ''
+./m4/strsep.m4: 
+  copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
+  hash: 12432bf70d8e7ddcd99132d6a90c074106038ae824dbed54f3e9f276d2a1abf7
+  license: ''
+  license_text: ''
+./m4/strsignal.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: b5bde205dfc38b3591ce316cfaa34ccbf70c14b043d4caa380a528317efbcabf
+  license: ''
+  license_text: ''
+./m4/strstr.m4: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: c2991f687e1ccb40073d14aaf5c7b457490924ae87ddd7b93ad6df00bf1cd5c9
+  license: ''
+  license_text: ''
+./m4/strtod.m4: 
+  copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc
+  hash: 803101b479ba543a87394c1ff647e72af6a1d42a70ad945e12d60d2fcc154cf6
+  license: ''
+  license_text: ''
+./m4/strtoimax.m4: 
+  copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 040b0f333be709208b820f7cf49bf3a6512b2d99d922e802976249b50b5f694f
+  license: ''
+  license_text: ''
+./m4/strtok_r.m4: 
+  copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
+  hash: 2d55470147f9526bfa3957ea4a72c1bf623ea9380b89265fa31a24746dbe54f5
+  license: ''
+  license_text: ''
+./m4/strtol.m4: 
+  copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc
+  hash: 1f93c8aa4afa52a6f1c91e6a6ff17106a2e6139db4658524516c8ee31793bf23
+  license: ''
+  license_text: ''
+./m4/strtoll.m4: 
+  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: d0f856b5cd35656c32054ab66a5084a34e12ca0c10ccd48b50ff50928c6690f9
+  license: ''
+  license_text: ''
+./m4/strtoul.m4: 
+  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+  hash: fdf22d9455a3e2577c95316ab584023ae0c534bb7fb53cb935a0bfa05044d5fa
+  license: ''
+  license_text: ''
+./m4/strtoull.m4: 
+  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+  hash: 39cb14122cb4c6ad802ffe8d4af7ff5bf3ddd2789ae6cd2220d2f74adc772b5c
+  license: ''
+  license_text: ''
+./m4/strtoumax.m4: 
+  copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+  hash: 5caaba51dce181aa188137ad40280074d7e3ef1070bdc5a0fbed47f94e5650a6
+  license: ''
+  license_text: ''
+./m4/strverscmp.m4: 
+  copyright: 2002, 2005-2009 Free Software Foundation, Inc
+  hash: 95826714352d22b394477acec68e36e8c32470733556f372ccd56f7ce71375bc
+  license: ''
+  license_text: ''
+./m4/symlinkat.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 90930f5c7ee0ce10502b307af1282f0c1bafcd6f976b6c951960b431fe7952ea
+  license: ''
+  license_text: ''
+./m4/sys_file_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 69f49396e6a189edfc61c2bd435d53a891dc6abce8dac43f78387906ab67b383
+  license: ''
+  license_text: ''
+./m4/sys_ioctl_h.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: f6a18a51ddc67c6c47b712c8f847e443beb6a918724a8234bac0d8132d08ebf6
+  license: ''
+  license_text: ''
+./m4/sys_select_h.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 38fdb36f5c8f4a2ade525a2c92c5b92a56afd18f75d14a63fbfcaa0aea9c2bc1
+  license: ''
+  license_text: ''
+./m4/sys_socket_h.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 9e3fe619e71cd2142906cf6e71e9c7a811a7666b66bfd7b8d819f3bd0b440ee7
+  license: ''
+  license_text: ''
+./m4/sys_stat_h.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: e14f36fc61a996000fc53de8648fe9a8614162802f0d0767f0935aa5e38381df
+  license: ''
+  license_text: ''
+./m4/sys_time_h.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: f4fa044be9686af6cc3dca73c362217c35b7df004df156448d42e93f50005c21
+  license: ''
+  license_text: ''
+./m4/sys_times_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 65330cd4e4102a96c194270ad63a84f51e0c2434500f54a1d994c4e4ef67d43e
+  license: ''
+  license_text: ''
+./m4/sys_utsname_h.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6297d018e2ce6557cfb1b69a8ad181b4b150a4b66d7da9988fc8b4b9e11141c4
+  license: ''
+  license_text: ''
+./m4/sys_wait_h.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 15694649678e6ed145b9468ef2af89fe024f914aa32d5e23f58210af6531261e
+  license: ''
+  license_text: ''
+./m4/sysexits.m4: 
+  copyright: 2003, 2005, 2007 Free Software Foundation, Inc
+  hash: bffb1617076a6e661ddf76f19df8cd972e0227ffcd9875916f5f7a7cc4fcb59f
+  license: ''
+  license_text: ''
+./m4/tempname.m4: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: a3bf3fdb7afc9ed7e1115ebd5f6c297f474cd2ac9b47043fa5921526007b166e
+  license: ''
+  license_text: ''
+./m4/thread.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 966cea206c2dde9b0822e88fb5c7eb071d1e2a8b498b5f7584177992654e3b76
+  license: ''
+  license_text: ''
+./m4/threadlib.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 0a3a72d652c01b057b2ec383380c48fb020f82e564e60ed9bd766a0d32066b2e
+  license: ''
+  license_text: ''
+./m4/time_h.m4: 
+  copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc
+  hash: 09adfda92c4df94c5a482b3ec5b39361004444a90836892de7f938ea85e27569
+  license: ''
+  license_text: ''
+./m4/time_r.m4: 
+  copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc
+  hash: 770d2efad291ac35edb3d39f8630a4709ef63528414495c9895426209a914244
+  license: ''
+  license_text: ''
+./m4/timegm.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+  hash: 4596ca9d5a3d693c17a973d67f0516d289147d1ee01c7b528cc2f782dd26c491
+  license: ''
+  license_text: ''
+./m4/timespec.m4: 
+  copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
+  hash: a25be56d364ef5d14f369d901d2c05e5cbd2f43c14bc1268746e18e6f001c0a9
+  license: ''
+  license_text: ''
+./m4/tls.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: 697de033bdbad89c040faa77a813d232afeefae98bb7c79cd3211e305ae79e07
+  license: ''
+  license_text: ''
+./m4/tm_gmtoff.m4: 
+  copyright: 2002, 2009 Free Software Foundation, Inc
+  hash: 758ee2b8a8b4488ded650d22c745fbee1c698b5bbbbadab892035a0bbd133958
+  license: ''
+  license_text: ''
+./m4/tmpdir.m4: 
+  copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc
+  hash: 098577de87caf3dad7141f279bbfb44cd8b4a79600904bc59b19733b612ca9d3
+  license: ''
+  license_text: ''
+./m4/tmpfile.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: a9f8b1f5f20e4f91f6a5a5c5ed38df62512f8d57a66bfc25276d50c2f40318ea
+  license: ''
+  license_text: ''
+./m4/trunc.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 360b254b79427391f8b53e897c7f92fb3ace5d5ad105180f038e50671ea0f446
+  license: ''
+  license_text: ''
+./m4/truncf.m4: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: c451a8be61a16dd51de9f147f9eea7b656aec20696e999962b9b2170aa973cd6
+  license: ''
+  license_text: ''
+./m4/truncl.m4: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 95d7249df03f9c1cbe96efe80cffba1e26271fab4a090c16e990b8f1375026af
+  license: ''
+  license_text: ''
+./m4/tsearch.m4: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 1fdebc81816c7417d4f8f53047196acb683d0e3178f9bf7a4200af674a5a179d
+  license: ''
+  license_text: ''
+./m4/tzset.m4: 
+  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+  hash: 25f9ec1e09c194a7e31b97f55483b93552e2448766dd5c96e62359f399656763
+  license: ''
+  license_text: ''
+./m4/uintmax_t.m4: 
+  copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc
+  hash: 5569fad1774ab8b961af00e03c545e378179e3d4ca1e5c23b3579e3ef6e61670
+  license: ''
+  license_text: ''
+./m4/ulonglong.m4: 
+  copyright: 1999-2007 Free Software Foundation, Inc
+  hash: 5de3995e758929606b49effa12a5e72f32bdadb3ffa4a434c39a5fdbfcc42f33
+  license: ''
+  license_text: ''
+./m4/uname.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3c6482e00f6593d203a89f71ae22c02497f43ccfa98128c01c410a65baf0d9f1
+  license: ''
+  license_text: ''
+./m4/ungetc.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 6d05898405c1b3e3c46040a9c38a59043c89a45cd3d411f28a20111f2483d280
+  license: ''
+  license_text: ''
+./m4/unicodeio.m4: 
+  copyright: 2002-2003 Free Software Foundation, Inc
+  hash: 767bdadf5b3faabd031a93d59ca9ead2934926368aba57932cba97b9aa74fef0
+  license: ''
+  license_text: ''
+./m4/unistd-safer.m4: 
+  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+  hash: d917dcd19ae1fe7e0e446c7cf29c1db1361a3abc2b5fda15c5da446442ce7a72
+  license: ''
+  license_text: ''
+./m4/unistd_h.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 390f7c7544789ef3626c1d1de31a7c38de0b022276ea3bc19dd159fda1869c65
+  license: ''
+  license_text: ''
+./m4/unlink-busy.m4: 
+  copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc
+  hash: ad70c286d0983ec8db389ea4785ef1730a651918d5fe5ffedda1c2810ef7d434
+  license: ''
+  license_text: ''
+./m4/unlinkdir.m4: 
+  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+  hash: de6356bceeff6f0516f22ebe8454b552888b3aa9c126c43968c65dc5d20824a8
+  license: ''
+  license_text: ''
+./m4/unlocked-io.m4: 
+  copyright: 1998-2006, 2009 Free Software Foundation, Inc
+  hash: 7d036d1f045f2eecb342938a5e665fa8b4ab671900c00c44ea74f853e5cfca03
+  license: ''
+  license_text: ''
+./m4/uptime.m4: 
+  copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc
+  hash: a21b4be251dfc64d08f51f7f7c731e3c1b7316b82a9352318f3ac0248b8202e9
+  license: ''
+  license_text: ''
+./m4/userspec.m4: 
+  copyright: 2002-2006, 2009 Free Software Foundation, Inc
+  hash: 767025ad4c6d4041ef5a4fa50a0f59f305bf899b4e88261b263a58a11eecaa26
+  license: ''
+  license_text: ''
+./m4/utimbuf.m4: 
+  copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software
+  hash: 1cc7dfc2a7f30b77bc720ee587638964a5d095ca07f291a9157245265121a10d
+  license: ''
+  license_text: ''
+./m4/utime.m4: 
+  copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc
+  hash: daf708dbb1e4e20331f886285ee9bebbcba63a486ac5bd4d13d92c27f53b5d22
+  license: ''
+  license_text: ''
+./m4/utimecmp.m4: 
+  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: a8b3ec86a04cb02154cbad4b5fdeecc06dd7b93dc54d96458f9d210949e68241
+  license: ''
+  license_text: ''
+./m4/utimens.m4: 
+  copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software
+  hash: 68d63c14fa0327cf0e4c214194e62b6bbe553f441f81bd1d17d8c5597fe6fb88
+  license: ''
+  license_text: ''
+./m4/utimes-null.m4: 
+  copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software
+  hash: 3d1576bcb95cbe1177f919d74755dc2272345e607205d917139059158a3724d3
+  license: ''
+  license_text: ''
+./m4/utimes.m4: 
+  copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
+  hash: f0ce682e7fb31e73a0c02c54b4ea24a84f141f32e54af7498deef1f9dee7c4f6
+  license: ''
+  license_text: ''
+./m4/vararrays.m4: 
+  copyright: 2001, 2009 Free Software Foundation, Inc
+  hash: ccc97184c7bd4de12a6168086eff30eb1c15e473193a91d5a5e5d6a8824a9d40
+  license: ''
+  license_text: ''
+./m4/vasnprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: b48e0fece07a089a5f87d23a14cb5091c44b473d532c563041616c9dafcdc15a
+  license: ''
+  license_text: ''
+./m4/vasnprintf.m4: 
+  copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc
+  hash: 1cd0c36a78c6078d18cdb67a1554a4ac9f773b68dac016c0cbfa06ca03453024
+  license: ''
+  license_text: ''
+./m4/vasprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: db9712da8b53f1bb3ae158ba8595f902cebc0533a5511d997ebbe7eff79aae9c
+  license: ''
+  license_text: ''
+./m4/vasprintf.m4: 
+  copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc
+  hash: 15f05ac172c3ea6b1b2e8fdc74cd60991f82c845dcf820fcb5b868b38acbb0b5
+  license: ''
+  license_text: ''
+./m4/vdprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 8f5973dc5616cf37e7aec5dd9f4b90181762fdecd6864ebe71ba10e48fe33230
+  license: ''
+  license_text: ''
+./m4/vdprintf.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e1d6b72d4330fcfa0af92094cc075e09ba7fb9115bf9154641687e8310e4e1d8
+  license: ''
+  license_text: ''
+./m4/version-etc.m4: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 14c2c6c298a204c97e8b5e47a299065d37b7c38ce4dc56125c443fb09a2cbdc1
+  license: ''
+  license_text: ''
+./m4/vfprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: d1777edd2bd37a587f11a3a9aaff20710d8a239f5e4f42f49fb36342f5ec3619
+  license: ''
+  license_text: ''
+./m4/visibility.m4: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: d8e75ab55dddf6b27703fb08e77f2e0e05d58c0e53aff9968eaf8f6a78def9cd
+  license: ''
+  license_text: ''
+./m4/vprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 37a9b2f2e103f8396564a88abd0c5379afb40a6b46056d5afc1adce54162cbea
+  license: ''
+  license_text: ''
+./m4/vsnprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 411f99e3689d9c66c871e864c31df109b6fe645f6bef287b09871e54ff163299
+  license: ''
+  license_text: ''
+./m4/vsnprintf.m4: 
+  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+  hash: 78bc63b8400f070466502f7f592939004f0204329bf1936e08db566f9efb4a63
+  license: ''
+  license_text: ''
+./m4/vsprintf-posix.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 5de43c845cf229240686251cffa6ebc95a7ff8c99776f41b84e9ab73fd5d27dd
+  license: ''
+  license_text: ''
+./m4/wait-process.m4: 
+  copyright: 2003, 2008, 2009 Free Software Foundation, Inc
+  hash: e95987f7301300836022c3c272ea0fd0f42750837bde9c7077eea97dd7c54f4e
+  license: ''
+  license_text: ''
+./m4/warnings.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 2ea3219129fd3e764decacbe54defb2ac59c220191cb3dc2e751955671739c87
+  license: ''
+  license_text: ''
+./m4/wchar.m4: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 82235dd92cbc686f19c162e681a3e2d2cd8712415ceb63502f96525e68b68801
+  license: ''
+  license_text: ''
+./m4/wchar_t.m4: 
+  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+  hash: e144a04745a6906677eeb9b8f3c9fb793754a3c55452125a6e24a9668ceb77bc
+  license: ''
+  license_text: ''
+./m4/wcrtomb.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 950cca49712f3c35b6801b3d14be1d94ecdfddaf783aa898b4c0a215c21d1a22
+  license: ''
+  license_text: ''
+./m4/wcsnrtombs.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: f1714d805e97204ef9c59bd5306dfb11726dd669488be35000b946750fd6f03d
+  license: ''
+  license_text: ''
+./m4/wcsrtombs.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: c97f36290b6a78023cc47f8d507dcd18ceec4a4d68fbf704e743231b8d2eb7f1
+  license: ''
+  license_text: ''
+./m4/wctob.m4: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: d9b6ab0f44f04f22bde90b90ed5287b8f3503b07803bd2469f5e37e32682c1db
+  license: ''
+  license_text: ''
+./m4/wctype.m4: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b223622a4d75488360819355855d86340ef0e7f18d4a3fd37bd74f65b7ef14a8
+  license: ''
+  license_text: ''
+./m4/wcwidth.m4: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 454b784cd3681ceda96891b7832bf461581311bed5d7e6f8c98cbe7371e8da76
+  license: ''
+  license_text: ''
+./m4/wint_t.m4: 
+  copyright: 2003, 2007-2009 Free Software Foundation, Inc
+  hash: 542edc258897a8065d2ea6d285047c9e3ff04da8728e2fc4c3ce004076b1bf5d
+  license: ''
+  license_text: ''
+./m4/write-any-file.m4: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: c5ed5eaed6e0fe94e459ff78fb113b0ff81091be83ecaaeef17f0dfe0ea6b5c4
+  license: ''
+  license_text: ''
+./m4/write.m4: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: c5c3bc26fbe2cb6fa61e259bcc8f1b0fdef708a454a07deb6712cb376c2d0b91
+  license: ''
+  license_text: ''
+./m4/xalloc.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 5008bbce8cfeaf98f9413e19e47b1267a7d0d7d21ba9d97bc1bf984f234a4773
+  license: ''
+  license_text: ''
+./m4/xgetcwd.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+  hash: 3b5d09234ad0a99b1fce1a5067ecc3c715989640845dd5c38e94d491e4e94090
+  license: ''
+  license_text: ''
+./m4/xnanosleep.m4: 
+  copyright: 2005, 2006 Free Software Foundation, Inc
+  hash: d11f4adf891d6c7746216e56ef22de12b2f4cdd9765e0f9d3630e52b02fae5f0
+  license: ''
+  license_text: ''
+./m4/xsize.m4: 
+  copyright: 2003-2004, 2008 Free Software Foundation, Inc
+  hash: 9d30e3c52072d3833efaf4d46c531c2b3f801281eb8aead4b3ae7ae011e2cff4
+  license: ''
+  license_text: ''
+./m4/xstrndup.m4: 
+  copyright: 2003 Free Software Foundation, Inc
+  hash: 117f55c31df0fe5f1e79240d94a592eed4a47276060894633b84e8816a1d5056
+  license: ''
+  license_text: ''
+./m4/xstrtod.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: 1ec2cd8d2c6b3de92b55a976bf17831b0daf8d2171c62cfad283954af9f4309f
+  license: ''
+  license_text: ''
+./m4/xstrtol.m4: 
+  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+  hash: ef06de197a5a3ac2001bb343095937dc6980e544003adc0f77f3d9f2be17fb82
+  license: ''
+  license_text: ''
+./m4/xvasprintf.m4: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: dae7786d5d9ab5954cee5d5c0847bed861d04af2a98ba67c5945d8085c9c85d0
+  license: ''
+  license_text: ''
+./m4/yesno.m4: 
+  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+  hash: b0dfeda80afab2a3259bde0be3a8994252fd438782e68ef024dfee9eae084ae9
+  license: ''
+  license_text: ''
+./m4/yield.m4: 
+  copyright: 2005-2009 Free Software Foundation, Inc
+  hash: 55ae2c6e8e758bd817c625c92a268f6d9e9eded98c0334cd4951f7f16c833c48
+  license: ''
+  license_text: ''
+./modules/COPYING: 
+  copyright: 2006 Free Software Foundation, Inc
+  hash: ea01ff3d1fe531cedd25e6454d6019a4c68df3539aa51b594745c21a87d532dd
+  license: ''
+  license_text: ''
+./modules/README: 
+  copyright: 2002-2007 Free Software Foundation, Inc
+  hash: 8d356052608716fc7be4d7331d5fa7674281528a1f2a37a5d0a79cabd3601b60
+  license: ''
+  license_text: ''
+./modules/TEMPLATE: 
+  copyright: ''
+  hash: f8a70af5ef07c20669714dd78293acb87f3aa86ad5f570a56ba9780db185eeb1
+  license: ''
+  license_text: ''
+./modules/TEMPLATE-EXTENDED: 
+  copyright: ''
+  hash: 6ebc6ce1adc16257f3b0631103f13c19f94ae53b31a1a237b4f9dfcd7fdccfe5
+  license: ''
+  license_text: ''
+./modules/TEMPLATE-TESTS: 
+  copyright: ''
+  hash: 269fa96cfbc6b04248686ca277bdfca748958597dd5371663d070ebd1f845bd8
+  license: ''
+  license_text: ''
+./modules/absolute-header: 
+  copyright: ''
+  hash: b91551dc6e292f96fc1f1dbfd58f368a201cd9145d147662e42298b74f277fc3
+  license: ''
+  license_text: ''
+./modules/accept: 
+  copyright: ''
+  hash: 880f693a12f72986c4004d5916367f6fcabdc2c90b0f92704a8683b8b5093ecc
+  license: ''
+  license_text: ''
+./modules/accept4: 
+  copyright: ''
+  hash: eff8a2f46aeddff17326dc7202dcc1c126940a12b6a08ccf328dcdfdb75385a3
+  license: ''
+  license_text: ''
+./modules/acl: 
+  copyright: ''
+  hash: f0f81a20f9ec6387ebdf385b5860ec35651d02adf72ac4d0f25939e3875380bd
+  license: ''
+  license_text: ''
+./modules/acl-tests: 
+  copyright: ''
+  hash: 5c900b78c378193efff1f23f0611a11691f688f3e6f98d65ba91415259989ff9
+  license: ''
+  license_text: ''
+./modules/agpl-3.0: 
+  copyright: ''
+  hash: ee51411f6921d7c5d74e0fe333dac39cbaa523c4fd9070898e12bb57004d7044
+  license: ''
+  license_text: ''
+./modules/alignof: 
+  copyright: ''
+  hash: 9378a232bbe5b9737af69836746b7ded8b6e07e003b231d49fe32a6df198f28e
+  license: ''
+  license_text: ''
+./modules/alignof-tests: 
+  copyright: ''
+  hash: 0cbc5d48e08e4633e9914b99427cb2958931f0fca6463ec6b5fbba801dcb0fc0
+  license: ''
+  license_text: ''
+./modules/alloca: 
+  copyright: ''
+  hash: 1a2b5c5a85209bb72ababfbc0e6dd9acb75565228f02f35483d6be1b9fc37a74
+  license: ''
+  license_text: ''
+./modules/alloca-opt: 
+  copyright: ''
+  hash: 3cbd6527fea57bf3040afab2047ca30268526f52ae7826d6b870216c8a96e66a
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/alloca-opt-tests: 
+  copyright: ''
+  hash: 43f65f86a2cacab71ca748cc004b72015963286ae5871a9872c3fd891d3f378f
+  license: ''
+  license_text: ''
+./modules/alphasort: 
+  copyright: ''
+  hash: a449b677555d768b144bc08809c5edf4590b1cc0263ecd44b1864a6693811cce
+  license: ''
+  license_text: ''
+./modules/announce-gen: 
+  copyright: ''
+  hash: 424137e7ed97358f8190d5b4c513195c537964100200cca084a6bfeeb5b7cf6c
+  license: ''
+  license_text: ''
+./modules/areadlink: 
+  copyright: ''
+  hash: a7ba93d0ca6f4fd028715cc62b74f27ed5d41e4c7fc4123e6b4cd077834bfb07
+  license: ''
+  license_text: ''
+./modules/areadlink-with-size: 
+  copyright: ''
+  hash: a4a44db468900aab3c1b60d8aef9c202fc4d6af1eb546127f18ce4597b276ca7
+  license: ''
+  license_text: ''
+./modules/argmatch: 
+  copyright: ''
+  hash: 3b907f3995ad2c5c25ce862c92db89bdf2e978b01e154933a5ac76a686ab61d1
+  license: ''
+  license_text: ''
+./modules/argmatch-tests: 
+  copyright: ''
+  hash: 1ee2045e91753f5727461047c125be83dbbf3cefdd96c9ba33fe70ad2b079ad0
+  license: ''
+  license_text: ''
+./modules/argp: 
+  copyright: ''
+  hash: ce02af3afd4ce18da524b2b765e4abdf63ff3ebf43802c32d7b3663a479b0b40
+  license: ''
+  license_text: ''
+./modules/argp-tests: 
+  copyright: ''
+  hash: 5ea825a9f24afb77c59e4f5fd1e6afb1db75028b4a11b86886c4291474058340
+  license: ''
+  license_text: ''
+./modules/argp-version-etc: 
+  copyright: ''
+  hash: da3723297aa47f347ecc2fdcb6acf53bae88fc70ac953b8f200e41db957cfd22
+  license: ''
+  license_text: ''
+./modules/argp-version-etc-tests: 
+  copyright: ''
+  hash: b70ef3bd1137f9fc9ee84d3e171e0d9cf77ba060db760228cc778fc11c1c5c05
+  license: ''
+  license_text: ''
+./modules/argv-iter: 
+  copyright: ''
+  hash: fdef6db4c9570ecc974daa07d7a17764047b2fbb0ca565d8ce246bf9d7646fd0
+  license: ''
+  license_text: ''
+./modules/argv-iter-tests: 
+  copyright: ''
+  hash: 7b434843257ef66143e5a306f573ec2f4b435294506f3d2026725ee192514fc7
+  license: ''
+  license_text: ''
+./modules/argz: 
+  copyright: ''
+  hash: b08870e168fbe181cd9b36b1a2a6ecc2bd18763c390bca98a5c6f64ecfd66b92
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/arpa_inet: 
+  copyright: ''
+  hash: f7f0aea422448523fe348fa3aab768d588584e6b82671bd9a986b73b096f4a08
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/arpa_inet-tests: 
+  copyright: ''
+  hash: 0612cb2590ee3e2f7a2a9d8a09965adaa37107664e7f6aa53fb5bf8b96a3dc0e
+  license: ''
+  license_text: ''
+./modules/array-list: 
+  copyright: ''
+  hash: 13010a14be6fcdbb05d1488022da1e81541145572644497f4a8c4bf63aaf062a
+  license: ''
+  license_text: ''
+./modules/array-list-tests: 
+  copyright: ''
+  hash: 53baa85faeb05acb1a5ac31eddc9644f74534d95b378c648e0e15c3c48fb3a39
+  license: ''
+  license_text: ''
+./modules/array-mergesort: 
+  copyright: ''
+  hash: d585324f2a3ec55082b40d8105956bef2d3acca525a28c3fb788716b0c8aefc7
+  license: ''
+  license_text: ''
+./modules/array-mergesort-tests: 
+  copyright: ''
+  hash: 0381eae0b69a43296fb82510390ea62a845191dacf3b433aaad9116b638c4d56
+  license: ''
+  license_text: ''
+./modules/array-oset: 
+  copyright: ''
+  hash: f36d4a0da577eed849de014669d57e2f2084cfd1f72b5611a526829c81250b40
+  license: ''
+  license_text: ''
+./modules/array-oset-tests: 
+  copyright: ''
+  hash: ec9ac466b696b5a94cd17a8ba47724fb6d95350af33941164b48273b68b74bf3
+  license: ''
+  license_text: ''
+./modules/assert: 
+  copyright: ''
+  hash: 84144692e39c0ce77559b0f2d4a5d22114f5cec2e0195dfd88cbe772ed85f07c
+  license: ''
+  license_text: ''
+./modules/atexit: 
+  copyright: ''
+  hash: 956fe5e5cc0e05eb5c5652bee988a55b05d2c27e4d0d4fa2fd65a54fbfcbf105
+  license: ''
+  license_text: ''
+./modules/atexit-tests: 
+  copyright: ''
+  hash: b5af4099d9ac6036921029273e26e8da033ff0bac3de1b5a2b3dd1ad69ba03d9
+  license: ''
+  license_text: ''
+./modules/atoll: 
+  copyright: ''
+  hash: 081eda59aa89c73d2d4f59240a8a9c0ee267bee9a1b5266c5691af9998acf69e
+  license: ''
+  license_text: ''
+./modules/autobuild: 
+  copyright: ''
+  hash: 1df0ddee990f9718235a005080c93d7c0f926c4e5552e8f32a7521e9a9a7a696
+  license: ''
+  license_text: ''
+./modules/avltree-list: 
+  copyright: ''
+  hash: 8352576b25c70bf6f2e533c52cbd8503e92c97193bc5fa9cc07804286be3ad08
+  license: ''
+  license_text: ''
+./modules/avltree-list-tests: 
+  copyright: ''
+  hash: a123480eb40475062e2604a99669dd8026d387d002ce72832d31c474d3fc01ce
+  license: ''
+  license_text: ''
+./modules/avltree-oset: 
+  copyright: ''
+  hash: 9201a58ecb36cd0aec6dc85046baa6ed2593d50675aebfb25f5f8e0c2fe1b5c3
+  license: ''
+  license_text: ''
+./modules/avltree-oset-tests: 
+  copyright: ''
+  hash: 2bbc34e6fbe51d0642d29db9147155c20bc3707e0083dc001823a0fe2b39401c
+  license: ''
+  license_text: ''
+./modules/avltreehash-list: 
+  copyright: ''
+  hash: 8379c549323aa2f753b6d5c5c14c04582f9d3d81cbf0e7097b87118a01d3d074
+  license: ''
+  license_text: ''
+./modules/avltreehash-list-tests: 
+  copyright: ''
+  hash: 222fec9e5662ce5934197e646123d204f9c5e35576d0fdf96b09ebe8065f21bb
+  license: ''
+  license_text: ''
+./modules/backupfile: 
+  copyright: ''
+  hash: 4fef23dcdfce02b82549e59718ac3bad55465aeb9fab63e33764c6f897745193
+  license: ''
+  license_text: ''
+./modules/base64: 
+  copyright: ''
+  hash: d850c109bddde729e5924c6d94d5e036d2eb1fb6ad06c18ea4bb8250bebfd01b
+  license: ''
+  license_text: ''
+./modules/base64-tests: 
+  copyright: ''
+  hash: b3ba7757f81171d4256c2280ed235946dccecba97f61a71beb7a18e58086ec8c
+  license: ''
+  license_text: ''
+./modules/bcopy: 
+  copyright: ''
+  hash: 3c949f3dd2f81574a222739c81dfb3ecd3b8f3ba8991e8d5daa793988f1066b9
+  license: ''
+  license_text: ''
+./modules/binary-io: 
+  copyright: ''
+  hash: 30e391bd7c76cdd6365ec2a6b56d87cd34e02ca680ea7e236e5395b18ede66b5
+  license: ''
+  license_text: ''
+./modules/binary-io-tests: 
+  copyright: ''
+  hash: a261d4e10b800d29c23e0c653efffb19a3149f33e7ee43e0076a08419bb6df40
+  license: ''
+  license_text: ''
+./modules/bind: 
+  copyright: ''
+  hash: 23a535bf498832382cbce326f849072720c70046c996a20effdee4c9bb89b7ea
+  license: ''
+  license_text: ''
+./modules/bison-i18n: 
+  copyright: ''
+  hash: 19037cfd342380ef9bc7024e56064ca9003979f131f1dea1dc92f1d7ba677ba4
+  license: ''
+  license_text: ''
+./modules/bitrotate: 
+  copyright: ''
+  hash: faaa06c6841e198470db642537c7dbbc9293c856bdba9233d3fa78fde732d556
+  license: ''
+  license_text: ''
+./modules/bitrotate-tests: 
+  copyright: ''
+  hash: 6876c90c81000a7ba76c7159cdcfa520d74edbbc0e650b504d6c6bc650298eac
+  license: ''
+  license_text: ''
+./modules/btowc: 
+  copyright: ''
+  hash: 09d7103954397af08b8d14f2a19074db593e030a78939b476595669a822df2f7
+  license: ''
+  license_text: ''
+./modules/btowc-tests: 
+  copyright: ''
+  hash: 6678d1b57cf42f696e33a3f3c000bfdc548a517f89b7753c081d4bc2daedb0c8
+  license: ''
+  license_text: ''
+./modules/byteswap: 
+  copyright: ''
+  hash: 02ae020bda6922b8e3e33b99cefc9c092d9c11f407a30a8c0144f2ea79d61d2b
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/byteswap-tests: 
+  copyright: ''
+  hash: d5dcac55272d375d33032dadc4b83cf82b2c4b49f1e576718afc88774e06e820
+  license: ''
+  license_text: ''
+./modules/c-ctype: 
+  copyright: ''
+  hash: 1aaf6009165743a42132a3a5f350954787e1fb6d00652d4a7054d640678a2852
+  license: ''
+  license_text: ''
+./modules/c-ctype-tests: 
+  copyright: ''
+  hash: 541b89b740089bbb53771bc68a6b4dde677cf62c45e31859803168e920a2b4cc
+  license: ''
+  license_text: ''
+./modules/c-stack: 
+  copyright: ''
+  hash: 9e073958b6341900d6ff379d5088639539a9c9420b43295900545fe8f7f98f05
+  license: ''
+  license_text: ''
+./modules/c-stack-tests: 
+  copyright: ''
+  hash: af2bec5076635bdcb7aed623f58e8024ca0e31a7cbfa600e6f16e4885332995a
+  license: ''
+  license_text: ''
+./modules/c-strcase: 
+  copyright: ''
+  hash: a37a455befa8dea1afeff6efe9a52ca456d347c9640b6533de088e6ed066ab0a
+  license: ''
+  license_text: ''
+./modules/c-strcase-tests: 
+  copyright: ''
+  hash: b9ebfef040c2c75e386017fccce5ec0551e2925375d7139c44c210676cce33eb
+  license: ''
+  license_text: ''
+./modules/c-strcaseeq: 
+  copyright: ''
+  hash: f752ec255a570106fc293400dc68d349d63b8eadf4c6ac894b6fab309f3a9d20
+  license: ''
+  license_text: ''
+./modules/c-strcasestr: 
+  copyright: ''
+  hash: ea69b0761c479bdeed87f867068c33d48a03c35e3936828e09f87aba683a7330
+  license: ''
+  license_text: ''
+./modules/c-strcasestr-tests: 
+  copyright: ''
+  hash: 8c6ed641b71bd7d361ff43ea2bf201db01873a92e78d96f7e5eb817770baf2ae
+  license: ''
+  license_text: ''
+./modules/c-strstr: 
+  copyright: ''
+  hash: 9e209ab3ebf91f8ef637589f7d39703fa22f55af9d697603cb169766695e5385
+  license: ''
+  license_text: ''
+./modules/c-strstr-tests: 
+  copyright: ''
+  hash: f9d5b888a3c3e54e1f2630b76a956ca27fd75f8e72a4254075594e29bbcb5858
+  license: ''
+  license_text: ''
+./modules/c-strtod: 
+  copyright: ''
+  hash: 612121560adbf21427320c02041c112b48ea6fd6297b7be91c6291af7375cbcc
+  license: ''
+  license_text: ''
+./modules/c-strtold: 
+  copyright: ''
+  hash: 3544bbe9e95749a41f982bde06d71495ebdd9a5e5b0b07041a741ed009c733e6
+  license: ''
+  license_text: ''
+./modules/calloc: 
+  copyright: ''
+  hash: d7466a0b924d6645b1c5cbad94c4a37f8c5c5da513c1304b58890ac53d930e30
+  license: ''
+  license_text: ''
+./modules/calloc-posix: 
+  copyright: ''
+  hash: 3b1406a7c742bf6dd0d730f653c5785f86801bd8f7223201bd6aaa2d050dfcd9
+  license: ''
+  license_text: ''
+./modules/canon-host: 
+  copyright: ''
+  hash: b81f60bfbc64572f5c7a8beaa41866bae17cd2d40aebebb151e7ee1b1266b83c
+  license: ''
+  license_text: ''
+./modules/canonicalize: 
+  copyright: ''
+  hash: f24ee9ec34ae94bb205cb71bd8d533a004202ef33739606bebd774941a00b75c
+  license: ''
+  license_text: ''
+./modules/canonicalize-lgpl: 
+  copyright: ''
+  hash: 4c13afd9743357e076cee04877e63b77afa6cd8ff0926e3879043fb4360ba78a
+  license: ''
+  license_text: ''
+./modules/canonicalize-lgpl-tests: 
+  copyright: ''
+  hash: 5115abba1182913b6fe9173dabcf860a194d017b1f89ad56fc009c15a5bc723f
+  license: ''
+  license_text: ''
+./modules/canonicalize-tests: 
+  copyright: ''
+  hash: a0d9e99e99856f2b41a69a2031475234178cddb4399c4c50ee6bb09f55009c07
+  license: ''
+  license_text: ''
+./modules/carray-list: 
+  copyright: ''
+  hash: e550c35afc8d217d0fcec2b961f4b7aa62e205f37223a98963561adf65e01d56
+  license: ''
+  license_text: ''
+./modules/carray-list-tests: 
+  copyright: ''
+  hash: 9cc5e8c71ff614ff0d7df3a565b59dd8db14a616242f77e97c6b1a2a8105bd81
+  license: ''
+  license_text: ''
+./modules/ceil: 
+  copyright: ''
+  hash: b73da31e7eb3600040bd1ea4c6a8b2f1e0e90ba7ffce37b668421fd8bda25605
+  license: ''
+  license_text: ''
+./modules/ceilf: 
+  copyright: ''
+  hash: 60cf4bef6762da1964acc30e8cf5540ee4be612f716cbace67aca6f54a1f2ff3
+  license: ''
+  license_text: ''
+./modules/ceilf-tests: 
+  copyright: ''
+  hash: 2ecc4fec292d712661525b22d5344cb9ca77a3fd9f62e015f960c0b1b3179dac
+  license: ''
+  license_text: ''
+./modules/ceill: 
+  copyright: ''
+  hash: 7405c30e654f64ad80e99bc91d7a3fc3155af2fe45dc87915803f0059b11a627
+  license: ''
+  license_text: ''
+./modules/ceill-tests: 
+  copyright: ''
+  hash: 02e342a8a90a0d94eead61705e1f03a4180d1d2255f97ac1084951c7ac1f172c
+  license: ''
+  license_text: ''
+./modules/chdir-long: 
+  copyright: ''
+  hash: 37e8e598f3011eefce4641dfbeebe2a22a36b5c02209da129a74d943c4c2ed14
+  license: ''
+  license_text: ''
+./modules/chdir-safer: 
+  copyright: ''
+  hash: f023c1a589c1d09e4f14c6ff16e462523dbb61feca57327ec3db77ecd7e4fed7
+  license: ''
+  license_text: ''
+./modules/check-version: 
+  copyright: ''
+  hash: c8ab694209f70435e648a111762230f5f4a9d25fa96c20955642a0d6a9b78ecb
+  license: ''
+  license_text: ''
+./modules/chown: 
+  copyright: ''
+  hash: 27f2690dd303af10bb6ffc0c70b9b67bf7d9c475c30b379099b25799b48450f2
+  license: ''
+  license_text: ''
+./modules/classpath: 
+  copyright: ''
+  hash: 826a02656c133f31a7120fe677a9e8fbece69bca8f49b30954fe4bf51c4a847e
+  license: ''
+  license_text: ''
+./modules/clean-temp: 
+  copyright: ''
+  hash: 0167d0f7a980c65c18288e1d04cff18da933c9dcb7531606c0e9ebee382dac61
+  license: ''
+  license_text: ''
+./modules/clock-time: 
+  copyright: ''
+  hash: a0a588f85ac8e63fa9f8f9361381a81ebea08d20abd2c1be04d2640560c28c41
+  license: ''
+  license_text: ''
+./modules/cloexec: 
+  copyright: ''
+  hash: ce7a0dcfafef2342f95a1c8d8b303d6336f2e2ce9931c19696d3e98cdd24a582
+  license: ''
+  license_text: ''
+./modules/close: 
+  copyright: ''
+  hash: 8bd8212ece9bee25d93a40810444163e096b3ac7cc5bf19388451f13a1ea4059
+  license: ''
+  license_text: ''
+./modules/close-hook: 
+  copyright: ''
+  hash: 05b21d50199be350706d697bab38376c91867056a1b28de62514511ac4054e1b
+  license: ''
+  license_text: ''
+./modules/close-stream: 
+  copyright: ''
+  hash: 3f3c94f0eb2dd9487e9fce9fca2ce7cba021c47c507466f448e837d21bffa9e7
+  license: ''
+  license_text: ''
+./modules/closein: 
+  copyright: ''
+  hash: ac54f1e1c2872ff17faed1667304d92f0d702bc9368a88e3b84823ab901e94eb
+  license: ''
+  license_text: ''
+./modules/closein-tests: 
+  copyright: ''
+  hash: 805c1e0f0a4b354915ff7f5a7422d6d16cdce97d6df46dde141ebdc3826b48ad
+  license: ''
+  license_text: ''
+./modules/closeout: 
+  copyright: ''
+  hash: 051da050b037e9c81b7d6782ac45594f01e0ef7cbff2374cff1fa6f27d57bcbe
+  license: ''
+  license_text: ''
+./modules/concat-filename: 
+  copyright: ''
+  hash: 8a73319669b27457ae9c38a8051293d9a4f8ea4ec07c9b3caeeba3025aa34db9
+  license: ''
+  license_text: ''
+./modules/cond: 
+  copyright: ''
+  hash: d1e1fdf80f75b22e3b5e375755f93920bd05d490cd892df12e5a02387cd32715
+  license: ''
+  license_text: ''
+./modules/cond-tests: 
+  copyright: ''
+  hash: 2b1de8d3eeccd314891c3d26b8acd001891fd51583fd6ef61b619af9370673bc
+  license: ''
+  license_text: ''
+./modules/config-h: 
+  copyright: ''
+  hash: 91e035167a02a8b36f0d9e54ebbb976100ac64d04869f8f0d863e983bbc54903
+  license: ''
+  license_text: ''
+./modules/configmake: 
+  copyright: ''
+  hash: e2e385cbb63e95e40039eec46348d71a6b017c2504404eb4651d9b267c975386
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/connect: 
+  copyright: ''
+  hash: eb39e48e80088efe48404e5d5be9b3ef518ea35e2ea5c39dd1fc5e1fbada497e
+  license: ''
+  license_text: ''
+./modules/copy-file: 
+  copyright: ''
+  hash: 70ec3ceab633438e6f8854a1378d56435c8c968587fe6ca8be8c1ef3bccc830c
+  license: ''
+  license_text: ''
+./modules/copy-file-tests: 
+  copyright: ''
+  hash: 06069a61c64b73f74356dfcdc050364dbaf37018d778b9715c2df576b3b58129
+  license: ''
+  license_text: ''
+./modules/count-one-bits: 
+  copyright: ''
+  hash: 15c0054778b12fcbea0ad721994a124837da8a21621a6fc423e9df2412129954
+  license: ''
+  license_text: ''
+./modules/count-one-bits-tests: 
+  copyright: ''
+  hash: 969693e3cd2dbad97f45c36545782a08594c11c7792b305344ad8d7ef56f3ec2
+  license: ''
+  license_text: ''
+./modules/crc: 
+  copyright: ''
+  hash: 6e215352fbcbda061d26760d0bedd4ca18904097058e9b89357c45433e342308
+  license: ''
+  license_text: ''
+./modules/crc-tests: 
+  copyright: ''
+  hash: 53be4aa9d8567f7ffc69736b1f7f8d87727bdac69d7f8f6a7954eea7251d980b
+  license: ''
+  license_text: ''
+./modules/crypto/arcfour: 
+  copyright: ''
+  hash: 8d3330e5db17886bf6f3779d415aa5153f864fc51e292401c0c305e4d561053f
+  license: ''
+  license_text: ''
+./modules/crypto/arcfour-tests: 
+  copyright: ''
+  hash: 3630759cc927ebcd0be39504cf3bea594de25cfc04a922d3bdc56c8c0f0d8af4
+  license: ''
+  license_text: ''
+./modules/crypto/arctwo: 
+  copyright: ''
+  hash: 5469694717f29035793668209aa697611e9c80d3cefd3429445d55a81507a79f
+  license: ''
+  license_text: ''
+./modules/crypto/arctwo-tests: 
+  copyright: ''
+  hash: c811c82078187c8a8ed3d4b866e6c485d7408508782e0a351175c3488415a16d
+  license: ''
+  license_text: ''
+./modules/crypto/des: 
+  copyright: ''
+  hash: 06db0a8fd379ada1a5aff08c9ab10b9819ccf63b2961736326633cd10aaa6d50
+  license: ''
+  license_text: ''
+./modules/crypto/des-tests: 
+  copyright: ''
+  hash: cbc028ccae8a0469a4d48a2eab9b34ebb63d6f8eb9b67f1bf991f68e757e0052
+  license: ''
+  license_text: ''
+./modules/crypto/gc: 
+  copyright: ''
+  hash: a37067ce105b5c26b65edc4746d337d2071c7b088f830ee2e9ac168cccaea42f
+  license: ''
+  license_text: ''
+./modules/crypto/gc-arcfour: 
+  copyright: ''
+  hash: d679779877f609d5d127d5a90882ef40bf0fc99f2dbbabe80887c9d515a0d275
+  license: ''
+  license_text: ''
+./modules/crypto/gc-arcfour-tests: 
+  copyright: ''
+  hash: 62c1593e37d5d7c1134e9ab32a23f55f0f191736dea6b1bffd23b4b19ead2d16
+  license: ''
+  license_text: ''
+./modules/crypto/gc-arctwo: 
+  copyright: ''
+  hash: b992ec6a005b7812bd2288aa943bd754ec7bbe6d13d38635511d69839ab97cd3
+  license: ''
+  license_text: ''
+./modules/crypto/gc-arctwo-tests: 
+  copyright: ''
+  hash: 200aab87e9e96d895c177468df8b331f595b1f98e49b109a15f9d6ef8a144b9e
+  license: ''
+  license_text: ''
+./modules/crypto/gc-camellia: 
+  copyright: ''
+  hash: 6efd71985d9ac0bfb970aee78a503053c56e6c209934f17d286bfbe6c6c949c9
+  license: ''
+  license_text: ''
+./modules/crypto/gc-des: 
+  copyright: ''
+  hash: 9152a88c7c783ec440504fb433c322a230f707f50d957df0b45e8c0886785680
+  license: ''
+  license_text: ''
+./modules/crypto/gc-des-tests: 
+  copyright: ''
+  hash: 6c35974a1252d0f23670a8806e798eec78a8788ca9fdd0ddb94370513d097d03
+  license: ''
+  license_text: ''
+./modules/crypto/gc-hmac-md5: 
+  copyright: ''
+  hash: 5d2b3bbeae841ab7330e7699bff61e4cd8050938a229c85f932c9eb018074e55
+  license: ''
+  license_text: ''
+./modules/crypto/gc-hmac-md5-tests: 
+  copyright: ''
+  hash: 5ca026dab867927b6168a5e403facf038d7d0e1556528d1171b727335b5fcf83
+  license: ''
+  license_text: ''
+./modules/crypto/gc-hmac-sha1: 
+  copyright: ''
+  hash: bdfd1be06fdb64511009c39267dde2b93e94c2109f9d15c9fe928038cbcf1f8a
+  license: ''
+  license_text: ''
+./modules/crypto/gc-hmac-sha1-tests: 
+  copyright: ''
+  hash: 2aae9e8d5d39f859cefb2b1f1848af6876b0fc5d28fdd5c49c67fa7887938cd7
+  license: ''
+  license_text: ''
+./modules/crypto/gc-md2: 
+  copyright: ''
+  hash: 13b8d9a7fc54087c059b8a671a63fec91931cd56867bdf3f62a52cd5738eb815
+  license: ''
+  license_text: ''
+./modules/crypto/gc-md2-tests: 
+  copyright: ''
+  hash: 4a3a9ae40cf894aa4a91da171c06446cdce46a367fe54af13bd285cc359a388f
+  license: ''
+  license_text: ''
+./modules/crypto/gc-md4: 
+  copyright: ''
+  hash: 7aa9174d56c7f1a0f4f5373e3331aae1fb2f700c9003ceca20326cdae4140a15
+  license: ''
+  license_text: ''
+./modules/crypto/gc-md4-tests: 
+  copyright: ''
+  hash: e268963672978e792a325d3764efa0a5a9d680372ea0c2022b64145599982d23
+  license: ''
+  license_text: ''
+./modules/crypto/gc-md5: 
+  copyright: ''
+  hash: 67dfbe237cae5b7b4b84ab819f18dfe5d37ef049ae6797f3dee72a91cbafe244
+  license: ''
+  license_text: ''
+./modules/crypto/gc-md5-tests: 
+  copyright: ''
+  hash: c048f579e8a717bd9afe2adc1f47f82cb21534eae77b8d1070d3420b5228572f
+  license: ''
+  license_text: ''
+./modules/crypto/gc-pbkdf2-sha1: 
+  copyright: ''
+  hash: b3b5bd79957e0763875e03f1a558d6077746eefdc7fde6ea095f0331192b6551
+  license: ''
+  license_text: ''
+./modules/crypto/gc-pbkdf2-sha1-tests: 
+  copyright: ''
+  hash: a3182b57a694077f06706f41afe2e80f9ca286a3a7521a456b74405b793f816f
+  license: ''
+  license_text: ''
+./modules/crypto/gc-random: 
+  copyright: ''
+  hash: 8ecf0f62f4bb9a0e05a1bf45a2aeb552c045f1f7e0cb562ad7036123629e535b
+  license: ''
+  license_text: ''
+./modules/crypto/gc-rijndael: 
+  copyright: ''
+  hash: fdbadf39acda6737d3e798e4b883e4f2369b28a10c04ca3c398a1f94af7d458a
+  license: ''
+  license_text: ''
+./modules/crypto/gc-rijndael-tests: 
+  copyright: ''
+  hash: af1ef324aa3f6651595b4aa8cc89115cc4ce259a86a57f6fd051fa0843e631a8
+  license: ''
+  license_text: ''
+./modules/crypto/gc-sha1: 
+  copyright: ''
+  hash: d0a58c382167aa666d7fd260afb270c56d8397843830055724d2c8c79b19e380
+  license: ''
+  license_text: ''
+./modules/crypto/gc-sha1-tests: 
+  copyright: ''
+  hash: 4c4a5c9313d4f0177afb6159d8ed38aed51f2ecb4a3ef5d289a440129483d37c
+  license: ''
+  license_text: ''
+./modules/crypto/gc-tests: 
+  copyright: ''
+  hash: 144ea2d95cd81e0a8471529c2decbc1bd181790e9b6f8d128ba4f64906cdccbf
+  license: ''
+  license_text: ''
+./modules/crypto/hmac-md5: 
+  copyright: ''
+  hash: 595271e6f31d3444e0e50e659e38e3001d3038fa787516aa52b8a3f614aac47a
+  license: ''
+  license_text: ''
+./modules/crypto/hmac-md5-tests: 
+  copyright: ''
+  hash: 988d239d21bf3f5fd1fcfcbda7d40c69bebeb32d9cd843dd450095e1c16904c9
+  license: ''
+  license_text: ''
+./modules/crypto/hmac-sha1: 
+  copyright: ''
+  hash: 444d3cfb9eff2bf6d5dc80facac95589f25821de74edf7d5a5fbc38224cf7e50
+  license: ''
+  license_text: ''
+./modules/crypto/hmac-sha1-tests: 
+  copyright: ''
+  hash: 399e8fc017513a7f5d032eb7f9db622f86f1ec372d4d62071be2ef5093bf22c9
+  license: ''
+  license_text: ''
+./modules/crypto/md2: 
+  copyright: ''
+  hash: 7a6574dd72be6053162e082ee5e07232f7318a53a8de966a0d045188ba9dd955
+  license: ''
+  license_text: ''
+./modules/crypto/md2-tests: 
+  copyright: ''
+  hash: 9c76b233ede1e25772f6935717c5d5f3a219e92d9349049b4e66ebb9fdd229ab
+  license: ''
+  license_text: ''
+./modules/crypto/md4: 
+  copyright: ''
+  hash: bd74a69b055714488287883e8f724eb98f43599b6255e2d7313f86368f1bae62
+  license: ''
+  license_text: ''
+./modules/crypto/md4-tests: 
+  copyright: ''
+  hash: 4eef5de6a0aa60cf29e9e4191650d9f9bc9c124cf5ef89771bc1237ffcc3fe9b
+  license: ''
+  license_text: ''
+./modules/crypto/md5: 
+  copyright: ''
+  hash: 1ad408aaec77111bb7efd40eed25ac37900d0caa4270950ba95a830ade1092eb
+  license: ''
+  license_text: ''
+./modules/crypto/md5-tests: 
+  copyright: ''
+  hash: cac6273fd539cb07720eb45050ef064ce4c4f3d4c45b7066754a788d9dd1c0eb
+  license: ''
+  license_text: ''
+./modules/crypto/rijndael: 
+  copyright: ''
+  hash: 6a500faa9b78a580ec9d8fc772a6df9e1081c67ce64224ced59981d4e0bbd4b1
+  license: ''
+  license_text: ''
+./modules/crypto/rijndael-tests: 
+  copyright: ''
+  hash: e5dcd3808ffe9e602133e07c69fe375707d35074686baf15646787c608671fa2
+  license: ''
+  license_text: ''
+./modules/crypto/sha1: 
+  copyright: ''
+  hash: 1e19f668b7ca41a4d49d9c9b3f865d1e66708a3c5c9bc55d82ce8ff109b884d9
+  license: ''
+  license_text: ''
+./modules/crypto/sha1-tests: 
+  copyright: ''
+  hash: c42d3c37932b83bea31b95e3ce5b26e9dd928723dbfaf6d626b51c7fd3985536
+  license: ''
+  license_text: ''
+./modules/crypto/sha256: 
+  copyright: ''
+  hash: 557c56301b0f36c5b86a7dfbab1f20046c2d890805029004b658771806df49df
+  license: ''
+  license_text: ''
+./modules/crypto/sha512: 
+  copyright: ''
+  hash: 8bcd2185a1b214c2ae0c659aa629dd872c098fc5bfa80120eb71305a191043e9
+  license: ''
+  license_text: ''
+./modules/csharpcomp: 
+  copyright: ''
+  hash: 7e6fa71cf3bf56738998c868ef882d3c97de87ecfb6cd25394b5eb424b77b4b7
+  license: ''
+  license_text: ''
+./modules/csharpcomp-script: 
+  copyright: ''
+  hash: 71047fa1bb16d9032a37f67f14d70b137a43940137e082ae9619a24309df89ba
+  license: ''
+  license_text: ''
+./modules/csharpexec: 
+  copyright: ''
+  hash: e6b2318976ab61784ae6ddb467935dbe9b837ab9a2ec58728a743934db8f1bef
+  license: ''
+  license_text: ''
+./modules/csharpexec-script: 
+  copyright: ''
+  hash: 78a66dbe260f67ae324d71323133bf91a19ca64152a838b0022b5f8272afd0f6
+  license: ''
+  license_text: ''
+./modules/cycle-check: 
+  copyright: ''
+  hash: 3d00024fc25f5fd2a625a9f137306fbef1078e206f57f46f5f12d485889c0f00
+  license: ''
+  license_text: ''
+./modules/d-ino: 
+  copyright: ''
+  hash: 3eed0c9278033ea666932b94aab0e9df4dad98ea7892e926e35f2f1df9546b05
+  license: ''
+  license_text: ''
+./modules/d-type: 
+  copyright: ''
+  hash: 2053db6f7f00ffd6c740c3dbc565bddb41c8c90976e257ebe336015c2e01149c
+  license: ''
+  license_text: ''
+./modules/dev-ino: 
+  copyright: ''
+  hash: 93d43fe09c3ef97fd7290f0008ddaaa5947efaefb1b19d93f176ad6f43434bcb
+  license: ''
+  license_text: ''
+./modules/diacrit: 
+  copyright: ''
+  hash: 8eb2c774ce439371d213db0240b5893eb3a44abbfb193047a78617492190928d
+  license: ''
+  license_text: ''
+./modules/diffseq: 
+  copyright: ''
+  hash: 1fb1c1f2ca6c4ac54e710082b6724c8b3fe45ad6f23ea206197dbd416674bbe8
+  license: ''
+  license_text: ''
+./modules/dirent: 
+  copyright: ''
+  hash: 05d75f6c4ce7f52db3d63209155dab34f9b6242e3427b36a5148aea1fe711830
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/dirent-safer: 
+  copyright: ''
+  hash: b8cb12f2325cec94272dbbbde2d31125d02b609dd8902dc709a0e73a021dde61
+  license: ''
+  license_text: ''
+./modules/dirent-safer-tests: 
+  copyright: ''
+  hash: e37f3f6296305a9eb975d0f8e2a3ffb0f98fa3a9cecded0b47bc05b169e0a401
+  license: ''
+  license_text: ''
+./modules/dirfd: 
+  copyright: ''
+  hash: c26ab98336ca5e6d0a647ef1ee1a25f2df553234e51efb824097c7a73bd6d345
+  license: ''
+  license_text: ''
+./modules/dirname: 
+  copyright: ''
+  hash: 2de69ef4b25f9b0db1b2598591b5efa3312fb79ac6aea41735ee091ddcddbf2b
+  license: ''
+  license_text: ''
+./modules/dirname-tests: 
+  copyright: ''
+  hash: 815c8ff67c3f529ae878f7a26b523438fe832f56e7bbd69dc8f2429e75f9f384
+  license: ''
+  license_text: ''
+./modules/double-slash-root: 
+  copyright: ''
+  hash: 899ac52e251e2421ddeb82d4de9a425eaf7412c957f9927c31cc39fe7f148963
+  license: ''
+  license_text: ''
+./modules/dprintf: 
+  copyright: ''
+  hash: 0c7255737575d60259979623471bad2c8da641cd523b977b8704333c0fce29db
+  license: ''
+  license_text: ''
+./modules/dprintf-posix: 
+  copyright: ''
+  hash: 9e4bd7fddc560e97cb0743a5c690a875122f4dbe135f25b76d0beaae8d0db6d7
+  license: ''
+  license_text: ''
+./modules/dprintf-posix-tests: 
+  copyright: ''
+  hash: 516a22b8ce686f568cf033207db60bf332fd484d0b92921cf3fd1a4c4fb86d24
+  license: ''
+  license_text: ''
+./modules/dummy: 
+  copyright: ''
+  hash: 854d662d1c7394227e82d7870cfaffde43c9513d8734120012e984f7ba5fd39d
+  license: ''
+  license_text: ''
+./modules/dup2: 
+  copyright: ''
+  hash: 9e1c5691c3713e492a4f51d5608a4d199d17ced5babcec490ddc2509f8de2231
+  license: ''
+  license_text: ''
+./modules/dup2-tests: 
+  copyright: ''
+  hash: 01cb97ae8c492fc1564a3c4976dab781809ef8aa08741f5b14ca96f08fcef840
+  license: ''
+  license_text: ''
+./modules/dup3: 
+  copyright: ''
+  hash: 69fdc3c3a124fd2c88d8386d1837ce8d2c82196a008d64bb8eba8127c0ee771b
+  license: ''
+  license_text: ''
+./modules/dup3-tests: 
+  copyright: ''
+  hash: be78bf1d63fd9d08ffe02606639d273d5978684399ff4782b3397b475e14a5ee
+  license: ''
+  license_text: ''
+./modules/eealloc: 
+  copyright: ''
+  hash: e2124275b5589e827043e1bb59ec89182059cd0994a308c5ee17fb95eca6522f
+  license: ''
+  license_text: ''
+./modules/elisp-comp: 
+  copyright: ''
+  hash: 0b7233ecf09add728c7f7266e9ed8f9c42bc3f471d53b648293c5c70f5379d17
+  license: ''
+  license_text: ''
+./modules/environ: 
+  copyright: ''
+  hash: 1ccce16dccd630d05124710f0a7e4832aec3f07e23fba03399e3855fe21b565f
+  license: ''
+  license_text: ''
+./modules/environ-tests: 
+  copyright: ''
+  hash: f8edb03479da1a4c85755325a181d77fc778974097b8f2900a1a005d6e27f5e3
+  license: ''
+  license_text: ''
+./modules/errno: 
+  copyright: ''
+  hash: 1a350cc71bd2dcb0e1cc4d35eeebbc15da79d2dd532248a36a5cf198d44d5293
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/errno-tests: 
+  copyright: ''
+  hash: 140223d34c164d0e4377ea2e0d78659c013feb62881bd2a4966a478369c398cc
+  license: ''
+  license_text: ''
+./modules/error: 
+  copyright: ''
+  hash: 6e0d5c513ead811b7a4449172ecd0253617aac365941fc0c0c4bef58f36528ff
+  license: ''
+  license_text: ''
+./modules/euidaccess: 
+  copyright: ''
+  hash: bcbfd513d69bb6b68998eacafc86914e98acb9fa5b0015bc19c13c38bf5c695c
+  license: ''
+  license_text: ''
+./modules/exclude: 
+  copyright: ''
+  hash: d1a7809613d0860c9a2b248aa53cf31da18b65a27afd84649489f86e0585027d
+  license: ''
+  license_text: ''
+./modules/exclude-tests: 
+  copyright: ''
+  hash: 313e390c1042153f04f3d54dc76b4555a15b6d43c0c895957d8c2d95133160bf
+  license: ''
+  license_text: ''
+./modules/execute: 
+  copyright: ''
+  hash: 2ff2c5ddb5a20cc9471fa47595e00e1e2f91319fcab2a237ed79ba9dc66f255c
+  license: ''
+  license_text: ''
+./modules/exit: 
+  copyright: ''
+  hash: 97ef461ebd37690d9acd7227822e73a0742c3eddcca463f8578bb916d9d406c7
+  license: ''
+  license_text: ''
+./modules/exitfail: 
+  copyright: ''
+  hash: 71bf5ee9e44fb5ac95bbfffc6cdea1d50b539482cd5e3cd2468411e93e3e2cff
+  license: ''
+  license_text: ''
+./modules/extensions: 
+  copyright: ''
+  hash: c8560170a702ed9b6f24f677c3ee0a32abb9a6381e983c1c5db53a08d4cbf300
+  license: ''
+  license_text: ''
+./modules/faccessat: 
+  copyright: ''
+  hash: 178c21c4b625555d359cb418d9feb5a994ae890419a4ec0e97a67e84e1897210
+  license: ''
+  license_text: ''
+./modules/fatal-signal: 
+  copyright: ''
+  hash: d6326aa3aefe52b95ee7eb0ebc3a68fff79a71488ec77bad0803fdadfcabf22c
+  license: ''
+  license_text: ''
+./modules/fbufmode: 
+  copyright: ''
+  hash: 73f27bfb851dcb675c670945680ac3d2f3d9ef358ebd537e924a041af617df55
+  license: ''
+  license_text: ''
+./modules/fbufmode-tests: 
+  copyright: ''
+  hash: 71fe5ce9c53cb34271eb8d52b313df538a124a637342017c3aadb391493145df
+  license: ''
+  license_text: ''
+./modules/fchdir: 
+  copyright: ''
+  hash: 644b0fc8c342462f0685df822c5424fce6c66ecc84dcd67513ccf047a3ab7dd3
+  license: ''
+  license_text: ''
+./modules/fchdir-tests: 
+  copyright: ''
+  hash: 787a3d5b3bc71dd81c896ec6cb8cf270b44d635227d7de69404709a40774ddac
+  license: ''
+  license_text: ''
+./modules/fclose: 
+  copyright: ''
+  hash: cf3f476e6ac54b29381acc2be25b3080b60e1c224cf2c70733848805e42c10ed
+  license: ''
+  license_text: ''
+./modules/fcntl: 
+  copyright: ''
+  hash: 3ed2504e15f67cc9a6c99a5da3d83833e88117d5f752742ab939317e33954f3f
+  license: ''
+  license_text: ''
+./modules/fcntl-h: 
+  copyright: ''
+  hash: 7fd3e763589848f291c1f516bde747c0dd95fe564ac008a1c5e73daa0b1b8384
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/fcntl-h-tests: 
+  copyright: ''
+  hash: 21b1ab56df8b65825fe64da68487d62116cd8774ce073c1f8ee25ea6e589fd87
+  license: ''
+  license_text: ''
+./modules/fcntl-safer: 
+  copyright: ''
+  hash: 4ebf6bbd64762641d00a4ae162c3411b45f8d9ed4b4581ed65c023a5e7ca4649
+  license: ''
+  license_text: ''
+./modules/fcntl-safer-tests: 
+  copyright: ''
+  hash: be7ef9f639404a67e06811e0b0e18326bc85573fd18511dcfcbc34f7067081eb
+  license: ''
+  license_text: ''
+./modules/fdl: 
+  copyright: ''
+  hash: a7088c30386fb8c1874a6ec818d726c8c2cd24ebad39eebc536cecd327672f2d
+  license: ''
+  license_text: ''
+./modules/fdl-1.3: 
+  copyright: ''
+  hash: bca96e2238e75399e1fe51f3e68c173dcc273f0a7772aecd7cc8ef73fda177e9
+  license: ''
+  license_text: ''
+./modules/fdopendir: 
+  copyright: ''
+  hash: 1e7fe9081b79836f9246012e3c6ad46347e858c2b4b62a7d4d561a33cfd6ecab
+  license: ''
+  license_text: ''
+./modules/fdopendir-tests: 
+  copyright: ''
+  hash: 62f6d9c40e5c905c756f1c88fe8c5f6739e6d2dcf54187dc1d8a964b59c9e03e
+  license: ''
+  license_text: ''
+./modules/fflush: 
+  copyright: ''
+  hash: 18b553e8a7d80dc1c83af3e17063c3faa6659da9d68bcbd65ff3ef6c2e313157
+  license: ''
+  license_text: ''
+./modules/fflush-tests: 
+  copyright: ''
+  hash: a1fc5c4b6c0ea31bb2d2726467624a0e49e748915ddb5a21a3905b43f0239c61
+  license: ''
+  license_text: ''
+./modules/file-set: 
+  copyright: ''
+  hash: 22144a829c85ec1f08143cae120b80a511fb03a953984d493980c7229b3d3afa
+  license: ''
+  license_text: ''
+./modules/file-type: 
+  copyright: ''
+  hash: c0acff46b857b7c20ad0115b8f163c91df47d5ba58ef0627dd00f5834ca1370f
+  license: ''
+  license_text: ''
+./modules/fileblocks: 
+  copyright: ''
+  hash: c10175badd9b332c6ab2fa2f789ee97e0ce7c82f79e37c5cc8e4e0c0281b6adb
+  license: ''
+  license_text: ''
+./modules/filemode: 
+  copyright: ''
+  hash: 1ad12dc2124f345795043446f1d7811ed787098b06475b3454299df3f6be420c
+  license: ''
+  license_text: ''
+./modules/filename: 
+  copyright: ''
+  hash: 3cda4fccc1263c4a2b60b75ff698189bd8023001f333926273a7cc24c82b54d4
+  license: ''
+  license_text: ''
+./modules/filenamecat: 
+  copyright: ''
+  hash: 44f8cadb58fa064a93772154f55bf3235c390360a55ccebf6b617f6d1c8d0189
+  license: ''
+  license_text: ''
+./modules/filenamecat-tests: 
+  copyright: ''
+  hash: 1e225a717fa965a853618195261e6d1673eb90c7b0f2f70b5e088591ffca7e88
+  license: ''
+  license_text: ''
+./modules/filevercmp: 
+  copyright: ''
+  hash: eb487a16443b28ac6b62e8ce5d3036872b98c46df4d738edc257ef4d9c08c9c3
+  license: ''
+  license_text: ''
+./modules/filevercmp-tests: 
+  copyright: ''
+  hash: e36a1ad4dd4e4e79a4fa7938897f331f741fd14bc90aa08297352ee0e2cc35e7
+  license: ''
+  license_text: ''
+./modules/findprog: 
+  copyright: ''
+  hash: b702f8ffa7e72e71ba9678efff438feab7fe00600ca64d260b3ffc2ec75eb836
+  license: ''
+  license_text: ''
+./modules/findprog-lgpl: 
+  copyright: ''
+  hash: 113810dee709728ce873b19f1638222e0b4c90ce5f4bf1106c1c0e0177ba0e4c
+  license: ''
+  license_text: ''
+./modules/flexmember: 
+  copyright: ''
+  hash: 1aa8dca40ae523eb2fca526c391f55fffce453b8c30bf84b9513315121950de9
+  license: ''
+  license_text: ''
+./modules/float: 
+  copyright: ''
+  hash: e6b7c886d27a00d3f2745c4be39f08826d23a406e5b7f7f3537fd3ae7d0d56bb
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/flock: 
+  copyright: ''
+  hash: 0d27d17b43dba498300dc6dd8278483f4662fbc33c1c6020af519f5af93c91a8
+  license: ''
+  license_text: ''
+./modules/flock-tests: 
+  copyright: ''
+  hash: ed015f448128e47356dc5fdf742dffa723cab8d53b9d79df3ef5e18c531281a5
+  license: ''
+  license_text: ''
+./modules/floor: 
+  copyright: ''
+  hash: b853be43fd43415988aa18bfe4322cb154a7be2a5212336bc5fe265b30a5a13d
+  license: ''
+  license_text: ''
+./modules/floorf: 
+  copyright: ''
+  hash: 128117d8c1e90cec8daf8a295d485c44356eb71bba40ed6764977488106cfb7f
+  license: ''
+  license_text: ''
+./modules/floorf-tests: 
+  copyright: ''
+  hash: e03884697f7432a893aa1e5b9f21e11762b3bfe15c273d1c3149bb0d88b909d9
+  license: ''
+  license_text: ''
+./modules/floorl: 
+  copyright: ''
+  hash: 2cdd8c1038f91a6a39039062b48da7e76488d368c31babe3880b2b6b5c941a4b
+  license: ''
+  license_text: ''
+./modules/floorl-tests: 
+  copyright: ''
+  hash: 99da97c87837e8e226014794a72ed86d1d6b049e0c7d61dbc3693c59ff004b02
+  license: ''
+  license_text: ''
+./modules/fnmatch: 
+  copyright: ''
+  hash: 9c7345488ebc1f63b46c93d222ce1fea31fa784f44b65ec6b3d4535053819686
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/fnmatch-gnu: 
+  copyright: ''
+  hash: 33dab8afc481a19055a2fe68afcd2abf7590708cd49c3833df2a33a81148ded2
+  license: ''
+  license_text: ''
+./modules/fnmatch-posix: 
+  copyright: ''
+  hash: 26e0377cd98bacb9d54b697f79123a30703b0fc78255334634bece305375d553
+  license: ''
+  license_text: ''
+./modules/fnmatch-tests: 
+  copyright: ''
+  hash: f1f0e3226eac0b3a37dee4d71a07da2ff92626f8624f62c30bc87a8440b89d73
+  license: ''
+  license_text: ''
+./modules/fopen: 
+  copyright: ''
+  hash: 8a5299f9f06a0974dcb130118d13d75f799bc88dec305c555f8377830defb508
+  license: ''
+  license_text: ''
+./modules/fopen-safer: 
+  copyright: ''
+  hash: a0147049ddbdeb16bab12139adc0071776f224946d38809be844d58b49d431f1
+  license: ''
+  license_text: ''
+./modules/fopen-safer-tests: 
+  copyright: ''
+  hash: dc277a83bb5ce146a2e11cbc156dfddc32dbff52cd8b297021cb6a80d4f7a528
+  license: ''
+  license_text: ''
+./modules/fopen-tests: 
+  copyright: ''
+  hash: b8e701ab03d66d0e520bb0d086762d7630d8d96852f83e0adbd0d45e6e963490
+  license: ''
+  license_text: ''
+./modules/fpending: 
+  copyright: ''
+  hash: d684f5cdda9195a54b75c10a4f5d148a64746e307331952f462c41d774b8932f
+  license: ''
+  license_text: ''
+./modules/fpending-tests: 
+  copyright: ''
+  hash: 33e2c211f2e4465e2fdf2f98a4db01e20dd74b660a80efc5b0505c9a7a48cff7
+  license: ''
+  license_text: ''
+./modules/fpieee: 
+  copyright: ''
+  hash: 8cb60f5689b0ec473541a5fd46b6eae888b520b2987229f54bb2bda593354997
+  license: ''
+  license_text: ''
+./modules/fprintf-posix: 
+  copyright: ''
+  hash: 0e8edc74b33a75448836b170c653611468d75508e612e6cf1a89be36766a5b0e
+  license: ''
+  license_text: ''
+./modules/fprintf-posix-tests: 
+  copyright: ''
+  hash: b7d20d35ae365add01129799f0ea4624dd63088d7f05fff2874d450da7fcc2a1
+  license: ''
+  license_text: ''
+./modules/fprintftime: 
+  copyright: ''
+  hash: ec79647a5a3f351dea08e3b0eb34f75948e667aefc1523978872395013af5ea1
+  license: ''
+  license_text: ''
+./modules/fpucw: 
+  copyright: ''
+  hash: cb9c36cee25dc22097ff196bf9554e513aa15ad79933fb770df2ea72e1ad8aa6
+  license: ''
+  license_text: ''
+./modules/fpurge: 
+  copyright: ''
+  hash: d0aa7c5bb4a86839ad299aae669da70a029004cb1dba6c4c6d5312e76e0d397e
+  license: ''
+  license_text: ''
+./modules/fpurge-tests: 
+  copyright: ''
+  hash: 506b68bf366951df73dfac741876049410ced6279358421d1070e79502c3bc79
+  license: ''
+  license_text: ''
+./modules/freadable: 
+  copyright: ''
+  hash: e7f8b044bbb4a82a5038701cd79dc2e71e550c100b38109a1b6eeeacfa1048a6
+  license: ''
+  license_text: ''
+./modules/freadable-tests: 
+  copyright: ''
+  hash: bf8d9e390099bf7cc934d5f46eeb1571d7f5828a67cf5f19d05ef705030b6c04
+  license: ''
+  license_text: ''
+./modules/freadahead: 
+  copyright: ''
+  hash: 8aa80d4e554116460ad9a03f5048e76455a286b92bf84a74b0a463da37743258
+  license: ''
+  license_text: ''
+./modules/freadahead-tests: 
+  copyright: ''
+  hash: 6e6907b55b4bbac8ef6d5e361f9584b477f9e5ca9a78fc46f9f8c5020c7ad769
+  license: ''
+  license_text: ''
+./modules/freading: 
+  copyright: ''
+  hash: af1797dd1126b7de25554bfaade8b9757bbc8a89575e3ce7c2a9d3daec6aadab
+  license: ''
+  license_text: ''
+./modules/freading-tests: 
+  copyright: ''
+  hash: 2d0223fbf2144e3ca3be8cdd0e9fe40edf5f4a4018b6b8d8d6759298dfc6695c
+  license: ''
+  license_text: ''
+./modules/freadptr: 
+  copyright: ''
+  hash: a213f41b527e384ad81689daca5e48d04663773f4581806e66a95c05118310ad
+  license: ''
+  license_text: ''
+./modules/freadptr-tests: 
+  copyright: ''
+  hash: c00e4f93c709db743f7509de0edaa02490d4b7eb110a4f5e094c40dca746beae
+  license: ''
+  license_text: ''
+./modules/freadseek: 
+  copyright: ''
+  hash: a7f58f4f4289141733b00a4f19505133af4e243e8c637d95f0086a18f27a4f9c
+  license: ''
+  license_text: ''
+./modules/freadseek-tests: 
+  copyright: ''
+  hash: 0406ba96417e643999dd3b996caabee2f8d3d64c89b2b866528d8edd64de890a
+  license: ''
+  license_text: ''
+./modules/free: 
+  copyright: ''
+  hash: f0cb777264932ef6cf14eb34df90e286a8247d4261f810188ac2fa40c6b4b16f
+  license: ''
+  license_text: ''
+./modules/freopen: 
+  copyright: ''
+  hash: 5b7f5fe7bcca335731c30f8e3c0a17a0caafd988974830b061807dec1162c6e6
+  license: ''
+  license_text: ''
+./modules/freopen-tests: 
+  copyright: ''
+  hash: a070ef14de1186b601222d2463e37f9faf0d056e0a2ba119ddc77f515207d5d0
+  license: ''
+  license_text: ''
+./modules/frexp: 
+  copyright: ''
+  hash: 39e7a2719cf39a87639e8e8996e669c9973876aae2f069bddf10cac94052ef1b
+  license: ''
+  license_text: ''
+./modules/frexp-nolibm: 
+  copyright: ''
+  hash: ab341135186432cc1e01c1a8487fc4ae2aef417065508ebacdf61a7d81af056b
+  license: ''
+  license_text: ''
+./modules/frexp-nolibm-tests: 
+  copyright: ''
+  hash: 16b4652d228cccc301478697cb79b81816ad63d0682431d4434d9c14f4356d29
+  license: ''
+  license_text: ''
+./modules/frexp-tests: 
+  copyright: ''
+  hash: 23879974e1833ea7bcb89162930bae7d15499b746006459c0717ddd5a4e0c381
+  license: ''
+  license_text: ''
+./modules/frexpl: 
+  copyright: ''
+  hash: 2845a6ad936b8833acb450dbb27e3ba6f3fa445f2b139d5bf88cab9fb6364182
+  license: ''
+  license_text: ''
+./modules/frexpl-nolibm: 
+  copyright: ''
+  hash: eab06e92e844865aff4b464b52efaeb735647ff6404caa0db72e0f6693b1a445
+  license: ''
+  license_text: ''
+./modules/frexpl-nolibm-tests: 
+  copyright: ''
+  hash: 035cde6dd59316cb3c9c4a8d069695a15f3ee7e224a2aa88bf0b9e6f40da93f4
+  license: ''
+  license_text: ''
+./modules/frexpl-tests: 
+  copyright: ''
+  hash: 22cb526fadb54dc44cf9d9dd78e4ca78c74a281f009e188b193fa7579f0b80c5
+  license: ''
+  license_text: ''
+./modules/fseek: 
+  copyright: ''
+  hash: 14ff99707be2f34af43810eafa3050ea310e16c16d00c52022305887d69f7786
+  license: ''
+  license_text: ''
+./modules/fseek-tests: 
+  copyright: ''
+  hash: da1dcb42243b0bebc27602fdd4eb16053478ce4b981f2cec59f7a06041889463
+  license: ''
+  license_text: ''
+./modules/fseeko: 
+  copyright: ''
+  hash: 20374741366de2b1711be7e65cf38b3f4a86dc4ddf4df301b936466e8e105405
+  license: ''
+  license_text: ''
+./modules/fseeko-tests: 
+  copyright: ''
+  hash: 80a8724c7f91a71f9453737e6946ece0035315bd3cb84a96ab62034e4c0c1343
+  license: ''
+  license_text: ''
+./modules/fseterr: 
+  copyright: ''
+  hash: fcb748b08901da7a446b79a9f86254068595fcf8826dc7b25ddf390c1e27400a
+  license: ''
+  license_text: ''
+./modules/fseterr-tests: 
+  copyright: ''
+  hash: 20be8da4cb22195a9d6da9320c05f98480505033c51a680682ea6e45453e340e
+  license: ''
+  license_text: ''
+./modules/fstrcmp: 
+  copyright: ''
+  hash: 31dfc3181181df974915d1d808dd218d2a3452fd2ae9dd91dc3b0e9b7e3a7ea0
+  license: ''
+  license_text: ''
+./modules/fstrcmp-tests: 
+  copyright: ''
+  hash: 6ed80e811b2798e5cd6d103d56d5cc66a4c692c73844f918a788ebd85909c2ba
+  license: ''
+  license_text: ''
+./modules/fsusage: 
+  copyright: ''
+  hash: 7fc0e483c1faf66a76e31ec3bac916d7eca518112248f20b59d58c760fc4b800
+  license: ''
+  license_text: ''
+./modules/fsync: 
+  copyright: ''
+  hash: 5f659d0889a35bbdff277c57c588107d1b1f780c6732c6abfc9684ed46572d1f
+  license: ''
+  license_text: ''
+./modules/fsync-tests: 
+  copyright: ''
+  hash: acc6aff61b502aa7194c76c069c2facde874e13a1ee40162c6756d7b5df0bf4f
+  license: ''
+  license_text: ''
+./modules/ftell: 
+  copyright: ''
+  hash: 0d9601e0d8e45c10ed587bf2cd38cb0c22ec8549a553c3e99d72676a8749c2ca
+  license: ''
+  license_text: ''
+./modules/ftell-tests: 
+  copyright: ''
+  hash: 3dc1b538dda9b534d167566e9239f387556d318700c409b69983b2df8fc3c227
+  license: ''
+  license_text: ''
+./modules/ftello: 
+  copyright: ''
+  hash: 85527163d56b3f1d597e261ef126c4051a27a3a342c19867ae69d90237a265a9
+  license: ''
+  license_text: ''
+./modules/ftello-tests: 
+  copyright: ''
+  hash: 1723b1f88c0b8f28f6e5e26570038416957f4be46fa6a4ccae993148be1f9df4
+  license: ''
+  license_text: ''
+./modules/ftruncate: 
+  copyright: ''
+  hash: 237c6c353494466e82513071857c8ceb5abf40a4b27d1f02a4249449281d1e35
+  license: ''
+  license_text: ''
+./modules/fts: 
+  copyright: ''
+  hash: 2a63dea8cfcb015efabdc5e736c265cd483dc6e0a06c45b64d46827e10e3afab
+  license: ''
+  license_text: ''
+./modules/fts-lgpl: 
+  copyright: ''
+  hash: 34e34b30aab7817bb498257e1962cfb69cb8e63baf797fa5f7017d83ea13e3af
+  license: ''
+  license_text: ''
+./modules/full-read: 
+  copyright: ''
+  hash: b18377d607dd24412643717b76e432b961f1bfaa31d8223f65403d0b17e88814
+  license: ''
+  license_text: ''
+./modules/full-write: 
+  copyright: ''
+  hash: d50c81b2b7d6f5072d9de40b9d60eb7454373bc460bcf060a786314166c27232
+  license: ''
+  license_text: ''
+./modules/func: 
+  copyright: ''
+  hash: 0a3f4052d449c4e9d867d95028268301afc428468b59cbca04f73cd0c46d2f1d
+  license: ''
+  license_text: ''
+./modules/func-tests: 
+  copyright: ''
+  hash: 8ca882d9e5c98090ae6f96672e45a62c781a5ea948b5cd7e2eb6161dd87dfed5
+  license: ''
+  license_text: ''
+./modules/fwritable: 
+  copyright: ''
+  hash: 27290a646107b7a84bf4a85d8256d1db1979da7cb3ef077c0b48b00ba3ee225d
+  license: ''
+  license_text: ''
+./modules/fwritable-tests: 
+  copyright: ''
+  hash: 673a45339a269456b4be87f1b8531243d5ce213bac9f3c2ea956d55196798f46
+  license: ''
+  license_text: ''
+./modules/fwriteerror: 
+  copyright: ''
+  hash: 25101629c8009611da56db17042ee4c3909ee912fe12498caf16794d806a385d
+  license: ''
+  license_text: ''
+./modules/fwriting: 
+  copyright: ''
+  hash: fd67d8aa1a4205aafdf573a9b314de4f72c8c9653b3e4f20843e85d5ec622318
+  license: ''
+  license_text: ''
+./modules/fwriting-tests: 
+  copyright: ''
+  hash: 9dee96b81752a45569d40e3756686a51fa1472e87dbc79af43065d207560e91d
+  license: ''
+  license_text: ''
+./modules/gcd: 
+  copyright: ''
+  hash: 89e35483ea23b6fcf6b82e58b2936ee921990cb27991698a912642068c4f6b08
+  license: ''
+  license_text: ''
+./modules/gen-uni-tables: 
+  copyright: ''
+  hash: 1626529b9493ad2507b443eaaa2e11d9f508ddd32b2644797aba9a2bb3a05e2c
+  license: ''
+  license_text: ''
+./modules/gendocs: 
+  copyright: ''
+  hash: 1ae097c885123732a864e6b6aa4c0b718238b0731e9c4cb99d0b7b4f7fdef498
+  license: ''
+  license_text: ''
+./modules/getaddrinfo: 
+  copyright: ''
+  hash: 4ea21d54eba0b7715deb640497d496d33e0b3faac48f48e507a493c8f72584c1
+  license: ''
+  license_text: ''
+./modules/getaddrinfo-tests: 
+  copyright: ''
+  hash: fbf38dc10bea0805abb458e4fe5eb164f912019c8accd318b0602c748807407d
+  license: ''
+  license_text: ''
+./modules/getcwd: 
+  copyright: ''
+  hash: 0cbac895700dae9cb887332e2c1378da64d3f5e28c9e0e7ef14b2d5c518c9b5e
+  license: ''
+  license_text: ''
+./modules/getdate: 
+  copyright: ''
+  hash: 66496eacf4820dd61beaa3d1e2a4d57fff28f6d38e6b705441c557a4fc8cc60d
+  license: ''
+  license_text: ''
+./modules/getdate-tests: 
+  copyright: ''
+  hash: 15d8cd4ed70f84d94b22ff6639250a7be48496ca2906983c0fb435f8c4373950
+  license: ''
+  license_text: ''
+./modules/getdelim: 
+  copyright: ''
+  hash: 640a6ff49c32d137d90060c78b7edb504372b25f548950157312afe2bab20c86
+  license: ''
+  license_text: ''
+./modules/getdelim-tests: 
+  copyright: ''
+  hash: fb92fd69f5ee7168f5999ba87603a67bf6de4f26c4d6b507733116e2c0955bf5
+  license: ''
+  license_text: ''
+./modules/getdomainname: 
+  copyright: ''
+  hash: 15534654e90cc0a05055499b3f184ea83231869579aadee56cef754fc2e84fa3
+  license: ''
+  license_text: ''
+./modules/getdtablesize: 
+  copyright: ''
+  hash: 5bfe587757cde7ec659fe1749bbceb5b633b27c06436652915368bf63e961753
+  license: ''
+  license_text: ''
+./modules/getdtablesize-tests: 
+  copyright: ''
+  hash: d53ad6dc4471cd467019eafff1dbea838798d117d1d76e6255357e81b3225ad7
+  license: ''
+  license_text: ''
+./modules/getgroups: 
+  copyright: ''
+  hash: f3156029a2fc0d378e3b3cc318b1e2189a75270da7e8b4ee6ad35910f1ea485d
+  license: ''
+  license_text: ''
+./modules/gethostname: 
+  copyright: ''
+  hash: 543b0ac4337cbfc07bc611d4cb82d2e0f0b920b1c937b3ac3accec87add8e86e
+  license: ''
+  license_text: ''
+./modules/gethostname-tests: 
+  copyright: ''
+  hash: 87a54a8e6d2660412dd2dc302b1af8f0abe2ae277c0a743d30b0a06a6d0243c0
+  license: ''
+  license_text: ''
+./modules/gethrxtime: 
+  copyright: ''
+  hash: 18f21ea7bee7516934107c1bf3ff2f538b8061161336d749efbb9b9edc71dd11
+  license: ''
+  license_text: ''
+./modules/getline: 
+  copyright: ''
+  hash: 54bc2f289284dc9eb1c9b2084b22a34b488cc1a791918ac6c3e516d279aac1af
+  license: ''
+  license_text: ''
+./modules/getline-tests: 
+  copyright: ''
+  hash: 4fcb95fd42d4d58d8d88a2a3b1eeace1ec0a23bbc3f1d51fbd0498f265907c52
+  license: ''
+  license_text: ''
+./modules/getloadavg: 
+  copyright: ''
+  hash: 29a326552ce7dd21e831978b8f5a6a6a60e97d67f0fa53c13ba14e472042aab4
+  license: ''
+  license_text: ''
+./modules/getlogin_r: 
+  copyright: ''
+  hash: d6b9543a779b4b7395fdb42613d09962875c10531e9d595979ff6805094bfd66
+  license: ''
+  license_text: ''
+./modules/getndelim2: 
+  copyright: ''
+  hash: 20aebd94a8d4470c01777cf8011c75830bfffcd51bb6e252615a5fe1ed516868
+  license: ''
+  license_text: ''
+./modules/getndelim2-tests: 
+  copyright: ''
+  hash: 5c358342a8b0dd601faad3103e89f3112ae745746fe941fd6e811747b6004d84
+  license: ''
+  license_text: ''
+./modules/getnline: 
+  copyright: ''
+  hash: 1e2fa5f2d49e70cfb100516d860fa548e5d6d2fbd664ade40f721316e392669d
+  license: ''
+  license_text: ''
+./modules/getopt: 
+  copyright: ''
+  hash: 6aa942ee1376a669c17faafaa46854e797d37d5ce008c5cb2bbdb5353ae6c3dd
+  license: ''
+  license_text: ''
+./modules/getopt-gnu: 
+  copyright: ''
+  hash: c0a2faa69abd2d01ab9effcb216967e5c6a95e9c1ef3b63af3e33954a427ef3e
+  license: ''
+  license_text: ''
+./modules/getopt-posix: 
+  copyright: ''
+  hash: 94023aa61068c90a835f8d1f5f01d4f063115111e3361f0eee6802469a986327
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/getopt-posix-tests: 
+  copyright: ''
+  hash: 2e1c366e580bb818524a0e2aa2a4336889d8f55d5efac62b93e3b797707b3573
+  license: ''
+  license_text: ''
+./modules/getpagesize: 
+  copyright: ''
+  hash: 28bd4989723dbfb42bc856a0d722e6f84efd596d196c2394f7e4b552acdfd14a
+  license: ''
+  license_text: ''
+./modules/getpass: 
+  copyright: ''
+  hash: a137642ab40bae78516bc20e1bc8a9f4607bab8fb3b003eebe021c2185d4ae8a
+  license: ''
+  license_text: ''
+./modules/getpass-gnu: 
+  copyright: ''
+  hash: 898184539f39b4ae274508a133bfbdd661f07f29a14ae53170b0bca87d4e6a69
+  license: ''
+  license_text: ''
+./modules/getpeername: 
+  copyright: ''
+  hash: 4eb79ef9a5dc3f4e01fc808ea788ab8b9e5969dc08afd77028608efe835ee2c7
+  license: ''
+  license_text: ''
+./modules/getsockname: 
+  copyright: ''
+  hash: 0d541f72e064879de7bd164c2a7a507f9c77946177e0b9ca1231221d52eec6d2
+  license: ''
+  license_text: ''
+./modules/getsockopt: 
+  copyright: ''
+  hash: 729578766108e66027f2ab148d7a3e857afd416f25b3a55f6817e1144e1a20df
+  license: ''
+  license_text: ''
+./modules/getsubopt: 
+  copyright: ''
+  hash: 7707000a7061f9d84f6fca75bd6d1a14e3311454432deb0f7a23aa49e24ff7ba
+  license: ''
+  license_text: ''
+./modules/gettext: 
+  copyright: ''
+  hash: 47f3c83702b37039afb7e053cd3fb226a906c664ddcd54163d5f2d69008699cc
+  license: ''
+  license_text: ''
+./modules/gettext-h: 
+  copyright: ''
+  hash: 61b2609fc90e17305b778a6d0772d6c6c678de55b08a136f2142d24b254b2211
+  license: ''
+  license_text: ''
+./modules/gettime: 
+  copyright: ''
+  hash: 97029b8cd41ef19139e3fa0b0e2f06c85bff0e938fdab92bf14120708d06b5ce
+  license: ''
+  license_text: ''
+./modules/gettimeofday: 
+  copyright: ''
+  hash: c96253a3eef177db03721e4219d75b49cfe5fc500875eba69bb58f213768e6bb
+  license: ''
+  license_text: ''
+./modules/gettimeofday-tests: 
+  copyright: ''
+  hash: 01694f0fd480b5922065b6898273f8dc92362de5d40840e7b678b4aab0d1d88c
+  license: ''
+  license_text: ''
+./modules/getugroups: 
+  copyright: ''
+  hash: ee0e889db47e3653b6b31a320a136819f2640b1cec2ad38bda03493f16b627b9
+  license: ''
+  license_text: ''
+./modules/getusershell: 
+  copyright: ''
+  hash: adb692a9a12f6f1bd33111100461dbe9b8617f1de6af4088ea9f859dc308f5f2
+  license: ''
+  license_text: ''
+./modules/git-merge-changelog: 
+  copyright: ''
+  hash: 70dbf2d3cea053c673d583b8029bb6b4d0fe6b3440168b6dae108dff288653ef
+  license: ''
+  license_text: ''
+./modules/git-version-gen: 
+  copyright: ''
+  hash: 8a867c8b391fa4aa335accd6237237d28f3411883e941fafaab593ae9ba3ba95
+  license: ''
+  license_text: ''
+./modules/gitlog-to-changelog: 
+  copyright: ''
+  hash: 40314d9a4353af85f7350b770b6d22f67dd744d731dffc964452e912e34976c8
+  license: ''
+  license_text: ''
+./modules/glob: 
+  copyright: ''
+  hash: 2d56c6d7c2a3a83baeeeda9b07803cef301fc1446644ada3a5cd3bde2aae3389
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/glob-tests: 
+  copyright: ''
+  hash: 03cf87f1618dbf68f3f418df7389c364bb5f9a161903646c1105f37cdc0dd73e
+  license: ''
+  license_text: ''
+./modules/gnu-make: 
+  copyright: ''
+  hash: 3dff863165b8f67b1225f41b6069edf968f9ab592ccf7c5a976e5e2d263d93ff
+  license: ''
+  license_text: ''
+./modules/gnumakefile: 
+  copyright: ''
+  hash: 9a8587c6fbb528a86d0d5d078c44d837257a7ba2f6b112640afeb8b0174f1ebb
+  license: ''
+  license_text: ''
+./modules/gnupload: 
+  copyright: ''
+  hash: 8df2cce6ae5dba597214b339e17c77042936f83cc71b62ff0d031dc35b4881b7
+  license: ''
+  license_text: ''
+./modules/gperf: 
+  copyright: ''
+  hash: e57364714a0eb84488c7de1cff7c1f34f6e4445ab1d92bafb027cce5e01d23e4
+  license: ''
+  license_text: ''
+./modules/gpl-2.0: 
+  copyright: ''
+  hash: 45d9ecfdd9adc42b8d1d9e97285aa6a52581209afe1e8cd558ff4d40381b8c39
+  license: ''
+  license_text: ''
+./modules/gpl-3.0: 
+  copyright: ''
+  hash: 9c69fa69c8530a67e138f906d088373b632397f483ac602d98bc27784b2f1f82
+  license: ''
+  license_text: ''
+./modules/group-member: 
+  copyright: ''
+  hash: 287c1e70af2c1af183b00ed4c9278b1d6e44f2058e1546594e84d37fcfa90f0b
+  license: ''
+  license_text: ''
+./modules/hard-locale: 
+  copyright: ''
+  hash: 4af0609327db334b7943c3c1ca7f257f1a379b86457b675458b26bc5206c3821
+  license: ''
+  license_text: ''
+./modules/hash: 
+  copyright: ''
+  hash: 7c9cf59a3ecec8212435cdc2bf39e8a85262ffc03898f5c0df375bbc2b1284c1
+  license: ''
+  license_text: ''
+./modules/hash-pjw: 
+  copyright: ''
+  hash: b2fc8d2ab52921c2bb7d2fdeb7d7b110701dfc8928cc024b7b24d795f3821609
+  license: ''
+  license_text: ''
+./modules/hash-tests: 
+  copyright: ''
+  hash: 69cca68dc2b29ee3185bc8715e8098b6de1256a1e04cc0cf0ce467e4bf9df5df
+  license: ''
+  license_text: ''
+./modules/hash-triple: 
+  copyright: ''
+  hash: 8387198a97ad74f6d110473b7dc339d868521d4d381f04848d764f34fc1a3b76
+  license: ''
+  license_text: ''
+./modules/havelib: 
+  copyright: ''
+  hash: 6ed2bd7f292a1505559b6970cda7b5cdddfb2eaf9bcf4bdbf3584e31a3792a58
+  license: ''
+  license_text: ''
+./modules/host-os: 
+  copyright: ''
+  hash: 2ca8eee1360f44a0ca2e082deda103768cfd5de28df764734fa877e8831081fd
+  license: ''
+  license_text: ''
+./modules/hostent: 
+  copyright: ''
+  hash: 3605cf4dd9db40c930bb2be7254eb94f4d040781caad218ee4cef1db8d023735
+  license: ''
+  license_text: ''
+./modules/human: 
+  copyright: ''
+  hash: 12a714241c94ed4db935ade4136e5d6abaccc1cc7a76d5837593b92a0b481ac1
+  license: ''
+  license_text: ''
+./modules/i-ring: 
+  copyright: ''
+  hash: a2025a042f43e6369d98f1ef2285c0b3f96145160320eb850fb291194b41fa52
+  license: ''
+  license_text: ''
+./modules/i-ring-tests: 
+  copyright: ''
+  hash: aa8013e4bebb1450557c85fe8642779dbcb66a450baa27b4fc8cb05bea82378f
+  license: ''
+  license_text: ''
+./modules/iconv: 
+  copyright: ''
+  hash: 5743f28fcc9376b84484b295512adbade131b0e3f3744e010a4c5e4bb968904a
+  license: ''
+  license_text: ''
+./modules/iconv-tests: 
+  copyright: ''
+  hash: e3ee6183c8df1e98e44f8119d0bf86f7c670c9c6f69e63f6f6a8dccabe4397d8
+  license: ''
+  license_text: ''
+./modules/iconv_open: 
+  copyright: ''
+  hash: d282649433e90da2efd6101790373d8201a650b04610e73e92494812560dc327
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/iconv_open-utf: 
+  copyright: ''
+  hash: 3d590e3b012d3ffd95d6d0ba4d019a1d1688cc912ffc3320459f6d40a5eaea71
+  license: ''
+  license_text: ''
+./modules/iconv_open-utf-tests: 
+  copyright: ''
+  hash: fd21ad8275735d396a0886255e68ec5bc826a64765d295930d87c8f160fe981a
+  license: ''
+  license_text: ''
+./modules/idcache: 
+  copyright: ''
+  hash: bf6377780d75244cd590fd16245d7d0e0f2af3024a11a6672e463153aaae8774
+  license: ''
+  license_text: ''
+./modules/idpriv-drop: 
+  copyright: ''
+  hash: 4fbc061a7277c7ef121e7d555af411b28ee7a644d02aabadb9781c68258a8cbc
+  license: ''
+  license_text: ''
+./modules/idpriv-drop-tests: 
+  copyright: ''
+  hash: c1ca26e1f33641398eb6a67728afe9bfff3cd2e536d95ed53389915b437d9616
+  license: ''
+  license_text: ''
+./modules/idpriv-droptemp: 
+  copyright: ''
+  hash: 2b386ffd9656c15e6ca299823450f14228d48c50394eabae8178bb8145deff00
+  license: ''
+  license_text: ''
+./modules/idpriv-droptemp-tests: 
+  copyright: ''
+  hash: 856200b1bc5faaca7ddd22a8e9bc12473c9ef21064495d4c2f199a9708dc077b
+  license: ''
+  license_text: ''
+./modules/ignore-value: 
+  copyright: ''
+  hash: 01cb567b7c37a63b751b0db8e39d10e42d43586122c25c4cda1ad039c4c6d651
+  license: ''
+  license_text: ''
+./modules/imaxabs: 
+  copyright: ''
+  hash: 1ef4550ca6ac447f4c3bb0caadccb1be0e5b7c34c154e8af77426782ddccde1e
+  license: ''
+  license_text: ''
+./modules/imaxdiv: 
+  copyright: ''
+  hash: e3737ab82c6a7de4832911f1f20689d2cf1b8b7bc237ff6f4edad45cd3d6bc5b
+  license: ''
+  license_text: ''
+./modules/include_next: 
+  copyright: ''
+  hash: ef238434e1f1c4b19bd45c36eb834acd1326e8f11228964e90c4185f96edab3b
+  license: ''
+  license_text: ''
+./modules/inet_ntop: 
+  copyright: ''
+  hash: affaffc307885f4e72b74accff106662b2269fc3bba510bb1994fe96aba2ee0f
+  license: ''
+  license_text: ''
+./modules/inet_pton: 
+  copyright: ''
+  hash: fb889c5fd307ac4731674ae2fbe8491cbaad85cc2c02459c9da1a46b3affd318
+  license: ''
+  license_text: ''
+./modules/inline: 
+  copyright: ''
+  hash: e68f0e9aa0992be4b2742b86425384bb19370570a9334cbc5d20af92d0f69867
+  license: ''
+  license_text: ''
+./modules/intprops: 
+  copyright: ''
+  hash: 4dd52de1e4ccde9d76e17816fd1100fa39b248d621739e83d7269bc51e28b57b
+  license: ''
+  license_text: ''
+./modules/inttostr: 
+  copyright: ''
+  hash: 3111f9fbb7648553c15238818f0777b92a1773f53750df736f1020e2a26c08ba
+  license: ''
+  license_text: ''
+./modules/inttypes: 
+  copyright: ''
+  hash: c68d6d1a790a0e89bf3525b8e87eb5b7d024b7325bcff1b9e1a14e1b14eecf31
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/inttypes-tests: 
+  copyright: ''
+  hash: 5024693e8f276834d00e0c1e7ea1ef17f0d4395ff3b99ca3ae861a33b0259e37
+  license: ''
+  license_text: ''
+./modules/ioctl: 
+  copyright: ''
+  hash: 58f39f944519c79d384684a2023c24326f00214fc07e0ab0e4ecad190d5e0a74
+  license: ''
+  license_text: ''
+./modules/isapipe: 
+  copyright: ''
+  hash: 0b7ef6ed36cd605fb0242207f885781f79bc874d42ede4e7d43af296730a71bf
+  license: ''
+  license_text: ''
+./modules/isdir: 
+  copyright: ''
+  hash: 157e9ec992049c112ab1081cc76dabf014543daf852c04bb89d138ffbe1068db
+  license: ''
+  license_text: ''
+./modules/isfinite: 
+  copyright: ''
+  hash: cf51321eab12944c643969aba11bcc75e369c30307cfa076fec84a54a5bc8a27
+  license: ''
+  license_text: ''
+./modules/isfinite-tests: 
+  copyright: ''
+  hash: 428ffa7db1bb8ef1427e4c71efebfcc002ba8226f9bdeebe6e5983570aafd71c
+  license: ''
+  license_text: ''
+./modules/isinf: 
+  copyright: ''
+  hash: 1be481512f8b234cf8d794a766c3554821bcdb25566d074356c6db939c055e4c
+  license: ''
+  license_text: ''
+./modules/isinf-tests: 
+  copyright: ''
+  hash: 43c3d0eede218644738b9102bfa574968508dcf376d8cd878c80f7b0e7c102d2
+  license: ''
+  license_text: ''
+./modules/isnan: 
+  copyright: ''
+  hash: d96619abe51c34797cfcc4a00d89e66dd2f3723beeb57a02a5a7c0893938c46c
+  license: ''
+  license_text: ''
+./modules/isnan-tests: 
+  copyright: ''
+  hash: 323cc464c9a21025066cb117c8fcbd7bcd6247841219f9002be23284275cd344
+  license: ''
+  license_text: ''
+./modules/isnand: 
+  copyright: ''
+  hash: 890d77c9c2ea51fe7e2c36571771971507c53a94eccb394ac84bd0bb5c967493
+  license: ''
+  license_text: ''
+./modules/isnand-nolibm: 
+  copyright: ''
+  hash: 2f2cd905c0df813b2dad1ab5ec94cd0bf3ac620899161883844620e919dd23ad
+  license: ''
+  license_text: ''
+./modules/isnand-nolibm-tests: 
+  copyright: ''
+  hash: 9d7ab59e02aa291a0beb916911d9030dcf4095d8ee1e8871b8cba14ce028acbc
+  license: ''
+  license_text: ''
+./modules/isnand-tests: 
+  copyright: ''
+  hash: e2bbe6cbf7399d4890b3bb3906f0867d6bfd7f3eef57a8a195051eae59d69cfc
+  license: ''
+  license_text: ''
+./modules/isnanf: 
+  copyright: ''
+  hash: 85d8cebc9e5c0aa2bd4b68ce6612f8749215483a919a74de686fed1d3586df36
+  license: ''
+  license_text: ''
+./modules/isnanf-nolibm: 
+  copyright: ''
+  hash: f97947dc0edbd13b8d64a0b5b7a384fcbd2fc2258160d87f3b67589da6e401e9
+  license: ''
+  license_text: ''
+./modules/isnanf-nolibm-tests: 
+  copyright: ''
+  hash: 21a8932e3abc2149b5fffebf3051a0f125e57ebc47b10d4acbdca78994c93d4b
+  license: ''
+  license_text: ''
+./modules/isnanf-tests: 
+  copyright: ''
+  hash: ae8f63af140ced8d91af05afd8e9069faf676f5dbfdd979cc1fe0cf3abbd975a
+  license: ''
+  license_text: ''
+./modules/isnanl: 
+  copyright: ''
+  hash: 70b7c907aee78531a9a20fcd179bd294a57a33e4e9b58ca8da9faf56e330b973
+  license: ''
+  license_text: ''
+./modules/isnanl-nolibm: 
+  copyright: ''
+  hash: ff91e53b92af8ddf541f10e179d0c519f9a527a808361f95bdfd8d30de7b8e27
+  license: ''
+  license_text: ''
+./modules/isnanl-nolibm-tests: 
+  copyright: ''
+  hash: a711622ef8634e0ea0695340ae1eb040c290a40df106b0a777be962d6c1ac724
+  license: ''
+  license_text: ''
+./modules/isnanl-tests: 
+  copyright: ''
+  hash: 38bbc53b8d20ba40b2b33ba9f5b5c9655dc9cfb9d39a72c9e537462c742253fa
+  license: ''
+  license_text: ''
+./modules/javacomp: 
+  copyright: ''
+  hash: f5d2862a42c8dc73c5c6346d7028b13772b1e003a92b0ee53f3d346f3c5ee05d
+  license: ''
+  license_text: ''
+./modules/javacomp-script: 
+  copyright: ''
+  hash: 8f0c47a545c9b5fda1c11fc817ebb2606b6b4889188ceff9ea3ee56b7917c068
+  license: ''
+  license_text: ''
+./modules/javaexec: 
+  copyright: ''
+  hash: a045d08a3d42fe62932696f986ed8e27cf2f86a37a136f0e99ab17bdca35caf1
+  license: ''
+  license_text: ''
+./modules/javaexec-script: 
+  copyright: ''
+  hash: 91380c5aae5cf1ecbdecf6718ae605ce7fdf877bc69cc4ade365d15d87b58fbc
+  license: ''
+  license_text: ''
+./modules/javaversion: 
+  copyright: ''
+  hash: 001497a574e6daee08459695891485e8d2b842b95151bf7940609e0cd6406aef
+  license: ''
+  license_text: ''
+./modules/lchmod: 
+  copyright: ''
+  hash: c5ff9a1c59876082ed7a323077f4b0c70f0718e16c9df8a5e516b45a46232957
+  license: ''
+  license_text: ''
+./modules/lchown: 
+  copyright: ''
+  hash: 73d784fb6f58cd6916eaba7ad37343c2ab0374c1d5c97045996bb25d0ab4b112
+  license: ''
+  license_text: ''
+./modules/ldd: 
+  copyright: ''
+  hash: a95b7d506da9ac5c6c5381302daa766f328bc1e539649b66ef269f834d6144c0
+  license: ''
+  license_text: ''
+./modules/ldexpl: 
+  copyright: ''
+  hash: 1eecef8e14bf233071ac5095363e0eb8461cfa6a637ff22947dbf46c8bb2edb1
+  license: ''
+  license_text: ''
+./modules/ldexpl-tests: 
+  copyright: ''
+  hash: 375f2b202d4dd039a51fcc894830f31e1ad5e73a9c275c866b1b9a9b50c78d21
+  license: ''
+  license_text: ''
+./modules/lgpl-2.1: 
+  copyright: ''
+  hash: a9edb785a05a6b1ec373a751672098124e43569e0c1d21fe88c96dfee8dee24a
+  license: ''
+  license_text: ''
+./modules/lib-ignore: 
+  copyright: ''
+  hash: f0ef812765bcee8aaebbd26983e651cb58635ffe415701154c7717d07cdd1fff
+  license: ''
+  license_text: ''
+./modules/lib-msvc-compat: 
+  copyright: ''
+  hash: 78f5b89a071a2a7756ad84e124da6fb544db5927cd67a327546d426c3fe7da42
+  license: ''
+  license_text: ''
+./modules/lib-symbol-versions: 
+  copyright: ''
+  hash: 3bd963fe132714834fc7b6cd38e87a0c1307f5e55c2a8d793e9aa727bddf00c4
+  license: ''
+  license_text: ''
+./modules/lib-symbol-visibility: 
+  copyright: ''
+  hash: 09316bfaa21a902c0c723051b504b9cb539fdf667a4c58a97d5f24b0255988ca
+  license: ''
+  license_text: ''
+./modules/libsigsegv: 
+  copyright: ''
+  hash: 69198c8c2967b4b257bb2a7e1fb49dc825a90c620b2af5c556e1ba2eceb813a0
+  license: ''
+  license_text: ''
+./modules/libunistring: 
+  copyright: ''
+  hash: 6d47f24075b006c293890df3354724bb1a1b1e5236f271d928e663274e9a185d
+  license: ''
+  license_text: ''
+./modules/linebuffer: 
+  copyright: ''
+  hash: af6d4721c553c8a0dce296627dd9dee715308c58ec0e91d885048328638731b3
+  license: ''
+  license_text: ''
+./modules/link: 
+  copyright: ''
+  hash: d76ac610c3bb48884f7f7c21365f236d63d4a3f2bb95a5d61dfe26c49d6a5522
+  license: ''
+  license_text: ''
+./modules/link-follow: 
+  copyright: ''
+  hash: c2b95973ab0851d36d4937aa53eeb78f89cb1f52e3561608754d5760f2d943fb
+  license: ''
+  license_text: ''
+./modules/link-tests: 
+  copyright: ''
+  hash: 60b43b16315c847cb76698db0d6fedd157a90ecb34c6cd3040e8c7163071273b
+  license: ''
+  license_text: ''
+./modules/link-warning: 
+  copyright: ''
+  hash: 2d0b021e00c5fcfae3e0e7b87147045e3520cba21361bf6da6f8cebfb06619f2
+  license: ''
+  license_text: ''
+./modules/linked-list: 
+  copyright: ''
+  hash: e73533e72bcfefd003bf35ed67272bf03cec4eaa0eb607d05d4f545f45c42d3a
+  license: ''
+  license_text: ''
+./modules/linked-list-tests: 
+  copyright: ''
+  hash: e3f1ae2882d1cc5a5421d7675fb7d7bc459998a8cb506f17e49d3fdf6fa1ba1e
+  license: ''
+  license_text: ''
+./modules/linkedhash-list: 
+  copyright: ''
+  hash: d872289c85eb9f6b0928256d67b8aa85051f16f378aa3a05158fcff2f0e98128
+  license: ''
+  license_text: ''
+./modules/linkedhash-list-tests: 
+  copyright: ''
+  hash: 7517e9fce7957429ee92772cb67d2ad4f33a1a88f15069ffa311da6266bc80fa
+  license: ''
+  license_text: ''
+./modules/list: 
+  copyright: ''
+  hash: 8c081d10c9dafc22e2969bb8017117459848426a43b7920631c075cf2187fdb7
+  license: ''
+  license_text: ''
+./modules/listen: 
+  copyright: ''
+  hash: 87d7a460a8afb814291b434acb8c112cbc16135dd458fbe865e80210fd2fab9f
+  license: ''
+  license_text: ''
+./modules/localcharset: 
+  copyright: ''
+  hash: 9a7795a7bbc7dc93ee9b150a7e5e11bf1f1b65c6ffe35a782c5a4ef35da5d5b0
+  license: ''
+  license_text: ''
+./modules/locale: 
+  copyright: ''
+  hash: 62640c673f040c8d363336c9bb4943a751e0bb6b84307665771edd7148702d82
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/locale-tests: 
+  copyright: ''
+  hash: 8c15ac5661701bb94a2899da41deb74e7b266eaee1f143b8f2b3b00b3dbe10cd
+  license: ''
+  license_text: ''
+./modules/localename: 
+  copyright: ''
+  hash: 5d708db5de4ea776bc0e5fe18ce3af0f2a882f5d46a2da433aab650a21ea5166
+  license: ''
+  license_text: ''
+./modules/localename-tests: 
+  copyright: ''
+  hash: 90c131b8da15729f87254795a59b6a9cd58bba25c26337369e8ade8720c4681d
+  license: ''
+  license_text: ''
+./modules/lock: 
+  copyright: ''
+  hash: d32728a4a53a05cc2adb5dde77071e3ca8e031217e8f5f498ef6cd08a2df45d2
+  license: ''
+  license_text: ''
+./modules/lock-tests: 
+  copyright: ''
+  hash: c53261432275415bd92f0a7f34342121673e632e6c06232fdf77e83416df854b
+  license: ''
+  license_text: ''
+./modules/long-options: 
+  copyright: ''
+  hash: 658d3bb72c97742fea053bf81913c1670b2596b5edfaeda39e36a45365453617
+  license: ''
+  license_text: ''
+./modules/longlong: 
+  copyright: ''
+  hash: 85d50b391ae59405db94f0146e7da8d3626ee7db8665b3924ee41f024cd68b20
+  license: ''
+  license_text: ''
+./modules/lseek: 
+  copyright: ''
+  hash: b40cd1f1ad9d544c121fd5aed87bce564f227a9bc319129683186851cf381549
+  license: ''
+  license_text: ''
+./modules/lseek-tests: 
+  copyright: ''
+  hash: 76cdab40960f704471988f57f8823d4597fc1d641d6f13ad1dfddab6e0ab3060
+  license: ''
+  license_text: ''
+./modules/lstat: 
+  copyright: ''
+  hash: 204ca5f19461cd6e2d1b53f28f85f6f1a64e53a603cb9c38ee18603d6a4c522b
+  license: ''
+  license_text: ''
+./modules/lstat-tests: 
+  copyright: ''
+  hash: ce99db29f0af89b22f904eb44c8e0e9f398a40307993cabf8613800d2e7fa435
+  license: ''
+  license_text: ''
+./modules/maintainer-makefile: 
+  copyright: ''
+  hash: 60705adb407b7f67ba3ebfe3969da4cce7d40eb61c37e1662410706075c15ca7
+  license: ''
+  license_text: ''
+./modules/malloc: 
+  copyright: ''
+  hash: ade45be34202b5963d4753bc6e04c9ac17f54cbebfdae9ae552c85307937edc4
+  license: ''
+  license_text: ''
+./modules/malloc-posix: 
+  copyright: ''
+  hash: 0ebfd6b7bcb239f9d43efe86dbe2080ae9ea23b3a1d344f9133e6a47f37be644
+  license: ''
+  license_text: ''
+./modules/malloca: 
+  copyright: ''
+  hash: 95d9a7ade8a1341ea736d6554581001df279e83d97ac38aa9310b9e0540ab590
+  license: ''
+  license_text: ''
+./modules/malloca-tests: 
+  copyright: ''
+  hash: 7ee05e7d3ccd849878c85347bd1b790c5b3e486bafe6fddd5af01ede76de5618
+  license: ''
+  license_text: ''
+./modules/manywarnings: 
+  copyright: ''
+  hash: 304df00b2664848d0ceb677623e4a5bd0d53713f61b7fffda64701b7b7af69a8
+  license: ''
+  license_text: ''
+./modules/math: 
+  copyright: ''
+  hash: 8b1b40e4cc6780fb6f1f06dea275392ac8b7c12f6048cbc0a103a91742f42eff
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/math-tests: 
+  copyright: ''
+  hash: 2ac6678a1c6562309c662ba89b24eabbbfb6c95872259f43475875770df31822
+  license: ''
+  license_text: ''
+./modules/mathl: 
+  copyright: ''
+  hash: 55e37b79ace2edb7f8bff4005f788d346d2d19580dba0a676d5c1ba235a2f7a2
+  license: ''
+  license_text: ''
+./modules/mbchar: 
+  copyright: ''
+  hash: 8e44c7bc26640724217c9e83cacb0f53e18ba447a7a5b5715699675b80129b89
+  license: ''
+  license_text: ''
+./modules/mbfile: 
+  copyright: ''
+  hash: 589ec474965c06bdcf55767d77aff0c1f8929bd6dac28640abf6e3069950d270
+  license: ''
+  license_text: ''
+./modules/mbiter: 
+  copyright: ''
+  hash: 1bc042309e60126c4f355a2c66e24f82dddf5693e1801ccaf3af73d4e3af54fb
+  license: ''
+  license_text: ''
+./modules/mbmemcasecmp: 
+  copyright: ''
+  hash: 274d0d3204c470cc4af97e2d58bd63eba9152774fbc4e5583c95f36beaaa590e
+  license: ''
+  license_text: ''
+./modules/mbmemcasecmp-tests: 
+  copyright: ''
+  hash: e0955681a6f452ae84df04c93288f73e602601d5f17268d062a2790a580fd148
+  license: ''
+  license_text: ''
+./modules/mbmemcasecoll: 
+  copyright: ''
+  hash: 9c1c9eb9be6af270534bc8cfa727ae2c6d60851192fff322e4cc09e6a3589897
+  license: ''
+  license_text: ''
+./modules/mbmemcasecoll-tests: 
+  copyright: ''
+  hash: 99f2223fb2ddd23bed09476c7d3ff244787c97fb0b2f7e9272d4ac9d7d5fcb6c
+  license: ''
+  license_text: ''
+./modules/mbrlen: 
+  copyright: ''
+  hash: a4fab82598b347aa8dcfe636d8e69bb4ae3dec7c9d6156573e4bf18dd0704733
+  license: ''
+  license_text: ''
+./modules/mbrtowc: 
+  copyright: ''
+  hash: 9e506818e3eaa2fb67a7bb992ac88548f4c0fe2059f090dac942addb5ee67cbf
+  license: ''
+  license_text: ''
+./modules/mbrtowc-tests: 
+  copyright: ''
+  hash: 67740e495f650326d2e4197eaa74148cf73c74c8bcbe5d10a1a58c95fa0d1711
+  license: ''
+  license_text: ''
+./modules/mbscasecmp: 
+  copyright: ''
+  hash: 8a6d10dfad56dd17935f68ab1c85639e39fb3108171e80325ca5fdde464385bd
+  license: ''
+  license_text: ''
+./modules/mbscasecmp-tests: 
+  copyright: ''
+  hash: a8656b8257b5f07824dd94d4816aae9e1ac35774c23d356c070accfe077bd43f
+  license: ''
+  license_text: ''
+./modules/mbscasestr: 
+  copyright: ''
+  hash: 3c0467e82de3159f29fb87f840e6025b766c0b8a3b49a439a11c76d72f13c84e
+  license: ''
+  license_text: ''
+./modules/mbscasestr-tests: 
+  copyright: ''
+  hash: 9ab8f2fe62f4f0f100ab7833c40228d531354d181fa7dcc24f1b45f99854efbf
+  license: ''
+  license_text: ''
+./modules/mbschr: 
+  copyright: ''
+  hash: 91f2c8d1b40a5c710fdefd333ee7f4cb0740e66bd907d64531689e910a8a8a4f
+  license: ''
+  license_text: ''
+./modules/mbschr-tests: 
+  copyright: ''
+  hash: b76887bc9b1e8cf5ec85061ed66d3470216d1fccf2b9cc5c4c994c1b84dc5a0a
+  license: ''
+  license_text: ''
+./modules/mbscspn: 
+  copyright: ''
+  hash: e78fd011a2739814457f94fd0f0d2f7a23668261b0191c9df1ddd805dc92b8d7
+  license: ''
+  license_text: ''
+./modules/mbscspn-tests: 
+  copyright: ''
+  hash: f121b6d1a37feba93beb5133e217ac6b67d27f313b21c4119af192b69f8f07f9
+  license: ''
+  license_text: ''
+./modules/mbsinit: 
+  copyright: ''
+  hash: 08b00e28182c38b24e4a2889d3ecbec2186c517cb1e395b18713aeae478f6c44
+  license: ''
+  license_text: ''
+./modules/mbsinit-tests: 
+  copyright: ''
+  hash: e188f172ffdb358f622dce3247ddaf5bb6444765e8badabf275ca0e937b9bc73
+  license: ''
+  license_text: ''
+./modules/mbslen: 
+  copyright: ''
+  hash: ce07548e22ef15c3699e1d2dee8814adad7e686310d0c9cd971c1b81c36d0bb1
+  license: ''
+  license_text: ''
+./modules/mbsncasecmp: 
+  copyright: ''
+  hash: c959211b75e589812f47efa10d008c267a4348f6411809de868643cfcd695be0
+  license: ''
+  license_text: ''
+./modules/mbsncasecmp-tests: 
+  copyright: ''
+  hash: 4bc053604e77dae389a8419bb6c46d5f4cf647a24be4056db9e97977e242f5a5
+  license: ''
+  license_text: ''
+./modules/mbsnlen: 
+  copyright: ''
+  hash: 0faa03256e0848962c160de03ea06abadcf015959e0a65c519719cac4bf0c248
+  license: ''
+  license_text: ''
+./modules/mbsnrtowcs: 
+  copyright: ''
+  hash: 6757ad3daecd36e029b02f4980714e54cb1a1e1e9e729e287734008d50497f3b
+  license: ''
+  license_text: ''
+./modules/mbsnrtowcs-tests: 
+  copyright: ''
+  hash: 5f0b2a519e2883b9c0bc611792138db9c55ba5be0ca36511d32a57af47542f27
+  license: ''
+  license_text: ''
+./modules/mbspbrk: 
+  copyright: ''
+  hash: 1517c4cf7fbb86c8797ebf6b3e8b6bfe3d8d32b3e32797851b3e494de634299d
+  license: ''
+  license_text: ''
+./modules/mbspbrk-tests: 
+  copyright: ''
+  hash: ed3bb7da990ad29ce9448efc3a064056e4c94daf64bdfab8cb1c5ece97e01836
+  license: ''
+  license_text: ''
+./modules/mbspcasecmp: 
+  copyright: ''
+  hash: 119cda40d231594af07e07f9c6c3804942883e3338aa30774935e98f91bb0fea
+  license: ''
+  license_text: ''
+./modules/mbspcasecmp-tests: 
+  copyright: ''
+  hash: acf9e1a6a2b4cb0ecce88f716874128337fcfc3735d850a7ac6cf842e6ac2c23
+  license: ''
+  license_text: ''
+./modules/mbsrchr: 
+  copyright: ''
+  hash: 2aabb1c1474945811f42cbc76d095c8e20c4fe3d2f52828451f77f9c0cf7fdbe
+  license: ''
+  license_text: ''
+./modules/mbsrchr-tests: 
+  copyright: ''
+  hash: 3f40a8b53bb79fc02f4764430d29388fbeb4ec6252c5b7cb327ab5c8ba4955e5
+  license: ''
+  license_text: ''
+./modules/mbsrtowcs: 
+  copyright: ''
+  hash: 6fd1e1c2a88e142140deefbbb735df3221bc8881b6e4817551195824fd01ffab
+  license: ''
+  license_text: ''
+./modules/mbsrtowcs-tests: 
+  copyright: ''
+  hash: d761815c50f990e6fd3900790cbc3426dfb224be4ca415263da9e913d87efabb
+  license: ''
+  license_text: ''
+./modules/mbssep: 
+  copyright: ''
+  hash: 9d560680605f1f24bd8dfc8716baa14f6b3a361e289d3998108946da2a39b9c2
+  license: ''
+  license_text: ''
+./modules/mbsspn: 
+  copyright: ''
+  hash: 1c97df918bff72790a43cef22ccb566ad1dc39e40490b3762bfa430f5d6a725a
+  license: ''
+  license_text: ''
+./modules/mbsspn-tests: 
+  copyright: ''
+  hash: 07e30551048d52edeca8820fb2f7bd871e4d33ab731c9caaad69c4e51edb971d
+  license: ''
+  license_text: ''
+./modules/mbsstr: 
+  copyright: ''
+  hash: 5e9bda80152814723e1cafb55e44c941a17c80aaefe1d44f834a9c72fb31d476
+  license: ''
+  license_text: ''
+./modules/mbsstr-tests: 
+  copyright: ''
+  hash: cef5b046db14a89768608c0836e74444436a85e6570a59bbcf59df40c1edfa9d
+  license: ''
+  license_text: ''
+./modules/mbstok_r: 
+  copyright: ''
+  hash: 2924f5ef00aa7a13739cf251e4ec52c0fd64f3f6b831ad2e3624a4cf902bab15
+  license: ''
+  license_text: ''
+./modules/mbswidth: 
+  copyright: ''
+  hash: e1810f778143c1d5292d861bdc35a3263344f2d6001b19a88698e1001a47e1ae
+  license: ''
+  license_text: ''
+./modules/mbuiter: 
+  copyright: ''
+  hash: 6cbc5dfe3a3225936a7dfffcf10221a28eb197fe14ded3080358fa00fb0fcc4a
+  license: ''
+  license_text: ''
+./modules/memcasecmp: 
+  copyright: ''
+  hash: 7351221a78a96f127d5a963204471c2dbd55e1cb3f18425117b9476c5fadebbc
+  license: ''
+  license_text: ''
+./modules/memchr: 
+  copyright: ''
+  hash: be0b241ceb14b9c893f028a1c3a3536857082922284185c2a8c2d76bdece3599
+  license: ''
+  license_text: ''
+./modules/memchr-tests: 
+  copyright: ''
+  hash: 018011ff8976e68e44992541371dcc8d825566092ed792f3461ef5d024230984
+  license: ''
+  license_text: ''
+./modules/memchr2: 
+  copyright: ''
+  hash: e34d9b8d2f6bbd86621302dc032e119f50f4e7676cfa04cb884193e2ea2d6d97
+  license: ''
+  license_text: ''
+./modules/memchr2-tests: 
+  copyright: ''
+  hash: 8cf194f3c8e417c970395e74b4f1be2a93e3ff7022c134ab73a455108165e6b8
+  license: ''
+  license_text: ''
+./modules/memcmp: 
+  copyright: ''
+  hash: 8edce69a077d5fbd7c515a865d3c815c00dbf636b25b2706b488b4aec3132c6f
+  license: ''
+  license_text: ''
+./modules/memcmp-tests: 
+  copyright: ''
+  hash: cd6ccf825c316d6dd15cf9cbe1e2bbac89dfd84c4267d00a8b0fc51c8d19f6b0
+  license: ''
+  license_text: ''
+./modules/memcmp2: 
+  copyright: ''
+  hash: 57cd15ac55918ded320e6f1e17997f9d1f0ec3dd3632701f32625e4f45d55fdf
+  license: ''
+  license_text: ''
+./modules/memcoll: 
+  copyright: ''
+  hash: b760f4a0a26eccec9af47467f1fafbc29d7d119e691bb7294815d040e534143b
+  license: ''
+  license_text: ''
+./modules/memcpy: 
+  copyright: ''
+  hash: e634aa6a76451304de7834fb20c6dd010c8ed636113798434eb126c88f5ce852
+  license: ''
+  license_text: ''
+./modules/memmem: 
+  copyright: ''
+  hash: 427bc1498fd9e14d42481652b88271486549e6fb60bf1f7ede1241b495a4ee0f
+  license: ''
+  license_text: ''
+./modules/memmem-simple: 
+  copyright: ''
+  hash: d77eea05be7687dfe5838308bdfec478b435a7cb72f306db9412d4e847a5081e
+  license: ''
+  license_text: ''
+./modules/memmem-tests: 
+  copyright: ''
+  hash: 1e7b452e3954e3beee93b8fd351dc99a5f490aa069de563492090ea4bc1e785e
+  license: ''
+  license_text: ''
+./modules/memmove: 
+  copyright: ''
+  hash: 9c5814bf0694309555734b0aad6e4b2a7e5b9900bae9d5dbfb1b46c925758310
+  license: ''
+  license_text: ''
+./modules/mempcpy: 
+  copyright: ''
+  hash: 82db064f4ac23db927439f2a499e4ed75d72e012d5e5b7a6a4e058af6c5749ac
+  license: ''
+  license_text: ''
+./modules/memrchr: 
+  copyright: ''
+  hash: 7df32406efd1721383bc9ca66ded3361791406c65ed6927b9eb2d9c502fddd37
+  license: ''
+  license_text: ''
+./modules/memrchr-tests: 
+  copyright: ''
+  hash: 236237ff345444a2296eb7c58607760d6875b9b96878baa8ed26a535df13c8f0
+  license: ''
+  license_text: ''
+./modules/memset: 
+  copyright: ''
+  hash: 2189503e0e0600d6195e9f40c3774df4d497419f8c8e7cd84ae006e1c05401ee
+  license: ''
+  license_text: ''
+./modules/memxfrm: 
+  copyright: ''
+  hash: f93cbf3e8c4bbad0d81b946690390cd47b60b77f297645db5c10f8f4d852b2c5
+  license: ''
+  license_text: ''
+./modules/memxor: 
+  copyright: ''
+  hash: 009ba5161c5986176c2c0e8e2fcb898f0634a8e6c137ff14a2c0c655942114fa
+  license: ''
+  license_text: ''
+./modules/minmax: 
+  copyright: ''
+  hash: 4ca698af559c3b45c9ae6cbc74c2db7f9d8d44e57ca0a55858f67d7f6eb2cef1
+  license: ''
+  license_text: ''
+./modules/mkancesdirs: 
+  copyright: ''
+  hash: 47e3ec8f9d755955102d4687498df34015f27d6968e0e8ffa15ed33ab2029a5a
+  license: ''
+  license_text: ''
+./modules/mkdir: 
+  copyright: ''
+  hash: 2e5e1569c83a706b81884e1431f3d6a134f87e69b18d51e41dadb9cf696431f7
+  license: ''
+  license_text: ''
+./modules/mkdir-p: 
+  copyright: ''
+  hash: d04788d851d37a77687867ba935363f888d3c09e7b59200529af8f795804d776
+  license: ''
+  license_text: ''
+./modules/mkdtemp: 
+  copyright: ''
+  hash: db4c25a79eb27e6ad8267a8afb4d8c961f69970b94ae3243c3acea5f68393b68
+  license: ''
+  license_text: ''
+./modules/mkostemp: 
+  copyright: ''
+  hash: 6342108f26fee360da0587740ba7d41166bcb274abff9ce78078399e1346ac89
+  license: ''
+  license_text: ''
+./modules/mkstemp: 
+  copyright: ''
+  hash: ecff665cb5b763e16fc7ca70c57d703bcfb97515d88d6149bbcc7697c27c8936
+  license: ''
+  license_text: ''
+./modules/mktempd: 
+  copyright: ''
+  hash: 0da02b80f02ff1e0404f54d62c57905a5f8dce5c1d0cb06875d1b14723c81d78
+  license: ''
+  license_text: ''
+./modules/mktime: 
+  copyright: ''
+  hash: d1f60290e80d3479c415935b398c94f79dd00da53fe9974e8f60f05e00674fbf
+  license: ''
+  license_text: ''
+./modules/modechange: 
+  copyright: ''
+  hash: 8c6b5bf005ca142d0766ff8256c5e6b766a4c8535f263597678d5c7372fb1cfc
+  license: ''
+  license_text: ''
+./modules/mountlist: 
+  copyright: ''
+  hash: 19dcd86334c997ee055f46c3b68bdbc79f9e70bdee9d89ea6b194b42950dc578
+  license: ''
+  license_text: ''
+./modules/mpsort: 
+  copyright: ''
+  hash: 20e0dcc849fc123b6d093e8a99ee07c244738c4cdc28f29526fe1a84fc438c52
+  license: ''
+  license_text: ''
+./modules/multiarch: 
+  copyright: ''
+  hash: 9dd8713172dffad333cb2303f390af903d0da348b567cbebceec9b93ae3f4121
+  license: ''
+  license_text: ''
+./modules/nanosleep: 
+  copyright: ''
+  hash: c4b414bcb64d661735d355e77ebbebb13539c748a2294b5132a4f2df1b5268dc
+  license: ''
+  license_text: ''
+./modules/netdb: 
+  copyright: ''
+  hash: 2ff3c839a18d0ff254152f3085d64ef784f7feb97175203a37e605b2e7277457
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/netdb-tests: 
+  copyright: ''
+  hash: e3e50dec351f92d0cadf5701e6997e9a0d078130438d0368a668e1ff2c8b37c6
+  license: ''
+  license_text: ''
+./modules/netinet_in: 
+  copyright: ''
+  hash: 413654256fb2afe075d11026bfd1310eb7efc9d543fc5388f827553495418222
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/netinet_in-tests: 
+  copyright: ''
+  hash: 1cdce907601b367aaed4ed8bb1b12d0d24f97a566d105e2abfd6ce95058dc966
+  license: ''
+  license_text: ''
+./modules/no-c++: 
+  copyright: ''
+  hash: 437c53218d7b70ae9999443459ae088dd47921a99112f1ebc51f4ce2e1861940
+  license: ''
+  license_text: ''
+./modules/nocrash: 
+  copyright: ''
+  hash: 9f91308d373378b9c2d084dd9096c2d6711b243f0e925c8e2fd5be0e3357d693
+  license: ''
+  license_text: ''
+./modules/nproc: 
+  copyright: ''
+  hash: 1c32614a51741d289504bd7021a7fc7e8b99d678522a0146144f05c9ed10d797
+  license: ''
+  license_text: ''
+./modules/obstack: 
+  copyright: ''
+  hash: 90bf53e34be1ef3c73252e30b49196e2810161cb29d1141f98d9b3f7bed5f63a
+  license: ''
+  license_text: ''
+./modules/obstack-printf: 
+  copyright: ''
+  hash: 195c4736975345b67b3eef2b29a3c77ada18de418087a7afbb0ade585fc77859
+  license: ''
+  license_text: ''
+./modules/obstack-printf-posix: 
+  copyright: ''
+  hash: 3e6ebfb8b4ae341f632bd162e3d76235aa08f877aa5afff5c433980da140b754
+  license: ''
+  license_text: ''
+./modules/obstack-printf-posix-tests: 
+  copyright: ''
+  hash: 6089d7788117eaa0dbbf1a69a23d0955a423d70c1b0a9429eea3b0f6ea67cadf
+  license: ''
+  license_text: ''
+./modules/obstack-printf-tests: 
+  copyright: ''
+  hash: f819c86b540474e47c3e3361e8f0515068635bf7ee7fd0e56c1ee1aed42a3dc5
+  license: ''
+  license_text: ''
+./modules/open: 
+  copyright: ''
+  hash: b8fd8ec2302e6cb2a361dbd6d146d4131ebb0d5ec07cf6fb35442b8ce54c23fc
+  license: ''
+  license_text: ''
+./modules/open-tests: 
+  copyright: ''
+  hash: 6fe6f7d664d0da6fa0c6300196a9408454f4d4c5fc1c113ea2f45271cf66251e
+  license: ''
+  license_text: ''
+./modules/openat: 
+  copyright: ''
+  hash: 8440ece2aa3dee89bb195360fde5224a4356b0dcd9cde5091b5e613fca06b38b
+  license: ''
+  license_text: ''
+./modules/openat-die: 
+  copyright: ''
+  hash: 902a62455364b94563584a5d761e6e6771649f19c13497cf2e6d67f6eb90f618
+  license: ''
+  license_text: ''
+./modules/openat-safer: 
+  copyright: ''
+  hash: c15e370962a4ede59dbc1e2d87f16d7e4572d9b5f57c0340a8fed2e35cea31d4
+  license: ''
+  license_text: ''
+./modules/openat-safer-tests: 
+  copyright: ''
+  hash: 4ae2d6e450491648f6d3211d45c3c69ec4155ef44c2b63faa058df2bee458dd9
+  license: ''
+  license_text: ''
+./modules/openmp: 
+  copyright: ''
+  hash: 9954c49e009ade101840ce2525661e2b729f9d835fff0d1c86f347671f5b9c4a
+  license: ''
+  license_text: ''
+./modules/oset: 
+  copyright: ''
+  hash: 0a79c4c0544b5c8a2822a5fb70791f25658d48f15710d3a13bfb599cab6f38c0
+  license: ''
+  license_text: ''
+./modules/pagealign_alloc: 
+  copyright: ''
+  hash: 4169e992f088b88dc6ca11b1b7caebbf70a8eb483c8b91b5c2877b93987a5e97
+  license: ''
+  license_text: ''
+./modules/parse-duration: 
+  copyright: ''
+  hash: cbc19947eb52ef499d5f6bf93075b19688bce193a8b394475df553f3c3f65c1d
+  license: ''
+  license_text: ''
+./modules/parse-duration-tests: 
+  copyright: ''
+  hash: 5e2c1e730ba1cc104efa3adbff8508e013a6a1c04df0ed16505a88467560f607
+  license: ''
+  license_text: ''
+./modules/pathmax: 
+  copyright: ''
+  hash: 1a58efccf4821959196abdf9ea16bba1eb01de79fc084911956c9ef723927e7a
+  license: ''
+  license_text: ''
+./modules/perl: 
+  copyright: ''
+  hash: b97c41a82b65955ab0fd78d1384b1dc22809d04151ce5e63dec6819363b0ab95
+  license: ''
+  license_text: ''
+./modules/perror: 
+  copyright: ''
+  hash: dbf41263cfaffcf9dede468e7f0f05cff36d517885ab11e66cff259c1a2214f0
+  license: ''
+  license_text: ''
+./modules/perror-tests: 
+  copyright: ''
+  hash: d1eacf01ba2d890277c5a785d61de51c5aaf71f094fb2abe4a0f7eba55c38e49
+  license: ''
+  license_text: ''
+./modules/physmem: 
+  copyright: ''
+  hash: 2fa658c322934cc5949c5cf8ef6707df51d49bdabcb9d40fd400c6a32b877243
+  license: ''
+  license_text: ''
+./modules/pipe: 
+  copyright: ''
+  hash: cb2606e87b9da6e57157f3b97744d35a3bdf307fcdfac930af0d2cdebe180aa5
+  license: ''
+  license_text: ''
+./modules/pipe-filter-gi: 
+  copyright: ''
+  hash: 47a74e5bd2b5d527cc692eda6c871a60bebaed6d6821f1f9ec6c89d42ca2b9dd
+  license: ''
+  license_text: ''
+./modules/pipe-filter-gi-tests: 
+  copyright: ''
+  hash: 1837f3df67008436e1cc45b72eada1ff6f241f0025cf1c0c9213186b7fe77883
+  license: ''
+  license_text: ''
+./modules/pipe-filter-ii: 
+  copyright: ''
+  hash: 04a37636437c57c0388cda54e84d16b3457ecf9c0712af63f99afeeb284dc422
+  license: ''
+  license_text: ''
+./modules/pipe-filter-ii-tests: 
+  copyright: ''
+  hash: 704dd95ae9d20a0a30a9ec2ea8091bbf1e9458db01991abc818bb94a7a9c5aed
+  license: ''
+  license_text: ''
+./modules/pipe-tests: 
+  copyright: ''
+  hash: 89b627af4bf4e9e23de42bed31459d717ee360b49f061df4343ea8979e8c8884
+  license: ''
+  license_text: ''
+./modules/pipe2: 
+  copyright: ''
+  hash: 88cb0b5a60d37a7c9b1cfc3bb3cce31d46e500584eab276f71f005621fba5f10
+  license: ''
+  license_text: ''
+./modules/pipe2-tests: 
+  copyright: ''
+  hash: 03a9e82cba64506684f239ac1fee39055a2c0cf7a09e73bccd429fcccf5293f7
+  license: ''
+  license_text: ''
+./modules/pmccabe2html: 
+  copyright: ''
+  hash: a59db9ed8dfe8c7750d96519f0dac1ef6f9126a272a836cd20d652d654547c21
+  license: ''
+  license_text: ''
+./modules/poll: 
+  copyright: ''
+  hash: 055166d6fb80cade79ba4e9fdf79d952614fa65a2f1cbd9a77a4232da23aa356
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/poll-tests: 
+  copyright: ''
+  hash: b8cef910d624e72cb2e784721e7731a76680df4809a4fbab539f0970dce96940
+  license: ''
+  license_text: ''
+./modules/popen: 
+  copyright: ''
+  hash: 75f806b61d12990d7d68890be3d1abee2e31232b3ed129437a90c4d98304eded
+  license: ''
+  license_text: ''
+./modules/popen-safer: 
+  copyright: ''
+  hash: 24ee550c199b1e8fd6881ada64c40a0211431f2bd41a919ccc1aa8dd0a3ec1cc
+  license: ''
+  license_text: ''
+./modules/popen-safer-tests: 
+  copyright: ''
+  hash: 932217dbf84834faa73e5bcbed2a51aeab869351e1f9fa18a4795b11408a7278
+  license: ''
+  license_text: ''
+./modules/popen-tests: 
+  copyright: ''
+  hash: 600e94e06dd6b58f99378e1f3362d1adb534e54c19898e35831ee4afadc35588
+  license: ''
+  license_text: ''
+./modules/posix-shell: 
+  copyright: ''
+  hash: 7be6f0c5f8fb9ebba4c5e3e9b45576334ea98024516acca3236c7d88ab555bc6
+  license: ''
+  license_text: ''
+./modules/posix_spawn: 
+  copyright: ''
+  hash: 15413ab313c64ab836982fbc31a9126ec32f09efb7ddb71640829db43260f75f
+  license: ''
+  license_text: ''
+./modules/posix_spawn-internal: 
+  copyright: ''
+  hash: 13261c7474dec61641aea4cc23d5456192409fb4aace21d2245b5e4f57f591f6
+  license: ''
+  license_text: ''
+./modules/posix_spawn-tests: 
+  copyright: ''
+  hash: a4e53f0bd6036142a9ac5e12baece34a312a5eec0673852e5c4cedd7b4461946
+  license: ''
+  license_text: ''
+./modules/posix_spawn_file_actions_addclose: 
+  copyright: ''
+  hash: 1b0e7672a70119b34a7422f65cc477e582f9be9be42c2b5f58e8a12c500a021b
+  license: ''
+  license_text: ''
+./modules/posix_spawn_file_actions_adddup2: 
+  copyright: ''
+  hash: ec32ecbe40954fd4d6a2ab6529c3bb7909152086755d88b2ce843d6164ed081a
+  license: ''
+  license_text: ''
+./modules/posix_spawn_file_actions_addopen: 
+  copyright: ''
+  hash: cfdb709fc0b05ff18a591ef68dbc89d292cd11c33e5ed630d96c711c66e747eb
+  license: ''
+  license_text: ''
+./modules/posix_spawn_file_actions_destroy: 
+  copyright: ''
+  hash: fcfee84d342e3e549f08820131ee81c122d7be97875f585474739f1d98b57b4b
+  license: ''
+  license_text: ''
+./modules/posix_spawn_file_actions_init: 
+  copyright: ''
+  hash: 8667dd6d659eb6fd59856efe5a10491fb6ae2da3859526f7ff4a2fd7dd75a40f
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_destroy: 
+  copyright: ''
+  hash: e6cb2c966163f254aef8e6b688be377b2a094f999a468168fdcbbf5f2c0aaed4
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_getflags: 
+  copyright: ''
+  hash: cb0fee822d7f86efc02d25161ae058bf90a7eeb70e7d1c7cd823da0e549a2bdb
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_getpgroup: 
+  copyright: ''
+  hash: 4de9f855aaa933daa726e4e38cc52848bed7659acb8976e36c8bd12e29228eb9
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_getschedparam: 
+  copyright: ''
+  hash: dfb205d868a1f8cf9800b85014a3a95c2b47caf098291e8f849cdd8b1c44f8c2
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_getschedpolicy: 
+  copyright: ''
+  hash: 5ea4e1bd5a50a054a174f9577084b4bad055067cc585cd5b718e51d9aa920483
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_getsigdefault: 
+  copyright: ''
+  hash: aebbb28e01907491d87b570e9720044a81c8e76bb06cb040aedd82ef3f32c925
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_getsigmask: 
+  copyright: ''
+  hash: 4e3402f4755f82bf6a4f52f26c99fc27619900baaa9bd83e36b3ea8182919711
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_init: 
+  copyright: ''
+  hash: d3eb3298cac167c24597cc856a1fc756c5b199bcb603b32fcc3398a9e412eb32
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_setflags: 
+  copyright: ''
+  hash: d700bcc7b63ea1e363c3a428aef4c53f41a2a2b2bc8a2cf82d424da0e66523c6
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_setpgroup: 
+  copyright: ''
+  hash: 5f8e7d01caa6f22b70ddd5c1dc2f948b9fd9471493d518a922f5b5bf788515b2
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_setschedparam: 
+  copyright: ''
+  hash: bc3e182453727a5de3f2341ca87ed8c4deb370f1f85114d80fb649530fe7d66e
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_setschedpolicy: 
+  copyright: ''
+  hash: 41b0af0b650ccf6e2bf11e8306c5497d3732aa043cd9fc2988b2ad786d777d83
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_setsigdefault: 
+  copyright: ''
+  hash: d17b0b584181de19099e9009b0f5dd697a715cc2d36c9f200c68808d0a6f7c8f
+  license: ''
+  license_text: ''
+./modules/posix_spawnattr_setsigmask: 
+  copyright: ''
+  hash: 8d6a238fb9ccf1d39e3d20a23c01ca0f651dbeaa90a49445c622ef6340a13211
+  license: ''
+  license_text: ''
+./modules/posix_spawnp: 
+  copyright: ''
+  hash: d5c5ed7f61ad411f906180a9928559ec005317deb824e2f40825b41f68021e67
+  license: ''
+  license_text: ''
+./modules/posix_spawnp-tests: 
+  copyright: ''
+  hash: 6039483c42b32008b11c8acec64c53a42491b0da863357c5eb910e617222fb7f
+  license: ''
+  license_text: ''
+./modules/posixtm: 
+  copyright: ''
+  hash: d33a7f51b60442e5707d6adc4ca78638e790cb693fa9c40d93feabc6ddc8f3bd
+  license: ''
+  license_text: ''
+./modules/posixver: 
+  copyright: ''
+  hash: 31c2be10d2b472a4dd73133e03c64c0c7d2bd38fd65a1af1feac903d792a3aa6
+  license: ''
+  license_text: ''
+./modules/printf-frexp: 
+  copyright: ''
+  hash: 2ba31ff5404d9a7a3126902242c6c35e4fe0ba56d1a745fa4e743c9c838e9f99
+  license: ''
+  license_text: ''
+./modules/printf-frexp-tests: 
+  copyright: ''
+  hash: 58b888752922b63323c41b34a3b18aa51f7c29b128f8dcadccc3df546dee1c64
+  license: ''
+  license_text: ''
+./modules/printf-frexpl: 
+  copyright: ''
+  hash: c73966598463099719ed26c513d582b0b27df6b8f7278ea98299dd0e42395350
+  license: ''
+  license_text: ''
+./modules/printf-frexpl-tests: 
+  copyright: ''
+  hash: e86d522cbebb135833e09a05e06f97d08d69fa9ecf7e9fa98cf90e6e1f9fc11a
+  license: ''
+  license_text: ''
+./modules/printf-posix: 
+  copyright: ''
+  hash: 894f8d4bd2974c5bda5bb08a7aed4420264e988980f3188b290f55b1247f68b0
+  license: ''
+  license_text: ''
+./modules/printf-posix-tests: 
+  copyright: ''
+  hash: b59c246d738fc5d9052590c8a8d00d40265f42144b607f7d29706e97e8c86fd3
+  license: ''
+  license_text: ''
+./modules/printf-safe: 
+  copyright: ''
+  hash: 5731a2281f5746d885561e1600ed39665f06f4742bf6bbfa4be584e71d9820e7
+  license: ''
+  license_text: ''
+./modules/priv-set: 
+  copyright: ''
+  hash: c95f4f2a9676e83a6fa7fc9464f10e8cd464661eb209f98239f7acfbc809f4a4
+  license: ''
+  license_text: ''
+./modules/priv-set-tests: 
+  copyright: ''
+  hash: 031636b74d5a26b6e43a3571a14f395f3564a43886333f4e468cc5fc37e1453a
+  license: ''
+  license_text: ''
+./modules/progname: 
+  copyright: ''
+  hash: a8929c40c874a87e1611500b2e26b077ebf85e82c8b2e8a68481aed79bf97260
+  license: ''
+  license_text: ''
+./modules/propername: 
+  copyright: ''
+  hash: decd28e88c1f60310668b74c5098487889972005c50c4b80b0f1d08e1202c110
+  license: ''
+  license_text: ''
+./modules/pthread: 
+  copyright: ''
+  hash: 179a35ad71a67378f76f3ef19829397b02c9b018b00557d4d5b4fee8434a0846
+  license: ''
+  license_text: ''
+./modules/putenv: 
+  copyright: ''
+  hash: 541c7b804c9a4701e7bfd83332859956acece70efbefa359dad2647250516ce8
+  license: ''
+  license_text: ''
+./modules/quote: 
+  copyright: ''
+  hash: ca3295c10160f924a83b2fe2105e7437cfcde7bb79d5d3a00145d43e503b3019
+  license: ''
+  license_text: ''
+./modules/quotearg: 
+  copyright: ''
+  hash: 8b5a9af7872f2e8372dc495970aecc76737417a2d5329d9a887771ffa89b1b18
+  license: ''
+  license_text: ''
+./modules/quotearg-tests: 
+  copyright: ''
+  hash: bf025f38f2cc4cd441d67679a34cb1cd037b2aed2b5ccd9752ed155dc1fe3bc9
+  license: ''
+  license_text: ''
+./modules/raise: 
+  copyright: ''
+  hash: 72d98fab0295eff8b6c69cc8f4c79b245a2b90f1c986c488f731c8c17e0be2c4
+  license: ''
+  license_text: ''
+./modules/random_r: 
+  copyright: ''
+  hash: 793abb0b71b26e916ba70493453d3a8ac0336c57e96ba22abe30a2c27d74232a
+  license: ''
+  license_text: ''
+./modules/random_r-tests: 
+  copyright: ''
+  hash: b10597e158195a2e9f6be80fbd5c8323d0ab225fad79842bc4c0b68efe9180c6
+  license: ''
+  license_text: ''
+./modules/rawmemchr: 
+  copyright: ''
+  hash: bea7805fd638d721ff6a8c1db17a1b510af5bdd54a19b78ce254b8c536cc47f7
+  license: ''
+  license_text: ''
+./modules/rawmemchr-tests: 
+  copyright: ''
+  hash: 1ea4b8c90ab9a92f1a865b9f0dd233b989c105cbc709c2c53c7612d0f726258d
+  license: ''
+  license_text: ''
+./modules/rbtree-list: 
+  copyright: ''
+  hash: 9c61f39fda13fc14ead05dc276b46c1e46119cacd727023c3aad3952fed1741e
+  license: ''
+  license_text: ''
+./modules/rbtree-list-tests: 
+  copyright: ''
+  hash: 600691ef07f56874f4a0638393d4b7e002fbd620d484a190042d2f8691ec0d16
+  license: ''
+  license_text: ''
+./modules/rbtree-oset: 
+  copyright: ''
+  hash: a9130036ba8e0984da5b35beedcac0c875a77362fd84798e9c9ba9ca9d158bd9
+  license: ''
+  license_text: ''
+./modules/rbtree-oset-tests: 
+  copyright: ''
+  hash: f0f3f94fab6019457c9b5744f749637d2947731f1f9c7000aa1d3818875ce22b
+  license: ''
+  license_text: ''
+./modules/rbtreehash-list: 
+  copyright: ''
+  hash: 8c0a671295174f7e5677584f8c996f9a29a1b1099bc7c9a56595e4759e856b1e
+  license: ''
+  license_text: ''
+./modules/rbtreehash-list-tests: 
+  copyright: ''
+  hash: f723af6f1cf424910314b765ffc07e2d771b3a829d826620d89e55cac4334021
+  license: ''
+  license_text: ''
+./modules/read-file: 
+  copyright: ''
+  hash: 7d166c5e40145c9e8ac9da4639d48f99e37f1d84218733eb0bb61e1a186834cb
+  license: ''
+  license_text: ''
+./modules/read-file-tests: 
+  copyright: ''
+  hash: c8c0f329de744e207a9cbf57f7623e85707e165415ba7e91ce37caa4b8a4210c
+  license: ''
+  license_text: ''
+./modules/readline: 
+  copyright: ''
+  hash: b251d53a560cfec4d415550e53ccd68b951b3e664a56c4b5d9b58cc29b5a936b
+  license: ''
+  license_text: ''
+./modules/readlink: 
+  copyright: ''
+  hash: 9655c25e079dfabc9788e2aa19ffe3379daaba29066de2a409e25b97f4766e41
+  license: ''
+  license_text: ''
+./modules/readtokens: 
+  copyright: ''
+  hash: 4aad7cd947a0c930667f7b65f368b042e39252d5d600efb9bac9ab94ea814cca
+  license: ''
+  license_text: ''
+./modules/readtokens0: 
+  copyright: ''
+  hash: f9954e72d3b5c2744af172c346a129d4ea7c0e6f38d967218bf79d5f7772c8d0
+  license: ''
+  license_text: ''
+./modules/readutmp: 
+  copyright: ''
+  hash: 5881d6cb6b46f849760cfb6b139fa197c5c35d009d4bb95c85411eae145f1f99
+  license: ''
+  license_text: ''
+./modules/realloc: 
+  copyright: ''
+  hash: b0fedb4e5d5429d80c6a3eabd39ca9050a4870545e6c746b6350d1901305b577
+  license: ''
+  license_text: ''
+./modules/realloc-posix: 
+  copyright: ''
+  hash: a17165c4894738d8d6b7b24846b24d6d673b08760f45c99baa34dd5a4079355f
+  license: ''
+  license_text: ''
+./modules/recv: 
+  copyright: ''
+  hash: 9b256bdcb2769723d9c6c028e6f61b5213d9b61a3344442126a358b5563a4c5c
+  license: ''
+  license_text: ''
+./modules/recvfrom: 
+  copyright: ''
+  hash: d06a25ef81c55e6b5dc324e44789ccd3ebffc2e0c5f3218feeaf3e3326cedfe0
+  license: ''
+  license_text: ''
+./modules/regex: 
+  copyright: ''
+  hash: 98dd155090f459101e94e7f24c5de1a99fe8b80a15f03dbceaca2f3de2a091bd
+  license: ''
+  license_text: ''
+./modules/regexprops-generic: 
+  copyright: ''
+  hash: 6b63dc284f9f308de27d3d0f5bb4f0a9f5a3e9f157692ff820f316b0926af20b
+  license: ''
+  license_text: ''
+./modules/relocatable-lib: 
+  copyright: ''
+  hash: 3d56c9aac64a0dfd2256d4572b923208b3917c4a5e8da9d3b3e0175a0b718a85
+  license: ''
+  license_text: ''
+./modules/relocatable-lib-lgpl: 
+  copyright: ''
+  hash: 3c6da87eb0fbd38e7f7ef65fab874bcef37b1163db71cc048a36ed18bd64a57a
+  license: ''
+  license_text: ''
+./modules/relocatable-prog: 
+  copyright: ''
+  hash: 98f1773e2b8c5432cf469174ef2bce2ab0fa773edbde8c786c1d0816a6916b14
+  license: ''
+  license_text: ''
+./modules/relocatable-prog-wrapper: 
+  copyright: ''
+  hash: e7863ec8c052c6a5456ba74faa1fa04d3804a50b69115a8e7711c4684ed18f4c
+  license: ''
+  license_text: ''
+./modules/relocatable-script: 
+  copyright: ''
+  hash: b52ad6c225203188aa43f5f35bf12426fa49374aa0a41fcb206179f443fdcc0f
+  license: ''
+  license_text: ''
+./modules/rename: 
+  copyright: ''
+  hash: 90b96cd7902bc911745c9c03a0189af5e2e4ce2bb26012b9dcb983b20b104b51
+  license: ''
+  license_text: ''
+./modules/rename-dest-slash: 
+  copyright: ''
+  hash: d4a9c644f7d7d9e1e63fe4d33711c9f738ad8a5a82695ff21fc014be8096d9d9
+  license: ''
+  license_text: ''
+./modules/rmdir: 
+  copyright: ''
+  hash: 80a7e8d54e1e35461557c783c7eed95170a48f036cfc501c707196461ba13cf3
+  license: ''
+  license_text: ''
+./modules/rmdir-errno: 
+  copyright: ''
+  hash: f1c2f35b12afe45d2291b83db06a26c03d1c82e33626b86e844701f1bad9459b
+  license: ''
+  license_text: ''
+./modules/round: 
+  copyright: ''
+  hash: e5719df369376caf700176102b5ff22715d3fd8c29badc72fdf97b0e2e718feb
+  license: ''
+  license_text: ''
+./modules/round-tests: 
+  copyright: ''
+  hash: f168540c9576ab38cc175925470922caffa4edf6610869ce256963363de628a4
+  license: ''
+  license_text: ''
+./modules/roundf: 
+  copyright: ''
+  hash: 93cf25dfabca8143cb883aad12c3709ef46d22b28cda679c7bf1aad9c83526d6
+  license: ''
+  license_text: ''
+./modules/roundf-tests: 
+  copyright: ''
+  hash: fde1d88ffe29900b4440de49d7979b436c1db18e8ea811289be9b0c8433c8e44
+  license: ''
+  license_text: ''
+./modules/roundl: 
+  copyright: ''
+  hash: 24d3cd0f8ab1e87b6d92408734644446758892cf4a25811098c919964198ba03
+  license: ''
+  license_text: ''
+./modules/roundl-tests: 
+  copyright: ''
+  hash: c334c07780c8ca0159e40af0a5dfa7b1b7d2ceb4c292c926b8acdce6976f6c88
+  license: ''
+  license_text: ''
+./modules/rpmatch: 
+  copyright: ''
+  hash: 1bd2b41d1e257cec6eef66e0309595ab05afcd0f1728abe139f1cd748a3341ed
+  license: ''
+  license_text: ''
+./modules/safe-alloc: 
+  copyright: ''
+  hash: 318c12ee32041a475fad60202c38ea078fa0efe8b5c9d24ba4decbb53e261feb
+  license: ''
+  license_text: ''
+./modules/safe-alloc-tests: 
+  copyright: ''
+  hash: e05b97f7a31cd2abfdf49a65b008d05f56a00a63740a2f46870f3a55ddec999a
+  license: ''
+  license_text: ''
+./modules/safe-read: 
+  copyright: ''
+  hash: 99f228a7f13e102230dc2eb494bc2aa84267f1661356ac9d2cd209a769dc4bb7
+  license: ''
+  license_text: ''
+./modules/safe-write: 
+  copyright: ''
+  hash: c988dd03abe10acd1b1951941c879ccd915f3a92ff6181f0fbbf6960ebb07d5a
+  license: ''
+  license_text: ''
+./modules/same: 
+  copyright: ''
+  hash: cb4b09cd25200998cd90937bb369e7903ccaa031359400db38fb62802b7cb606
+  license: ''
+  license_text: ''
+./modules/same-inode: 
+  copyright: ''
+  hash: 2fa81e39adc63c3ba3a626aa5e3b338be49c78b677a3be7b2cc68a6cea944513
+  license: ''
+  license_text: ''
+./modules/save-cwd: 
+  copyright: ''
+  hash: 6590304e452e0b6244441d68042a2184be8eb984f2ef74284ca9cf73d614f0a2
+  license: ''
+  license_text: ''
+./modules/savedir: 
+  copyright: ''
+  hash: 7bbd630151c841a1d9acc0e722ca5a6d9542cbd0ca2a9bab9cc9696149bc1768
+  license: ''
+  license_text: ''
+./modules/savewd: 
+  copyright: ''
+  hash: 8c94f5b217bdf73b11515678a65cf4e6b78be0e7e42d6f1a994f3041e0776a1f
+  license: ''
+  license_text: ''
+./modules/scandir: 
+  copyright: ''
+  hash: 831a360ea8af225658a66be193906c1c44d4e696b46ec942bfb7a63102e4f696
+  license: ''
+  license_text: ''
+./modules/sched: 
+  copyright: ''
+  hash: 106454311edb936efad2a93485f8e78285330f7786f1f62b91143fc55750bfc4
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sched-tests: 
+  copyright: ''
+  hash: 1f9b5d0743aaad4b09f3bb1f009cca552644499472bd163d641a4aab83b8d266
+  license: ''
+  license_text: ''
+./modules/search: 
+  copyright: ''
+  hash: d6d2cf1763349c0c1826423c8c125a05064e9d81cc313437f5ec0003a3c519fd
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/search-tests: 
+  copyright: ''
+  hash: cb191f24a9131ca5d8374b717e55dd026819b947dc621b9b13d61262af90ca57
+  license: ''
+  license_text: ''
+./modules/select: 
+  copyright: ''
+  hash: a7f90fe90645643cea58f80e1d7747324502379942e418fcc85ff47062533f4e
+  license: ''
+  license_text: ''
+./modules/select-tests: 
+  copyright: ''
+  hash: c49f6a270f00aefa2a1100ba8edfecf90866aff8e0399b61e4b440cb873e1595
+  license: ''
+  license_text: ''
+./modules/selinux-at: 
+  copyright: ''
+  hash: ae159b34d6796d7c1b901dc16d6e62ee9066587f7dc6e3c129c35af8ffeefadd
+  license: ''
+  license_text: ''
+./modules/selinux-h: 
+  copyright: ''
+  hash: 3de65edffe430c292a3e38990482507509459e492419a2aa2773df98b4aef7c9
+  license: ''
+  license_text: ''
+./modules/send: 
+  copyright: ''
+  hash: 36d12d4c74ef19a1d4903bec29db1623eb6f80b27a8bf9922e44d3e74ad8eaaf
+  license: ''
+  license_text: ''
+./modules/sendto: 
+  copyright: ''
+  hash: 788b48a5a00e4d44ce3074714e4d76faa89c764b67936791ac48afaf1226defa
+  license: ''
+  license_text: ''
+./modules/servent: 
+  copyright: ''
+  hash: ec2b7af8c419ee5993c0b3fd23041480a1b2d0d6cbf83a550652f16648ba7c6a
+  license: ''
+  license_text: ''
+./modules/setenv: 
+  copyright: ''
+  hash: f8e8cd307689a860b23f8c819cf47abea6f7915c6fc44f8991845b7204653338
+  license: ''
+  license_text: ''
+./modules/setsockopt: 
+  copyright: ''
+  hash: c0a50733ce565910129070e1ef521b4818d26f5716ab4dee740cd460083d313a
+  license: ''
+  license_text: ''
+./modules/settime: 
+  copyright: ''
+  hash: c1fbb7f3d5dec1edfdf45b8807007f2d85f7d678470d33540ed42e199d11f7e4
+  license: ''
+  license_text: ''
+./modules/sh-quote: 
+  copyright: ''
+  hash: d0a882e643a2ac71cd8e03db323054d3914ba334e9594e6e97d6c8f3da4e7bff
+  license: ''
+  license_text: ''
+./modules/shutdown: 
+  copyright: ''
+  hash: 40f14ce993204072081e535fb8b243b06e01dabf1595f425cc41b65451caa5a5
+  license: ''
+  license_text: ''
+./modules/sig2str: 
+  copyright: ''
+  hash: 965f4df3c6a5e92a819e82c10aaccaf47665d53376a9c93f4ed011dd69c979db
+  license: ''
+  license_text: ''
+./modules/sigaction: 
+  copyright: ''
+  hash: 07be41ae6b698d9502930f67e77626c331e97d32d53353923977982008132b42
+  license: ''
+  license_text: ''
+./modules/sigaction-tests: 
+  copyright: ''
+  hash: 9f4c4fd68033b8b0de4f979d019a55818e500783ff016ae62391144b3dee1e44
+  license: ''
+  license_text: ''
+./modules/signal: 
+  copyright: ''
+  hash: b581455f675e2137d8819b511c6162fd3158dea57d926957f1867bb2cd7af0b7
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/signal-tests: 
+  copyright: ''
+  hash: 0e083125fa83ca73d7eeff33fc2b77c249284a8b8762ff00d837e45d9cdef749
+  license: ''
+  license_text: ''
+./modules/signbit: 
+  copyright: ''
+  hash: 7c4ee7f60ecb6a37679a77770d01962fd542ede80e1cf8dfe1d60cf74f0911b1
+  license: ''
+  license_text: ''
+./modules/signbit-tests: 
+  copyright: ''
+  hash: eef0df7aab3069078ab4eec7d9a25e49d2c6ea6b104cf9df24a76f03554491b3
+  license: ''
+  license_text: ''
+./modules/sigpipe: 
+  copyright: ''
+  hash: 199477370fc1f54a1b9ed82b3ac2344d45f5122ef791e8596d51b9d4ba6a1122
+  license: ''
+  license_text: ''
+./modules/sigpipe-die: 
+  copyright: ''
+  hash: ed55307393a024dfc8977b00e3bd21769a5e92cb82df4d0432f18b493df597a1
+  license: ''
+  license_text: ''
+./modules/sigpipe-tests: 
+  copyright: ''
+  hash: 94b56c44ef1df251243b29c8d1d869017825d6d98db2c4222b2a343c24ed4559
+  license: ''
+  license_text: ''
+./modules/sigprocmask: 
+  copyright: ''
+  hash: c975bf065682dc172ec4dc379ab1ed192aa0d6aad477a6864fbf60c1246c6897
+  license: ''
+  license_text: ''
+./modules/size_max: 
+  copyright: ''
+  hash: 73c507c110287a3663aa8c381fbcb055b3c6887198d073f200910fd71aa95555
+  license: ''
+  license_text: ''
+./modules/sleep: 
+  copyright: ''
+  hash: fba49bfd14065e4eee5061125ab9934e8a8c7f63c807a7f37814bc589e06615a
+  license: ''
+  license_text: ''
+./modules/sleep-tests: 
+  copyright: ''
+  hash: 30fe1f57a847e2754087348d3a09ad74984a26024ebccd898a820de4fdef1f0a
+  license: ''
+  license_text: ''
+./modules/snprintf: 
+  copyright: ''
+  hash: 99b7a128476c367292fe170e7388305af688410287af40cabdacf7a85f7bbe91
+  license: ''
+  license_text: ''
+./modules/snprintf-posix: 
+  copyright: ''
+  hash: 3e9391c27d056aee33e7da736d22cbafcea9d78737ac24b040194cc85e09244d
+  license: ''
+  license_text: ''
+./modules/snprintf-posix-tests: 
+  copyright: ''
+  hash: aa48d1605def6aa15a349ec9b28de3f3cb9a804927df9d21f7ec442108e35f7e
+  license: ''
+  license_text: ''
+./modules/snprintf-tests: 
+  copyright: ''
+  hash: 0ff8528c57338b089cf559ab8390b3cf06e82b3aa70a9856b64903a91110e007
+  license: ''
+  license_text: ''
+./modules/socket: 
+  copyright: ''
+  hash: 760be8eece098f5cb0859823a95ed98f12e243b07233e51add74b57b5fcf7432
+  license: ''
+  license_text: ''
+./modules/sockets: 
+  copyright: ''
+  hash: 4126e02f36a87f45d964ffda63593a3bbc780a0ff4a782fee581da0cc5a6721d
+  license: ''
+  license_text: ''
+./modules/sockets-tests: 
+  copyright: ''
+  hash: 478a2b82993ba28fa4e38f3da513f68ba86c56bc24322e3b367c9059c2f0f46b
+  license: ''
+  license_text: ''
+./modules/socklen: 
+  copyright: ''
+  hash: 5a6f4327fa652ca2de47827244f6f31857349eb6813b8e8dc38ce2f77dec7b02
+  license: ''
+  license_text: ''
+./modules/spawn: 
+  copyright: ''
+  hash: 98db23dfb5fb8488a0b81126b79432455b524be81dffa5b684957af4d2f65b00
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sprintf-posix: 
+  copyright: ''
+  hash: 8ecaa26a2793633affd7dafec62afdee8040029061a42f0048b179f1918f7525
+  license: ''
+  license_text: ''
+./modules/sprintf-posix-tests: 
+  copyright: ''
+  hash: 524e6eba911ef670a4d2e2af84b7cbb7c5679b78aaa39e685322de151f0fcccc
+  license: ''
+  license_text: ''
+./modules/ssize_t: 
+  copyright: ''
+  hash: e3040cc98da673a52d6690bf4ec5bf816d5b423ce3f42f942557ca401e89fa87
+  license: ''
+  license_text: ''
+./modules/stat-macros: 
+  copyright: ''
+  hash: 19a4ff4a01f4f539788495b28a9bc53a84b8d0709bde1556f753c3b6ec965bda
+  license: ''
+  license_text: ''
+./modules/stat-time: 
+  copyright: ''
+  hash: 40e5e8024121f13b956b4b91751e10ae5e290f3443428cfe0013b6de4c74169f
+  license: ''
+  license_text: ''
+./modules/stat-time-tests: 
+  copyright: ''
+  hash: 2ca4e868457774774f30f46bc1498664e95111a24a0fb2f612c89a0be818d38f
+  license: ''
+  license_text: ''
+./modules/stdarg: 
+  copyright: ''
+  hash: 4396e6d252ffcea369f031414cff4ad5c7cf19346b8c908b8c547d58f204e234
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/stdbool: 
+  copyright: ''
+  hash: 3cbd93d722b352c1b2f23b7dd51709813fdd4072b294d41fa3a96caeab9bf967
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/stdbool-tests: 
+  copyright: ''
+  hash: 7f54c93281898b8aed304625dce03fb5fc1ca32adcbe0e4f2691cdc031c6c753
+  license: ''
+  license_text: ''
+./modules/stddef: 
+  copyright: ''
+  hash: 243de985823f8405c63bb77c348f603b543baa2fcdb81c9816ddf490fca00af3
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/stddef-tests: 
+  copyright: ''
+  hash: 4a3846b781424614dd86a5c8beac0b5d2191af4dccbf18ce789b9756c16c745e
+  license: ''
+  license_text: ''
+./modules/stdint: 
+  copyright: ''
+  hash: 8f0595316fc29b2c9301f9e7125ed21c4ed64b92d17bebdeecc95643c9b5a486
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/stdint-tests: 
+  copyright: ''
+  hash: c74042c04291bc048ebf18874d653986027582a7759f90fe6ba2e0492b9b2162
+  license: ''
+  license_text: ''
+./modules/stdio: 
+  copyright: ''
+  hash: 93241faf9fae9089f22f287f7b5168e68002f49102edd33796617692c6493d26
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/stdio-tests: 
+  copyright: ''
+  hash: 5491d73216042ef41b34ec2e402bc9f664d7557d25d9b8608b14986ab1f33db9
+  license: ''
+  license_text: ''
+./modules/stdlib: 
+  copyright: ''
+  hash: 07f3b190af38509a0a785ca981a54cfc4265ede026d74267e5b54a8ac47dc5a2
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/stdlib-safer: 
+  copyright: ''
+  hash: 2bd1cb8f5715a347cbdf0f94ab509ef98e28969806eea27ebbe7eafef57eac89
+  license: ''
+  license_text: ''
+./modules/stdlib-tests: 
+  copyright: ''
+  hash: 7d7aff5250835c4c6b3222e8168b837338ba00c71386bc51a64e173ba0b60739
+  license: ''
+  license_text: ''
+./modules/stpcpy: 
+  copyright: ''
+  hash: 90b790c92b055c904aabe26bd7993256f5472e0a9da16645ee7a59ac37b324b2
+  license: ''
+  license_text: ''
+./modules/stpncpy: 
+  copyright: ''
+  hash: e80ed56ddf49eb3bd85da305c846ed7e96027bd6d712c48d757ff1fc17b646d3
+  license: ''
+  license_text: ''
+./modules/strcase: 
+  copyright: ''
+  hash: 652dd082eaa9ecff9480f67750ab105ee39e3bbf16d2ee71638fa73a737dc20f
+  license: ''
+  license_text: ''
+./modules/strcasestr: 
+  copyright: ''
+  hash: 9551ffc82dca4481309246e5ddd487e77a7d7a11accac093b82220b2875d1f8f
+  license: ''
+  license_text: ''
+./modules/strcasestr-simple: 
+  copyright: ''
+  hash: 19b95796ee17de816bd73b8fafa15172d3f5384fae26acd816dca81a736ef268
+  license: ''
+  license_text: ''
+./modules/strcasestr-tests: 
+  copyright: ''
+  hash: 46161f22bad85e1157ba4c099ca8ac45b99c09614c81f9cf3d1238b83745763f
+  license: ''
+  license_text: ''
+./modules/strchrnul: 
+  copyright: ''
+  hash: 3439a52f0c76cacb89c9175647f636101c937e17d039e956c2bc739599fd607a
+  license: ''
+  license_text: ''
+./modules/strchrnul-tests: 
+  copyright: ''
+  hash: 673dba998f602c4891f267c09d4e33654cf112f4c93597683daba4df9c30dbfe
+  license: ''
+  license_text: ''
+./modules/strcspn: 
+  copyright: ''
+  hash: 00ba939a293feefdd943d64bee2b6b6e6ee840b02c1bad71770fbf3f19389604
+  license: ''
+  license_text: ''
+./modules/strdup: 
+  copyright: ''
+  hash: f94b64eab9875bf12ebe372e2aa004064463874073df477123c7cb3b210ab1f7
+  license: ''
+  license_text: ''
+./modules/strdup-posix: 
+  copyright: ''
+  hash: 3d985ae29a0e13f553a8fc6b7cccbcc778b6239dfdb286f8111e68a2e42d2e49
+  license: ''
+  license_text: ''
+./modules/streq: 
+  copyright: ''
+  hash: 0930ec55962ca56e7f39dff406c7b9ec1530ab93163439b806f748810230060b
+  license: ''
+  license_text: ''
+./modules/strerror: 
+  copyright: ''
+  hash: d5f23050cc89efc8d2bd7136b02aa4bf5daa9f12d631d66521cfc8e630d8cea6
+  license: ''
+  license_text: ''
+./modules/strerror-tests: 
+  copyright: ''
+  hash: 5352af1cada47d941b871ce9a05537ff50cda589bb84bcbd1f90f1332eba1400
+  license: ''
+  license_text: ''
+./modules/strftime: 
+  copyright: ''
+  hash: 248ca652922ec6f0e11f952a294fb9d52c823191e70d85869d163ec32953457f
+  license: ''
+  license_text: ''
+./modules/striconv: 
+  copyright: ''
+  hash: eacfc0c73f54b70f44e72e0a2496fa3a985649478f468355fb25111155547017
+  license: ''
+  license_text: ''
+./modules/striconv-tests: 
+  copyright: ''
+  hash: 56ef990fdb312ac361392d8ac11bbd2f3120df37b7c39602284ae5f56e84b6ed
+  license: ''
+  license_text: ''
+./modules/striconveh: 
+  copyright: ''
+  hash: 20590c09b1e4c5fde22a0d3328cbc8ce66126e287d86452678423ca690c2bb31
+  license: ''
+  license_text: ''
+./modules/striconveh-tests: 
+  copyright: ''
+  hash: b43a1cfddff6b6c98ecc9a584cbc851f778b47c8a9c474b2b04fa20ef970c9a8
+  license: ''
+  license_text: ''
+./modules/striconveha: 
+  copyright: ''
+  hash: 53914d85168151eac2e5cb2f6afe316ec020927e6047c70f6071299410fcd88a
+  license: ''
+  license_text: ''
+./modules/striconveha-tests: 
+  copyright: ''
+  hash: aef1f694fa6b20064b58d84d3527a3021e6f61171962dd23cb08b9c5b2e32a24
+  license: ''
+  license_text: ''
+./modules/string: 
+  copyright: ''
+  hash: 820cbde2e33c17d5aa13a8b05510e25367ea8cb7deec30d49f8b4dd9f18834a7
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/string-tests: 
+  copyright: ''
+  hash: 1e7c179743032ebfaa51fa19f432a8a82ee399296a1c0b56d5449b92dceb8879
+  license: ''
+  license_text: ''
+./modules/strings: 
+  copyright: ''
+  hash: 2ee8e3df07f452f9eda5ec6db18dbe1267d518cba0632ba0d4f6a0f8c82aa657
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/strings-tests: 
+  copyright: ''
+  hash: 8cad9ecb44b7140eb24b9d6a0513a3c987ee9e856dc469f2429ab4a70ffc3705
+  license: ''
+  license_text: ''
+./modules/strndup: 
+  copyright: ''
+  hash: 01fc2b925d4add01ac277ca8fc680673d4a255c6e462a90bdb0436038948244b
+  license: ''
+  license_text: ''
+./modules/strnlen: 
+  copyright: ''
+  hash: ab4fc62f8761caf131b4822d455933d31ac73c304dae9fc82c61b8edb35f6a15
+  license: ''
+  license_text: ''
+./modules/strnlen1: 
+  copyright: ''
+  hash: b40f4a91247dac802a30b188b4d62c0efaae6b48a2bdea15b62a393544d6b755
+  license: ''
+  license_text: ''
+./modules/strpbrk: 
+  copyright: ''
+  hash: 6d8864c98aef1b3ab33703c9d43151fedc916569722621f6c7150d837c0946db
+  license: ''
+  license_text: ''
+./modules/strptime: 
+  copyright: ''
+  hash: f2514d0b5ca1e70c75ab184443babe3b1ef75c46b9827809183cc1ab6b586240
+  license: ''
+  license_text: ''
+./modules/strsep: 
+  copyright: ''
+  hash: b1eb6fbc25cbb44926116846e373ab34002448c7000e81b9e0497a71d577d580
+  license: ''
+  license_text: ''
+./modules/strsignal: 
+  copyright: ''
+  hash: 86a0aa69d80d95b91aeb22b0e38efff4d690c06c0187997b52aeddcfe8eff2fd
+  license: ''
+  license_text: ''
+./modules/strsignal-tests: 
+  copyright: ''
+  hash: 1cd7a2a2ec27177252af5cc3cd983f024c1e38460c8e37bd0715452f8017f3b3
+  license: ''
+  license_text: ''
+./modules/strstr: 
+  copyright: ''
+  hash: e5c8780d984fbde04ff226f616085d6819612337b26d6b12328c60a533bee3f5
+  license: ''
+  license_text: ''
+./modules/strstr-simple: 
+  copyright: ''
+  hash: 33985a6d6d2c6195b9a59aca837b554c479813291dcb311600f1326dec7f2f6b
+  license: ''
+  license_text: ''
+./modules/strstr-tests: 
+  copyright: ''
+  hash: 2cfcdd33b3abf203be17d8066f8a8b1972f6cea01c7bb0e56db3e70283b1c678
+  license: ''
+  license_text: ''
+./modules/strtod: 
+  copyright: ''
+  hash: e2bd9b168f17f719a2dd226af001e7ef4c20ed217253e9f4a46992bd7743c4ce
+  license: ''
+  license_text: ''
+./modules/strtod-tests: 
+  copyright: ''
+  hash: f54cf32f92b9c3c6f18020108aa11e8bb7f35310ee4c3319a5e6a96f09e19a6b
+  license: ''
+  license_text: ''
+./modules/strtoimax: 
+  copyright: ''
+  hash: 97ef74e07fd0883f0cf4df51ddce49b560bb27af0de255b1bcb961374782ae3b
+  license: ''
+  license_text: ''
+./modules/strtok_r: 
+  copyright: ''
+  hash: ccc223e8aa3f496b40cb5d0142c2de246792fd92ec7a5dce39e12a8d4ec2d629
+  license: ''
+  license_text: ''
+./modules/strtol: 
+  copyright: ''
+  hash: 6944ccdcc645699be922c9058ca8c1f4ca89440bc9e567d0276821e2bf713b7b
+  license: ''
+  license_text: ''
+./modules/strtoll: 
+  copyright: ''
+  hash: 11d70fb957deed2086c050cd25dceb9d217051279f92726c22162e2e9f23f083
+  license: ''
+  license_text: ''
+./modules/strtoul: 
+  copyright: ''
+  hash: cb32df538cf7dca3e9d8b557e421863aedf64337f881230629eb6f6b4016bd39
+  license: ''
+  license_text: ''
+./modules/strtoull: 
+  copyright: ''
+  hash: 6fa81618f965be530901644a91327cb8fd9cc538a50a8bec4cbf84615fc06c26
+  license: ''
+  license_text: ''
+./modules/strtoumax: 
+  copyright: ''
+  hash: 7dc1621c6caa98228b37c93cd003938d404193f9584246552d24b3730d45b94c
+  license: ''
+  license_text: ''
+./modules/strverscmp: 
+  copyright: ''
+  hash: 7e8a1cce977aff0b59f836370a857149c95f05eb90d093de4c78fbaeea0f8452
+  license: ''
+  license_text: ''
+./modules/strverscmp-tests: 
+  copyright: ''
+  hash: 0b0a466cf1d4c4da6cd7f63f6ad9ca565889daa7758939f28812107b6bf9b758
+  license: ''
+  license_text: ''
+./modules/sublist: 
+  copyright: ''
+  hash: 49a4dece4964dcb743b03485ded5a63b8358cad671ae2ae778afd60b461de163
+  license: ''
+  license_text: ''
+./modules/symlinkat: 
+  copyright: ''
+  hash: e1d40d37a9a43d3df7a55c692c6715e02f5903429e86a42e5b1fc3d74db64a8d
+  license: ''
+  license_text: ''
+./modules/symlinkat-tests: 
+  copyright: ''
+  hash: b2c32a25998d397bd8960b354291eb0fa1c269103d78859cddae22f60a476c2d
+  license: ''
+  license_text: ''
+./modules/sys_file: 
+  copyright: ''
+  hash: e66d4edb7387906d3901aeba747a3d80bafe9d5a8694d0a06795b83121bf24ad
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_ioctl: 
+  copyright: ''
+  hash: 7b526d0c710b091a546a88d024bc58ebc9b5e41efcadffd8192b99fc7ec00b59
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_select: 
+  copyright: ''
+  hash: 77c4399536d7ef3a70f25a0f889996dbe88bc6a6db0e5dbed45355492e5e91aa
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_select-tests: 
+  copyright: ''
+  hash: 4fbb77380b490e637abf5fbbdafff6625456a293236836a35ac3de09a59adfb8
+  license: ''
+  license_text: ''
+./modules/sys_socket: 
+  copyright: ''
+  hash: 722216ce9396878ba968800c9dda5add975ca83f2e124d20c292dc88e34734ee
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_socket-tests: 
+  copyright: ''
+  hash: b5b2e0310b662edcc7dad13c365ff1b2bf477fec23a0f77c9dcfec409ffd8faa
+  license: ''
+  license_text: ''
+./modules/sys_stat: 
+  copyright: ''
+  hash: a1c80f8c008aa015df87994281680809e8a3e46b8ccf4c289c8004475e9a213d
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_stat-tests: 
+  copyright: ''
+  hash: 87b59c12b0443cbb770e910abee503f866deef5609c671d3445b0aae2683e2af
+  license: ''
+  license_text: ''
+./modules/sys_time: 
+  copyright: ''
+  hash: c654ff78fb16360b93e7b15ca6de03a42cf406fe2514a7b0e4caa697b1798777
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_time-tests: 
+  copyright: ''
+  hash: 910f3c2445a8c42a59fa23e117b1cbc7de37bf6177f54b366e347c82cbe5b332
+  license: ''
+  license_text: ''
+./modules/sys_times: 
+  copyright: ''
+  hash: 099f6eb28c2cac30132b67af9af2013712a24cb6e364e0037c9ca6aebe9f3422
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_times-tests: 
+  copyright: ''
+  hash: fd9753642bc93c34a631756a485f5bd4a436cc75a5a1793f2f18a2ff5a97e37f
+  license: ''
+  license_text: ''
+./modules/sys_utsname: 
+  copyright: ''
+  hash: 1dfd16eed68f5d83836fce58ec325bb7262da5ca7f395dd5f1db494f908b90ca
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sys_utsname-tests: 
+  copyright: ''
+  hash: d8e98f95c344d5674a022aa57273429f54e50d9a8c2c5533e319fd165b39b653
+  license: ''
+  license_text: ''
+./modules/sys_wait: 
+  copyright: ''
+  hash: bb9e9a5c86edc0cf02b1b13dfbab113d49f224a4bc4c4ccd7f7a806b3e7e999f
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sysexits: 
+  copyright: ''
+  hash: 11f243ba2444ab5eb2f10ee1c25bd64fe7788d121bd26fa7f7c2e430e1d70050
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/sysexits-tests: 
+  copyright: ''
+  hash: 7bfa22994a26c3483db7c4b19cb9bc94ff57ef46038fb43d486833f4aa9e08a4
+  license: ''
+  license_text: ''
+./modules/tempname: 
+  copyright: ''
+  hash: e2e351656be8f723e4747227e52be7ab5fd3b67e1c25b52f4a47d00dc36c2586
+  license: ''
+  license_text: ''
+./modules/thread: 
+  copyright: ''
+  hash: 88ec3e8abc03b09d5e308167e0cd610710913cfac06911a82e4eb3f589d2f680
+  license: ''
+  license_text: ''
+./modules/threadlib: 
+  copyright: ''
+  hash: e4e2448bf023982eb670462404aaaa786414a9f9f494eb03fef1d4265cedae25
+  license: ''
+  license_text: ''
+./modules/time: 
+  copyright: ''
+  hash: 70da94ab70998280b9898a17366ddc5cb2639e7cb97aad4585b73b64c4c5b960
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/time-tests: 
+  copyright: ''
+  hash: c0ff6e1970e10568f18fc0dd76d7190fad6142bc1d267bcb0970ec212a232080
+  license: ''
+  license_text: ''
+./modules/time_r: 
+  copyright: ''
+  hash: 79cb71af4c0f19a08193199204082067a8967f87492f7808d0bb2ddfc3349747
+  license: ''
+  license_text: ''
+./modules/timegm: 
+  copyright: ''
+  hash: 4e742a3f82007e942d6c8af4d343be35d64521224620fda823e59a1132ba0347
+  license: ''
+  license_text: ''
+./modules/times: 
+  copyright: ''
+  hash: 9ea1fd0058edebf1eff55d06b0b51baa16abf490a76832902559cd17c7101640
+  license: ''
+  license_text: ''
+./modules/times-tests: 
+  copyright: ''
+  hash: 496e2fd32b4bcede705f2dd42403463f6db2eb860247a81b2eda4fd8d80d1cf1
+  license: ''
+  license_text: ''
+./modules/timespec: 
+  copyright: ''
+  hash: c6c2c7e7ac43dfe978303342c77b8152884ae56978b5212ff60267e23cc0fc63
+  license: ''
+  license_text: ''
+./modules/tls: 
+  copyright: ''
+  hash: d423d1274df32c29f6e674a7640df8d901b2f8190ec8be081bd6712562fb32e2
+  license: ''
+  license_text: ''
+./modules/tls-tests: 
+  copyright: ''
+  hash: 2a7325d7ad5c8e34e86d6193d22c3f34efd5bfcdd76152bdf4d7eb27682e3edb
+  license: ''
+  license_text: ''
+./modules/tmpdir: 
+  copyright: ''
+  hash: c68b835358cd9e730d2aa75081f4d3518a2acf0f82a11b01bfb860132f97a31a
+  license: ''
+  license_text: ''
+./modules/tmpfile: 
+  copyright: ''
+  hash: 0020aca412b41a4e89e007655f8e39aa257ae7d89bca8cb5a254887ede281467
+  license: ''
+  license_text: ''
+./modules/tmpfile-safer: 
+  copyright: ''
+  hash: e5f395450b8163c0793c26c5d624e42d78afdd4ea7f74714157bd2ab974f955a
+  license: ''
+  license_text: ''
+./modules/trim: 
+  copyright: ''
+  hash: bccc6d068d82b47f71a582f330b1a29a7d18c8d96e73f2bfb528b9fdeaf33777
+  license: ''
+  license_text: ''
+./modules/trunc: 
+  copyright: ''
+  hash: a83249c184d8edc716f0e56e461b4aacf9416c6da39e29b9d4c064df78952283
+  license: ''
+  license_text: ''
+./modules/trunc-tests: 
+  copyright: ''
+  hash: 387bd8fe24b236a480752328a12cae928c3de1db73cf519b9923d847163f100e
+  license: ''
+  license_text: ''
+./modules/truncf: 
+  copyright: ''
+  hash: fcc4e22b398852d9e6f88914c108d45c739c50f861e45d7206786b4bf5326ad0
+  license: ''
+  license_text: ''
+./modules/truncf-tests: 
+  copyright: ''
+  hash: 1bdf6633eeaec824cd9f3be4a6414d4024627aaafe2e5427bbc0fb4fe8e0d8fd
+  license: ''
+  license_text: ''
+./modules/truncl: 
+  copyright: ''
+  hash: 1c2b79534a373322c5e5128315aa9b599cada54298ce521efb56d991b48c8d48
+  license: ''
+  license_text: ''
+./modules/truncl-tests: 
+  copyright: ''
+  hash: 0edb2b017fbb4411e12a8be2a6221cb7f08ad73bac935efdf8ca3dbf0032bc5f
+  license: ''
+  license_text: ''
+./modules/tsearch: 
+  copyright: ''
+  hash: c39ccb5fcfbaeab2bac2d3342c88c8dd146b12d6652e14e9df8f03af4e2cf22f
+  license: ''
+  license_text: ''
+./modules/tsearch-tests: 
+  copyright: ''
+  hash: 3715a032f02b16304bbcc2953ae8a7fedd5b70346b8af355f90abd112f1ffbe9
+  license: ''
+  license_text: ''
+./modules/tzset: 
+  copyright: ''
+  hash: c96599c52262409a1b50451d051d8d2fa5e62a9e05af812a6eb239d0a7ca2460
+  license: ''
+  license_text: ''
+./modules/u64: 
+  copyright: ''
+  hash: d03c4cfa4e836c0b4723355656740e75edfd5c064e35b3999dd42b9329bded4f
+  license: ''
+  license_text: ''
+./modules/u64-tests: 
+  copyright: ''
+  hash: dafa78e78d3b857b511a34c4b1e00376d220e96b16309ad9573e15c0778554d6
+  license: ''
+  license_text: ''
+./modules/ucs4-utf16: 
+  copyright: ''
+  hash: 145458db67223a8d1ce8fd893048086911f4e13956413a722bdae218937c4be0
+  license: ''
+  license_text: ''
+./modules/ucs4-utf8: 
+  copyright: ''
+  hash: 8e913f70267449a59a4ae2b22d9f63ba73cd77c5d0c292f9aebb2a3a5ce500d7
+  license: ''
+  license_text: ''
+./modules/uname: 
+  copyright: ''
+  hash: 557b53330b3d484466590b1a48865c67744fa66d98dfba740efacc7436e7ceb6
+  license: ''
+  license_text: ''
+./modules/uname-tests: 
+  copyright: ''
+  hash: b004f58e1b744253f85177dcc1bb091231de14d74a60987ad0a1ee59001c2d30
+  license: ''
+  license_text: ''
+./modules/unicase/base: 
+  copyright: ''
+  hash: 5e08a9fff9ff0e2354477f2bcc3b24520c8fb84e8b8563e59752dac1e4428080
+  license: ''
+  license_text: ''
+./modules/unicase/cased: 
+  copyright: ''
+  hash: 4a30fccf8b77307e6e8dfbf776650f45aeb31724ed0840836767944c730e990f
+  license: ''
+  license_text: ''
+./modules/unicase/cased-tests: 
+  copyright: ''
+  hash: 971ee47da5b9535273b75bce761e57d20f2fb911a6a7c81e67d4144ec79d6dce
+  license: ''
+  license_text: ''
+./modules/unicase/empty-prefix-context: 
+  copyright: ''
+  hash: 9815dccf9c38a3ff1d76fcff7ced81b40102c2fde1e0044f83d28a040a2dc442
+  license: ''
+  license_text: ''
+./modules/unicase/empty-suffix-context: 
+  copyright: ''
+  hash: 944bb7a0792bd8b4bbd4d863d766024751c37b0de024320e9fe7e7d3cf449e69
+  license: ''
+  license_text: ''
+./modules/unicase/ignorable: 
+  copyright: ''
+  hash: c273f624b30079c7223ff88a4331b1f3999249ee95c675fcaf9b9b9b537b53d1
+  license: ''
+  license_text: ''
+./modules/unicase/ignorable-tests: 
+  copyright: ''
+  hash: 630a7da6f903edbef6806bdab38288207b7d5948682e8efd91417bd50ea01fc8
+  license: ''
+  license_text: ''
+./modules/unicase/locale-language: 
+  copyright: ''
+  hash: e5eb40a70ce073412eba68b8ee7872b4b2d816120e0d42a8a2e12193793159e4
+  license: ''
+  license_text: ''
+./modules/unicase/locale-language-tests: 
+  copyright: ''
+  hash: 51058741ce6d861967c85067aaf8aeb05ffab881d561a650376ae2d71ef8a828
+  license: ''
+  license_text: ''
+./modules/unicase/special-casing: 
+  copyright: ''
+  hash: 1ae745ef7bc98b0bccc8e30dcdffaa2153bcda2f1a2e660aa9ac78cfc453f553
+  license: ''
+  license_text: ''
+./modules/unicase/tocasefold: 
+  copyright: ''
+  hash: a3d629edd2f6d2f6427e2fc759d9c02842aeab9e9ed4558d9fd26a7d1e6f5327
+  license: ''
+  license_text: ''
+./modules/unicase/tolower: 
+  copyright: ''
+  hash: cb60aefc9118c67e11c0d5ea5313c87bf9043e8023d7ff71557ae6fee5431377
+  license: ''
+  license_text: ''
+./modules/unicase/tolower-tests: 
+  copyright: ''
+  hash: ed6841d261a077ff9d189aced8317906563d264a53f036b1456c349ae5390ae3
+  license: ''
+  license_text: ''
+./modules/unicase/totitle: 
+  copyright: ''
+  hash: e925016c7c1af9b8ead81b405cb19569ac2466537e6b6e77e14c80ecd2ec02e7
+  license: ''
+  license_text: ''
+./modules/unicase/totitle-tests: 
+  copyright: ''
+  hash: 1f2e63b6c7d4c4a9231bdb55822ee9a5832a12b406c36a33c84adcd9a508293b
+  license: ''
+  license_text: ''
+./modules/unicase/toupper: 
+  copyright: ''
+  hash: 8aaecc8f0fe8244ed1d057a63648588c58a80e4e338325bdd98064b6e165f6e0
+  license: ''
+  license_text: ''
+./modules/unicase/toupper-tests: 
+  copyright: ''
+  hash: 088bfb70a96d99be06836347c59c9c427061bb90e5783de5af107ca569f7b2dd
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casecmp: 
+  copyright: ''
+  hash: 6818530e13d0a9179cc5a324828cf275590bcfd888606734319f2ec85c2d3fbe
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casecmp-tests: 
+  copyright: ''
+  hash: 985b607384f6ccd0908c338c8c94a95aab290707ebd945648da7e12179a32c91
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casecoll: 
+  copyright: ''
+  hash: 45c99149a78c4b226c7a25a8d9c5f5218aa6f7a058fe7f17f42ccd1a6ca80689
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casecoll-tests: 
+  copyright: ''
+  hash: 31e39a4c7ae487d67ef3519c89bd1899593a2ea346d71aaf1713d7f324287de1
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casefold: 
+  copyright: ''
+  hash: 1383cbf1be4a2c31ad98d3f876114778e463c88e466311c800f8d9f9af4cc472
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casefold-tests: 
+  copyright: ''
+  hash: fd0a7aa152c9c02757c872500ebebc99d493cc73a033f2ec7c8c64354e23cd09
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casemap: 
+  copyright: ''
+  hash: 9ea6f5e45a7f443b1e11ff87d70fc7d148801d46f71a95bc7031cdf4f383347e
+  license: ''
+  license_text: ''
+./modules/unicase/u16-casexfrm: 
+  copyright: ''
+  hash: fbb9c5801735a92bbb367d8a356f2db64c9d997b9241b555c140e71ff73469a4
+  license: ''
+  license_text: ''
+./modules/unicase/u16-ct-casefold: 
+  copyright: ''
+  hash: 37159365740209e5a7d17829cbb9238610e73bc05bc9149e833a2e28fbe77ce9
+  license: ''
+  license_text: ''
+./modules/unicase/u16-ct-tolower: 
+  copyright: ''
+  hash: c013fbe72a99d95e8fdaea9c91f88d1798996a9da2955066ba5fad8f88a4e6f8
+  license: ''
+  license_text: ''
+./modules/unicase/u16-ct-totitle: 
+  copyright: ''
+  hash: 4046b7bc9d5c34f4e7148868c75a798828887843774ae10176ea83b16b045120
+  license: ''
+  license_text: ''
+./modules/unicase/u16-ct-toupper: 
+  copyright: ''
+  hash: ccc71091922f7fc2f26e634f29d0882ca751840f94f4a06a5e425f173c789a49
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-cased: 
+  copyright: ''
+  hash: ba1e8be4fd14bbbd10df6d3846465b905c03f32b3bd711833abfb4001c02ad9d
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-cased-tests: 
+  copyright: ''
+  hash: 1c1de2ab2b428650431c1f5b244636c8072417833b0bd0b11de97f1ae398e94f
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-casefolded: 
+  copyright: ''
+  hash: 698f79552a6d2283f17b202a7a3aee2a5f07e49628324f15a05f8e9a6dca39e9
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-casefolded-tests: 
+  copyright: ''
+  hash: 051f375cfb7382a8e1ec344b0e108dc1f934c79addfb7f42c387efc9752ca6fb
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-invariant: 
+  copyright: ''
+  hash: 8bcd7e96e446f36364a2db34bbc8412c8c9ab12d16c3b546e8b93feadfd87250
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-lowercase: 
+  copyright: ''
+  hash: c2d486e628e83d57d3c989b6612716c7ae7078b9f1724af9db944683026daeb5
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-lowercase-tests: 
+  copyright: ''
+  hash: c66db367c2fb8c1f4732a1bc4bb9852fc97cc8d1dafeefd6c4bd9f39b5865c1d
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-titlecase: 
+  copyright: ''
+  hash: 818c955449e0b476340ed38f643c41356997718494b7813fce44fe792561d5ed
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-titlecase-tests: 
+  copyright: ''
+  hash: 04baba42d970bf07ea45cb23bc96cd6155052942ae365b709a9da6d3f80c597c
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-uppercase: 
+  copyright: ''
+  hash: e82ea18eb83b699d27082593af769c8b81bc40b86cf57237c8a4e4fe9a94ac73
+  license: ''
+  license_text: ''
+./modules/unicase/u16-is-uppercase-tests: 
+  copyright: ''
+  hash: 7fbdeb55ef1e8b4e151e68589989bfba543e3ad424adc8a522aa5c58ef8354fb
+  license: ''
+  license_text: ''
+./modules/unicase/u16-prefix-context: 
+  copyright: ''
+  hash: 3dc69cdf655127d5d473e1cde7a899329e2e6b493b673c06ea8018dac8d0fd11
+  license: ''
+  license_text: ''
+./modules/unicase/u16-suffix-context: 
+  copyright: ''
+  hash: b2a18ae78e78297153eac554ec5721d470d74903a32472db0a9ce63e53649851
+  license: ''
+  license_text: ''
+./modules/unicase/u16-tolower: 
+  copyright: ''
+  hash: c347b36dfad840812803552632b08f317baa2df4964177260d34f31a3802a5bc
+  license: ''
+  license_text: ''
+./modules/unicase/u16-tolower-tests: 
+  copyright: ''
+  hash: b84ac0cc25f90fabbeaff0b0da5c26809395c487cfdc9edefadd1c0aefa159e3
+  license: ''
+  license_text: ''
+./modules/unicase/u16-totitle: 
+  copyright: ''
+  hash: 7af4d257d9ecd8143f07a91e018451da0b059307a06a0cfd81087758df75c7af
+  license: ''
+  license_text: ''
+./modules/unicase/u16-totitle-tests: 
+  copyright: ''
+  hash: c0ba0815798f5445b93916c8dfd710ae61a4e4a6b2094b328f6894ea08039eee
+  license: ''
+  license_text: ''
+./modules/unicase/u16-toupper: 
+  copyright: ''
+  hash: 5cdf7796e82e30e9fc8e40dfba528d589ba4ebd2cf2fb0a9c2c15d881876ec2a
+  license: ''
+  license_text: ''
+./modules/unicase/u16-toupper-tests: 
+  copyright: ''
+  hash: 2bf965e463f623ffb1fda685ca7476644c9c68f1a4b5ae48ed9e8a5ccb479ba8
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casecmp: 
+  copyright: ''
+  hash: ec701d2d73236e22962ffd44be8827a1fd4c391c006c3fc71badf76527ecf748
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casecmp-tests: 
+  copyright: ''
+  hash: c58e4566f592b2eae664b53856c1a592f11b7cea1f5c674c88e14ffed26382eb
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casecoll: 
+  copyright: ''
+  hash: 9e95af8cdb3c0708033c65a99f7fc92c1143a42cbf91509c412f2af132e9b58f
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casecoll-tests: 
+  copyright: ''
+  hash: 3a42e511f45e4c6e22669d09ea669fa5e1579d2a29bfea86d31e19d4d0ed188d
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casefold: 
+  copyright: ''
+  hash: 5310bb15354d20b9048c19c38d82f1e9b156513371937d768aef3045e408f613
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casefold-tests: 
+  copyright: ''
+  hash: acff929de3dda45cb7df7a985157f7bbb6978c015ebe181cf7bc390eb4af0b93
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casemap: 
+  copyright: ''
+  hash: fcbef81aa3da3fda669e2899da06f2224954bea21a5b425213b95116ed7c746d
+  license: ''
+  license_text: ''
+./modules/unicase/u32-casexfrm: 
+  copyright: ''
+  hash: 9b77b15825c0269b3fbde717439137cd86ac4bdf7937338a2bfedb6720cc25fe
+  license: ''
+  license_text: ''
+./modules/unicase/u32-ct-casefold: 
+  copyright: ''
+  hash: f934aef180e035571f47c4917cb8b472bc0058556f904e9ddd051a1dd2e488e5
+  license: ''
+  license_text: ''
+./modules/unicase/u32-ct-tolower: 
+  copyright: ''
+  hash: 65c5810ec6e2763cc7b406f472a594a1ce1ebedfd4890bc836005a8bfa1f1853
+  license: ''
+  license_text: ''
+./modules/unicase/u32-ct-totitle: 
+  copyright: ''
+  hash: 730a8124be974b4c6186de5104e5d3a3208002d9b310318e83c304ccc7409eca
+  license: ''
+  license_text: ''
+./modules/unicase/u32-ct-toupper: 
+  copyright: ''
+  hash: 517e6daa7e3ff4e5a9ea617bb230e7ea0bb20dfb4f81c788fd1023f2341cedf4
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-cased: 
+  copyright: ''
+  hash: 5ce9d40cccbffb9a9c49b3d2709bfa0949b0aa906b11393b34975646bf485598
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-cased-tests: 
+  copyright: ''
+  hash: 0e2fe0bc6a28fea85758303a2d5d7f4c1bd9ed3bd94cf16a3949e4d019283271
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-casefolded: 
+  copyright: ''
+  hash: 68c2ba4f4238adf6c1f4cc83d97a6d86118310fd1a641c902e726a695aeb645e
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-casefolded-tests: 
+  copyright: ''
+  hash: 9baaec6610b0e6713ecc0958cac60f2e1784412f211761790f5a097c8a376a9b
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-invariant: 
+  copyright: ''
+  hash: ae4bdd6e40164c85318734c1bfe6ef2406abbf28449716826b5c0cc649dd667b
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-lowercase: 
+  copyright: ''
+  hash: 86a04c1cf14b6234eb58c1c135234d71ae2256ba11690fc0cc1a8383c07545af
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-lowercase-tests: 
+  copyright: ''
+  hash: 561f68eec7a8eca23fe5171edf84c4918d83f7475cf8ca9c8f31299f350e6d1a
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-titlecase: 
+  copyright: ''
+  hash: b51d2022ce7184d979eb3f2c7d7dfd06f5f56ba75835e6869ce84515d7079c3e
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-titlecase-tests: 
+  copyright: ''
+  hash: 6a34c1b561a32f53503cfe5a07e695178e19183100478a7b2830a7dc4aa352f8
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-uppercase: 
+  copyright: ''
+  hash: db114fe07115d41592da51c58b97db87937a0ab28faa8311b1fae5d4e459d4b1
+  license: ''
+  license_text: ''
+./modules/unicase/u32-is-uppercase-tests: 
+  copyright: ''
+  hash: 0b8dbcef01a430670d3ce5ad8f593b6d1d4939bc82726a9375133a366207b5c7
+  license: ''
+  license_text: ''
+./modules/unicase/u32-prefix-context: 
+  copyright: ''
+  hash: ccea335aabbebef46684ab14bc8367ffa7466f82dc077d57791f8bf74284784a
+  license: ''
+  license_text: ''
+./modules/unicase/u32-suffix-context: 
+  copyright: ''
+  hash: 6d3933ac2f59dfdc75c4410111751fd8c876980afb4a270f096a4e6463ca1f34
+  license: ''
+  license_text: ''
+./modules/unicase/u32-tolower: 
+  copyright: ''
+  hash: dc2e33f7d67efc2a63069eb52470379eb1fb354b9a41e9bd84340197db18d244
+  license: ''
+  license_text: ''
+./modules/unicase/u32-tolower-tests: 
+  copyright: ''
+  hash: 691fb04f472062f2627a45ef41710996ab9debbc2cdff9da3b7d7e1cc5da8f30
+  license: ''
+  license_text: ''
+./modules/unicase/u32-totitle: 
+  copyright: ''
+  hash: e3608640fe49bc79b180b9d61a6fe5831d7b68e28690b783490027213e19ecf4
+  license: ''
+  license_text: ''
+./modules/unicase/u32-totitle-tests: 
+  copyright: ''
+  hash: d5ae4231e55bfd01b9a9704cd4e87e501b87da49bf3f776920d0b82e7bbed79e
+  license: ''
+  license_text: ''
+./modules/unicase/u32-toupper: 
+  copyright: ''
+  hash: 2660d6b2ac72e7df1a91d5fb8fa4c8974f075e97adb2a126208fc56b22a009e6
+  license: ''
+  license_text: ''
+./modules/unicase/u32-toupper-tests: 
+  copyright: ''
+  hash: 397f91c63d6aa6541affbb2f2ef04c005c09f8d3a4c8fdb0452823387815be4e
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casecmp: 
+  copyright: ''
+  hash: ca4ae334574da6f0d193c4435b23567011df07932cbc9e4e632d8cbc4887f670
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casecmp-tests: 
+  copyright: ''
+  hash: 5e5bcc1b056e1356f0f621674949ed5a3a3767cbf58d54b88660100dd417af7d
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casecoll: 
+  copyright: ''
+  hash: c1fd7dd20afb27b0fb626c71dd16ee6e6aba9abcb2842d478ce3fc71a4a16864
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casecoll-tests: 
+  copyright: ''
+  hash: b1f44386f0f414be20755588ec32872a75be93ed22a3068bb5bf1bb5d5c05e9e
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casefold: 
+  copyright: ''
+  hash: 46d1dab9d4400496bf9758cc9b76090236c3770e9dd6a82a44e7c9e255be65f4
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casefold-tests: 
+  copyright: ''
+  hash: 700ded2af7d86b2be1884d3b296856d9d832eecb40b12fed9af935a587ef538c
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casemap: 
+  copyright: ''
+  hash: bfe7e7044899155138166242cd1c1db64f376771f29db7b9a6387bc5545a9caa
+  license: ''
+  license_text: ''
+./modules/unicase/u8-casexfrm: 
+  copyright: ''
+  hash: fd79cc18b0b31cd043b575383a74055c1ab4d434b0caf8cdefe71d549ada9c1d
+  license: ''
+  license_text: ''
+./modules/unicase/u8-ct-casefold: 
+  copyright: ''
+  hash: 92b28bcd3f8b164ce3db000d9c10827e2329ea8bf055c1311da885fcf11c7224
+  license: ''
+  license_text: ''
+./modules/unicase/u8-ct-tolower: 
+  copyright: ''
+  hash: acd32d2f285c193fd4cae9d56b4fe8f852186035b027ccf969417d5304ea6632
+  license: ''
+  license_text: ''
+./modules/unicase/u8-ct-totitle: 
+  copyright: ''
+  hash: cc8ed15b0ec76d44ca782741821bc796bd06da7fa9d5524ecd4af85339fd2f11
+  license: ''
+  license_text: ''
+./modules/unicase/u8-ct-toupper: 
+  copyright: ''
+  hash: dc730f64aae7b4a03dac0b92486a77107d5b189aea7196bfd0685c62c8df95eb
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-cased: 
+  copyright: ''
+  hash: 29346feb4d88b35da1965d8ceb74c33eb24ec3d7c6755e969d738c7d5e1861e1
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-cased-tests: 
+  copyright: ''
+  hash: fba92985ae9d2857e1f18ea30fa68404144e7a077ae17ab3f6b6d387630844bc
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-casefolded: 
+  copyright: ''
+  hash: 004823bf45232bd010b755640fc38539c68ba233137b104b79681107e562c28e
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-casefolded-tests: 
+  copyright: ''
+  hash: 263aed1238b1b7f1fc41747585b8558ba184b2943e6a0a5ed09254d8bceb70ac
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-invariant: 
+  copyright: ''
+  hash: 60948f10c3faf0e5f1e8c75d4e4755025178a0b7602665ec2b780b44e425331e
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-lowercase: 
+  copyright: ''
+  hash: 34edd9b8acf5ffb5cefdf629ba44424e2b4e5b06d2ced1ff3ed7fe8f98b4c066
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-lowercase-tests: 
+  copyright: ''
+  hash: 10ab7630b97d9a85a2133f08832a5930e9cb76ee4d5270ff237f8909b4f69381
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-titlecase: 
+  copyright: ''
+  hash: 6cf010e8975c0b9c31bcae09d35a46ccabcb6bf9e43268235b44f5fa2128b4a6
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-titlecase-tests: 
+  copyright: ''
+  hash: e9877102393d0dc188b0b0350ba436ab08caa492f344e9366c717badccdb9cba
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-uppercase: 
+  copyright: ''
+  hash: 4c431932e74d9e241b6cbfd96a8677648a83e12d8eb33be4c5bd0ca75ef02fd7
+  license: ''
+  license_text: ''
+./modules/unicase/u8-is-uppercase-tests: 
+  copyright: ''
+  hash: 8abdff1857f5cf37dccb010dfb0a602f9d17d959ae32eef30f100b85f28f0d56
+  license: ''
+  license_text: ''
+./modules/unicase/u8-prefix-context: 
+  copyright: ''
+  hash: 5ecf47ded622339828354fc0bd8227df80d61343f38be056ac262ac9c7edb6f0
+  license: ''
+  license_text: ''
+./modules/unicase/u8-suffix-context: 
+  copyright: ''
+  hash: 52db1dee2058019ca6d4feda74482cffbfc5a4a565b53177a9abbefe7dc08d81
+  license: ''
+  license_text: ''
+./modules/unicase/u8-tolower: 
+  copyright: ''
+  hash: be9d2bebe845bb7214ea19dfb26d4fe1e965a5f155b2c969dd4115bd76c577b3
+  license: ''
+  license_text: ''
+./modules/unicase/u8-tolower-tests: 
+  copyright: ''
+  hash: 9df460586be34534dbbb0b9c70dc0bb47627fb9753396d62476a4b614fa725b9
+  license: ''
+  license_text: ''
+./modules/unicase/u8-totitle: 
+  copyright: ''
+  hash: 85a1ae83366e9c279164785a0942861e11250e991d68a9941e8456b5d5091689
+  license: ''
+  license_text: ''
+./modules/unicase/u8-totitle-tests: 
+  copyright: ''
+  hash: 8925b3a190c422e6f0d9e31d19ab54caf4a8887690a5b620d641c5017370f1f3
+  license: ''
+  license_text: ''
+./modules/unicase/u8-toupper: 
+  copyright: ''
+  hash: 6fe8062fb2f1159eef3335ce57152d96b2e90f841a93268a327eb9b33d4b7dac
+  license: ''
+  license_text: ''
+./modules/unicase/u8-toupper-tests: 
+  copyright: ''
+  hash: 564156d657eeb5d102cf153ea549d993603c9ff628bd973bfe800f57d1a679d2
+  license: ''
+  license_text: ''
+./modules/unicase/ulc-casecmp: 
+  copyright: ''
+  hash: 68c2c9ee2d34116f51d3455d0132e2c2b075668f72d776d04eb5690a70358676
+  license: ''
+  license_text: ''
+./modules/unicase/ulc-casecmp-tests: 
+  copyright: ''
+  hash: 585ee94daa40b366d603f34b7b173a34a1b8964fe5c56cf2c35050919a4d44c6
+  license: ''
+  license_text: ''
+./modules/unicase/ulc-casecoll: 
+  copyright: ''
+  hash: 909fe97e8c38d2c720cb273d484a279f01bc645915baa123ded5c62b6e8f782b
+  license: ''
+  license_text: ''
+./modules/unicase/ulc-casecoll-tests: 
+  copyright: ''
+  hash: 3aa05820f48ae55daebe731221cd5d0df5ec9529d0a600c7d7b206b32fdef9c0
+  license: ''
+  license_text: ''
+./modules/unicase/ulc-casexfrm: 
+  copyright: ''
+  hash: 80c074f7cefa5fe6db0f329a84821f63a62f1be16f6186352a47e63e92e4fe5b
+  license: ''
+  license_text: ''
+./modules/unicodeio: 
+  copyright: ''
+  hash: 4333a8ae7bc04faa921bfb89db8fe32b88be80b215f2472f2bc7a68652de0dbb
+  license: ''
+  license_text: ''
+./modules/uniconv/base: 
+  copyright: ''
+  hash: 50d3e96212a8941485ac49045d1b2d9a621d2e31818e8c00408f034d2017e43b
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-conv-from-enc: 
+  copyright: ''
+  hash: c46131ff4aa3a2106a7a1339801be9af40b215349485b7e0c4e6a36b6f4ff1c4
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-conv-from-enc-tests: 
+  copyright: ''
+  hash: 472e10a2772a1912b22ae6a1c68afbf664f725de5c5df3e3cdba23f9f204d64e
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-conv-to-enc: 
+  copyright: ''
+  hash: d4074a6bb0f69e6645106a507c446abf11a81f25e5e5557a51791d353716cef4
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-conv-to-enc-tests: 
+  copyright: ''
+  hash: 9520afbe67376243ccb7117be073ad4d81d6a2f0e8c091de74830ff5cf55efc7
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-strconv-from-enc: 
+  copyright: ''
+  hash: e66be9d71e6bf985c519af717648ae35ee39fd7dc2cf4a41954ec7b911b58386
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-strconv-from-enc-tests: 
+  copyright: ''
+  hash: 8f56873fd4d0d3179d47b0ccd34640859f3d03d04a46f6dcc8000581d84d475c
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-strconv-from-locale: 
+  copyright: ''
+  hash: e7d3a887f18ea4704b8382f80154d1a8ff4b1f3ad8bdf3daa8780df3f5fb0794
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-strconv-to-enc: 
+  copyright: ''
+  hash: 804a6b8458959515baa0ade9234305472d8ca4489645997a233a770ccfa3db38
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-strconv-to-enc-tests: 
+  copyright: ''
+  hash: b2e5d8c2f8ffcfd1d28486a5bd1040fc1ca57eeabcc21ea302c2812afeb77cd4
+  license: ''
+  license_text: ''
+./modules/uniconv/u16-strconv-to-locale: 
+  copyright: ''
+  hash: 455b9eda97528d3fed7c2192b1c5d598f08b8e0c3c7908b70105a59cc9a5e712
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-conv-from-enc: 
+  copyright: ''
+  hash: b773a682f169e27a916669cb459f8929157695299844f7ad0b5c8ca1b07c9d98
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-conv-from-enc-tests: 
+  copyright: ''
+  hash: b7a87e6d1fc76ab5af93ff1ec14381b3b5fa556301ce03944b16ce80fa3a474d
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-conv-to-enc: 
+  copyright: ''
+  hash: 5f329346c8a18e1cddb439eeab4e40485158bbec7bab75fda688dea2459980f1
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-conv-to-enc-tests: 
+  copyright: ''
+  hash: 3124b5d26aae7637bbd24af36baa31150343715f56e7871635a468dd8466baa3
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-strconv-from-enc: 
+  copyright: ''
+  hash: 359ebb5cc74fc82ed45796edf491764c8f7e83e20b6dacc7d13e5416c3e471d5
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-strconv-from-enc-tests: 
+  copyright: ''
+  hash: a0a2e6dc86862e28989f20c4ddaa34e8223c809f806cd72cd6640178ae8b5cd1
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-strconv-from-locale: 
+  copyright: ''
+  hash: c011f0e8d5e5e2f63a61b369538cd266305938147e2ab39f73c5e3784c8d735b
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-strconv-to-enc: 
+  copyright: ''
+  hash: 5d6453b129313ce2c2d717d648d8b8e45489abbbd3955c02810b5a7572b9b719
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-strconv-to-enc-tests: 
+  copyright: ''
+  hash: 8f88075d042c44e2aa42892fa09fa9af6430a420fdaac65c1b38a23fa6fab98e
+  license: ''
+  license_text: ''
+./modules/uniconv/u32-strconv-to-locale: 
+  copyright: ''
+  hash: 91ad7c7e746794b8c39d48ff6d86f66be144aff2dcb4ce7a47b2d0309f743704
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-conv-from-enc: 
+  copyright: ''
+  hash: 804e9093cbca9f80897ffa3c0fd7a241fbe11ba1ffba444784d6e42d0356c977
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-conv-from-enc-tests: 
+  copyright: ''
+  hash: 352f9ccc88acaabc9a51eba5d6a0ff8e28e22f469b191bc49c1bc98977f5bec0
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-conv-to-enc: 
+  copyright: ''
+  hash: cc7c4c9d46ffdc0195647b7eece0c79fc431097740a27bcdef04b2c7cd2e6526
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-conv-to-enc-tests: 
+  copyright: ''
+  hash: 3ea5f97d358e1d8b795d46d69f34aa29ea7c433a36855e8806a6dfbfea298f89
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-strconv-from-enc: 
+  copyright: ''
+  hash: 5e258f26c0b35883b6b9bec42d435ab74abc790026b28b0011349c63723f84c5
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-strconv-from-enc-tests: 
+  copyright: ''
+  hash: e2d97875d2e2efad64b3c5b95a2ab213f85221612cf878b28a659b50f6ad1e5a
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-strconv-from-locale: 
+  copyright: ''
+  hash: c956a8c27cb3e458b463f4e91d841246c7a6ae91891cdd9499a57b3b48ed9dd4
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-strconv-to-enc: 
+  copyright: ''
+  hash: b19a1d9c1504bb80aa9cd09ccbffaaf0a945434256e26d6c6429afcee0e16bd4
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-strconv-to-enc-tests: 
+  copyright: ''
+  hash: 74ba81dad04705f9bb90d5907e722a799d9edb194320dcd893dcbb04489b8618
+  license: ''
+  license_text: ''
+./modules/uniconv/u8-strconv-to-locale: 
+  copyright: ''
+  hash: d775764fbd80cf47c97204c533f0bac9bfb7c1d68ed1c5281a558e905aca1ea1
+  license: ''
+  license_text: ''
+./modules/unictype/base: 
+  copyright: ''
+  hash: 4e1cf149a4cc5d587b34fd6d92440d314b2af3393dfd0a61b4a15174e34bb77f
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-all: 
+  copyright: ''
+  hash: 632ad012575ff81135aad7e11721e8ed5468908229d9ee70f9a3f26de61c0a4d
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-byname: 
+  copyright: ''
+  hash: 09674c570ebb614f743ba480be41e7594d43113441387f5559c2ceb7b436f156
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-byname-tests: 
+  copyright: ''
+  hash: 37431bc97e0f6d78ce420c06b21cabcf68769652511504ab8d1039801a9ec07f
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-name: 
+  copyright: ''
+  hash: 6b7c212cdc0f09083c9e15b6c7828faae41878570511f81d229ada75fe8ca833
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-name-tests: 
+  copyright: ''
+  hash: 1f692ec85934508818f0e9455388105761ec91d7b8651deb5821c715b5955583
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-of: 
+  copyright: ''
+  hash: df49d7be4ac72c665f506751c8f93dc7924128b5c1b30057ebbb80e80d7c07d8
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-of-tests: 
+  copyright: ''
+  hash: 0df5b16f511b104b64d2a64bcad6a61c8334903b7f0fa240e3245366692e9ebc
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-test: 
+  copyright: ''
+  hash: e04b555d948c988f298ed25f34bdac22386c23bdfcf2543516f4641c1f39d8dc
+  license: ''
+  license_text: ''
+./modules/unictype/bidicategory-test-tests: 
+  copyright: ''
+  hash: ee67d7005fc35e3fb828c820d0b3d7c19d38f941aa7bf6099c498543c567dfe5
+  license: ''
+  license_text: ''
+./modules/unictype/block-all: 
+  copyright: ''
+  hash: bdfff6be11a258cb47ab7a8bf6178d7d7114512a689a521a4953ee93896992d0
+  license: ''
+  license_text: ''
+./modules/unictype/block-list: 
+  copyright: ''
+  hash: 79571465a0c92e50f110cee696a8897e1960025526b1f2ebcb85b4d1e85419e2
+  license: ''
+  license_text: ''
+./modules/unictype/block-list-tests: 
+  copyright: ''
+  hash: daeb13d7d8249409a86aca59f29f900a224a8dd687906034467e7acfe4abaab9
+  license: ''
+  license_text: ''
+./modules/unictype/block-of: 
+  copyright: ''
+  hash: 7a84f72f56b616480823c9145721e8a26adf4238ab1a3119781b9fbdef69c6b4
+  license: ''
+  license_text: ''
+./modules/unictype/block-of-tests: 
+  copyright: ''
+  hash: cbcc5b54e996690827b7460481468e4d1b8ef456588d2211296bd1442151a510
+  license: ''
+  license_text: ''
+./modules/unictype/block-test: 
+  copyright: ''
+  hash: 82f1e702e237268a7d1acf7963b035db43cc7f83816b40aa62da8ba990bf806a
+  license: ''
+  license_text: ''
+./modules/unictype/block-test-tests: 
+  copyright: ''
+  hash: 2c8ab641903b6c1bf1ef067359f59acc62938576a819aff154170166cbf468e4
+  license: ''
+  license_text: ''
+./modules/unictype/category-C: 
+  copyright: ''
+  hash: b50f0ee64a86121ee994c6f0b630f23efd1865a08e792be1feb051cda4729a1a
+  license: ''
+  license_text: ''
+./modules/unictype/category-C-tests: 
+  copyright: ''
+  hash: a65b4f3c13e24ce5097984842008e38e3d0376410f7440b12efd00bcbf0e228b
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cc: 
+  copyright: ''
+  hash: 8ddd6768f801ea69a4c257bfaf3f185a20f151b01dcd2d27f43a05dd22d7a288
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cc-tests: 
+  copyright: ''
+  hash: f8aaf65656f005829d0cedebea1b5e64724d10961760d90965f21ede7be9ed8d
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cf: 
+  copyright: ''
+  hash: 3820a40d604e9af2a925220231c4f94c688f10240e1b918aedda94c19f63f42d
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cf-tests: 
+  copyright: ''
+  hash: 9cb0efdc2747f61dbdf9d152c2e9aa9435a602c03fe88a162ca602d4d17fc2dd
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cn: 
+  copyright: ''
+  hash: b686b3ffa74ae9bf11fe7c3edd11d051c9532e49ff8bcaf8681a815a91dc2dda
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cn-tests: 
+  copyright: ''
+  hash: d91ee0666b67145ef883bf1cc95deec3f918b0080befd8f5ddcfad3c19789f93
+  license: ''
+  license_text: ''
+./modules/unictype/category-Co: 
+  copyright: ''
+  hash: 6b6e944701acde3db6b942a62d48b1a4a7c46810b96a5c49f385ee6c9b27ac9c
+  license: ''
+  license_text: ''
+./modules/unictype/category-Co-tests: 
+  copyright: ''
+  hash: d873cf764c6a47ea7ee5f2d72407373de8f970043e9263270008e67b731f8e25
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cs: 
+  copyright: ''
+  hash: f176ebb894fc40328b46d9fa4a72d8f165276f1ec6839db1f25cb4fc0c73620f
+  license: ''
+  license_text: ''
+./modules/unictype/category-Cs-tests: 
+  copyright: ''
+  hash: d151c46f4827e266335ed4ec6cdf187649eda552000ea99975eda0d8772ac3d4
+  license: ''
+  license_text: ''
+./modules/unictype/category-L: 
+  copyright: ''
+  hash: f5869373405431b090effa65191e784d1a69e6b6b42a886bb9df656a5ee02413
+  license: ''
+  license_text: ''
+./modules/unictype/category-L-tests: 
+  copyright: ''
+  hash: ea767cac4c3bb427c1b2b182b5c1b46f63cff6f5681b21f9d06680ef355ba8e5
+  license: ''
+  license_text: ''
+./modules/unictype/category-Ll: 
+  copyright: ''
+  hash: 03f83b90f827cb120251bcbe842eaa084e7cdb38489c334929b938268a12471e
+  license: ''
+  license_text: ''
+./modules/unictype/category-Ll-tests: 
+  copyright: ''
+  hash: af6bca72d7cc585c103c7a027820119a48cb5acaf4aee212fbb217c9c00ff3c7
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lm: 
+  copyright: ''
+  hash: c166f5182990d42f606eec6fa97b95b8ce1df5876241fdaa12f1a11743b2aab1
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lm-tests: 
+  copyright: ''
+  hash: 71473868edc5241c85418fce441b7013525978d62e67cbcfe0fec9dcddfd2b57
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lo: 
+  copyright: ''
+  hash: 67158963c6e0a345ee9bc0d5c065c4c18a7168b5879737172cd1112d72c4591a
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lo-tests: 
+  copyright: ''
+  hash: 0c158f7fa0611249fba73685a045cb373bf649b0635c6e872d3eb980dc1b21a1
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lt: 
+  copyright: ''
+  hash: ee79e9d68d1912c787845696834c42487ba52a0cd3b36aa84653deb1322e490d
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lt-tests: 
+  copyright: ''
+  hash: 11f268108f2bb9d1606114611cb44960e4662fa9f8198acf4fd60da549accf78
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lu: 
+  copyright: ''
+  hash: 0a4eaa83dcddd00b34c73ca983f04117269bf5bfa158fa0d89832be5094b4d90
+  license: ''
+  license_text: ''
+./modules/unictype/category-Lu-tests: 
+  copyright: ''
+  hash: a0dac69a29c09411c98a76369af5b198ea84aac0b398a3b4ae86971b79ee9126
+  license: ''
+  license_text: ''
+./modules/unictype/category-M: 
+  copyright: ''
+  hash: a7a00a68742ea377e8acc7abdbc8be4e68d02f21b0620169f59307388032c4db
+  license: ''
+  license_text: ''
+./modules/unictype/category-M-tests: 
+  copyright: ''
+  hash: 577a796ee3c175c3259e994317d9aed54c5933c67d0a83f6bd9fc8e5850cc9a9
+  license: ''
+  license_text: ''
+./modules/unictype/category-Mc: 
+  copyright: ''
+  hash: 71c90dc0adcd33bf142b74d95207976f76732c2cb30772cfe56370e1c91ed7eb
+  license: ''
+  license_text: ''
+./modules/unictype/category-Mc-tests: 
+  copyright: ''
+  hash: 431977d8c1cb9d82897fbdd9a08deef510b682fab7f6159e7fc216c38c1e8e9a
+  license: ''
+  license_text: ''
+./modules/unictype/category-Me: 
+  copyright: ''
+  hash: a2767f24d3e738ee3492d2d932bbefab6f7385cc599baeb7a8a086b091617d2c
+  license: ''
+  license_text: ''
+./modules/unictype/category-Me-tests: 
+  copyright: ''
+  hash: 35bbc1fda018e0b791449c5008793296c3a3e62eda8bf2e0e88bed08a2dc9d1a
+  license: ''
+  license_text: ''
+./modules/unictype/category-Mn: 
+  copyright: ''
+  hash: 9c497c87637eb462f82eda98acec5373e61fba83ee7ec2c427de7b035973fa34
+  license: ''
+  license_text: ''
+./modules/unictype/category-Mn-tests: 
+  copyright: ''
+  hash: c00bff9f96b47ab9816b2c9a96f2c47b80d0752a80bb67654788f43859461d1d
+  license: ''
+  license_text: ''
+./modules/unictype/category-N: 
+  copyright: ''
+  hash: 2bfe868358d181bfd867763536ff7f3bb0f44291e6e03929da90d0d120400092
+  license: ''
+  license_text: ''
+./modules/unictype/category-N-tests: 
+  copyright: ''
+  hash: c23cbc138890321fd3fdb198b39f748116f9238cf675f52255977b6d45721ee7
+  license: ''
+  license_text: ''
+./modules/unictype/category-Nd: 
+  copyright: ''
+  hash: d2b53e39c388911f4942747fc095dfb19a39f66203827f697c4ae977c9a4c583
+  license: ''
+  license_text: ''
+./modules/unictype/category-Nd-tests: 
+  copyright: ''
+  hash: 63f97050d8f2145d4b9c1e662044a192ff4d734ed2cff11a3d7cb2f48830492f
+  license: ''
+  license_text: ''
+./modules/unictype/category-Nl: 
+  copyright: ''
+  hash: 2c97eed29932465ae99eaff40da7232f77ee20bebe9743b3a5e7ce90d317a910
+  license: ''
+  license_text: ''
+./modules/unictype/category-Nl-tests: 
+  copyright: ''
+  hash: 1401df484ceba15e90ce4fcdf480b3e089a3275e8b913efbb46db266cf6177d8
+  license: ''
+  license_text: ''
+./modules/unictype/category-No: 
+  copyright: ''
+  hash: 3397e879fc6577306d2fe96f9cdbe3a0a86c9ed66024645d234845212359aea4
+  license: ''
+  license_text: ''
+./modules/unictype/category-No-tests: 
+  copyright: ''
+  hash: 2a89303b56ce7233f8d856dd764d8ac0a5ded572ef43e8bc2fe133fe627f2d85
+  license: ''
+  license_text: ''
+./modules/unictype/category-P: 
+  copyright: ''
+  hash: 89beab2585b3809a28361467d0b2a72d39325830bf80777af3fe0897b3e8f81d
+  license: ''
+  license_text: ''
+./modules/unictype/category-P-tests: 
+  copyright: ''
+  hash: 8df51034f7e890e668b22a22d07a297b15c0e01cc85b073962d2598adb02781f
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pc: 
+  copyright: ''
+  hash: baec1ce567b94017943677ccd928abfbbfbe0fd8c3734619eb83fe5c97aeb88e
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pc-tests: 
+  copyright: ''
+  hash: 08ac7a0073c001eb0357900f764e29214a2e996a07da7b72cac05dd1a6695188
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pd: 
+  copyright: ''
+  hash: c69b1aa58dbacb75dd27403d35d2ab221f4f8d4275b9bbec105498b201dd447e
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pd-tests: 
+  copyright: ''
+  hash: 0b164d7f16c3ec72454fa87fe962e93e7548c0f60cbc54a25a94f28444e95dc9
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pe: 
+  copyright: ''
+  hash: c930640ce04a7798a64dd30bbc66a35ac09088f561aec806d11ceae4cd3003c3
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pe-tests: 
+  copyright: ''
+  hash: afae91619e0b047a38295ae48bc0fd18560f48d16b018bf24050eab24a4b41d8
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pf: 
+  copyright: ''
+  hash: 1733b390e82ece48e63ae4e7c1445ce652192926eaa57566eaf5c3623deafcbb
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pf-tests: 
+  copyright: ''
+  hash: 01a4afab769af5dae8d7f1a13a2df2eb8108250e5876122560f46d13309ce3ed
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pi: 
+  copyright: ''
+  hash: 4cf8b1ef413c59c2ac665b277476526f48e614fb23e9b19b3481e86af728e62c
+  license: ''
+  license_text: ''
+./modules/unictype/category-Pi-tests: 
+  copyright: ''
+  hash: f4a65dcf759d18b45032f2a6f2f45c6e8b132f9e2453532b581816a208fe392d
+  license: ''
+  license_text: ''
+./modules/unictype/category-Po: 
+  copyright: ''
+  hash: d52f4465d5fd2beb1e22120866a103b5482d3932bedae9c0898cd78da58dedcb
+  license: ''
+  license_text: ''
+./modules/unictype/category-Po-tests: 
+  copyright: ''
+  hash: 76a5d75e2d40dc3319f0fee99c21bfae46838612062409782f9033eab9f560a1
+  license: ''
+  license_text: ''
+./modules/unictype/category-Ps: 
+  copyright: ''
+  hash: b04f01af08d6326b4d8ef8fbf5bd9b199dbadbffc4234d2d7233dafa424c25cb
+  license: ''
+  license_text: ''
+./modules/unictype/category-Ps-tests: 
+  copyright: ''
+  hash: a1c9597abf14374fbdf86528dbfc850e867fd217d1c1b024139c6dee3a79aa04
+  license: ''
+  license_text: ''
+./modules/unictype/category-S: 
+  copyright: ''
+  hash: 3b1f6fe997bd2a5b457bad45930b2f0347be0f6392cbf0ce864c0df37f6835a7
+  license: ''
+  license_text: ''
+./modules/unictype/category-S-tests: 
+  copyright: ''
+  hash: 16bb3a0a6ab8c9af9d79ce7425b8b8d2ae3d6151249988b73d622c7c5b7a7de7
+  license: ''
+  license_text: ''
+./modules/unictype/category-Sc: 
+  copyright: ''
+  hash: 6eb49b9fa984148e7370fb7cf238b34303dc2713452f854d289d119beda4d0a6
+  license: ''
+  license_text: ''
+./modules/unictype/category-Sc-tests: 
+  copyright: ''
+  hash: a4ca01545a5c388f10de42be48b57b7bdf6c2025f297183c4e09138c64c3e9e7
+  license: ''
+  license_text: ''
+./modules/unictype/category-Sk: 
+  copyright: ''
+  hash: fc08600f54e46b801537fbb2282bf602d46c3eae8eef49fde48540d800f5ea45
+  license: ''
+  license_text: ''
+./modules/unictype/category-Sk-tests: 
+  copyright: ''
+  hash: 0af20842d317e64eaed4d4cac1d29f1057f07218e7bd54e0308882d5e245164b
+  license: ''
+  license_text: ''
+./modules/unictype/category-Sm: 
+  copyright: ''
+  hash: e61490e30f1edf81b4e66dc4d0c3527aa343e35173dc55dc5485c084f1ee0f4b
+  license: ''
+  license_text: ''
+./modules/unictype/category-Sm-tests: 
+  copyright: ''
+  hash: c5e37d4c9c1393eda2c620a82f5b375566fb0f9995fc5441f2093f30ccc3166d
+  license: ''
+  license_text: ''
+./modules/unictype/category-So: 
+  copyright: ''
+  hash: a3dff7aa78b2315131bc3318189b8d9a8e6b06793fc849c3994be974b035a253
+  license: ''
+  license_text: ''
+./modules/unictype/category-So-tests: 
+  copyright: ''
+  hash: 49c2087f7b9afff2491ecf214c89e44009b358b14b5b9d869b54f0c0c92a361b
+  license: ''
+  license_text: ''
+./modules/unictype/category-Z: 
+  copyright: ''
+  hash: ca060713544186ac2208fbdc02c6dbae13dc78dcd0445d53d62d4e02ba9023ab
+  license: ''
+  license_text: ''
+./modules/unictype/category-Z-tests: 
+  copyright: ''
+  hash: 61ecd265cb17d3e856e153b5b091186a9ab9909a9a66788d066d277af58ceace
+  license: ''
+  license_text: ''
+./modules/unictype/category-Zl: 
+  copyright: ''
+  hash: e3d90459eb2e48d1e5c764da67c517e8e9ebd43793276d784020dcbae9ff7d0c
+  license: ''
+  license_text: ''
+./modules/unictype/category-Zl-tests: 
+  copyright: ''
+  hash: 4c9ef314a9b6cab23d2d6f2d0444d4fe9b7f9954af49e0bd6e7030994aec127b
+  license: ''
+  license_text: ''
+./modules/unictype/category-Zp: 
+  copyright: ''
+  hash: 5864d79e3b057201ad88484f89888d7714eb13334438ec9cadb7240ad3663147
+  license: ''
+  license_text: ''
+./modules/unictype/category-Zp-tests: 
+  copyright: ''
+  hash: a0c6723ba2159e4987e988da7fb8913ac6b460b690267332a75fbf451c458216
+  license: ''
+  license_text: ''
+./modules/unictype/category-Zs: 
+  copyright: ''
+  hash: 5981c5e91908b4fdf5033b2606eaa690522fc36d1bdbb6b60bf7ef9d8fdc8e43
+  license: ''
+  license_text: ''
+./modules/unictype/category-Zs-tests: 
+  copyright: ''
+  hash: 38745f1e1cd5b9242a9413a1e3d25ba47a20404f3cc3cb4b318a28f4ed9c931d
+  license: ''
+  license_text: ''
+./modules/unictype/category-all: 
+  copyright: ''
+  hash: 3d894bc3558f7fdf0760387f32b9627717dd24428a19a48cb411f113efeebace
+  license: ''
+  license_text: ''
+./modules/unictype/category-and: 
+  copyright: ''
+  hash: 78d599519e1b4077a85a754c8a76b52e924d7df2d790839ae0ebf2bf50cdd7de
+  license: ''
+  license_text: ''
+./modules/unictype/category-and-not: 
+  copyright: ''
+  hash: 35825dba1e5244e4c37a040a16cf1cd5f5a37e7e561855a07cba4c3776ace911
+  license: ''
+  license_text: ''
+./modules/unictype/category-and-not-tests: 
+  copyright: ''
+  hash: 5dfcd8920d40b91371b3d4fec6cb0452bcd2864024e1e5a4544b9e2097e2f425
+  license: ''
+  license_text: ''
+./modules/unictype/category-and-tests: 
+  copyright: ''
+  hash: c538067c2d779faefd644adddf042cab9032a40dfeb4b6b03c38378351d63311
+  license: ''
+  license_text: ''
+./modules/unictype/category-byname: 
+  copyright: ''
+  hash: d0a9fe6bb6d1837f702eb144212981a3a2eb06af802930b189f942340510b510
+  license: ''
+  license_text: ''
+./modules/unictype/category-byname-tests: 
+  copyright: ''
+  hash: a57b1223530e502aa4f0bda361a12a55a0b0fcb599b6bf8754677488da057fdf
+  license: ''
+  license_text: ''
+./modules/unictype/category-name: 
+  copyright: ''
+  hash: c23bcf4c0d06378f9bcb6f131fcbc90b2e2448ca7f1bf4063a0c6295027d6357
+  license: ''
+  license_text: ''
+./modules/unictype/category-name-tests: 
+  copyright: ''
+  hash: 7bc548fea282ac4604a59a95f585d192923453eebc02372e3e9c5fbfc5eaae15
+  license: ''
+  license_text: ''
+./modules/unictype/category-none: 
+  copyright: ''
+  hash: a9a1ca41387b91edd2cb62516ca9f94270303decde97b0347da52b92cfb3855d
+  license: ''
+  license_text: ''
+./modules/unictype/category-none-tests: 
+  copyright: ''
+  hash: 31f1e4a827d204cb2b470d75671dd835a8c32e7b3f833dc0401b99385640e8d7
+  license: ''
+  license_text: ''
+./modules/unictype/category-of: 
+  copyright: ''
+  hash: 974c856b996733c9d314f0be7d8691b914f945479c3c11e93f250c193f3d1c65
+  license: ''
+  license_text: ''
+./modules/unictype/category-of-tests: 
+  copyright: ''
+  hash: 42839935bfd2e81a9d235055b7a3d0bb5562941eb78842488e058ed792556e54
+  license: ''
+  license_text: ''
+./modules/unictype/category-or: 
+  copyright: ''
+  hash: 35a47dab7b419c5deeef431fdc78ccd7cd5baedff94a686cce22bd798a1b8597
+  license: ''
+  license_text: ''
+./modules/unictype/category-or-tests: 
+  copyright: ''
+  hash: ac89764c8c50ee585d731aa7819be10f9ef249e7dd239257f5b84613465664aa
+  license: ''
+  license_text: ''
+./modules/unictype/category-test: 
+  copyright: ''
+  hash: bdb12cdfdc6ca2d35807024262d2c16ba98f449bafcc711851696ba12d67a2c1
+  license: ''
+  license_text: ''
+./modules/unictype/category-test-withtable: 
+  copyright: ''
+  hash: b98b240c52fcb6378a2e2183e87e231efcaf7d74e9d474946233426a26805950
+  license: ''
+  license_text: ''
+./modules/unictype/category-test-withtable-tests: 
+  copyright: ''
+  hash: 522643348eaa5859383a5edca5d2db6080d726910779860e6050007c2478aa6c
+  license: ''
+  license_text: ''
+./modules/unictype/combining-class: 
+  copyright: ''
+  hash: ddc3c9d9a846292bc778c0a79e60224a20c590b26eff7bf2e6202e7a328fd171
+  license: ''
+  license_text: ''
+./modules/unictype/combining-class-tests: 
+  copyright: ''
+  hash: 721daeb2b85c77f8850103e61c3793bfbb07f6cbcabcd0430d30ea9cffb94772
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-alnum: 
+  copyright: ''
+  hash: 28a03adaf78b611fb05f9d5f78226e3a99a6ae085731ebe361b0aab7d8f94825
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-alnum-tests: 
+  copyright: ''
+  hash: c7fb14f6421f17a0720c0c34eb38f5f2d50786684ed1100d728dc1f124eefd89
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-alpha: 
+  copyright: ''
+  hash: d2a481c195d984e352e58239b85d1ddaf9f50d109bfc6b85d907bd4bd8ff5c70
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-alpha-tests: 
+  copyright: ''
+  hash: 3a9e921bc71d352cd00edcb0989bf5af3a4d672d7240fc0393d961167dacdc69
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-blank: 
+  copyright: ''
+  hash: 9e2f1712d6c03d450a89009a89e1750349abf6dd9163fd04937253d1c6b1eeeb
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-blank-tests: 
+  copyright: ''
+  hash: fe2889d3f3ad667d7f0e4aedc581223a1acf2cd8c8a9cff60885bc6bdf3c21aa
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-cntrl: 
+  copyright: ''
+  hash: b736a6527db0df045f1a2a16e1c51ef476a5ba707474329da33044a83dc2c327
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-cntrl-tests: 
+  copyright: ''
+  hash: 83b6d1d0acb5a7c3da3946f0b0cb03c5572989603ab445584f3fda5845a5ed02
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-digit: 
+  copyright: ''
+  hash: 879caa1322c752ed06df6f6afccdf849be9a45fae67ffcd886e4f62d1d1873af
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-digit-tests: 
+  copyright: ''
+  hash: 9bba9eeaa2f45a9f026e15777cc135139eb71442bb412b37fdb4e46fa500e9fa
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-graph: 
+  copyright: ''
+  hash: 2ef3938dac0ccae7cd506f4eefe1cea71cf7ea01d9f50167db24ab4fc82630bf
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-graph-tests: 
+  copyright: ''
+  hash: 9d9985cdaf34dbd1f8fccc53f50602ad560a24b52b609cd597d48edee014e5db
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-lower: 
+  copyright: ''
+  hash: cb1767e556918f8841464940f550a8733704f8c2391c3a33bde89aa075ed1595
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-lower-tests: 
+  copyright: ''
+  hash: 7bd4bc7286c52bdba174f606bdd39e3c2a14425f04ad20ed8a60db863dd16860
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-print: 
+  copyright: ''
+  hash: 95c3ffb5695aef3e47bc444b773f9501046ee4e96ac74e84b09b4a12ae63925c
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-print-tests: 
+  copyright: ''
+  hash: b5a5e2c93714cc8f44d2cc834cc4cab1965805b0a5a696f660c6d5425a10f1b4
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-punct: 
+  copyright: ''
+  hash: 30c5dc47e071bf7e13e768ec0f5631adff4a0644593e492309fa155a96f1e52b
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-punct-tests: 
+  copyright: ''
+  hash: e24e81e32e48af4f3ad62568023d96b33656602f4fa1121388095c339e328410
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-space: 
+  copyright: ''
+  hash: 134adf6d350636dcc21ff680625983b7bfdebdb584d7c7aee7a61f29a0dd813d
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-space-tests: 
+  copyright: ''
+  hash: befbdd7e9998b90e42ff81474eddde0d21e53a4662d9b050b0cbde1c5766ad06
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-upper: 
+  copyright: ''
+  hash: adaaea05b0f82c25ef35b9fdc70271711a42ec215908956e8d1970599590c2a0
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-upper-tests: 
+  copyright: ''
+  hash: 9d3e9c8860829c6cf56788691f4307bfff11c649ee4d1ce07eebc78b5c63aa48
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-xdigit: 
+  copyright: ''
+  hash: 1fb0f1a57bfadfe1a05375fa49d9ad6029bc63ee4e098e4f19ecfe016569cfb8
+  license: ''
+  license_text: ''
+./modules/unictype/ctype-xdigit-tests: 
+  copyright: ''
+  hash: 348d4f2ad199d3bcbde3a850acb6cb041407f5304217938e0faa94b4e077e245
+  license: ''
+  license_text: ''
+./modules/unictype/decimal-digit: 
+  copyright: ''
+  hash: 27a248b33a996430ab76dd33f15d79fcdd448e1a4202bb7ed145a2b325b93214
+  license: ''
+  license_text: ''
+./modules/unictype/decimal-digit-tests: 
+  copyright: ''
+  hash: fa2674a0a7049241f0054d7b9c4623acc719139c38030cd634da820051e5a94d
+  license: ''
+  license_text: ''
+./modules/unictype/digit: 
+  copyright: ''
+  hash: 37d63645cee12e3fc8e07940e3269b4aa6efd28a98514ff313d47dd94986cfab
+  license: ''
+  license_text: ''
+./modules/unictype/digit-tests: 
+  copyright: ''
+  hash: ba1b48a196743f9c600944082c7a409dbf866ac6bdbe6905542d9d31beb520f0
+  license: ''
+  license_text: ''
+./modules/unictype/mirror: 
+  copyright: ''
+  hash: 737907a60001d13647093663b873a0144496be541a6a5bc1420eca09f460aff9
+  license: ''
+  license_text: ''
+./modules/unictype/mirror-tests: 
+  copyright: ''
+  hash: 43be5a05c0d2ad239dadc2f8b4e8d6499fa7cd8fa4b5b849978b2998033365c8
+  license: ''
+  license_text: ''
+./modules/unictype/numeric: 
+  copyright: ''
+  hash: c18f6cfbe3f5da5d1ea97acd5c9f5ee7c729f20bd4e351a779a2faa3890bcc21
+  license: ''
+  license_text: ''
+./modules/unictype/numeric-tests: 
+  copyright: ''
+  hash: c51267b606dcccb38fb491732dcca3c0b80f59046b789fa1ae525f3be85886d7
+  license: ''
+  license_text: ''
+./modules/unictype/property-all: 
+  copyright: ''
+  hash: e4780bf1987d881bf983458a649dfffaf5c7a9cc9ef41613c0befa7dbbdde0c6
+  license: ''
+  license_text: ''
+./modules/unictype/property-alphabetic: 
+  copyright: ''
+  hash: a298ca9e2446afd6c699d1040bf10752950ce171a4606dd0534a21f11e852f19
+  license: ''
+  license_text: ''
+./modules/unictype/property-alphabetic-tests: 
+  copyright: ''
+  hash: f73ca732355c1fd5db309eb5d710b0333dd8ef095c1ed22c7445fda713c3e3d7
+  license: ''
+  license_text: ''
+./modules/unictype/property-ascii-hex-digit: 
+  copyright: ''
+  hash: d8ce7d0410e2ca14e80a434995b1525da57d8780f13ead5ed771427b103db01d
+  license: ''
+  license_text: ''
+./modules/unictype/property-ascii-hex-digit-tests: 
+  copyright: ''
+  hash: 6e6fa210fc93fc3226b7ba0791b2399217a9bc54d5dc07ffa358d164e06ef704
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-arabic-digit: 
+  copyright: ''
+  hash: e7f84b609149feaab428e1216e31384be4d3bde3b55eb1ff233311b9b425b45a
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-arabic-digit-tests: 
+  copyright: ''
+  hash: 5098b091adb529cb5e8ebb5baa2888d60c483624df246cbfe7bb3994c8c43a97
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-arabic-right-to-left: 
+  copyright: ''
+  hash: 277b27f8d4b98eab3ce66c0ed69393b5c0f705e4a316cf3fcbc2a1d9b8fe7c5e
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-arabic-right-to-left-tests: 
+  copyright: ''
+  hash: b71fe2cac47b7cec5926e7882e03d0511a128fb8efe28dac77990f5faf4137f2
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-block-separator: 
+  copyright: ''
+  hash: 806a5338edaca16e3c85769e5ca9c55a9f59751e003522618d9cd22e71fc306b
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-block-separator-tests: 
+  copyright: ''
+  hash: c0f9dd1fb890f0d13e9d0448f1254afc9b34e9418f2190d84a88acadbc43e38c
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-boundary-neutral: 
+  copyright: ''
+  hash: 57ab23ca6c3bab8b58533e0ffafe73a089298424f051ec680ea90a49d0e1d578
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-boundary-neutral-tests: 
+  copyright: ''
+  hash: 3d319e764651ffe6cb938ede64871a856742dc39ed39eb52b29165913f1feb1d
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-common-separator: 
+  copyright: ''
+  hash: 5c235403a70d881fc83dc8771a5dbb322ddf493a63331eb86b046677e4cdc9fa
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-common-separator-tests: 
+  copyright: ''
+  hash: 06bdb846d4303255edcbddc8ef0c0c7effbd9c68d444a1d9dc5ea2c79bcdbd14
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-control: 
+  copyright: ''
+  hash: 25479c28563fbb43d1f193d019ba1c5f71128afa993c2c2b49a20b8143ffd4b5
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-control-tests: 
+  copyright: ''
+  hash: 43b1e9d79dd3aac72eaa92aefe58aab7af1a0e20ca2055ef5072a82c710b735d
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-embedding-or-override: 
+  copyright: ''
+  hash: 6f2855dcc504a8ce337996180eb2848b1e4be4170430688a78623e6349327f5e
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-embedding-or-override-tests: 
+  copyright: ''
+  hash: 1680aa3f6106894819a3d8e10e42a62136d5ea3eac3f1e8abb0ead74536d4d55
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-eur-num-separator: 
+  copyright: ''
+  hash: 40119ffa48d01b225fca375c19697cb8f2e4c09bfce577028adf0a40e3805948
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-eur-num-separator-tests: 
+  copyright: ''
+  hash: d4d8ee97cba337debbf435f4ceeb4a8648a6dcdf8c1479e0f9e89d4e9e43ca9e
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-eur-num-terminator: 
+  copyright: ''
+  hash: b401d88fa970de38142b52d6d2fbdb846a163697e2aae4b08aa0334e9a38fd71
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-eur-num-terminator-tests: 
+  copyright: ''
+  hash: ed6b61b035bd4e75258d9d37eb7a3c4b033d26d40edad08a7c357789574f8afb
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-european-digit: 
+  copyright: ''
+  hash: dc0d9e23ff24d6d243b27f45106ceb2a26b2b07c08e00df91e16127573573d72
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-european-digit-tests: 
+  copyright: ''
+  hash: a6aaa82ed09527f584de05c6e458db39a317f7c9ec0f9344eca69c6ae1b50115
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-hebrew-right-to-left: 
+  copyright: ''
+  hash: 0bb360f52483f1b4d2b163115b644efa0d7d99c98e1c39a59bcd5f83a2d8ae81
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-hebrew-right-to-left-tests: 
+  copyright: ''
+  hash: 11b28b5a112f842b50ed00b6e4173737cf383152ebdec8535760e97bd5b9a619
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-left-to-right: 
+  copyright: ''
+  hash: 37ae8d71a9fe73c594a62ef26ee7b85f33d94504bc0ca99cdcc449dbfac67997
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-left-to-right-tests: 
+  copyright: ''
+  hash: 1ed6b97ac2ebdd21e07974056ff940413398f89230b2daf96ee74927df0e18aa
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-non-spacing-mark: 
+  copyright: ''
+  hash: 93eaae290050a750e17e01e2ea8d355a9e8817942873759bce494f496c851804
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-non-spacing-mark-tests: 
+  copyright: ''
+  hash: 517a1b466bcb931e1ecfdf5a37d1251013cd6eb3285346331e406d4758625f28
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-other-neutral: 
+  copyright: ''
+  hash: bf693a39ab6b1b3ab51d87d4cb9e2dffac8020d2a66fa59b35e866d8f1eb2fd0
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-other-neutral-tests: 
+  copyright: ''
+  hash: 5f19810740bbf6714da1e1a18b496c5d10a1b64d65bbb1f8cb8958e119443e63
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-pdf: 
+  copyright: ''
+  hash: 648a08b6a38413f4e507b01c949970ffdc826987e75e9aeea243bb63268a64b1
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-pdf-tests: 
+  copyright: ''
+  hash: fbf5ba569b5e4838bd7588f671714f6cfd9978e046415212afdc440a0c7a96a1
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-segment-separator: 
+  copyright: ''
+  hash: bc039a644f31ded1c641ecf81c35f885046ee253c9a4c0500aa3adfaf84a7143
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-segment-separator-tests: 
+  copyright: ''
+  hash: e1ff8030e1f0187fff8c6a57e0e318a53b79965a52d40a2a94c14b07f9a43e3e
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-whitespace: 
+  copyright: ''
+  hash: 5cb15410d45e4d5e6123a2afbb3599f281e6a99c9cc9cecf956620eedd1cccec
+  license: ''
+  license_text: ''
+./modules/unictype/property-bidi-whitespace-tests: 
+  copyright: ''
+  hash: fdbaeac606388cdab71cf252cf7462019f69a919e247fd0f1f6943e002d4f466
+  license: ''
+  license_text: ''
+./modules/unictype/property-byname: 
+  copyright: ''
+  hash: 289229dfb7a081dccb2b38c24ad305a79f652f6267d17c4b2bc1fe3ee0392a60
+  license: ''
+  license_text: ''
+./modules/unictype/property-byname-tests: 
+  copyright: ''
+  hash: e061b6520b59a6c6f962c37c3f29912812835aa6976b99c3f967ec945e3267d5
+  license: ''
+  license_text: ''
+./modules/unictype/property-combining: 
+  copyright: ''
+  hash: d1f5657f5cb55dbf80b7d9de4cc88f189c9902550979f52df45ed1ff581cda89
+  license: ''
+  license_text: ''
+./modules/unictype/property-combining-tests: 
+  copyright: ''
+  hash: 26d850be0624a6da7b37f1284986abcc968a917cca02e5790aceed33c90c3e7f
+  license: ''
+  license_text: ''
+./modules/unictype/property-composite: 
+  copyright: ''
+  hash: 0bc02b36c12afaa79ff289bc9ab054adb7ba7f101eb5d83d21bec08726bb8a30
+  license: ''
+  license_text: ''
+./modules/unictype/property-composite-tests: 
+  copyright: ''
+  hash: de4e42b1b04b7b5d2a3f223bf57a7f963a6b044b975f3adfc5badfe9fe6c8a9d
+  license: ''
+  license_text: ''
+./modules/unictype/property-currency-symbol: 
+  copyright: ''
+  hash: 38931af79b678c17b54d008d68d06da42565307882a5ed84c9e2fabf46adabd4
+  license: ''
+  license_text: ''
+./modules/unictype/property-currency-symbol-tests: 
+  copyright: ''
+  hash: c44cbb3841cb6ee1c200948d5358c808d2afa5ed066e05fe761a162e5425c3a6
+  license: ''
+  license_text: ''
+./modules/unictype/property-dash: 
+  copyright: ''
+  hash: 6f6715eb86fe5d3935c25c84f223e5dc897b7facba8292a563feaa48aefc3dcf
+  license: ''
+  license_text: ''
+./modules/unictype/property-dash-tests: 
+  copyright: ''
+  hash: 336458f67010f6e373b025a1b95658b60a80b62fdc17fa653833d5632abae862
+  license: ''
+  license_text: ''
+./modules/unictype/property-decimal-digit: 
+  copyright: ''
+  hash: ab9d982292589986c136763105451afc4e550e1f766fb7cf7fd479554a7823fe
+  license: ''
+  license_text: ''
+./modules/unictype/property-decimal-digit-tests: 
+  copyright: ''
+  hash: f9dab010accb22da62438d64ff3b1d89cadc983abe41c90e0d36d3f95dacab58
+  license: ''
+  license_text: ''
+./modules/unictype/property-default-ignorable-code-point: 
+  copyright: ''
+  hash: 39cb9b635c390bb3472f20af716f07a55e56999934b777da88215a81431f8beb
+  license: ''
+  license_text: ''
+./modules/unictype/property-default-ignorable-code-point-tests: 
+  copyright: ''
+  hash: 725afdd41612957003a16ea422cd23f09b93706d334893b8d8d811286b2c6d21
+  license: ''
+  license_text: ''
+./modules/unictype/property-deprecated: 
+  copyright: ''
+  hash: 79536b50ac0f32280a1c63019a08bdb55d7c4f230f56d646d5ad96cced3c538e
+  license: ''
+  license_text: ''
+./modules/unictype/property-deprecated-tests: 
+  copyright: ''
+  hash: 89dbf3c37054f64ee5800dc34339646d8b855c002cdc860420a8714ee401640b
+  license: ''
+  license_text: ''
+./modules/unictype/property-diacritic: 
+  copyright: ''
+  hash: 2167518c89f96013d60de0d7bd69854028a5e3d6fdd2e71bbbfeb4cb9f3b1492
+  license: ''
+  license_text: ''
+./modules/unictype/property-diacritic-tests: 
+  copyright: ''
+  hash: 0d5be7c918de05603a8c0268d27d0db62f2b1d38bc193fe63213bba985b63ece
+  license: ''
+  license_text: ''
+./modules/unictype/property-extender: 
+  copyright: ''
+  hash: b8df4a5a2fd274644f43d95fbfde098fdb4c5452c4a38c64d8fa877bf7e9429a
+  license: ''
+  license_text: ''
+./modules/unictype/property-extender-tests: 
+  copyright: ''
+  hash: 05501a0275aad607ab69634a3dcd09e345d5f061e94bfe945296ed1d8e0281fb
+  license: ''
+  license_text: ''
+./modules/unictype/property-format-control: 
+  copyright: ''
+  hash: e97eb042dbf91fbcb84628c0e9ef5e8743f4e16c20f3822c91af3af81260d442
+  license: ''
+  license_text: ''
+./modules/unictype/property-format-control-tests: 
+  copyright: ''
+  hash: 300d3629279205e7d3aca2218dceb96dc4e8104c02b08bdf0ea499cec2b4345c
+  license: ''
+  license_text: ''
+./modules/unictype/property-grapheme-base: 
+  copyright: ''
+  hash: 1d406865136b5ad9914abcfbea83b6b26fc6ef93799878602b7ff8e531def3b9
+  license: ''
+  license_text: ''
+./modules/unictype/property-grapheme-base-tests: 
+  copyright: ''
+  hash: d0d6ae70d2541c74b54f3077f958dc88fd339c17141ebed95d2098aa07764b51
+  license: ''
+  license_text: ''
+./modules/unictype/property-grapheme-extend: 
+  copyright: ''
+  hash: 4ca0ea448f826a8dcc99962e3512270fedf561cbf72cab04d963a3b8fe9f2cc9
+  license: ''
+  license_text: ''
+./modules/unictype/property-grapheme-extend-tests: 
+  copyright: ''
+  hash: 251f5705f6a5351b1688c582f72007829eabf599395bd587462cec7c1ef4c7ce
+  license: ''
+  license_text: ''
+./modules/unictype/property-grapheme-link: 
+  copyright: ''
+  hash: 805c1470e3e0c3eccfe26fb3b1ac5f3cb9fa30b9cb4049116a50e551d2d2dadb
+  license: ''
+  license_text: ''
+./modules/unictype/property-grapheme-link-tests: 
+  copyright: ''
+  hash: 7e91764c19175d59c63329ebc8ba52dd5a1daedec9503307e7e445ec11baa949
+  license: ''
+  license_text: ''
+./modules/unictype/property-hex-digit: 
+  copyright: ''
+  hash: 0243a6070da96a337e17ba1eac120c0278e8365179fa37001eab65bc841dca16
+  license: ''
+  license_text: ''
+./modules/unictype/property-hex-digit-tests: 
+  copyright: ''
+  hash: ef1f4f62b88d9527516e4c387908dd597fcfc30ff2ef577a1e4f152dadeb7da7
+  license: ''
+  license_text: ''
+./modules/unictype/property-hyphen: 
+  copyright: ''
+  hash: a0821e75c179f78649d812ddbed18c56b1ab27bc11bbc92e1bbf601ceffc7ff6
+  license: ''
+  license_text: ''
+./modules/unictype/property-hyphen-tests: 
+  copyright: ''
+  hash: 765e3e90b923d1554a370caf1b6073e944952d55cc20decf5355706dd59c4a8b
+  license: ''
+  license_text: ''
+./modules/unictype/property-id-continue: 
+  copyright: ''
+  hash: 88c348e9357bae50819c40887ad325d0cb4dff384527221bc06c948478786b8e
+  license: ''
+  license_text: ''
+./modules/unictype/property-id-continue-tests: 
+  copyright: ''
+  hash: a1b963baf983a2e176537129d463352188b09a47bf5ab860665a23a90bf6e358
+  license: ''
+  license_text: ''
+./modules/unictype/property-id-start: 
+  copyright: ''
+  hash: 4eaaa206f01c7c53ec5c62c65bc68299c4fd87505eecc86dd9663c09993b4e9e
+  license: ''
+  license_text: ''
+./modules/unictype/property-id-start-tests: 
+  copyright: ''
+  hash: 4f8896c70d8c5c02d98b15396de19f3208b7bc17c16826cf6a36d9545f24b467
+  license: ''
+  license_text: ''
+./modules/unictype/property-ideographic: 
+  copyright: ''
+  hash: 882c18da5775cd65733fe4342190c2a1351a309f720c550014802c9c55a8caa3
+  license: ''
+  license_text: ''
+./modules/unictype/property-ideographic-tests: 
+  copyright: ''
+  hash: 34d8d3cedf758c4d81e744f4889e5bb1be1a5b27c5f329ca4b8f8a2b01e5419a
+  license: ''
+  license_text: ''
+./modules/unictype/property-ids-binary-operator: 
+  copyright: ''
+  hash: f4d8afcbedaee7883f98bbef9d064da30080ca5c30bb69e4c121ff4a35c086c7
+  license: ''
+  license_text: ''
+./modules/unictype/property-ids-binary-operator-tests: 
+  copyright: ''
+  hash: 7d1df1ed242c102a7db0885fdc9cfdddc800be84a7aff9ffa6ab7110b1fb9919
+  license: ''
+  license_text: ''
+./modules/unictype/property-ids-trinary-operator: 
+  copyright: ''
+  hash: 85d2ab0e8ac73b2661f0d86991e3a6542e27785b206750a77f89f6e6180006c4
+  license: ''
+  license_text: ''
+./modules/unictype/property-ids-trinary-operator-tests: 
+  copyright: ''
+  hash: 0db46545722b0074382db8f9778b93f2b2c999b373dd4e140c00038f5d457cde
+  license: ''
+  license_text: ''
+./modules/unictype/property-ignorable-control: 
+  copyright: ''
+  hash: 0b4df36bc55d43efa688f71468710e03f31101e74735e77c0e82bbb40ea8cf83
+  license: ''
+  license_text: ''
+./modules/unictype/property-ignorable-control-tests: 
+  copyright: ''
+  hash: 361a567ee30e5c3d66e49c322fb943dcf379c416efd298b8e765a86df7b8d4a3
+  license: ''
+  license_text: ''
+./modules/unictype/property-iso-control: 
+  copyright: ''
+  hash: e691953d49f2f1fe84f5f6e2fad1186c4eb762f027e33299658e4c5eba30660b
+  license: ''
+  license_text: ''
+./modules/unictype/property-iso-control-tests: 
+  copyright: ''
+  hash: f57f712359bfefdae3dc796024f0624204633b914daddf063ba299e36beacab4
+  license: ''
+  license_text: ''
+./modules/unictype/property-join-control: 
+  copyright: ''
+  hash: 2ed9d5ffc6571d30341e7b1b5ee17937ed6848102b257849a78a9acf2d261c19
+  license: ''
+  license_text: ''
+./modules/unictype/property-join-control-tests: 
+  copyright: ''
+  hash: 20570eaa864f5eb7f27a5597716ec2f511096ed75bfb8903ea3e59a92e160a95
+  license: ''
+  license_text: ''
+./modules/unictype/property-left-of-pair: 
+  copyright: ''
+  hash: de0c6b86d8d0ada6338276d41346fb709516ae12d09e310279a596a00e396ff0
+  license: ''
+  license_text: ''
+./modules/unictype/property-left-of-pair-tests: 
+  copyright: ''
+  hash: 590a1e14f34adabb021272f1b8df2edc4b9d326e3d37ab5c6ad047e0fbb7fe48
+  license: ''
+  license_text: ''
+./modules/unictype/property-line-separator: 
+  copyright: ''
+  hash: 31ace60527e36197ca50741b94ede127b3d953900b68e432c978d9e363696245
+  license: ''
+  license_text: ''
+./modules/unictype/property-line-separator-tests: 
+  copyright: ''
+  hash: c0cb63221d49fa05a3cac59d948f26d1f1dbe145bac9ab3e52bce1c35dc324bb
+  license: ''
+  license_text: ''
+./modules/unictype/property-logical-order-exception: 
+  copyright: ''
+  hash: 5ce0b27c3dd8909d431c6e4fc485b095c37b9b7bf6a9cb5ddd863016ee4916e9
+  license: ''
+  license_text: ''
+./modules/unictype/property-logical-order-exception-tests: 
+  copyright: ''
+  hash: 2a19434dd65dc663a0a31d11122a41add9e9b346f5bddf108681c4c97d027f49
+  license: ''
+  license_text: ''
+./modules/unictype/property-lowercase: 
+  copyright: ''
+  hash: bb6f6bc847beef7154a8d672ab49526095d80c1685e6c049d1a17e06e97cb65e
+  license: ''
+  license_text: ''
+./modules/unictype/property-lowercase-tests: 
+  copyright: ''
+  hash: 93ab2f7aa19d1e31a2174820fc431dccae2ea8570e02c565302a9a8669e541f5
+  license: ''
+  license_text: ''
+./modules/unictype/property-math: 
+  copyright: ''
+  hash: d51d7a6043ebde3d28240ce9cf896dce5017ce282d5a60589f9a45df6f3eeacc
+  license: ''
+  license_text: ''
+./modules/unictype/property-math-tests: 
+  copyright: ''
+  hash: c0187d2319a48367927d734d8717a6f3475d9f592ec5f93fae146fb1aae36bfa
+  license: ''
+  license_text: ''
+./modules/unictype/property-non-break: 
+  copyright: ''
+  hash: 9529ee336877c9f543b53e369cda856846cd228dc4328e6bd5700adba5a6917f
+  license: ''
+  license_text: ''
+./modules/unictype/property-non-break-tests: 
+  copyright: ''
+  hash: 0a031731584038381b6726f6c922ff9b6a410cdae8463459d058cc19d78c70cf
+  license: ''
+  license_text: ''
+./modules/unictype/property-not-a-character: 
+  copyright: ''
+  hash: 032b1ced5ad9146c168553ed7664c4465377ba81ac24d6ca3399afb41fce68d1
+  license: ''
+  license_text: ''
+./modules/unictype/property-not-a-character-tests: 
+  copyright: ''
+  hash: 85e321f2da30ee77b0814267fdd770456081e20c7bf329f70ba2ba7f61aeee9c
+  license: ''
+  license_text: ''
+./modules/unictype/property-numeric: 
+  copyright: ''
+  hash: 2b392ef4aaee21cd825ff65ccf6ed2351218207039ba0912ddab67332c266819
+  license: ''
+  license_text: ''
+./modules/unictype/property-numeric-tests: 
+  copyright: ''
+  hash: 4d5a8bc0c7fe8c7a5ac0e41e3e4eca8d9d7368351b5eb0399354b2f007336946
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-alphabetic: 
+  copyright: ''
+  hash: c8920d7560743d923cb04f88984708ca0e40aad30ece7c522f58fefffccaa025
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-alphabetic-tests: 
+  copyright: ''
+  hash: e190d41fcc74a02992ba27d74b2ab5dead491cb30bd75bfa7ff4320276f290b9
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-default-ignorable-code-point: 
+  copyright: ''
+  hash: cb0ce01f186191ae95f50c643dc0c04c1c6c986aee315d3ea1b370edc2a68a7c
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-default-ignorable-code-point-tests: 
+  copyright: ''
+  hash: 0df1f3fbeb35eb0ab93cfc5adfdd023b7115f80225f7400f34d953ad6d6c37ea
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-grapheme-extend: 
+  copyright: ''
+  hash: ee90750261ed1c1f4c584fc10986d17fdc4cddce44fa4f92d1e04fef8cf89b89
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-grapheme-extend-tests: 
+  copyright: ''
+  hash: b026224a7126897dedcd0514c64f777a9dac1a5ae42a6b26123e159696235660
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-id-continue: 
+  copyright: ''
+  hash: 0d606c7ce244000d32f047c6859e7bed0de5ee72c5cb9139af200640d52a87b3
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-id-continue-tests: 
+  copyright: ''
+  hash: 1b855a92d302210152900e5826d662991b9ed9d0094ca122b35e365ebdc888a5
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-id-start: 
+  copyright: ''
+  hash: 85e293b375f6400da29a181cd5df1c39df4fd8a41b712ded5aa67941cb73c911
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-id-start-tests: 
+  copyright: ''
+  hash: 3787fadee72a0c5e9bbf920aa4d9e7cfb938e742afe3eadf696661aae3869d4a
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-lowercase: 
+  copyright: ''
+  hash: dd9158fe00af3634fbf4894a7a7d39f49a096a56a5ddcf8de0269dae9917a9a2
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-lowercase-tests: 
+  copyright: ''
+  hash: 22cefe2852788dd4e347abebb8fc057f6d419a7b5f2c2396ac04f76ab7b3a352
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-math: 
+  copyright: ''
+  hash: 6f137bffdd881747e667c7e0223af5418369adbfb07e6a260213f598352a7aed
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-math-tests: 
+  copyright: ''
+  hash: a2a527587449bcf12ec99eea4279691d0e67841ba3dda949d1305c1c685f1d56
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-uppercase: 
+  copyright: ''
+  hash: b46091eca6344298f01cf3212389d8d4219cdcdc47f34c0717036423e955084d
+  license: ''
+  license_text: ''
+./modules/unictype/property-other-uppercase-tests: 
+  copyright: ''
+  hash: 023d04db2180a4dea322146510e8eff99d5beb44e8128afa8f8e88d144050042
+  license: ''
+  license_text: ''
+./modules/unictype/property-paired-punctuation: 
+  copyright: ''
+  hash: 1d859b46eabc16a1e57b9b2954afc69340c3a79670e89e873a87410b9ba41c26
+  license: ''
+  license_text: ''
+./modules/unictype/property-paired-punctuation-tests: 
+  copyright: ''
+  hash: 3dc6788141d18e07dd8dc0fb0053166f630315bc8215bbb3b4930e29cc5a654b
+  license: ''
+  license_text: ''
+./modules/unictype/property-paragraph-separator: 
+  copyright: ''
+  hash: 4bde987c281721186520942769b713f1fb72e6b89f0efdf22a801459ca6c1da5
+  license: ''
+  license_text: ''
+./modules/unictype/property-paragraph-separator-tests: 
+  copyright: ''
+  hash: 8ea598596aa3c7f2196847f5d2b04d91118d8432591a7900bad55e59f21e0957
+  license: ''
+  license_text: ''
+./modules/unictype/property-pattern-syntax: 
+  copyright: ''
+  hash: dd0e266d0cdbed6c8f67a2a71b31f1bcc921de800608bf487117fb9d579ad5b6
+  license: ''
+  license_text: ''
+./modules/unictype/property-pattern-syntax-tests: 
+  copyright: ''
+  hash: 74b934ab1b9469ba24a85a4adfc447a0fe30b71205d0885c37e71ade8f4abe6b
+  license: ''
+  license_text: ''
+./modules/unictype/property-pattern-white-space: 
+  copyright: ''
+  hash: cd23f486d1e33e059c0653c4c339679e9c9401dbf04f14c3c3eb3261d51b26b1
+  license: ''
+  license_text: ''
+./modules/unictype/property-pattern-white-space-tests: 
+  copyright: ''
+  hash: 71c170c4866379e63f3bb731ab85f2675e40b871062cc884df1de5be1837761e
+  license: ''
+  license_text: ''
+./modules/unictype/property-private-use: 
+  copyright: ''
+  hash: cb7550618124824da04c13ec2bd6b80a6444e05bee1220dd98489e250e7a9240
+  license: ''
+  license_text: ''
+./modules/unictype/property-private-use-tests: 
+  copyright: ''
+  hash: 3cd8463e98f9176d4dd6cc366180e41338763176fa4706ac27d183badd11aba8
+  license: ''
+  license_text: ''
+./modules/unictype/property-punctuation: 
+  copyright: ''
+  hash: dc281e36df6d442fa0f68bbc7e04a254cbd5c115d2f043b734db537a7f59e49e
+  license: ''
+  license_text: ''
+./modules/unictype/property-punctuation-tests: 
+  copyright: ''
+  hash: 73665fbcda85e14c9462050cf75e9afc536fd913bd1d5900cf97f412b497fca1
+  license: ''
+  license_text: ''
+./modules/unictype/property-quotation-mark: 
+  copyright: ''
+  hash: 802d39421d4852f167495adab8835f95bfb039d9cf3da4e96402513bfae74c86
+  license: ''
+  license_text: ''
+./modules/unictype/property-quotation-mark-tests: 
+  copyright: ''
+  hash: 249c1e649ef3751f101e913435432f9c49b0d0df5b01b3d473c00459170d717b
+  license: ''
+  license_text: ''
+./modules/unictype/property-radical: 
+  copyright: ''
+  hash: 9dc8bbd17a314eae8e7fa2194634004a5b4119c7e3c80d455da08635995f3bcd
+  license: ''
+  license_text: ''
+./modules/unictype/property-radical-tests: 
+  copyright: ''
+  hash: 8605e5c3719893234523ef1acb9b061be8ec1066d7fdd54e5ea53c38ec151877
+  license: ''
+  license_text: ''
+./modules/unictype/property-sentence-terminal: 
+  copyright: ''
+  hash: 8b91030220afed7743fb6e5e30128a21ca543fbc5780d8065aa1b31aeb1df6c7
+  license: ''
+  license_text: ''
+./modules/unictype/property-sentence-terminal-tests: 
+  copyright: ''
+  hash: 530a93e6d04220fd9172a9a905cdc32fe57e19be686fe220d871a07332f40572
+  license: ''
+  license_text: ''
+./modules/unictype/property-soft-dotted: 
+  copyright: ''
+  hash: 4f18089a0aad15e3dfd60873a0c3834432563e1f3ef02fe9f6f04d1eac9793f2
+  license: ''
+  license_text: ''
+./modules/unictype/property-soft-dotted-tests: 
+  copyright: ''
+  hash: db01ce3d54221e1475114ddb8c40f65bb5474c7c62a31ec1b88b9e29fc4c6e64
+  license: ''
+  license_text: ''
+./modules/unictype/property-space: 
+  copyright: ''
+  hash: f315c7db18916c69554448fdd4e8475c871bffb1d8b24f0dfb61ca5d85b6c46f
+  license: ''
+  license_text: ''
+./modules/unictype/property-space-tests: 
+  copyright: ''
+  hash: 2d0b377aa6b8a819f06a0ddfa1efa005ed4f7f576f4ea7020452d6c4b17f32a9
+  license: ''
+  license_text: ''
+./modules/unictype/property-terminal-punctuation: 
+  copyright: ''
+  hash: e2e1592f8c1590e78277581cca7c7c445c368a77fb36b2d70a4b9dc3a34e6774
+  license: ''
+  license_text: ''
+./modules/unictype/property-terminal-punctuation-tests: 
+  copyright: ''
+  hash: 4f9997e3fe9d4ebed7a77eb0fd05d89815ae32ff9ff8031c812940c81a1efafb
+  license: ''
+  license_text: ''
+./modules/unictype/property-test: 
+  copyright: ''
+  hash: 2875a882df3810f71e1fa58cdbdc8ba8655cc5fb7f71bffd1b484291cc30d5bc
+  license: ''
+  license_text: ''
+./modules/unictype/property-test-tests: 
+  copyright: ''
+  hash: 49c056d8f126c9d246e06fe986e974f68defb79f7f140ad3544b2c29df529bcf
+  license: ''
+  license_text: ''
+./modules/unictype/property-titlecase: 
+  copyright: ''
+  hash: 3424c3cad8bf8349bf8461d39d1a115224cfbb9158038a54cb40d2be6c5b2120
+  license: ''
+  license_text: ''
+./modules/unictype/property-titlecase-tests: 
+  copyright: ''
+  hash: 68aa95f02e391e2973eca93c11bb41b987c0c684de9d768e3396a58a7dd1bece
+  license: ''
+  license_text: ''
+./modules/unictype/property-unassigned-code-value: 
+  copyright: ''
+  hash: 7d90d0183c752ec332e42ff788c34355da36a0493e00c7760940fc7e20135428
+  license: ''
+  license_text: ''
+./modules/unictype/property-unassigned-code-value-tests: 
+  copyright: ''
+  hash: cbfaaa154729897cb18d5d837c467f75104ddbc1cb4c7336df9abd0cfb1a81fd
+  license: ''
+  license_text: ''
+./modules/unictype/property-unified-ideograph: 
+  copyright: ''
+  hash: 5f82e9650128f62edabfa02bd2206d49f1d23ef1cfde0fdb4c0c073cf59c9264
+  license: ''
+  license_text: ''
+./modules/unictype/property-unified-ideograph-tests: 
+  copyright: ''
+  hash: 507f4c45bf2809f3017279e85b2b365bda51244f4ea729fe03ba64a34038210a
+  license: ''
+  license_text: ''
+./modules/unictype/property-uppercase: 
+  copyright: ''
+  hash: 70abaed515023d6afc46706ad95faedb80654165fc422cd8373401302d52ca1f
+  license: ''
+  license_text: ''
+./modules/unictype/property-uppercase-tests: 
+  copyright: ''
+  hash: e193081d132ebc0d073d04c4a1f36482e8966efa2d71941c323638700fa18129
+  license: ''
+  license_text: ''
+./modules/unictype/property-variation-selector: 
+  copyright: ''
+  hash: 09f553c5824dc3d20487e71b22ed1c43c89e77956f5db9f769946e92cae72cca
+  license: ''
+  license_text: ''
+./modules/unictype/property-variation-selector-tests: 
+  copyright: ''
+  hash: 11704488bd5afbd4917ed521aaccd46ac3b38f3aa83264e59db51015e4f48ff7
+  license: ''
+  license_text: ''
+./modules/unictype/property-white-space: 
+  copyright: ''
+  hash: e2f24576777878c97b0dfcbbb1df20226d1d41094831016337b91f77798b7405
+  license: ''
+  license_text: ''
+./modules/unictype/property-white-space-tests: 
+  copyright: ''
+  hash: 36b16726463f04af8d26b36416ca251e30dd47fdb7ec970403e0374c579cab29
+  license: ''
+  license_text: ''
+./modules/unictype/property-xid-continue: 
+  copyright: ''
+  hash: 987e6db719b50516e803a9244c23943e9d086183f863846550d21130150c82b0
+  license: ''
+  license_text: ''
+./modules/unictype/property-xid-continue-tests: 
+  copyright: ''
+  hash: 492a0ada9d94175fe3770661d3f231e5b9d71a1a5013a6d7075319e0eece9504
+  license: ''
+  license_text: ''
+./modules/unictype/property-xid-start: 
+  copyright: ''
+  hash: 174f854ffe740306b5020504fd505eb8b5952185d32ce77b1cab4745b5c49277
+  license: ''
+  license_text: ''
+./modules/unictype/property-xid-start-tests: 
+  copyright: ''
+  hash: 4796f6dadd2aead564c00995d88c9e6226cc3c128f72bd64f3ef82db90784f14
+  license: ''
+  license_text: ''
+./modules/unictype/property-zero-width: 
+  copyright: ''
+  hash: 038f0bd94d08940987f80a3d3e3e27de60d394d652fba7f22706c1621b21dc31
+  license: ''
+  license_text: ''
+./modules/unictype/property-zero-width-tests: 
+  copyright: ''
+  hash: 0707ef51a9013ca150a7d623b2d1911acd92345e0baa0c7705276f85cc35d964
+  license: ''
+  license_text: ''
+./modules/unictype/scripts: 
+  copyright: ''
+  hash: fc0ee5870e8d757e967e0a9f128e9586560851ff7514e8bdf199eb876b442bdc
+  license: ''
+  license_text: ''
+./modules/unictype/scripts-all: 
+  copyright: ''
+  hash: c00aaee85d9c7895fc040082fd619c1eb344047070f916e39b4b17c315aba6bd
+  license: ''
+  license_text: ''
+./modules/unictype/scripts-tests: 
+  copyright: ''
+  hash: bb3ba53f7c6b1f28677c2d12df775f79b9b353dc7dca8eaa1dbb502a0f9d5720
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-c-ident: 
+  copyright: ''
+  hash: 1c8901c3c1d2b9e9bbd683173217f122327141ec2215681b693943cc55fdc06e
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-c-ident-tests: 
+  copyright: ''
+  hash: 123c21cdbadb06d99e5b097714ad472c50e4ed364fad3d97d7f3003d77b33513
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-c-whitespace: 
+  copyright: ''
+  hash: 75dd8a020ca18c0a26e3d4708fe09f2c32dcb4b9f4e34cd005f65e7d9c576dad
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-c-whitespace-tests: 
+  copyright: ''
+  hash: aea812d7be9ef3e9722b0f0487cf7fc24ca0b0e51f547fc4695c42573e5e824a
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-java-ident: 
+  copyright: ''
+  hash: 648109158cd0ea8cae5103e40be04bd32626edcce12a516612d0586e9d6d6d9c
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-java-ident-tests: 
+  copyright: ''
+  hash: ef0ebc71a20170d2bd658f3d21546f7bd96f6dfaa6c0bc762e0facbcb7471e7e
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-java-whitespace: 
+  copyright: ''
+  hash: f2a070894d55a1a11b3bc214ad6d007f9b24932a204311ceff15f22f6d026db9
+  license: ''
+  license_text: ''
+./modules/unictype/syntax-java-whitespace-tests: 
+  copyright: ''
+  hash: 2c5288f2e01a728b760497bd94f4c460e0f462c6d025fa6d752a5f81b83208aa
+  license: ''
+  license_text: ''
+./modules/unilbrk/base: 
+  copyright: ''
+  hash: 29d4ffad9a27050e59b897eb5485b88b77b0b36343526d8d97fa89ebc45675b9
+  license: ''
+  license_text: ''
+./modules/unilbrk/tables: 
+  copyright: ''
+  hash: d5b2dbbfbbacbfc56105ff4bc9acdcc81b78c7d8fc243e56f60556bc335af848
+  license: ''
+  license_text: ''
+./modules/unilbrk/u16-possible-linebreaks: 
+  copyright: ''
+  hash: fb2b033ab8de0b38a406eb24d58ec648859c3a0daefae77a3696f50c1af32358
+  license: ''
+  license_text: ''
+./modules/unilbrk/u16-possible-linebreaks-tests: 
+  copyright: ''
+  hash: fbfe78f87743c86c8f7e03b624e7e33d3d7720493f3fe0b94c182b8979451e0d
+  license: ''
+  license_text: ''
+./modules/unilbrk/u16-width-linebreaks: 
+  copyright: ''
+  hash: fad0c3b357ebd62c279df0e1df7131aa5d32dc21a6bcfc3492b28caa10322eb3
+  license: ''
+  license_text: ''
+./modules/unilbrk/u16-width-linebreaks-tests: 
+  copyright: ''
+  hash: cc378551fc21c3e7697f37eaad7f1a7cb567ebd744da77caa3f5584eb5f4b209
+  license: ''
+  license_text: ''
+./modules/unilbrk/u32-possible-linebreaks: 
+  copyright: ''
+  hash: e4e6fd32876d026ea4d6225b5882b1a0f874e8c4769cea4a29501a775f24624b
+  license: ''
+  license_text: ''
+./modules/unilbrk/u32-possible-linebreaks-tests: 
+  copyright: ''
+  hash: bc7097904f67f5422302f3c361fd2db5cec933083cb98dcb5dcc1b4f64a0f160
+  license: ''
+  license_text: ''
+./modules/unilbrk/u32-width-linebreaks: 
+  copyright: ''
+  hash: 5d80370161a248c9751945e228bcc0bcd8d1d8a502b880f1cbe6576e30cf55b8
+  license: ''
+  license_text: ''
+./modules/unilbrk/u32-width-linebreaks-tests: 
+  copyright: ''
+  hash: b8b0f5957fff79f41d13af8b0343a21b96e70fffc16fdcb57e1e3cc904a34fbf
+  license: ''
+  license_text: ''
+./modules/unilbrk/u8-possible-linebreaks: 
+  copyright: ''
+  hash: aa74f0b3f28f7d3dc25556a32bb2fa75814a7ee31bee6f2893ad7b36c057f07e
+  license: ''
+  license_text: ''
+./modules/unilbrk/u8-possible-linebreaks-tests: 
+  copyright: ''
+  hash: 53170e22e1f25e6953c13ea92e1bf95b90edb709828a99cecab8e1430d810337
+  license: ''
+  license_text: ''
+./modules/unilbrk/u8-width-linebreaks: 
+  copyright: ''
+  hash: 93e6b87973701eba658c8fa334b4c1073d826268ed30da0fcf575f09dac5a901
+  license: ''
+  license_text: ''
+./modules/unilbrk/u8-width-linebreaks-tests: 
+  copyright: ''
+  hash: aed16d1c061f3f35fddc06ffe21674359c1f408eccf11b76128c66dcabde665a
+  license: ''
+  license_text: ''
+./modules/unilbrk/ulc-common: 
+  copyright: ''
+  hash: 9a542448cea2b4551dbe74db6db19d6a710a9852a22366389e4bde5720704dd5
+  license: ''
+  license_text: ''
+./modules/unilbrk/ulc-possible-linebreaks: 
+  copyright: ''
+  hash: a8ae35611c7f64d0f14765c7c432fd80dcb2d522898c2baafe870eab574f94c0
+  license: ''
+  license_text: ''
+./modules/unilbrk/ulc-possible-linebreaks-tests: 
+  copyright: ''
+  hash: 66540e1eacff19c056c6f522a61e19234bfb6e1ef88f8a1def60051272923714
+  license: ''
+  license_text: ''
+./modules/unilbrk/ulc-width-linebreaks: 
+  copyright: ''
+  hash: 4d8019fb733c5d022283c22399191899fe50ea419b772baf123fd6a2a9642f0f
+  license: ''
+  license_text: ''
+./modules/unilbrk/ulc-width-linebreaks-tests: 
+  copyright: ''
+  hash: ab389d2a8210afd8fa6f14184c42bed9763f9bc35f300703515b0fde7d4023ca
+  license: ''
+  license_text: ''
+./modules/uniname/base: 
+  copyright: ''
+  hash: 14222ba2a3831447be1c5f3821c04fd881c40b0011a712c6ea4380b5e0d7627c
+  license: ''
+  license_text: ''
+./modules/uniname/uniname: 
+  copyright: ''
+  hash: f8203167c7d48cbc145295b4987e3949bc4fcaefeb920a3bd869979a3751242b
+  license: ''
+  license_text: ''
+./modules/uniname/uniname-tests: 
+  copyright: ''
+  hash: e8ed561ff853cf6328b746f8a2f8b3c04609757e43e47c62cfde89bb927f6965
+  license: ''
+  license_text: ''
+./modules/uninorm/base: 
+  copyright: ''
+  hash: 55708fb81393394b4c7140b2a5317365173587180c3269f8fd500c04dc6ab541
+  license: ''
+  license_text: ''
+./modules/uninorm/canonical-decomposition: 
+  copyright: ''
+  hash: 0c842b02f4a51325fa53847ff43c6b266598ae61f3ebd376c6f04234d099a4b6
+  license: ''
+  license_text: ''
+./modules/uninorm/canonical-decomposition-tests: 
+  copyright: ''
+  hash: f466cfc0bda31b447c9123811c53a3d07befc8b189a14a10e504ffada3c213e4
+  license: ''
+  license_text: ''
+./modules/uninorm/compat-decomposition: 
+  copyright: ''
+  hash: a8448f11d9af55dc734db18330636fc5597007bd38d015b0dce43653a4d95143
+  license: ''
+  license_text: ''
+./modules/uninorm/compat-decomposition-tests: 
+  copyright: ''
+  hash: dfc9f69fa13843e2845a6d18df5748b8539cb64a93a69104b5cbda4c53c773cb
+  license: ''
+  license_text: ''
+./modules/uninorm/composition: 
+  copyright: ''
+  hash: ed68f5f00207cc044c32fc7e9803a2d8b3aacba259c755b39004cf2257dadcab
+  license: ''
+  license_text: ''
+./modules/uninorm/composition-tests: 
+  copyright: ''
+  hash: 143cce642d1aa68831d8ddeab1ebc3e0146099c05ced2dffd438a9bb4d69d5ac
+  license: ''
+  license_text: ''
+./modules/uninorm/decompose-internal: 
+  copyright: ''
+  hash: ddb12f59e41add6ed130a093f703313546e67c18717773a2666a4a7bf7a9bd9e
+  license: ''
+  license_text: ''
+./modules/uninorm/decomposing-form: 
+  copyright: ''
+  hash: bf3de6d60b1205900b4c31b36b6e00febdb46344e9026a355f8491cd49b8b4f4
+  license: ''
+  license_text: ''
+./modules/uninorm/decomposing-form-tests: 
+  copyright: ''
+  hash: a08e924c595e8eac1e915d262fbcb92e69b7115d8e3ee02fc857a00594202287
+  license: ''
+  license_text: ''
+./modules/uninorm/decomposition: 
+  copyright: ''
+  hash: 278f4492a2ab7f569353ad541ea108f2d9983e3bac359d848d422628c99d1e8d
+  license: ''
+  license_text: ''
+./modules/uninorm/decomposition-table: 
+  copyright: ''
+  hash: cd1abae2797adce6e27d5eeda1610f8ccffdfa17c6d774a67a90a9bb41d008ab
+  license: ''
+  license_text: ''
+./modules/uninorm/decomposition-tests: 
+  copyright: ''
+  hash: c9b2dfa9fe54b63937cfb0d5c629e850a6c22aa224c8190fe4917ea8e01fddbc
+  license: ''
+  license_text: ''
+./modules/uninorm/filter: 
+  copyright: ''
+  hash: 633ce3bb5d3271ee9e2eb6c1c70ce097f50b84e47358a2f2b6fe6487daaa7c1f
+  license: ''
+  license_text: ''
+./modules/uninorm/filter-tests: 
+  copyright: ''
+  hash: f1dd9689e14716782d10b036b74ac51d552d5eb95815d98d73d9e05465f12f37
+  license: ''
+  license_text: ''
+./modules/uninorm/nfc: 
+  copyright: ''
+  hash: 60058c5f1110cd6e42a99597ecd15d0d6c31ad22df871e1950ab8437181ffc96
+  license: ''
+  license_text: ''
+./modules/uninorm/nfc-tests: 
+  copyright: ''
+  hash: 6a0c689cd819d5e0a9885c65ae694a08e25eb08c50452e3fe23d5304e2ec46b7
+  license: ''
+  license_text: ''
+./modules/uninorm/nfd: 
+  copyright: ''
+  hash: ca777b00f508579277d7aaa803482277d4aede656f6cbe85ca7ca28430484344
+  license: ''
+  license_text: ''
+./modules/uninorm/nfd-tests: 
+  copyright: ''
+  hash: be9139e6cae2e3a1532af1e0b57b0c07057941b4ed2ddccd3db64a803bd82d07
+  license: ''
+  license_text: ''
+./modules/uninorm/nfkc: 
+  copyright: ''
+  hash: e73c029c73f8ffbe7adc1aa3a17d84758a58fed8e3633fab4c7ca48f8f9ca01d
+  license: ''
+  license_text: ''
+./modules/uninorm/nfkc-tests: 
+  copyright: ''
+  hash: a324be7602d5247af463f546da060584d4922db40058f93e535ee94369624a15
+  license: ''
+  license_text: ''
+./modules/uninorm/nfkd: 
+  copyright: ''
+  hash: 216c1ffcd9a03874199fccd2ea75e41a63e40e0c58c486c729a5ebd10e2baf27
+  license: ''
+  license_text: ''
+./modules/uninorm/nfkd-tests: 
+  copyright: ''
+  hash: 7d8600486ccfb54a1c4b0ae4cae9c529305055357cfa7698b37d3c6a8fdd4c3e
+  license: ''
+  license_text: ''
+./modules/uninorm/u16-normalize: 
+  copyright: ''
+  hash: 254ec15f4087c7b0e7d73adb91e09e1f00b8410b15cfced0389027f5f3d25a5f
+  license: ''
+  license_text: ''
+./modules/uninorm/u16-normcmp: 
+  copyright: ''
+  hash: 60b267a1ee14fc708de9a0bd87ca61e72e80825cad6bc6ff135729454537e3d6
+  license: ''
+  license_text: ''
+./modules/uninorm/u16-normcmp-tests: 
+  copyright: ''
+  hash: 2650b0af205c8cc429eed30048ac9a4dad0b894d7f90d702061ead69e32e8caf
+  license: ''
+  license_text: ''
+./modules/uninorm/u16-normcoll: 
+  copyright: ''
+  hash: fee77c1acd7117d103bf8735b316146e124e0a217e801751129718102d3980e9
+  license: ''
+  license_text: ''
+./modules/uninorm/u16-normcoll-tests: 
+  copyright: ''
+  hash: 5f868bfe3fde2026592d72aa80de2d4323c477c55aa8eda9dac137b8dfbf3389
+  license: ''
+  license_text: ''
+./modules/uninorm/u16-normxfrm: 
+  copyright: ''
+  hash: 6da763d8b900521a6e278440e419f025be68f1f90e61a082f347d292e2e3b48c
+  license: ''
+  license_text: ''
+./modules/uninorm/u32-normalize: 
+  copyright: ''
+  hash: 728b89052e03740cbfdeeee3cfeeb93c1856853fb07f3b04a52a7f4d0f3386ea
+  license: ''
+  license_text: ''
+./modules/uninorm/u32-normcmp: 
+  copyright: ''
+  hash: ef451854caeca2c8ceaa38128fc3ecc46ac88e450438a45f49163a8d6459b0f5
+  license: ''
+  license_text: ''
+./modules/uninorm/u32-normcmp-tests: 
+  copyright: ''
+  hash: 7237480a01f8c518eedfc6749df570f5c2115c1d144d1cda8390caa84e01bea0
+  license: ''
+  license_text: ''
+./modules/uninorm/u32-normcoll: 
+  copyright: ''
+  hash: b7eb853b14b60ce750a977c0a753b00e7bae1e25a4dc49b7e1f3e577399f3b9c
+  license: ''
+  license_text: ''
+./modules/uninorm/u32-normcoll-tests: 
+  copyright: ''
+  hash: 26c01f5e545110a25cd7c5e459320fbadcbc428a9e6d18294cd779d42b4fecab
+  license: ''
+  license_text: ''
+./modules/uninorm/u32-normxfrm: 
+  copyright: ''
+  hash: b55dc62687502a41c881449b9bdc29f233d37e40e5e63df427030d99d02bef7b
+  license: ''
+  license_text: ''
+./modules/uninorm/u8-normalize: 
+  copyright: ''
+  hash: 67725ebcf8da9754aa7be1162f4ee96607ac824a6031afdd87a62ef3d17810e4
+  license: ''
+  license_text: ''
+./modules/uninorm/u8-normcmp: 
+  copyright: ''
+  hash: 3c986b68b5dd7426bb420158436b7298d3ecab8e151606e900e5ecaba89681d4
+  license: ''
+  license_text: ''
+./modules/uninorm/u8-normcmp-tests: 
+  copyright: ''
+  hash: 53594b9d7b20e4f6767f43618ac2a4f9f9aaa8028da81dd773bd8f725d065aa3
+  license: ''
+  license_text: ''
+./modules/uninorm/u8-normcoll: 
+  copyright: ''
+  hash: 149b1a7f74ac5e6727721ce233443cfc06ed98033f9f0724d185a4e7ea669729
+  license: ''
+  license_text: ''
+./modules/uninorm/u8-normcoll-tests: 
+  copyright: ''
+  hash: 29bbf4e6bc068279d9f6ecb257f7c09203f568dae1362ea6343a86caef24573c
+  license: ''
+  license_text: ''
+./modules/uninorm/u8-normxfrm: 
+  copyright: ''
+  hash: 28e882bcc408f734dbe4a30c8907c4ab6c7803e7d1c4c828f3c830efbe198b91
+  license: ''
+  license_text: ''
+./modules/unistd: 
+  copyright: ''
+  hash: dbd2f26b0321b56b0a24ae997cb7a3f1d20e4d054e578a2da4f5f35ec2e491d1
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/unistd-safer: 
+  copyright: ''
+  hash: e13cb7d10c4c353c4534a10e50f2add94102296c420d682bcfd7e46042860f5f
+  license: ''
+  license_text: ''
+./modules/unistd-tests: 
+  copyright: ''
+  hash: c5a369a6a22a5c28685b41272e0c158001cf10f53b58bad411602fc4542476ef
+  license: ''
+  license_text: ''
+./modules/unistdio/base: 
+  copyright: ''
+  hash: cb84e6cd2695bb4f4172d2c8a0918b3d339c7ccc9003c5548a655c11ef038257
+  license: ''
+  license_text: ''
+./modules/unistdio/u-printf-args: 
+  copyright: ''
+  hash: a0c39a7cd90d51f1067f83b90bb694c68e18eb7fb39702444070608e55c12e8e
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-asnprintf: 
+  copyright: ''
+  hash: e5a1c81801f1b344c3821ebe2a309887e4af4254e6ae4f6200f382b66c35e446
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-asnprintf-tests: 
+  copyright: ''
+  hash: 32c4fd1e0b2cdfe673e68a3aab7cf3108e45729f79abdd5b98e8c0a804b9746c
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-asprintf: 
+  copyright: ''
+  hash: a3db1508f6b3c88bb92133f3ece2af5b665e6ac3f28096a3843cd72f4aca5927
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-printf-parse: 
+  copyright: ''
+  hash: ce2adac94e7b1b6ab6becda606586f2ce214e270fdf123b1f90475ec44978b82
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-snprintf: 
+  copyright: ''
+  hash: 936f2aa7eb538828d32e402413cda30c439eee1c8c5fa3d50ca1e1e0791c9065
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-sprintf: 
+  copyright: ''
+  hash: 4f9d3bdc4ecaf39bbb4d5587d4c9980f2dcded7fce5c2ce68d46c10586f8b778
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-asnprintf: 
+  copyright: ''
+  hash: 8829c634236443e3fd488b05fd8c222627430c7ac48ee5256aad8709ad82d67d
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-asprintf: 
+  copyright: ''
+  hash: 8223e90b776e0f011ec0fcc8d5d86239db472e6fec9f4b59ef5f451b658336f1
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-snprintf: 
+  copyright: ''
+  hash: be3778392c62064afca5dbef4b4eddee43c8fff3f6e3f0cbb1f216382bff5a5c
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-sprintf: 
+  copyright: ''
+  hash: d8fa0b52ad2772bc36ce74b51b05322f3c0e2ecc3797d5dc28c05e4fcb9af336
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-vasnprintf: 
+  copyright: ''
+  hash: 39b53e2cf3419ccfeb2f825be2e6d255c750de08abfcc80f7769118e4c15d912
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-vasprintf: 
+  copyright: ''
+  hash: ad8b4e11e4f5a36c527d2e0a0023b74ca6e332791894d2057990b47314d3c490
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-vsnprintf: 
+  copyright: ''
+  hash: 6d3ae7a9bd95ebc852c1bf5ec893e08ca0d1d395c0d2b3a80d427f98a166be37
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-u16-vsprintf: 
+  copyright: ''
+  hash: 008c05b23a6db2628eb914823dbc1d1e1ffc00f6fcdf03be9b07ab4fcdf9e423
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vasnprintf: 
+  copyright: ''
+  hash: 79062a7a8a415fa52fc8ac9c12333f59d9d23497f740d7cb158c321c67f99d30
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vasnprintf-tests: 
+  copyright: ''
+  hash: 6d2007f23f43d2b3e81692e0ae50880bcbb48177372edae183a19d48cb3f8f8f
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vasprintf: 
+  copyright: ''
+  hash: 41a2ff271a2c3cfe20383034c9fb6435057adcadb678e34eb00362b9dcb2d24f
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vasprintf-tests: 
+  copyright: ''
+  hash: 7e555fc4132ab88db55c5acf19bf9b6fad003ab6a0386396959579a013327b64
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vsnprintf: 
+  copyright: ''
+  hash: b7f6994eb06dcae1f3e609d63f59edef32a47f7dee16172c5631b0a4ce241375
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vsnprintf-tests: 
+  copyright: ''
+  hash: b34bc4e356dde5443e4f217134e96ae90baebd5961b4b1e60a20ea4640fe39c3
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vsprintf: 
+  copyright: ''
+  hash: d992d7cacc2843a1ee28dd7645010c6243f981342a2672247852edd3c758ce13
+  license: ''
+  license_text: ''
+./modules/unistdio/u16-vsprintf-tests: 
+  copyright: ''
+  hash: ad42ae89ce30aefca64040557c94850bb25b76a89e76037b65703cc566312ab4
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-asnprintf: 
+  copyright: ''
+  hash: 420179fe1ab744c708eeee5a4c8d8f5dad764ccdefd530a40c9bfe0fcb7fbcc2
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-asnprintf-tests: 
+  copyright: ''
+  hash: 8181ceb0d445dc7158c18f6448eaf893d71f57b76962acdb30ba0c303221d2c8
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-asprintf: 
+  copyright: ''
+  hash: 4b11f321da844ca6e09623c0f19929295e253a97937a01561fa4746fda7f4df6
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-printf-parse: 
+  copyright: ''
+  hash: 5e822828c5cc06a435f1ce53ee019565338480f5f360811cf3442c3b34c75e73
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-snprintf: 
+  copyright: ''
+  hash: 9d3e3d30f71e91fdc5b5e03a0b6cd0c325987732aed11f760e460a78b3cc03be
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-sprintf: 
+  copyright: ''
+  hash: b2bf7b19524e9af5f873aa6746e0b9541a8674ed0c719cf785b34640ebc9bce7
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-asnprintf: 
+  copyright: ''
+  hash: c6db48a7b18e3180257faf8806786872780482b6aae288432f27a13b94ae8461
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-asprintf: 
+  copyright: ''
+  hash: 2579aec352a8fc8d5c74f20b1085688f9828b3759f08b10c11b22892c34871bf
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-snprintf: 
+  copyright: ''
+  hash: 94944d66a8c7f2fc8aee1a402dc12406ac66b367e28c2b1da44338e501a05ef5
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-sprintf: 
+  copyright: ''
+  hash: 9a7d4d5bcf8be7e7913c99a0dafd8cf2db3608475f1a412f8c50acdf2ad45e35
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-vasnprintf: 
+  copyright: ''
+  hash: e8010b11eb33ce3e5f17d3d42583d655ee1da1b1876e4b190b224c891eecd4b9
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-vasprintf: 
+  copyright: ''
+  hash: 3f8169aa39520c68945f195873e0eb3109147fef1f3ca8d1e4f586073feb0b23
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-vsnprintf: 
+  copyright: ''
+  hash: 5c72f750e5e15748ef48465141a5c80060b8a0e5e24c7fc0bfc4af600ee43e43
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-u32-vsprintf: 
+  copyright: ''
+  hash: b41115de72a702c2f6471a8efac119032669525cc835f48ea347c33026f48f3b
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vasnprintf: 
+  copyright: ''
+  hash: a573d4003a595c0075c5337d0deb65198f6ab5a5dcb643a2b4af9b96d01debf6
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vasnprintf-tests: 
+  copyright: ''
+  hash: 36037a8dc95c519a7e55a1b4f8c56e58a8e3a5a250ffff8bfda2758140ed3f65
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vasprintf: 
+  copyright: ''
+  hash: 882213d6b43cd083fcc15a1165057fdd63d9eb9d5b58a073c2ab1f2d69e3caf7
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vasprintf-tests: 
+  copyright: ''
+  hash: cd3da5fa9a934100c549d656d1d64487a57c72087b28137c2b42af09c5437b0f
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vsnprintf: 
+  copyright: ''
+  hash: 2cdec23651eda4713ebf64ee4762c9721011b6bcff7570d2ba9dbb8fc1c261b6
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vsnprintf-tests: 
+  copyright: ''
+  hash: c68b4af23046464830afb456b98f78c099691d6468eb684aef2dc6808c188a65
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vsprintf: 
+  copyright: ''
+  hash: ebd2451d6c2e41fc7c5271270f372213a92f03ef2daadd2182972b433e554896
+  license: ''
+  license_text: ''
+./modules/unistdio/u32-vsprintf-tests: 
+  copyright: ''
+  hash: 1acdac65177d0a64e2669c3b2210dd86bc1cbad6cf8204cebbd385657193ce92
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-asnprintf: 
+  copyright: ''
+  hash: 671e88d83c47cad90e09e8183d6415bcb4c18035322c98d07a863aeaf6fa0b54
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-asnprintf-tests: 
+  copyright: ''
+  hash: 10a61fe9519293ace37569fdc3cb3e030735c425f3253a7c97a9c4af28834a02
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-asprintf: 
+  copyright: ''
+  hash: 9fe5db8cf1422dc97b9b723452837bf7eba50f2ce70f38744fed356cb67ba6c6
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-printf-parse: 
+  copyright: ''
+  hash: 44082b101deb9af1103053eb19fb0390cd5b28b367c5de92e84ba92d818ba40f
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-snprintf: 
+  copyright: ''
+  hash: 79b5f87048e482b8d4bbd8322eb3cd9ea61083ee9654688c21eba9924d05eb3c
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-sprintf: 
+  copyright: ''
+  hash: 4477280d827c0700517e29715526f76cc614fde226c78f7dc367e1e78236703e
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-asnprintf: 
+  copyright: ''
+  hash: aa014092e59d71b5f6ec447c5f47f7596fc5accddd217e9fc6032baff8e01142
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-asprintf: 
+  copyright: ''
+  hash: b81a9f24da7506d62addb380cb0899892063ee4bcfa3c39b1782d056cc5e7b98
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-snprintf: 
+  copyright: ''
+  hash: eab1371efd0a40b90692743ed735eaba5eaf3870f968f88d07e30d8baa2a2272
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-sprintf: 
+  copyright: ''
+  hash: b06d07e2cc7e3afff9faadfa604c069ca8cf659693881606dc8627b7ec5a0e1c
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-vasnprintf: 
+  copyright: ''
+  hash: c67caefd2283651d78359cec0a2d90b0d5aeb97a3c5db710f666b690452d85ca
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-vasprintf: 
+  copyright: ''
+  hash: a08013161a7462b4b53e50b9264b664d384727fc249569c17a885e05e94af322
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-vsnprintf: 
+  copyright: ''
+  hash: 61bae80d81e22834e041ca1deb3421979390ac879e971a01e5fcf1bc32cf7bee
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-u8-vsprintf: 
+  copyright: ''
+  hash: 609118650b7ee936ae050628649117774d883713b8a6cb8c5e1c241c74ab81f2
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vasnprintf: 
+  copyright: ''
+  hash: 55dcb014930de61418a0dc35670e9d20a7ea72ce01aa0757cc87482bc11eec88
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vasnprintf-tests: 
+  copyright: ''
+  hash: 116b70b260b697d44cddecc4170f10dfec7461493a99589aea489e9697dfaf1f
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vasprintf: 
+  copyright: ''
+  hash: f831f573cfd6f1abe875d5fe09542645d419f50eb2bd0f86ae396b86d874c816
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vasprintf-tests: 
+  copyright: ''
+  hash: 6e1fbf837a8c5423857ac068329f2bab9fbd674db7b813b2a13b224ccd13718c
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vsnprintf: 
+  copyright: ''
+  hash: b9eb6dace1eee830b408454c93d614798f2832e95c9f976d964b2956454726a8
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vsnprintf-tests: 
+  copyright: ''
+  hash: 1be08e23a34822134bc7f1747b68357d4ce2a8f0690d5a06e3b16f0fb0b6c8f2
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vsprintf: 
+  copyright: ''
+  hash: 36876a19f42af01cf95e1f627a66a3b4fb8774dbc13367d748b0eb2534612450
+  license: ''
+  license_text: ''
+./modules/unistdio/u8-vsprintf-tests: 
+  copyright: ''
+  hash: 84b3a8b35732e99760883086f7ea042ad872e4691b82cdc12004b433c6cd3898
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-asnprintf: 
+  copyright: ''
+  hash: aef4b8ca6ca35a4e2b162dad823919bdefdf406831025f419dc5e8068d11ec1d
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-asnprintf-tests: 
+  copyright: ''
+  hash: 1e801a641f59b3b47c5685bef89c04f17748c884d1db640f8808bbfa2562b021
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-asprintf: 
+  copyright: ''
+  hash: 03a7f927e5cada2a4c5828bc4b3a212b6a0be29cb146459d2cc6a355c7d6ed6b
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-fprintf: 
+  copyright: ''
+  hash: 47e1a7a54213b0cb11c7d73c3ef899ab5947f84f5bd4aa4ee1473daf8ded4178
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-printf-parse: 
+  copyright: ''
+  hash: e24404a5be2431850f0f1feb51f9fac37bdf6aab0b5bfc8ad170c9257abe81c7
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-snprintf: 
+  copyright: ''
+  hash: 8bcd8d35147496ef3250a46a6e5271502f8ff69cbfd483af5eb93a5d874c9be6
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-sprintf: 
+  copyright: ''
+  hash: 03de557028b609bc44f43a6c2dd375a744c55b482e028f6a0ac404ae45c38c5e
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vasnprintf: 
+  copyright: ''
+  hash: 2d955b7e918bba4cf7dc36e075eb2b0d83d4e29fd648db3ed93d231daf7a1530
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vasnprintf-tests: 
+  copyright: ''
+  hash: 1c8d7e070a14e0424fc140adc0e006bbb94e1e97a6ccf7f929b3f8b72616eb02
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vasprintf: 
+  copyright: ''
+  hash: 836850e1658f7235dff277c8c273b21c5c85d7eb024bb4cc979aea52e1aaff04
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vasprintf-tests: 
+  copyright: ''
+  hash: 30d398df554c29d695b98ab4bbd6d0e2ed3e38713a6455fcfecf6324b7b1935d
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vfprintf: 
+  copyright: ''
+  hash: a517b7505ee60d4a22c9632833a3e9a85edbac52a2882110025727efe7886b26
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vsnprintf: 
+  copyright: ''
+  hash: 51bff1a79ad0658b32c869972f5c1fbcf51339da26f92e2de991e828ae0c59ce
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vsnprintf-tests: 
+  copyright: ''
+  hash: 9b378029e95da2a44f7dc99b6b24d4148ba72916a20ee18228b335f49c9c13b7
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vsprintf: 
+  copyright: ''
+  hash: eb869efc315f53bd130d3288515fad6772428e711947a3166d07dc0b686b006b
+  license: ''
+  license_text: ''
+./modules/unistdio/ulc-vsprintf-tests: 
+  copyright: ''
+  hash: aebae0fdefdd4531b226beb5e736dfcf790a849d91eb8abee309b6d2def3d0cf
+  license: ''
+  license_text: ''
+./modules/unistr/base: 
+  copyright: ''
+  hash: db12f54bab99e17db66374a1cbe7b437ef0698fd82e152c408337de17b2f092b
+  license: ''
+  license_text: ''
+./modules/unistr/u16-check: 
+  copyright: ''
+  hash: ad6c444a5a5599ada9d5af6c97f77bfeeaf93f462d31efcfeb022793738e2310
+  license: ''
+  license_text: ''
+./modules/unistr/u16-chr: 
+  copyright: ''
+  hash: 6c894150648cf9c4991eb5f1320e36878a0ad878b1973f9a7f53744ae092188f
+  license: ''
+  license_text: ''
+./modules/unistr/u16-cmp: 
+  copyright: ''
+  hash: 6c1680cbdeffbfe7254af009a9b38e4fd7c2a8d04d6cbb827f5b8c79581de104
+  license: ''
+  license_text: ''
+./modules/unistr/u16-cmp2: 
+  copyright: ''
+  hash: 7d0f86845e9623a2a43cea7ac77f2033321dd70b9eb86b3cff8479eb8f8092ec
+  license: ''
+  license_text: ''
+./modules/unistr/u16-cpy: 
+  copyright: ''
+  hash: 4c2c3026a1bd49c91ccc758b866e7796578166a2aa65dafb4966719a13784ce1
+  license: ''
+  license_text: ''
+./modules/unistr/u16-cpy-alloc: 
+  copyright: ''
+  hash: c62421466f75814033d6587c3beae0f81ad0163be8d79ab76e96294d5be98fa1
+  license: ''
+  license_text: ''
+./modules/unistr/u16-endswith: 
+  copyright: ''
+  hash: fd68d80d149e1f8b89805dc96f07f05f71d16744dbc36c88ff10277272d5827c
+  license: ''
+  license_text: ''
+./modules/unistr/u16-mblen: 
+  copyright: ''
+  hash: 26c0544bfdb15aa81c21e8cca721659799fc9eb4af9859124775f26f2a3a705a
+  license: ''
+  license_text: ''
+./modules/unistr/u16-mbsnlen: 
+  copyright: ''
+  hash: 270ddf040b389f659a422772337a42fc0ec8dd948c8c10451154f6d844ee6b05
+  license: ''
+  license_text: ''
+./modules/unistr/u16-mbtouc: 
+  copyright: ''
+  hash: 3e7eff841306b06d86124014854b26de8789fb0ce6f8712fa55b055f224dc01b
+  license: ''
+  license_text: ''
+./modules/unistr/u16-mbtouc-unsafe: 
+  copyright: ''
+  hash: c0e51d9a7694fa751055b2101e4145eb3c274590735f9e3aaa7f2ba527181a2b
+  license: ''
+  license_text: ''
+./modules/unistr/u16-mbtoucr: 
+  copyright: ''
+  hash: b4d4a7d76a589c82835ed877110de2f60d8784b5967cbe25f0d76cbb1a2da887
+  license: ''
+  license_text: ''
+./modules/unistr/u16-move: 
+  copyright: ''
+  hash: 9a0ecd1db4dcb2318df5febbce8fdda68bed7d0e159505d9d34f35b1c81620c1
+  license: ''
+  license_text: ''
+./modules/unistr/u16-next: 
+  copyright: ''
+  hash: e2886f5dc60d6da76a941b4ba981a844116081c6002290af2034b04bc33d24c9
+  license: ''
+  license_text: ''
+./modules/unistr/u16-prev: 
+  copyright: ''
+  hash: b10276bd1b4800ac02a835a6a1304a196318ceb8ba7007cc39163874d6b2b414
+  license: ''
+  license_text: ''
+./modules/unistr/u16-set: 
+  copyright: ''
+  hash: 114fbcd3a3fed8c29138b66ac993b9245c5defb057304fda3b051515c3875ff1
+  license: ''
+  license_text: ''
+./modules/unistr/u16-startswith: 
+  copyright: ''
+  hash: 1c99a909517d107b4bc043ab2289b7c6e9bba9474e4dd7e84bc2926b38e9e279
+  license: ''
+  license_text: ''
+./modules/unistr/u16-stpcpy: 
+  copyright: ''
+  hash: 768b6daf4c471a2a53acef0cacdfe8e4149f46ceb14ab399c3b2ba7b83d4f5b3
+  license: ''
+  license_text: ''
+./modules/unistr/u16-stpncpy: 
+  copyright: ''
+  hash: 0ddc4dc25205318206f6d5672095fab98b5db9c46a147fad733625ecd65123f8
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strcat: 
+  copyright: ''
+  hash: 88ee8f819e444554daf43fea856b453474a12bee6c17437accad02cf95ee6735
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strchr: 
+  copyright: ''
+  hash: dcea6f78f71dd2109e6110bd7a16fa2d0a22b874796525e0408a254480565d2a
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strcmp: 
+  copyright: ''
+  hash: 9d508e0abbece1745811f8dae554e715a7d8810d5592374ef22a48a71bc83086
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strcoll: 
+  copyright: ''
+  hash: 1fe6ba935b495dc3478561c04d876888a347fe69f38317c38428da74b126b0bd
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strcpy: 
+  copyright: ''
+  hash: af4022a6903937a21af7a08c5717154046fdd57e878c927d2edec273d2a926a6
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strcspn: 
+  copyright: ''
+  hash: d81d7f1d978cd2385ef84886511f43055c67086231b11f06adca968444603ac2
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strdup: 
+  copyright: ''
+  hash: c589b243730f3ce78ba1ed578ed46050b66267618dca7ae20f79f7cb1275795f
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strlen: 
+  copyright: ''
+  hash: 85de6c72712b4e42a20ae5fd7aead9d06d1e78fa6fc9a479ab0a4d985ddb7f8e
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strmblen: 
+  copyright: ''
+  hash: 757f17cdeeb24d993e1d0f25ee11241f4592f31df2ff9b8d714fa40f1a425bc7
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strmbtouc: 
+  copyright: ''
+  hash: 8b6dd01329ab9c2282e3cc33f1d47413579448ceb31527062d902bf4203e4d41
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strncat: 
+  copyright: ''
+  hash: fe1e70a83c71ee2ec211d24de4c48d8b9811b03bd8db37317832f52292fc5a4a
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strncmp: 
+  copyright: ''
+  hash: 25d145ad99710676d8aeada4370f22d6782b5b340ff43bcf914b24266d700cab
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strncpy: 
+  copyright: ''
+  hash: 058c662917c80ac2a3b1e1265b2aef2942cb80af1fc7647692d735ea0e91429f
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strnlen: 
+  copyright: ''
+  hash: bc1f56a19f7521d6d6fd729687ebf5f1722a86bcad21e4222c85701fe89c9be3
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strpbrk: 
+  copyright: ''
+  hash: b18ea47f78d4c249674e38e7b0d10f07914a2f961ce737e9734a59ebeafd5e97
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strrchr: 
+  copyright: ''
+  hash: a6037543d1928cad924bb02facd245aef6c2419603ae2a837e7f314885d1d754
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strspn: 
+  copyright: ''
+  hash: b0c52081086d9124b0ccdf547c3d3a350928da09fffb4a14f309e574fc1bb6bf
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strstr: 
+  copyright: ''
+  hash: a4d8fadace1392d4a8c2bf1d2d9001cf52051b7cecadf246c46980a1219661c2
+  license: ''
+  license_text: ''
+./modules/unistr/u16-strtok: 
+  copyright: ''
+  hash: 6ab1255e7878f7e66c14b305cd9c23c25767e21f0b902e92f75b2de2b133e85a
+  license: ''
+  license_text: ''
+./modules/unistr/u16-to-u32: 
+  copyright: ''
+  hash: 1ed07813c21251360d34df1c66a3daccd46125db5a9fc2567c1496e997bb66cc
+  license: ''
+  license_text: ''
+./modules/unistr/u16-to-u8: 
+  copyright: ''
+  hash: 4be6380172f47f003a1063b623d36f0a85c64ea132e0cb472f53461599799806
+  license: ''
+  license_text: ''
+./modules/unistr/u16-uctomb: 
+  copyright: ''
+  hash: 96a71e89b7fa7eb1cfe1ebd8e41ceabf497aa60f4640968470ed47918aafb1e4
+  license: ''
+  license_text: ''
+./modules/unistr/u32-check: 
+  copyright: ''
+  hash: d30089eb527ed45788420d61fb178c2d0b33a244eb675a679a9b6fd2fef42555
+  license: ''
+  license_text: ''
+./modules/unistr/u32-chr: 
+  copyright: ''
+  hash: 1ef545b51ec0c964f4a9476466a69e63f79c453c5d5263f0b24bfb9618acdcbe
+  license: ''
+  license_text: ''
+./modules/unistr/u32-cmp: 
+  copyright: ''
+  hash: a89c5d8292e8294b4e754de419a6bacd5f1af4a6fa42dd0eb5c5833cd60cdff4
+  license: ''
+  license_text: ''
+./modules/unistr/u32-cmp2: 
+  copyright: ''
+  hash: 59b45d7fd7ecfd2c32cd59c72eb001f51c33df3f1d790f91be50da090076f70e
+  license: ''
+  license_text: ''
+./modules/unistr/u32-cpy: 
+  copyright: ''
+  hash: 19a8f09d63a3fc5788ed016282639b16e694ce41efef0b9c98cb998cd6cda60a
+  license: ''
+  license_text: ''
+./modules/unistr/u32-cpy-alloc: 
+  copyright: ''
+  hash: bbe7c52e264a76ae6b197122f7ef7d5644bae478ae870e3877a6d275cf272437
+  license: ''
+  license_text: ''
+./modules/unistr/u32-endswith: 
+  copyright: ''
+  hash: 12d65828740c811526f183278620b0767e19b7e189d698648b48fec0bcf641b1
+  license: ''
+  license_text: ''
+./modules/unistr/u32-mblen: 
+  copyright: ''
+  hash: dfd5b7f9f5ddd7f8cda044e2ce8e4b9812b85498250cc94f9a1afc31e3ce9f7a
+  license: ''
+  license_text: ''
+./modules/unistr/u32-mbsnlen: 
+  copyright: ''
+  hash: c31250e54523ca128b3ed988d971d7e11660e697418e817492b0bf560f6c4224
+  license: ''
+  license_text: ''
+./modules/unistr/u32-mbtouc: 
+  copyright: ''
+  hash: 97fab0b684c47ef8efe41fb02737feafbf66aa909ed50d38a9f2b22b177eb150
+  license: ''
+  license_text: ''
+./modules/unistr/u32-mbtouc-unsafe: 
+  copyright: ''
+  hash: adf485282664d86d231c518cf90e384edff8e45d6856c08a74d01bdffe9c1b31
+  license: ''
+  license_text: ''
+./modules/unistr/u32-mbtoucr: 
+  copyright: ''
+  hash: 43802ecda3d739f61ee96e307a9e89513827787a3fea19d6bc619e2fe75ce235
+  license: ''
+  license_text: ''
+./modules/unistr/u32-move: 
+  copyright: ''
+  hash: 598e84fe64fcc32320d43558f207c4c2f650cca4176da169ebdb525e96870337
+  license: ''
+  license_text: ''
+./modules/unistr/u32-next: 
+  copyright: ''
+  hash: a1643b07f52eee7629ead82e69379068917e0731aceb00c5758875c59b7c8147
+  license: ''
+  license_text: ''
+./modules/unistr/u32-prev: 
+  copyright: ''
+  hash: 4d810016048f7288e2ed8abbe5aad802e978554e6bd59751bd32ef757a2a44bd
+  license: ''
+  license_text: ''
+./modules/unistr/u32-set: 
+  copyright: ''
+  hash: e4c2e34d50001462cac8a78eeb9a2934842aa8fcd830c164b8c5c6a9b29e6989
+  license: ''
+  license_text: ''
+./modules/unistr/u32-startswith: 
+  copyright: ''
+  hash: 3c5ca341b07d6b8cb9d89b7c9112d3800ceb600f646ffbcaf130f419ae525439
+  license: ''
+  license_text: ''
+./modules/unistr/u32-stpcpy: 
+  copyright: ''
+  hash: b446f2c8936a11f4cd5e1aeb26c2b5ee54e00895f295c64150bedbe7d7bf9aaf
+  license: ''
+  license_text: ''
+./modules/unistr/u32-stpncpy: 
+  copyright: ''
+  hash: 1316df8fbcf81888ec6a060e7b50dc78bfa42fb1984fa53cf718c80904c3094f
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strcat: 
+  copyright: ''
+  hash: 4c925e546f690a456f6e577a025389a0b3eb5b209801629047b2dde3b94f3509
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strchr: 
+  copyright: ''
+  hash: 56f174656fdf4adad996c9f8c5c24a5f740352e7628b1ba77506deb6a37f9cdc
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strcmp: 
+  copyright: ''
+  hash: 7065d4bc58252885bb48ffd390e2598b13e53b629f99b1bb9ce9c64d6bc3ebfb
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strcoll: 
+  copyright: ''
+  hash: 5613745c45e9990b47ddb6d591605f89411d5270bc593481cd5009218c2396a6
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strcpy: 
+  copyright: ''
+  hash: fcc34d80ea5d8c6e8f9b81a5f304c610e56a561c384184f7828b174b8030d889
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strcspn: 
+  copyright: ''
+  hash: 2bc19f0ef48e258551cd82ccd6ae6acab80afd51324e942dbc96d2777e9e0e06
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strdup: 
+  copyright: ''
+  hash: a86383941494d5eabe2c7c18986a45f1949520c0bb308324490f6c8c33bcad06
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strlen: 
+  copyright: ''
+  hash: cac5e41b27597a0e6ea06e373da8c27d86c950ac67e32dead50003e539f7fe43
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strmblen: 
+  copyright: ''
+  hash: 0a39dd66f226db1655fa8adde6900e597ce8cb093af6419a0773394bf43e8bf2
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strmbtouc: 
+  copyright: ''
+  hash: b549c1a44c55d0ab2c49f1adebb1920287cd23f3706b970f4597894c034d5e86
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strncat: 
+  copyright: ''
+  hash: 57f9cd08214329a7a22ae525087199e02b869335a7d205fabf671f4980de6899
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strncmp: 
+  copyright: ''
+  hash: e96953d0ea23e21638cfb21463b1dc6a24727b137c96a1a3d55d2863f182f198
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strncpy: 
+  copyright: ''
+  hash: 3c1ed4cd48c6daf7faca50c6ea9e58bad9306e1ec96b392ce6941db4e9ae4341
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strnlen: 
+  copyright: ''
+  hash: 28f35912d4dd18d1efb1ec1b5ab7370f6c8d5ca60fa4672627d18b96fe6971ce
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strpbrk: 
+  copyright: ''
+  hash: 3d1e9ba187b678b79f07715d90f0fd805860a04670b5b4ec832db44a11c791e2
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strrchr: 
+  copyright: ''
+  hash: 354743e1655d52b8664156e34b7bbd99f6c10f09221923cfcd72a00f531cc34e
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strspn: 
+  copyright: ''
+  hash: 2c0deed50d3efbf74245bafc93dca86fd3cac1120db9190f93ad2ce047b0931b
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strstr: 
+  copyright: ''
+  hash: 876a50ab36555d6512bff19b244be2ce5f7bdbda514aabc36e7b5ea80559572b
+  license: ''
+  license_text: ''
+./modules/unistr/u32-strtok: 
+  copyright: ''
+  hash: 529d687fd41eb8bd1e8c79f8c17b630e83b4293186976cadb38afc021a6a2a0d
+  license: ''
+  license_text: ''
+./modules/unistr/u32-to-u16: 
+  copyright: ''
+  hash: 022d4994ff8e18312f8980e63443531a9e85316a1fe116717032e2a79d294bb6
+  license: ''
+  license_text: ''
+./modules/unistr/u32-to-u8: 
+  copyright: ''
+  hash: fd3ab8952b1edc44a7b37328238e9a9d259c19ee9ac7d6931f0ebaef8776bc37
+  license: ''
+  license_text: ''
+./modules/unistr/u32-uctomb: 
+  copyright: ''
+  hash: 1af030b215d042441496451065fa2a829bef744bba02b1b9ab1e0b2c069f7b89
+  license: ''
+  license_text: ''
+./modules/unistr/u8-check: 
+  copyright: ''
+  hash: e762bd6549a1b7739cfdde71aa4fdc5bcb65de7297b68d3bf0253b675c66ec2c
+  license: ''
+  license_text: ''
+./modules/unistr/u8-chr: 
+  copyright: ''
+  hash: 0f0f61a73f9c721fffacf395adf6390efc059183552a212b322f17396d8badfd
+  license: ''
+  license_text: ''
+./modules/unistr/u8-cmp: 
+  copyright: ''
+  hash: e53af4cf3c4bbdaf8b40dcfd3d2d9ba20534b044f44a92db805c3acc2ac558f4
+  license: ''
+  license_text: ''
+./modules/unistr/u8-cmp2: 
+  copyright: ''
+  hash: 00fccbb392a1ea9e5a35b9e5b0e92734f0b03ef7c1bf58e88234e80be6d15034
+  license: ''
+  license_text: ''
+./modules/unistr/u8-cpy: 
+  copyright: ''
+  hash: a8d050dbe93417ef2632e1cd18f25c1ef0d1b02b74ef16a7968e9e3756afad40
+  license: ''
+  license_text: ''
+./modules/unistr/u8-cpy-alloc: 
+  copyright: ''
+  hash: 7b4a814d0a03e059042bee4ad27e13d8bc3d280393db8d95e0d4bef3466e0f60
+  license: ''
+  license_text: ''
+./modules/unistr/u8-endswith: 
+  copyright: ''
+  hash: 39adcf4c5bd6e19f7600028d7625f6b4b0e7cbb6b2af481f6ecd787fdf9188ec
+  license: ''
+  license_text: ''
+./modules/unistr/u8-mblen: 
+  copyright: ''
+  hash: 408faa587e56fbb1d478e61d61dd03cdc116d3dd92d9b54e6c0c9bfdff5b5276
+  license: ''
+  license_text: ''
+./modules/unistr/u8-mbsnlen: 
+  copyright: ''
+  hash: f0f2db825748512cee734ad6fa30b49a4609d6f0bd990758476030ab197d3a96
+  license: ''
+  license_text: ''
+./modules/unistr/u8-mbtouc: 
+  copyright: ''
+  hash: 518c26f031f4bf33f4ada1641e839d4332c8e1ed7e5c6044b3d9042aff5d4ba0
+  license: ''
+  license_text: ''
+./modules/unistr/u8-mbtouc-unsafe: 
+  copyright: ''
+  hash: 3de70315efd5082b08b82696cb8607aed3a9ce70772847e7404961630d4565d1
+  license: ''
+  license_text: ''
+./modules/unistr/u8-mbtoucr: 
+  copyright: ''
+  hash: fa50e84a06148660a72bf6793ab1ab735d876fc58d4af10d3da13089aebbba73
+  license: ''
+  license_text: ''
+./modules/unistr/u8-move: 
+  copyright: ''
+  hash: 266f706359ff6fa14c20e575e16bc5485d3353b6f89c410ac93dcf41601669b8
+  license: ''
+  license_text: ''
+./modules/unistr/u8-next: 
+  copyright: ''
+  hash: 1b8d63ec73c8841e2de255038e733d06312add264d5a9d6493a37238415f3476
+  license: ''
+  license_text: ''
+./modules/unistr/u8-prev: 
+  copyright: ''
+  hash: 8d5b54525b1e206aceacc33ac18db8f242f680e4ff2108dc4f339cad3d3846bd
+  license: ''
+  license_text: ''
+./modules/unistr/u8-set: 
+  copyright: ''
+  hash: 0758300e7315732a1bdd6e409ed9ae5a66e81f6af5196c56a13bea90e59ac0d0
+  license: ''
+  license_text: ''
+./modules/unistr/u8-startswith: 
+  copyright: ''
+  hash: ce09cc33ab2257e14a2c13048216ca38145c2a027391108dcad6645cf38d134b
+  license: ''
+  license_text: ''
+./modules/unistr/u8-stpcpy: 
+  copyright: ''
+  hash: f51e9e6b3a4e4d55ce408f8332ced953ef2701226945794ca9a736debd142f6a
+  license: ''
+  license_text: ''
+./modules/unistr/u8-stpncpy: 
+  copyright: ''
+  hash: 0509c5614f94701a66adc81cf069f2eceff65e00afe2e8af7e7ee372242fc0ec
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strcat: 
+  copyright: ''
+  hash: 3d7e5b83ffd692c82ae35edff74365fc2fef6c51d569eb72c701838ceb1ed064
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strchr: 
+  copyright: ''
+  hash: 371da7bd92f6327fe7ed4e7adf4a92ac13860b0d5b70cbf74ce84dcc5734c189
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strcmp: 
+  copyright: ''
+  hash: 27ac4927a7266ecefb5276252d4ac2aa9fbac030608f00440a41862cc4c9e3ec
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strcoll: 
+  copyright: ''
+  hash: eb8ef55b39888bc59996029734bc4765e587347fd6849c9eabeb537484ad0e47
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strcpy: 
+  copyright: ''
+  hash: 8acb4839e489dfc0b194d9845c1b8818b932ef8788ca3a59091e65274a17cf7a
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strcspn: 
+  copyright: ''
+  hash: 901bde35d4a19fe0038605f60c0121c979df786313ef257d26f7a0cb6ddea390
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strdup: 
+  copyright: ''
+  hash: 72155a23384c8d68b0792478ea50cef86bf0dbbedede0fc0b21c9692bf679840
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strlen: 
+  copyright: ''
+  hash: 78e1bea871c30a4bb4a24717de55076cb9e9e44b7a82f92c0e29dcfa8c70b47f
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strmblen: 
+  copyright: ''
+  hash: 39d415aa0c53cd0bb4390fc79b42f7fed602cb124da5c9fe08ca0f6ecf66dced
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strmbtouc: 
+  copyright: ''
+  hash: a2eb24ffc4cd94e7a7c9f774f864b1e8c9ca8d8fb8ab56fc5bf6ec16c06792f8
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strncat: 
+  copyright: ''
+  hash: 313fefe65e273b4a185b3cb48174e459e354a2aaf8323bf44a5ed65e84e703cc
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strncmp: 
+  copyright: ''
+  hash: 8eddf5eb56c701e04fc346f2637657d112e6ffd19b9b5067cdc426c80d7ab648
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strncpy: 
+  copyright: ''
+  hash: b8f595c135b53ac6810786b317c5f72b21daf539a08428a70a72d02b1cfafbd9
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strnlen: 
+  copyright: ''
+  hash: df5a00a46fb2149c3bb563bbae6cd56749db185256df83503027242f7127e329
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strpbrk: 
+  copyright: ''
+  hash: cf46d198446f93fc02a87a29251104030023b02667c191c15d097d443a257882
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strrchr: 
+  copyright: ''
+  hash: 67af768301a77434ce2e829df7f6cc95d934376737252d5687fe2ed4f99d6058
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strspn: 
+  copyright: ''
+  hash: b254b4d4af0993182505511f6b69a9b43f2fd89167d945c4dec7381b4cd0d393
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strstr: 
+  copyright: ''
+  hash: 6ae0bfddf7d25b1db21f7f2022846bd2b9bb1fda741de649f263f1bd422da1af
+  license: ''
+  license_text: ''
+./modules/unistr/u8-strtok: 
+  copyright: ''
+  hash: 6789a23f8b70334a2d70c3957f6e3794923c47f9366315d7ec20d169082ff0c9
+  license: ''
+  license_text: ''
+./modules/unistr/u8-to-u16: 
+  copyright: ''
+  hash: 6b1b43f09949fb6925196b2be1a666c19623dffdeeb7412037f390acc3fa99d5
+  license: ''
+  license_text: ''
+./modules/unistr/u8-to-u32: 
+  copyright: ''
+  hash: d12ae67b97c01738122febaaa36ed901a5cdb13adb9bff527d723b25cb2830b8
+  license: ''
+  license_text: ''
+./modules/unistr/u8-uctomb: 
+  copyright: ''
+  hash: 91b24fa371c552ef8e0b7ade2830d19fff02c16a71c5cf7540a6df6d37df8786
+  license: ''
+  license_text: ''
+./modules/unitypes: 
+  copyright: ''
+  hash: 3c84fbb1b5987bd3154848f1f8a9455771418452fd66b92cb4e246849d683ac0
+  license: ''
+  license_text: ''
+./modules/uniwbrk/base: 
+  copyright: ''
+  hash: d482b7472bbc6482fd9e9f0dd92f23cc0ca9e68ea603067ecf03925aa83dfdde
+  license: ''
+  license_text: ''
+./modules/uniwbrk/table: 
+  copyright: ''
+  hash: 2799bba2f5960a06740d6d655215f499af718df4c8cc88d09787c6f95d16cc32
+  license: ''
+  license_text: ''
+./modules/uniwbrk/u16-wordbreaks: 
+  copyright: ''
+  hash: d7f70f6d8c5b458af47173ce7928ae07ba100b05546ee8ba67d1ff4f2a9339e4
+  license: ''
+  license_text: ''
+./modules/uniwbrk/u16-wordbreaks-tests: 
+  copyright: ''
+  hash: c0ad0afa38eb38012d0efeb296d1e3c3552da44da4fe9c9edf7c4c49ad839c1a
+  license: ''
+  license_text: ''
+./modules/uniwbrk/u32-wordbreaks: 
+  copyright: ''
+  hash: 3078e02d1f069bff3f8954303d781186bd57696ce962b99fd6d463edcaa7886e
+  license: ''
+  license_text: ''
+./modules/uniwbrk/u32-wordbreaks-tests: 
+  copyright: ''
+  hash: 63feee9699766ae3a2d981e1afce46021c4162eb71fe500dec6cb7425c8f051e
+  license: ''
+  license_text: ''
+./modules/uniwbrk/u8-wordbreaks: 
+  copyright: ''
+  hash: 8b9a2479ce00d2ea86f22bf74d08fd9e4144e6f802e825345a069a97544b64bf
+  license: ''
+  license_text: ''
+./modules/uniwbrk/u8-wordbreaks-tests: 
+  copyright: ''
+  hash: f449dca432c9d000b9dcf7156aebdacb6a5458a2aaa98b163031199f4d7a0a5c
+  license: ''
+  license_text: ''
+./modules/uniwbrk/ulc-wordbreaks: 
+  copyright: ''
+  hash: 1960fd867aafb45907b1a05155d61fd72f1298a693482083df733ad1f4ac5b22
+  license: ''
+  license_text: ''
+./modules/uniwbrk/ulc-wordbreaks-tests: 
+  copyright: ''
+  hash: cf79df0da1d74f9bc16ddfb86ae51b61a11053258ca11d95a60edad1a55975f1
+  license: ''
+  license_text: ''
+./modules/uniwbrk/wordbreak-property: 
+  copyright: ''
+  hash: 8d79911936415bdaa5a026169572855d941dd4c7e3a5b73929ee71014485e918
+  license: ''
+  license_text: ''
+./modules/uniwidth/base: 
+  copyright: ''
+  hash: 3586e1904006e2ff3b99c322d51a9d93d5ae389bb64cc98c42574fde384b9d96
+  license: ''
+  license_text: ''
+./modules/uniwidth/u16-strwidth: 
+  copyright: ''
+  hash: 647245c0f7f5245e452c16a7277d9fa55dce164e88828579f741cd7161453550
+  license: ''
+  license_text: ''
+./modules/uniwidth/u16-strwidth-tests: 
+  copyright: ''
+  hash: fc680b14fa92a63747604225594434c464e284f4ddd63cd26ca707b9218f204e
+  license: ''
+  license_text: ''
+./modules/uniwidth/u16-width: 
+  copyright: ''
+  hash: a6a6448321623e86774b6707c62650ff8a42e78980b5225ec46ffbf15cabd495
+  license: ''
+  license_text: ''
+./modules/uniwidth/u16-width-tests: 
+  copyright: ''
+  hash: ffc13ce1b559cb247a4eee44d1dee158808875bf29e78f5e5a71a6661e5a0194
+  license: ''
+  license_text: ''
+./modules/uniwidth/u32-strwidth: 
+  copyright: ''
+  hash: 4f122cf229d732419564e8ae27aba5c45041cc3af9a7df0cc8e4b077f19dab08
+  license: ''
+  license_text: ''
+./modules/uniwidth/u32-strwidth-tests: 
+  copyright: ''
+  hash: d68ce5199592ac78150411b271dd19a9bedb90e2da4a4e786fffd7a76f005a98
+  license: ''
+  license_text: ''
+./modules/uniwidth/u32-width: 
+  copyright: ''
+  hash: e31da64c351f3a30e812efbec790479ca725fc6a73c6f9ab9097f83f6952b958
+  license: ''
+  license_text: ''
+./modules/uniwidth/u32-width-tests: 
+  copyright: ''
+  hash: 8966b816cbed7089ccb6d1958a94464d24ddc56835b9f2373c1883f63a1fbeab
+  license: ''
+  license_text: ''
+./modules/uniwidth/u8-strwidth: 
+  copyright: ''
+  hash: c4026a9176a0c66b80e93cf80a633682b9301a186a0f741dc9bda322e3520497
+  license: ''
+  license_text: ''
+./modules/uniwidth/u8-strwidth-tests: 
+  copyright: ''
+  hash: b51f991886abd37c01ac192f25153fee276acc957110eaa0d00d7dd878960193
+  license: ''
+  license_text: ''
+./modules/uniwidth/u8-width: 
+  copyright: ''
+  hash: 13f689e5bdf202aa24b776a52e12d49e0e0f6787793d093ada614e8648b8c447
+  license: ''
+  license_text: ''
+./modules/uniwidth/u8-width-tests: 
+  copyright: ''
+  hash: 2bb505810e270e60abdcfef3b629aa17611580d374703e82bdbcffa25b6e7a07
+  license: ''
+  license_text: ''
+./modules/uniwidth/width: 
+  copyright: ''
+  hash: 6c90cc51c79e162e44efaac12316c8c1bf904251dfc30ff95df903a60fddb7ac
+  license: ''
+  license_text: ''
+./modules/uniwidth/width-tests: 
+  copyright: ''
+  hash: d2a94933efed06c9b2c93e453c51e0bea1644b13025a45bb2e4d7f7a134f017d
+  license: ''
+  license_text: ''
+./modules/unlink-busy: 
+  copyright: ''
+  hash: cf3b5582b7024760963d496c895961062b40655c4ccbfffa69c4203ee899b799
+  license: ''
+  license_text: ''
+./modules/unlinkdir: 
+  copyright: ''
+  hash: 961f9dbc8abeddbe1de620774438544ed07d32a8d57b0d2608262dc90b4c2d40
+  license: ''
+  license_text: ''
+./modules/unlocked-io: 
+  copyright: ''
+  hash: 10a29316112d376a40710e21f2374085247898d6f97d15efcbaa0c988a9db134
+  license: ''
+  license_text: ''
+./modules/unsetenv: 
+  copyright: ''
+  hash: 0a83211b238e02290f061d8551bb8dcb6a28d255aec01b89844b3bfb0ba80574
+  license: ''
+  license_text: ''
+./modules/update-copyright: 
+  copyright: year list to include the current year
+  hash: 2e4db6b5e36ca243b23f39ecc1ff04ee1fa625a292c7ff68a561922fce57955f
+  license: ''
+  license_text: ''
+./modules/update-copyright-tests: 
+  copyright: ''
+  hash: 6ae199954037613567109fe39c4c6783d33b89a42e800e808670137daeba71a0
+  license: ''
+  license_text: ''
+./modules/uptime: 
+  copyright: ''
+  hash: 8af60d16f2c9279ddb4a52fa629fdf58f78c8b7f48841926bf691e7cc2733f82
+  license: ''
+  license_text: ''
+./modules/useless-if-before-free: 
+  copyright: ''
+  hash: b4fbea16aa89a4f83a76bfc53ce22893a237dcba989f0fc80e539dca0fc8406f
+  license: ''
+  license_text: ''
+./modules/userspec: 
+  copyright: ''
+  hash: f7690daa1d2f1b753e9787040ee16f8dc4809bd04085a7c984a4e909e61320af
+  license: ''
+  license_text: ''
+./modules/utf16-ucs4: 
+  copyright: ''
+  hash: da66714c26922eab20bebafafce8d764b26eff8bcb3d63150d0d80880d0b7971
+  license: ''
+  license_text: ''
+./modules/utf16-ucs4-unsafe: 
+  copyright: ''
+  hash: 5cf44d0d88cb9cbf183eb2d13627b2bb4b6241ec46624b43f75b21178d86bbc7
+  license: ''
+  license_text: ''
+./modules/utf8-ucs4: 
+  copyright: ''
+  hash: 7918cc934ad409a54d593def98245ee9ab76c5e4e0101659121492e86323714c
+  license: ''
+  license_text: ''
+./modules/utf8-ucs4-unsafe: 
+  copyright: ''
+  hash: 3f8a718d34aec97dc029e79cd6d883b739bc502c9f56520b2b3932a0e4dbc7eb
+  license: ''
+  license_text: ''
+./modules/utime: 
+  copyright: ''
+  hash: 0086e6436338f3bdcf0779814b2ac35c4f0c043fe03fcdd4c5445bd97544ab6d
+  license: ''
+  license_text: ''
+./modules/utimecmp: 
+  copyright: ''
+  hash: 32fe4db3bb7f813c99e96b80a7ae085537894b2879ee5dcf1b693363ee3e2867
+  license: ''
+  license_text: ''
+./modules/utimens: 
+  copyright: ''
+  hash: 1a3764888caba4228270901f1c6865fcd6f1fc997f9671616e63032837541d15
+  license: ''
+  license_text: ''
+./modules/vararrays: 
+  copyright: ''
+  hash: 11b57911d704f4e91720bc43fd37031fb2572f5f0c87207182343c00279f7924
+  license: ''
+  license_text: ''
+./modules/vasnprintf: 
+  copyright: ''
+  hash: 0ca1ad02eaa6ba3485e86ae626ef721e9c68bad2f7eed1b0b44dbdfa04c31f7c
+  license: ''
+  license_text: ''
+./modules/vasnprintf-posix: 
+  copyright: ''
+  hash: 6c49ae496f80e7370811c077c14e8a248c1321bc096d0370be6ef63da30b58a7
+  license: ''
+  license_text: ''
+./modules/vasnprintf-posix-tests: 
+  copyright: ''
+  hash: a745a55e48911374b99312c61633baba5b40028ffb4a5d4eae397f71d7a09223
+  license: ''
+  license_text: ''
+./modules/vasnprintf-tests: 
+  copyright: ''
+  hash: c9038b619e31e485f0f5f1772bcb765d4e4fe573fb052364bd9d87e718e4d7f7
+  license: ''
+  license_text: ''
+./modules/vasprintf: 
+  copyright: ''
+  hash: 2a5bf142e7b62113b71434bdb41f540a22fa3e2f4988d2cdb1a49889c0ae1b6a
+  license: ''
+  license_text: ''
+./modules/vasprintf-posix: 
+  copyright: ''
+  hash: 87d9366296e00893359df81249d4af46b24987917cdbcb9ddd9917a6384e0e01
+  license: ''
+  license_text: ''
+./modules/vasprintf-posix-tests: 
+  copyright: ''
+  hash: 0e4e5d206d990fae9f7f9e583594e056290c7ca384fd5f3b2b25846cc4954472
+  license: ''
+  license_text: ''
+./modules/vasprintf-tests: 
+  copyright: ''
+  hash: 93d7f8b56d3b48d585accaeec8a52e9d82fb0c3bd5be43f87b58ce1d5c0d684d
+  license: ''
+  license_text: ''
+./modules/vc-list-files: 
+  copyright: ''
+  hash: 4060528cc071faf648d4863fa61da87a9d56296ba1dedf4d26a394ac10e20b75
+  license: ''
+  license_text: ''
+./modules/vc-list-files-tests: 
+  copyright: ''
+  hash: 672846856b1ad2139f324d719545476ad87078aca3ac134ac448c3378a251b45
+  license: ''
+  license_text: ''
+./modules/vdprintf: 
+  copyright: ''
+  hash: d90bc5e200dd487a23da97197e9d41b5c7914746b77c99e0c4541ebc7cfe9a0b
+  license: ''
+  license_text: ''
+./modules/vdprintf-posix: 
+  copyright: ''
+  hash: 52c74541d4c3fe58758a1b96a6f3492d64f9512c13452020ab184ca8276c1d23
+  license: ''
+  license_text: ''
+./modules/vdprintf-posix-tests: 
+  copyright: ''
+  hash: 4d157c167b21f081760beceb2bf3cd1d8d2ed7ca3e85d70f261c10544a14fd57
+  license: ''
+  license_text: ''
+./modules/verify: 
+  copyright: ''
+  hash: 7b7a55bf8b12b6b043c75e5b36238844c0d81146a20dc6cc4e10615da92bde26
+  license: ''
+  license_text: ''
+./modules/verror: 
+  copyright: ''
+  hash: 31ffe5f9045730d63c11a0e4f2c6099ed5b6add722f8a850c7d15a599939160e
+  license: ''
+  license_text: ''
+./modules/version-etc: 
+  copyright: ''
+  hash: 076ea07214d3703eead804ba12f0102d732b07f8b26b85a033e982959cd64289
+  license: ''
+  license_text: ''
+./modules/version-etc-fsf: 
+  copyright: variable for FSF projects
+  hash: 3a09b4e87ffd6f7781b9f472c86691351c56cbdf817a6616c015c7501a22abf5
+  license: ''
+  license_text: ''
+./modules/version-etc-tests: 
+  copyright: ''
+  hash: 1327777f181a8daca2a09ff369d10d2152cd63509e9adf5947ed0f223be007cc
+  license: ''
+  license_text: ''
+./modules/vfprintf-posix: 
+  copyright: ''
+  hash: d64c2cba406b12fcf7403bec84b3248b8aec004325b88a397c41745482edff33
+  license: ''
+  license_text: ''
+./modules/vfprintf-posix-tests: 
+  copyright: ''
+  hash: ef6a0dd485a1a8fa70f5f69cf73e58d5212671dbe76ea475035af6aa8ca211fa
+  license: ''
+  license_text: ''
+./modules/vprintf-posix: 
+  copyright: ''
+  hash: 6413862a090be5b48381c212df58e7ff0125aec71cc08741bee814809663f79a
+  license: ''
+  license_text: ''
+./modules/vprintf-posix-tests: 
+  copyright: ''
+  hash: 71e75a75b9e1323affcb2af3b37aa0f9c82187679520918b0ce50e63dc83a229
+  license: ''
+  license_text: ''
+./modules/vsnprintf: 
+  copyright: ''
+  hash: 2b8244a8bc283b9b7fba2aa42f4b195f8fe366ded5a28f34a26afa42fa342922
+  license: ''
+  license_text: ''
+./modules/vsnprintf-posix: 
+  copyright: ''
+  hash: 7afbc43f411ec81ee764b7423797914265905513ffa6fabcfa4852806a276167
+  license: ''
+  license_text: ''
+./modules/vsnprintf-posix-tests: 
+  copyright: ''
+  hash: c538b182d94e371856cf95289d1df542721db6100735e0afdd794c77cf6507ec
+  license: ''
+  license_text: ''
+./modules/vsnprintf-tests: 
+  copyright: ''
+  hash: 517e24da52633b20a362061b8d5e2d4a75312ef2da2ed5327bc740f9094a6638
+  license: ''
+  license_text: ''
+./modules/vsprintf-posix: 
+  copyright: ''
+  hash: 7502f2e441ffbf13ecaaec0b1f6b068fc924286e387c3dadf15e722fdbe435d5
+  license: ''
+  license_text: ''
+./modules/vsprintf-posix-tests: 
+  copyright: ''
+  hash: ef57fa5c23966009d7847ddbc32559229f2c378ab7769efb6009ab98230bd0c4
+  license: ''
+  license_text: ''
+./modules/wait-process: 
+  copyright: ''
+  hash: b7a74c9e6cd90602d200af87be99f780df780c45a2fee29eadaf2ca03f84339e
+  license: ''
+  license_text: ''
+./modules/warnings: 
+  copyright: ''
+  hash: e81b2d723d4d214468c22e2397796f0c4b9fc0f2828bc4ca5f4568a2e96cddd5
+  license: ''
+  license_text: ''
+./modules/wchar: 
+  copyright: ''
+  hash: 7bea4b53cc8e946a5f0639f58ad45143022b056c62d1e7510dbf24d27a83f2bc
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/wchar-tests: 
+  copyright: ''
+  hash: 2577576be9eddcb707d89988c439d01cbd84985f87119bc5dcc4712579bbc58e
+  license: ''
+  license_text: ''
+./modules/wcrtomb: 
+  copyright: ''
+  hash: 3ce48f52a57c00a01fc38354c9d389e2180b97a960003f6de07b667b4972b24b
+  license: ''
+  license_text: ''
+./modules/wcrtomb-tests: 
+  copyright: ''
+  hash: 40dfd7d5da9bca4d0b61cdaea8cbee2bebbb0dda4e9aee53236eef6d5ba59585
+  license: ''
+  license_text: ''
+./modules/wcsnrtombs: 
+  copyright: ''
+  hash: 3f6c8e9f0e197e5311863cffb9acbb2139c632022ad052e6c9daa48a46b3baed
+  license: ''
+  license_text: ''
+./modules/wcsnrtombs-tests: 
+  copyright: ''
+  hash: d827f4771c76ced1482bb8c9c9804b1dbbb17f8b6aa78e2707e3c23f6eeaaf51
+  license: ''
+  license_text: ''
+./modules/wcsrtombs: 
+  copyright: ''
+  hash: fe05078bfac5d8e0cec4b9ca0737209213b5836fab881ad5f531fc80aeac555d
+  license: ''
+  license_text: ''
+./modules/wcsrtombs-tests: 
+  copyright: ''
+  hash: f76281c8192c2e2c685def38b47ce5224f53ceacc652ee10c7cb1f5a59b3d0b1
+  license: ''
+  license_text: ''
+./modules/wctob: 
+  copyright: ''
+  hash: 841e8708f6cd2c554c2a193f9a81d57f65649c8d2b1f7ec92fd75cb65e33ae58
+  license: ''
+  license_text: ''
+./modules/wctype: 
+  copyright: ''
+  hash: 18d8213d39c0529c7c20e76f90d3ab686509c23b402a2028018fb36685488102
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./modules/wctype-tests: 
+  copyright: ''
+  hash: be49f6d3db8c36ed9d867050a33ba9826edd677df187bc17e2624a5b11ada570
+  license: ''
+  license_text: ''
+./modules/wcwidth: 
+  copyright: ''
+  hash: 1b1ac1d7efd6291414a3a3f489f1268fc9112d32461579c05c975be64b29c020
+  license: ''
+  license_text: ''
+./modules/wcwidth-tests: 
+  copyright: ''
+  hash: 05a5f992e1791afad928046facae2139a90fde83646d3f8b05fd584e7faeffc2
+  license: ''
+  license_text: ''
+./modules/winsz-ioctl: 
+  copyright: ''
+  hash: c183aec307c705feb0625eb00b95f57e9713dda4959e9b277134f7b54af6a0ec
+  license: ''
+  license_text: ''
+./modules/winsz-termios: 
+  copyright: ''
+  hash: 00bc2319cc9a43155ebfcaa9e11de69606dc9ca6b1e4f24365b2d599b378e442
+  license: ''
+  license_text: ''
+./modules/write: 
+  copyright: ''
+  hash: 65f0f043199edd0909f48c2fe00dcbdac4b987b3055131bc1fecb779928057a7
+  license: ''
+  license_text: ''
+./modules/write-any-file: 
+  copyright: ''
+  hash: 0b2868daa83fb7b0fc6971227f8890ebe1b0a16077fb3574d936cbd33cd4ab6d
+  license: ''
+  license_text: ''
+./modules/xalloc: 
+  copyright: ''
+  hash: a75de21c7c6ac9d05414cf8ca65d2f1f28ec4e09bfa78549f2c24916f9a779ba
+  license: ''
+  license_text: ''
+./modules/xalloc-die: 
+  copyright: ''
+  hash: c1f26355f82c42d68e2e87babfdd932bcc4ac0bc4ced0df5cc539ca91ce47d93
+  license: ''
+  license_text: ''
+./modules/xconcat-filename: 
+  copyright: ''
+  hash: 132e60d6315cb64826b2bbf055e133c55e5a1676982b1fc84c06258c05fff824
+  license: ''
+  license_text: ''
+./modules/xgetcwd: 
+  copyright: ''
+  hash: a7e09cd1f414ba952c6567940e45b0b546f60a736da453f52e8c86011386e77d
+  license: ''
+  license_text: ''
+./modules/xgetdomainname: 
+  copyright: ''
+  hash: 9b5f18896883e9d6b7b85dc9dafcec3a4caf07cbec4870f37c5922d4d10d84e6
+  license: ''
+  license_text: ''
+./modules/xgethostname: 
+  copyright: ''
+  hash: 069989cc88c61eb54c68862011d9cd7ed14ba4ce66c77a5459368e7618ea4d6c
+  license: ''
+  license_text: ''
+./modules/xmalloca: 
+  copyright: ''
+  hash: 1db0db3c1ceba00f88e5deafe38523a85a4161ed736a582c367c7e4b5b5b60b6
+  license: ''
+  license_text: ''
+./modules/xmemcoll: 
+  copyright: ''
+  hash: 39fc9b14d693e26ef8d1d17e75b9baaaf7ab622e5214aaff03687a8c0afc29a6
+  license: ''
+  license_text: ''
+./modules/xmemdup0: 
+  copyright: ''
+  hash: 67a8b2bd891aa98a97f64fd443cecf85ccfa37f19b3a0efc1f085c95debf3471
+  license: ''
+  license_text: ''
+./modules/xmemdup0-tests: 
+  copyright: ''
+  hash: f736c0573ad3d34f23a78072056d2122ff924e78e7ce98793455cd9f4436948f
+  license: ''
+  license_text: ''
+./modules/xnanosleep: 
+  copyright: ''
+  hash: 9140638a34c9d2e4b145028fb8693d47fcb704ac35b46e473674c9ed7fea8434
+  license: ''
+  license_text: ''
+./modules/xprintf: 
+  copyright: ''
+  hash: 9c52d5d2c0ec5381b883d458857e5eb9fd2050a86b96958b3d94d967b687721a
+  license: ''
+  license_text: ''
+./modules/xprintf-posix: 
+  copyright: ''
+  hash: 04d54e931a50cfc4cd35870f39dcfff7ff21fc089013aa07b3b3f6bd148b820d
+  license: ''
+  license_text: ''
+./modules/xprintf-posix-tests: 
+  copyright: ''
+  hash: 2f816dd982317210b6b67aea3640c552e241359673bef69e1d8eafa0f238ba62
+  license: ''
+  license_text: ''
+./modules/xreadlink: 
+  copyright: ''
+  hash: 95a60a683231c9a0f5320b1e632c3054686a043fdebabed3e896a49f499c8e01
+  license: ''
+  license_text: ''
+./modules/xsetenv: 
+  copyright: ''
+  hash: 337217e257fc903155c3a171aa46257094e0d9912711837ce03805e93e47755f
+  license: ''
+  license_text: ''
+./modules/xsize: 
+  copyright: ''
+  hash: 95dc1d636c6c00acd3ed20e5ce784c788f897935eb4f3655264213de86dae482
+  license: ''
+  license_text: ''
+./modules/xstriconv: 
+  copyright: ''
+  hash: 942bc357d4e8965fd14b1c754c058955bc6c0cd1b795350453d172625d279047
+  license: ''
+  license_text: ''
+./modules/xstriconveh: 
+  copyright: ''
+  hash: 4943c4561755ac0e324ebf8e5f238ff15eefe650675186fb5b1793e988dd5559
+  license: ''
+  license_text: ''
+./modules/xstrndup: 
+  copyright: ''
+  hash: 7ba0a68faaec8f490d934f91875d49013c87b87520d685467174869110eabcbe
+  license: ''
+  license_text: ''
+./modules/xstrtod: 
+  copyright: ''
+  hash: 128b4ee0746da30fc9f29a1b5f6f95c1401cce18c4242713b24c93f1bf6e8918
+  license: ''
+  license_text: ''
+./modules/xstrtoimax: 
+  copyright: ''
+  hash: d8abe54149e8816b18398bfde53b3e3e804f43ffc85f35e79717798cf5f88915
+  license: ''
+  license_text: ''
+./modules/xstrtoimax-tests: 
+  copyright: ''
+  hash: ed0c5056e3fe1f25e1e8a01656c9be74ae5d5e45506319d4e5bd21703e1a5422
+  license: ''
+  license_text: ''
+./modules/xstrtol: 
+  copyright: ''
+  hash: 5cb690ca8bad394d9dc7d2ad5680a49b852c3440914d33562a358485a9ca202a
+  license: ''
+  license_text: ''
+./modules/xstrtol-tests: 
+  copyright: ''
+  hash: 50cd2e95398b90848b7d08a47ae7e303a749118f10ce1c6c960c7fe230d22c55
+  license: ''
+  license_text: ''
+./modules/xstrtold: 
+  copyright: ''
+  hash: d29ee03b049e8dafc8f9899418c0b422b9e45283103d405408e6d4d8ed9697f6
+  license: ''
+  license_text: ''
+./modules/xstrtoumax: 
+  copyright: ''
+  hash: 42a9aee1373bf0049f1683212a889da6e6e16873e8a637cc64d1903d7a76f2dd
+  license: ''
+  license_text: ''
+./modules/xstrtoumax-tests: 
+  copyright: ''
+  hash: 27cbe25f094974926313b006fdf804274814be11ea6a0812164eae08ec470449
+  license: ''
+  license_text: ''
+./modules/xvasprintf: 
+  copyright: ''
+  hash: a6af5f93a0c236af2d1b802283c3bdce0ea1f2c4dd55454e7e277fc06f94247e
+  license: ''
+  license_text: ''
+./modules/xvasprintf-posix: 
+  copyright: ''
+  hash: 4bc8e2e9c2de1645326347861bed0bfa82dd17c40147bf9ef30d3c0c395b3c4e
+  license: ''
+  license_text: ''
+./modules/xvasprintf-tests: 
+  copyright: ''
+  hash: 96c4599e808fbaee60ca768b38fe00a99c224201f3bfa8c359e10bb5887dba9a
+  license: ''
+  license_text: ''
+./modules/yesno: 
+  copyright: ''
+  hash: 8b1282449041c482e56df4a5f090b6e7547efd0f06069cc96a430c198de978e6
+  license: ''
+  license_text: ''
+./modules/yesno-tests: 
+  copyright: ''
+  hash: 3a33d863e2dfedfb3896bf992c73a1a454a66db29d80b309a77766db787e118b
+  license: ''
+  license_text: ''
+./modules/yield: 
+  copyright: ''
+  hash: e86a78bb30ab1dd3068ebdc30c9f5cbc3f61f5fc8c33c26f63bda382c8900ba7
+  license: ''
+  license_text: ''
+./posix-modules: 
+  copyright: 2002-2008 Free Software Foundation, Inc
+  hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/locale/fr/LC_MESSAGES/test-quotearg.mo: 
+  copyright: ''
+  hash: aa0b83acbe74a54fa3cd8a775c76808e83114c0a544170c7390bce7ef812a035
+  license: ''
+  license_text: ''
+./tests/locale/fr/LC_MESSAGES/test-quotearg.po: 
+  copyright: ''
+  hash: 78381df0a60b4cf5be4ba6df357926269fa34959f18832cdf96c0badc79895e4
+  license: ''
+  license_text: ''
+./tests/nan.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-alignof.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-alloca-opt.c: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-arcfour.c: 
+  copyright: 2005 Free Software Foundation
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-arctwo.c: 
+  copyright: 2005 Free Software Foundation
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-argmatch.c: 
+  copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc
+  hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-argp-2.sh: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-argp-version-etc-1.sh: 
+  copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
+  hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-argp-version-etc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-argp.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-argv-iter.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-arpa_inet.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-array-mergesort.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
+  license: "LGPL-3+ "
+  license_text: ''
+./tests/test-array_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-array_oset.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-atexit.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-atexit.sh: 
+  copyright: ''
+  hash: e693dded1c3bbe595a21498a71264cec8bb24a8356518618974847660d760774
+  license: ''
+  license_text: ''
+./tests/test-avltree_list.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-avltree_oset.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-avltreehash_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-base64.c: 
+  copyright: 2004, 2008 Free Software Foundation, Inc
+  hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-binary-io.c: 
+  copyright: 2005, 2007-2008 Free Software Foundation, Inc
+  hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-binary-io.sh: 
+  copyright: ''
+  hash: 1ed5b40114bb55012cd28394883f8711c6a892ec24cc5ae55877736ff7753a9a
+  license: ''
+  license_text: ''
+./tests/test-bitrotate.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-btowc.c: 
+  copyright: "!= WEOF); / 2008 Free Software Foundation, Inc / == c);"
+  hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-btowc1.sh: 
+  copyright: ''
+  hash: b4bac8f44ded39802e8ffbefa260cde10c90ae2f9cb7a3639bcf747a93fe871e
+  license: ''
+  license_text: ''
+./tests/test-btowc2.sh: 
+  copyright: ''
+  hash: 0cc0919cbfb0a866d644d13cc08068596b5dac38fb9fe437415b812d0c3b0370
+  license: ''
+  license_text: ''
+./tests/test-byteswap.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-c-ctype.c: 
+  copyright: 2005, 2007-2008 Free Software Foundation, Inc / == (c >= 0 && c < 0x80));
+  hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-c-stack.c: 
+  copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc
+  hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-c-stack.sh: 
+  copyright: ''
+  hash: 5ff4f37644ece982d306be694f3a8f1b7ab0be3f227b9134ed02bf92044cfd94
+  license: ''
+  license_text: ''
+./tests/test-c-stack2.sh: 
+  copyright: ''
+  hash: 0f27101d5e51c1531872dbbbfbb5b506368d7d6a144a87856a97f8c6ae1f4ab4
+  license: ''
+  license_text: ''
+./tests/test-c-strcase.sh: 
+  copyright: ''
+  hash: 08c6d116921579362a23059ad95ba47ee824ef9404b810f66d92b225af9669da
+  license: ''
+  license_text: ''
+./tests/test-c-strcasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-c-strcasestr.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-c-strncasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-c-strstr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-canonicalize-lgpl.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-canonicalize-lgpl.sh: 
+  copyright: ''
+  hash: 81afe45f5b4980a73878cb5e648cd582ecf66655103424ffe60cb82e671243eb
+  license: ''
+  license_text: ''
+./tests/test-canonicalize.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-canonicalize.sh: 
+  copyright: ''
+  hash: 179eb3794b8e41c6c38fb9483fc9591a1a45870367cf8694ab22293d2a6fb124
+  license: ''
+  license_text: ''
+./tests/test-carray_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-ceilf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-ceilf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-ceill.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-closein.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
+  license: "GPL "
+  license_text: ''
+./tests/test-closein.sh: 
+  copyright: ''
+  hash: 24747fa1e687723c702708fb4c239cf6e54f59d0a1ba915784eb47e86e4c29ad
+  license: ''
+  license_text: ''
+./tests/test-cond.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-copy-acl.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-copy-acl.sh: 
+  copyright: ''
+  hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+  license: ''
+  license_text: ''
+./tests/test-copy-file.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-copy-file.sh: 
+  copyright: ''
+  hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+  license: ''
+  license_text: ''
+./tests/test-count-one-bits.c: 
+  copyright: 2007-2008 Free Software Foundation
+  hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-crc.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation
+  hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-des.c: 
+  copyright: 2005, 2007 Free Software Foundation
+  hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
+  license: "GPL "
+  license_text: ''
+./tests/test-dirent-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-dirname.c: 
+  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+  hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-dprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-dprintf-posix.sh: 
+  copyright: ''
+  hash: 87cd228811d69c325ed0768128a0b3f461e85a1cf16115f64a097d662d3f21d1
+  license: ''
+  license_text: ''
+./tests/test-dup2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-dup3.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-echo.sh: 
+  copyright: ''
+  hash: 167c0f782ed61e0c577c8644fe6afd5a8c987ce1f93ba3f28228fe90928fddfe
+  license: ''
+  license_text: ''
+./tests/test-environ.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-errno.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude1.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude2.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude3.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude4.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude5.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude6.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-exclude7.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fbufmode.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fchdir.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fcntl-h.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fcntl-safer.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fdopendir.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fflush.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fflush2.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fflush2.sh: 
+  copyright: ''
+  hash: 9d3df2d637b481f1d5f1437b111dc2061bcf8e995843af8856817103951b1483
+  license: ''
+  license_text: ''
+./tests/test-file-has-acl.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-file-has-acl.sh: 
+  copyright: ''
+  hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+  license: ''
+  license_text: ''
+./tests/test-filenamecat.c: 
+  copyright: 1996-2007, 2009 Free Software Foundation, Inc
+  hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-filevercmp.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
+  license: "GPL "
+  license_text: ''
+./tests/test-flock.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
+  license: "GPL-2+ "
+  license_text: ''
+./tests/test-floorf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-floorf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-floorl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fnmatch.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fopen-safer.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fopen.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fopen.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fpending.c: 
+  copyright: 2004, 2007-2008 Free Software Foundation, Inc
+  hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fpending.sh: 
+  copyright: ''
+  hash: db7046a61b7536849f3d58ac4a230b874a449d61a4f33331d2a39e3eb40cf26f
+  license: ''
+  license_text: ''
+./tests/test-fprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fprintf-posix.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fprintf-posix.sh: 
+  copyright: ''
+  hash: 99530f369d42274f641c5404f05d6eac54cef4816643f576b94631d3bd50e8ab
+  license: ''
+  license_text: ''
+./tests/test-fprintf-posix2.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fprintf-posix2.sh: 
+  copyright: ''
+  hash: 57de5c6be9adb4eb8e8cc416f2c47f934f82f4d3ce6256ce7e72fdfd6a727377
+  license: ''
+  license_text: ''
+./tests/test-fpurge.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadable.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadahead.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadahead.sh: 
+  copyright: ''
+  hash: 7d4e9892370ff589533c590bd88ec5f6aea65ce8126c798ab48f96d87cc0de4f
+  license: ''
+  license_text: ''
+./tests/test-freading.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadptr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadptr.sh: 
+  copyright: ''
+  hash: d77d62afd49fb9b006aa3f1b2e41fb246f8f4e6ed232637b8c5efb02e31f6e9d
+  license: ''
+  license_text: ''
+./tests/test-freadptr2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadptr2.sh: 
+  copyright: ''
+  hash: 9e8bf4b4fdad153f5bcaf5d3d9a51c2b362cc5e21262c769e87e36bf29f6f3d3
+  license: ''
+  license_text: ''
+./tests/test-freadseek.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-freadseek.sh: 
+  copyright: ''
+  hash: 8c922bdee150c36bbbc68d2273511885bd4f54145ec4e0e0b74333e9ab68c5e1
+  license: ''
+  license_text: ''
+./tests/test-freopen.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-frexp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-frexpl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fseek.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fseek.sh: 
+  copyright: ''
+  hash: a221109e451414ff3596a9e2fc85ecad8dc9a4b5d41c4be22ca4e8d4bdaaedcf
+  license: ''
+  license_text: ''
+./tests/test-fseek2.sh: 
+  copyright: ''
+  hash: 9312e62b8100ef1a5c959e559f4347907430ddca9ad4854cd611110b0768ad4d
+  license: ''
+  license_text: ''
+./tests/test-fseeko.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fseeko.sh: 
+  copyright: ''
+  hash: 5d1445019d710edf18f8405db195d0e08c95a9f8bb20b59f25e5f0d22e19dba8
+  license: ''
+  license_text: ''
+./tests/test-fseeko2.sh: 
+  copyright: ''
+  hash: 4c322333a62415b01f183b120936fc72916ad98c98b42ee36bc50c14d8651559
+  license: ''
+  license_text: ''
+./tests/test-fseterr.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fstrcmp.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fsync.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
+  license: "GPL-2+ "
+  license_text: ''
+./tests/test-ftell.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-ftell.sh: 
+  copyright: ''
+  hash: 86795dd7b612958804e50342aecbc2d23222542142f4e6a6408e4f10a1f6a2dc
+  license: ''
+  license_text: ''
+./tests/test-ftell2.sh: 
+  copyright: ''
+  hash: 9290b195ad04a0d882c97eea29fb2ce8c5a4a9eedd6b43841d516a027908ccd2
+  license: ''
+  license_text: ''
+./tests/test-ftello.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-ftello.sh: 
+  copyright: ''
+  hash: 3fecd8a2adefe6f15a998f136266ef37222cf6273ba1da4cce7d097635bde45e
+  license: ''
+  license_text: ''
+./tests/test-ftello2.sh: 
+  copyright: ''
+  hash: d6d309f9866760abce0c773c476943b19b6201596ed4ce4b3163ca3c5510c760
+  license: ''
+  license_text: ''
+./tests/test-func.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fwritable.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-fwriting.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-gc-arcfour.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-arctwo.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-des.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-hmac-md5.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-hmac-sha1.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-md2.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-md4.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-md5.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-pbkdf2-sha1.c: 
+  copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation
+  hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-rijndael.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc-sha1.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-gc.c: 
+  copyright: 2005, 2006 Free Software Foundation
+  hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
+  license: "GPL "
+  license_text: ''
+./tests/test-getaddrinfo.c: 
+  copyright: 2006-2009 Free Software Foundation, Inc
+  hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-getdate.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
+  license: "GPL "
+  license_text: ''
+./tests/test-getdelim.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
+  license: "GPL "
+  license_text: ''
+./tests/test-getdtablesize.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-gethostname.c: 
+  copyright: 2008, 2009 Free Software Foundation
+  hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-getline.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
+  license: "GPL "
+  license_text: ''
+./tests/test-getndelim2.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
+  license: "GPL "
+  license_text: ''
+./tests/test-getopt.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-getopt.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-getopt_long.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-getpass.c: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-gettimeofday.c: 
+  copyright: 2005, 2007 Free Software Foundation
+  hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-glob.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-hash.c: 
+  copyright: 2009 Free Software Foundation
+  hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-hmac-md5.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-hmac-sha1.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-i-ring.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-iconv-utf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-iconv.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-iconvme.c: 
+  copyright: 2004, 2005 Free Software Foundation, Inc
+  hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-idpriv-drop.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-idpriv-drop.sh: 
+  copyright: ''
+  hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+  license: ''
+  license_text: ''
+./tests/test-idpriv-drop.su.sh: 
+  copyright: ''
+  hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+  license: ''
+  license_text: ''
+./tests/test-idpriv-droptemp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-idpriv-droptemp.sh: 
+  copyright: ''
+  hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+  license: ''
+  license_text: ''
+./tests/test-idpriv-droptemp.su.sh: 
+  copyright: ''
+  hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+  license: ''
+  license_text: ''
+./tests/test-inttypes.c: 
+  copyright: 2006-2007 Free Software Foundation, Inc
+  hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isfinite.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isinf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnan.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnand-nolibm.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnand.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnand.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnanf-nolibm.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnanf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnanf.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnanl-nolibm.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnanl.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-isnanl.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-ldexpl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-link.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
+  license: "GPL-2+ "
+  license_text: ''
+./tests/test-link.sh: 
+  copyright: ''
+  hash: 1b15e579dd41f894ef55727093cb2490e586dd857fcd726339f4a59203a8fa68
+  license: ''
+  license_text: ''
+./tests/test-linked_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-linkedhash_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-locale.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-localename.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-lock.c: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-lseek.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-lseek.sh: 
+  copyright: ''
+  hash: 103b304131e87f84ebdf7fe51ddbca5d1de74d1b231c0e8d0f1f74edb60aacf4
+  license: ''
+  license_text: ''
+./tests/test-lstat.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-malloca.c: 
+  copyright: 2005, 2007 Free Software Foundation, Inc
+  hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-math.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbmemcasecmp.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbmemcasecmp.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbmemcasecmp1.sh: 
+  copyright: ''
+  hash: 7304bc74f3d3a258e8210ea8a863f27aab54802b024dabb25a34b9549960b9f5
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecmp2.sh: 
+  copyright: ''
+  hash: d16fd0422c4a2d96385d5b90b9c0f2c8f969de1dd4a33c5bb02fa4ac381f6f4d
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecmp3.sh: 
+  copyright: ''
+  hash: eb492e8155da1b1de4e2250f06e478962793d6cabe9a519fd2384d15110677e7
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecoll.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbmemcasecoll1.sh: 
+  copyright: ''
+  hash: faed7a5be2e3810c0ffc7a90a52082c8f5cf3db405497a7e9010d2c719231ff6
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecoll2.sh: 
+  copyright: ''
+  hash: f4fab277f9f292c7d753f3600aff43593c48069a4a3f6265958aa87a8c312491
+  license: ''
+  license_text: ''
+./tests/test-mbmemcasecoll3.sh: 
+  copyright: ''
+  hash: 331ac5a20f06f5d44432e5fa4396101952cb6e60bbaf36beee49e11ca7933770
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbrtowc1.sh: 
+  copyright: ''
+  hash: aa376c39dd66d55e6cbbc2acb3c88909aef3ab2b5dd2b88b64237d1a5113a325
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc2.sh: 
+  copyright: ''
+  hash: d05e570292161c8c07a2800cbb86f2f1daad410c45f9cc4d75885cb775ef3edd
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc3.sh: 
+  copyright: ''
+  hash: a961e18d55829ef9ae6b5b67be607ed9c09ad44805d1958dec5a216b8b2d4dd2
+  license: ''
+  license_text: ''
+./tests/test-mbrtowc4.sh: 
+  copyright: ''
+  hash: edcefd4d5f047e46e09c57c8f49fd8a5acf6198d6e1457b0b0f8d0a35c8acb36
+  license: ''
+  license_text: ''
+./tests/test-mbscasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbscasecmp.sh: 
+  copyright: ''
+  hash: c400cba3bdc37f57ff59514590ef1c1ffb525def25363dc057cb795350258088
+  license: ''
+  license_text: ''
+./tests/test-mbscasestr1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbscasestr2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbscasestr2.sh: 
+  copyright: ''
+  hash: 7625b9217b1cb7efd0991f90f4f63de80e96364a81c197d42ff0ea48ff92474a
+  license: ''
+  license_text: ''
+./tests/test-mbscasestr3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbscasestr3.sh: 
+  copyright: ''
+  hash: 7bea28d4bcddc0db1d408f47ea4d152507a19397c06a739f5f996b2dcbb95f8c
+  license: ''
+  license_text: ''
+./tests/test-mbscasestr4.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbscasestr4.sh: 
+  copyright: ''
+  hash: 7499e59252f59878b81950d351ed8786d455589a88cd005e7ff98abd521ae4b7
+  license: ''
+  license_text: ''
+./tests/test-mbschr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbschr.sh: 
+  copyright: ''
+  hash: 7a680a0884655b6591b91b98d2e0192e1defe778a12f3a5bf271aa6a761692a5
+  license: ''
+  license_text: ''
+./tests/test-mbscspn.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbscspn.sh: 
+  copyright: ''
+  hash: 15cc680a7cb6f0f0f80715a88a5c62b67c5ae2c99589420be9f5a7312d252e3a
+  license: ''
+  license_text: ''
+./tests/test-mbsinit.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsinit.sh: 
+  copyright: ''
+  hash: 104168895eecfbae80f96f8abd4c73822d9dcb2ce305f8020a0424fe2d55a660
+  license: ''
+  license_text: ''
+./tests/test-mbsncasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsncasecmp.sh: 
+  copyright: ''
+  hash: 50eadc9df534559ed5509be4a6af2522252ace74a00646bceff01daa139b622d
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsnrtowcs1.sh: 
+  copyright: ''
+  hash: 5db850b49c6897a60588a348aadf7f5ad696f27f58876613cb686088e82065ad
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs2.sh: 
+  copyright: ''
+  hash: c861368b11ee095bb6d9f0229cc3a369b8a0244e453dc686b3540a954bc1b155
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs3.sh: 
+  copyright: ''
+  hash: a8194d6aefb2a02a416354be9e9474c0c19403adf757cb21204119931c188056
+  license: ''
+  license_text: ''
+./tests/test-mbsnrtowcs4.sh: 
+  copyright: ''
+  hash: db2098f520d0c8aeebc9ec8e24bcb668e5ce3afd425e13c07d4bd7c3a7ab51d6
+  license: ''
+  license_text: ''
+./tests/test-mbspbrk.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbspbrk.sh: 
+  copyright: ''
+  hash: b68f5c5e76fdb5ff39f3a4b137f26afec83fbedd80132cb547663c5113395523
+  license: ''
+  license_text: ''
+./tests/test-mbspcasecmp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbspcasecmp.sh: 
+  copyright: ''
+  hash: 0dc0b806a5fc1a9d2110db05246da688cf15390dc3d79948a5d6a2bbf2040af3
+  license: ''
+  license_text: ''
+./tests/test-mbsrchr.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsrchr.sh: 
+  copyright: ''
+  hash: f8f59a2913930da2af1851dc24468f2921742b6091b86a65e284b38b418a1397
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsrtowcs1.sh: 
+  copyright: ''
+  hash: fb24fa64654c7d2c588311970717aea290a3291349f8a5611aaa761713119cc6
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs2.sh: 
+  copyright: ''
+  hash: 8d030f6028e543b4d93dfb8f14b84edd1541dc11d65ce84d512191a78bc1b4fe
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs3.sh: 
+  copyright: ''
+  hash: b23b005a9360d7365bfc10ca426905259d2d38be17a55283e063f01a62ec8332
+  license: ''
+  license_text: ''
+./tests/test-mbsrtowcs4.sh: 
+  copyright: ''
+  hash: 207d7ee682369340ed853b46675579d3be4a2707c2299493f560022e518ab334
+  license: ''
+  license_text: ''
+./tests/test-mbsspn.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsspn.sh: 
+  copyright: ''
+  hash: e0bd7e62a91c072db88164046ecd6f42c88ce44a634a76eb1c83c248831dd936
+  license: ''
+  license_text: ''
+./tests/test-mbsstr1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsstr2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsstr2.sh: 
+  copyright: ''
+  hash: 1d805ef1e6eab2c44e8668fa623a5d246869cb3f39a685c4a3135996e45ead77
+  license: ''
+  license_text: ''
+./tests/test-mbsstr3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-mbsstr3.sh: 
+  copyright: ''
+  hash: 880ac90918e954ae500cce18004a2592619063b0cb6de41740f197f38df9d415
+  license: ''
+  license_text: ''
+./tests/test-md2.c: 
+  copyright: 2005 Free Software Foundation
+  hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
+  license: "GPL "
+  license_text: ''
+./tests/test-md4.c: 
+  copyright: 2005 Free Software Foundation
+  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+  license: "GPL "
+  license_text: ''
+./tests/test-md5.c: 
+  copyright: 2005 Free Software Foundation
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-memchr.c: 
+  copyright: 2008-2009 Free Software Foundation
+  hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-memchr2.c: 
+  copyright: 2008-2009 Free Software Foundation
+  hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-memcmp.c: 
+  copyright: 2008-2009 Free Software Foundation
+  hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-memmem.c: 
+  copyright: 2004, 2007-2009 Free Software Foundation
+  hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-memrchr.c: 
+  copyright: 2008-2009 Free Software Foundation
+  hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-netdb.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-netinet_in.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-obstack-printf.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-open.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-open.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-openat-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-parse-duration.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-parse-duration.sh: 
+  copyright: ''
+  hash: 2fe603e83804acfadc681a8ed77a25f4146601c1502c37ef8ee8714cfba3919b
+  license: ''
+  license_text: ''
+./tests/test-perror.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
+  license: "GPL "
+  license_text: ''
+./tests/test-perror.sh: 
+  copyright: ''
+  hash: 83349ba638f6ffc10680f2e78e438f0e6f20a812237b89ded57d8b48a10ffc79
+  license: ''
+  license_text: ''
+./tests/test-pipe-filter-gi1.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-gi1.sh: 
+  copyright: ''
+  hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+  license: ''
+  license_text: ''
+./tests/test-pipe-filter-gi2-child.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-gi2-main.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-gi2.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-ii1.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-ii1.sh: 
+  copyright: ''
+  hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+  license: ''
+  license_text: ''
+./tests/test-pipe-filter-ii2-child.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-ii2-main.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe-filter-ii2.sh: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-pipe.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
+  license: "GPL "
+  license_text: ''
+./tests/test-pipe.sh: 
+  copyright: ''
+  hash: 5dbadef404d16dd74e75f251acc266a81438820ea0ab58d558a96804b6d1dd30
+  license: ''
+  license_text: ''
+./tests/test-pipe2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
+  license: "GPL "
+  license_text: ''
+./tests/test-poll.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
+  license: "GPL "
+  license_text: ''
+./tests/test-popen-safer.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-popen-safer2.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-popen.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-popen.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-posix_spawn1.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-posix_spawn1.in.sh: 
+  copyright: ''
+  hash: 7e7d5c66755ac83d083956f83bfe65ca2c9536cd8b0bd4555a6ba2a03e118aae
+  license: ''
+  license_text: ''
+./tests/test-posix_spawn2.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-posix_spawn2.in.sh: 
+  copyright: ''
+  hash: 781d49e1169694f7f7b1db78fc097258bfd1c59d1af21f695f2159606a696251
+  license: ''
+  license_text: ''
+./tests/test-posix_spawn3.c: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-printf-frexp.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-printf-frexpl.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-printf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-printf-posix.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-printf-posix.output: 
+  copyright: ''
+  hash: 213315ade646809669a3e177d40a9b01d9430eb55ba1cd18dbc5b5e154433a5a
+  license: ''
+  license_text: ''
+./tests/test-printf-posix.sh: 
+  copyright: ''
+  hash: 239e312ff4456b546521d2f0bd0ef84e7286d685ba3477b95b13b0f8aa071f84
+  license: ''
+  license_text: ''
+./tests/test-printf-posix2.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-printf-posix2.sh: 
+  copyright: ''
+  hash: 5c422546366bb292df14233c6829abd4a7154bbc5b7dbf1b21fe2dd4601b8f6f
+  license: ''
+  license_text: ''
+./tests/test-priv-set.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-quotearg.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
+  license: "GPL "
+  license_text: ''
+./tests/test-quotearg.sh: 
+  copyright: ''
+  hash: 7e0d01aab336e5acc014edc2ff951d5234d4e4bad05e5680cca7931c706e5172
+  license: ''
+  license_text: ''
+./tests/test-random_r.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-rawmemchr.c: 
+  copyright: 2008 Free Software Foundation
+  hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-rbtree_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-rbtree_oset.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-rbtreehash_list.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-read-file.c: 
+  copyright: 2006-2007 Free Software Foundation
+  hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-rijndael.c: 
+  copyright: 2005 Free Software Foundation
+  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-round1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
+  license: "GPL "
+  license_text: ''
+./tests/test-round2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-roundf1.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
+  license: "GPL "
+  license_text: ''
+./tests/test-roundf2.c: 
+  copyright: ''
+  hash: 2b662978b800617f406056d17c4f610c9ac9a637fe6b41e53db7b8728d9a3386
+  license: ''
+  license_text: ''
+./tests/test-roundl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
+  license: "GPL "
+  license_text: ''
+./tests/test-safe-alloc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
+  license: "LGPL-2.1+ (with incorrect FSF address) "
+  license_text: ''
+./tests/test-sameacls.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sched.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-search.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-select-fd.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-select-in.sh: 
+  copyright: ''
+  hash: 900e4c2984ffcf50df1cf8f155327f6fc7f9fb45b05e89a8e6117c6615fa0bef
+  license: ''
+  license_text: ''
+./tests/test-select-out.sh: 
+  copyright: ''
+  hash: 81a7eb6dd45c11e05d7d72c30afe3a86103b6f785beccfede7592fbece606a1f
+  license: ''
+  license_text: ''
+./tests/test-select-stdin.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-select.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-set-mode-acl.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-set-mode-acl.sh: 
+  copyright: ''
+  hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+  license: ''
+  license_text: ''
+./tests/test-sha1.c: 
+  copyright: 2005, 2008, 2009 Free Software Foundation, Inc
+  hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sigaction.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-signal.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-signbit.c: 
+  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+  hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sigpipe.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
+  license: "GPL "
+  license_text: ''
+./tests/test-sigpipe.sh: 
+  copyright: ''
+  hash: d27845fc8088e77081e32717c8dd8327ed122194c62751c93ef8faff8ee9218c
+  license: ''
+  license_text: ''
+./tests/test-sleep.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-snprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-snprintf-posix.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-snprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sockets.c: 
+  copyright: 2008, 2009 Free Software Foundation
+  hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sprintf-posix.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stat-time.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stdbool.c: 
+  copyright: 2002-2007 Free Software Foundation, Inc
+  hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stddef.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stdint.c: 
+  copyright: 2006-2008 Free Software Foundation, Inc
+  hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stdio.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stdlib.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stpncpy.c: 
+  copyright: 2003, 2008 Free Software Foundation, Inc
+  hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-stpncpy.out.aix433: 
+  copyright: ''
+  hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+  license: ''
+  license_text: ''
+./tests/test-stpncpy.out.glibc: 
+  copyright: ''
+  hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+  license: ''
+  license_text: ''
+./tests/test-strcasestr.c: 
+  copyright: 2007, 2008 Free Software Foundation, Inc
+  hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-strchrnul.c: 
+  copyright: 2008 Free Software Foundation
+  hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-strerror.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
+  license: "GPL "
+  license_text: ''
+./tests/test-striconv.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-striconveh.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-striconveha.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-string.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-strings.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-strsignal.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
+  license: "GPL "
+  license_text: ''
+./tests/test-strstr.c: 
+  copyright: 2004, 2007, 2008, 2009 Free Software Foundation
+  hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-strtod.c: 
+  copyright: 2008 Free Software Foundation
+  hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-strverscmp.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
+  license: "GPL "
+  license_text: ''
+./tests/test-symlinkat.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sys_select.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sys_socket.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sys_stat.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sys_time.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sys_times.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sys_utsname.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-sysexits.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-time.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-times.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-tls.c: 
+  copyright: 2005, 2008 Free Software Foundation, Inc
+  hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-trunc1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-trunc2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-truncf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-truncf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-truncl.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-tsearch.c: 
+  copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc
+  hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
+  license: "LGPL-3+ "
+  license_text: ''
+./tests/test-tsearch.sh: 
+  copyright: ''
+  hash: 4a91b1aa51229c44027a90338ac75c18482cd83b1c5a42abbbd5e586cc77bdde
+  license: ''
+  license_text: ''
+./tests/test-u64.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-uname.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-unistd.c: 
+  copyright: 2007, 2009 Free Software Foundation, Inc
+  hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-update-copyright.sh: 
+  copyright: 1990-2005, 2007-2009 Free Software / @{} 1990-2005, 2007-2009 Free Software / 2009 Free Software Foundation, Inc / &copy; 90,2005,2007-2009
+  hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vasnprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vasnprintf-posix2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vasnprintf-posix2.sh: 
+  copyright: ''
+  hash: a2853f3c4b9322d67eeb514a02f551027226143c613f10e2f07141cea27ef400
+  license: ''
+  license_text: ''
+./tests/test-vasnprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vasprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vasprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vc-list-files-cvs.sh: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vc-list-files-git.sh: 
+  copyright: 2008, 2009 Free Software Foundation, Inc
+  hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vdprintf-posix.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vdprintf-posix.sh: 
+  copyright: ''
+  hash: f3166adb33bacdb3b2da94ac726284ed8403a179c0f69b2e9490d82210ef3ed6
+  license: ''
+  license_text: ''
+./tests/test-verify.c: 
+  copyright: 2005 Free Software Foundation, Inc
+  hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-version-etc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-version-etc.sh: 
+  copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
+  hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vfprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vfprintf-posix.sh: 
+  copyright: ''
+  hash: 51b6714415c10dd04271db0038eb39b1bd3c5881b43025900606e5ae92334fc2
+  license: ''
+  license_text: ''
+./tests/test-vprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vprintf-posix.sh: 
+  copyright: ''
+  hash: a6ebb7e5988deb06cbc675b3be4c82c3366db7423e770607fdb9e5079331a9bc
+  license: ''
+  license_text: ''
+./tests/test-vsnprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vsnprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-vsprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-wchar.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-wcrtomb.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-wcrtomb.sh: 
+  copyright: ''
+  hash: a44d114e1ecf5712c05a7280fb46e7eed4ba1d93c1afbd19f628ee14485c0f17
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-wcsnrtombs1.sh: 
+  copyright: ''
+  hash: 33a1c921605c916d076531d447e2cd6371d22857bb403db1f372526fb35fa98f
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs2.sh: 
+  copyright: ''
+  hash: 4ee200893e30f53de0d3366bbac9c7e8524cc201b1d9debd643ad7c3acb63aba
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs3.sh: 
+  copyright: ''
+  hash: a593e2317d40fa30cf64732ee7d952ddc68ef2f69e9d9130b17b10f28e8d3d6f
+  license: ''
+  license_text: ''
+./tests/test-wcsnrtombs4.sh: 
+  copyright: ''
+  hash: de5e3b2ff8be87faf053ba51d5846ac4e10322c76bc4b4f2a20357eae2a0489b
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-wcsrtombs1.sh: 
+  copyright: ''
+  hash: 7f6c7ca6878d2632a37f8f54060bcc41aa415a85487a76f7a374ba03a218e71a
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs2.sh: 
+  copyright: ''
+  hash: 738099bbea2049911db3bee0ae7d1cba4043ff740759d77197cfca1f5743d55a
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs3.sh: 
+  copyright: ''
+  hash: b5b4068a795461636f1fca1ce581a918e6298eb6d915f6fd5f9ec34597d9397f
+  license: ''
+  license_text: ''
+./tests/test-wcsrtombs4.sh: 
+  copyright: ''
+  hash: a3a4b7ceb64d8c8d819c6552cc46779e6264e5dd6bf3e0774d71504aeb22a135
+  license: ''
+  license_text: ''
+./tests/test-wctype.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-wcwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-xfprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-xmemdup0.c: 
+  copyright: 2008-2009 Free Software Foundation, Inc
+  hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
+  license: "GPL "
+  license_text: ''
+./tests/test-xprintf-posix.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-xprintf-posix.sh: 
+  copyright: ''
+  hash: 1ce067e6f56dcb6a5a56ce1246d36be56fcc7f66b31106e803156fd220d3e1d0
+  license: ''
+  license_text: ''
+./tests/test-xstrtoimax.c: 
+  copyright: ''
+  hash: c5c3852fa55a1f51008c37b7783d23de2f4d137cf90ff959870b62f6e59587ac
+  license: ''
+  license_text: ''
+./tests/test-xstrtoimax.sh: 
+  copyright: ''
+  hash: 5d15991c8b4c13c05fc12f220e26c34f702a317d8998b1d016379ce9e18b3565
+  license: ''
+  license_text: ''
+./tests/test-xstrtol.c: 
+  copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+  hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-xstrtol.sh: 
+  copyright: ''
+  hash: 79873e8a91e9b9088083cb4ef4d0909822f0d7ba1ecbbc98bcb63322735abcbf
+  license: ''
+  license_text: ''
+./tests/test-xstrtoul.c: 
+  copyright: ''
+  hash: 54c2b16099a222e6bc15d83a1911f4725f1e7ba22a3f302408dacfd3bd5c05a5
+  license: ''
+  license_text: ''
+./tests/test-xstrtoumax.c: 
+  copyright: ''
+  hash: 257441d9c0f1b24b0d758658b014fae6ae1c9f17a4453ccd246dde4897eaa45a
+  license: ''
+  license_text: ''
+./tests/test-xstrtoumax.sh: 
+  copyright: ''
+  hash: 4ad7ec4f7631fa5d7ab92d91e1ff3b565a3a8b6f75e0f1b86d89d8030d8252c8
+  license: ''
+  license_text: ''
+./tests/test-xvasprintf.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/test-yesno.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
+  license: "GPL "
+  license_text: ''
+./tests/test-yesno.sh: 
+  copyright: ''
+  hash: 6d197acd4b62c8295898322d0a74a7d9b6af375c6612d23e8c718d7d3e034d32
+  license: ''
+  license_text: ''
+./tests/unicase/test-casecmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-cased.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unicase/test-ignorable.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unicase/test-is-cased.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-is-casefolded.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-is-lowercase.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-is-titlecase.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-is-uppercase.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-locale-language.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-locale-language.sh: 
+  copyright: ''
+  hash: 028ff70d75eaa2008146f1da86917178198eacf5cd2951201c91392e88636645
+  license: ''
+  license_text: ''
+./tests/unicase/test-mapping-part1.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-mapping-part2.h: 
+  copyright: == c); / == mapping[i].value); / 2007-2009 Free Software Foundation, Inc
+  hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-predicate-part1.h: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-predicate-part2.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u16-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u32-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-casefold.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-is-cased.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-is-casefolded.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-is-lowercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-is-titlecase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-is-uppercase.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-u8-toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-uc_tolower.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unicase/test-uc_totitle.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unicase/test-uc_toupper.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unicase/test-ulc-casecmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-ulc-casecmp1.sh: 
+  copyright: ''
+  hash: e11e26a26c3195042709f1c53297ff0ee32afb9250cee9144746a30ed82ac770
+  license: ''
+  license_text: ''
+./tests/unicase/test-ulc-casecmp2.sh: 
+  copyright: ''
+  hash: c5f5915062ac34dd725d099fa932f794f216eb1ba89a42b3c10f1c017f83e698
+  license: ''
+  license_text: ''
+./tests/unicase/test-ulc-casecoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unicase/test-ulc-casecoll1.sh: 
+  copyright: ''
+  hash: 60778acf09ad204d99a6e1e57b880e68d7f53c81bc1dc0473c865922ff99020b
+  license: ''
+  license_text: ''
+./tests/unicase/test-ulc-casecoll2.sh: 
+  copyright: ''
+  hash: 085a2bd9d34dba3e6eb2f389ff01804bfde543909a631b591f44799a8632ce0c
+  license: ''
+  license_text: ''
+./tests/uniconv/test-u16-conv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u16-conv-to-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u16-strconv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u16-strconv-to-enc.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u32-conv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u32-conv-to-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u32-strconv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u32-strconv-to-enc.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u8-conv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u8-conv-to-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u8-strconv-from-enc.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniconv/test-u8-strconv-to-enc.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-bidi_byname.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-bidi_name.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-bidi_of.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-bidi_test.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-block_list.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-block_of.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-block_test.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_C.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Cc.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Cc) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Cf.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Cf) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Cn.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Co.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Co) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Cs.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Cs) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_L.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Ll.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Lm.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Lm) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Lo.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Lt.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Lt) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Lu.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_M.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Mc.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Me.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Me)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Mn.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_N.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Nd.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Nd)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Nl.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Nl) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_No.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_No)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_P.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Pc.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Pc) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Pd.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pd)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Pe.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Pf.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pf)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Pi.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Pi) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Po.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Ps.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_S.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Sc.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Sc)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Sk.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Sk) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Sm.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_So.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Z.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Z) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Zl.c: 
+  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Zl)
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Zp.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Zp) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_Zs.c: 
+  copyright: uc_is_general_category (c, UC_CATEGORY_Zs) / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-categ_and.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_and_not.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_byname.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_name.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_none.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_of.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_or.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-categ_test_withtable.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-combining.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-ctype_alnum.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_alpha.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_blank.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_blank "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_cntrl.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_cntrl "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_digit.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_digit "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_graph.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_lower.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_print.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_punct.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_space.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_space "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_upper.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-ctype_xdigit.c: 
+  copyright: uc_is_xdigit  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-decdigit.c: 
+  copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-decdigit.h: 
+  copyright: ''
+  hash: d15c2fbaf8a835d6cbc0c2da37cd84fba9905ba6199f021dd4def95e741aeb94
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./tests/unictype/test-digit.c: 
+  copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-digit.h: 
+  copyright: ''
+  hash: 08530a09f8d458d98e4012b13ec2ab5df415027736aa50e44d5bce7643faffb1
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./tests/unictype/test-mirror.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-numeric.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-numeric.h: 
+  copyright: ''
+  hash: d6f23324b218034f2f4c008b20dc43866a71580a56841aac37368dc517c0ea52
+  license: "*No copyright* GENERATED FILE"
+  license_text: ''
+./tests/unictype/test-pr_alphabetic.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_ascii_hex_digit.c: 
+  copyright: uc_is_property_ascii_hex_digit  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_arabic_digit.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_arabic_digit "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_arabic_right_to_left.c: 
+  copyright: uc_is_property_bidi_arabic_right_to_left  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_block_separator.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_block_separator "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_boundary_neutral.c: 
+  copyright: uc_is_property_bidi_boundary_neutral  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_common_separator.c: 
+  copyright: uc_is_property_bidi_common_separator  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_control.c: 
+  copyright: uc_is_property_bidi_control  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_embedding_or_override.c: 
+  copyright: uc_is_property_bidi_embedding_or_override  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_eur_num_separator.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_eur_num_separator "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_eur_num_terminator.c: 
+  copyright: uc_is_property_bidi_eur_num_terminator  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_european_digit.c: 
+  copyright: uc_is_property_bidi_european_digit  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_hebrew_right_to_left.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_hebrew_right_to_left "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_left_to_right.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_non_spacing_mark.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_other_neutral.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_pdf.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_pdf "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_segment_separator.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_segment_separator "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_bidi_whitespace.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_whitespace "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_byname.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-pr_combining.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_composite.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_currency_symbol.c: 
+  copyright: uc_is_property_currency_symbol  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_dash.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_dash "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_decimal_digit.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_decimal_digit "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_default_ignorable_code_point.c: 
+  copyright: uc_is_property_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_deprecated.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_deprecated "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_diacritic.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_extender.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_extender "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_format_control.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_format_control "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_grapheme_base.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_grapheme_extend.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_grapheme_link.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_grapheme_link "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_hex_digit.c: 
+  copyright: uc_is_property_hex_digit  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_hyphen.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_hyphen "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_id_continue.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_id_start.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_ideographic.c: 
+  copyright: uc_is_property_ideographic  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_ids_binary_operator.c: 
+  copyright: uc_is_property_ids_binary_operator  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_ids_trinary_operator.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_ids_trinary_operator "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_ignorable_control.c: 
+  copyright: uc_is_property_ignorable_control  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_iso_control.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_iso_control "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_join_control.c: 
+  copyright: uc_is_property_join_control  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_left_of_pair.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_line_separator.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_line_separator "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_logical_order_exception.c: 
+  copyright: uc_is_property_logical_order_exception  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_lowercase.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_math.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_non_break.c: 
+  copyright: uc_is_property_non_break  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_not_a_character.c: 
+  copyright: uc_is_property_not_a_character  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_numeric.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_alphabetic.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_default_ignorable_code_point.c: 
+  copyright: uc_is_property_other_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_grapheme_extend.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_other_grapheme_extend "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_id_continue.c: 
+  copyright: uc_is_property_other_id_continue  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_id_start.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_other_id_start "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_lowercase.c: 
+  copyright: uc_is_property_other_lowercase  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_math.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_other_uppercase.c: 
+  copyright: uc_is_property_other_uppercase  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_paired_punctuation.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_paired_punctuation "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_paragraph_separator.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_paragraph_separator "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_pattern_syntax.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_pattern_syntax "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_pattern_white_space.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_pattern_white_space "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_private_use.c: 
+  copyright: uc_is_property_private_use  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_punctuation.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_quotation_mark.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_quotation_mark "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_radical.c: 
+  copyright: uc_is_property_radical  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_sentence_terminal.c: 
+  copyright: uc_is_property_sentence_terminal  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_soft_dotted.c: 
+  copyright: uc_is_property_soft_dotted  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_space.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_space "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_terminal_punctuation.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_test.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-pr_titlecase.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_titlecase "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_unassigned_code_value.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_unified_ideograph.c: 
+  copyright: uc_is_property_unified_ideograph  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_uppercase.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_variation_selector.c: 
+  copyright: uc_is_property_variation_selector  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_white_space.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_white_space "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_xid_continue.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_xid_start.c: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-pr_zero_width.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_property_zero_width "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-predicate-part1.h: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-predicate-part2.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-scripts.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-sy_c_ident.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-sy_c_whitespace.c: 
+  copyright: "2007 Free Software Foundation, Inc / uc_is_c_whitespace "
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unictype/test-sy_java_ident.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unictype/test-sy_java_whitespace.c: 
+  copyright: uc_is_java_whitespace  / 2007 Free Software Foundation, Inc
+  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+  license: GPL-3+ GENERATED FILE
+  license_text: ''
+./tests/unilbrk/test-u16-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-u16-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-u32-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-u32-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-u8-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-u8-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-ulc-possible-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unilbrk/test-ulc-width-linebreaks.c: 
+  copyright: 2008 Free Software Foundation, Inc
+  hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniname/UnicodeDataNames.txt: 
+  copyright: ''
+  hash: a1676b8b73689618daa1662cabf719b5da50cf74a63224111534949d3e4297fb
+  license: ''
+  license_text: ''
+./tests/uniname/test-uninames.c: 
+  copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc
+  hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniname/test-uninames.sh: 
+  copyright: ''
+  hash: 853dcc547f6774df0e14d3d22621c60a885132801e94352425dc0992f91b1fb4
+  license: ''
+  license_text: ''
+./tests/uninorm/NormalizationTest.txt: 
+  copyright: ''
+  hash: 886760af898381620a8980841c646ae70e894b5292c3138e6dfd75b6904deffb
+  license: ''
+  license_text: ''
+./tests/uninorm/test-canonical-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-compat-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-composition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-decomposing-form.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-decomposition.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u16-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfc-big.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfc-big.sh: 
+  copyright: ''
+  hash: 756efd18ad52a52ef3c82289a3036f7c5fff9304a556162298fa05572b3ad8d5
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfd-big.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfd-big.sh: 
+  copyright: ''
+  hash: 7df6600ba689632b1923565f4cea0c349205eb81ab54e48adbe2b4f19f1a0710
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfkc-big.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfkc-big.sh: 
+  copyright: ''
+  hash: 9c1bbb4dc3679b54e635a3f50ac29520d1bdf8fcff118b56b01b7760af61a802
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfkd-big.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-nfkd-big.sh: 
+  copyright: ''
+  hash: 59c7882b0d8e4cb0a3f3b3d4deceaed6b01da8bcd5dcd430931782d394e9a581
+  license: ''
+  license_text: ''
+./tests/uninorm/test-u32-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-normalize-big.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-normalize-big.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u32-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-nfd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-nfkc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-nfkd.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-normcmp.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-normcmp.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-u8-normcoll.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uninorm/test-uninorm-filter-nfc.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u16-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u16-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u16-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u32-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u32-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u32-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u8-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-u8-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-u8-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-asnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-asnprintf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-printf1.h: 
+  copyright: 2007 Free Software Foundation, Inc
+  hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-vasnprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-vasnprintf2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-vasnprintf2.sh: 
+  copyright: ''
+  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+  license: ''
+  license_text: ''
+./tests/unistdio/test-ulc-vasnprintf3.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-vasnprintf3.sh: 
+  copyright: ''
+  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+  license: ''
+  license_text: ''
+./tests/unistdio/test-ulc-vasprintf1.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-vsnprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
+  license: "GPL-3+ "
+  license_text: ''
+./tests/unistdio/test-ulc-vsprintf1.c: 
+  copyright: 2007-2009 Free Software Foundation, Inc
+  hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwbrk/test-u16-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwbrk/test-u32-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwbrk/test-u8-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwbrk/test-ulc-wordbreaks.c: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwbrk/test-ulc-wordbreaks.sh: 
+  copyright: ''
+  hash: d1d3525c27882f7ded09b3b5fa177ebddcfb16a75b19ef3804ae6f4731f2962c
+  license: ''
+  license_text: ''
+./tests/uniwidth/test-u16-strwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-u16-width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-u32-strwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-u32-width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-u8-strwidth.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-u8-width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-uc_width.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-uc_width2.c: 
+  copyright: 2007-2008 Free Software Foundation, Inc
+  hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+  license: "GPL-3+ "
+  license_text: ''
+./tests/uniwidth/test-uc_width2.sh: 
+  copyright: ''
+  hash: 26f58b4ef6788b773c28c79baabad9e1739f820166b24458450bfa7cd542370f
+  license: ''
+  license_text: ''
+./tests/zerosize-ptr.h: 
+  copyright: 2009 Free Software Foundation, Inc
+  hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
+  license: "GPL-3+ "
+  license_text: ''
+./top/GNUmakefile: 
+  copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc
+  hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
+  license: "GPL-3+ "
+  license_text: ''
+./top/maint.mk: 
+  copyright: 2001-2009 Free Software Foundation, Inc
+  hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
+  license: "GPL-3+ "
+  license_text: ''
+./users.txt: 
+  copyright: ''
+  hash: f5c05b7f2c33b93dcda0aa8f108195721e70410ef027614d4e342b00ccd15536
+  license: ''
+  license_text: ''
diff --git a/debian/copyright.new b/debian/copyright.new
new file mode 100644 (file)
index 0000000..628659f
--- /dev/null
@@ -0,0 +1,3286 @@
+This package was debianized by Daniel Baumann <daniel@debian.org> on
+Thu,  1 Jun 2006 00:00:00 +0200.
+
+It was downloaded from <http://www.gnu.org/software/gnulib/>.
+
+> The files in here are mostly copyright (C) Free Software Foundation, and
+> are under assorted licenses.  Mostly, but not entirely, GPL.
+>
+> Many modules are provided dual-license, either GPL or LGPL at your
+> option.  The headers of files in the lib directory (e.g., lib/error.c)
+> state GPL for convenience, since the bulk of current gnulib users are
+> GPL'd programs.  But the files in the modules directory (e.g.,
+> modules/error) state the true license of each file, and when you use
+> 'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
+> the files to have an LGPL header as part of copying them from gnulib
+> to your project directory, or fails because the modules you requested
+> were not licensed under LGPL.
+>
+> Some of the source files in lib/ have different licenses.  Also, the
+> copy of maintain.texi in doc/ has a verbatim-copying license, and
+> doc/standards.texi and make-stds.texi are GFDL.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL file,
+the GNU Lesser General Public License in /usr/share/common-licenses/LGPL,
+and the GNU Free Document License in /usr/share/common-licenses/GFDL.
+
+The Debian packaging is Copyright 2006-2008, Daniel Baumann <daniel@debian.org>
+and Copyright 2009 Ian Beckwith <ianb@debian.org>, and is licensed
+under the GPL-2, see `/usr/share/common-licenses/GPL-2'.
+
+Detailed copyright information follows, see debian/clscan/README
+in the gnulib source package for information on updating this.
+
+Files: ./m4/dos.m4
+Copyright: ( == '/' || == '\\') / 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc / ( == '/')
+
+Files: ./doc/COPYINGv2
+Copyright: 1989, 1991 Free Software Foundation, Inc. / the software, and
+
+Files: ./doc/make-stds.texi
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
+
+Files: ./m4/getloadavg.m4
+Copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003
+
+Files: ./lib/acosl.c, ./lib/asinl.c, ./lib/cosl.c, ./lib/sinl.c, ./lib/tanl.c
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+
+Files: ./doc/getdate.texi
+Copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+
+Files: ./doc/INSTALL, ./doc/INSTALL.ISO, ./doc/INSTALL.UTF-8
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+
+Files: ./doc/regexprops-generic.texi
+Copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
+
+Files: ./build-aux/po/Makefile.in.in
+Copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+
+Files: ./m4/lcmessage.m4
+Copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/nls.m4
+Copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/intl.m4
+Copyright: 1995-2007 Free Software Foundation, Inc
+
+Files: ./m4/gettext.m4, ./m4/po.m4
+Copyright: 1995-2009 Free Software Foundation, Inc
+
+Files: ./m4/regex.m4
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+
+Files: ./m4/error.m4
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
+
+Files: ./m4/strftime.m4
+Copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+
+Files: ./m4/jm-winsz2.m4
+Copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc
+
+Files: ./m4/jm-winsz1.m4
+Copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009
+
+Files: ./m4/uptime.m4
+Copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc
+
+Files: ./m4/getgroups.m4
+Copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/progtest.m4
+Copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/lib-ld.m4
+Copyright: 1996-2003, 2009 Free Software Foundation, Inc
+
+Files: ./build-aux/config.rpath
+Copyright: 1996-2008 Free Software Foundation, Inc
+
+Files: ./m4/d-ino.m4
+Copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software
+
+Files: ./m4/d-type.m4
+Copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/fsusage.m4
+Copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc
+
+Files: ./m4/chown.m4
+Copyright: 1997-2001, 2003-2005, 2007, 2009
+
+Files: ./m4/lstat.m4
+Copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc
+
+Files: ./m4/inttypes-pri.m4
+Copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/inttypes_h.m4, ./m4/stdint_h.m4
+Copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/intmax_t.m4
+Copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/uintmax_t.m4
+Copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc
+
+Files: ./m4/fstypename.m4
+Copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc
+
+Files: ./m4/assert.m4
+Copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc
+
+Files: ./m4/st_dm_mode.m4
+Copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc
+
+Files: ./m4/utime.m4
+Copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc
+
+Files: ./m4/lchown.m4
+Copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/stat-time.m4
+Copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software
+
+Files: ./m4/utimes-null.m4
+Copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software
+
+Files: ./m4/utimbuf.m4
+Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software
+
+Files: ./m4/perl.m4
+Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/getline.m4
+Copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/ls-mntd-fs.m4
+Copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/unlocked-io.m4
+Copyright: 1998-2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/group-member.m4
+Copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/nanosleep.m4
+Copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc
+
+Files: ./m4/afs.m4
+Copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/link-follow.m4
+Copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/ulonglong.m4
+Copyright: 1999-2007 Free Software Foundation, Inc
+
+Files: ./m4/longlong.m4
+Copyright: 1999-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/timespec.m4
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
+
+Files: ./m4/ftruncate.m4
+Copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/unlink-busy.m4
+Copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc
+
+Files: ./m4/rmdir-errno.m4
+Copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/time_h.m4
+Copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/fpending.m4
+Copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc
+
+Files: ./m4/mbswidth.m4
+Copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc
+
+Files: ./m4/glibc2.m4, ./m4/glibc21.m4
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+
+Files: ./m4/codeset.m4
+Copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/iconv.m4
+Copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc
+
+Files: ./m4/mbstate_t.m4
+Copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/fnmatch.m4
+Copyright: 2000-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/getcwd.m4, ./m4/mkstemp.m4
+Copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+
+Files: ./m4/host-os.m4
+Copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/rename.m4
+Copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/mkdir-slash.m4
+Copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/vararrays.m4
+Copyright: 2001, 2009 Free Software Foundation, Inc
+
+Files: ./m4/mbrtowc.m4
+Copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/tmpdir.m4
+Copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/signalblocking.m4
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
+
+Files: ./m4/gettimeofday.m4
+Copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/ssize_t.m4
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc
+
+Files: ./m4/javaexec.m4
+Copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/javacomp.m4, ./m4/mkdtemp.m4
+Copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/environ.m4, ./m4/setenv.m4
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+
+Files: ./m4/lib-prefix.m4
+Copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/dirfd.m4
+Copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/lib-link.m4, ./m4/stdint.m4
+Copyright: 2001-2009 Free Software Foundation, Inc
+
+Files: ./m4/isdir.m4
+Copyright: 2002 Free Software Foundation, Inc
+
+Files: ./m4/backupfile.m4, ./m4/hard-locale.m4, ./m4/human.m4, ./m4/md2.m4, ./m4/mkdir-p.m4, ./m4/read-file.m4, ./m4/xalloc.m4, ./m4/xgetcwd.m4
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+
+Files: ./m4/xstrtol.m4
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+
+Files: ./m4/canon-host.m4
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+
+Files: ./m4/md4.m4, ./m4/md5.m4, ./m4/sha1.m4
+Copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/strtoimax.m4, ./m4/strtoumax.m4
+Copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/memmem.m4
+Copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/strsep.m4, ./m4/strtok_r.m4
+Copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/c-stack.m4
+Copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/memchr.m4
+Copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc
+
+Files: ./m4/closeout.m4, ./m4/exclude.m4, ./m4/exitfail.m4, ./m4/getugroups.m4, ./m4/hash.m4, ./m4/idcache.m4, ./m4/long-options.m4, ./m4/memcoll.m4, ./m4/modechange.m4, ./m4/quote.m4, ./m4/readtokens.m4, ./m4/safe-read.m4, ./m4/same.m4, ./m4/savedir.m4, ./m4/xstrtod.m4, ./m4/yesno.m4
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+
+Files: ./m4/memrchr.m4
+Copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/pathmax.m4
+Copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/getusershell.m4
+Copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc
+
+Files: ./m4/strtol.m4
+Copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/gettime.m4, ./m4/settime.m4
+Copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/strtoll.m4, ./m4/strtoull.m4
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/localcharset.m4
+Copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/getpagesize.m4
+Copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc
+
+Files: ./m4/acl.m4, ./m4/quotearg.m4
+Copyright: 2002, 2004-2009 Free Software Foundation, Inc
+
+Files: ./m4/file-type.m4, ./m4/filemode.m4, ./m4/safe-write.m4, ./m4/unistd-safer.m4
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+
+Files: ./m4/fileblocks.m4, ./m4/sig2str.m4
+Copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/dup2.m4
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/bison.m4, ./m4/rmdir.m4
+Copyright: 2002, 2005, 2009 Free Software Foundation, Inc
+
+Files: ./m4/stdio-safer.m4
+Copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/strcase.m4, ./m4/strverscmp.m4
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc
+
+Files: ./m4/strtoul.m4
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/stpcpy.m4
+Copyright: 2002, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/intdiv0.m4, ./m4/strerror.m4
+Copyright: 2002, 2007-2008 Free Software Foundation, Inc
+
+Files: ./m4/gethostname.m4
+Copyright: 2002, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/atexit.m4, ./m4/memcpy.m4, ./m4/memmove.m4, ./m4/memset.m4, ./m4/tm_gmtoff.m4
+Copyright: 2002, 2009 Free Software Foundation, Inc
+
+Files: ./m4/unicodeio.m4
+Copyright: 2002-2003 Free Software Foundation, Inc
+
+Files: ./m4/physmem.m4
+Copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/getpass.m4
+Copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/mktime.m4, ./m4/posixtm.m4, ./m4/stpncpy.m4, ./m4/strnlen.m4
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/strndup.m4
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+
+Files: ./m4/vasprintf.m4
+Copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc
+
+Files: ./m4/strtod.m4
+Copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc
+
+Files: ./m4/strpbrk.m4
+Copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/rpmatch.m4
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
+
+Files: ./m4/getdomainname.m4, ./m4/libsigsegv.m4, ./m4/wchar_t.m4
+Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/strcspn.m4
+Copyright: 2002-2003, 2009 Free Software Foundation, Inc
+
+Files: ./m4/alloca.m4
+Copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/vasnprintf.m4
+Copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc
+
+Files: ./m4/snprintf.m4, ./m4/vsnprintf.m4
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+
+Files: ./m4/memcmp.m4
+Copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc
+
+Files: ./m4/intmax.m4
+Copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/dirname.m4
+Copyright: 2002-2006 Free Software Foundation, Inc
+
+Files: ./m4/getdate.m4
+Copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/getopt.m4
+Copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/clock_time.m4, ./m4/filenamecat.m4, ./m4/mountlist.m4, ./m4/posixver.m4, ./m4/save-cwd.m4, ./m4/stdbool.m4, ./m4/userspec.m4
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+
+Files: ./modules/README
+Copyright: 2002-2007 Free Software Foundation, Inc
+
+Files: ./m4/euidaccess.m4, ./m4/putenv.m4, ./m4/readutmp.m4, ./m4/strdup.m4
+Copyright: 2002-2009 Free Software Foundation, Inc
+
+Files: ./m4/getnline.m4, ./m4/xstrndup.m4
+Copyright: 2003 Free Software Foundation, Inc
+
+Files: ./m4/canonicalize.m4
+Copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+
+Files: ./m4/utimens.m4
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software
+
+Files: ./m4/free.m4, ./m4/utimes.m4
+Copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
+
+Files: ./doc/solaris-versions
+Copyright: 2003, 2005, 2006 Free Software Foundation, Inc
+
+Files: ./m4/poll.m4
+Copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/sysexits.m4
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc
+
+Files: ./m4/size_max.m4
+Copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/relocatable-lib.m4, ./m4/relocatable.m4
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/locale-fr.m4, ./m4/locale-ja.m4, ./m4/locale-tr.m4, ./m4/locale-zh.m4
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc
+
+Files: ./m4/time_r.m4
+Copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc
+
+Files: ./m4/getndelim2.m4
+Copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/canonicalize-lgpl.m4
+Copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/extensions.m4
+Copyright: 2003, 2006-2009 Free Software Foundation, Inc
+
+Files: ./m4/rawmemchr.m4
+Copyright: 2003, 2007, 2008 Free Software Foundation, Inc
+
+Files: ./m4/mathl.m4, ./m4/printf-posix.m4, ./m4/readlink.m4, ./m4/strchrnul.m4, ./m4/timegm.m4, ./m4/tzset.m4
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/printf.m4, ./m4/wint_t.m4
+Copyright: 2003, 2007-2009 Free Software Foundation, Inc
+
+Files: ./m4/execute.m4, ./m4/wait-process.m4
+Copyright: 2003, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/copy-file.m4, ./m4/eaccess.m4, ./m4/eealloc.m4, ./m4/findprog.m4, ./m4/sig_atomic_t.m4
+Copyright: 2003, 2009 Free Software Foundation, Inc
+
+Files: ./m4/fatal-signal.m4
+Copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/malloca.m4
+Copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc
+
+Files: ./m4/mempcpy.m4
+Copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/xsize.m4
+Copyright: 2003-2004, 2008 Free Software Foundation, Inc
+
+Files: ./m4/csharpcomp.m4
+Copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/csharpexec.m4
+Copyright: 2003-2005, 2009 Free Software Foundation, Inc
+
+Files: ./m4/argp.m4, ./m4/getcwd-path-max.m4
+Copyright: 2003-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/savewd.m4
+Copyright: 2004 Free Software Foundation, Inc
+
+Files: ./m4/cloexec.m4, ./m4/inttostr.m4
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+
+Files: ./m4/chdir-long.m4, ./m4/utimecmp.m4
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+
+Files: ./m4/c-strtod.m4
+Copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/base64.m4
+Copyright: 2004, 2006 Free Software Foundation, Inc
+
+Files: ./m4/autobuild.m4
+Copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc
+
+Files: ./m4/errno_h.m4
+Copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/sockpfaf.m4
+Copyright: 2004, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./doc/Makefile
+Copyright: 2004, 2006-2009 Free Software Foundation, Inc
+
+Files: ./doc/alloca-opt.texi, ./doc/alloca.texi, ./m4/getsubopt.m4
+Copyright: 2004, 2007 Free Software Foundation, Inc
+
+Files: ./m4/pipe.m4
+Copyright: 2004, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/gnulib-tool.m4
+Copyright: 2004-2005 Free Software Foundation, Inc
+
+Files: ./m4/csharp.m4
+Copyright: 2004-2005, 2009 Free Software Foundation, Inc
+
+Files: ./m4/argz.m4, ./m4/calloc.m4, ./m4/getaddrinfo.m4, ./m4/intlmacosx.m4, ./m4/openat.m4
+Copyright: 2004-2009 Free Software Foundation, Inc
+
+Files: ./doc/ctime.texi, ./doc/inet_ntoa.texi, ./doc/quote.texi
+Copyright: 2005 Free Software Foundation, Inc
+
+Files: ./m4/arcfour.m4, ./m4/arctwo.m4, ./m4/argmatch.m4, ./m4/check-version.m4, ./m4/crc.m4, ./m4/des.m4, ./m4/fprintftime.m4, ./m4/gc-pbkdf2-sha1.m4, ./m4/hmac-md5.m4, ./m4/hmac-sha1.m4, ./m4/memcasecmp.m4, ./m4/rijndael.m4, ./m4/stat-macros.m4, ./m4/stdlib-safer.m4, ./m4/xnanosleep.m4
+Copyright: 2005, 2006 Free Software Foundation, Inc
+
+Files: ./m4/cycle-check.m4, ./m4/getlogin_r.m4, ./m4/pagealign_alloc.m4, ./m4/socklen.m4
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+
+Files: ./m4/getdelim.m4
+Copyright: 2005, 2006, 2007 Free Software dnl Foundation, Inc
+
+Files: ./m4/unlinkdir.m4
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/lchmod.m4
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+
+Files: ./m4/gethrxtime.m4, ./m4/inet_ntop.m4, ./m4/sha512.m4
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/chdir-safer.m4, ./m4/gc.m4, ./m4/readline.m4
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/gc-arcfour.m4, ./m4/gc-arctwo.m4, ./m4/gc-des.m4, ./m4/gc-hmac-md5.m4, ./m4/gc-hmac-sha1.m4, ./m4/gc-md2.m4, ./m4/gc-md4.m4, ./m4/gc-md5.m4, ./m4/gc-rijndael.m4, ./m4/gc-sha1.m4
+Copyright: 2005, 2007 Free Software Foundation, Inc
+
+Files: ./m4/strcasestr.m4
+Copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/byteswap.m4, ./m4/mmap-anon.m4
+Copyright: 2005, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/mbfile.m4, ./m4/mbiter.m4, ./m4/tls.m4, ./m4/visibility.m4
+Copyright: 2005, 2008 Free Software Foundation, Inc
+
+Files: ./m4/sha256.m4
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/minmax.m4, ./m4/nocrash.m4
+Copyright: 2005, 2009 Free Software Foundation, Inc
+
+Files: ./doc/lib-symbol-visibility.texi, ./m4/bison-i18n.m4
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/glob.m4, ./m4/mbchar.m4
+Copyright: 2005-2007 Free Software Foundation, Inc
+
+Files: ./m4/fcntl-safer.m4
+Copyright: 2005-2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/fts.m4
+Copyright: 2005-2008 Free Software Foundation, Inc
+
+Files: ./doc/gnulib-tool.texi, ./m4/gc-random.m4, ./m4/lock.m4, ./m4/sys_socket_h.m4, ./m4/threadlib.m4, ./m4/yield.m4
+Copyright: 2005-2009 Free Software Foundation, Inc
+
+Files: ./doc/gcd.texi, ./doc/verify.texi, ./m4/config-h.m4, ./m4/gl_list.m4, ./m4/i-ring.m4, ./m4/imaxabs.m4, ./m4/imaxdiv.m4, ./m4/ldd.m4, ./m4/lib-ignore.m4, ./m4/memxor.m4, ./m4/mkancesdirs.m4, ./m4/no-c++.m4, ./m4/xvasprintf.m4, ./modules/COPYING
+Copyright: 2006 Free Software Foundation, Inc
+
+Files: ./m4/selinux-context-h.m4
+Copyright: 2006, 2007 Free Software Foundation, Inc
+
+Files: ./m4/fcntl_h.m4, ./m4/selinux-selinux-h.m4
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/arpa_inet_h.m4
+Copyright: 2006, 2008 Free Software Foundation, Inc
+
+Files: ./m4/double-slash-root.m4, ./m4/inet_pton.m4
+Copyright: 2006, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/stdarg.m4
+Copyright: 2006, 2008-2009 Free Software Foundation, Inc
+
+Files: ./Makefile, ./m4/flexmember.m4, ./m4/getcwd-abort-bug.m4, ./m4/inline.m4, ./m4/intldir.m4, ./m4/isapipe.m4, ./m4/rename-dest-slash.m4
+Copyright: 2006, 2009 Free Software Foundation, Inc
+
+Files: ./m4/close-stream.m4, ./m4/tempname.m4
+Copyright: 2006-2007 Free Software Foundation, Inc
+
+Files: ./m4/netinet_in_h.m4, ./m4/tsearch.m4, ./m4/wctype.m4
+Copyright: 2006-2008 Free Software Foundation, Inc
+
+Files: ./m4/absolute-header.m4, ./m4/fchdir.m4, ./m4/include_next.m4, ./m4/inttypes.m4, ./m4/openmp.m4, ./m4/sys_select_h.m4, ./m4/sys_stat_h.m4, ./m4/unistd_h.m4, ./m4/wcwidth.m4
+Copyright: 2006-2009 Free Software Foundation, Inc
+
+Files: ./doc/error.texi, ./m4/check-math-lib.m4, ./m4/closein.m4, ./m4/count-one-bits.m4, ./m4/fbufmode.m4, ./m4/float_h.m4, ./m4/fpieee.m4, ./m4/freadable.m4, ./m4/freading.m4, ./m4/fseek.m4, ./m4/ftell.m4, ./m4/fwritable.m4, ./m4/fwriting.m4, ./m4/gnu-make.m4, ./m4/localename.m4, ./m4/lseek.m4, ./m4/mpsort.m4, ./m4/round.m4, ./m4/strings_h.m4, ./m4/sys_time_h.m4, ./m4/trunc.m4, ./m4/truncf.m4
+Copyright: 2007 Free Software Foundation, Inc
+
+Files: ./doc/COPYING.LESSERv3
+Copyright: 2007 Free Software Foundation, Inc. <http://fsf.org/>
+
+Files: ./m4/ftello.m4
+Copyright: 2007, 2008 Free Software Foundation, Inc
+
+Files: ./m4/frexp.m4, ./m4/signal_h.m4, ./m4/string_h.m4
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+
+Files: ./m4/ceil.m4, ./m4/ceilf.m4, ./m4/ceill.m4, ./m4/floor.m4, ./m4/floorf.m4, ./m4/floorl.m4, ./m4/fpurge.m4, ./m4/gc-camellia.m4, ./m4/locale_h.m4, ./m4/malloc.m4, ./m4/printf-frexp.m4, ./m4/printf-frexpl.m4, ./m4/realloc.m4, ./m4/roundl.m4, ./m4/strptime.m4, ./m4/tmpfile.m4, ./m4/write-any-file.m4
+Copyright: 2007, 2009 Free Software Foundation, Inc
+
+Files: ./m4/exponentd.m4, ./m4/exponentf.m4, ./m4/freopen.m4, ./m4/fseeko.m4, ./m4/iconv_h.m4, ./m4/isnan.m4, ./m4/math_h.m4, ./m4/posix-shell.m4, ./m4/search_h.m4, ./m4/sleep.m4, ./m4/truncl.m4
+Copyright: 2007-2008 Free Software Foundation, Inc
+
+Files: ./m4/dprintf-posix.m4, ./m4/exponentl.m4, ./m4/fflush.m4, ./m4/fopen.m4, ./m4/fprintf-posix.m4, ./m4/frexpl.m4, ./m4/gnulib-common.m4, ./m4/iconv_open.m4, ./m4/isfinite.m4, ./m4/isinf.m4, ./m4/isnand.m4, ./m4/isnanf.m4, ./m4/isnanl.m4, ./m4/ldexpl.m4, ./m4/open.m4, ./m4/printf-posix-rpl.m4, ./m4/roundf.m4, ./m4/signbit.m4, ./m4/snprintf-posix.m4, ./m4/sprintf-posix.m4, ./m4/stdio_h.m4, ./m4/stdlib_h.m4, ./m4/vasnprintf-posix.m4, ./m4/vasprintf-posix.m4, ./m4/vdprintf-posix.m4, ./m4/vfprintf-posix.m4, ./m4/vprintf-posix.m4, ./m4/vsnprintf-posix.m4, ./m4/vsprintf-posix.m4, ./m4/wchar.m4
+Copyright: 2007-2009 Free Software Foundation, Inc
+
+Files: ./doc/c-ctype.texi, ./doc/c-strcase.texi, ./doc/c-strcaseeq.texi, ./doc/c-strcasestr.texi, ./doc/c-strstr.texi, ./doc/c-strtold.texi, ./m4/atoll.m4, ./m4/cond.m4, ./m4/flock.m4, ./m4/fsync.m4, ./m4/func.m4, ./m4/getdtablesize.m4, ./m4/hostent.m4, ./m4/mbrlen.m4, ./m4/mbsinit.m4, ./m4/mbsnrtowcs.m4, ./m4/netdb_h.m4, ./m4/obstack-printf.m4, ./m4/perror.m4, ./m4/posix_spawn.m4, ./m4/random_r.m4, ./m4/sched_h.m4, ./m4/servent.m4, ./m4/sigaction.m4, ./m4/spawn_h.m4, ./m4/strsignal.m4, ./m4/sys_file_h.m4, ./m4/sys_times_h.m4, ./m4/sys_wait_h.m4, ./m4/thread.m4, ./m4/warnings.m4, ./m4/write.m4
+Copyright: 2008 Free Software Foundation, Inc
+
+Files: ./doc/gnu-oids.texi, ./m4/ld-output-def.m4, ./m4/ld-version-script.m4, ./m4/manywarnings.m4, ./m4/multiarch.m4, ./m4/pmccabe2html.m4, ./m4/sigpipe.m4, ./m4/sockets.m4, ./m4/strstr.m4
+Copyright: 2008, 2009 Free Software Foundation, Inc
+
+Files: ./doc/c-strtod.texi, ./m4/btowc.m4, ./m4/close.m4, ./m4/dirent_h.m4, ./m4/fclose.m4, ./m4/mbsrtowcs.m4, ./m4/obstack-printf-posix.m4, ./m4/sys_ioctl_h.m4, ./m4/wcrtomb.m4, ./m4/wcsnrtombs.m4, ./m4/wcsrtombs.m4, ./m4/wctob.m4
+Copyright: 2008-2009 Free Software Foundation, Inc
+
+Files: ./m4/00gnulib.m4, ./m4/accept4.m4, ./m4/alphasort.m4, ./m4/dirent-safer.m4, ./m4/dprintf.m4, ./m4/dup3.m4, ./m4/faccessat.m4, ./m4/fdopendir.m4, ./m4/idpriv.m4, ./m4/libunistring.m4, ./m4/link.m4, ./m4/mkostemp.m4, ./m4/mode_t.m4, ./m4/pipe2.m4, ./m4/popen.m4, ./m4/priv-set.m4, ./m4/pthread.m4, ./m4/safe-alloc.m4, ./m4/scandir.m4, ./m4/select.m4, ./m4/stddef_h.m4, ./m4/symlinkat.m4, ./m4/sys_utsname_h.m4, ./m4/uname.m4, ./m4/ungetc.m4, ./m4/vdprintf.m4, ./m4/version-etc.m4
+Copyright: 2009 Free Software Foundation, Inc
+
+Files: ./doc/maintain.texi, ./doc/standards.texi
+Copyright: @{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+
+Files: ./doc/install.texi
+Copyright: @{} 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004
+
+Files: ./doc/gnulib.texi
+Copyright: @{} 2004-2009 Free Software Foundation, Inc
+
+Files: ./doc/lgpl-3.0.texi
+Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}
+
+Files: ./doc/agpl-3.0.texi
+Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer
+
+Files: ./doc/gpl-3.0.texi
+Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer you this License
+
+Files: ./COPYING
+Copyright: Free Software Foundation, and
+
+Files: ./doc/Copyright/assign.changes.manual, ./doc/Copyright/assign.future.manual
+Copyright: holder so / to the Foundation is to sign an assignment / on the new version
+
+Files: ./doc/Copyright/conditions.text
+Copyright: holder, the Foundation can sue anyone who tries to / to the Free Software Foundation / laws, even though / means signing a contract that makes the Free / law for helping / to defend users' freedom, by means
+
+Files: ./doc/Copyright/disclaim.changes.manual
+Copyright: interest in my
+
+Files: ./doc/Copyright/disclaim.manual, ./doc/Copyright/disclaim.program
+Copyright: interest in my / interest
+
+Files: ./doc/fdl-1.3.texi, ./doc/fdl.texi
+Copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
+
+Files: ./doc/fdl-1.2.texi
+Copyright: law / holder saying it can be / @{} 2000,2001,2002 Free Software Foundation, Inc
+
+Files: ./doc/Copyright/assign.translation.manual
+Copyright: on the new version. I'm assuming that you / holder so that / to the Foundation is to sign an assignment
+
+Files: ./doc/COPYINGv3
+Copyright: on the software, and (2) offer you this License / 2007 Free Software Foundation, Inc. <http://fsf.org/>
+
+Files: ./doc/Copyright/assign.manual
+Copyright: on this manual to the Foundation is to / interest
+
+Files: ./doc/Copyright/request-assign.changes, ./doc/Copyright/request-assign.future
+Copyright: registration, what country are you a citizen of?]
+
+Files: ./doc/COPYING.LESSERv2
+Copyright: the / 1991, 1999 Free Software Foundation, Inc
+
+Files: ./doc/lgpl-2.1.texi
+Copyright: the / @{} 1991, 1999 Free Software Foundation, Inc
+
+Files: ./doc/gpl-2.0.texi
+Copyright: the software, and / @{} 1989, 1991 Free Software Foundation, Inc
+
+Files: ./modules/version-etc-fsf
+Copyright: variable for FSF projects
+
+Files: ./modules/update-copyright
+Copyright: year list to include the current year
+
+Files: ./lib/unicase/cased.h, ./lib/unicase/ignorable.h, ./lib/unicase/special-casing-table.gperf, ./lib/unicase/tocasefold.h, ./lib/unicase/tolower.h, ./lib/unicase/totitle.h, ./lib/unicase/toupper.h, ./lib/unictype/bidi_of.h, ./lib/unictype/blocks.h, ./lib/unictype/categ_C.h, ./lib/unictype/categ_Cc.h, ./lib/unictype/categ_Cf.h, ./lib/unictype/categ_Cn.h, ./lib/unictype/categ_Co.h, ./lib/unictype/categ_Cs.h, ./lib/unictype/categ_L.h, ./lib/unictype/categ_Ll.h, ./lib/unictype/categ_Lm.h, ./lib/unictype/categ_Lo.h, ./lib/unictype/categ_Lt.h, ./lib/unictype/categ_Lu.h, ./lib/unictype/categ_M.h, ./lib/unictype/categ_Mc.h, ./lib/unictype/categ_Me.h, ./lib/unictype/categ_Mn.h, ./lib/unictype/categ_N.h, ./lib/unictype/categ_Nd.h, ./lib/unictype/categ_Nl.h, ./lib/unictype/categ_No.h, ./lib/unictype/categ_P.h, ./lib/unictype/categ_Pc.h, ./lib/unictype/categ_Pd.h, ./lib/unictype/categ_Pe.h, ./lib/unictype/categ_Pf.h, ./lib/unictype/categ_Pi.h, ./lib/unictype/categ_Po.h, ./lib/unictype/categ_Ps.h, ./lib/unictype/categ_S.h, ./lib/unictype/categ_Sc.h, ./lib/unictype/categ_Sk.h, ./lib/unictype/categ_Sm.h, ./lib/unictype/categ_So.h, ./lib/unictype/categ_Z.h, ./lib/unictype/categ_Zl.h, ./lib/unictype/categ_Zp.h, ./lib/unictype/categ_Zs.h, ./lib/unictype/categ_of.h, ./lib/unictype/combining.h, ./lib/unictype/ctype_alnum.h, ./lib/unictype/ctype_alpha.h, ./lib/unictype/ctype_blank.h, ./lib/unictype/ctype_cntrl.h, ./lib/unictype/ctype_digit.h, ./lib/unictype/ctype_graph.h, ./lib/unictype/ctype_lower.h, ./lib/unictype/ctype_print.h, ./lib/unictype/ctype_punct.h, ./lib/unictype/ctype_space.h, ./lib/unictype/ctype_upper.h, ./lib/unictype/ctype_xdigit.h, ./lib/unictype/decdigit.h, ./lib/unictype/digit.h, ./lib/unictype/mirror.h, ./lib/unictype/numeric.h, ./lib/unictype/pr_alphabetic.h, ./lib/unictype/pr_ascii_hex_digit.h, ./lib/unictype/pr_bidi_arabic_digit.h, ./lib/unictype/pr_bidi_arabic_right_to_left.h, ./lib/unictype/pr_bidi_block_separator.h, ./lib/unictype/pr_bidi_boundary_neutral.h, ./lib/unictype/pr_bidi_common_separator.h, ./lib/unictype/pr_bidi_control.h, ./lib/unictype/pr_bidi_embedding_or_override.h, ./lib/unictype/pr_bidi_eur_num_separator.h, ./lib/unictype/pr_bidi_eur_num_terminator.h, ./lib/unictype/pr_bidi_european_digit.h, ./lib/unictype/pr_bidi_hebrew_right_to_left.h, ./lib/unictype/pr_bidi_left_to_right.h, ./lib/unictype/pr_bidi_non_spacing_mark.h, ./lib/unictype/pr_bidi_other_neutral.h, ./lib/unictype/pr_bidi_pdf.h, ./lib/unictype/pr_bidi_segment_separator.h, ./lib/unictype/pr_bidi_whitespace.h, ./lib/unictype/pr_combining.h, ./lib/unictype/pr_composite.h, ./lib/unictype/pr_currency_symbol.h, ./lib/unictype/pr_dash.h, ./lib/unictype/pr_decimal_digit.h, ./lib/unictype/pr_default_ignorable_code_point.h, ./lib/unictype/pr_deprecated.h, ./lib/unictype/pr_diacritic.h, ./lib/unictype/pr_extender.h, ./lib/unictype/pr_format_control.h, ./lib/unictype/pr_grapheme_base.h, ./lib/unictype/pr_grapheme_extend.h, ./lib/unictype/pr_grapheme_link.h, ./lib/unictype/pr_hex_digit.h, ./lib/unictype/pr_hyphen.h, ./lib/unictype/pr_id_continue.h, ./lib/unictype/pr_id_start.h, ./lib/unictype/pr_ideographic.h, ./lib/unictype/pr_ids_binary_operator.h, ./lib/unictype/pr_ids_trinary_operator.h, ./lib/unictype/pr_ignorable_control.h, ./lib/unictype/pr_iso_control.h, ./lib/unictype/pr_join_control.h, ./lib/unictype/pr_left_of_pair.h, ./lib/unictype/pr_line_separator.h, ./lib/unictype/pr_logical_order_exception.h, ./lib/unictype/pr_lowercase.h, ./lib/unictype/pr_math.h, ./lib/unictype/pr_non_break.h, ./lib/unictype/pr_not_a_character.h, ./lib/unictype/pr_numeric.h, ./lib/unictype/pr_other_alphabetic.h, ./lib/unictype/pr_other_default_ignorable_code_point.h, ./lib/unictype/pr_other_grapheme_extend.h, ./lib/unictype/pr_other_id_continue.h, ./lib/unictype/pr_other_id_start.h, ./lib/unictype/pr_other_lowercase.h, ./lib/unictype/pr_other_math.h, ./lib/unictype/pr_other_uppercase.h, ./lib/unictype/pr_paired_punctuation.h, ./lib/unictype/pr_paragraph_separator.h, ./lib/unictype/pr_pattern_syntax.h, ./lib/unictype/pr_pattern_white_space.h, ./lib/unictype/pr_private_use.h, ./lib/unictype/pr_punctuation.h, ./lib/unictype/pr_quotation_mark.h, ./lib/unictype/pr_radical.h, ./lib/unictype/pr_sentence_terminal.h, ./lib/unictype/pr_soft_dotted.h, ./lib/unictype/pr_space.h, ./lib/unictype/pr_terminal_punctuation.h, ./lib/unictype/pr_titlecase.h, ./lib/unictype/pr_unassigned_code_value.h, ./lib/unictype/pr_unified_ideograph.h, ./lib/unictype/pr_uppercase.h, ./lib/unictype/pr_variation_selector.h, ./lib/unictype/pr_white_space.h, ./lib/unictype/pr_xid_continue.h, ./lib/unictype/pr_xid_start.h, ./lib/unictype/pr_zero_width.h, ./lib/unictype/scripts.h, ./lib/unictype/scripts_byname.gperf, ./lib/unictype/sy_c_ident.h, ./lib/unictype/sy_c_whitespace.h, ./lib/unictype/sy_java_ident.h, ./lib/unictype/sy_java_whitespace.h, ./lib/uniname/uninames.h, ./lib/uninorm/decomposition-table1.h, ./lib/uninorm/decomposition-table2.h, ./modules/alloca-opt, ./modules/argz, ./modules/arpa_inet, ./modules/byteswap, ./modules/configmake, ./modules/dirent, ./modules/errno, ./modules/fcntl-h, ./modules/float, ./modules/fnmatch, ./modules/getopt-posix, ./modules/glob, ./modules/iconv_open, ./modules/inttypes, ./modules/locale, ./modules/math, ./modules/netdb, ./modules/netinet_in, ./modules/poll, ./modules/sched, ./modules/search, ./modules/signal, ./modules/spawn, ./modules/stdarg, ./modules/stdbool, ./modules/stddef, ./modules/stdint, ./modules/stdio, ./modules/stdlib, ./modules/string, ./modules/strings, ./modules/sys_file, ./modules/sys_ioctl, ./modules/sys_select, ./modules/sys_socket, ./modules/sys_stat, ./modules/sys_time, ./modules/sys_times, ./modules/sys_utsname, ./modules/sys_wait, ./modules/sysexits, ./modules/time, ./modules/unistd, ./modules/wchar, ./modules/wctype, ./tests/unictype/test-decdigit.h, ./tests/unictype/test-digit.h, ./tests/unictype/test-numeric.h
+License: *No copyright* GENERATED FILE
+
+Files: ./lib/atexit.c, ./lib/ftruncate.c
+License: *No copyright* Public domain
+
+Files: ./lib/fts_.h
+Copyright: 1989, 1993 / 2004-2009 Free Software Foundation, Inc
+License: BSD (3 clause) GPL-3+ 
+
+Files: ./lib/fts.c
+Copyright: 1990, 1993, 1994 / 2004-2009 Free Software Foundation, Inc
+License: BSD (3 clause) GPL-3+ 
+
+Files: ./lib/random_r.c
+Copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation
+License: BSD (3 clause) LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/rijndael-alg-fst.h, ./lib/rijndael-api-fst.h
+Copyright: 2005 Free Software Foundation, Inc
+License: BSD GPL 
+
+Files: ./lib/rijndael-alg-fst.c, ./lib/rijndael-api-fst.c
+Copyright: 2005, 2006 Free Software Foundation, Inc
+License: BSD GPL 
+
+Files: ./m4/onceonly.m4
+Copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc
+License: GENERATED FILE
+
+Files: ./lib/regex.h
+Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006
+License: GPL 
+
+Files: ./lib/fnmatch.in.h
+Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003
+License: GPL 
+
+Files: ./lib/strtol.c
+Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005
+License: GPL 
+
+Files: ./lib/memcmp.c
+Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
+License: GPL 
+
+Files: ./lib/memchr2.c
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006
+License: GPL 
+
+Files: ./lib/memchr.c
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
+License: GPL 
+
+Files: ./lib/strcspn.c
+Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/putenv.c
+Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008
+License: GPL 
+
+Files: ./lib/strpbrk.c
+Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software
+License: GPL 
+
+Files: ./lib/strdup.c
+Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
+License: GPL 
+
+Files: ./lib/memset.c
+Copyright: 1991, 2003 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/fnmatch_loop.c
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
+License: GPL 
+
+Files: ./lib/fnmatch.c
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
+License: GPL 
+
+Files: ./lib/memmem.c, ./lib/strstr.c
+Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+License: GPL 
+
+Files: ./lib/stpcpy.c
+Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/alphasort.c
+Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/pathmax.h
+Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/scandir.c
+Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/getpass.c
+Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
+License: GPL 
+
+Files: ./lib/stpncpy.c
+Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/mktime.c
+Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/getdelim.c
+Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007
+License: GPL 
+
+Files: ./lib/timegm.c
+Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software
+License: GPL 
+
+Files: ./lib/strtoull.c
+Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/minmax.h
+Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/alloca.in.h
+Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software
+License: GPL 
+
+Files: ./lib/md2.c, ./lib/md4.c
+Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+License: GPL 
+
+Files: ./lib/md5.c
+Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008
+License: GPL 
+
+Files: ./lib/c-strcase.h
+Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/string.in.h
+Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/tsearch.c
+Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/md5.h
+Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
+License: GPL 
+
+Files: ./lib/gettext.h
+Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./config/argz.mk
+Copyright: 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
+License: GPL 
+
+Files: ./lib/argz.c
+Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/strndup.c
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
+License: GPL 
+
+Files: ./lib/malloc.c
+Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/strverscmp.c
+Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc / ((unsigned int) - '0' <= 9)
+License: GPL 
+
+Files: ./lib/getaddrinfo.c
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
+License: GPL 
+
+Files: ./lib/gai_strerror.c
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/check-version.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+License: GPL 
+
+Files: ./lib/des.c
+Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+License: GPL 
+
+Files: ./lib/utime.c
+Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software
+License: GPL 
+
+Files: ./lib/c-strcasecmp.c, ./lib/c-strncasecmp.c
+Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/strcasecmp.c, ./lib/strncasecmp.c
+Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/base64.c
+Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software
+License: GPL 
+
+Files: ./lib/asnprintf.c
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/asprintf.c
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/vasprintf.c
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/printf-parse.h
+Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/printf-args.c
+Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/printf-args.h
+Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/vasnprintf.c
+Copyright: 1999, 2002-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/printf-parse.c
+Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/iconv.c
+Copyright: 1999-2001, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/ref-add.sin, ./lib/ref-del.sin
+Copyright: 2000 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/arcfour.h
+Copyright: 2000, 2001, 2002, 2003, 2004, 2005
+License: GPL 
+
+Files: ./lib/arctwo.h
+Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/arcfour.c
+Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software
+License: GPL 
+
+Files: ./lib/sha1.c
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
+License: GPL 
+
+Files: ./lib/sha1.h
+Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009
+License: GPL 
+
+Files: ./lib/md2.h, ./lib/md4.h
+Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
+License: GPL 
+
+Files: ./lib/unictype/3level.h
+Copyright: 2000-2001 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/unictype/3levelbit.h
+Copyright: 2000-2002 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/localcharset.h
+Copyright: 2000-2003 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/config.charset
+Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/localcharset.c
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/gettimeofday.c
+Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software
+License: GPL 
+
+Files: ./lib/poll.in.h
+Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/stdint.in.h
+Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/sys_wait.in.h
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/stdbool.in.h
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/poll.c
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/striconv.h
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/concat-filename.c, ./lib/xconcat-filename.c
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/striconv.c
+Copyright: 2001-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/gc-pbkdf2-sha1.c
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/regex_internal.c, ./lib/regex_internal.h, ./lib/regexec.c
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+License: GPL 
+
+Files: ./lib/gc-gnulib.c, ./lib/gc-libgcrypt.c
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+License: GPL 
+
+Files: ./tests/test-gc-pbkdf2-sha1.c
+Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation
+License: GPL 
+
+Files: ./lib/gc.h
+Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
+License: GPL 
+
+Files: ./lib/regex.c
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/strptime.c
+Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/regcomp.c
+Copyright: 2002,2003,2004,2005,2006,2007,2008,2009
+License: GPL 
+
+Files: ./lib/vasnprintf.h
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/utimens.c
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+License: GPL 
+
+Files: ./lib/arctwo.c
+Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/time_r.c
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/malloca.c
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/mempcpy.c
+Copyright: 2003, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/xsize.h
+Copyright: 2003, 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/alignof.h
+Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/malloca.h
+Copyright: 2003-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/unistd.in.h
+Copyright: 2003-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/getpass.h
+Copyright: 2004 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/base64.h
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./build-aux/gnupload
+Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
+License: GPL 
+
+Files: ./lib/snprintf.c, ./lib/vsnprintf.c
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/strsep.c
+Copyright: 2004, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/stdio.in.h
+Copyright: 2004, 2007-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./tests/test-gc-arcfour.c, ./tests/test-gc-arctwo.c, ./tests/test-gc-des.c, ./tests/test-gc-hmac-md5.c, ./tests/test-gc-hmac-sha1.c, ./tests/test-gc-md2.c, ./tests/test-gc-md4.c, ./tests/test-gc-md5.c, ./tests/test-gc-rijndael.c, ./tests/test-gc-sha1.c, ./tests/test-md2.c, ./tests/test-md4.c
+Copyright: 2005 Free Software Foundation
+License: GPL 
+
+Files: ./lib/canon-host.h, ./lib/check-version.h, ./lib/hmac.h, ./lib/memxor.h
+Copyright: 2005 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./tests/test-gc.c
+Copyright: 2005, 2006 Free Software Foundation
+License: GPL 
+
+Files: ./lib/hmac-md5.c, ./lib/hmac-sha1.c, ./lib/memxor.c
+Copyright: 2005, 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/getline.c, ./lib/getlogin_r.c, ./lib/strnlen.c
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/canon-host.c
+Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./tests/test-des.c
+Copyright: 2005, 2007 Free Software Foundation
+License: GPL 
+
+Files: ./lib/des.h
+Copyright: 2005, 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/size_max.h
+Copyright: 2005-2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/arpa_inet.in.h
+Copyright: 2005-2006, 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/glob.in.h
+Copyright: 2005-2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/glthread/cond.h, ./lib/glthread/lock.c, ./lib/glthread/lock.h, ./lib/glthread/thread.c, ./lib/glthread/thread.h, ./lib/glthread/yield.h
+Copyright: 2005-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/strcasestr.c
+Copyright: 2005-2008 Free Software Foundation, Inc / TOLOWER 
+License: GPL 
+
+Files: ./lib/glthread/threadlib.c, ./lib/sys_socket.in.h, ./lib/sys_stat.in.h
+Copyright: 2005-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/read-file.c, ./lib/read-file.h
+Copyright: 2006 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/wctype.in.h
+Copyright: 2006-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/float+.h, ./lib/iconv_close.c, ./lib/lseek.c, ./lib/round.c, ./lib/roundf.c, ./lib/roundl.c
+Copyright: 2007 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./tests/test-closein.c, ./tests/test-roundf1.c
+Copyright: 2007, 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/iconv_open.c
+Copyright: 2007, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./build-aux/git-version-gen
+Copyright: 2007-2008 Free Software Foundation
+License: GPL 
+
+Files: ./lib/iconv.in.h, ./lib/isfinite.c, ./lib/isinf.c, ./lib/netinet_in.in.h, ./lib/strings.in.h, ./lib/sys_file.in.h, ./lib/sys_time.in.h, ./tests/test-getdelim.c, ./tests/test-getline.c, ./tests/test-round1.c, ./tests/test-strerror.c, ./tests/test-yesno.c
+Copyright: 2007-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/fseeko.c, ./lib/sys_select.in.h, ./lib/time.in.h, ./lib/wchar.in.h, ./tests/test-roundl.c
+Copyright: 2007-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/glthread/cond.c, ./lib/netdb.in.h, ./lib/obstack_printf.c, ./lib/stdarg.in.h, ./lib/sys_times.in.h, ./lib/times.c, ./tests/test-getndelim2.c, ./tests/test-perror.c, ./tests/test-sigpipe.c, ./tests/test-strsignal.c, ./tests/test-strverscmp.c
+Copyright: 2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/str-two-way.h
+Copyright: 2008 Free Software Foundation, Inc / A macro that canonicalizes an element right after
+License: GPL 
+
+Files: ./tests/test-getdate.c
+Copyright: 2008, 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/errno.in.h, ./lib/select.c, ./lib/sys_ioctl.in.h, ./tests/test-filevercmp.c, ./tests/test-poll.c, ./tests/test-quotearg.c, ./tests/test-xmemdup0.c
+Copyright: 2008-2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/accept4.c, ./lib/dup3.c, ./lib/link.c, ./lib/nproc.c, ./lib/nproc.h, ./lib/pipe2.c, ./lib/pthread.in.h, ./lib/stddef.in.h, ./lib/sys_utsname.in.h, ./tests/test-pipe.c, ./tests/test-pipe2.c
+Copyright: 2009 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./lib/str-kmp.h
+Copyright: A macro that canonicalizes an element right after / 2005-2008 Free Software Foundation, Inc
+License: GPL 
+
+Files: ./build-aux/update-copyright
+Copyright: target rule in maint.mk from gnulib's / 1990-2005, 2007-2009 Free Software / statement is not recognized because the / statements to be updated. For example, you might wish to / &copy; 90,2005,2007-2009 / statement must be formated correctly in / year list to include the current year / 2009 Free Software Foundation, Inc / year intervals. (See "Environment variables" / @{} 1990-2005, 2007-2009 Free Software / statement is recognized in a file and the final
+License: GPL 
+
+Files: ./build-aux/mdate-sh
+Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
+License: GPL GENERATED FILE
+
+Files: ./build-aux/elisp-comp
+Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software
+License: GPL GENERATED FILE
+
+Files: ./build-aux/missing
+Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
+License: GPL GENERATED FILE
+
+Files: ./build-aux/depcomp
+Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
+License: GPL GENERATED FILE
+
+Files: ./build-aux/compile
+Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software
+License: GPL GENERATED FILE
+
+Files: ./lib/crc.c
+Copyright: 2005, 2006 Free Software Foundation, Inc
+License: GPL GENERATED FILE
+
+Files: ./lib/c-ctype.c
+Copyright: 2000-2003, 2006 Free Software Foundation, Inc
+License: GPL-2+ 
+
+Files: ./lib/c-ctype.h
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
+License: GPL-2+ 
+
+Files: ./tests/test-flock.c, ./tests/test-fsync.c
+Copyright: 2008 Free Software Foundation, Inc
+License: GPL-2+ 
+
+Files: ./lib/git-merge-changelog.c
+Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
+License: GPL-2+ 
+
+Files: ./tests/test-link.c
+Copyright: 2009 Free Software Foundation, Inc
+License: GPL-2+ 
+
+Files: ./build-aux/config.sub
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+License: GPL-2+ GENERATED FILE
+
+Files: ./build-aux/config.guess
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 / 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+License: GPL-2+ GENERATED FILE
+
+Files: ./tests/test-btowc.c
+Copyright: != WEOF); / 2008 Free Software Foundation, Inc / == c);
+License: GPL-3+ 
+
+Files: ./build-aux/vc-list-files
+Copyright: $year Free Software Foundation, Inc / 2006-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/version-etc-fsf.c
+Copyright: %s %d Free Software Foundation, Inc."; / 1999-2006 Free Software Foundation, Inc / goes to the FSF. */
+License: GPL-3+ 
+
+Files: ./lib/filename.h
+Copyright: ( == '/' || == '\\') / tests whether C is a directory separator character / 2001-2004, 2007-2008 Free Software Foundation, Inc / ( == '/')
+License: GPL-3+ 
+
+Files: ./lib/posixtm.c
+Copyright: ((unsigned int) - '0' <= 9) / 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004
+License: GPL-3+ 
+
+Files: ./lib/getloadavg.c
+Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994
+License: GPL-3+ 
+
+Files: ./build-aux/texinfo.tex
+Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995
+License: GPL-3+ 
+
+Files: ./lib/idcache.c
+Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
+License: GPL-3+ 
+
+Files: ./lib/filemode.c
+Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/linebuffer.c
+Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
+License: GPL-3+ 
+
+Files: ./lib/linebuffer.h
+Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software
+License: GPL-3+ 
+
+Files: ./lib/getopt.c
+Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
+License: GPL-3+ 
+
+Files: ./lib/getopt1.c
+Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
+License: GPL-3+ 
+
+Files: ./lib/obstack.c
+Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
+License: GPL-3+ 
+
+Files: ./lib/rmdir.c
+Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/fstrcmp.c
+Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
+License: GPL-3+ 
+
+Files: ./lib/diffseq.h
+Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free
+License: GPL-3+ 
+
+Files: ./lib/obstack.h
+Copyright: 1988-1994,1996-1999,2003,2004,2005,2006
+License: GPL-3+ 
+
+Files: ./lib/modechange.c
+Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/modechange.h
+Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/userspec.c
+Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
+License: GPL-3+ 
+
+Files: ./lib/getopt_int.h
+Copyright: 1989-1994,1996-1999,2001,2003,2004
+License: GPL-3+ 
+
+Files: ./lib/getopt.in.h
+Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
+License: GPL-3+ 
+
+Files: ./lib/diacrit.h
+Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/backupfile.c, ./lib/xalloc.h, ./lib/xmalloc.c
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+License: GPL-3+ 
+
+Files: ./lib/diacrit.c
+Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/backupfile.h
+Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
+License: GPL-3+ 
+
+Files: ./lib/euidaccess.c
+Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006
+License: GPL-3+ 
+
+Files: ./lib/getugroups.c
+Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/readtokens.h
+Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/savedir.c
+Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/mkdir-p.c
+Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/fileblocks.c
+Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/basename.c
+Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/argmatch.c
+Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+License: GPL-3+ 
+
+Files: ./lib/argmatch.h
+Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
+License: GPL-3+ 
+
+Files: ./lib/dirname.c
+Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/yesno.c
+Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/isdir.c
+Copyright: 1990, 1998, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-argmatch.c
+Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/stripslash.c
+Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/readtokens.c
+Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/error.c
+Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-update-copyright.sh
+Copyright: 1990-2005, 2007-2009 Free Software / @{} 1990-2005, 2007-2009 Free Software / 2009 Free Software Foundation, Inc / &copy; 90,2005,2007-2009
+License: GPL-3+ 
+
+Files: ./lib/tempname.c
+Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+License: GPL-3+ 
+
+Files: ./lib/strtod.c
+Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
+License: GPL-3+ 
+
+Files: ./lib/fsusage.h
+Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/mountlist.c
+Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mountlist.h
+Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/memrchr.c
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/strtoul.c
+Copyright: 1991, 1997 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/getusershell.c
+Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free
+License: GPL-3+ 
+
+Files: ./lib/cloexec.c
+Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/strtok_r.c
+Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fsusage.c
+Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009
+License: GPL-3+ 
+
+Files: ./lib/strftime.c
+Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
+License: GPL-3+ 
+
+Files: ./lib/getcwd.c
+Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/exclude.c
+Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003
+License: GPL-3+ 
+
+Files: ./lib/exclude.h
+Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005
+License: GPL-3+ 
+
+Files: ./lib/xgetdomainname.h
+Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xgethostname.c
+Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009
+License: GPL-3+ 
+
+Files: ./lib/xgetdomainname.c
+Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
+License: GPL-3+ 
+
+Files: ./lib/gethostname.c
+Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/unsetenv.c
+Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/setenv.c
+Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/readutmp.c
+Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/readutmp.h
+Copyright: 1992-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/full-write.c
+Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+License: GPL-3+ 
+
+Files: ./lib/long-options.c
+Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/long-options.h
+Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/safe-read.c
+Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/file-type.h
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+License: GPL-3+ 
+
+Files: ./lib/file-type.c
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/getndelim2.c
+Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free
+License: GPL-3+ 
+
+Files: ./lib/mkdir-p.h
+Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006
+License: GPL-3+ 
+
+Files: ./lib/group-member.c
+Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/group-member.h
+Copyright: 1994, 1997, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/strtoll.c
+Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/error.h
+Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xstrtol.c, ./tests/test-xstrtol.c
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+License: GPL-3+ 
+
+Files: ./lib/xstrtol.h
+Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007
+License: GPL-3+ 
+
+Files: ./lib/xstrtol-error.c
+Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
+License: GPL-3+ 
+
+Files: ./lib/save-cwd.h
+Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/save-cwd.c
+Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/getdate.h
+Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software
+License: GPL-3+ 
+
+Files: ./lib/memcpy.c
+Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fstrcmp.h
+Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software
+License: GPL-3+ 
+
+Files: ./lib/xgetcwd.h
+Copyright: 1995, 2001, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/stdlib.in.h
+Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp.h
+Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-parse.c
+Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-help.c
+Copyright: 1995-2005, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/human.c, ./lib/human.h
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+License: GPL-3+ 
+
+Files: ./lib/argp-pvh.c
+Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/getsubopt.c
+Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-pv.c
+Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-ba.c
+Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/memcasecmp.c
+Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/filenamecat.h
+Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/rpmatch.c
+Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software
+License: GPL-3+ 
+
+Files: ./lib/memcasecmp.h
+Copyright: 1996, 1998, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xstrtod.h
+Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xstrtod.c
+Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/getgroups.c
+Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software
+License: GPL-3+ 
+
+Files: ./lib/canonicalize-lgpl.c
+Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/canonicalize.h, ./lib/filenamecat.c
+Copyright: 1996-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-filenamecat.c
+Copyright: 1996-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/canonicalize.c
+Copyright: 1996-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-eexst.c
+Copyright: 1997 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/same.c
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/xalloc-die.c
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/same.h
+Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software
+License: GPL-3+ 
+
+Files: ./lib/hard-locale.c
+Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free
+License: GPL-3+ 
+
+Files: ./lib/argp-xinl.c
+Copyright: 1997, 1998, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/savedir.h
+Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-fs-xinl.c
+Copyright: 1997, 2003, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/realloc.c
+Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-namefrob.h
+Copyright: 1997, 2003, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/chown.c
+Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-fmtstream.h
+Copyright: 1997, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/lstat.c
+Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/argp-fmtstream.c
+Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/hash.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007
+License: GPL-3+ 
+
+Files: ./lib/quotearg.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007
+License: GPL-3+ 
+
+Files: ./lib/close-stream.c
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free
+License: GPL-3+ 
+
+Files: ./lib/closeout.c, ./lib/quotearg.h
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+License: GPL-3+ 
+
+Files: ./lib/quote.h
+Copyright: 1998, 1999, 2000, 2001, 2003 Free Software
+License: GPL-3+ 
+
+Files: ./lib/quote.c
+Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free
+License: GPL-3+ 
+
+Files: ./lib/hash.h
+Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mkostemp.c, ./lib/mkstemp.c
+Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/lchown.c
+Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free
+License: GPL-3+ 
+
+Files: ./lib/filemode.h
+Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/closeout.h
+Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/dirname.h
+Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc / (((unsigned int) | ('a' - 'A')) - 'a' \ / ( == DIRECTORY_SEPARATOR)
+License: GPL-3+ 
+
+Files: ./lib/posixtm.h
+Copyright: 1998, 2003, 2005, 2007 Free Software Foundation Inc
+License: GPL-3+ 
+
+Files: ./lib/mbscasecmp.c, ./lib/mbsncasecmp.c, ./lib/mbspcasecmp.c
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbmemcasecmp.c
+Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/getdate.y
+Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+License: GPL-3+ 
+
+Files: ./lib/nanosleep.c
+Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
+License: GPL-3+ 
+
+Files: ./lib/strtoimax.c
+Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/tmpdir.c
+Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc / ( == '/' || == '\\') / tests whether C is a directory separator character / ( == '/')
+License: GPL-3+ 
+
+Files: ./lib/mkdtemp.c
+Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/memcoll.c
+Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbscspn.c, ./lib/mbspbrk.c, ./lib/mbsspn.c, ./lib/mbstok_r.c
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xasprintf.c
+Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xvasprintf.c
+Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/memcoll.h
+Copyright: 1999, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/hard-locale.h
+Copyright: 1999, 2003, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/version-etc.h
+Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/dup2.c
+Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software
+License: GPL-3+ 
+
+Files: ./lib/sincosl.c
+Copyright: 1999, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/trigl.c
+Copyright: 1999, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbrlen.c
+Copyright: 1999-2000, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbrtowc.c
+Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/version-etc.c
+Copyright: 1999-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/spawn.c, ./lib/spawn_faction_addclose.c, ./lib/spawn_faction_adddup2.c, ./lib/spawn_faction_addopen.c, ./lib/spawn_faction_destroy.c, ./lib/spawn_faction_init.c, ./lib/spawnattr_destroy.c, ./lib/spawnattr_getdefault.c, ./lib/spawnattr_getflags.c, ./lib/spawnattr_getpgroup.c, ./lib/spawnattr_getschedpolicy.c, ./lib/spawnattr_getsigmask.c, ./lib/spawnattr_init.c, ./lib/spawnattr_setdefault.c, ./lib/spawnattr_setpgroup.c, ./lib/spawnattr_setschedparam.c, ./lib/spawnattr_setschedpolicy.c, ./lib/spawnattr_setsigmask.c, ./lib/spawnp.c
+Copyright: 2000 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/physmem.c
+Copyright: 2000, 2001, 2003, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/timespec.h
+Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/physmem.h
+Copyright: 2000, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/spawn.in.h
+Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fpending.h
+Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/spawnattr_setflags.c
+Copyright: 2000, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fpending.c
+Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/spawn_int.h, ./lib/spawnattr_getschedparam.c
+Copyright: 2000, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/gen-uni-tables.c
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/uniname/test-uninames.c
+Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/unicodeio.h
+Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/unicodeio.c
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbswidth.h
+Copyright: 2000-2004, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/spawni.c
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbswidth.c
+Copyright: 2000-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/atanl.c, ./lib/logl.c
+Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+License: GPL-3+ 
+
+Files: ./lib/unlocked-io.h
+Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/intprops.h
+Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/inttostr.h
+Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/rename.c
+Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software
+License: GPL-3+ 
+
+Files: ./lib/hash-pjw.h
+Copyright: 2001, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xgetcwd.c
+Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/areadlink.h, ./lib/xreadlink.h
+Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/w32spawn.h
+Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/unistd-safer.h
+Copyright: 2001, 2003, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/binary-io.h
+Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/x-to-1.in, ./lib/hash-pjw.c
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mkdir.c
+Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/stdio-safer.h
+Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/clean-temp.c
+Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./top/GNUmakefile
+Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/areadlink-with-size.c, ./lib/areadlink.c, ./lib/xreadlink.c
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/dup-safer.c, ./lib/fopen-safer.c
+Copyright: 2001, 2004, 2005, 2006, 2009 Free Software
+License: GPL-3+ 
+
+Files: ./lib/mbfile.h
+Copyright: 2001, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbiter.h, ./lib/mbuiter.h
+Copyright: 2001, 2005, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbchar.h
+Copyright: 2001, 2005-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/javaexec.sh.in, ./lib/mbchar.c
+Copyright: 2001, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/inttostr.c
+Copyright: 2001, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/dirfd.c
+Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/javaexec.h, ./lib/tmpdir.h
+Copyright: 2001-2002 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/sh-quote.h
+Copyright: 2001-2002, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xsetenv.c
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/javacomp.sh.in, ./lib/gcd.c, ./lib/gcd.h, ./lib/javacomp.h
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xsetenv.h
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/copy-file.h, ./lib/findprog.h
+Copyright: 2001-2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/progname.c, ./lib/wait-process.c
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/c-strstr.h, ./lib/classpath.c
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/pipe.h, ./lib/wait-process.h
+Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/copy-file.c
+Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/javacomp.c, ./lib/javaexec.c
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/execute.h
+Copyright: 2001-2003, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/pipe-filter-aux.h, ./lib/pipe-filter-gi.c, ./lib/pipe-filter-ii.c
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/progname.h, ./lib/sh-quote.c, ./lib/xstriconv.c
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xstriconv.h
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/findprog-lgpl.c, ./lib/findprog.c
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/execute.c, ./lib/pipe.c
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/concat-filename.h
+Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/iconveh.h, ./lib/striconveh.h, ./lib/xstriconveh.h
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/striconveh.c, ./top/maint.mk
+Copyright: 2001-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/exitfail.h, ./lib/full-read.h, ./lib/safe-write.c, ./lib/safe-write.h
+Copyright: 2002 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/full-read.c, ./lib/trigl.h
+Copyright: 2002, 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./config/srclistvars.sh
+Copyright: 2002, 2003, 2004 2005, 2006, 2008
+License: GPL-3+ 
+
+Files: ./lib/posixver.c
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software
+License: GPL-3+ 
+
+Files: ./lib/xnanosleep.c
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+License: GPL-3+ 
+
+Files: ./lib/xmemcoll.c
+Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/raise.c
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/exitfail.c
+Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./config/srclist-update
+Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/expl.c, ./lib/sqrtl.c
+Copyright: 2002, 2003, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/ldexpl.c
+Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/gettime.c
+Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/settime.c
+Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software
+License: GPL-3+ 
+
+Files: ./lib/sig2str.c
+Copyright: 2002, 2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-c-stack.c
+Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/c-stack.c
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software
+License: GPL-3+ 
+
+Files: ./lib/c-stack.h, ./lib/strftime.h
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/sig2str.h
+Copyright: 2002, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/striconveha.c
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/striconveha.h
+Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/safe-read.h
+Copyright: 2002, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/acl.h
+Copyright: 2002, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/full-write.h
+Copyright: 2002-2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/copy-acl.c
+Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/acl-internal.h, ./lib/acl_entries.c, ./lib/file-has-acl.c, ./lib/set-mode-acl.c
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/math.in.h
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xvasprintf.h
+Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-stdbool.c
+Copyright: 2002-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./posix-modules
+Copyright: 2002-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./MODULES.html.sh, ./build-aux/announce-gen, ./gnulib-tool
+Copyright: 2002-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/classpath.h, ./lib/csharpcomp.h, ./lib/csharpexec.h, ./lib/xstrndup.h
+Copyright: 2003 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/getnline.h
+Copyright: 2003, 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/cycle-check.c, ./lib/fts-cycle.c
+Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/cycle-check.h, ./lib/getndelim2.h, ./lib/getnline.c
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/c-strtod.c
+Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/csharpexec.sh.in
+Copyright: 2003, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xmalloca.h
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fwriteerror.h
+Copyright: 2003, 2005-2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/relocatable.sh.in, ./lib/relocwrapper.c
+Copyright: 2003, 2005-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/install-reloc
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/free.c
+Copyright: 2003, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xstrndup.c
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/getdomainname.c
+Copyright: 2003, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/xmalloca.c
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/sysexits.in.h
+Copyright: 2003, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/strchrnul.c
+Copyright: 2003, 2007, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/eealloc.h, ./tests/test-stpncpy.c
+Copyright: 2003, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fatal-signal.h
+Copyright: 2003-2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fatal-signal.c
+Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/c-strtod.h
+Copyright: 2003-2004, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/csharpcomp.sh.in
+Copyright: 2003-2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fwriteerror.c
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/readlink.c
+Copyright: 2003-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/csharpcomp.c, ./lib/csharpexec.c
+Copyright: 2003-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/bootstrap, ./lib/progreloc.c
+Copyright: 2003-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/readtokens0.h, ./lib/utimecmp.h, ./lib/yesno.h
+Copyright: 2004 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/chdir-long.h, ./tests/test-iconvme.c
+Copyright: 2004, 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/calloc.c, ./lib/utimecmp.c
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/readtokens0.c
+Copyright: 2004, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fprintf.c, ./lib/sprintf.c, ./lib/unistdio/ulc-fprintf.c, ./lib/unistdio/ulc-vfprintf.c, ./lib/vfprintf.c, ./lib/vsprintf.c
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/dummy.c
+Copyright: 2004, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-strstr.c
+Copyright: 2004, 2007, 2008, 2009 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./tests/test-fpending.c
+Copyright: 2004, 2007-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-memmem.c
+Copyright: 2004, 2007-2009 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./tests/test-base64.c
+Copyright: 2004, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/openat.h
+Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/chdir-long.c, ./lib/fdopendir.c, ./lib/openat.c
+Copyright: 2004-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-arcfour.c, ./tests/test-arctwo.c, ./tests/test-hmac-md5.c, ./tests/test-hmac-sha1.c, ./tests/test-md5.c, ./tests/test-rijndael.c
+Copyright: 2005 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/argp-pin.c, ./lib/c-strcasestr.h, ./lib/chdir-safer.h, ./lib/crc.h, ./lib/fprintftime.h, ./lib/gethrxtime.h, ./lib/readline.h, ./lib/stdlib-safer.h, ./lib/strnlen1.h, ./lib/unistd--.h, ./lib/unlinkdir.h, ./tests/test-getpass.c, ./tests/test-verify.c
+Copyright: 2005 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/creat-safer.c, ./lib/pipe-safer.c, ./lib/verify.h, ./lib/xtime.h
+Copyright: 2005, 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-crc.c
+Copyright: 2005, 2006, 2007 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/gethrxtime.c, ./lib/mkstemp-safer.c, ./lib/pagealign_alloc.c, ./lib/stdlib--.h, ./tests/test-dirname.c
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/readline.c
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./check-module
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc / 2006 Free Software Foundation, Inc.\n"
+License: GPL-3+ 
+
+Files: ./lib/sha256.c, ./lib/sha512.c
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/sha256.h, ./lib/sha512.h
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/open-safer.c, ./lib/openat-die.c, ./lib/openat-safer.c
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fd-safer.c, ./lib/mkdirat.c, ./lib/openat-priv.h, ./lib/stdio--.h
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-gettimeofday.c
+Copyright: 2005, 2007 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/byteswap.in.h, ./lib/stat-time.h, ./tests/test-alloca-opt.c, ./tests/test-malloca.c
+Copyright: 2005, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/glthread/tls.h, ./tests/test-binary-io.c
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-c-ctype.c
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc / == (c >= 0 && c < 0x80));
+License: GPL-3+ 
+
+Files: ./lib/pagealign_alloc.h, ./tests/test-lock.c, ./tests/test-tls.c
+Copyright: 2005, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-sha1.c
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fcntl--.h, ./lib/fcntl-safer.h
+Copyright: 2005, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/strnlen1.c
+Copyright: 2005-2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/chdir-safer.c
+Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/unlinkdir.c
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/c-strcasestr.c, ./lib/c-strstr.c, ./lib/glthread/tls.c
+Copyright: 2005-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbscasestr.c
+Copyright: 2005-2008 Free Software Foundation, Inc / TOLOWER 
+License: GPL-3+ 
+
+Files: ./build-aux/ldd.sh.in, ./lib/clean-temp.h, ./lib/gl_anyavltree_list1.h, ./lib/gl_anyhash_list1.h, ./lib/gl_anyhash_list2.h, ./lib/gl_anylinked_list1.h, ./lib/gl_anyrbtree_list1.h, ./lib/gl_anytree_list1.h, ./lib/gl_array_list.h, ./lib/gl_array_oset.h, ./lib/gl_avltree_list.h, ./lib/gl_avltree_oset.h, ./lib/gl_avltreehash_list.h, ./lib/gl_carray_list.h, ./lib/gl_linked_list.h, ./lib/gl_linkedhash_list.h, ./lib/gl_rbtree_list.h, ./lib/gl_rbtree_oset.h, ./lib/gl_rbtreehash_list.h, ./lib/gl_sublist.h, ./lib/i-ring.c, ./lib/i-ring.h, ./lib/imaxabs.c, ./lib/imaxdiv.c, ./lib/javaversion.h, ./lib/javaversion.java, ./lib/mkancesdirs.c, ./lib/rename-dest-slash.c, ./lib/same-inode.h, ./lib/savewd.h, ./lib/trim.h, ./lib/u64.h
+Copyright: 2006 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/bootstrap.conf, ./lib/wcwidth.c
+Copyright: 2006, 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/dirchownmod.c
+Copyright: 2006, 2007, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/savewd.c
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/gl_avltree_list.c, ./lib/gl_avltreehash_list.c, ./lib/gl_linked_list.c, ./lib/gl_linkedhash_list.c, ./lib/gl_rbtree_list.c, ./lib/gl_rbtreehash_list.c, ./lib/isapipe.c, ./lib/propername.h
+Copyright: 2006, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/at-func.c, ./lib/fchmodat.c, ./lib/fstatat.c, ./lib/openat-proc.c, ./lib/tempname.h, ./lib/tmpfile-safer.c
+Copyright: 2006, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-read-file.c
+Copyright: 2006-2007 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/gl_anyavltree_list2.h, ./lib/gl_anyrbtree_list2.h, ./lib/gl_anytree_oset.h, ./lib/gl_anytreehash_list1.h, ./lib/gl_anytreehash_list2.h, ./lib/gl_array_oset.c, ./lib/gl_avltree_oset.c, ./lib/gl_oset.c, ./lib/gl_oset.h, ./lib/gl_rbtree_oset.c, ./lib/verror.c, ./lib/verror.h, ./tests/test-argp.c, ./tests/test-inttypes.c
+Copyright: 2006-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fchownat.c
+Copyright: 2006-2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/gl_anylinked_list2.h, ./lib/gl_anytree_list2.h, ./lib/gl_array_list.c, ./lib/gl_carray_list.c, ./lib/gl_list.c, ./lib/gl_list.h, ./lib/gl_sublist.c, ./lib/javaversion.c, ./lib/sigprocmask.c, ./lib/trim.c, ./tests/test-argp-2.sh, ./tests/test-array_list.c, ./tests/test-array_oset.c, ./tests/test-avltreehash_list.c, ./tests/test-carray_list.c, ./tests/test-i-ring.c, ./tests/test-linked_list.c, ./tests/test-linkedhash_list.c, ./tests/test-rbtree_list.c, ./tests/test-rbtree_oset.c, ./tests/test-rbtreehash_list.c, ./tests/test-stdint.c
+Copyright: 2006-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/dirent.in.h, ./lib/fchdir.c, ./lib/fcntl.in.h, ./lib/inttypes.in.h, ./lib/propername.c, ./lib/signal.in.h, ./tests/test-avltree_list.c, ./tests/test-avltree_oset.c, ./tests/test-getaddrinfo.c
+Copyright: 2006-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/ceil.c, ./lib/ceilf.c, ./lib/ceill.c, ./lib/closein.c, ./lib/closein.h, ./lib/fbufmode.h, ./lib/file-set.c, ./lib/floor.c, ./lib/floorf.c, ./lib/floorl.c, ./lib/freadable.h, ./lib/frexpl.c, ./lib/fseek.c, ./lib/fseterr.h, ./lib/ftello.c, ./lib/fwritable.h, ./lib/fwriting.h, ./lib/getpagesize.c, ./lib/getugroups.h, ./lib/hash-triple.c, ./lib/isnanf.c, ./lib/isnanl.c, ./lib/mpsort.c, ./lib/printf-frexp.c, ./lib/printf-frexp.h, ./lib/printf-frexpl.c, ./lib/printf-frexpl.h, ./lib/printf.c, ./lib/sleep.c, ./lib/tmpfile.c, ./lib/trunc.c, ./lib/truncf.c, ./lib/truncl.c, ./lib/vprintf.c, ./lib/write-any-file.c, ./lib/xprintf.c, ./tests/test-arpa_inet.c, ./tests/test-atexit.c, ./tests/test-fflush.c, ./tests/test-fprintf-posix2.c, ./tests/test-fseterr.c, ./tests/test-isnanl-nolibm.c, ./tests/test-netinet_in.c, ./tests/test-printf-posix2.c, ./tests/test-search.c, ./tests/test-strings.c, ./tests/test-sys_time.c, ./tests/test-sysexits.c, ./tests/unicase/test-predicate-part2.h, ./tests/unictype/test-predicate-part2.h, ./tests/unistdio/test-u16-asnprintf1.h, ./tests/unistdio/test-u16-printf1.h, ./tests/unistdio/test-u32-asnprintf1.h, ./tests/unistdio/test-u32-printf1.h, ./tests/unistdio/test-u8-asnprintf1.h, ./tests/unistdio/test-u8-printf1.h, ./tests/unistdio/test-ulc-asnprintf1.h, ./tests/unistdio/test-ulc-printf1.h
+Copyright: 2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/move-if-change
+Copyright: 2007 Free Software Foundation, Inc / 2002-2007 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/pmccabe2html, ./lib/ftell.c, ./tests/test-c-strcasestr.c, ./tests/test-localename.c, ./tests/test-math.c, ./tests/test-strcasestr.c
+Copyright: 2007, 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-fseek.c, ./tests/test-fseeko.c, ./tests/test-ftell.c, ./tests/test-ftello.c, ./tests/test-signbit.c
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/selinux-at.c, ./lib/selinux-at.h, ./lib/signbitf.c, ./lib/signbitl.c, ./tests/test-fcntl-h.c, ./tests/test-locale.c, ./tests/test-stdio.c, ./tests/test-stdlib.c, ./tests/test-string.c, ./tests/test-sys_socket.c, ./tests/test-time.c, ./tests/test-unistd.c
+Copyright: 2007, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-count-one-bits.c
+Copyright: 2007-2008 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./build-aux/mktempd, ./lib/count-one-bits.h, ./lib/float.in.h, ./lib/fpucw.h, ./lib/freadahead.h, ./lib/freading.h, ./lib/freadptr.h, ./lib/freadseek.h, ./lib/freopen.c, ./lib/frexp.c, ./lib/isnan.c, ./lib/isnand-nolibm.h, ./lib/isnanf-nolibm.h, ./lib/isnanl-nolibm.h, ./lib/mbschr.c, ./lib/mbslen.c, ./lib/mbsnlen.c, ./lib/mbsrchr.c, ./lib/mbssep.c, ./lib/search.in.h, ./lib/stdio-impl.h, ./lib/xprintf.h, ./tests/test-byteswap.c, ./tests/test-c-strcasecmp.c, ./tests/test-c-strncasecmp.c, ./tests/test-c-strstr.c, ./tests/test-canonicalize-lgpl.c, ./tests/test-canonicalize.c, ./tests/test-ceilf1.c, ./tests/test-ceilf2.c, ./tests/test-fbufmode.c, ./tests/test-floorf1.c, ./tests/test-floorf2.c, ./tests/test-fprintf-posix.c, ./tests/test-fprintf-posix.h, ./tests/test-freadable.c, ./tests/test-freadahead.c, ./tests/test-freading.c, ./tests/test-freadptr.c, ./tests/test-freadptr2.c, ./tests/test-freopen.c, ./tests/test-frexp.c, ./tests/test-fwritable.c, ./tests/test-fwriting.c, ./tests/test-iconv-utf.c, ./tests/test-iconv.c, ./tests/test-isfinite.c, ./tests/test-isinf.c, ./tests/test-isnand-nolibm.c, ./tests/test-isnand.c, ./tests/test-isnand.h, ./tests/test-isnanf-nolibm.c, ./tests/test-isnanf.c, ./tests/test-isnanf.h, ./tests/test-isnanl.c, ./tests/test-lseek.c, ./tests/test-mbscasecmp.c, ./tests/test-mbscasestr1.c, ./tests/test-mbscasestr2.c, ./tests/test-mbscasestr3.c, ./tests/test-mbscasestr4.c, ./tests/test-mbschr.c, ./tests/test-mbscspn.c, ./tests/test-mbsncasecmp.c, ./tests/test-mbspbrk.c, ./tests/test-mbspcasecmp.c, ./tests/test-mbsrchr.c, ./tests/test-mbsspn.c, ./tests/test-mbsstr1.c, ./tests/test-mbsstr2.c, ./tests/test-mbsstr3.c, ./tests/test-netdb.c, ./tests/test-printf-frexp.c, ./tests/test-printf-frexpl.c, ./tests/test-printf-posix.c, ./tests/test-printf-posix.h, ./tests/test-round2.c, ./tests/test-sleep.c, ./tests/test-snprintf-posix.c, ./tests/test-snprintf.c, ./tests/test-sprintf-posix.c, ./tests/test-stat-time.c, ./tests/test-striconv.c, ./tests/test-striconveha.c, ./tests/test-sys_stat.c, ./tests/test-trunc1.c, ./tests/test-trunc2.c, ./tests/test-truncf1.c, ./tests/test-truncf2.c, ./tests/test-vasnprintf-posix2.c, ./tests/test-vasnprintf.c, ./tests/test-vasprintf.c, ./tests/test-vfprintf-posix.c, ./tests/test-vprintf-posix.c, ./tests/test-vsnprintf-posix.c, ./tests/test-vsnprintf.c, ./tests/test-vsprintf-posix.c, ./tests/test-wcwidth.c, ./tests/test-xfprintf-posix.c, ./tests/test-xprintf-posix.c, ./tests/test-xvasprintf.c, ./tests/uniconv/test-u16-strconv-to-enc.c, ./tests/uniconv/test-u32-strconv-to-enc.c, ./tests/uniconv/test-u8-strconv-to-enc.c, ./tests/unictype/test-bidi_byname.c, ./tests/unictype/test-bidi_name.c, ./tests/unictype/test-bidi_of.c, ./tests/unictype/test-bidi_test.c, ./tests/unictype/test-block_list.c, ./tests/unictype/test-block_of.c, ./tests/unictype/test-block_test.c, ./tests/unictype/test-categ_and.c, ./tests/unictype/test-categ_and_not.c, ./tests/unictype/test-categ_byname.c, ./tests/unictype/test-categ_name.c, ./tests/unictype/test-categ_none.c, ./tests/unictype/test-categ_of.c, ./tests/unictype/test-categ_or.c, ./tests/unictype/test-categ_test_withtable.c, ./tests/unictype/test-combining.c, ./tests/unictype/test-mirror.c, ./tests/unictype/test-numeric.c, ./tests/unictype/test-pr_test.c, ./tests/unictype/test-predicate-part1.h, ./tests/unictype/test-scripts.c, ./tests/unictype/test-sy_c_ident.c, ./tests/unictype/test-sy_java_ident.c, ./tests/unistdio/test-u16-asnprintf1.c, ./tests/unistdio/test-u16-vasnprintf1.c, ./tests/unistdio/test-u16-vasnprintf2.c, ./tests/unistdio/test-u16-vasnprintf3.c, ./tests/unistdio/test-u16-vasprintf1.c, ./tests/unistdio/test-u32-asnprintf1.c, ./tests/unistdio/test-u32-vasnprintf1.c, ./tests/unistdio/test-u32-vasnprintf2.c, ./tests/unistdio/test-u32-vasnprintf3.c, ./tests/unistdio/test-u32-vasprintf1.c, ./tests/unistdio/test-u8-asnprintf1.c, ./tests/unistdio/test-u8-vasnprintf1.c, ./tests/unistdio/test-u8-vasnprintf2.c, ./tests/unistdio/test-u8-vasnprintf3.c, ./tests/unistdio/test-u8-vasprintf1.c, ./tests/unistdio/test-ulc-asnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf2.c, ./tests/unistdio/test-ulc-vasnprintf3.c, ./tests/unistdio/test-ulc-vasprintf1.c, ./tests/uniwidth/test-u16-strwidth.c, ./tests/uniwidth/test-u16-width.c, ./tests/uniwidth/test-u32-strwidth.c, ./tests/uniwidth/test-u32-width.c, ./tests/uniwidth/test-u8-strwidth.c, ./tests/uniwidth/test-u8-width.c, ./tests/uniwidth/test-uc_width.c, ./tests/uniwidth/test-uc_width2.c
+Copyright: 2007-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/fbufmode.c, ./lib/fflush.c, ./lib/fopen.c, ./lib/fpurge.c, ./lib/freadable.c, ./lib/freadahead.c, ./lib/freading.c, ./lib/freadptr.c, ./lib/freadseek.c, ./lib/fseterr.c, ./lib/fwritable.c, ./lib/fwriting.c, ./lib/locale.in.h, ./lib/open.c, ./lib/signbitd.c, ./lib/strerror.c, ./tests/nan.h, ./tests/test-bitrotate.c, ./tests/test-ceill.c, ./tests/test-dprintf-posix.c, ./tests/test-fcntl-safer.c, ./tests/test-floorl.c, ./tests/test-fopen-safer.c, ./tests/test-fopen.c, ./tests/test-fopen.h, ./tests/test-fpurge.c, ./tests/test-freadseek.c, ./tests/test-frexpl.c, ./tests/test-fstrcmp.c, ./tests/test-isnan.c, ./tests/test-isnanl.h, ./tests/test-ldexpl.c, ./tests/test-mbmemcasecmp.c, ./tests/test-mbmemcasecmp.h, ./tests/test-mbmemcasecoll.c, ./tests/test-open.c, ./tests/test-open.h, ./tests/test-snprintf-posix.h, ./tests/test-sprintf-posix.h, ./tests/test-striconveh.c, ./tests/test-sys_select.c, ./tests/test-truncl.c, ./tests/test-vasnprintf-posix.c, ./tests/test-vasprintf-posix.c, ./tests/test-vdprintf-posix.c, ./tests/test-wchar.c, ./tests/test-wctype.c, ./tests/unicase/test-locale-language.c, ./tests/unicase/test-mapping-part1.h, ./tests/unicase/test-predicate-part1.h, ./tests/uniconv/test-u16-conv-from-enc.c, ./tests/uniconv/test-u16-conv-to-enc.c, ./tests/uniconv/test-u16-strconv-from-enc.c, ./tests/uniconv/test-u32-conv-from-enc.c, ./tests/uniconv/test-u32-conv-to-enc.c, ./tests/uniconv/test-u32-strconv-from-enc.c, ./tests/uniconv/test-u8-conv-from-enc.c, ./tests/uniconv/test-u8-conv-to-enc.c, ./tests/uniconv/test-u8-strconv-from-enc.c, ./tests/unictype/test-pr_byname.c, ./tests/unistdio/test-u16-vsnprintf1.c, ./tests/unistdio/test-u16-vsprintf1.c, ./tests/unistdio/test-u32-vsnprintf1.c, ./tests/unistdio/test-u32-vsprintf1.c, ./tests/unistdio/test-u8-vsnprintf1.c, ./tests/unistdio/test-u8-vsprintf1.c, ./tests/unistdio/test-ulc-vsnprintf1.c, ./tests/unistdio/test-ulc-vsprintf1.c
+Copyright: 2007-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/ncftpput-ftp, ./tests/test-rawmemchr.c, ./tests/test-strchrnul.c, ./tests/test-strtod.c
+Copyright: 2008 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/accept.c, ./lib/bind.c, ./lib/btowc.c, ./lib/connect.c, ./lib/fclose.c, ./lib/getpeername.c, ./lib/getsockname.c, ./lib/isnand.c, ./lib/listen.c, ./lib/mbsinit.c, ./lib/mbsnrtowcs.c, ./lib/mbsrtowcs.c, ./lib/memchr2.h, ./lib/parse-duration.c, ./lib/parse-duration.h, ./lib/perror.c, ./lib/rawmemchr.c, ./lib/recv.c, ./lib/recvfrom.c, ./lib/sched.in.h, ./lib/send.c, ./lib/sendto.c, ./lib/shutdown.c, ./lib/sig-handler.h, ./lib/sigaction.c, ./lib/sigpipe-die.c, ./lib/sigpipe-die.h, ./lib/w32sock.h, ./lib/wcrtomb.c, ./lib/wcsnrtombs.c, ./lib/wcsrtombs.c, ./lib/wctob.c, ./lib/xmemdup0.c, ./lib/xmemdup0.h, ./tests/test-cond.c, ./tests/test-copy-acl.c, ./tests/test-copy-file.c, ./tests/test-environ.c, ./tests/test-errno.c, ./tests/test-getdtablesize.c, ./tests/test-lstat.c, ./tests/test-mbrtowc.c, ./tests/test-mbsinit.c, ./tests/test-mbsnrtowcs.c, ./tests/test-mbsrtowcs.c, ./tests/test-random_r.c, ./tests/test-sameacls.c, ./tests/test-select-fd.c, ./tests/test-select-stdin.c, ./tests/test-set-mode-acl.c, ./tests/test-sigaction.c, ./tests/test-sys_times.c, ./tests/test-times.c, ./tests/test-vc-list-files-cvs.sh, ./tests/test-wcrtomb.c, ./tests/test-wcsnrtombs.c, ./tests/test-wcsrtombs.c, ./tests/unilbrk/test-u16-possible-linebreaks.c, ./tests/unilbrk/test-u16-width-linebreaks.c, ./tests/unilbrk/test-u32-possible-linebreaks.c, ./tests/unilbrk/test-u32-width-linebreaks.c, ./tests/unilbrk/test-u8-possible-linebreaks.c, ./tests/unilbrk/test-u8-width-linebreaks.c, ./tests/unilbrk/test-ulc-possible-linebreaks.c, ./tests/unilbrk/test-ulc-width-linebreaks.c
+Copyright: 2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-gethostname.c, ./tests/test-sockets.c
+Copyright: 2008, 2009 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./build-aux/gitlog-to-changelog, ./build-aux/useless-if-before-free, ./lib/bitrotate.h, ./lib/ioctl.c, ./lib/sockets.h, ./tests/test-posix_spawn1.c, ./tests/test-posix_spawn2.c, ./tests/test-posix_spawn3.c, ./tests/test-vc-list-files-git.sh
+Copyright: 2008, 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-memchr.c, ./tests/test-memchr2.c, ./tests/test-memcmp.c, ./tests/test-memrchr.c
+Copyright: 2008-2009 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/argv-iter.c, ./lib/argv-iter.h, ./lib/close.c, ./lib/getdtablesize.c, ./lib/getsockopt.c, ./lib/ignore-value.h, ./lib/mbsrtowcs-state.c, ./lib/setsockopt.c, ./lib/socket.c, ./lib/sockets.c, ./lib/stdio-write.c, ./lib/wcsrtombs-state.c, ./lib/write.c, ./tests/test-argv-iter.c, ./tests/test-fflush2.c, ./tests/test-file-has-acl.c, ./tests/test-func.c, ./tests/test-obstack-printf.c, ./tests/test-parse-duration.c, ./tests/test-sched.c, ./tests/test-select.c
+Copyright: 2008-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/filevercmp.c, ./lib/filevercmp.h
+Copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+License: GPL-3+ 
+
+Files: ./tests/test-hash.c
+Copyright: 2009 Free Software Foundation
+License: GPL-3+ 
+
+Files: ./lib/argp-version-etc.c, ./lib/argp-version-etc.h, ./lib/dirent--.h, ./lib/dirent-safer.h, ./lib/dprintf.c, ./lib/faccessat.c, ./lib/idpriv-drop.c, ./lib/idpriv-droptemp.c, ./lib/idpriv.h, ./lib/opendir-safer.c, ./lib/pipe-filter.h, ./lib/popen-safer.c, ./lib/popen.c, ./lib/priv-set.c, ./lib/priv-set.h, ./lib/symlinkat.c, ./lib/uname.c, ./lib/vdprintf.c, ./lib/xstriconveh.c, ./tests/test-alignof.c, ./tests/test-argp-version-etc.c, ./tests/test-dirent-safer.c, ./tests/test-dup2.c, ./tests/test-dup3.c, ./tests/test-exclude.c, ./tests/test-exclude1.sh, ./tests/test-exclude2.sh, ./tests/test-exclude3.sh, ./tests/test-exclude4.sh, ./tests/test-exclude5.sh, ./tests/test-exclude6.sh, ./tests/test-exclude7.sh, ./tests/test-fchdir.c, ./tests/test-fdopendir.c, ./tests/test-fnmatch.c, ./tests/test-getopt.c, ./tests/test-getopt.h, ./tests/test-getopt_long.h, ./tests/test-glob.c, ./tests/test-idpriv-drop.c, ./tests/test-idpriv-droptemp.c, ./tests/test-openat-safer.c, ./tests/test-pipe-filter-gi1.c, ./tests/test-pipe-filter-gi2-child.c, ./tests/test-pipe-filter-gi2-main.c, ./tests/test-pipe-filter-gi2.sh, ./tests/test-pipe-filter-ii1.c, ./tests/test-pipe-filter-ii2-child.c, ./tests/test-pipe-filter-ii2-main.c, ./tests/test-pipe-filter-ii2.sh, ./tests/test-popen-safer.c, ./tests/test-popen-safer2.c, ./tests/test-popen.c, ./tests/test-popen.h, ./tests/test-priv-set.c, ./tests/test-signal.c, ./tests/test-stddef.c, ./tests/test-symlinkat.c, ./tests/test-sys_utsname.c, ./tests/test-u64.c, ./tests/test-uname.c, ./tests/test-version-etc.c, ./tests/unicase/test-casecmp.h, ./tests/unicase/test-is-cased.h, ./tests/unicase/test-is-casefolded.h, ./tests/unicase/test-is-lowercase.h, ./tests/unicase/test-is-titlecase.h, ./tests/unicase/test-is-uppercase.h, ./tests/unicase/test-u16-casecmp.c, ./tests/unicase/test-u16-casecoll.c, ./tests/unicase/test-u16-casefold.c, ./tests/unicase/test-u16-is-cased.c, ./tests/unicase/test-u16-is-casefolded.c, ./tests/unicase/test-u16-is-lowercase.c, ./tests/unicase/test-u16-is-titlecase.c, ./tests/unicase/test-u16-is-uppercase.c, ./tests/unicase/test-u16-tolower.c, ./tests/unicase/test-u16-totitle.c, ./tests/unicase/test-u16-toupper.c, ./tests/unicase/test-u32-casecmp.c, ./tests/unicase/test-u32-casecoll.c, ./tests/unicase/test-u32-casefold.c, ./tests/unicase/test-u32-is-cased.c, ./tests/unicase/test-u32-is-casefolded.c, ./tests/unicase/test-u32-is-lowercase.c, ./tests/unicase/test-u32-is-titlecase.c, ./tests/unicase/test-u32-is-uppercase.c, ./tests/unicase/test-u32-tolower.c, ./tests/unicase/test-u32-totitle.c, ./tests/unicase/test-u32-toupper.c, ./tests/unicase/test-u8-casecmp.c, ./tests/unicase/test-u8-casecoll.c, ./tests/unicase/test-u8-casefold.c, ./tests/unicase/test-u8-is-cased.c, ./tests/unicase/test-u8-is-casefolded.c, ./tests/unicase/test-u8-is-lowercase.c, ./tests/unicase/test-u8-is-titlecase.c, ./tests/unicase/test-u8-is-uppercase.c, ./tests/unicase/test-u8-tolower.c, ./tests/unicase/test-u8-totitle.c, ./tests/unicase/test-u8-toupper.c, ./tests/unicase/test-ulc-casecmp.c, ./tests/unicase/test-ulc-casecoll.c, ./tests/uninorm/test-canonical-decomposition.c, ./tests/uninorm/test-compat-decomposition.c, ./tests/uninorm/test-composition.c, ./tests/uninorm/test-decomposing-form.c, ./tests/uninorm/test-decomposition.c, ./tests/uninorm/test-nfc.c, ./tests/uninorm/test-nfd.c, ./tests/uninorm/test-nfkc.c, ./tests/uninorm/test-nfkd.c, ./tests/uninorm/test-u16-nfc.c, ./tests/uninorm/test-u16-nfd.c, ./tests/uninorm/test-u16-nfkc.c, ./tests/uninorm/test-u16-nfkd.c, ./tests/uninorm/test-u16-normcmp.c, ./tests/uninorm/test-u16-normcmp.h, ./tests/uninorm/test-u16-normcoll.c, ./tests/uninorm/test-u32-nfc-big.c, ./tests/uninorm/test-u32-nfc.c, ./tests/uninorm/test-u32-nfd-big.c, ./tests/uninorm/test-u32-nfd.c, ./tests/uninorm/test-u32-nfkc-big.c, ./tests/uninorm/test-u32-nfkc.c, ./tests/uninorm/test-u32-nfkd-big.c, ./tests/uninorm/test-u32-nfkd.c, ./tests/uninorm/test-u32-normalize-big.c, ./tests/uninorm/test-u32-normalize-big.h, ./tests/uninorm/test-u32-normcmp.c, ./tests/uninorm/test-u32-normcmp.h, ./tests/uninorm/test-u32-normcoll.c, ./tests/uninorm/test-u8-nfc.c, ./tests/uninorm/test-u8-nfd.c, ./tests/uninorm/test-u8-nfkc.c, ./tests/uninorm/test-u8-nfkd.c, ./tests/uninorm/test-u8-normcmp.c, ./tests/uninorm/test-u8-normcmp.h, ./tests/uninorm/test-u8-normcoll.c, ./tests/uninorm/test-uninorm-filter-nfc.c, ./tests/uniwbrk/test-u16-wordbreaks.c, ./tests/uniwbrk/test-u32-wordbreaks.c, ./tests/uniwbrk/test-u8-wordbreaks.c, ./tests/uniwbrk/test-ulc-wordbreaks.c, ./tests/zerosize-ptr.h
+Copyright: 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/gendocs.sh
+Copyright: 2009 Free Software Foundation, Inc / 2003, 2004, 2005, 2006, 2007, 2008, 2009
+License: GPL-3+ 
+
+Files: ./tests/unicase/test-mapping-part2.h
+Copyright: == c); / == mapping[i].value); / 2007-2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/unictype/test-decdigit.c, ./tests/unictype/test-digit.c
+Copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./tests/test-argp-version-etc-1.sh, ./tests/test-version-etc.sh
+Copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./lib/mbsstr.c
+Copyright: c / 2005-2008 Free Software Foundation, Inc
+License: GPL-3+ 
+
+Files: ./build-aux/config.libpath
+Copyright: 1996-2008 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./lib/uniwbrk/wbrkprop.h
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./lib/unilbrk/lbrkprop1.h, ./lib/unilbrk/lbrkprop2.h
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./build-aux/reloc-ldflags
+Copyright: 2003 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unicase/test-cased.c, ./tests/unicase/test-ignorable.c, ./tests/unictype/test-categ_C.c, ./tests/unictype/test-categ_Cn.c, ./tests/unictype/test-categ_L.c, ./tests/unictype/test-categ_Ll.c, ./tests/unictype/test-categ_Lo.c, ./tests/unictype/test-categ_Lu.c, ./tests/unictype/test-categ_M.c, ./tests/unictype/test-categ_Mc.c, ./tests/unictype/test-categ_Mn.c, ./tests/unictype/test-categ_N.c, ./tests/unictype/test-categ_P.c, ./tests/unictype/test-categ_Pe.c, ./tests/unictype/test-categ_Po.c, ./tests/unictype/test-categ_Ps.c, ./tests/unictype/test-categ_S.c, ./tests/unictype/test-categ_Sm.c, ./tests/unictype/test-categ_So.c, ./tests/unictype/test-ctype_alnum.c, ./tests/unictype/test-ctype_alpha.c, ./tests/unictype/test-ctype_graph.c, ./tests/unictype/test-ctype_lower.c, ./tests/unictype/test-ctype_print.c, ./tests/unictype/test-ctype_punct.c, ./tests/unictype/test-ctype_upper.c, ./tests/unictype/test-pr_alphabetic.c, ./tests/unictype/test-pr_bidi_left_to_right.c, ./tests/unictype/test-pr_bidi_non_spacing_mark.c, ./tests/unictype/test-pr_bidi_other_neutral.c, ./tests/unictype/test-pr_combining.c, ./tests/unictype/test-pr_composite.c, ./tests/unictype/test-pr_diacritic.c, ./tests/unictype/test-pr_grapheme_base.c, ./tests/unictype/test-pr_grapheme_extend.c, ./tests/unictype/test-pr_id_continue.c, ./tests/unictype/test-pr_id_start.c, ./tests/unictype/test-pr_left_of_pair.c, ./tests/unictype/test-pr_lowercase.c, ./tests/unictype/test-pr_math.c, ./tests/unictype/test-pr_numeric.c, ./tests/unictype/test-pr_other_alphabetic.c, ./tests/unictype/test-pr_other_math.c, ./tests/unictype/test-pr_punctuation.c, ./tests/unictype/test-pr_terminal_punctuation.c, ./tests/unictype/test-pr_unassigned_code_value.c, ./tests/unictype/test-pr_uppercase.c, ./tests/unictype/test-pr_xid_continue.c, ./tests/unictype/test-pr_xid_start.c
+Copyright: 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-ctype_blank.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_blank 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-sy_c_whitespace.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_c_whitespace 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-ctype_cntrl.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_cntrl 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-ctype_digit.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_digit 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Me.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Me)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Nd.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Nd)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_No.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_No)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Pd.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pd)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Pf.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pf)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Sc.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Sc)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Zl.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Zl)
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_arabic_digit.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_arabic_digit 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_block_separator.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_block_separator 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_eur_num_separator.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_eur_num_separator 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_hebrew_right_to_left 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_pdf.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_pdf 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_segment_separator.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_segment_separator 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_whitespace.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_whitespace 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_dash.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_dash 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_decimal_digit.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_decimal_digit 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_deprecated.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_deprecated 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_extender.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_extender 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_format_control.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_format_control 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_grapheme_link.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_grapheme_link 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_hyphen.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_hyphen 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_ids_trinary_operator.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_ids_trinary_operator 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_iso_control.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_iso_control 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_line_separator.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_line_separator 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_other_grapheme_extend.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_other_grapheme_extend 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_other_id_start.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_other_id_start 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_paired_punctuation.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_paired_punctuation 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_paragraph_separator.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_paragraph_separator 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_pattern_syntax.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_pattern_syntax 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_pattern_white_space.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_pattern_white_space 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_quotation_mark.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_quotation_mark 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_space.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_space 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_titlecase.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_titlecase 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_white_space.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_white_space 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_zero_width.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_zero_width 
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-ctype_space.c
+Copyright: 2007 Free Software Foundation, Inc / uc_is_space 
+License: GPL-3+ GENERATED FILE
+
+Files: ./lib/uninorm/composition-table.gperf, ./tests/unicase/test-uc_tolower.c, ./tests/unicase/test-uc_totitle.c, ./tests/unicase/test-uc_toupper.c
+Copyright: 2009 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Cc.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Cc) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Cf.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Cf) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Co.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Co) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Cs.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Cs) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Lm.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Lm) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Lt.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Lt) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Nl.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Nl) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Pc.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Pc) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Pi.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Pi) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Sk.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Sk) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Z.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Z) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Zp.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Zp) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-categ_Zs.c
+Copyright: uc_is_general_category (c, UC_CATEGORY_Zs) / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-sy_java_whitespace.c
+Copyright: uc_is_java_whitespace  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_ascii_hex_digit.c
+Copyright: uc_is_property_ascii_hex_digit  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_arabic_right_to_left.c
+Copyright: uc_is_property_bidi_arabic_right_to_left  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_boundary_neutral.c
+Copyright: uc_is_property_bidi_boundary_neutral  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_common_separator.c
+Copyright: uc_is_property_bidi_common_separator  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_control.c
+Copyright: uc_is_property_bidi_control  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_embedding_or_override.c
+Copyright: uc_is_property_bidi_embedding_or_override  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_eur_num_terminator.c
+Copyright: uc_is_property_bidi_eur_num_terminator  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_bidi_european_digit.c
+Copyright: uc_is_property_bidi_european_digit  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_currency_symbol.c
+Copyright: uc_is_property_currency_symbol  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_default_ignorable_code_point.c
+Copyright: uc_is_property_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_hex_digit.c
+Copyright: uc_is_property_hex_digit  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_ideographic.c
+Copyright: uc_is_property_ideographic  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_ids_binary_operator.c
+Copyright: uc_is_property_ids_binary_operator  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_ignorable_control.c
+Copyright: uc_is_property_ignorable_control  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_join_control.c
+Copyright: uc_is_property_join_control  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_logical_order_exception.c
+Copyright: uc_is_property_logical_order_exception  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_non_break.c
+Copyright: uc_is_property_non_break  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_not_a_character.c
+Copyright: uc_is_property_not_a_character  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_other_default_ignorable_code_point.c
+Copyright: uc_is_property_other_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_other_id_continue.c
+Copyright: uc_is_property_other_id_continue  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_other_lowercase.c
+Copyright: uc_is_property_other_lowercase  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_other_uppercase.c
+Copyright: uc_is_property_other_uppercase  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_private_use.c
+Copyright: uc_is_property_private_use  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_radical.c
+Copyright: uc_is_property_radical  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_sentence_terminal.c
+Copyright: uc_is_property_sentence_terminal  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_soft_dotted.c
+Copyright: uc_is_property_soft_dotted  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_unified_ideograph.c
+Copyright: uc_is_property_unified_ideograph  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-pr_variation_selector.c
+Copyright: uc_is_property_variation_selector  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./tests/unictype/test-ctype_xdigit.c
+Copyright: uc_is_xdigit  / 2007 Free Software Foundation, Inc
+License: GPL-3+ GENERATED FILE
+
+Files: ./lib/inet_ntop.c
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc / 1996-1999 by Internet Software Consortium
+License: ISC GPL 
+
+Files: ./lib/inet_pton.c
+Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc
+License: ISC GPL-3+ 
+
+Files: ./lib/localename.c
+Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc
+License: LGPL 
+
+Files: ./lib/relocatable.h
+Copyright: 2003, 2005, 2008 Free Software Foundation, Inc
+License: LGPL 
+
+Files: ./lib/relocatable.c
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc
+License: LGPL 
+
+Files: ./lib/localename.h
+Copyright: 2007 Free Software Foundation, Inc
+License: LGPL 
+
+Files: ./lib/flock.c, ./lib/fsync.c
+Copyright: 2008 Free Software Foundation, Inc
+License: LGPL-2.1+ 
+
+Files: ./lib/strsignal.c
+Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/atoll.c
+Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/glob-libc.h
+Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/glob.c
+Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/argz.in.h
+Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/siglist.h
+Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./lib/safe-alloc.c, ./lib/safe-alloc.h, ./tests/test-safe-alloc.c
+Copyright: 2009 Free Software Foundation, Inc
+License: LGPL-2.1+ (with incorrect FSF address) 
+
+Files: ./tests/test-tsearch.c
+Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistdio/u-printf-parse.h
+Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistdio/u-asnprintf.h, ./lib/unistdio/u-asprintf.h, ./lib/unistdio/u-printf-args.h, ./lib/unistdio/u-snprintf.h, ./lib/unistdio/u-sprintf.h, ./lib/unistdio/u16-asnprintf.c, ./lib/unistdio/u16-asprintf.c, ./lib/unistdio/u16-snprintf.c, ./lib/unistdio/u16-sprintf.c, ./lib/unistdio/u16-u16-asnprintf.c, ./lib/unistdio/u16-u16-asprintf.c, ./lib/unistdio/u16-u16-snprintf.c, ./lib/unistdio/u16-u16-sprintf.c, ./lib/unistdio/u32-asnprintf.c, ./lib/unistdio/u32-asprintf.c, ./lib/unistdio/u32-snprintf.c, ./lib/unistdio/u32-sprintf.c, ./lib/unistdio/u32-u32-asnprintf.c, ./lib/unistdio/u32-u32-asprintf.c, ./lib/unistdio/u32-u32-snprintf.c, ./lib/unistdio/u32-u32-sprintf.c, ./lib/unistdio/u8-asnprintf.c, ./lib/unistdio/u8-asprintf.c, ./lib/unistdio/u8-snprintf.c, ./lib/unistdio/u8-sprintf.c, ./lib/unistdio/u8-u8-asnprintf.c, ./lib/unistdio/u8-u8-asprintf.c, ./lib/unistdio/u8-u8-snprintf.c, ./lib/unistdio/u8-u8-sprintf.c, ./lib/unistdio/ulc-asnprintf.c, ./lib/unistdio/ulc-snprintf.c, ./lib/unistdio/ulc-sprintf.c
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr/u-cpy.h, ./lib/unistr/u-move.h, ./lib/unistr/u-set.h, ./lib/unistr/u-stpcpy.h, ./lib/unistr/u-stpncpy.h, ./lib/unistr/u-strcat.h, ./lib/unistr/u-strcpy.h, ./lib/unistr/u-strcspn.h, ./lib/unistr/u-strlen.h, ./lib/unistr/u-strncat.h, ./lib/unistr/u-strncpy.h, ./lib/unistr/u-strnlen.h, ./lib/unistr/u-strpbrk.h, ./lib/unistr/u-strspn.h, ./lib/unistr/u-strstr.h, ./lib/unistr/u-strtok.h, ./lib/unistr/u16-cmp.c, ./lib/unistr/u16-cpy-alloc.c, ./lib/unistr/u16-cpy.c, ./lib/unistr/u16-move.c, ./lib/unistr/u16-set.c, ./lib/unistr/u16-stpncpy.c, ./lib/unistr/u16-strcat.c, ./lib/unistr/u16-strcmp.c, ./lib/unistr/u16-strcpy.c, ./lib/unistr/u16-strcspn.c, ./lib/unistr/u16-strdup.c, ./lib/unistr/u16-strlen.c, ./lib/unistr/u16-strncat.c, ./lib/unistr/u16-strncmp.c, ./lib/unistr/u16-strncpy.c, ./lib/unistr/u16-strnlen.c, ./lib/unistr/u16-strpbrk.c, ./lib/unistr/u16-strspn.c, ./lib/unistr/u16-strstr.c, ./lib/unistr/u16-strtok.c, ./lib/unistr/u32-chr.c, ./lib/unistr/u32-cmp.c, ./lib/unistr/u32-cpy-alloc.c, ./lib/unistr/u32-cpy.c, ./lib/unistr/u32-move.c, ./lib/unistr/u32-set.c, ./lib/unistr/u32-stpcpy.c, ./lib/unistr/u32-stpncpy.c, ./lib/unistr/u32-strcat.c, ./lib/unistr/u32-strchr.c, ./lib/unistr/u32-strcmp.c, ./lib/unistr/u32-strcpy.c, ./lib/unistr/u32-strcspn.c, ./lib/unistr/u32-strdup.c, ./lib/unistr/u32-strlen.c, ./lib/unistr/u32-strncat.c, ./lib/unistr/u32-strncmp.c, ./lib/unistr/u32-strncpy.c, ./lib/unistr/u32-strnlen.c, ./lib/unistr/u32-strpbrk.c, ./lib/unistr/u32-strrchr.c, ./lib/unistr/u32-strspn.c, ./lib/unistr/u32-strstr.c, ./lib/unistr/u32-strtok.c, ./lib/unistr/u8-stpcpy.c, ./lib/unistr/u8-stpncpy.c, ./lib/unistr/u8-strcspn.c, ./lib/unistr/u8-strnlen.c, ./lib/unistr/u8-strpbrk.c, ./lib/unistr/u8-strspn.c, ./lib/unistr/u8-strstr.c, ./lib/unistr/u8-strtok.c
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistdio/u-printf-args.c, ./lib/unistdio/u16-u16-vasnprintf.c, ./lib/unistdio/u16-u16-vasprintf.c, ./lib/unistdio/u16-u16-vsnprintf.c, ./lib/unistdio/u16-u16-vsprintf.c, ./lib/unistdio/u16-vasnprintf.c, ./lib/unistdio/u16-vasprintf.c, ./lib/unistdio/u16-vsnprintf.c, ./lib/unistdio/u16-vsprintf.c, ./lib/unistdio/u32-u32-vasnprintf.c, ./lib/unistdio/u32-u32-vasprintf.c, ./lib/unistdio/u32-u32-vsnprintf.c, ./lib/unistdio/u32-u32-vsprintf.c, ./lib/unistdio/u32-vasnprintf.c, ./lib/unistdio/u32-vasprintf.c, ./lib/unistdio/u32-vsnprintf.c, ./lib/unistdio/u32-vsprintf.c, ./lib/unistdio/u8-u8-vasnprintf.c, ./lib/unistdio/u8-u8-vasprintf.c, ./lib/unistdio/u8-u8-vsnprintf.c, ./lib/unistdio/u8-u8-vsprintf.c, ./lib/unistdio/u8-vasnprintf.c, ./lib/unistdio/u8-vasprintf.c, ./lib/unistdio/u8-vsnprintf.c, ./lib/unistdio/u8-vsprintf.c, ./lib/unistdio/ulc-asprintf.c, ./lib/unistdio/ulc-vasnprintf.c, ./lib/unistdio/ulc-vasprintf.c, ./lib/unistdio/ulc-vsnprintf.c, ./lib/unistdio/ulc-vsprintf.c, ./lib/unistr/u-strdup.h, ./lib/unistr/u16-chr.c, ./lib/unistr/u16-stpcpy.c, ./lib/unistr/u16-strchr.c, ./lib/unistr/u16-strrchr.c, ./lib/unistr/u8-chr.c, ./lib/unistr/u8-strchr.c, ./lib/unistr/u8-strrchr.c
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr/u-cpy-alloc.h
+Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistdio/u-vasprintf.h, ./lib/unistdio/u-vsnprintf.h, ./lib/unistdio/u-vsprintf.h
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistdio/u16-printf-parse.c, ./lib/unistdio/u32-printf-parse.c, ./lib/unistdio/u8-printf-parse.c, ./lib/unistdio/ulc-printf-parse.c, ./lib/unistr/u16-mblen.c, ./lib/unistr/u16-strmblen.c, ./lib/unistr/u16-strmbtouc.c, ./lib/unistr/u8-mblen.c, ./lib/unistr/u8-strmblen.c, ./lib/unistr/u8-strmbtouc.c
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr/u16-mbtoucr.c, ./lib/unistr/u8-mbtoucr.c
+Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr/u16-mbtouc-unsafe.c, ./lib/unistr/u16-mbtouc.c, ./lib/unistr/u8-mbtouc-unsafe.c, ./lib/unistr/u8-mbtouc.c
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniname.h
+Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unictype/bitmap.h, ./lib/unictype/identsyntaxmap.h
+Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniname/uniname.c
+Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/mbmemcasecoll.c, ./lib/mbmemcasecoll.h
+Copyright: 2001, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniwidth.h
+Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniwidth/cjk.h
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr.h
+Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniwidth/u16-strwidth.c, ./lib/uniwidth/u32-strwidth.c, ./lib/uniwidth/u32-width.c, ./lib/uniwidth/u8-strwidth.c
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniwidth/u16-width.c, ./lib/uniwidth/u8-width.c
+Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr/u16-mbtouc-aux.c, ./lib/unistr/u16-mbtouc-unsafe-aux.c, ./lib/unistr/u8-mbtouc-aux.c, ./lib/unistr/u8-mbtouc-unsafe-aux.c
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniwidth/width.c
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/c-strcaseeq.h, ./lib/streq.h
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uninorm.h
+Copyright: 2001-2002, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unilbrk.h
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniwbrk.h
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unilbrk/lbrktables.h, ./lib/unilbrk/u16-width-linebreaks.c, ./lib/unilbrk/u32-width-linebreaks.c, ./lib/unilbrk/u8-width-linebreaks.c, ./lib/unilbrk/ulc-common.h
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unilbrk/lbrktables.c, ./lib/unilbrk/u16-possible-linebreaks.c, ./lib/unilbrk/u32-possible-linebreaks.c, ./lib/unilbrk/u8-possible-linebreaks.c, ./lib/unilbrk/ulc-possible-linebreaks.c, ./lib/unilbrk/ulc-width-linebreaks.c, ./lib/uniwbrk/ulc-wordbreaks.c, ./lib/uniwbrk/wordbreak-property.c
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uninorm/decomposition-table.h
+Copyright: 2001-2003, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniconv.h
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unitypes.h
+Copyright: 2002, 2005-2006 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unistr/u16-uctomb.c, ./lib/unistr/u32-uctomb.c, ./lib/unistr/u8-uctomb.c
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unictype/pr_test.c, ./lib/unistdio.h
+Copyright: 2002, 2005-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unictype.h
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unictype/bidi_byname.c, ./lib/unictype/bidi_name.c, ./lib/unictype/bidi_of.c, ./lib/unictype/bidi_test.c, ./lib/unictype/combining.c, ./lib/unictype/decdigit.c, ./lib/unictype/digit.c, ./lib/unictype/mirror.c, ./lib/unistr/u-endswith.h, ./lib/unistr/u-startswith.h, ./lib/unistr/u16-endswith.c, ./lib/unistr/u16-next.c, ./lib/unistr/u16-startswith.c, ./lib/unistr/u32-check.c, ./lib/unistr/u32-endswith.c, ./lib/unistr/u32-startswith.c, ./lib/unistr/u8-cmp.c, ./lib/unistr/u8-cpy-alloc.c, ./lib/unistr/u8-cpy.c, ./lib/unistr/u8-endswith.c, ./lib/unistr/u8-move.c, ./lib/unistr/u8-next.c, ./lib/unistr/u8-set.c, ./lib/unistr/u8-startswith.c, ./lib/unistr/u8-strcat.c, ./lib/unistr/u8-strcmp.c, ./lib/unistr/u8-strcpy.c, ./lib/unistr/u8-strdup.c, ./lib/unistr/u8-strlen.c, ./lib/unistr/u8-strncat.c, ./lib/unistr/u8-strncmp.c, ./lib/unistr/u8-strncpy.c
+Copyright: 2002, 2006 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unicase/simple-mapping.h, ./lib/unicase/tocasefold.c, ./lib/unicase/tolower.c, ./lib/unicase/totitle.c, ./lib/unicase/toupper.c, ./lib/uninorm/composition.c
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniconv/u-strconv-to-enc.h, ./lib/uniconv/u16-conv-from-enc.c, ./lib/uniconv/u16-strconv-from-enc.c, ./lib/uniconv/u16-strconv-from-locale.c, ./lib/uniconv/u16-strconv-to-enc.c, ./lib/uniconv/u16-strconv-to-locale.c, ./lib/uniconv/u32-conv-from-enc.c, ./lib/uniconv/u32-conv-to-enc.c, ./lib/uniconv/u32-strconv-from-enc.c, ./lib/uniconv/u32-strconv-from-locale.c, ./lib/uniconv/u32-strconv-to-enc.c, ./lib/uniconv/u32-strconv-to-locale.c, ./lib/uniconv/u8-strconv-from-enc.c, ./lib/uniconv/u8-strconv-from-locale.c, ./lib/uniconv/u8-strconv-to-enc.c, ./lib/uniconv/u8-strconv-to-locale.c, ./lib/unictype/categ_C.c, ./lib/unictype/categ_Cc.c, ./lib/unictype/categ_Cf.c, ./lib/unictype/categ_Cn.c, ./lib/unictype/categ_Co.c, ./lib/unictype/categ_Cs.c, ./lib/unictype/categ_L.c, ./lib/unictype/categ_Ll.c, ./lib/unictype/categ_Lm.c, ./lib/unictype/categ_Lo.c, ./lib/unictype/categ_Lt.c, ./lib/unictype/categ_Lu.c, ./lib/unictype/categ_M.c, ./lib/unictype/categ_Mc.c, ./lib/unictype/categ_Me.c, ./lib/unictype/categ_Mn.c, ./lib/unictype/categ_N.c, ./lib/unictype/categ_Nd.c, ./lib/unictype/categ_Nl.c, ./lib/unictype/categ_No.c, ./lib/unictype/categ_P.c, ./lib/unictype/categ_Pc.c, ./lib/unictype/categ_Pd.c, ./lib/unictype/categ_Pe.c, ./lib/unictype/categ_Pf.c, ./lib/unictype/categ_Pi.c, ./lib/unictype/categ_Po.c, ./lib/unictype/categ_Ps.c, ./lib/unictype/categ_S.c, ./lib/unictype/categ_Sc.c, ./lib/unictype/categ_Sk.c, ./lib/unictype/categ_Sm.c, ./lib/unictype/categ_So.c, ./lib/unictype/categ_Z.c, ./lib/unictype/categ_Zl.c, ./lib/unictype/categ_Zp.c, ./lib/unictype/categ_Zs.c, ./lib/unictype/categ_byname.c, ./lib/unictype/categ_name.c, ./lib/unictype/categ_of.c, ./lib/unictype/categ_test.c, ./lib/unictype/ctype_alnum.c, ./lib/unictype/ctype_alpha.c, ./lib/unictype/ctype_blank.c, ./lib/unictype/ctype_cntrl.c, ./lib/unictype/ctype_digit.c, ./lib/unictype/ctype_graph.c, ./lib/unictype/ctype_lower.c, ./lib/unictype/ctype_print.c, ./lib/unictype/ctype_punct.c, ./lib/unictype/ctype_space.c, ./lib/unictype/ctype_upper.c, ./lib/unictype/ctype_xdigit.c, ./lib/unictype/numeric.c, ./lib/unictype/pr_alphabetic.c, ./lib/unictype/pr_ascii_hex_digit.c, ./lib/unictype/pr_bidi_arabic_digit.c, ./lib/unictype/pr_bidi_arabic_right_to_left.c, ./lib/unictype/pr_bidi_block_separator.c, ./lib/unictype/pr_bidi_boundary_neutral.c, ./lib/unictype/pr_bidi_common_separator.c, ./lib/unictype/pr_bidi_control.c, ./lib/unictype/pr_bidi_embedding_or_override.c, ./lib/unictype/pr_bidi_eur_num_separator.c, ./lib/unictype/pr_bidi_eur_num_terminator.c, ./lib/unictype/pr_bidi_european_digit.c, ./lib/unictype/pr_bidi_hebrew_right_to_left.c, ./lib/unictype/pr_bidi_left_to_right.c, ./lib/unictype/pr_bidi_non_spacing_mark.c, ./lib/unictype/pr_bidi_other_neutral.c, ./lib/unictype/pr_bidi_pdf.c, ./lib/unictype/pr_bidi_segment_separator.c, ./lib/unictype/pr_bidi_whitespace.c, ./lib/unictype/pr_combining.c, ./lib/unictype/pr_composite.c, ./lib/unictype/pr_currency_symbol.c, ./lib/unictype/pr_dash.c, ./lib/unictype/pr_decimal_digit.c, ./lib/unictype/pr_default_ignorable_code_point.c, ./lib/unictype/pr_deprecated.c, ./lib/unictype/pr_diacritic.c, ./lib/unictype/pr_extender.c, ./lib/unictype/pr_format_control.c, ./lib/unictype/pr_grapheme_base.c, ./lib/unictype/pr_grapheme_extend.c, ./lib/unictype/pr_grapheme_link.c, ./lib/unictype/pr_hex_digit.c, ./lib/unictype/pr_hyphen.c, ./lib/unictype/pr_id_continue.c, ./lib/unictype/pr_id_start.c, ./lib/unictype/pr_ideographic.c, ./lib/unictype/pr_ids_binary_operator.c, ./lib/unictype/pr_ids_trinary_operator.c, ./lib/unictype/pr_ignorable_control.c, ./lib/unictype/pr_iso_control.c, ./lib/unictype/pr_join_control.c, ./lib/unictype/pr_left_of_pair.c, ./lib/unictype/pr_line_separator.c, ./lib/unictype/pr_logical_order_exception.c, ./lib/unictype/pr_lowercase.c, ./lib/unictype/pr_math.c, ./lib/unictype/pr_non_break.c, ./lib/unictype/pr_not_a_character.c, ./lib/unictype/pr_numeric.c, ./lib/unictype/pr_other_alphabetic.c, ./lib/unictype/pr_other_default_ignorable_code_point.c, ./lib/unictype/pr_other_grapheme_extend.c, ./lib/unictype/pr_other_id_continue.c, ./lib/unictype/pr_other_id_start.c, ./lib/unictype/pr_other_lowercase.c, ./lib/unictype/pr_other_math.c, ./lib/unictype/pr_other_uppercase.c, ./lib/unictype/pr_paired_punctuation.c, ./lib/unictype/pr_paragraph_separator.c, ./lib/unictype/pr_pattern_syntax.c, ./lib/unictype/pr_pattern_white_space.c, ./lib/unictype/pr_private_use.c, ./lib/unictype/pr_punctuation.c, ./lib/unictype/pr_quotation_mark.c, ./lib/unictype/pr_radical.c, ./lib/unictype/pr_sentence_terminal.c, ./lib/unictype/pr_soft_dotted.c, ./lib/unictype/pr_space.c, ./lib/unictype/pr_terminal_punctuation.c, ./lib/unictype/pr_titlecase.c, ./lib/unictype/pr_unassigned_code_value.c, ./lib/unictype/pr_unified_ideograph.c, ./lib/unictype/pr_uppercase.c, ./lib/unictype/pr_variation_selector.c, ./lib/unictype/pr_white_space.c, ./lib/unictype/pr_xid_continue.c, ./lib/unictype/pr_xid_start.c, ./lib/unictype/pr_zero_width.c, ./lib/unistr/u16-check.c, ./lib/unistr/u16-prev.c, ./lib/unistr/u16-to-u32.c, ./lib/unistr/u16-to-u8.c, ./lib/unistr/u16-uctomb-aux.c, ./lib/unistr/u32-mblen.c, ./lib/unistr/u32-mbtoucr.c, ./lib/unistr/u32-next.c, ./lib/unistr/u32-prev.c, ./lib/unistr/u32-strmblen.c, ./lib/unistr/u32-strmbtouc.c, ./lib/unistr/u32-to-u16.c, ./lib/unistr/u32-to-u8.c, ./lib/unistr/u8-check.c, ./lib/unistr/u8-prev.c, ./lib/unistr/u8-to-u16.c, ./lib/unistr/u8-to-u32.c, ./lib/unistr/u8-uctomb-aux.c
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unicase/cased.c, ./lib/unicase/ignorable.c, ./lib/uniconv/u-conv-from-enc.h, ./lib/uniconv/u-strconv-from-enc.h, ./lib/uniconv/u8-conv-from-enc.c, ./lib/uniconv/u8-conv-to-enc.c, ./lib/unistr/u32-mbtouc-unsafe.c, ./lib/unistr/u32-mbtouc.c
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniconv/u16-conv-to-enc.c
+Copyright: 2002, 2006-2008 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/uniconv/u-conv-to-enc.h
+Copyright: 2002, 2006-2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unicase.h
+Copyright: 2002, 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unictype/block_test.c, ./lib/unictype/blocks.c, ./lib/unictype/categ_and.c, ./lib/unictype/categ_and_not.c, ./lib/unictype/categ_none.c, ./lib/unictype/categ_or.c, ./lib/unictype/pr_byname.c, ./lib/unictype/scripts.c, ./lib/unictype/sy_c_ident.c, ./lib/unictype/sy_c_whitespace.c, ./lib/unictype/sy_java_ident.c, ./lib/unictype/sy_java_whitespace.c, ./lib/unistr/u16-mbsnlen.c, ./lib/unistr/u32-mbsnlen.c, ./lib/unistr/u8-mbsnlen.c
+Copyright: 2007 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/array-mergesort.h, ./lib/close-hook.c, ./lib/close-hook.h, ./lib/mbmemcasecmp.h, ./lib/memcmp2.c, ./lib/memcmp2.h, ./lib/memxfrm.c, ./lib/memxfrm.h, ./lib/unicase/casefold.h, ./lib/unicase/caseprop.h, ./lib/unicase/context.h, ./lib/unicase/empty-prefix-context.c, ./lib/unicase/empty-suffix-context.c, ./lib/unicase/invariant.h, ./lib/unicase/locale-language.c, ./lib/unicase/special-casing.c, ./lib/unicase/special-casing.h, ./lib/unicase/u-casecmp.h, ./lib/unicase/u-casecoll.h, ./lib/unicase/u-casefold.h, ./lib/unicase/u-casemap.h, ./lib/unicase/u-casexfrm.h, ./lib/unicase/u-ct-casefold.h, ./lib/unicase/u-ct-totitle.h, ./lib/unicase/u-is-cased.h, ./lib/unicase/u-is-invariant.h, ./lib/unicase/u-prefix-context.h, ./lib/unicase/u-suffix-context.h, ./lib/unicase/u-totitle.h, ./lib/unicase/u16-casecmp.c, ./lib/unicase/u16-casecoll.c, ./lib/unicase/u16-casefold.c, ./lib/unicase/u16-casemap.c, ./lib/unicase/u16-casexfrm.c, ./lib/unicase/u16-ct-casefold.c, ./lib/unicase/u16-ct-tolower.c, ./lib/unicase/u16-ct-totitle.c, ./lib/unicase/u16-ct-toupper.c, ./lib/unicase/u16-is-cased.c, ./lib/unicase/u16-is-casefolded.c, ./lib/unicase/u16-is-invariant.c, ./lib/unicase/u16-is-lowercase.c, ./lib/unicase/u16-is-titlecase.c, ./lib/unicase/u16-is-uppercase.c, ./lib/unicase/u16-prefix-context.c, ./lib/unicase/u16-suffix-context.c, ./lib/unicase/u16-tolower.c, ./lib/unicase/u16-totitle.c, ./lib/unicase/u16-toupper.c, ./lib/unicase/u32-casecmp.c, ./lib/unicase/u32-casecoll.c, ./lib/unicase/u32-casefold.c, ./lib/unicase/u32-casemap.c, ./lib/unicase/u32-casexfrm.c, ./lib/unicase/u32-ct-casefold.c, ./lib/unicase/u32-ct-tolower.c, ./lib/unicase/u32-ct-totitle.c, ./lib/unicase/u32-ct-toupper.c, ./lib/unicase/u32-is-cased.c, ./lib/unicase/u32-is-casefolded.c, ./lib/unicase/u32-is-invariant.c, ./lib/unicase/u32-is-lowercase.c, ./lib/unicase/u32-is-titlecase.c, ./lib/unicase/u32-is-uppercase.c, ./lib/unicase/u32-prefix-context.c, ./lib/unicase/u32-suffix-context.c, ./lib/unicase/u32-tolower.c, ./lib/unicase/u32-totitle.c, ./lib/unicase/u32-toupper.c, ./lib/unicase/u8-casecmp.c, ./lib/unicase/u8-casecoll.c, ./lib/unicase/u8-casefold.c, ./lib/unicase/u8-casemap.c, ./lib/unicase/u8-casexfrm.c, ./lib/unicase/u8-ct-casefold.c, ./lib/unicase/u8-ct-tolower.c, ./lib/unicase/u8-ct-totitle.c, ./lib/unicase/u8-ct-toupper.c, ./lib/unicase/u8-is-cased.c, ./lib/unicase/u8-is-casefolded.c, ./lib/unicase/u8-is-invariant.c, ./lib/unicase/u8-is-lowercase.c, ./lib/unicase/u8-is-titlecase.c, ./lib/unicase/u8-is-uppercase.c, ./lib/unicase/u8-prefix-context.c, ./lib/unicase/u8-suffix-context.c, ./lib/unicase/u8-tolower.c, ./lib/unicase/u8-totitle.c, ./lib/unicase/u8-toupper.c, ./lib/unicase/ulc-casecmp.c, ./lib/unicase/ulc-casecoll.c, ./lib/unicase/ulc-casexfrm.c, ./lib/unicase/unicasemap.h, ./lib/uninorm/canonical-decomposition.c, ./lib/uninorm/compat-decomposition.c, ./lib/uninorm/decompose-internal.c, ./lib/uninorm/decompose-internal.h, ./lib/uninorm/decomposing-form.c, ./lib/uninorm/decomposition-table.c, ./lib/uninorm/decomposition.c, ./lib/uninorm/nfc.c, ./lib/uninorm/nfd.c, ./lib/uninorm/nfkc.c, ./lib/uninorm/nfkd.c, ./lib/uninorm/normalize-internal.h, ./lib/uninorm/u-normalize-internal.h, ./lib/uninorm/u-normcmp.h, ./lib/uninorm/u-normcoll.h, ./lib/uninorm/u-normxfrm.h, ./lib/uninorm/u16-normalize.c, ./lib/uninorm/u16-normcmp.c, ./lib/uninorm/u16-normcoll.c, ./lib/uninorm/u16-normxfrm.c, ./lib/uninorm/u32-normalize.c, ./lib/uninorm/u32-normcmp.c, ./lib/uninorm/u32-normcoll.c, ./lib/uninorm/u32-normxfrm.c, ./lib/uninorm/u8-normalize.c, ./lib/uninorm/u8-normcmp.c, ./lib/uninorm/u8-normcoll.c, ./lib/uninorm/u8-normxfrm.c, ./lib/uninorm/uninorm-filter.c, ./lib/unistr/u-cmp2.h, ./lib/unistr/u-strcoll.h, ./lib/unistr/u16-cmp2.c, ./lib/unistr/u16-strcoll.c, ./lib/unistr/u32-cmp2.c, ./lib/unistr/u32-strcoll.c, ./lib/unistr/u8-cmp2.c, ./lib/unistr/u8-strcoll.c, ./lib/uniwbrk/u-wordbreaks.h, ./lib/uniwbrk/u16-wordbreaks.c, ./lib/uniwbrk/u32-wordbreaks.c, ./lib/uniwbrk/u8-wordbreaks.c, ./lib/uniwbrk/wbrktable.c, ./lib/uniwbrk/wbrktable.h, ./tests/test-array-mergesort.c
+Copyright: 2009 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./lib/unilbrk/ulc-common.c
+Copyright: || c_isspace )) / 2001-2003, 2006-2008 Free Software Foundation, Inc
+License: LGPL-3+ 
+
+Files: ./build-aux/install-sh
+Copyright: 1994 X Consortium
+License: MIT/X11 (BSD like) 
+
+
+The complete text of the GNU General Public License can be
+found in /usr/share/common-licenses/GPL
+The complete text of the GNU General Public License Version 2 can be
+found in /usr/share/common-licenses/GPL-2
+The complete text of the GNU General Public License Version 3 can be
+found in /usr/share/common-licenses/GPL-3
+The complete text of the GNU Lesser General Public License can be
+found in /usr/share/common-licenses/LGPL
+The complete text of the GNU Library General Public License Version 2 can be
+found in /usr/share/common-licenses/LGPL-2
+The complete text of the GNU Lesser General Public License Version 2.1 can be
+found in /usr/share/common-licenses/LGPL-2.1
+The complete text of the GNU Lesser General Public License Version 3 can be
+found in /usr/share/common-licenses/LGPL-3