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

Canberra Olympic U23 vs Queanbeyan City U23

Capital Territory NPL Youth League · Australia · 25 Jul 2026, 02:00 UTC

Final score
1 : 3
Result
Lost
Pick
Canberra Olympic U23
Market
1x2
Model prob.
34.4%
Best price
3.55
Min odds
3.29
Stake factor
2.80

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)
fw+dQSbIyw24lmzHLqo1zIv97fL/h7ym/1mxMxLIn1a0am4bzf4yKsUaL9moQ9spTlftSXYEDWvMWonIxO0YlQRyKfbh5k7iOx3P/kcDWwyT15r9FGzTOYm2FyxcfjkMKFvAYCm/NdW850VM5LW38ee4I56y+pR+7OJkMYWe/2ioP/MEWXOT/2+qvRwn3/4oBclrR7XNCq2U+ifC0BEMCI1VH2ASMiXBCAfwIEe3cSfyclPECvqKB7+OJDiYPo4D1BEyCTBcPcARXC62rXWbjIqVxBglEcfSoK/ha9jEccCwEJPdBN8DEfYd3m2NHOPwcF3L2lOn845U33btIqvI40+9+kFWyBZEbrkMagmLgn6uqhgO
key fingerprint sha256: 3493cc2910f740ad3d4bcbf8b2aff9ccff52fbeaa36d385023830528b364a5e4
Decrypt it & read the pick
Decryption key (released after the match)
955ff5c553c0b1ca9200ca9c7ec279609c6d827a3b3c5fcbef70c133fc4615f9
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("fw+dQSbIyw24lmzHLqo1zIv97fL/h7ym/1mxMxLIn1a0am4bzf4yKsUaL9moQ9spTlftSXYEDWvMWonIxO0YlQRyKfbh5k7iOx3P/kcDWwyT15r9FGzTOYm2FyxcfjkMKFvAYCm/NdW850VM5LW38ee4I56y+pR+7OJkMYWe/2ioP/MEWXOT/2+qvRwn3/4oBclrR7XNCq2U+ifC0BEMCI1VH2ASMiXBCAfwIEe3cSfyclPECvqKB7+OJDiYPo4D1BEyCTBcPcARXC62rXWbjIqVxBglEcfSoK/ha9jEccCwEJPdBN8DEfYd3m2NHOPwcF3L2lOn845U33btIqvI40+9+kFWyBZEbrkMagmLgn6uqhgO"), c => c.charCodeAt(0));
const key  = Uint8Array.from("955ff5c553c0b1ca9200ca9c7ec279609c6d827a3b3c5fcbef70c133fc4615f9".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): 955ff5c553c0b1ca9200ca9c7ec279609c6d827a3b3c5fcbef70c133fc4615f9
  • IV / nonce (hex): 7f0f9d4126c8cb0db8966cc7
  • Ciphertext (hex): 2eaa35cc8bfdedf2ff87bca6ff59b13312c89f56b46a6e1bcdfe322ac51a2fd9a843db294e57ed4976040d6bcc5a89c8c4ed1895047229f6e1e64ee23b1dcffe47035b0c93d79afd146cd33989b6172c5c7e390c285bc06029bf35d5bce7454ce4b5b7f1e7b8239eb2fa947eece26431859eff68a83ff304597393ff6faabd1c27dffe2805c96b47b5cd0aad94fa27c2d0110c088d551f60123225c10807f02047b77127f27253c40afa8a07bf8e2438983e8e03d4113209305c3dc0115c2eb6ad759b8c8a95c4182511c7d2a0afe16bd8c471c0b01093dd04df0311f61dde6d8d1ce3f0705dcbda53a7f38e54df76ed22abc8e34fbdfa41
  • Auth tag (hex): 56c816446eb90c6a098b827eaeaa180e

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