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

Brisbane Strikers vs Ipswich

Queensland Premier League · Australia · 26 Jun 2026, 10:30 UTC

Final score
1 : 0
Result
Won
Pick
Brisbane Strikers
Market
1x2
Model prob.
60.4%
Best price
1.91
Min odds
1.77
Stake factor
2.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)
ptuZ7MPLtUXEad/t13nMiyplX0vDax79cXExQkFWb72/EKOiEpJUDDiMzcfqys5+/2wAwWQWKu8bZ+dUuno+mfApb+GNUB98cKV6GIkJ3HFvgKPx1seFZYNTQK6lVQq91rlUvxobcK1QlwRQK0pjPCpnaRUnxh2zKZskhh9S42inyTl1qGxs9xPerZBdNh8VUn3X8RL2dGMvqv4ravZgtEYjKuoWP3KAJuUjsRorX3rKNSZlPXE4EjUn2wa39/zMH8EfmrjW7HA/pX86HtwJOhtiP9t3pXD2muNh7aYS4YafwILbIaFbwIq76Ye4ek2r130c5hMg251xjpsKzvJeGK7t7kAYVqEWxoPcyj0F3gp1EA==
key fingerprint sha256: 21fc8fc1c82bf446313398a1fdd651442424eb352f1ee1f7303f55a07b33cb46
Decrypt it & read the pick
Decryption key (released after the match)
d4aca7d9cce15aac150e94f256cebdd5b8a28d4a6f9fa2f36ce754281c4161b8
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("ptuZ7MPLtUXEad/t13nMiyplX0vDax79cXExQkFWb72/EKOiEpJUDDiMzcfqys5+/2wAwWQWKu8bZ+dUuno+mfApb+GNUB98cKV6GIkJ3HFvgKPx1seFZYNTQK6lVQq91rlUvxobcK1QlwRQK0pjPCpnaRUnxh2zKZskhh9S42inyTl1qGxs9xPerZBdNh8VUn3X8RL2dGMvqv4ravZgtEYjKuoWP3KAJuUjsRorX3rKNSZlPXE4EjUn2wa39/zMH8EfmrjW7HA/pX86HtwJOhtiP9t3pXD2muNh7aYS4YafwILbIaFbwIq76Ye4ek2r130c5hMg251xjpsKzvJeGK7t7kAYVqEWxoPcyj0F3gp1EA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d4aca7d9cce15aac150e94f256cebdd5b8a28d4a6f9fa2f36ce754281c4161b8".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): d4aca7d9cce15aac150e94f256cebdd5b8a28d4a6f9fa2f36ce754281c4161b8
  • IV / nonce (hex): a6db99ecc3cbb545c469dfed
  • Ciphertext (hex): d779cc8b2a655f4bc36b1efd7171314241566fbdbf10a3a21292540c388ccdc7eacace7eff6c00c164162aef1b67e754ba7a3e99f0296fe18d501f7c70a57a188909dc716f80a3f1d6c78565835340aea5550abdd6b954bf1a1b70ad509704502b4a633c2a67691527c61db3299b24861f52e368a7c93975a86c6cf713dead905d361f15527dd7f112f674632faafe2b6af660b446232aea163f728026e523b11a2b5f7aca3526653d7138123527db06b7f7fccc1fc11f9ab8d6ec703fa57f3a1edc093a1b623fdb77a570f69ae361eda612e1869fc082db21a15bc08abbe987b87a4dabd77d1ce61320db9d718e9b0acef25e18aeed
  • Auth tag (hex): ee401856a116c683dcca3d05de0a7510

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