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

Babelsberg vs St. Pauli

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

Final score
1 : 4
Result
Lost
Pick
Babelsberg
Market
1x2
Model prob.
13.4%
Best price
14.42
Min odds
10.64
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)
LK5mwLgQ62KELjLOgOaCHw9AfN/vKheFWBhMdOAD8ahv+r3YiReDnN8tALWjPIz49KCP7IR0c4pIB6XbSbPJAusevLmfMTFQE6oi5C1RjyXeGQSuwTemMFR3BO7vjlDOgqMoHMnlwcLHXK+U3/3S6oj0r4x3IUWXdCNRCYSppoHp9mNlD+MXRfhajVNrpXy3vm+HspUGo0jmIgPigN8nah6bhm+esUiQdOOoC4EfH535ZBrx6k4+wr/gxMoSFyzM80U3PbE8iyl6RDmcPKw8bXTKKeiPvyM/olxECHDNW+nWiOgTXq6MQZqaeIvuBL/0YFTMQIuXU07I+NkFI7NY8raVSeClqNR/ng==
key fingerprint sha256: 84d9e5673d0fabe63815f0b9d15cab3a42b9bcda2ccd1e1b2f52fd6517bdb5cf
Decrypt it & read the pick
Decryption key (released after the match)
cc6fb1a96d0df76f75c3a5644c3b442814ff66b08a2b484960df8bf190f323cd
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("LK5mwLgQ62KELjLOgOaCHw9AfN/vKheFWBhMdOAD8ahv+r3YiReDnN8tALWjPIz49KCP7IR0c4pIB6XbSbPJAusevLmfMTFQE6oi5C1RjyXeGQSuwTemMFR3BO7vjlDOgqMoHMnlwcLHXK+U3/3S6oj0r4x3IUWXdCNRCYSppoHp9mNlD+MXRfhajVNrpXy3vm+HspUGo0jmIgPigN8nah6bhm+esUiQdOOoC4EfH535ZBrx6k4+wr/gxMoSFyzM80U3PbE8iyl6RDmcPKw8bXTKKeiPvyM/olxECHDNW+nWiOgTXq6MQZqaeIvuBL/0YFTMQIuXU07I+NkFI7NY8raVSeClqNR/ng=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("cc6fb1a96d0df76f75c3a5644c3b442814ff66b08a2b484960df8bf190f323cd".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): cc6fb1a96d0df76f75c3a5644c3b442814ff66b08a2b484960df8bf190f323cd
  • IV / nonce (hex): 2cae66c0b810eb62842e32ce
  • Ciphertext (hex): 80e6821f0f407cdfef2a178558184c74e003f1a86ffabdd88917839cdf2d00b5a33c8cf8f4a08fec8474738a4807a5db49b3c902eb1ebcb99f31315013aa22e42d518f25de1904aec137a630547704eeef8e50ce82a3281cc9e5c1c2c75caf94dffdd2ea88f4af8c772145977423510984a9a681e9f663650fe31745f85a8d536ba57cb7be6f87b29506a348e62203e280df276a1e9b866f9eb1489074e3a80b811f1f9df9641af1ea4e3ec2bfe0c4ca12172cccf345373db13c8b297a44399c3cac3c6d74ca29e88fbf233fa25c440870cd5be9d688e8135eae8c419a9a788bee04bff46054cc408b97534ec8
  • Auth tag (hex): f8d90523b358f2b69549e0a5a8d47f9e

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