PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u264723324/domains/nudaskincare.org/public_html/admin/

Viewing File: admin-transactions.php

<?php
// 🔴 DEBUG MODE ON
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

session_start();

// 1. STRICT SECURITY PERIMETER
if (!isset($_SESSION['admin_id']) || !isset($_SESSION['is_admin']) || $_SESSION['is_admin'] !== true) {
    session_destroy();
    header("Location: admin-login.php");
    exit();
}

$host = 'localhost';
$dbname = 'u264723324_NuDb';
$user = 'u264723324_NuUu'; 
$pass = '@WdsdsdAq1231';

try {
    $pdo = new PDO("mysql:host=$host;dbname=$dbname;charset=utf8mb4", $user, $pass);
    $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

    // =======================================================
    // AJAX HANDLER: GOD MODE TRANSACTION REVERSAL
    // =======================================================
    if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['ajax_action'])) {
        header('Content-Type: application/json');
        
        if ($_POST['ajax_action'] === 'reverse_tx') {
            $txId = filter_input(INPUT_POST, 'tx_id', FILTER_VALIDATE_INT);
            $authKey = filter_input(INPUT_POST, 'auth_key', FILTER_SANITIZE_STRING);

            if (!$txId) {
                echo json_encode(['success' => false, 'message' => 'Invalid Transaction ID.']);
                exit;
            }

            try {
                $pdo->beginTransaction();

                // 1. Fetch the exact transaction details
                $stmtTx = $pdo->prepare("SELECT account_id, transaction_type, amount, status FROM transactions WHERE id = ? FOR UPDATE");
                $stmtTx->execute([$txId]);
                $txData = $stmtTx->fetch(PDO::FETCH_ASSOC);

                if (!$txData) {
                    throw new Exception("Transaction not found in ledger.");
                }
                if ($txData['status'] === 'reversed') {
                    throw new Exception("Transaction has already been reversed.");
                }

                // 2. Mathematically reverse the funds on the actual account
                // If it was a debit (money left), we add it back (+). If it was a credit, we claw it back (-).
                $mathOperator = ($txData['transaction_type'] === 'debit') ? '+' : '-';
                $amount = $txData['amount'];
                $accId = $txData['account_id'];

                $stmtAcc = $pdo->prepare("UPDATE accounts SET balance = balance $mathOperator ? WHERE id = ?");
                $stmtAcc->execute([$amount, $accId]);

                // 3. Mark the transaction as permanently reversed
                $stmtUpdateTx = $pdo->prepare("UPDATE transactions SET status = 'reversed', description = CONCAT(description, ' [REVERSED BY ADMIN]') WHERE id = ?");
                $stmtUpdateTx->execute([$txId]);

                $pdo->commit();
                echo json_encode(['success' => true, 'message' => 'GODMODE: Transaction Reversed and Funds Adjusted.']);
            } catch (Exception $e) {
                $pdo->rollBack();
                echo json_encode(['success' => false, 'message' => 'REVERSAL FAILED: ' . $e->getMessage()]);
            }
            exit;
        }
    }

    // =======================================================
    // FETCH GLOBAL LEDGER (God Eye View)
    // =======================================================
    // Join transactions with accounts and users to see exactly who did what
    $query = "
        SELECT 
            t.id, t.transaction_type, t.amount, t.description, t.status, t.created_at,
            a.account_number, a.currency,
            u.first_name, u.last_name, u.email
        FROM transactions t
        JOIN accounts a ON t.account_id = a.id
        JOIN users u ON a.user_id = u.id
        ORDER BY t.created_at DESC
        LIMIT 100
    ";
    $stmtTx = $pdo->query($query);
    $ledgerList = $stmtTx->fetchAll(PDO::FETCH_ASSOC);

    // Fetch Quick Stats
    $stmtVol = $pdo->query("SELECT SUM(amount) FROM transactions WHERE status = 'completed' AND DATE(created_at) = CURDATE()");
    $dailyVolume = $stmtVol->fetchColumn() ?: 0;

    $stmtRev = $pdo->query("SELECT COUNT(*) FROM transactions WHERE status = 'reversed'");
    $reversalCount = $stmtRev->fetchColumn() ?: 0;

} catch (PDOException $e) {
    $ledgerList = [];
    $dailyVolume = $reversalCount = 0;
    $dbError = "Ledger Sync Error. Database missing tables? " . $e->getMessage();
}

$adminName = htmlspecialchars($_SESSION['admin_username']);
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Global Ledger - City Prime Admin</title>
    <style>
        :root {
            --bg-deep: #050505; --surface-dark: #0f0f0f; --surface-light: #1a1a1a;
            --border-red: #7f1d1d; --danger: #ef4444; --danger-glow: rgba(239, 68, 68, 0.15);
            --text-main: #f8fafc; --text-muted: #64748b; --success: #22c55e; --warning: #facc15; --purple: #a855f7;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Courier New", Courier, monospace; }
        body { background-color: var(--bg-deep); color: var(--text-main); display: flex; min-height: 100vh; overflow-x: hidden; }
        
        .grid-bg { position: fixed; width: 100vw; height: 100vh; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 30px 30px; z-index: 0; pointer-events: none;}

        /* SIDEBAR */
        .sidebar { width: 260px; background: var(--surface-dark); border-right: 1px solid var(--border-red); height: 100vh; position: sticky; top: 0; display: flex; flex-direction: column; padding: 24px 0; z-index: 10;}
        .brand { text-align: center; margin-bottom: 40px; padding: 0 24px;}
        .brand h2 { color: var(--danger); letter-spacing: 2px; text-transform: uppercase; font-size: 1.4rem; text-shadow: 0 0 10px rgba(239,68,68,0.4);}
        .brand p { color: var(--text-muted); font-size: 0.75rem; letter-spacing: 1px; margin-top: 4px; }
        
        .nav-links { display: flex; flex-direction: column; gap: 8px; padding: 0 16px; flex: 1;}
        .nav-links a { text-decoration: none; color: var(--text-muted); padding: 14px 20px; border-radius: 8px; transition: 0.2s; display: flex; align-items: center; gap: 12px; font-weight: bold; letter-spacing: 1px;}
        .nav-links a:hover, .nav-links a.active { background: var(--danger-glow); color: var(--danger); border: 1px solid rgba(239,68,68,0.3);}
        
        .logout-box { padding: 0 16px; margin-top: auto;}
        .logout-btn { display: block; text-align: center; background: transparent; color: var(--danger); border: 1px solid var(--danger); padding: 14px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: 0.2s; letter-spacing: 1px;}
        .logout-btn:hover { background: var(--danger); color: white; box-shadow: 0 0 15px rgba(239,68,68,0.4);}

        /* MAIN CONTENT */
        .main-content { flex: 1; padding: 32px 40px; position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; width: 100%;}
        
        .top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 24px;}
        .page-title h1 { font-size: 1.8rem; font-weight: normal; letter-spacing: 2px;}
        .page-title p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px;}
        
        .godmode-badge { background: rgba(168, 85, 247, 0.1); border: 1px solid var(--purple); color: var(--purple); padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; letter-spacing: 2px; text-shadow: 0 0 10px rgba(168,85,247,0.5); box-shadow: inset 0 0 10px rgba(168,85,247,0.2);}

        /* STATS GRID */
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px;}
        .stat-card { background: var(--surface-dark); border: 1px solid rgba(255,255,255,0.05); padding: 24px; border-radius: 16px; position: relative;}
        .stat-title { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;}
        .stat-value { font-size: 2rem; font-weight: bold;}
        .stat-value.green { color: var(--success); }
        .stat-value.red { color: var(--danger); }

        /* DATA TABLE */
        .controls-bar { display: flex; justify-content: space-between; margin-bottom: 24px; gap: 16px;}
        .search-box { flex: 1; max-width: 400px; position: relative;}
        .search-box input { width: 100%; background: var(--surface-dark); border: 1px solid rgba(255,255,255,0.1); color: var(--text-main); padding: 12px 16px; border-radius: 8px; outline: none; font-family: monospace;}
        .search-box input:focus { border-color: var(--danger);}

        .data-panel { background: var(--surface-dark); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; overflow-x: auto; min-height: 500px;}
        table { width: 100%; border-collapse: collapse; min-width: 1000px;}
        th { text-align: left; padding: 16px; color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.1); letter-spacing: 1px; font-weight: normal;}
        td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.02); font-size: 0.95rem; vertical-align: middle;}
        tr:last-child td { border-bottom: none;}
        tr:hover td { background: rgba(255,255,255,0.02);}
        
        .td-name { font-weight: bold; margin-bottom: 4px; display: block; font-size: 1rem; color: var(--text-main);}
        .td-sub { color: var(--text-muted); font-size: 0.8rem;}
        .td-txid { font-family: monospace; color: var(--text-muted); font-size: 0.8rem;}
        
        .amt-credit { color: var(--success); font-weight: bold; font-family: monospace; font-size: 1.1rem;}
        .amt-debit { color: var(--danger); font-weight: bold; font-family: monospace; font-size: 1.1rem;}

        .badge { padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; display: inline-block;}
        .badge.completed { background: rgba(34, 197, 94, 0.1); color: var(--success); border: 1px solid rgba(34, 197, 94, 0.3);}
        .badge.pending { background: rgba(250, 204, 21, 0.1); color: var(--warning); border: 1px solid rgba(250, 204, 21, 0.3);}
        .badge.reversed { background: rgba(168, 85, 247, 0.1); color: var(--purple); border: 1px solid rgba(168, 85, 247, 0.3);}
        .badge.failed { background: rgba(239, 68, 68, 0.1); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.3);}

        .action-btn { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--danger); padding: 8px 16px; border-radius: 6px; cursor: pointer; font-size: 0.85rem; transition: 0.2s; font-family: inherit; font-weight: bold;}
        .action-btn:hover { background: var(--danger); color: white; box-shadow: 0 0 10px rgba(239,68,68,0.4);}
        .action-btn.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; border-color: transparent; background: rgba(255,255,255,0.05); color: var(--text-muted);}

        /* MODAL (REVERSE TX) */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.3s; z-index: 1000; }
        .modal-overlay.active { opacity: 1; pointer-events: all; }
        .modal-container { background: var(--surface-dark); width: 100%; max-width: 500px; border-radius: 16px; padding: 32px; border: 1px solid var(--purple); box-shadow: 0 0 30px rgba(168,85,247,0.15); transform: translateY(20px); transition: 0.3s;}
        .modal-overlay.active .modal-container { transform: translateY(0); }
        
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px;}
        .modal-header h3 { font-size: 1.4rem; color: var(--purple); text-transform: uppercase; letter-spacing: 1px;}
        .close-btn { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: 0.2s;}
        .close-btn:hover { color: var(--text-main);}
        
        .tx-details-box { background: var(--bg-deep); padding: 20px; border-radius: 8px; border: 1px dashed var(--danger); margin-bottom: 24px; font-family: monospace;}
        .tx-row { display: flex; justify-content: space-between; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px;}
        .tx-row:last-child { border: none; margin: 0; padding: 0;}
        .tx-row span { color: var(--text-muted);}
        .tx-row strong { color: white; font-size: 1.1rem;}

        .warning-text { color: var(--danger); font-size: 0.85rem; margin-bottom: 24px; line-height: 1.5; font-weight: bold; background: rgba(239,68,68,0.1); padding: 12px; border-left: 3px solid var(--danger);}

        .btn-reverse { width: 100%; background: rgba(168, 85, 247, 0.1); color: var(--purple); border: 1px solid var(--purple); padding: 16px; border-radius: 8px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: 0.2s; text-transform: uppercase; letter-spacing: 2px;}
        .btn-reverse:hover { background: var(--purple); color: white; box-shadow: 0 0 20px rgba(168,85,247,0.5);}

        /* TOAST */
        .toast { position: fixed; top: 20px; right: -300px; background: var(--success); color: white; padding: 16px 24px; border-radius: 8px; font-weight: bold; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: 0.4s; z-index: 2000; font-family: monospace; letter-spacing: 1px;}
        .toast.show { right: 20px; }
        .toast.error { background: var(--danger); }
    </style>
</head>
<body oncontextmenu="return false;">

<div class="grid-bg"></div>

<aside class="sidebar">
    <div class="brand">
        <h2>City Prime</h2>
        <p>COMMAND CENTER</p>
    </div>
    <nav class="nav-links">
        <a href="admin-dashboard.php"><span>[1]</span> Dashboard</a>
        <a href="admin-users.php"><span>[2]</span> User Matrix</a>
        <a href="admin-kyc.php"><span>[3]</span> KYC Approvals</a>
        <a href="admin-cards.php"><span>[4]</span> Card Requests</a>
        <a href="admin-transactions.php" class="active"><span>[5]</span> Ledgers</a>
        <a href="admin-settings.php"><span>[6]</span> System Config</a>
    </nav>
    <div class="logout-box">
        <a href="admin-logout.php" class="logout-btn">TERMINATE SESSION</a>
    </div>
</aside>

<main class="main-content">
    <div class="top-bar">
        <div class="page-title">
            <h1>Global Ledger</h1>
            <p>Live stream of all financial movements across the network.</p>
        </div>
        <div class="godmode-badge">
            STATUS: GODMODE ACTIVE
        </div>
    </div>

    <div class="stats-grid">
        <div class="stat-card">
            <div class="stat-title">Daily Volume (24h)</div>
            <div class="stat-value green">+$<?php echo number_format($dailyVolume, 2); ?></div>
        </div>
        <div class="stat-card">
            <div class="stat-title">Active Nodes</div>
            <div class="stat-value">14</div>
        </div>
        <div class="stat-card">
            <div class="stat-title">Total Reversals</div>
            <div class="stat-value red" id="reversalCountUi"><?php echo number_format($reversalCount); ?></div>
        </div>
    </div>

    <div class="controls-bar">
        <div class="search-box">
            <input type="text" id="searchInput" placeholder="Search by TX ID, Account, or Name..." onkeyup="filterTable()">
        </div>
    </div>

    <div class="data-panel">
        <?php if (isset($dbError)): ?>
            <div style="color: var(--danger); margin-bottom: 16px;"><?php echo $dbError; ?></div>
        <?php endif; ?>

        <table id="ledgerTable">
            <thead>
                <tr>
                    <th>TX ID / Date</th>
                    <th>Account Info</th>
                    <th>Description</th>
                    <th>Amount</th>
                    <th>Status</th>
                    <th>Intercept</th>
                </tr>
            </thead>
            <tbody>
                <?php if (empty($ledgerList)): ?>
                    <tr><td colspan="6" style="text-align:center; padding:40px; color:var(--text-muted); font-style:italic;">No transactions found in ledger. (Did you buy a card yet?)</td></tr>
                <?php else: ?>
                    <?php foreach ($ledgerList as $tx): 
                        $isReversed = ($tx['status'] === 'reversed');
                        $isCredit = ($tx['transaction_type'] === 'credit');
                        $amtClass = $isCredit ? 'amt-credit' : 'amt-debit';
                        $amtSign = $isCredit ? '+' : '-';
                    ?>
                        <tr>
                            <td>
                                <span class="td-txid">TXN-<?php echo str_pad($tx['id'], 8, '0', STR_PAD_LEFT); ?></span>
                                <span class="td-sub" style="display: block; margin-top: 4px;">
                                    <?php echo date('M d, Y H:i:s', strtotime($tx['created_at'])); ?>
                                </span>
                            </td>
                            <td>
                                <span class="td-name"><?php echo htmlspecialchars($tx['first_name'] . ' ' . $tx['last_name']); ?></span>
                                <span class="td-sub">ACC: ****<?php echo substr($tx['account_number'], -4); ?></span>
                            </td>
                            <td style="max-width: 250px; line-height: 1.4;">
                                <span id="desc-<?php echo $tx['id']; ?>"><?php echo htmlspecialchars($tx['description']); ?></span>
                            </td>
                            <td class="<?php echo $amtClass; ?>" style="white-space: nowrap;">
                                <?php echo $amtSign; ?>$<?php echo number_format($tx['amount'], 2); ?>
                            </td>
                            <td>
                                <span class="badge <?php echo $tx['status']; ?>" id="badge-<?php echo $tx['id']; ?>">
                                    <?php echo strtoupper($tx['status']); ?>
                                </span>
                            </td>
                            <td>
                                <button class="action-btn <?php echo $isReversed ? 'disabled' : ''; ?>" id="btn-<?php echo $tx['id']; ?>" onclick="openReverseModal(
                                    <?php echo $tx['id']; ?>, 
                                    '<?php echo addslashes($tx['first_name'] . ' ' . $tx['last_name']); ?>', 
                                    '<?php echo $amtSign . '$' . number_format($tx['amount'], 2); ?>',
                                    '<?php echo addslashes($tx['description']); ?>',
                                    '<?php echo addslashes($tx['transaction_type']); ?>'
                                )">REVERSE</button>
                            </td>
                        </tr>
                    <?php endforeach; ?>
                <?php endif; ?>
            </tbody>
        </table>
    </div>
</main>

<div class="modal-overlay" id="reverseModal">
    <div class="modal-container">
        <div class="modal-header">
            <h3>Intercept Transaction</h3>
            <button class="close-btn" onclick="closeModal()">&times;</button>
        </div>
        
        <div class="tx-details-box">
            <div class="tx-row">
                <span>Target User:</span>
                <strong id="modalUser">NAME</strong>
            </div>
            <div class="tx-row">
                <span>Value:</span>
                <strong id="modalAmt" style="color: var(--danger);">AMOUNT</strong>
            </div>
            <div class="tx-row">
                <span>Type:</span>
                <strong id="modalType">TYPE</strong>
            </div>
            <div class="tx-row">
                <span>Details:</span>
                <strong id="modalDesc" style="font-size: 0.85rem; max-width: 200px; text-align: right;">DESC</strong>
            </div>
        </div>

        <div class="warning-text">
            CRITICAL WARNING: Executing a reversal will directly modify the user's live account balance. This action will be permanently logged in the God-Mode audit trail and cannot be undone.
        </div>

        <input type="hidden" id="modalTxId">

        <button class="btn-reverse" id="executeBtn" onclick="executeReversal()">AUTHORIZE REVERSAL</button>
    </div>
</div>

<div id="toast" class="toast">Command Executed</div>

<script>
    let totalReversals = <?php echo $reversalCount; ?>;

    // --- Toast Notification ---
    function showToast(msg, isError = false) {
        const toast = document.getElementById('toast');
        toast.textContent = msg;
        toast.className = 'toast show ' + (isError ? 'error' : '');
        setTimeout(() => { toast.classList.remove('show'); }, 30
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`