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

Sunshine Coast Wanderers W vs Brisbane City W

Queensland NPL Women · Australia · 24 Jun 2026, 09:30 UTC

Final score
1 : 1
Result
Lost
Pick
Brisbane City W
Market
1x2
Model prob.
77.4%
Best price
1.49
Min odds
1.36
Stake factor
2.30

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)
DFPp3KqQiUryM2F4QfTu4tcIa8fyFygIEGbmVSNiYwQyu7xv+ScuhdAH+HkZWj2uyGxldyUyBL50H/ZtJVPY/18/t1jI4nlUXqmTMYuXfmvNMIQiyAOR7aF1MrkNBtHjKsysSKLnYxz7+F7vbC+FtoitgMqOxBPhghgwKkzQEPTHjKuPr55TX6HsOwBSL2y+3f5qmtAZELINgRE1JFD6cGUDrqIjjCSDeCm6h47dpSnI+n+taMvh6rvs3KrMKuc5+ChK3kZ83HZAZZtUiubCUCrXzZZifFYIZtBx/XJ2f7UgacU4lNSKPxX2b/WWAG+pKOemg0TjK3DGTCsQ/dA6H8/C2CqZctCY0hVqspDW+w==
key fingerprint sha256: 9c7c4205e6fd96bd2ef750a2ce728226bf1763262e58386cee7d2ede6ad87885
Decrypt it & read the pick
Decryption key (released after the match)
bc4f791b001424dd34658468a143667fe94d0a6818f8b358363d746461f654ae
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("DFPp3KqQiUryM2F4QfTu4tcIa8fyFygIEGbmVSNiYwQyu7xv+ScuhdAH+HkZWj2uyGxldyUyBL50H/ZtJVPY/18/t1jI4nlUXqmTMYuXfmvNMIQiyAOR7aF1MrkNBtHjKsysSKLnYxz7+F7vbC+FtoitgMqOxBPhghgwKkzQEPTHjKuPr55TX6HsOwBSL2y+3f5qmtAZELINgRE1JFD6cGUDrqIjjCSDeCm6h47dpSnI+n+taMvh6rvs3KrMKuc5+ChK3kZ83HZAZZtUiubCUCrXzZZifFYIZtBx/XJ2f7UgacU4lNSKPxX2b/WWAG+pKOemg0TjK3DGTCsQ/dA6H8/C2CqZctCY0hVqspDW+w=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("bc4f791b001424dd34658468a143667fe94d0a6818f8b358363d746461f654ae".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): bc4f791b001424dd34658468a143667fe94d0a6818f8b358363d746461f654ae
  • IV / nonce (hex): 0c53e9dcaa90894af2336178
  • Ciphertext (hex): 41f4eee2d7086bc7f21728081066e6552362630432bbbc6ff9272e85d007f879195a3daec86c6577253204be741ff66d2553d8ff5f3fb758c8e279545ea993318b977e6bcd308422c80391eda17532b90d06d1e32accac48a2e7631cfbf85eef6c2f85b688ad80ca8ec413e18218302a4cd010f4c78cab8faf9e535fa1ec3b00522f6cbeddfe6a9ad01910b20d8111352450fa706503aea2238c24837829ba878edda529c8fa7fad68cbe1eabbecdcaacc2ae739f8284ade467cdc7640659b548ae6c2502ad7cd96627c560866d071fd72767fb52069c53894d48a3f15f66ff596006fa928e7a68344e32b70c64c2b10fdd03a
  • Auth tag (hex): 1fcfc2d82a9972d098d2156ab290d6fb

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