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

Gedania Gdansk vs KTS-K Luzino

3rd Liga · Poland · 05 Sept 2026, 10:00 UTC

Final score
0 : 4
Result
Lost
Pick
Gedania Gdansk
Market
1X2
CLV vs fair close
+22.64%
Model prob.
21.0%
Best price
5.40
Min odds
4.86
Stake factor
1.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)
xmIfGatcPPudH1enTaOhqd7g2IqY1eVBSa918UYNETmQaoENzWd+yBpO+1wcrsKRGFQPkFVMPmPmbsjno1cXouv+QtTIckdqPHdZ2ZJsdXzDhQg9IYiuVo8OC/WWZYBNp19JLW2PcFXg58zd/PxOf50dFEqUFHMm8xIMoHLveHaLJM6sNX/VLmRg2fdfu+5Ue6n9ZjcpK3BtiZRH9eAGta9Y0CrcPBM2VCDI7BLyPuxwORhlwWDkwSwLfnKj/Ap12ZD2gX7SUN3eMzKIDSW9i88Wa+0aXG7VhzaroILL3uimhTEOND36lzgMXZPP+1W3IXHR0O6RGW9IzYReY8iQMXLnBecckh51lXftjHhkaQ==
key fingerprint sha256: 94b5430f2f1341138a18b72ba25879d9e527e94b4f42620ffe36f5ef8c95ffbd
Decrypt it & read the pick
Decryption key (released after the match)
fbb6288db92ae839f40fbf70117d0329c5e00c9b0c4789361c72dead1ad56968
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("xmIfGatcPPudH1enTaOhqd7g2IqY1eVBSa918UYNETmQaoENzWd+yBpO+1wcrsKRGFQPkFVMPmPmbsjno1cXouv+QtTIckdqPHdZ2ZJsdXzDhQg9IYiuVo8OC/WWZYBNp19JLW2PcFXg58zd/PxOf50dFEqUFHMm8xIMoHLveHaLJM6sNX/VLmRg2fdfu+5Ue6n9ZjcpK3BtiZRH9eAGta9Y0CrcPBM2VCDI7BLyPuxwORhlwWDkwSwLfnKj/Ap12ZD2gX7SUN3eMzKIDSW9i88Wa+0aXG7VhzaroILL3uimhTEOND36lzgMXZPP+1W3IXHR0O6RGW9IzYReY8iQMXLnBecckh51lXftjHhkaQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("fbb6288db92ae839f40fbf70117d0329c5e00c9b0c4789361c72dead1ad56968".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): fbb6288db92ae839f40fbf70117d0329c5e00c9b0c4789361c72dead1ad56968
  • IV / nonce (hex): c6621f19ab5c3cfb9d1f57a7
  • Ciphertext (hex): 4da3a1a9dee0d88a98d5e54149af75f1460d1139906a810dcd677ec81a4efb5c1caec29118540f90554c3e63e66ec8e7a35717a2ebfe42d4c872476a3c7759d9926c757cc385083d2188ae568f0e0bf59665804da75f492d6d8f7055e0e7ccddfcfc4e7f9d1d144a94147326f3120ca072ef78768b24ceac357fd52e6460d9f75fbbee547ba9fd6637292b706d899447f5e006b5af58d02adc3c13365420c8ec12f23eec70391865c160e4c12c0b7e72a3fc0a75d990f6817ed250ddde3332880d25bd8bcf166bed1a5c6ed58736aba082cbdee8a685310e343dfa97380c5d93cffb55b72171d1d0ee91196f48cd845e63c890
  • Auth tag (hex): 3172e705e71c921e759577ed8c786469

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