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

Potters Bar Town vs St Albans City

Club Friendlies 4 · World · 03 Aug 2026, 18:30 UTC

Final score
1 : 3
Result
Won
Pick
St Albans City
Market
1x2
Model prob.
35.0%
Best price
3.77
Min odds
3.23
Stake factor
3.00

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)
Trd+xbOGDaoqgdQBkyOJzCdLk+u60McmxtPhRRH7orN0DrOWu0ksuaX7T7avIur3BNwPYzWOcpJdKIPPVXI4YW57iyB6zUubr0mjRsQho+5XbI+ir5wJR5GiE3+Szyt/3I2oOxriNjTHdg33Aef368/porG4y+7phRTRTMJFZ+xLSnANHAMRBnah7YRyibYS6pTMxK+2xhNnt6MYycrSne7SlfYYKBXoywcBgWkEy4wUtetjtV51omCOnEW9XIifdm6FjY1SsdNhaKBArSEIOOXo+l2GonttAlknxgqNYWgl5/jLXAoQBfJNKoC9q1PyFyXhdrcTWSwFFMvZamm0vxQHyB7DVO+ZSsqyHpA=
key fingerprint sha256: 40f59023949c8ea85a771546d7b4fda4821ede50ebcc5d95e587c94b437732f7
Decrypt it & read the pick
Decryption key (released after the match)
b87bba199f95dda590f90173ed4edbc6281a66c6d5063e90bcbf4dc8d4028940
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("Trd+xbOGDaoqgdQBkyOJzCdLk+u60McmxtPhRRH7orN0DrOWu0ksuaX7T7avIur3BNwPYzWOcpJdKIPPVXI4YW57iyB6zUubr0mjRsQho+5XbI+ir5wJR5GiE3+Szyt/3I2oOxriNjTHdg33Aef368/porG4y+7phRTRTMJFZ+xLSnANHAMRBnah7YRyibYS6pTMxK+2xhNnt6MYycrSne7SlfYYKBXoywcBgWkEy4wUtetjtV51omCOnEW9XIifdm6FjY1SsdNhaKBArSEIOOXo+l2GonttAlknxgqNYWgl5/jLXAoQBfJNKoC9q1PyFyXhdrcTWSwFFMvZamm0vxQHyB7DVO+ZSsqyHpA="), c => c.charCodeAt(0));
const key  = Uint8Array.from("b87bba199f95dda590f90173ed4edbc6281a66c6d5063e90bcbf4dc8d4028940".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): b87bba199f95dda590f90173ed4edbc6281a66c6d5063e90bcbf4dc8d4028940
  • IV / nonce (hex): 4eb77ec5b3860daa2a81d401
  • Ciphertext (hex): 932389cc274b93ebbad0c726c6d3e14511fba2b3740eb396bb492cb9a5fb4fb6af22eaf704dc0f63358e72925d2883cf557238616e7b8b207acd4b9baf49a346c421a3ee576c8fa2af9c094791a2137f92cf2b7fdc8da83b1ae23634c7760df701e7f7ebcfe9a2b1b8cbeee98514d14cc24567ec4b4a700d1c03110676a1ed847289b612ea94ccc4afb6c61367b7a318c9cad29deed295f6182815e8cb0701816904cb8c14b5eb63b55e75a2608e9c45bd5c889f766e858d8d52b1d36168a040ad210838e5e8fa5d86a27b6d025927c60a8d616825e7f8cb5c0a1005f24d2a80bdab53f21725e176b713592c0514cbd96a
  • Auth tag (hex): 69b4bf1407c81ec354ef994acab21e90

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 #960898 · 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.