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

Zlín vs Banská Bystrica

Club Friendlies 3 · World · 10 Jul 2026, 09:00 UTC

Final score
2 : 1
Result
Won
Pick
Zlín
Market
1x2
Model prob.
67.7%
Best price
1.79
Min odds
1.57
Stake factor
2.80

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)
rAes5IhTwILsCSmsDauTVY/RUvAY0S5dI4JoQUlOU/I98omCtTHTcRg4/e099IMvye2AG/T/i06x40vGPSmt2IPcPtqjAWrf7xYoKP7NXy4AbI1r4Y7647je2ZhFyo7qdT8j2kN+nil9h6YAFSpUH/D3ssUp/0yx2U6OKx5jZXLGRsee2HTzJRotksRarvUciWqh1l9eqBtllQPPRN5SRv4i0zbXGMnXBDMMaIKVlumAdmg97Uuq6Ti4Z2tZUpHR5oxcrr8816ZWzTySO3m5VM4/lTh6wwsmu2LhHmiTu8X1ROm+cpY1hjPHmBenlB7yZtmncAnhqWuBDvwI9zpiaqFGT6FudA==
key fingerprint sha256: 7341a0f5a6cbe92001a18554ed233a2e2de32f7ca8e64422005bdf3c8c11f9f4
Decrypt it & read the pick
Decryption key (released after the match)
991491688c0c2ee559e96faf65dcb44ce373126f858b40c2f11fa909fd5bdaa1
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("rAes5IhTwILsCSmsDauTVY/RUvAY0S5dI4JoQUlOU/I98omCtTHTcRg4/e099IMvye2AG/T/i06x40vGPSmt2IPcPtqjAWrf7xYoKP7NXy4AbI1r4Y7647je2ZhFyo7qdT8j2kN+nil9h6YAFSpUH/D3ssUp/0yx2U6OKx5jZXLGRsee2HTzJRotksRarvUciWqh1l9eqBtllQPPRN5SRv4i0zbXGMnXBDMMaIKVlumAdmg97Uuq6Ti4Z2tZUpHR5oxcrr8816ZWzTySO3m5VM4/lTh6wwsmu2LhHmiTu8X1ROm+cpY1hjPHmBenlB7yZtmncAnhqWuBDvwI9zpiaqFGT6FudA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("991491688c0c2ee559e96faf65dcb44ce373126f858b40c2f11fa909fd5bdaa1".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): 991491688c0c2ee559e96faf65dcb44ce373126f858b40c2f11fa909fd5bdaa1
  • IV / nonce (hex): ac07ace48853c082ec0929ac
  • Ciphertext (hex): 0dab93558fd152f018d12e5d23826841494e53f23df28982b531d3711838fded3df4832fc9ed801bf4ff8b4eb1e34bc63d29add883dc3edaa3016adfef162828fecd5f2e006c8d6be18efae3b8ded99845ca8eea753f23da437e9e297d87a600152a541ff0f7b2c529ff4cb1d94e8e2b1e636572c646c79ed874f3251a2d92c45aaef51c896aa1d65f5ea81b659503cf44de5246fe22d336d718c9d704330c68829596e98076683ded4baae938b8676b595291d1e68c5caebf3cd7a656cd3c923b79b954ce3f95387ac30b26bb62e11e6893bbc5f544e9be7296358633c79817a7941ef266d9a77009e1
  • Auth tag (hex): a96b810efc08f73a626aa1464fa16e74

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