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

Forfar Athletic vs Brechin City

League Cup · Scotland · 25 Jul 2026, 14:00 UTC

Final score
3 : 1
Result
Won
Pick
Forfar Athletic
Market
1x2
Model prob.
49.1%
Best price
2.38
Min odds
2.22
Stake factor
2.40

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)
+CYsleMp7m1i8/CY7PjoSz/lUTS0cAWbFCHT6HGl4ykr7+sKghYS0uh/P/ZiWodoyDenwo7SiW67PPVvOmcYIhOd4oO4QV8ObP2Xk4894Q13G/tv+4/ZIkyAzEBwtMSXpAFveRyKeAPTst3EyTj6Rr9i/M4eoxvhBNkENPH0TfNKDcYCyohbKdEAOotzTUrFTtQuiZqnSxclkw66QHm0LZBRQdB/O82yLwl+qzPmUGoVB9O0tUdRx93Ddvp8N6HPeX1LNK1p2OPIL7nJqvJNHu7HzgnjfOe8dfU/6C4t5zn2G0hZ/sPlSjdRDFaxObcsuCdLcU2YeQQw3dTwndTK+tcyhK4zeskViYM76XvPTdA=
key fingerprint sha256: a98f0309a23a39560d14ab77cfbd72faa7de57f6604385c8e2cb9e9f46a9779f
Decrypt it & read the pick
Decryption key (released after the match)
27cb1c51b3ac9d5eed489f59462dd94a448d562fc00deb2d68e645f4e50d9bc3
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("+CYsleMp7m1i8/CY7PjoSz/lUTS0cAWbFCHT6HGl4ykr7+sKghYS0uh/P/ZiWodoyDenwo7SiW67PPVvOmcYIhOd4oO4QV8ObP2Xk4894Q13G/tv+4/ZIkyAzEBwtMSXpAFveRyKeAPTst3EyTj6Rr9i/M4eoxvhBNkENPH0TfNKDcYCyohbKdEAOotzTUrFTtQuiZqnSxclkw66QHm0LZBRQdB/O82yLwl+qzPmUGoVB9O0tUdRx93Ddvp8N6HPeX1LNK1p2OPIL7nJqvJNHu7HzgnjfOe8dfU/6C4t5zn2G0hZ/sPlSjdRDFaxObcsuCdLcU2YeQQw3dTwndTK+tcyhK4zeskViYM76XvPTdA="), c => c.charCodeAt(0));
const key  = Uint8Array.from("27cb1c51b3ac9d5eed489f59462dd94a448d562fc00deb2d68e645f4e50d9bc3".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): 27cb1c51b3ac9d5eed489f59462dd94a448d562fc00deb2d68e645f4e50d9bc3
  • IV / nonce (hex): f8262c95e329ee6d62f3f098
  • Ciphertext (hex): ecf8e84b3fe55134b470059b1421d3e871a5e3292befeb0a821612d2e87f3ff6625a8768c837a7c28ed2896ebb3cf56f3a671822139de283b8415f0e6cfd97938f3de10d771bfb6ffb8fd9224c80cc4070b4c497a4016f791c8a7803d3b2ddc4c938fa46bf62fcce1ea31be104d90434f1f44df34a0dc602ca885b29d1003a8b734d4ac54ed42e899aa74b1725930eba4079b42d905141d07f3bcdb22f097eab33e6506a1507d3b4b54751c7ddc376fa7c37a1cf797d4b34ad69d8e3c82fb9c9aaf24d1eeec7ce09e37ce7bc75f53fe82e2de739f61b4859fec3e54a37510c56b139b72cb8274b714d98790430ddd4f09dd4cafa
  • Auth tag (hex): d73284ae337ac91589833be97bcf4dd0

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