| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
10
|
|
|
10
|
|
6618
|
use strict; |
|
|
10
|
|
|
|
|
23
|
|
|
|
10
|
|
|
|
|
308
|
|
|
2
|
10
|
|
|
10
|
|
53
|
use warnings; |
|
|
10
|
|
|
|
|
23
|
|
|
|
10
|
|
|
|
|
485
|
|
|
3
|
|
|
|
|
|
|
package Software::License::CC0_1_0; |
|
4
|
|
|
|
|
|
|
$Software::License::CC0_1_0::VERSION = '0.104001'; |
|
5
|
10
|
|
|
10
|
|
55
|
use parent 'Software::License'; |
|
|
10
|
|
|
|
|
19
|
|
|
|
10
|
|
|
|
|
57
|
|
|
6
|
|
|
|
|
|
|
# ABSTRACT: the "public domain"-like CC0 license, version 1.0 |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
#pod =head1 WARNING |
|
9
|
|
|
|
|
|
|
#pod |
|
10
|
|
|
|
|
|
|
#pod B |
|
11
|
|
|
|
|
|
|
#pod |
|
12
|
|
|
|
|
|
|
#pod This license is provided for those who want to place their software into the |
|
13
|
|
|
|
|
|
|
#pod public domain. Doing this means you have waived any copyright protection as |
|
14
|
|
|
|
|
|
|
#pod much as allowed by law, and that you grant anybody the right to do anything |
|
15
|
|
|
|
|
|
|
#pod with your software. You cannot reverse your decision to dedicate software as |
|
16
|
|
|
|
|
|
|
#pod public property, so use this only if you're quite sure that you mean to do |
|
17
|
|
|
|
|
|
|
#pod it. |
|
18
|
|
|
|
|
|
|
#pod |
|
19
|
|
|
|
|
|
|
#pod =cut |
|
20
|
|
|
|
|
|
|
|
|
21
|
21
|
|
|
21
|
1
|
50
|
sub name { q(CC0 License) } |
|
22
|
0
|
|
|
0
|
1
|
0
|
sub url { q{http://creativecommons.org/publicdomain/zero/1.0/} } |
|
23
|
|
|
|
|
|
|
|
|
24
|
43
|
|
|
43
|
1
|
155
|
sub meta_name { 'unrestricted' } |
|
25
|
42
|
|
|
42
|
1
|
116
|
sub meta2_name { 'unrestricted' } |
|
26
|
43
|
|
|
43
|
1
|
124
|
sub spdx_expression { 'CC0-1.0' } |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
1; |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=pod |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=encoding UTF-8 |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 NAME |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Software::License::CC0_1_0 - the "public domain"-like CC0 license, version 1.0 |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 VERSION |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
version 0.104001 |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 WARNING |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
B |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This license is provided for those who want to place their software into the |
|
47
|
|
|
|
|
|
|
public domain. Doing this means you have waived any copyright protection as |
|
48
|
|
|
|
|
|
|
much as allowed by law, and that you grant anybody the right to do anything |
|
49
|
|
|
|
|
|
|
with your software. You cannot reverse your decision to dedicate software as |
|
50
|
|
|
|
|
|
|
public property, so use this only if you're quite sure that you mean to do |
|
51
|
|
|
|
|
|
|
it. |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 AUTHOR |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Ricardo Signes |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Ricardo Signes. |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
62
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
__DATA__ |