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

Ross County vs East Kilbride

League One · Scotland · 29 Aug 2026, 16:30 UTC

Final score
4 : 0
Result
Lost
Pick
East Kilbride
Market
1X2
Model prob.
22.8%
Best price
5.00
Min odds
4.48
Stake factor
1.20

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)
u3BCtRT7mqzee2oEA/wUhsclct9PGX2zLtLn+uwOZ/5pVunpB87GYneeet/3mePxeG5khDNXOiwBMD6ut9uiRsLhpmH14Bmlwz9c8Z6uJTpqmM350Keb/uOg6zx/gMttvVtBk4KOib7JJ56GjudgxKxgZ0ZeIqMnktTM2946+0M4Zwg3DXMUZUZwYtUYby4ngRU30X9VvkajVG79SULpz3K0nTbc1SOgdwARYAI4T52KXnWkHeweec2SY5XP4Z8j88zgjjFmXrJwMThX62RbxI7WYrAYFSWmSfPj4zDIdMhAEU2tfiueWmy/GCOhII8IsM7MnnzPiNV8ZfDtJiViRzoXFfDLfCIQ/MRIQmWD
key fingerprint sha256: 820ad69b61f916994876de25bc4d4e43b9b3220d001bd66c375f3e8ca4b2b54f
Decrypt it & read the pick
Decryption key (released after the match)
2c565690944dbbb12acef617dacb4c1de3c9ed843fe71c8b1038ca3ddabdc1e3
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("u3BCtRT7mqzee2oEA/wUhsclct9PGX2zLtLn+uwOZ/5pVunpB87GYneeet/3mePxeG5khDNXOiwBMD6ut9uiRsLhpmH14Bmlwz9c8Z6uJTpqmM350Keb/uOg6zx/gMttvVtBk4KOib7JJ56GjudgxKxgZ0ZeIqMnktTM2946+0M4Zwg3DXMUZUZwYtUYby4ngRU30X9VvkajVG79SULpz3K0nTbc1SOgdwARYAI4T52KXnWkHeweec2SY5XP4Z8j88zgjjFmXrJwMThX62RbxI7WYrAYFSWmSfPj4zDIdMhAEU2tfiueWmy/GCOhII8IsM7MnnzPiNV8ZfDtJiViRzoXFfDLfCIQ/MRIQmWD"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2c565690944dbbb12acef617dacb4c1de3c9ed843fe71c8b1038ca3ddabdc1e3".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): 2c565690944dbbb12acef617dacb4c1de3c9ed843fe71c8b1038ca3ddabdc1e3
  • IV / nonce (hex): bb7042b514fb9aacde7b6a04
  • Ciphertext (hex): 03fc1486c72572df4f197db32ed2e7faec0e67fe6956e9e907cec662779e7adff799e3f1786e648433573a2c01303eaeb7dba246c2e1a661f5e019a5c33f5cf19eae253a6a98cdf9d0a79bfee3a0eb3c7f80cb6dbd5b4193828e89bec9279e868ee760c4ac6067465e22a32792d4ccdbde3afb43386708370d731465467062d5186f2e27811537d17f55be46a3546efd4942e9cf72b49d36dcd523a07700116002384f9d8a5e75a41dec1e79cd926395cfe19f23f3cce08e31665eb270313857eb645bc48ed662b0181525a649f3e3e330c874c840114dad7e2b9e5a6cbf1823a1208f08b0cecc9e7ccf88d57c65f0ed2625
  • Auth tag (hex): 62473a1715f0cb7c2210fcc448426583

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