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

South Hobart II vs Taroona

Tasmania Southern Championship · Australia · 31 Jul 2026, 10:15 UTC

Final score
2 : 0
Result
Lost
Pick
Taroona
Market
1x2
Model prob.
23.1%
Best price
5.91
Min odds
5.24
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)
TWxvseZGdBYkrKLNTOQWn+P9UlbWpCK3b2un/JoOdDSyO0xtkQBQfiYSnTFM85RoeoHhVkd93fc41g7chzN+eglaptoHwWUY+0CJ7Y61BxJn8aOmylpPDS43u59KTNwb4UZnJGkRDpn0gI5NBgEw8RzQ35eqLbGwVq1NFycb9r5JEfZFkZPGqWtP2zjzOGGA6SLbLd3h6SJSYL1wVeZwhJhBI5ABuO867I+K+tQ+Sm4/WezIO6ae9lryhj9quRU2SbJpfKiWIiEDHTizBplyNiwlNB+w7Kk2mOCAP9UtLaSnJqdlixt+YQCQ5aKfWL9V1XPitRo3fKPiE0CFJ/2NjHlnwo8h
key fingerprint sha256: cd7a6025f4165a6d30eefab6f21edfd2034fa25a70c2e8dd08a054865cd9eb56
Decrypt it & read the pick
Decryption key (released after the match)
f5cf07a8f30ef4998354454af4c8a4dd6a979f28a6a15c2b35df9971f210fa0a
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("TWxvseZGdBYkrKLNTOQWn+P9UlbWpCK3b2un/JoOdDSyO0xtkQBQfiYSnTFM85RoeoHhVkd93fc41g7chzN+eglaptoHwWUY+0CJ7Y61BxJn8aOmylpPDS43u59KTNwb4UZnJGkRDpn0gI5NBgEw8RzQ35eqLbGwVq1NFycb9r5JEfZFkZPGqWtP2zjzOGGA6SLbLd3h6SJSYL1wVeZwhJhBI5ABuO867I+K+tQ+Sm4/WezIO6ae9lryhj9quRU2SbJpfKiWIiEDHTizBplyNiwlNB+w7Kk2mOCAP9UtLaSnJqdlixt+YQCQ5aKfWL9V1XPitRo3fKPiE0CFJ/2NjHlnwo8h"), c => c.charCodeAt(0));
const key  = Uint8Array.from("f5cf07a8f30ef4998354454af4c8a4dd6a979f28a6a15c2b35df9971f210fa0a".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): f5cf07a8f30ef4998354454af4c8a4dd6a979f28a6a15c2b35df9971f210fa0a
  • IV / nonce (hex): 4d6c6fb1e646741624aca2cd
  • Ciphertext (hex): 4ce4169fe3fd5256d6a422b76f6ba7fc9a0e7434b23b4c6d9100507e26129d314cf394687a81e156477dddf738d60edc87337e7a095aa6da07c16518fb4089ed8eb5071267f1a3a6ca5a4f0d2e37bb9f4a4cdc1be146672469110e99f4808e4d060130f11cd0df97aa2db1b056ad4d17271bf6be4911f6459193c6a96b4fdb38f3386180e922db2ddde1e9225260bd7055e670849841239001b8ef3aec8f8afad43e4a6e3f59ecc83ba69ef65af2863f6ab9153649b2697ca8962221031d38b3069972362c25341fb0eca93698e0803fd52d2da4a726a7658b1b7e610090e5a29f58bf55d573e2b51a
  • Auth tag (hex): 377ca3e213408527fd8d8c7967c28f21

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