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

Slovácko vs Zorya Luhansk

Club Friendlies 3 · World · 08 Jul 2026, 14:00 UTC

Final score
2 : 1
Result
Won
Pick
Slovácko
Market
1x2
Model prob.
37.5%
Best price
5.92
Min odds
2.98
Stake factor
3.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)
tWKbAuydhood9vrmbW+/AtU8S3NlQ5At3+UNushCDUu4dwAYxq27Df1+GAy6WBCHnE+oAQki2wfR2X2XvGXVZRSvNBsV7pbiNQL9mz+FIpO4yKV7JX1jJzXMMfE0SJyPs/QJwgEs/mgt1mm896JFXAIv5mbemMZS7HjNX55BxidYh9iBXM3xcuEPJnTYtl8/UsjJDtA7/sfPIalxIToNo667kpNWFMNT56wXk6rIWx51CS0BIv34YsQ8+uP37P34rm4sA2tv7tiSY2UwLsl0dRpey5j2SCuTNbvrb0RLdGw+hx9emSpVHADX3Ct58cTzECfQbdvXFE8hh9UvkQ6MfuLXuif9NThWxA==
key fingerprint sha256: e2d1a7625fb4ad3596031553a3c05cb71649c05b4e767fb92411936356d702cb
Decrypt it & read the pick
Decryption key (released after the match)
a7a3b7b4410be7e81b8153fa79038ccfa52248b83553038c86f30c9841d7c003
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("tWKbAuydhood9vrmbW+/AtU8S3NlQ5At3+UNushCDUu4dwAYxq27Df1+GAy6WBCHnE+oAQki2wfR2X2XvGXVZRSvNBsV7pbiNQL9mz+FIpO4yKV7JX1jJzXMMfE0SJyPs/QJwgEs/mgt1mm896JFXAIv5mbemMZS7HjNX55BxidYh9iBXM3xcuEPJnTYtl8/UsjJDtA7/sfPIalxIToNo667kpNWFMNT56wXk6rIWx51CS0BIv34YsQ8+uP37P34rm4sA2tv7tiSY2UwLsl0dRpey5j2SCuTNbvrb0RLdGw+hx9emSpVHADX3Ct58cTzECfQbdvXFE8hh9UvkQ6MfuLXuif9NThWxA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a7a3b7b4410be7e81b8153fa79038ccfa52248b83553038c86f30c9841d7c003".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): a7a3b7b4410be7e81b8153fa79038ccfa52248b83553038c86f30c9841d7c003
  • IV / nonce (hex): b5629b02ec9d868a1df6fae6
  • Ciphertext (hex): 6d6fbf02d53c4b736543902ddfe50dbac8420d4bb8770018c6adbb0dfd7e180cba5810879c4fa8010922db07d1d97d97bc65d56514af341b15ee96e23502fd9b3f852293b8c8a57b257d632735cc31f134489c8fb3f409c2012cfe682dd669bcf7a2455c022fe666de98c652ec78cd5f9e41c6275887d8815ccdf172e10f2674d8b65f3f52c8c90ed03bfec7cf21a971213a0da3aebb92935614c353e7ac1793aac85b1e75092d0122fdf862c43cfae3f7ecfdf8ae6e2c036b6feed8926365302ec974751a5ecb98f6482b9335bbeb6f444b746c3e871f5e992a551c00d7dc2b79f1c4f31027d06ddbd7144f21
  • Auth tag (hex): 87d52f910e8c7ee2d7ba27fd353856c4

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