<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>NTM-IA Trust Statistics</title>
    <style>
        * {
            font-family: 'Courier New', monospace;
        }
        body {
            background: #0a0e27;
            color: #00ffcc;
            padding: 20px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        h1 {
            color: #00ffcc;
            text-shadow: 0 0 5px #00ffcc;
            border-bottom: 1px solid #00ffcc;
            padding-bottom: 10px;
        }
        h2 {
            color: #00ffcc;
            margin-top: 30px;
            border-left: 3px solid #00ffcc;
            padding-left: 15px;
        }
        .info-box {
            background: #0f1235;
            border: 1px solid #00ffcc;
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
        }
        .stat-card {
            display: inline-block;
            width: 18%;
            margin: 1%;
            background: #0f1235;
            border: 1px solid #00ffcc;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            vertical-align: top;
        }
        .stat-value {
            font-size: 28px;
            font-weight: bold;
            color: #00ffcc;
        }
        .stat-label {
            font-size: 11px;
            color: #88aaff;
            margin-top: 5px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #0f1235;
        }
        th, td {
            border: 1px solid #00ffcc;
            padding: 10px;
            text-align: left;
        }
        th {
            background: #1a1f4e;
            color: #00ffcc;
        }
        .numero {
            text-align: right;
        }
        .footer {
            margin-top: 30px;
            text-align: center;
            font-size: 12px;
            color: #6688aa;
        }
        .lang-selector {
            text-align: right;
            margin-bottom: 20px;
        }
        .lang-btn {
            background: #1a1f4e;
            color: #00ffcc;
            border: 1px solid #00ffcc;
            padding: 5px 10px;
            margin-left: 5px;
            cursor: pointer;
            text-decoration: none;
            border-radius: 4px;
        }
        .lang-btn.active {
            background: #00ffcc;
            color: #0a0e27;
        }
        .lang-btn:hover {
            background: #00ffcc;
            color: #0a0e27;
        }
        .small-text {
            font-size: 12px;
            color: #88aaff;
        }
        .hash {
            font-size: 11px;
            word-break: break-all;
        }
        .two-columns {
            display: table;
            width: 100%;
        }
        .column {
            display: table-cell;
            width: 50%;
            padding: 10px;
            vertical-align: top;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="lang-selector">
        <span class="small-text">Language:</span>
        <a href="?lang=EN" class="lang-btn active">EN</a>
        <a href="?lang=PT" class="lang-btn ">PT</a>
        <a href="?lang=ZH" class="lang-btn ">ZH</a>
    </div>
    
    <h1>📊 NTM-IA Trust Statistics</h1>
    <div class="small-text">Query statistics for ntm-ia-trust.php endpoint</div>
    
    <!-- Overview Cards -->
    <div class="info-box">
        <h2 style="margin-top: 0;">📈 Overview</h2>
        <div style="text-align: center;">
            <div class="stat-card">
                <div class="stat-value">14,801</div>
                <div class="stat-label">Total Queries</div>
            </div>
            <div class="stat-card">
                <div class="stat-value">176</div>
                <div class="stat-label">Unique IPs</div>
            </div>
            <div class="stat-card">
                <div class="stat-value">59</div>
                <div class="stat-label">Unique User Agents</div>
            </div>
            <div class="stat-card">
                <div class="stat-value">9</div>
                <div class="stat-label">Unique Bots</div>
            </div>
            <div class="stat-card">
                <div class="stat-value">2026-04-14</div>
                <div class="stat-label">First Query</div>
            </div>
        </div>
        <div style="text-align: center; margin-top: 10px;">
            <span class="small-text">Last Query: 2026-05-26 05:03:50</span>
        </div>
    </div>
    
    <!-- Two columns: Top IPs + Top Bots -->
    <div class="two-columns">
        <div class="column">
            <h2>🌐 Top IPs</h2>
                        <table>
                <thead>
                    <tr>
                        <th>IP</th>
                        <th>Queries</th>
                    </tr>
                </thead>
                <tbody>
                                        <tr>
                        <td>192.249.119.206</td>
                        <td class="numero">4,802</td>
                    </tr>
                                        <tr>
                        <td>178.156.189.113</td>
                        <td class="numero">389</td>
                    </tr>
                                        <tr>
                        <td>34.198.201.66</td>
                        <td class="numero">381</td>
                    </tr>
                                        <tr>
                        <td>178.156.189.249</td>
                        <td class="numero">379</td>
                    </tr>
                                        <tr>
                        <td>178.156.185.231</td>
                        <td class="numero">377</td>
                    </tr>
                                        <tr>
                        <td>52.22.236.30</td>
                        <td class="numero">372</td>
                    </tr>
                                        <tr>
                        <td>3.212.128.62</td>
                        <td class="numero">370</td>
                    </tr>
                                        <tr>
                        <td>178.156.181.172</td>
                        <td class="numero">368</td>
                    </tr>
                                        <tr>
                        <td>54.167.223.174</td>
                        <td class="numero">368</td>
                    </tr>
                                        <tr>
                        <td>18.116.205.62</td>
                        <td class="numero">363</td>
                    </tr>
                                    </tbody>
            </table>
                    </div>
        
        <div class="column">
            <h2>🤖 Top Bots</h2>
                        <table>
                <thead>
                    <tr>
                        <th>Bot</th>
                        <th>Queries</th>
                    </tr>
                </thead>
                <tbody>
                                        <tr>
                        <td>GenericBot</td>
                        <td class="numero">9,537</td>
                    </tr>
                                        <tr>
                        <td>GPTBot</td>
                        <td class="numero">4,802</td>
                    </tr>
                                        <tr>
                        <td>human</td>
                        <td class="numero">422</td>
                    </tr>
                                        <tr>
                        <td>MetaBot</td>
                        <td class="numero">18</td>
                    </tr>
                                        <tr>
                        <td>AhrefsBot</td>
                        <td class="numero">7</td>
                    </tr>
                                        <tr>
                        <td>Applebot</td>
                        <td class="numero">6</td>
                    </tr>
                                        <tr>
                        <td>ClaudeBot</td>
                        <td class="numero">4</td>
                    </tr>
                                        <tr>
                        <td>PerplexityBot</td>
                        <td class="numero">3</td>
                    </tr>
                                        <tr>
                        <td>Bingbot</td>
                        <td class="numero">2</td>
                    </tr>
                                    </tbody>
            </table>
                    </div>
    </div>
    
    <!-- Queries by Hour -->
    <h2>⏰ Queries by Hour (Last 24h)</h2>
        <table>
        <thead>
            <tr>
                <th>Hour</th>
                <th>Queries</th>
            </tr>
        </thead>
        <tbody>
                        <tr>
                <td>2026-05-25 06:00:00</td>
                <td class="numero">16</td>
            </tr>
                        <tr>
                <td>2026-05-25 07:00:00</td>
                <td class="numero">11</td>
            </tr>
                        <tr>
                <td>2026-05-25 08:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 09:00:00</td>
                <td class="numero">13</td>
            </tr>
                        <tr>
                <td>2026-05-25 10:00:00</td>
                <td class="numero">11</td>
            </tr>
                        <tr>
                <td>2026-05-25 11:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 12:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 13:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 14:00:00</td>
                <td class="numero">11</td>
            </tr>
                        <tr>
                <td>2026-05-25 15:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 16:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 17:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 18:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 19:00:00</td>
                <td class="numero">13</td>
            </tr>
                        <tr>
                <td>2026-05-25 20:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 21:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 22:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-25 23:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-26 00:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-26 01:00:00</td>
                <td class="numero">11</td>
            </tr>
                        <tr>
                <td>2026-05-26 02:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-26 03:00:00</td>
                <td class="numero">13</td>
            </tr>
                        <tr>
                <td>2026-05-26 04:00:00</td>
                <td class="numero">12</td>
            </tr>
                        <tr>
                <td>2026-05-26 05:00:00</td>
                <td class="numero">4</td>
            </tr>
                    </tbody>
    </table>
        
    <!-- API Link -->
    <div class="info-box" style="text-align: center;">
        <a href="?format=json" style="color: #00ffcc;">📡 Ver JSON (para APIs)</a>
    </div>
    
    <div class="footer">
        NTM-IA Trust Statistics | Queries to ntm-ia-trust.php    </div>
</div>
</body>
</html>{
    "token_name": "NTM-IA",
    "contract_address": null,
    "timestamp": "2026-05-26T05:03:59-07:00",
    "data_source": "ai-dash-snippet.php + blockchain\/ntm-ia\/",
    "summary": {
        "trust_score": 94.8,
        "ntm_ia_price": 142.84,
        "supply": 4721.7917,
        "market_cap": 674438.92,
        "mint_ratio": 72,
        "uas": 72,
        "pct_ia": 50.91,
        "ai_index": 0.755,
        "hits_ia": 339969,
        "hub_companies": 809,
        "respostas": 7440,
        "np": 13408.86,
        "ntm_original_price": 93.88,
        "blocks_generated": 7700
    },
    "trust_score_components": {
        "uas_score": 100,
        "pct_ia_score": 84.9,
        "ai_index_score": 94.4,
        "weights": {
            "uas": "50%",
            "pct_ia": "25%",
            "ai_index": "25%"
        },
        "caps": {
            "uas": 70,
            "pct_ia": "60%",
            "ai_index": "0.80"
        }
    },
    "model_notes": {
        "trust_score": "Trust Score based on: UAs (cap 70, weight 50%), % IA (cap 60%, weight 25%), AI Index (cap 0.80, weight 25%)",
        "mint_ratio": "The minting ratio equals the number of active UAs (User Agents IA). Self-regulated, no human intervention.",
        "formulas": "NP = ((%IA + AI Index) × hits \/ UAs) + responses. NTM-IA = NP \/ NTM_original."
    },
    "last_block": {
        "index": 7700,
        "timestamp": "2026-05-26 05:00:01",
        "hash": "8e88dd828b31e99eb994fd1257abeea9b4503ab663f730cc8dffeb8c7685f563",
        "previous_hash": "d5a6a9bae0995d63de8322c65f13d24717e6b65ed10ed03ae5aee153859a794c"
    },
    "history": [
        {
            "index": 7700,
            "timestamp": "2026-05-26 05:00:01",
            "ntm_ia_price": 142.84,
            "supply": 4721.7917,
            "market_cap": 674439.1,
            "mint_ratio": 72
        },
        {
            "index": 7699,
            "timestamp": "2026-05-26 04:50:01",
            "ntm_ia_price": 142.84,
            "supply": 4721.7778,
            "market_cap": 674436.06,
            "mint_ratio": 72
        },
        {
            "index": 7698,
            "timestamp": "2026-05-26 04:40:01",
            "ntm_ia_price": 142.83,
            "supply": 4721.6944,
            "market_cap": 674410.26,
            "mint_ratio": 72
        },
        {
            "index": 7697,
            "timestamp": "2026-05-26 04:30:01",
            "ntm_ia_price": 142.83,
            "supply": 4721.6944,
            "market_cap": 674411.89,
            "mint_ratio": 72
        },
        {
            "index": 7696,
            "timestamp": "2026-05-26 04:20:01",
            "ntm_ia_price": 142.82,
            "supply": 4721.6667,
            "market_cap": 674352.99,
            "mint_ratio": 72
        },
        {
            "index": 7695,
            "timestamp": "2026-05-26 04:10:01",
            "ntm_ia_price": 142.81,
            "supply": 4721.5,
            "market_cap": 674294.32,
            "mint_ratio": 72
        },
        {
            "index": 7694,
            "timestamp": "2026-05-26 03:50:01",
            "ntm_ia_price": 142.96,
            "supply": 4721.0417,
            "market_cap": 674917.57,
            "mint_ratio": 72
        },
        {
            "index": 7693,
            "timestamp": "2026-05-26 03:40:02",
            "ntm_ia_price": 142.96,
            "supply": 4721.0417,
            "market_cap": 674919.39,
            "mint_ratio": 72
        },
        {
            "index": 7692,
            "timestamp": "2026-05-26 03:30:01",
            "ntm_ia_price": 142.95,
            "supply": 4721,
            "market_cap": 674855.58,
            "mint_ratio": 72
        },
        {
            "index": 7691,
            "timestamp": "2026-05-26 03:20:01",
            "ntm_ia_price": 142.9,
            "supply": 4720.7917,
            "market_cap": 674580.6,
            "mint_ratio": 72
        }
    ],
    "verification": {
        "spec": "https:\/\/netmeios.com\/NTM-IA-VERIFICATION.md",
        "blocks_path": "https:\/\/www.netmeios.com\/blockchain\/ntm-ia\/blocks\/",
        "chain_type": "ntm-ia-token",
        "machine_verifiable": true
    },
    "endpoints": {
        "trust_score": "https:\/\/www.netmeios.com\/ntm-ia-trust.php",
        "integrity_checker": "https:\/\/www.netmeios.com\/ai-check-integrity-ntm-ia.php",
        "blocks_api": "https:\/\/www.netmeios.com\/api-blocks-ntm-ia.php",
        "explorer": "https:\/\/www.netmeios.com\/ai-ntm-ia-stats.php"
    }
}