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

West Auckland Town vs Heaton Stannington

Northern League Division 1 · England · 22 Sept 2026, 18:45 UTC

Final score
3 : 1
Result
Won
Pick
West Auckland Town
Market
1X2
CLV vs fair close
-11.94%
Model prob.
37.1%
Best price
2.85
Min odds
2.75
Stake factor
1.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)
H4cO4g85YXbm+K1GX1EJblARWqdvS5Ef8S8hLQCO3MWVc3VR+lubTFhe6jHVYe1SpzoxVbOjePhoV/cIHjlyGdRSeBdYZxje6UmSRJBNfIn3+GMxfD0E1W0SDFRBM0dXS0qNx62tmOZYK2TXwf4hfj6Sh9Jy8h53TZH9TAYoKBO9f8YSZM0B7LZQuf8leLMzCvMkWjSRmZAevTxpPbxJ0NLwnlUXU7U8P0gNRrSb2jsoYUN6wkFOEEpRw1BxO03Tpq+moEAzRlYvMeQKRRgM6GJdthTwyGzTimV5YRbvTq2mv1GmoFdOAQqL6lfCyCiDVoxvGM7s6l1cgY/Enxb/pNN9RU2ljPEjaEQZxRH06GVjTH2S
key fingerprint sha256: e5049df97981389386cb21d17ae138d089f323ef8fa402624e14e98823f7a530
Decrypt it & read the pick
Decryption key (released after the match)
6b050728af7930f31c077391219e1f5e242af459ed7c4ce6381b45820fcedf1a
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("H4cO4g85YXbm+K1GX1EJblARWqdvS5Ef8S8hLQCO3MWVc3VR+lubTFhe6jHVYe1SpzoxVbOjePhoV/cIHjlyGdRSeBdYZxje6UmSRJBNfIn3+GMxfD0E1W0SDFRBM0dXS0qNx62tmOZYK2TXwf4hfj6Sh9Jy8h53TZH9TAYoKBO9f8YSZM0B7LZQuf8leLMzCvMkWjSRmZAevTxpPbxJ0NLwnlUXU7U8P0gNRrSb2jsoYUN6wkFOEEpRw1BxO03Tpq+moEAzRlYvMeQKRRgM6GJdthTwyGzTimV5YRbvTq2mv1GmoFdOAQqL6lfCyCiDVoxvGM7s6l1cgY/Enxb/pNN9RU2ljPEjaEQZxRH06GVjTH2S"), c => c.charCodeAt(0));
const key  = Uint8Array.from("6b050728af7930f31c077391219e1f5e242af459ed7c4ce6381b45820fcedf1a".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): 6b050728af7930f31c077391219e1f5e242af459ed7c4ce6381b45820fcedf1a
  • IV / nonce (hex): 1f870ee20f396176e6f8ad46
  • Ciphertext (hex): 5f51096e50115aa76f4b911ff12f212d008edcc595737551fa5b9b4c585eea31d561ed52a73a3155b3a378f86857f7081e397219d4527817586718dee9499244904d7c89f7f863317c3d04d56d120c54413347574b4a8dc7adad98e6582b64d7c1fe217e3e9287d272f21e774d91fd4c06282813bd7fc61264cd01ecb650b9ff2578b3330af3245a349199901ebd3c693dbc49d0d2f09e551753b53c3f480d46b49bda3b2861437ac2414e104a51c350713b4dd3a6afa6a0403346562f31e40a45180ce8625db614f0c86cd38a65796116ef4eada6bf51a6a0574e010a8bea57c2c82883568c6f18ceecea5d5c818fc49f16ffa4d37d454d
  • Auth tag (hex): a58cf123684419c511f4e865634c7d92

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