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

Erzgebirge Aue vs Kladno

Club Friendlies 3 · World · 11 Jul 2026, 12:30 UTC

Final score
2 : 0
Result
Won
Pick
Erzgebirge Aue
Market
1x2
Model prob.
52.9%
Best price
2.34
Min odds
2.05
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)
stxAyx4eU2vY8psS2MKbIh3INkQUqDz/ibhtoqK6+0QNhJDfUKVjLa/J8zSIYs4T6IsU6mRxQndYbxD5IcR+EfVs95Bviy5ajKB+8Chk9+hq4eoAZzAYcTGjTyAn0+XtHBTZEeWAluLFraSd3Vtxq1hrUzxRzXyD40f3Jmiq986IQtVsSdogrTTPV+f6bOAYLFGFGkY9pJyo7k/typzPlLbXJwqKRHSsVQbxmOg5IvC0jndLrD4QG90NZts9t3Y2qCYuMo8Q+zlJ2pzJUM44bAkVi9wHG5Q5UwaCyCNAFbOpXL9fQmGPOBdRMt7BhiESBsrxqq6JL6IIryoNDwRUrq8h3j2WHMTL6v51xd0=
key fingerprint sha256: c18872705a105f8af38200568a8d8d9df01c396d7aeddbcb8edc2fa45e35015a
Decrypt it & read the pick
Decryption key (released after the match)
b2e773804bf3afc66bc44b86fd577feeb2808045c264861492ed2f7a8754b31d
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("stxAyx4eU2vY8psS2MKbIh3INkQUqDz/ibhtoqK6+0QNhJDfUKVjLa/J8zSIYs4T6IsU6mRxQndYbxD5IcR+EfVs95Bviy5ajKB+8Chk9+hq4eoAZzAYcTGjTyAn0+XtHBTZEeWAluLFraSd3Vtxq1hrUzxRzXyD40f3Jmiq986IQtVsSdogrTTPV+f6bOAYLFGFGkY9pJyo7k/typzPlLbXJwqKRHSsVQbxmOg5IvC0jndLrD4QG90NZts9t3Y2qCYuMo8Q+zlJ2pzJUM44bAkVi9wHG5Q5UwaCyCNAFbOpXL9fQmGPOBdRMt7BhiESBsrxqq6JL6IIryoNDwRUrq8h3j2WHMTL6v51xd0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("b2e773804bf3afc66bc44b86fd577feeb2808045c264861492ed2f7a8754b31d".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): b2e773804bf3afc66bc44b86fd577feeb2808045c264861492ed2f7a8754b31d
  • IV / nonce (hex): b2dc40cb1e1e536bd8f29b12
  • Ciphertext (hex): d8c29b221dc8364414a83cff89b86da2a2bafb440d8490df50a5632dafc9f3348862ce13e88b14ea64714277586f10f921c47e11f56cf7906f8b2e5a8ca07ef02864f7e86ae1ea006730187131a34f2027d3e5ed1c14d911e58096e2c5ada49ddd5b71ab586b533c51cd7c83e347f72668aaf7ce8842d56c49da20ad34cf57e7fa6ce0182c51851a463da49ca8ee4fedca9ccf94b6d7270a8a4474ac5506f198e83922f0b48e774bac3e101bdd0d66db3db77636a8262e328f10fb3949da9cc950ce386c09158bdc071b9439530682c8234015b3a95cbf5f42618f38175132dec186211206caf1aaae892fa208af2a0d0f
  • Auth tag (hex): 0454aeaf21de3d961cc4cbeafe75c5dd

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