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

Wurzburger Kickers vs Stuttgart II

3. Liga · Germany · 06 Sept 2026, 11:30 UTC

Final score
1 : 2
Result
Lost
Pick
Wurzburger Kickers
Market
1X2
CLV vs fair close
+7.99%
Model prob.
45.8%
Best price
2.30
Min odds
2.23
Stake factor
1.40

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)
G9sMoadkburnVhHrhExQYnsEyrtra52ppqRDlyf2Y1nUgZxvLBCrtw6K1JH+5O22cO67QGKir+AmQIyefEbI4fv4/1X7+PjEGbjNDw9QScVKkB7a8rGOilHYDEMGvDoogFJWLrppQH/74YVjxhPR9s9Ad3dzz+/0xO0820yyMl+fYZWy16oOIBfaD83E5JRVw3l8YWqmiPYXhn12vTeb3GZVat9nicYMf0oV1aj3VtpSB7JDtb9KlsBerdfQ0XF59kAesmr4AF1rm6T9z6hSpCsLjBNhGQPronLMi4/RdQMGHsw6PZUX2rC+BmQuDVtZ//6XBcMw3xEubTvWTECCTvNKJsnVzDVJYCOLmUjZhN/K/hQa
key fingerprint sha256: b3cb58b2297d53526106af5e127e88c12bf5516701f68b57077ff923bb070f40
Decrypt it & read the pick
Decryption key (released after the match)
4c79e293c8820093dbeaa5d9c25966b34351253bf8ac9b7beb2123f833ce2a28
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("G9sMoadkburnVhHrhExQYnsEyrtra52ppqRDlyf2Y1nUgZxvLBCrtw6K1JH+5O22cO67QGKir+AmQIyefEbI4fv4/1X7+PjEGbjNDw9QScVKkB7a8rGOilHYDEMGvDoogFJWLrppQH/74YVjxhPR9s9Ad3dzz+/0xO0820yyMl+fYZWy16oOIBfaD83E5JRVw3l8YWqmiPYXhn12vTeb3GZVat9nicYMf0oV1aj3VtpSB7JDtb9KlsBerdfQ0XF59kAesmr4AF1rm6T9z6hSpCsLjBNhGQPronLMi4/RdQMGHsw6PZUX2rC+BmQuDVtZ//6XBcMw3xEubTvWTECCTvNKJsnVzDVJYCOLmUjZhN/K/hQa"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4c79e293c8820093dbeaa5d9c25966b34351253bf8ac9b7beb2123f833ce2a28".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): 4c79e293c8820093dbeaa5d9c25966b34351253bf8ac9b7beb2123f833ce2a28
  • IV / nonce (hex): 1bdb0ca1a7646eeae75611eb
  • Ciphertext (hex): 844c50627b04cabb6b6b9da9a6a4439727f66359d4819c6f2c10abb70e8ad491fee4edb670eebb4062a2afe026408c9e7c46c8e1fbf8ff55fbf8f8c419b8cd0f0f5049c54a901edaf2b18e8a51d80c4306bc3a288052562eba69407ffbe18563c613d1f6cf40777773cfeff4c4ed3cdb4cb2325f9f6195b2d7aa0e2017da0fcdc4e49455c3797c616aa688f617867d76bd379bdc66556adf6789c60c7f4a15d5a8f756da5207b243b5bf4a96c05eadd7d0d17179f6401eb26af8005d6b9ba4fdcfa852a42b0b8c13611903eba272cc8b8fd17503061ecc3a3d9517dab0be06642e0d5b59fffe9705c330df112e6d3bd64c40824ef34a26c9
  • Auth tag (hex): d5cc354960238b9948d984dfcafe141a

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