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

Sparta Praha B vs Zwickau

Club Friendlies 3 · World · 17 Jul 2026, 15:00 UTC

Final score
3 : 2
Result
Lost
Pick
Draw
Market
1x2
Model prob.
25.6%
Best price
5.25
Min odds
4.63
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)
wklqBTiyNckHEUxYFwLru4Gfm9sLMQsYDMiCiOLS4aEceaHKdMRf+WYgrJ++LcIoaT5DiH2yyxlLoHEZJKZcGtp81j+YjNZWHSNYk6PiufI0KWttMvO/ExmlL2k8eh0Z/5/29293O7JmdxAD8FyPo80VD45hKrR8NjuupwgnlndoDH3r8VUWB41mZgrDbwjn9qiQOr7S3XJj1NNwn1keeSeOvrplGr+cKVTcalG7joVH5swfDNhgTU/WJT4SKJ8Ag/hL828ksaI+lIAHZ3LD1qpb23bcGt38aJUMvvunYrFYefByePM+A7OFftLMSAIrd0am3bpO6KYvXeRMhvRj1OEayw==
key fingerprint sha256: 3e9360fdbe84cb8fc8aee91d67caa14fda64b0651195c5d897a8d9ca0249ef8a
Decrypt it & read the pick
Decryption key (released after the match)
2cf952d21cb4f1f26ef654827100bc98ed525cfd0644473ade6001816633fff4
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("wklqBTiyNckHEUxYFwLru4Gfm9sLMQsYDMiCiOLS4aEceaHKdMRf+WYgrJ++LcIoaT5DiH2yyxlLoHEZJKZcGtp81j+YjNZWHSNYk6PiufI0KWttMvO/ExmlL2k8eh0Z/5/29293O7JmdxAD8FyPo80VD45hKrR8NjuupwgnlndoDH3r8VUWB41mZgrDbwjn9qiQOr7S3XJj1NNwn1keeSeOvrplGr+cKVTcalG7joVH5swfDNhgTU/WJT4SKJ8Ag/hL828ksaI+lIAHZ3LD1qpb23bcGt38aJUMvvunYrFYefByePM+A7OFftLMSAIrd0am3bpO6KYvXeRMhvRj1OEayw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2cf952d21cb4f1f26ef654827100bc98ed525cfd0644473ade6001816633fff4".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): 2cf952d21cb4f1f26ef654827100bc98ed525cfd0644473ade6001816633fff4
  • IV / nonce (hex): c2496a0538b235c907114c58
  • Ciphertext (hex): 1702ebbb819f9bdb0b310b180cc88288e2d2e1a11c79a1ca74c45ff96620ac9fbe2dc228693e43887db2cb194ba0711924a65c1ada7cd63f988cd6561d235893a3e2b9f234296b6d32f3bf1319a52f693c7a1d19ff9ff6f76f773bb266771003f05c8fa3cd150f8e612ab47c363baea708279677680c7debf15516078d66660ac36f08e7f6a8903abed2dd7263d4d3709f591e79278ebeba651abf9c2954dc6a51bb8e8547e6cc1f0cd8604d4fd6253e12289f0083f84bf36f24b1a23e9480076772c3d6aa5bdb76dc1addfc68950cbefba762b15879f07278f33e03b3857ed2cc48022b7746a6
  • Auth tag (hex): ddba4ee8a62f5de44c86f463d4e11acb

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