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

Hansa Rostock vs Greifswalder FC

Club Friendlies 3 · World · 15 Jul 2026, 14:30 UTC

Final score
3 : 0
Result
Won
Pick
Hansa Rostock
Market
1x2
Model prob.
84.0%
Best price
1.30
Min odds
1.25
Stake factor
1.70

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)
ZWyzokUlkPzgMAZOO7oxS1NsCN+mk70ZEqKqSdr5ZujeexY2kVHMjSOY8+b95BgjALqRdQlZ+f5h89bmtOU1AyQ/0VQO6h88UhbFfjkW/FxmEkNiUyiZyBnHdmZpaBbkkSAQ4WWvk1ZDue2UTUIrXIMMpGlkyiWg3Q3TtSOyEYkIq1UY+NbBUdV6vf0d/h8/Pw5KxAXDnrrKfKjbEpKDuP9dMIdWH5+LDdzeXZK8GsY9M6i+m8dan+6BjRS4Yk3cIept3iOmN4cdXL/54Tvwmy69kaItQzqHuPBRxT3opy+OoOkEtyT9FD9+9T4xXdq7LM7wXUxeMpJ6PZ7CGrfGvk1SfyZllUecoK0=
key fingerprint sha256: ca35d096722d508ac614c86e5d2c6b9e5e62ef88fffaab864b9b435d6c6684ca
Decrypt it & read the pick
Decryption key (released after the match)
20c470cab1818accb673f3ceeac97394e105fdda8b19f049615952d9b9af381a
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("ZWyzokUlkPzgMAZOO7oxS1NsCN+mk70ZEqKqSdr5ZujeexY2kVHMjSOY8+b95BgjALqRdQlZ+f5h89bmtOU1AyQ/0VQO6h88UhbFfjkW/FxmEkNiUyiZyBnHdmZpaBbkkSAQ4WWvk1ZDue2UTUIrXIMMpGlkyiWg3Q3TtSOyEYkIq1UY+NbBUdV6vf0d/h8/Pw5KxAXDnrrKfKjbEpKDuP9dMIdWH5+LDdzeXZK8GsY9M6i+m8dan+6BjRS4Yk3cIept3iOmN4cdXL/54Tvwmy69kaItQzqHuPBRxT3opy+OoOkEtyT9FD9+9T4xXdq7LM7wXUxeMpJ6PZ7CGrfGvk1SfyZllUecoK0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("20c470cab1818accb673f3ceeac97394e105fdda8b19f049615952d9b9af381a".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): 20c470cab1818accb673f3ceeac97394e105fdda8b19f049615952d9b9af381a
  • IV / nonce (hex): 656cb3a2452590fce030064e
  • Ciphertext (hex): 3bba314b536c08dfa693bd1912a2aa49daf966e8de7b16369151cc8d2398f3e6fde4182300ba91750959f9fe61f3d6e6b4e53503243fd1540eea1f3c5216c57e3916fc5c66124362532899c819c77666696816e4912010e165af935643b9ed944d422b5c830ca46964ca25a0dd0dd3b523b2118908ab5518f8d6c151d57abdfd1dfe1f3f3f0e4ac405c39ebaca7ca8db129283b8ff5d3087561f9f8b0ddcde5d92bc1ac63d33a8be9bc75a9fee818d14b8624ddc21ea6dde23a637871d5cbff9e13bf09b2ebd91a22d433a87b8f051c53de8a72f8ea0e904b724fd143f7ef53e315ddabb2ccef05d4c5e32927a3d
  • Auth tag (hex): 9ec21ab7c6be4d527f266595479ca0ad

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