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

Adelaide Raiders vs The Cove

South Australia State League 1 · Australia · 07 Aug 2026, 10:00 UTC

Final score
4 : 2
Result
Won
Pick
Adelaide Raiders
Market
1x2
Model prob.
60.4%
Best price
1.87
Min odds
1.77
Stake factor
2.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)
mb3jusXdkJIHS2lerY/AIz+ePBI2NnBpmcvmshfnO+RgkyzU7PjBvIkhPgJW2I9XnxNmldl+69OhRGQAe30w9bFFyxOQyd4Sgl0IJ9pOOXxoJIHMBAa99aXQe7k8nr8ni1gIrwUSu5x3550kfjFNZC0ycxB2AEKg0vAmeKSswUq6qO1PBk5OPSZRJMWaMKEKMKb+V44S/EtcKAiyoAWfkOOhJ0n2EURFt+9qXnE+NDEnDGq+fq41XF8NNV9zyd9o+qrdcAFDQJd9z0SpMBHDmM6+BVmfmWOK6peLig8F4s1ibC1mIwGwEZpL8G4jZ6rhYi98JYnf5WPN5A/SUy2RDLy8heZSeoAFuhn8/YTWHg==
key fingerprint sha256: ed0acc52267f1cb1c13c69cf33fe78b1afee6b234d00630b69fc6f491e5efe9d
Decrypt it & read the pick
Decryption key (released after the match)
791d1a8e02c4adc1760c01cd27a8a9d3d90b8f017b9f18e219b802bca1c96a81
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("mb3jusXdkJIHS2lerY/AIz+ePBI2NnBpmcvmshfnO+RgkyzU7PjBvIkhPgJW2I9XnxNmldl+69OhRGQAe30w9bFFyxOQyd4Sgl0IJ9pOOXxoJIHMBAa99aXQe7k8nr8ni1gIrwUSu5x3550kfjFNZC0ycxB2AEKg0vAmeKSswUq6qO1PBk5OPSZRJMWaMKEKMKb+V44S/EtcKAiyoAWfkOOhJ0n2EURFt+9qXnE+NDEnDGq+fq41XF8NNV9zyd9o+qrdcAFDQJd9z0SpMBHDmM6+BVmfmWOK6peLig8F4s1ibC1mIwGwEZpL8G4jZ6rhYi98JYnf5WPN5A/SUy2RDLy8heZSeoAFuhn8/YTWHg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("791d1a8e02c4adc1760c01cd27a8a9d3d90b8f017b9f18e219b802bca1c96a81".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): 791d1a8e02c4adc1760c01cd27a8a9d3d90b8f017b9f18e219b802bca1c96a81
  • IV / nonce (hex): 99bde3bac5dd9092074b695e
  • Ciphertext (hex): ad8fc0233f9e3c123636706999cbe6b217e73be460932cd4ecf8c1bc89213e0256d88f579f136695d97eebd3a14464007b7d30f5b145cb1390c9de12825d0827da4e397c682481cc0406bdf5a5d07bb93c9ebf278b5808af0512bb9c77e79d247e314d642d327310760042a0d2f02678a4acc14abaa8ed4f064e4e3d265124c59a30a10a30a6fe578e12fc4b5c2808b2a0059f90e3a12749f6114445b7ef6a5e713e3431270c6abe7eae355c5f0d355f73c9df68faaadd70014340977dcf44a93011c398cebe05599f99638aea978b8a0f05e2cd626c2d662301b0119a4bf06e2367aae1622f7c2589dfe563cde40fd2532d91
  • Auth tag (hex): 0cbcbc85e6527a8005ba19fcfd84d61e

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