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

Anderlecht vs NEC Nijmegen

Club Friendlies 3 · World · 11 Jul 2026, 10:00 UTC

Final score
3 : 2
Result
Won
Pick
Anderlecht
Market
1x2
Model prob.
41.7%
Best price
2.87
Min odds
2.65
Stake factor
2.60

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)
y44vbFshYA4cxFbCdBUCxnH/mkhmNeMeI25QEZMNmBuoYfPjWXeQNgvKD3RwNbz78WYkW0Zi3qb+Y7DGpeH3JZjjt8V4OnCYtvk3WijJ+cWgRiJ51vNvcVF/up8zXYKUHSv5UDu9PcUB3s+IZmGJni1qguulyNAjBqBEC4jZZb7Klkq+HgivrQeD7y1IT2JhW8nOF4OY3vYZwvHP7bKQiPg7lvdvzooY9URFPVuATOAlwGCB7XO+Ffxqn0Ng7e+qc7yqkz0i5+BJpTXtGdfFJdpaUJY1xpCc+1HpbNohIxMVJ42QR6A4OdenlvK7TUyGvhUe+oW8jUbrcS1g+CJrFIsU7LXEf74XIbn1
key fingerprint sha256: c771f72156c7f1d24bf10240d3e3a2ebcb60ffc282ab2ab81f4a57d7390219ff
Decrypt it & read the pick
Decryption key (released after the match)
25ba39e28590ff7824119b042ce09c3ac95ff1ca8bbcd83d4f164acc4fc92e87
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("y44vbFshYA4cxFbCdBUCxnH/mkhmNeMeI25QEZMNmBuoYfPjWXeQNgvKD3RwNbz78WYkW0Zi3qb+Y7DGpeH3JZjjt8V4OnCYtvk3WijJ+cWgRiJ51vNvcVF/up8zXYKUHSv5UDu9PcUB3s+IZmGJni1qguulyNAjBqBEC4jZZb7Klkq+HgivrQeD7y1IT2JhW8nOF4OY3vYZwvHP7bKQiPg7lvdvzooY9URFPVuATOAlwGCB7XO+Ffxqn0Ng7e+qc7yqkz0i5+BJpTXtGdfFJdpaUJY1xpCc+1HpbNohIxMVJ42QR6A4OdenlvK7TUyGvhUe+oW8jUbrcS1g+CJrFIsU7LXEf74XIbn1"), c => c.charCodeAt(0));
const key  = Uint8Array.from("25ba39e28590ff7824119b042ce09c3ac95ff1ca8bbcd83d4f164acc4fc92e87".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): 25ba39e28590ff7824119b042ce09c3ac95ff1ca8bbcd83d4f164acc4fc92e87
  • IV / nonce (hex): cb8e2f6c5b21600e1cc456c2
  • Ciphertext (hex): 741502c671ff9a486635e31e236e5011930d981ba861f3e3597790360bca0f747035bcfbf166245b4662dea6fe63b0c6a5e1f72598e3b7c5783a7098b6f9375a28c9f9c5a0462279d6f36f71517fba9f335d82941d2bf9503bbd3dc501decf886661899e2d6a82eba5c8d02306a0440b88d965beca964abe1e08afad0783ef2d484f62615bc9ce178398def619c2f1cfedb29088f83b96f76fce8a18f544453d5b804ce025c06081ed73be15fc6a9f4360edefaa73bcaa933d22e7e049a535ed19d7c525da5a509635c6909cfb51e96cda21231315278d9047a03839d7a796f2bb4d4c86be151efa85bc8d46eb712d
  • Auth tag (hex): 60f8226b148b14ecb5c47fbe1721b9f5

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