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

Robina City vs Capalaba

Queensland Premier League · Australia · 23 Jun 2026, 09:30 UTC

Final score
5 : 1
Result
Won
Pick
Robina City
Market
1x2
Model prob.
75.1%
Best price
1.46
Min odds
1.41
Stake factor
1.70

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)
8meU6kG8E2YlZhSKtQhdlAi/bP7R7+hWw+96YSKPl7ZyURNo0ALxTB5jAN/8os8qTG5IAt3IgvBKDqERlQ5EWkBYw1Z7FALvwEc8kbxr4ePhCcBZUtb+zSrawlnDc8BqsqihDDN558cVkQU36x+Gr46+uoLS2UmuPo+yHJ+gS5NtSOs1Sy5mR19NDsLJBsF+2ncfCYb/TpzsMP4+T4guo5+9iUwo9gJUChgSEA2UQu8MU8pFSSuTutVDCBqbBQmVJePgwKNejwwOewuSx/bLmTw+4FWYdC6yDlTAPiAUqbx4SOrgfKiRyuvnPGx6E7RpUKOgQVpHkaK7z+34s57GvHCFtjYhI78/Eifc
key fingerprint sha256: 989629d2f32c5b73bfa35e611e04c56a7c2b2322912fb40e3b30661f01241ed6
Decrypt it & read the pick
Decryption key (released after the match)
b21cbf4f2e3b808582b26b0a04c1caa48a1444fbb1ddf16b8334e506c7b97f6e
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("8meU6kG8E2YlZhSKtQhdlAi/bP7R7+hWw+96YSKPl7ZyURNo0ALxTB5jAN/8os8qTG5IAt3IgvBKDqERlQ5EWkBYw1Z7FALvwEc8kbxr4ePhCcBZUtb+zSrawlnDc8BqsqihDDN558cVkQU36x+Gr46+uoLS2UmuPo+yHJ+gS5NtSOs1Sy5mR19NDsLJBsF+2ncfCYb/TpzsMP4+T4guo5+9iUwo9gJUChgSEA2UQu8MU8pFSSuTutVDCBqbBQmVJePgwKNejwwOewuSx/bLmTw+4FWYdC6yDlTAPiAUqbx4SOrgfKiRyuvnPGx6E7RpUKOgQVpHkaK7z+34s57GvHCFtjYhI78/Eifc"), c => c.charCodeAt(0));
const key  = Uint8Array.from("b21cbf4f2e3b808582b26b0a04c1caa48a1444fbb1ddf16b8334e506c7b97f6e".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): b21cbf4f2e3b808582b26b0a04c1caa48a1444fbb1ddf16b8334e506c7b97f6e
  • IV / nonce (hex): f26794ea41bc13662566148a
  • Ciphertext (hex): b5085d9408bf6cfed1efe856c3ef7a61228f97b672511368d002f14c1e6300dffca2cf2a4c6e4802ddc882f04a0ea111950e445a4058c3567b1402efc0473c91bc6be1e3e109c05952d6fecd2adac259c373c06ab2a8a10c3379e7c715910537eb1f86af8ebeba82d2d949ae3e8fb21c9fa04b936d48eb354b2e66475f4d0ec2c906c17eda771f0986ff4e9cec30fe3e4f882ea39fbd894c28f602540a1812100d9442ef0c53ca45492b93bad543081a9b05099525e3e0c0a35e8f0c0e7b0b92c7f6cb993c3ee05598742eb20e54c03e2014a9bc7848eae07ca891caebe73c6c7a13b46950a3a0415a4791a2bbcfed
  • Auth tag (hex): f8b39ec6bc7085b6362123bf3f1227dc

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