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

Hanwell Town vs Aldershot Town

Club Friendlies 3 · World · 25 Jul 2026, 14:00 UTC

Final score
0 : 2
Result
Lost
Pick
Draw
Market
1x2
Model prob.
24.9%
Best price
6.27
Min odds
4.79
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)
LRmKtCe/tYhXjgAGSJKCot2kBkFJi0KG16H7Wbr+36TIKJ7MTywsaY7/WfL3WbE5kyaFSwMOb0d9GSFED6LJ4rRCc+zcpLUFnran6o/xjbePbt7ZyYS1z+AUJLnXUJRY2D1xEwYHt8rTENCIYneiwA0y4u9Zq1guQvuWxGdcG7YkknigPRLLEMwNxdF43YOsfQO6Rr0EgQ5s692eZZU3VFU5dBfePGZTCGvS0vIGpTw6TAGzXnkOiGQKktuxH9PRrwk9hEmE75F2arfOtFa+2SU5k6UGvRRWV6IF0/qpG2fhOycYbkoP9sVGaYZWHNVSw1dWPeZGni8H8PLCxOmrQAs=
key fingerprint sha256: 1ac4f00c33b08d9250daaad569d9e1c4865b4bd9d1c9ace31260a403ebc753c9
Decrypt it & read the pick
Decryption key (released after the match)
2233ea0ac234d6e6520bb5122b2e8571848455bcd00f106e974eab822397b29a
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("LRmKtCe/tYhXjgAGSJKCot2kBkFJi0KG16H7Wbr+36TIKJ7MTywsaY7/WfL3WbE5kyaFSwMOb0d9GSFED6LJ4rRCc+zcpLUFnran6o/xjbePbt7ZyYS1z+AUJLnXUJRY2D1xEwYHt8rTENCIYneiwA0y4u9Zq1guQvuWxGdcG7YkknigPRLLEMwNxdF43YOsfQO6Rr0EgQ5s692eZZU3VFU5dBfePGZTCGvS0vIGpTw6TAGzXnkOiGQKktuxH9PRrwk9hEmE75F2arfOtFa+2SU5k6UGvRRWV6IF0/qpG2fhOycYbkoP9sVGaYZWHNVSw1dWPeZGni8H8PLCxOmrQAs="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2233ea0ac234d6e6520bb5122b2e8571848455bcd00f106e974eab822397b29a".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): 2233ea0ac234d6e6520bb5122b2e8571848455bcd00f106e974eab822397b29a
  • IV / nonce (hex): 2d198ab427bfb588578e0006
  • Ciphertext (hex): 489282a2dda40641498b4286d7a1fb59bafedfa4c8289ecc4f2c2c698eff59f2f759b1399326854b030e6f477d1921440fa2c9e2b44273ecdca4b5059eb6a7ea8ff18db78f6eded9c984b5cfe01424b9d7509458d83d71130607b7cad310d0886277a2c00d32e2ef59ab582e42fb96c4675c1bb6249278a03d12cb10cc0dc5d178dd83ac7d03ba46bd04810e6cebdd9e6595375455397417de3c6653086bd2d2f206a53c3a4c01b35e790e88640a92dbb11fd3d1af093d844984ef91766ab7ceb456bed9253993a506bd145657a205d3faa91b67e13b27186e4a0ff6c5466986561cd552c3
  • Auth tag (hex): 57563de6469e2f07f0f2c2c4e9ab400b

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