| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
1
|
|
|
1
|
|
157680
|
use utf8; |
|
|
1
|
|
|
|
|
250
|
|
|
|
1
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
|
|
package Finance::Tax::Aruba; |
|
3
|
|
|
|
|
|
|
our $VERSION = '0.012'; |
|
4
|
1
|
|
|
1
|
|
788
|
use Moose; |
|
|
1
|
|
|
|
|
470269
|
|
|
|
1
|
|
|
|
|
9
|
|
|
5
|
1
|
|
|
1
|
|
11206
|
use namespace::autoclean; |
|
|
1
|
|
|
|
|
12843
|
|
|
|
1
|
|
|
|
|
8
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
# ABSTRACT: A package that deals with tax calculations for Aruba |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
__END__ |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=pod |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=encoding UTF-8 |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Finance::Tax::Aruba - A package that deals with tax calculations for Aruba |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 VERSION |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
version 0.012 |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This is a suite that deals with tax calculations for the island of Aruba. |
|
28
|
|
|
|
|
|
|
Currently only income taxes for individuals are supported in their most basic |
|
29
|
|
|
|
|
|
|
levels. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
L<Finance::Tax::Aruba::Income> |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Wesley Schwengle <waterkip@cpan.org> |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This software is Copyright (c) 2020 by Wesley Schwengle. |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This is free software, licensed under: |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The (three-clause) BSD License |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |