Jablonec vs Varaždin
Europa Conference League · Europe · 30 Jul 2026, 16:00 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.
yZZAjRz0Uck2G8l+Sro6ChwdVQj/6yu8zvT/p3HKLHynd7MjApo2kjACrslw67yN8DDHCAPVfmyWuTeTKorvsqQ4i73ZWDZSKAaS32B5bvCVxhWQnpdTh9UmPAb22+aZR3wlWL1VeW+79qip28K8i2laFvyOGjLMCtwcTy5cGPxJZXgzTlmxN09BUfNcUwaPIzwBUBY5WTanrcMpsRcgWYzAuAj7Kgyv42YN2bZI1XkQWCMVedoUk7JYVnHH6UN1CmfglcWykNfQw5UjxTh41DKPwdgtv31sj+BK+fZmpJ80XWA2xz2EzmimQ+CjKeOQajCy90/r7MQXHkAGZSLOYlWG1hUhkzEa
17b32a03e2850d4a2ea7bc50860a4c81d0cf297ccf77c15340379ebfa7d2c237Decrypt 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("yZZAjRz0Uck2G8l+Sro6ChwdVQj/6yu8zvT/p3HKLHynd7MjApo2kjACrslw67yN8DDHCAPVfmyWuTeTKorvsqQ4i73ZWDZSKAaS32B5bvCVxhWQnpdTh9UmPAb22+aZR3wlWL1VeW+79qip28K8i2laFvyOGjLMCtwcTy5cGPxJZXgzTlmxN09BUfNcUwaPIzwBUBY5WTanrcMpsRcgWYzAuAj7Kgyv42YN2bZI1XkQWCMVedoUk7JYVnHH6UN1CmfglcWykNfQw5UjxTh41DKPwdgtv31sj+BK+fZmpJ80XWA2xz2EzmimQ+CjKeOQajCy90/r7MQXHkAGZSLOYlWG1hUhkzEa"), c => c.charCodeAt(0));
const key = Uint8Array.from("17b32a03e2850d4a2ea7bc50860a4c81d0cf297ccf77c15340379ebfa7d2c237".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):
17b32a03e2850d4a2ea7bc50860a4c81d0cf297ccf77c15340379ebfa7d2c237 - IV / nonce (hex):
c996408d1cf451c9361bc97e - Ciphertext (hex):
4aba3a0a1c1d5508ffeb2bbccef4ffa771ca2c7ca777b323029a36923002aec970ebbc8df030c70803d57e6c96b937932a8aefb2a4388bbdd9583652280692df60796ef095c615909e975387d5263c06f6dbe699477c2558bd55796fbbf6a8a9dbc2bc8b695a16fc8e1a32cc0adc1c4f2e5c18fc496578334e59b1374f4151f35c53068f233c015016395936a7adc329b11720598cc0b808fb2a0cafe3660dd9b648d5791058231579da1493b2585671c7e943750a67e095c5b290d7d0c39523c53878d4328fc1d82dbf7d6c8fe04af9f666a49f345d6036c73d84ce68a643e0a329e3906a30b2f74febecc4 - Auth tag (hex):
171e40066522ce625586d6152193311a
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 #960207 · 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.