| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package exact; |
|
2
|
|
|
|
|
|
|
# ABSTRACT: Perl pseudo pragma to enable strict, warnings, features, mro, filehandle methods |
|
3
|
|
|
|
|
|
|
|
|
4
|
9
|
|
|
9
|
|
2117791
|
use 5.014; |
|
|
9
|
|
|
|
|
105
|
|
|
5
|
9
|
|
|
9
|
|
52
|
use strict; |
|
|
9
|
|
|
|
|
21
|
|
|
|
9
|
|
|
|
|
170
|
|
|
6
|
9
|
|
|
9
|
|
40
|
use warnings; |
|
|
9
|
|
|
|
|
15
|
|
|
|
9
|
|
|
|
|
216
|
|
|
7
|
9
|
|
|
9
|
|
4230
|
use namespace::autoclean; |
|
|
9
|
|
|
|
|
162514
|
|
|
|
9
|
|
|
|
|
36
|
|
|
8
|
9
|
|
|
9
|
|
4913
|
use Import::Into; |
|
|
9
|
|
|
|
|
4727
|
|
|
|
9
|
|
|
|
|
303
|
|
|
9
|
9
|
|
|
9
|
|
58
|
use Sub::Util 'set_subname'; |
|
|
9
|
|
|
|
|
28
|
|
|
|
9
|
|
|
|
|
607
|
|
|
10
|
9
|
|
|
9
|
|
4548
|
use Syntax::Keyword::Try; |
|
|
9
|
|
|
|
|
21458
|
|
|
|
9
|
|
|
|
|
52
|
|
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '1.22'; # VERSION |
|
13
|
|
|
|
|
|
|
|
|
14
|
9
|
|
|
9
|
|
897
|
use feature (); |
|
|
9
|
|
|
|
|
23
|
|
|
|
9
|
|
|
|
|
165
|
|
|
15
|
9
|
|
|
9
|
|
48
|
use utf8 (); |
|
|
9
|
|
|
|
|
20
|
|
|
|
9
|
|
|
|
|
161
|
|
|
16
|
9
|
|
|
9
|
|
66
|
use mro (); |
|
|
9
|
|
|
|
|
26
|
|
|
|
9
|
|
|
|
|
201
|
|
|
17
|
9
|
|
|
9
|
|
43
|
use Carp qw( croak carp confess cluck ); |
|
|
9
|
|
|
|
|
18
|
|
|
|
9
|
|
|
|
|
529
|
|
|
18
|
9
|
|
|
9
|
|
4429
|
use IO::File (); |
|
|
9
|
|
|
|
|
79849
|
|
|
|
9
|
|
|
|
|
236
|
|
|
19
|
9
|
|
|
9
|
|
60
|
use IO::Handle (); |
|
|
9
|
|
|
|
|
19
|
|
|
|
9
|
|
|
|
|
142
|
|
|
20
|
9
|
|
|
9
|
|
57
|
use Try::Tiny (); |
|
|
9
|
|
|
|
|
16
|
|
|
|
9
|
|
|
|
|
113
|
|
|
21
|
9
|
|
|
9
|
|
4383
|
use PerlX::Maybe (); |
|
|
9
|
|
|
|
|
21787
|
|
|
|
9
|
|
|
|
|
8230
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
my ($perl_version) = $^V =~ /^v5\.(\d+)/; |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
my $features_available = ( %feature::feature_bundle and $feature::feature_bundle{all} ) |
|
26
|
|
|
|
|
|
|
? $feature::feature_bundle{all} |
|
27
|
|
|
|
|
|
|
: [ qw( say state switch unicode_strings ) ]; |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
my $functions_available = [ qw( |
|
30
|
|
|
|
|
|
|
nostrict nowarnings |
|
31
|
|
|
|
|
|
|
nofeatures nobundle noskipexperimentalwarnings |
|
32
|
|
|
|
|
|
|
noutf8 noc3 nocarp notry trytiny nomaybe noautoclean |
|
33
|
|
|
|
|
|
|
) ]; |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
my $functions_deprecated = ['noexperiments']; |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
my ( $no_parent, $late_parent ); |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
sub import { |
|
40
|
17
|
|
|
17
|
|
3437
|
my ( $self, $caller ) = ( shift, caller() ); |
|
41
|
|
|
|
|
|
|
|
|
42
|
17
|
|
|
|
|
39
|
my ( @features, @nofeatures, @functions, @bundles, @classes ); |
|
43
|
17
|
|
|
|
|
37
|
for (@_) { |
|
44
|
7
|
|
|
|
|
17
|
( my $opt = $_ ) =~ s/^\-//; |
|
45
|
|
|
|
|
|
|
|
|
46
|
7
|
50
|
66
|
|
|
29
|
if ( $opt eq 'class' ) { |
|
|
|
50
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
47
|
0
|
|
|
|
|
0
|
push( @classes, $opt ); |
|
48
|
|
|
|
|
|
|
} |
|
49
|
|
|
|
|
|
|
elsif ( $opt eq 'cor' ) { |
|
50
|
0
|
|
|
|
|
0
|
push( @features, 'class' ); |
|
51
|
|
|
|
|
|
|
} |
|
52
|
|
|
|
|
|
|
elsif ( $opt eq 'nocor' ) { |
|
53
|
0
|
|
|
|
|
0
|
push( @nofeatures, 'class' ); |
|
54
|
|
|
|
|
|
|
} |
|
55
|
98
|
|
|
|
|
166
|
elsif ( grep { $_ eq $opt } @$features_available ) { |
|
56
|
2
|
|
|
|
|
5
|
push( @features, $opt ); |
|
57
|
|
|
|
|
|
|
} |
|
58
|
70
|
|
|
|
|
142
|
elsif ( my ($nofeature) = grep { 'no' . $_ eq $opt } @$features_available ) { |
|
59
|
1
|
|
|
|
|
5
|
push( @nofeatures, $nofeature ); |
|
60
|
|
|
|
|
|
|
} |
|
61
|
52
|
|
|
|
|
94
|
elsif ( grep { $_ eq $opt } @$functions_available, @$functions_deprecated ) { |
|
62
|
2
|
50
|
|
|
|
5
|
push( @functions, $opt ) if ( grep { $_ eq $opt } @$functions_available ); |
|
|
24
|
|
|
|
|
42
|
|
|
63
|
|
|
|
|
|
|
} |
|
64
|
|
|
|
|
|
|
elsif ( $opt =~ /^:?v?5?\.?(\d+)/ and $1 >= 10 ) { |
|
65
|
1
|
|
|
|
|
6
|
push( @bundles, $1 ); |
|
66
|
|
|
|
|
|
|
} |
|
67
|
|
|
|
|
|
|
else { |
|
68
|
1
|
50
|
|
|
|
5
|
push( @classes, $opt ) if ( $opt !~ /^no[a-z]{2}/ ); |
|
69
|
|
|
|
|
|
|
} |
|
70
|
|
|
|
|
|
|
} |
|
71
|
|
|
|
|
|
|
|
|
72
|
17
|
50
|
|
|
|
119
|
strict ->import unless ( grep { $_ eq 'nostrict' } @functions ); |
|
|
2
|
|
|
|
|
15
|
|
|
73
|
17
|
50
|
|
|
|
201
|
warnings->import unless ( grep { $_ eq 'nowarnings' } @functions ); |
|
|
2
|
|
|
|
|
28
|
|
|
74
|
|
|
|
|
|
|
|
|
75
|
17
|
100
|
66
|
|
|
116
|
if (@bundles) { |
|
|
|
100
|
|
|
|
|
|
|
76
|
1
|
|
|
|
|
118
|
feature->import( ':5.' . $_ ) for (@bundles); |
|
77
|
|
|
|
|
|
|
} |
|
78
|
|
|
|
|
|
|
elsif ( |
|
79
|
|
|
|
|
|
|
not grep { $_ eq 'nofeatures' } @functions and |
|
80
|
|
|
|
|
|
|
not grep { $_ eq 'nobundle' } @functions |
|
81
|
|
|
|
|
|
|
) { |
|
82
|
15
|
50
|
|
|
|
1333
|
feature->import( $perl_version >= 16 ? ':all' : ':5.' . $perl_version ); |
|
83
|
|
|
|
|
|
|
} |
|
84
|
17
|
|
|
|
|
154
|
feature->import($_) for (@features); |
|
85
|
17
|
|
|
|
|
39
|
feature->unimport($_) for (@nofeatures); |
|
86
|
|
|
|
|
|
|
|
|
87
|
17
|
50
|
|
|
|
44
|
unless ( grep { $_ eq 'noutf8' } @functions ) { |
|
|
2
|
|
|
|
|
8
|
|
|
88
|
17
|
|
|
|
|
108
|
utf8->import; |
|
89
|
17
|
|
|
|
|
189
|
binmode( $_, ':utf8' ) for ( *STDIN, *STDERR, *STDOUT ); |
|
90
|
17
|
|
|
|
|
88
|
'open'->import::into( $caller, ':std', ':utf8' ); |
|
91
|
|
|
|
|
|
|
} |
|
92
|
|
|
|
|
|
|
|
|
93
|
17
|
50
|
|
|
|
21147
|
mro::set_mro( $caller, 'c3' ) unless ( grep { $_ eq 'noc3' } @functions ); |
|
|
2
|
|
|
|
|
20
|
|
|
94
|
|
|
|
|
|
|
|
|
95
|
68
|
|
|
|
|
101
|
monkey_patch( $self, $caller, ( map { $_ => \&{ 'Carp::' . $_ } } qw( croak carp confess cluck ) ) ) |
|
|
68
|
|
|
|
|
215
|
|
|
96
|
17
|
50
|
|
|
|
60
|
unless ( grep { $_ eq 'nocarp' } @functions ); |
|
|
2
|
|
|
|
|
8
|
|
|
97
|
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
feature->unimport('try') if ( |
|
99
|
238
|
|
|
|
|
407
|
grep { $_ eq 'try' } @$features_available and |
|
100
|
|
|
|
|
|
|
( |
|
101
|
|
|
|
|
|
|
grep { $_ eq 'notry' } @functions or |
|
102
|
17
|
0
|
0
|
|
|
46
|
grep { $_ eq 'trytiny' } @functions |
|
|
|
|
33
|
|
|
|
|
|
103
|
|
|
|
|
|
|
) |
|
104
|
|
|
|
|
|
|
); |
|
105
|
|
|
|
|
|
|
Syntax::Keyword::Try->import_into($caller) if ( |
|
106
|
|
|
|
|
|
|
$perl_version < 36 and |
|
107
|
2
|
|
|
|
|
11
|
not grep { $_ eq 'notry' } @functions and |
|
108
|
17
|
50
|
33
|
|
|
218
|
not grep { $_ eq 'trytiny' } @functions |
|
|
2
|
|
33
|
|
|
15
|
|
|
109
|
|
|
|
|
|
|
); |
|
110
|
|
|
|
|
|
|
eval qq{ |
|
111
|
|
|
|
|
|
|
package $caller { |
|
112
|
|
|
|
|
|
|
use Try::Tiny; |
|
113
|
|
|
|
|
|
|
}; |
|
114
|
17
|
50
|
|
|
|
809
|
} if ( grep { $_ eq 'trytiny' } @functions ); |
|
|
2
|
|
|
|
|
9
|
|
|
115
|
|
|
|
|
|
|
|
|
116
|
68
|
|
|
|
|
90
|
monkey_patch( $self, $caller, ( map { $_ => \&{ 'PerlX::Maybe::' . $_ } } qw( |
|
|
68
|
|
|
|
|
241
|
|
|
117
|
|
|
|
|
|
|
maybe provided provided_deref provided_deref_with_maybe |
|
118
|
17
|
50
|
|
|
|
50
|
) ) ) unless ( grep { $_ eq 'nomaybe' } @functions ); |
|
|
2
|
|
|
|
|
7
|
|
|
119
|
|
|
|
|
|
|
|
|
120
|
17
|
|
|
|
|
34
|
my @late_parents = (); |
|
121
|
|
|
|
|
|
|
my $use = sub { |
|
122
|
1
|
|
|
1
|
|
3
|
my ( $class, $pm, $caller, $params ) = @_; |
|
123
|
|
|
|
|
|
|
|
|
124
|
1
|
|
|
|
|
1
|
my $failed_require; |
|
125
|
|
|
|
|
|
|
try { |
|
126
|
|
|
|
|
|
|
require "$pm" unless ( do { |
|
127
|
9
|
|
|
9
|
|
75
|
no strict 'refs'; |
|
|
9
|
|
|
|
|
26
|
|
|
|
9
|
|
|
|
|
373
|
|
|
128
|
9
|
|
|
9
|
|
59
|
no warnings 'once'; |
|
|
9
|
|
|
|
|
23
|
|
|
|
9
|
|
|
|
|
5373
|
|
|
129
|
|
|
|
|
|
|
${"${caller}::INC"}{$pm}; |
|
130
|
|
|
|
|
|
|
} ); |
|
131
|
|
|
|
|
|
|
} |
|
132
|
1
|
|
|
|
|
3
|
catch { |
|
133
|
|
|
|
|
|
|
croak($@) unless ( index( $@, q{Can't locate } ) == 0 ); |
|
134
|
|
|
|
|
|
|
return 0; |
|
135
|
|
|
|
|
|
|
} |
|
136
|
|
|
|
|
|
|
|
|
137
|
1
|
|
|
|
|
3
|
( $no_parent, $late_parent ) = ( undef, undef ); |
|
138
|
|
|
|
|
|
|
|
|
139
|
1
|
50
|
|
|
|
9
|
"$class"->import( $caller, @$params ) if ( "$class"->can('import') ); |
|
140
|
|
|
|
|
|
|
|
|
141
|
1
|
50
|
33
|
|
|
19
|
if ($late_parent) { |
|
|
|
50
|
|
|
|
|
|
|
142
|
0
|
|
|
|
|
0
|
push( @late_parents, [ $class, $caller ] ); |
|
143
|
|
|
|
|
|
|
} |
|
144
|
|
|
|
|
|
|
elsif ( not $no_parent and index( $class, 'exact::' ) != 0 ) { |
|
145
|
0
|
|
|
|
|
0
|
$self->add_isa( $class, $caller ); |
|
146
|
|
|
|
|
|
|
} |
|
147
|
|
|
|
|
|
|
|
|
148
|
1
|
|
|
|
|
10
|
return 1; |
|
149
|
17
|
|
|
|
|
76
|
}; |
|
150
|
17
|
|
|
|
|
39
|
for my $class (@classes) { |
|
151
|
1
|
50
|
|
|
|
4
|
my $params = ( $class =~ s/\(([^\)]+)\)// ) ? [$1] : []; |
|
152
|
1
|
|
|
|
|
4
|
( my $pm = $class ) =~ s{::|'}{/}g; |
|
153
|
1
|
|
|
|
|
3
|
$pm .= '.pm'; |
|
154
|
|
|
|
|
|
|
|
|
155
|
1
|
50
|
33
|
|
|
3
|
$use->( |
|
156
|
|
|
|
|
|
|
'exact::' . $class, |
|
157
|
|
|
|
|
|
|
'exact/' . $pm, |
|
158
|
|
|
|
|
|
|
$caller, |
|
159
|
|
|
|
|
|
|
$params, |
|
160
|
|
|
|
|
|
|
) or $use->( |
|
161
|
|
|
|
|
|
|
$class, |
|
162
|
|
|
|
|
|
|
$pm, |
|
163
|
|
|
|
|
|
|
$caller, |
|
164
|
|
|
|
|
|
|
$params, |
|
165
|
|
|
|
|
|
|
) or croak( |
|
166
|
|
|
|
|
|
|
"Can't locate exact/$pm or $pm in \@INC " . |
|
167
|
|
|
|
|
|
|
"(you may need to install the exact::$class or $class module)" . |
|
168
|
|
|
|
|
|
|
'(@INC contains: ' . join( ' ', @INC ) . ')' |
|
169
|
|
|
|
|
|
|
); |
|
170
|
|
|
|
|
|
|
} |
|
171
|
17
|
|
|
|
|
27
|
$self->add_isa(@$_) for @late_parents; |
|
172
|
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
warnings->unimport('experimental') |
|
174
|
17
|
50
|
33
|
|
|
304
|
unless ( $perl_version < 18 or grep { $_ eq 'noskipexperimentalwarnings' } @functions ); |
|
|
2
|
|
|
|
|
35
|
|
|
175
|
|
|
|
|
|
|
|
|
176
|
17
|
100
|
|
|
|
102
|
namespace::autoclean->import( -cleanee => $caller ) unless ( grep { $_ eq 'noautoclean' } @functions ); |
|
|
2
|
|
|
|
|
2029
|
|
|
177
|
|
|
|
|
|
|
} |
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
sub monkey_patch { |
|
180
|
39
|
|
|
39
|
1
|
142
|
my ( $self, $class, %patch ) = @_; |
|
181
|
|
|
|
|
|
|
{ |
|
182
|
9
|
|
|
9
|
|
77
|
no strict 'refs'; |
|
|
9
|
|
|
|
|
19
|
|
|
|
9
|
|
|
|
|
293
|
|
|
|
39
|
|
|
|
|
53
|
|
|
183
|
9
|
|
|
9
|
|
47
|
no warnings 'redefine'; |
|
|
9
|
|
|
|
|
28
|
|
|
|
9
|
|
|
|
|
1429
|
|
|
184
|
39
|
|
|
|
|
357
|
*{"${class}::$_"} = set_subname( "${class}::$_", $patch{$_} ) for ( keys %patch ); |
|
|
142
|
|
|
|
|
957
|
|
|
185
|
|
|
|
|
|
|
} |
|
186
|
39
|
|
|
|
|
110
|
return; |
|
187
|
|
|
|
|
|
|
} |
|
188
|
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
sub add_isa { |
|
190
|
2
|
|
|
2
|
1
|
7999
|
my ( $self, $parent, $child ) = @_; |
|
191
|
|
|
|
|
|
|
{ |
|
192
|
9
|
|
|
9
|
|
68
|
no strict 'refs'; |
|
|
9
|
|
|
|
|
22
|
|
|
|
9
|
|
|
|
|
5259
|
|
|
|
2
|
|
|
|
|
3
|
|
|
193
|
2
|
100
|
|
|
|
4
|
push( @{"${child}::ISA"}, $parent ) unless ( grep { $_ eq $parent } @{"${child}::ISA"} ); |
|
|
1
|
|
|
|
|
27
|
|
|
|
1
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
12
|
|
|
194
|
|
|
|
|
|
|
} |
|
195
|
2
|
|
|
|
|
8
|
return; |
|
196
|
|
|
|
|
|
|
} |
|
197
|
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
sub no_parent { |
|
199
|
0
|
|
|
0
|
1
|
0
|
$no_parent = 1; |
|
200
|
0
|
|
|
|
|
0
|
return; |
|
201
|
|
|
|
|
|
|
} |
|
202
|
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
sub late_parent { |
|
204
|
0
|
|
|
0
|
1
|
0
|
$late_parent = 1; |
|
205
|
0
|
|
|
|
|
0
|
return; |
|
206
|
|
|
|
|
|
|
} |
|
207
|
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
sub _patch_import { |
|
209
|
2
|
|
|
2
|
|
8
|
my ( $type, $self, @names ) = @_; |
|
210
|
|
|
|
|
|
|
|
|
211
|
2
|
|
|
|
|
26
|
my $target = ( caller(1) )[0]; |
|
212
|
2
|
|
|
|
|
25
|
my $original_import = $target->can('import'); |
|
213
|
|
|
|
|
|
|
|
|
214
|
2
|
|
|
|
|
4
|
my %groups; |
|
215
|
2
|
100
|
|
|
|
24
|
if ( $type eq 'provide' ) { |
|
216
|
1
|
|
|
|
|
3
|
%groups = map { %$_ } grep { ref $_ eq 'HASH' } @names; |
|
|
1
|
|
|
|
|
6
|
|
|
|
3
|
|
|
|
|
7
|
|
|
217
|
1
|
|
|
|
|
2
|
@names = grep { not ref $_ } @names; |
|
|
3
|
|
|
|
|
7
|
|
|
218
|
|
|
|
|
|
|
} |
|
219
|
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
monkey_patch( |
|
221
|
|
|
|
|
|
|
$self, |
|
222
|
|
|
|
|
|
|
$target, |
|
223
|
|
|
|
|
|
|
import => sub { |
|
224
|
3
|
|
|
3
|
|
20
|
my ( $package, @exports ) = @_; |
|
|
|
|
|
3
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
225
|
|
|
|
|
|
|
|
|
226
|
3
|
100
|
|
|
|
11
|
$original_import->(@_) if ($original_import); |
|
227
|
|
|
|
|
|
|
|
|
228
|
3
|
100
|
|
|
|
24
|
if ( $type eq 'force' ) { |
|
|
|
50
|
|
|
|
|
|
|
229
|
1
|
|
|
|
|
3
|
@exports = @names; |
|
230
|
|
|
|
|
|
|
} |
|
231
|
|
|
|
|
|
|
elsif ( $type eq 'provide' ) { |
|
232
|
3
|
|
|
|
|
7
|
@exports = grep { defined } map { |
|
233
|
2
|
|
|
|
|
5
|
my $name = $_; |
|
|
2
|
|
|
|
|
3
|
|
|
234
|
|
|
|
|
|
|
|
|
235
|
4
|
|
|
|
|
25
|
( grep { $name eq $_ } @names ) ? $name : |
|
236
|
2
|
50
|
|
|
|
4
|
( exists $groups{$name} ) ? ( @{ $groups{$name} } ) : undef; |
|
|
1
|
100
|
|
|
|
5
|
|
|
237
|
|
|
|
|
|
|
} @exports; |
|
238
|
|
|
|
|
|
|
} |
|
239
|
|
|
|
|
|
|
|
|
240
|
|
|
|
|
|
|
monkey_patch( |
|
241
|
|
|
|
|
|
|
$package, |
|
242
|
|
|
|
|
|
|
( caller(0) )[0], |
|
243
|
3
|
|
|
|
|
29
|
map { $_ => \&{ $package . '::' . $_ } } @exports |
|
|
4
|
|
|
|
|
6
|
|
|
|
4
|
|
|
|
|
27
|
|
|
244
|
|
|
|
|
|
|
); |
|
245
|
|
|
|
|
|
|
|
|
246
|
3
|
|
|
|
|
21
|
return; |
|
247
|
|
|
|
|
|
|
}, |
|
248
|
2
|
|
|
|
|
15
|
); |
|
249
|
|
|
|
|
|
|
} |
|
250
|
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
sub export { |
|
252
|
1
|
|
|
1
|
1
|
103
|
_patch_import( 'force', @_ ); |
|
253
|
1
|
|
|
|
|
3
|
return; |
|
254
|
|
|
|
|
|
|
} |
|
255
|
|
|
|
|
|
|
|
|
256
|
|
|
|
|
|
|
sub exportable { |
|
257
|
1
|
|
|
1
|
1
|
7503
|
_patch_import( 'provide', @_ ); |
|
258
|
1
|
|
|
|
|
2
|
return; |
|
259
|
|
|
|
|
|
|
} |
|
260
|
|
|
|
|
|
|
|
|
261
|
|
|
|
|
|
|
1; |
|
262
|
|
|
|
|
|
|
|
|
263
|
|
|
|
|
|
|
__END__ |