update_copyrights revision 0c27b3fe77ac1d5094ba3521e8142d9e7973133f
10139N/A#!/usr/local/bin/perl -w
10139N/A#
10139N/A# Copyright (C) 1998-2001, 2004-2010, 2012-2016 Internet Systems Consortium, Inc. ("ISC")
10139N/A#
10139N/A# This Source Code Form is subject to the terms of the Mozilla Public
10139N/A# License, v. 2.0. If a copy of the MPL was not distributed with this
10139N/A# file, You can obtain one at http://mozilla.org/MPL/2.0/.
10139N/A
10139N/Arequire 5.002;
10139N/A
10139N/A# Map copyright owners to the files containing copyright messages.
10139N/A# The first line of the copyright message is not in the file;
10139N/A# it is constructed by this script.
10139N/A#
10139N/A# Usage:
10139N/A#
10139N/A# perl util/update_copyrights <util/copyrights
10139N/A
10139N/Amy %owner2filename = (
10139N/A "" => "util/COPYRIGHT",
10139N/A "NAI" => "util/COPYRIGHT.NAI",
10139N/A "NOM" => "util/COPYRIGHT.NOM",
10139N/A "BSDI" => "util/COPYRIGHT.BSDI",
10139N/A "BRIEF" => "util/COPYRIGHT.BRIEF",
10139N/A "PORTION" => "util/COPYRIGHT.PORTION",
10139N/A);
10139N/A
10139N/A# Map each copyright owner name to a reference to an array containing
10139N/A# the lines of the copyright message.
10139N/A
10139N/Amy %owner2text = ();
10139N/A
10139N/Amy $keyword_pat = '\$(Id:.*|Revision:.*|Id|Revision)\$';
10139N/A
10139N/Aforeach $owner (keys %owner2filename) {
10139N/A my $f = $owner2filename{$owner};
10139N/A open(COPYRIGHT, "<$f") || die "can't open $f: $!";
10139N/A @copyright_text = <COPYRIGHT>;
10139N/A close(COPYRIGHT);
10139N/A $owner2text{$owner} = [ @copyright_text ];
10139N/A}
10139N/A
10139N/Amy %file_types = ();
10139N/Amy %file_years = ();
10139N/Amy $years_list;
10139N/Amy $parent;
10139N/A
10139N/A($dummy,$dummy,$dummy,$dummy,$this_month,$this_year,$dummy,$dummy,$dummy) = localtime(time());
10139N/A$this_year += 1900;
10139N/A
10139N/Awhile (<>) {
10139N/A chomp;
10139N/A ($file, $type, $years) = split(/\s+/);
10139N/A $file_types{$file} = $type;
10139N/A $file_years{$file} = $years;
10139N/A}
10139N/A
10139N/Asub getyears {
10139N/A $parent = $_[0];
10139N/A $parent =~ s/PARENT://;
10139N/A $years_list = $file_years{$parent};
10139N/A if (defined($years_list) && $years_list =~ /^PARENT:/) {
10139N/A print "BAD PARENT:$parent\n";
10139N/A undefine($years_list);
10139N/A }
10139N/A}
10139N/A
10139N/Asub docbook {
13570N/A $parent = $_[0];
10139N/A $parent =~ s/\.[^.]*$/.docbook/;
10139N/A $years_list = $file_years{$parent};
10139N/A}
11965N/A
11965N/Asub copyright {
10139N/A my $holder = shift;
10139N/A my $result = "";
10139N/A return $result unless (@_);
10139N/A $result = "$result <copyright>\n";
11933N/A $result = "$result <year>$_</year>\n" foreach (@_);
10139N/A $result = "$result <holder>$holder</holder>\n";
10139N/A $result = "$result </copyright>\n";
10139N/A return $result;
10139N/A}
10139N/A
10139N/Asub copyrights {
10139N/A my $a = copyright("Internet Systems Consortium, Inc. (\"ISC\")",
10139N/A grep({ $_ >= 2004} @_));
10139N/A my $b = copyright("Internet Software Consortium.",
10139N/A grep({ $_ < 2004} @_));
10139N/A return "$a$b";
10139N/A}
10139N/A
10139N/Aforeach $file (keys %file_types) {
10139N/A $typeandowner = $file_types{$file};
10139N/A $years_list = $file_years{$file};
10139N/A
10139N/A if ( ! -f $file ) {
10139N/A print "$file: missing\n";
10139N/A next;
10139N/A }
10139N/A # print "Doing: $file";
12787N/A
10139N/A if ($years_list =~ /PARENT:/) {
10139N/A getyears($years_list);
10139N/A if (!defined $years_list) {
11232N/A print "$file: has bad parent $parent\n";
10139N/A next;
10139N/A }
10139N/A }
10139N/A
10139N/A # copyright notice is now generated from the source.
10139N/A next if ($years_list eq "DOCBOOK");
10139N/A
11925N/A if ($years_list eq "DOCBOOK") {
10139N/A docbook($file);
10139N/A if (!defined $years_list) {
10139N/A print "$file: has bad parent $parent\n";
10139N/A next;
10139N/A }
10139N/A }
10139N/A
10139N/A @years = split(/,/, $years_list);
10139N/A
10139N/A my ($type, $owner) = split(/\./, $typeandowner);
10139N/A $owner = "" if !defined $owner;
10139N/A
10139N/A $textp = $owner2text{$owner};
10139N/A if (!defined $textp) {
10139N/A print "$file: unknown copyright owner $owner\n";
10139N/A next;
10139N/A }
10139N/A
10139N/A if ($file eq "./CHANGES" || $file eq "./EXCLUDED" ||
10139N/A $file eq "./CHANGES.SE")
10139N/A {
10697N/A open(SOURCE, "<$file") || die "can't open $file: $!";
12374N/A my $body = "";
10915N/A while (<SOURCE>) {
11161N/A # Process leading white space.
12385N/A # Remove 1-7 spaces followed by a tab into a single
12780N/A # tab if at start of line or proceeded by tabs.
12780N/A s/^(\t*) {1,7}\t/$1\t/ while (/^\t* {1,7}\t/);
13092N/A s/^(\s{0,3}\d*\.)\s(\[\w{1,5}\])\s+(\S+)/$1\t$2\t\t$3/;
13360N/A s/^(\s{0,3}\d*\.)\s(\[\w{6,}\])\s+(\S+)/$1\t$2\t$3/;
13409N/A # Convert 8 spaces into tabs if at start of line
13409N/A # or preceeded by tabs.
10139N/A s/^(\t*) /$1\t/ while (/^\t* /);
10139N/A # Remove trailing white space.
10139N/A s/[ \t]*$//;
10139N/A $body = "$body$_";
10139N/A }
10139N/A $_ = $body;
10139N/A open(TARGET, ">$file.new") || die "can't open $file.new: $!";
10139N/A print TARGET $_;
10139N/A close(TARGET);
10139N/A close(SOURCE);
10139N/A if (system("cmp -s $file.new $file") == 0) {
10139N/A unlink("$file.new");
10139N/A } else {
10139N/A rename("$file.new", "$file")
10139N/A or die "rename($file.new, $file): $!";
10139N/A }
10139N/A }
10139N/A
10139N/A next if $type eq "X" or $type eq "BAT";
10139N/A
10139N/A $before_copyright = "";
10139N/A $c_comment = 0;
10139N/A $shell_comment = 0;
10139N/A $m4_comment = 0;
10139N/A $sgml_comment = 0;
10139N/A $mkd_comment = 0;
10139N/A $zone_comment = 0;
10139N/A $man_comment = 0;
10139N/A $python_comment = 0;
10139N/A $python_bin_comment = 0;
10139N/A $start_comment = "";
10139N/A $end_comment = "";
10139N/A $first = "";
10139N/A if ($type =~ /^(C|YACC|CONF-C)$/) {
10139N/A $c_comment = 1;
10139N/A $start_comment = "/*\n";
10139N/A $prefix = " * ";
10139N/A $end_comment = " */\n";
10139N/A } elsif ($type =~ /^(SH|PERL|TCL|MAKE|CONF-SH|RNC)$/) {
10139N/A $shell_comment = 1;
10139N/A $prefix = "# ";
10139N/A } elsif ($type =~ /^PYTHON-BIN$/) {
10139N/A $python_bin_comment = 1;
10139N/A $start_comment = "############################################################################\n";
10139N/A $prefix = "# ";
10139N/A $end_comment = "############################################################################\n"
10139N/A } elsif ($type =~ /^PYTHON$/) {
10139N/A $python_comment = 1;
10139N/A $start_comment = "############################################################################\n";
10139N/A $prefix = "# ";
10139N/A $end_comment = "############################################################################\n"
10139N/A } elsif ($type eq "ZONE" || $type eq "MC") {
10139N/A $zone_comment = 1;
10139N/A $prefix = "; ";
10139N/A } elsif ($type eq "MAN") {
10139N/A $man_comment = 1;
10139N/A $prefix = ".\\\" ";
10139N/A } elsif ($type eq "M4") {
10139N/A $m4_comment = 1;
10139N/A $prefix = "dnl ";
10139N/A } elsif ($type eq "HTML" || $type eq "SGML") {
10139N/A $sgml_comment = 1;
10139N/A $start_comment = "<!--\n";
10139N/A $prefix = " - ";
10139N/A $end_comment = "-->\n";
10139N/A } elsif ($type eq "MKD") {
10139N/A $mkd_comment = 1;
10139N/A $start_comment = "<!---\n";
10139N/A $prefix = " - ";
10139N/A $end_comment = "--->";
10139N/A } elsif ($type eq "TXT") {
10139N/A $prefix = "";
10139N/A } else {
10139N/A print "$file: type '$type' not supported yet; skipping\n";
10139N/A next;
10139N/A }
10139N/A
10139N/A ($nonspaceprefix = $prefix) =~ s/\s+$//;
10139N/A
10139N/A open(SOURCE, "<$file") || die "can't open $file: $!";
10139N/A $_ = <SOURCE>;
10139N/A if ($type eq "YACC") {
10139N/A unless ($_ eq "%{\n") {
10139N/A print "$file: unexpected yacc file start ",
10139N/A "(expected \"%{\\n\")\n";
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
10139N/A $before_copyright = "$_";
10139N/A $_ = <SOURCE>;
10139N/A }
10139N/A if ($c_comment && /^\/\*/) {
10139N/A $_ = <SOURCE>;
10139N/A if ($_ !~ /[Cc]opyright/) {
10139N/A print "$file: non-copyright comment\n";
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
10139N/A if ($_ !~ /\*\//) {
10139N/A while (<SOURCE>) {
10139N/A last if $_ =~ /\*\//;
10139N/A }
10139N/A }
10139N/A } elsif ($shell_comment) {
10139N/A if (/^\#\!/) {
10139N/A $before_copyright = "$_#\n";
10139N/A $_ = <SOURCE>;
10139N/A $_ = <SOURCE> if $_ eq "#\n";
10139N/A }
10139N/A if (/^\#/) {
10139N/A if ($_ !~ /[Cc]opyright/) {
10139N/A print "$file: non-copyright comment\n";
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
10139N/A while (<SOURCE>) {
10139N/A if ($_ !~ /^\#/) {
10139N/A $first = $_;
11965N/A last;
11965N/A }
11965N/A }
11965N/A } else {
11965N/A $first = $_;
11965N/A }
11965N/A } elsif ($python_comment || $python_bin_comment) {
11965N/A if ($python_bin_comment && /^\#\!/) {
11965N/A $before_copyright = "$_";
11965N/A $_ = <SOURCE>;
11965N/A $_ = <SOURCE> if $_ eq "#\n";
11965N/A $_ = <SOURCE> if $_ eq "############################################################################\n";
11965N/A } elsif ($python_comment && /^\#/) {
10139N/A $_ = <SOURCE> if $_ eq "#\n";
10139N/A $_ = <SOURCE> if $_ eq "############################################################################\n";
10139N/A }
10139N/A if (/^\#/) {
10139N/A if ($_ !~ /[Cc]opyright/) {
10139N/A print "$file: non-copyright comment\n";
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
10139N/A while (<SOURCE>) {
10139N/A if ($_ !~ /^\#/) {
10139N/A $first = $_;
10139N/A last;
10139N/A }
10139N/A }
10139N/A } else {
10139N/A $first = $_;
10139N/A }
10139N/A } elsif (($m4_comment || $zone_comment || $man_comment) &&
10139N/A /^\Q$nonspaceprefix\E/) {
10139N/A
11933N/A while (/^\Q$nonspaceprefix\E\s*$/) {
11933N/A $_ = <SOURCE>;
11933N/A }
11933N/A
10139N/A if ($_ !~ /[Cc]opyright/) {
10139N/A print "$file: non-copyright comment\n";
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
10139N/A while (<SOURCE>) {
10139N/A if ($_ !~ /^\Q$nonspaceprefix\E/ ||
10139N/A $_ =~ /$keyword_pat/) {
10139N/A $first = $_;
10139N/A last;
10139N/A }
11161N/A }
11161N/A } elsif ($sgml_comment) {
11161N/A $before_copyright = "";
11161N/A while (/^<!DOCTYPE/ || /^<!ENTITY/ || /^<\?xml-stylesheet/ || /^<\?xml /) {
11161N/A # print "SGML: $_";
10139N/A $before_copyright = "$before_copyright$_";
10139N/A if (/\]>$/ ) {
10139N/A $_ = <SOURCE>;
10139N/A close(SOURCE) if (eof(SOURCE));
10139N/A next;
11161N/A }
10139N/A if (/^<!DOCTYPE.*\[$/) {
10139N/A while (!eof(SOURCE)) {
10139N/A $_ = <SOURCE>;
10139N/A next if (eof(SOURCE));
10139N/A $before_copyright =
10139N/A "$before_copyright$_";
10139N/A if (/]>$/) {
10139N/A $_ = <SOURCE>;
10139N/A last;
10139N/A }
10139N/A }
10139N/A close(SOURCE) if (eof(SOURCE));
10139N/A next;
10139N/A }
10139N/A if (/>$/ ) {
10139N/A $_ = <SOURCE>;
10139N/A close(SOURCE) if (eof(SOURCE));
10139N/A next;
10139N/A }
10139N/A $_ = <SOURCE>;
10139N/A while (!eof(SOURCE) && ! /^<!/ ) {
10139N/A $before_copyright = "$before_copyright$_";
10139N/A $_ = <SOURCE>;
10139N/A }
10139N/A if (eof(SOURCE)) {
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
11160N/A }
10139N/A if (/^<!--/) {
10139N/A $_ = <SOURCE> if $_ eq "<!--\n";
10139N/A if ($_ !~ /[Cc]opyright/) {
10139N/A print "$file: non-copyright comment\n";
11193N/A close(SOURCE);
13036N/A next;
10139N/A }
10139N/A while (defined($_)) {
10139N/A last if s/.*-->//;
10139N/A $_ = <SOURCE>;
10139N/A }
10139N/A print "$file: unterminated comment\n"
10139N/A unless defined($_);
10139N/A if ($_ ne "\n") {
10139N/A $first = $_;
10139N/A } else {
10139N/A $first = <SOURCE>;
10139N/A }
10139N/A } else {
10139N/A $first = $_;
10139N/A }
10139N/A } elsif ($mkd_comment) {
10139N/A $before_copyright = "";
10139N/A if (/^<!/) {
10139N/A $_ = <SOURCE> if $_ eq "<!---\n";
10139N/A if ($_ !~ /[Cc]opyright/) {
10139N/A print "$file: non-copyright comment\n";
10139N/A close(SOURCE);
10139N/A next;
10139N/A }
10139N/A while (defined($_)) {
10139N/A last if s/.*--->//;
10139N/A $_ = <SOURCE>;
10139N/A }
10139N/A print "$file: unterminated comment\n"
10139N/A unless defined($_);
10139N/A if ($_ ne "\n") {
10139N/A $first = $_;
10139N/A } else {
10139N/A $first = <SOURCE>;
10139N/A }
10139N/A } else {
10139N/A $first = $_;
10139N/A }
10139N/A } elsif ($type eq "TXT") {
10139N/A if ($_ =~ /[Cc]opyright/) {
10139N/A $/ = ""; # paragraph at a time
10139N/A while (<SOURCE>) {
10139N/A # Not very maintainable, but ok enough for now.
10139N/A last if /Portions of this code/;
10139N/A last unless
10139N/A /[Cc]opyright/ ||
10139N/A /This Source Code Form is subject to the terms of the Mozilla Public/ ||
10139N/A /If a copy of the MPL was not distributed with this/ ||
10139N/A /You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\// ||
10139N/A /See COPYRIGHT in the source root/ ||
10139N/A /Permission to use, copy, modify, and / ||
10139N/A /THE SOFTWARE IS PROVIDED "AS IS" AND /;
10139N/A }
10139N/A $/ = "\n";
10139N/A }
10139N/A $first = $_;
10139N/A } else {
10139N/A $first = $_;
10139N/A }
10139N/A
10139N/A $first = "" if ! defined($first);
10139N/A
10139N/A open(TARGET, ">$file.new") || die "can't open $file.new: $!";
10139N/A print TARGET $before_copyright if $before_copyright;
10139N/A print TARGET $start_comment if $start_comment;
10139N/A
10139N/A $sysyears = "";
10139N/A $nomyears = "";
10139N/A
10139N/A #
10139N/A # Nominum: up to 2001.
10139N/A #
10139N/A $last_year = 0;
10139N/A $anchor_year = 0;
10139N/A $years = "";
10139N/A foreach $year (@years) {
10139N/A if ($year >= 2002) { next; }
10139N/A if ($last_year != 0 && $year == $last_year + 1) {
11904N/A if ($year > $anchor_year + 1) {
10139N/A substr($years, $anchor_end) = "-$year";
11904N/A } else {
11904N/A $years .= ", $year";
10139N/A }
10139N/A } else {
11904N/A $years .= $last_year == 0 ? "$year" : ", $year";
10139N/A #if ($anchor_year != 0) {
10139N/A # print "$file: noncontiguous year: ",
10139N/A # "$year != $last_year + 1\n";
10139N/A #}
10139N/A $anchor_year = $year;
10139N/A $anchor_end = length($years);
10139N/A }
10139N/A
10139N/A $last_year = $year;
10139N/A }
10139N/A $nomyears = $years;
10139N/A
10139N/A #
10139N/A # Internet Systems Consortium: 2004 onwards.
10139N/A #
10139N/A $last_year = 0;
10139N/A $anchor_year = 0;
10139N/A $years = "";
10139N/A $anchor_end = length($years);
10139N/A my $andor = 0;
10139N/A my $noid = 0;
10139N/A foreach $year (@years) {
10139N/A $andor = 1 if ($year >= 2007);
10139N/A $noid = 1 if ($year > 2012 || ($year == 2012 && $this_month >= 5) );
10139N/A if ($last_year != 0 && $year == $last_year + 1) {
10139N/A if ($year > $anchor_year + 1) {
10139N/A substr($years, $anchor_end) = "-$year";
10139N/A } else {
10139N/A $years .= ", $year";
10139N/A }
10139N/A } else {
10139N/A $years .= $last_year == 0 ? "$year" : ", $year";
10139N/A #if ($anchor_year != 0) {
10139N/A # print "$file: noncontiguous year: ",
10139N/A # "$year != $last_year + 1\n";
10139N/A #}
10139N/A $anchor_year = $year;
10139N/A $anchor_end = length($years);
12787N/A }
12787N/A
12787N/A $last_year = $year;
12787N/A }
12787N/A $sysyears = $years;
12787N/A
12787N/A # make a copy
12787N/A @lines = @$textp;
12787N/A
12787N/A foreach $_ (@lines) {
12787N/A next if (/\@SYSYEARS\@/ && $sysyears eq "");
13285N/A s:modify, and distribute:modify, and/or distribute: if ($andor);
12787N/A print TARGET (/^$/ ? $nonspaceprefix : $prefix);
12787N/A s/\@SYSYEARS\@/$sysyears/;
12787N/A s/\@NOMYEARS\@/$nomyears/;
12787N/A print TARGET "$_";
12787N/A }
12787N/A print TARGET $end_comment if $end_comment;
12787N/A
10139N/A if ($first eq "") {
10139N/A $first = <SOURCE>;
10139N/A }
10139N/A
10139N/A if (defined($first)) {
10139N/A if ($type eq 'MAN') {
10139N/A print TARGET "$nonspaceprefix\n";
10139N/A } else {
10139N/A print TARGET "\n";
10139N/A }
12741N/A
12741N/A if (($type eq "C" || $type eq "CONF-C") &&
12741N/A $sysyears =~ /$this_year/) {
12741N/A my $body = "";
12741N/A while (<SOURCE>) {
12741N/A # Process leading white space.
12741N/A # Remove 1-7 spaces followed by a tab into a single
12741N/A # tab if at start of line or proceeded by tabs.
12741N/A s/^(\t*) {1,7}\t/$1\t/ while (/^\t* {1,7}\t/);
12741N/A # Convert 8 spaces into tabs if at start of line
11925N/A # or preceeded by tabs.
11925N/A s/^(\t*) {8}/$1\t/ while (/^\t* {8}/);
10139N/A # Remove trailing white space.
10139N/A s/[ \t]*$//;
11232N/A $body = "$body$_";
11232N/A }
11232N/A $_ = $body;
11232N/A } elsif (($type eq "SGML" || $type eq "HTML" ||
10139N/A $type eq "MAKE") &&
10139N/A $sysyears =~ /$this_year/) {
10139N/A my $body = "";
10139N/A while (<SOURCE>) {
10139N/A # Remove trailing white space.
10139N/A s/[ \t]*$//;
10139N/A $body = "$body$_";
10139N/A }
10139N/A $_ = $body;
10139N/A } else {
10139N/A undef $/;
10139N/A $_ = <SOURCE>;
10139N/A $/ = "\n";
10139N/A }
10139N/A
10139N/A if ($type eq 'SGML' && m:<articleinfo>.*?</articleinfo>:s) {
10139N/A # print "docinfo: $file\n";
10139N/A my $r = copyrights(@years);
10139N/A s:<articleinfo>.*?</articleinfo>:<articleinfo>\n$r </articleinfo>:s;
10139N/A }
10139N/A if ($type eq 'SGML' && m:<docinfo>.*?</docinfo>:s) {
10139N/A # print "docinfo: $file\n";
10139N/A my $r = copyrights(@years);
10139N/A s:<docinfo>.*?</docinfo>:<docinfo>\n$r </docinfo>:s;
10139N/A }
10139N/A if ($type eq 'SGML' && m:<bookinfo>.*?</bookinfo>:s) {
10139N/A # print "bookinfo: $file\n";
10139N/A my $r = copyrights(@years);
10139N/A $r .= " <xi:include href=\"releaseinfo.xml\"/>\n";
10139N/A s:<bookinfo>.*?</bookinfo>:<bookinfo>\n$r </bookinfo>:s;
10139N/A }
13319N/A
10139N/A my ($start, $end);
10139N/A if ($type =~ /^PYTHON(|-BIN)$/) {
11904N/A ($start = $prefix) =~ s/\s*\n//;
11904N/A $end = "\n";
12013N/A } elsif ($start_comment ne "") {
11904N/A ($start = $start_comment) =~ s/\s*\n/ /;
11904N/A ($end = $end_comment) =~ s/^\s*(.*)\n/ $1\n/;
10139N/A } elsif ($prefix ne "") {
10139N/A ($start = $prefix) =~ s/\s*\n//;
10139N/A $end = "\n";
10139N/A } else {
10139N/A $start = "";
10139N/A $end = "\n";
10139N/A }
10139N/A
10139N/A if (!$noid && $first !~ /$keyword_pat/ &&
10139N/A (!defined($_) || $_ !~ /$keyword_pat/)) {
10139N/A $end = "\n$nonspaceprefix" if ($type eq "MAN");
10139N/A print TARGET "$start\$";
10139N/A print TARGET "Id";
10139N/A print TARGET "\$$end\n";
10139N/A }
10139N/A
10139N/A print TARGET $first if $first !~ /^\s*$/;
10139N/A print TARGET $_ if (defined($_));
10139N/A }
10139N/A close(TARGET);
10139N/A close(SOURCE);
10139N/A
10363N/A $mode = (stat $file)[2]&511;
10139N/A chmod $mode, "$file.new";
10139N/A
10139N/A if (system("cmp -s $file.new $file") == 0) {
13488N/A unlink("$file.new");
10139N/A } else {
10139N/A rename("$file.new", "$file")
10139N/A or die "rename($file.new, $file): $!";
11925N/A }
11925N/A}
11925N/A