Sign in
← All matches
✅ Cryptographically verified · sealed pick #1171

Philippines vs Thailand

ASEAN Championship · Asia · 04 Aug 2026, 13:00 UTC

Final score
0 : 1
Result
Won
Pick
Thailand
Market
1x2
Model prob.
76.0%
Best price
1.44
Min odds
1.39
Stake factor
1.70

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
gMw8Rm6u3xZ+pgMIKVMLttWowh3L6fC6KNqaVjZnM2VlTHRjLK2Noh0Pug6jlxbCApI3h/4zydIoVqGAmmSMjI8pqAlFgvnoUgQaINh0SxT6haXftxOlxRbQEydCnCXo5bARTaeBW1zgc7r1Mp4ssXGAXHsV7qXqKNnFaYH7xHk08Sl9DHdGtw0wbii1YjYqrmj9nx0jkvEm4M9ygMC07Kq+2fPcCqCqV+NpBLLhfWijUQG+B6o8/8sF8ntE6dA0PLFaSc1uHvEAYOnzga4Vk7ZAO7nkDOF1dix4vHc518T5nyfYUOIgmoaTUFDUnFmu3U7fuSJrlZF3v55Yn4xOa5/6TlK4KmF7
key fingerprint sha256: 31608b624196f4c0195fd605a088974c47304824c847734f8a36a8e22d771a44
Decrypt it & read the pick
Decryption key (released after the match)
c0404412aaf4652e2e19e86ce2975abee392629ada3375747cbf6ff3a1a0a3cd
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("gMw8Rm6u3xZ+pgMIKVMLttWowh3L6fC6KNqaVjZnM2VlTHRjLK2Noh0Pug6jlxbCApI3h/4zydIoVqGAmmSMjI8pqAlFgvnoUgQaINh0SxT6haXftxOlxRbQEydCnCXo5bARTaeBW1zgc7r1Mp4ssXGAXHsV7qXqKNnFaYH7xHk08Sl9DHdGtw0wbii1YjYqrmj9nx0jkvEm4M9ygMC07Kq+2fPcCqCqV+NpBLLhfWijUQG+B6o8/8sF8ntE6dA0PLFaSc1uHvEAYOnzga4Vk7ZAO7nkDOF1dix4vHc518T5nyfYUOIgmoaTUFDUnFmu3U7fuSJrlZF3v55Yn4xOa5/6TlK4KmF7"), c => c.charCodeAt(0));
const key  = Uint8Array.from("c0404412aaf4652e2e19e86ce2975abee392629ada3375747cbf6ff3a1a0a3cd".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): c0404412aaf4652e2e19e86ce2975abee392629ada3375747cbf6ff3a1a0a3cd
  • IV / nonce (hex): 80cc3c466eaedf167ea60308
  • Ciphertext (hex): 29530bb6d5a8c21dcbe9f0ba28da9a5636673365654c74632cad8da21d0fba0ea39716c202923787fe33c9d22856a1809a648c8c8f29a8094582f9e852041a20d8744b14fa85a5dfb713a5c516d01327429c25e8e5b0114da7815b5ce073baf5329e2cb171805c7b15eea5ea28d9c56981fbc47934f1297d0c7746b70d306e28b562362aae68fd9f1d2392f126e0cf7280c0b4ecaabed9f3dc0aa0aa57e36904b2e17d68a35101be07aa3cffcb05f27b44e9d0343cb15a49cd6e1ef10060e9f381ae1593b6403bb9e40ce175762c78bc7739d7c4f99f27d850e2209a86935050d49c59aedd4edfb9226b9591
  • Auth tag (hex): 77bf9e589f8c4e6b9ffa4e52b82a617b

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #960857 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.