Slask Wroclaw vs Widzew Lodz
Ekstraklasa · Poland · 22 Aug 2026, 18:15 UTC
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.
0LvPhRzVO2bEPiM5Ue1+6BP2bfS67tSBMNFoAHGW3nhJaWxuT6VQaHaSCcaVldrUwyRxbbKlEEVHbmZ4c7ie9zmnkATBJfgEPDqrdgufKtDCCLYIKaptRlqyP4EtDXlDi84nMawJK48zxc0G4Nps+2NZWKuyG8vvAnbbXfXo/fkAY9dsDGXC6QuA2zKxgY3b7J4QwixjiKFs62u7+GgZl4G6F+tUIInU75meiFy2OxC+f3mhUVJ2zIsi1Sf3b+gV7wVKn06A6ht2zgenUxR40QsgrV27BbTjRKr8oe82dUTVzA6tX6FxpLxfJ5gf/0gXRdZ12Uu51qv45w8uWAkS7mXzomTzsvn64pEvEiUo
b0250a3391f8d31eb99e6856211f843f7aecd7847b2a219bf96b6c63ad2ad8cbDecrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("0LvPhRzVO2bEPiM5Ue1+6BP2bfS67tSBMNFoAHGW3nhJaWxuT6VQaHaSCcaVldrUwyRxbbKlEEVHbmZ4c7ie9zmnkATBJfgEPDqrdgufKtDCCLYIKaptRlqyP4EtDXlDi84nMawJK48zxc0G4Nps+2NZWKuyG8vvAnbbXfXo/fkAY9dsDGXC6QuA2zKxgY3b7J4QwixjiKFs62u7+GgZl4G6F+tUIInU75meiFy2OxC+f3mhUVJ2zIsi1Sf3b+gV7wVKn06A6ht2zgenUxR40QsgrV27BbTjRKr8oe82dUTVzA6tX6FxpLxfJ5gf/0gXRdZ12Uu51qv45w8uWAkS7mXzomTzsvn64pEvEiUo"), c => c.charCodeAt(0));
const key = Uint8Array.from("b0250a3391f8d31eb99e6856211f843f7aecd7847b2a219bf96b6c63ad2ad8cb".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):
b0250a3391f8d31eb99e6856211f843f7aecd7847b2a219bf96b6c63ad2ad8cb - IV / nonce (hex):
d0bbcf851cd53b66c43e2339 - Ciphertext (hex):
51ed7ee813f66df4baeed48130d168007196de7849696c6e4fa55068769209c69595dad4c324716db2a51045476e667873b89ef739a79004c125f8043c3aab760b9f2ad0c208b60829aa6d465ab23f812d0d79438bce2731ac092b8f33c5cd06e0da6cfb635958abb21bcbef0276db5df5e8fdf90063d76c0c65c2e90b80db32b1818ddbec9e10c22c6388a16ceb6bbbf868199781ba17eb542089d4ef999e885cb63b10be7f79a1515276cc8b22d527f76fe815ef054a9f4e80ea1b76ce07a7531478d10b20ad5dbb05b4e344aafca1ef367544d5cc0ead5fa171a4bc5f27981fff481745d675d94bb9d6abf8e70f2e5809 - Auth tag (hex):
12ee65f3a264f3b2f9fae2912f122528
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #963599 · 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.