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

Siroki Brijeg vs Sarajevo

Premier Liga · Bosnia and Herzegovina · 02 Sept 2026, 18:30 UTC

Final score
1 : 2
Result
Lost
Pick
Siroki Brijeg
Market
1X2
CLV vs fair close
+2.89%
Model prob.
30.4%
Best price
3.50
Min odds
3.35
Stake factor
1.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)
1lwwyLpADnOfSVw6qkmnEQwTiWQAmvzx9jDrAqaDpYGXXPNx+y8RtJUOPEQ0Lg3FJmr0E/I/LujIYkDXj9CZGW5pSbS/FdK1wLx5hAR/BLXBZbXbMsFrWxnKwlXzTIehM8r7HHr6ZYbWr9c+d6YXMPZkSQzORgCvZzg+lEX2/IHLICekHzNfQFF4zvb+0unEo/WBE69i/uCqBMiqiJrN6je/ucxGqmcGOeBVT9YJQhpDoZ1ld6gbED8oY0uIIlr6DnK/JwyTP2cplYkUD43xKKSzqWmcfa2WZRMN3XWRofP05yQlH6g9ysjN53V0yjPo7i/4vy6JJKBksskD3UzRPyT4EY9FmNCkSLSAGAM=
key fingerprint sha256: f6c5bf54333fdee504a48632939567b10bf40fff4de1be331f84911a74b83cbd
Decrypt it & read the pick
Decryption key (released after the match)
35d5349dfc072c9dd891fb982fcd17ce5de2b574ded0017f594a5282d4b3bd55
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("1lwwyLpADnOfSVw6qkmnEQwTiWQAmvzx9jDrAqaDpYGXXPNx+y8RtJUOPEQ0Lg3FJmr0E/I/LujIYkDXj9CZGW5pSbS/FdK1wLx5hAR/BLXBZbXbMsFrWxnKwlXzTIehM8r7HHr6ZYbWr9c+d6YXMPZkSQzORgCvZzg+lEX2/IHLICekHzNfQFF4zvb+0unEo/WBE69i/uCqBMiqiJrN6je/ucxGqmcGOeBVT9YJQhpDoZ1ld6gbED8oY0uIIlr6DnK/JwyTP2cplYkUD43xKKSzqWmcfa2WZRMN3XWRofP05yQlH6g9ysjN53V0yjPo7i/4vy6JJKBksskD3UzRPyT4EY9FmNCkSLSAGAM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("35d5349dfc072c9dd891fb982fcd17ce5de2b574ded0017f594a5282d4b3bd55".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): 35d5349dfc072c9dd891fb982fcd17ce5de2b574ded0017f594a5282d4b3bd55
  • IV / nonce (hex): d65c30c8ba400e739f495c3a
  • Ciphertext (hex): aa49a7110c138964009afcf1f630eb02a683a581975cf371fb2f11b4950e3c44342e0dc5266af413f23f2ee8c86240d78fd099196e6949b4bf15d2b5c0bc7984047f04b5c165b5db32c16b5b19cac255f34c87a133cafb1c7afa6586d6afd73e77a61730f664490cce4600af67383e9445f6fc81cb2027a41f335f405178cef6fed2e9c4a3f58113af62fee0aa04c8aa889acdea37bfb9cc46aa670639e0554fd609421a43a19d6577a81b103f28634b88225afa0e72bf270c933f67299589140f8df128a4b3a9699c7dad9665130ddd7591a1f3f4e724251fa83dcac8cde77574ca33e8ee2ff8bf2e8924a064b2c903dd
  • Auth tag (hex): 4cd13f24f8118f4598d0a448b4801803

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