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

Monaro Panthers vs Cooma Tigers

Capital Territory · Australia · 27 Jun 2026, 07:45 UTC

Final score
2 : 0
Result
Won
Pick
Monaro Panthers
Market
1x2
Model prob.
43.4%
Best price
2.96
Min odds
2.54
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)
A2PH4fVTAAo84itWDaPwt6lHFps/hD8CB+fhbk78BCxQMrBfy1b18PDF5+BOWPZKbqVCLCIBQTlP46VZhHQvocKP3xBwMsuLlUyrlsjyqE2zyGDWZBbjibUr9OPSd9U3PVe+MfjPiFdA/gj0xH62z4VPH4ke7peZ2HRNPdmwERDD20VbxTt+ODW9MxXG+F6SViIWrs+lqBiSy4n2qQfhTYCO3C6JAqMUuy25SvOLLVv+mG4erSxAeHipJijHV/h/wCIzU/g1IvibO6JUU/aXY4IwrR67qOgosZ+fdDfgtki8JYpwvtgSDYzrPNe1e9mQcA5+JzaN9MTKMjqH/pBpa6suSJCGQXG2f8Y9r+/f
key fingerprint sha256: 533b002329da10dfa1b310645e872b55b5344a9eae9631e53ecbecc1accb20a6
Decrypt it & read the pick
Decryption key (released after the match)
33cf56f66dc08d03dcb8110452f0f87a4297ec29017b4a224421b9b2d0d68461
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("A2PH4fVTAAo84itWDaPwt6lHFps/hD8CB+fhbk78BCxQMrBfy1b18PDF5+BOWPZKbqVCLCIBQTlP46VZhHQvocKP3xBwMsuLlUyrlsjyqE2zyGDWZBbjibUr9OPSd9U3PVe+MfjPiFdA/gj0xH62z4VPH4ke7peZ2HRNPdmwERDD20VbxTt+ODW9MxXG+F6SViIWrs+lqBiSy4n2qQfhTYCO3C6JAqMUuy25SvOLLVv+mG4erSxAeHipJijHV/h/wCIzU/g1IvibO6JUU/aXY4IwrR67qOgosZ+fdDfgtki8JYpwvtgSDYzrPNe1e9mQcA5+JzaN9MTKMjqH/pBpa6suSJCGQXG2f8Y9r+/f"), c => c.charCodeAt(0));
const key  = Uint8Array.from("33cf56f66dc08d03dcb8110452f0f87a4297ec29017b4a224421b9b2d0d68461".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): 33cf56f66dc08d03dcb8110452f0f87a4297ec29017b4a224421b9b2d0d68461
  • IV / nonce (hex): 0363c7e1f553000a3ce22b56
  • Ciphertext (hex): 0da3f0b7a947169b3f843f0207e7e16e4efc042c5032b05fcb56f5f0f0c5e7e04e58f64a6ea5422c220141394fe3a55984742fa1c28fdf107032cb8b954cab96c8f2a84db3c860d66416e389b52bf4e3d277d5373d57be31f8cf885740fe08f4c47eb6cf854f1f891eee9799d8744d3dd9b01110c3db455bc53b7e3835bd3315c6f85e92562216aecfa5a81892cb89f6a907e14d808edc2e8902a314bb2db94af38b2d5bfe986e1ead2c407878a92628c757f87fc0223353f83522f89b3ba25453f697638230ad1ebba8e828b19f9f7437e0b648bc258a70bed8120d8ceb3cd7b57bd990700e7e27368df4c4ca323a87fe90
  • Auth tag (hex): 696bab2e4890864171b67fc63dafefdf

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