Karviná vs Považská Bystrica
Club Friendlies 3 · World · 11 Jul 2026, 14:30 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.
IybsR+cgXFdD51/3Mwfz0N4WA9PgNUxw3okiyCQT6N5+liZH+UHvXqNQqf3r8mvtn8t8E6FMTzgz2tjefDQk15pPnFHKSEchD9F2SrRNF9KLlOY8ye4EKfXmt52+sttRQkKmA16/GEsubFLRJdt7I1SQkm36tb+og41DTVTOBEzYVIpjUviECLFDGNIsfAHDKh+K0XUKKNdIwvsqeAg7eiUCAUs3o3j8kvfVGqAFzb9C63skBM5aCjok5ufdhrjDfsbu+6Twmp1MkNYFXl5IVhNuD+hMXFuZN9z2fYr2umZcHTgfhHhU0ODFRLfU16zUZiDYfIGKDCt/M2rFWakws+fHoq5zuwNO
3fb4ba950a77cfd2b21515c41d66c54a5fa29d0d6d1406c0c73572c9e86c7c5cDecrypt 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("IybsR+cgXFdD51/3Mwfz0N4WA9PgNUxw3okiyCQT6N5+liZH+UHvXqNQqf3r8mvtn8t8E6FMTzgz2tjefDQk15pPnFHKSEchD9F2SrRNF9KLlOY8ye4EKfXmt52+sttRQkKmA16/GEsubFLRJdt7I1SQkm36tb+og41DTVTOBEzYVIpjUviECLFDGNIsfAHDKh+K0XUKKNdIwvsqeAg7eiUCAUs3o3j8kvfVGqAFzb9C63skBM5aCjok5ufdhrjDfsbu+6Twmp1MkNYFXl5IVhNuD+hMXFuZN9z2fYr2umZcHTgfhHhU0ODFRLfU16zUZiDYfIGKDCt/M2rFWakws+fHoq5zuwNO"), c => c.charCodeAt(0));
const key = Uint8Array.from("3fb4ba950a77cfd2b21515c41d66c54a5fa29d0d6d1406c0c73572c9e86c7c5c".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):
3fb4ba950a77cfd2b21515c41d66c54a5fa29d0d6d1406c0c73572c9e86c7c5c - IV / nonce (hex):
2326ec47e7205c5743e75ff7 - Ciphertext (hex):
3307f3d0de1603d3e0354c70de8922c82413e8de7e962647f941ef5ea350a9fdebf26bed9fcb7c13a14c4f3833dad8de7c3424d79a4f9c51ca4847210fd1764ab44d17d28b94e63cc9ee0429f5e6b79dbeb2db514242a6035ebf184b2e6c52d125db7b235490926dfab5bfa8838d434d54ce044cd8548a6352f88408b14318d22c7c01c32a1f8ad1750a28d748c2fb2a78083b7a2502014b37a378fc92f7d51aa005cdbf42eb7b2404ce5a0a3a24e6e7dd86b8c37ec6eefba4f09a9d4c90d6055e5e4856136e0fe84c5c5b9937dcf67d8af6ba665c1d381f847854d0e0c544b7d4d7acd46620d87c818a0c2b - Auth tag (hex):
7f336ac559a930b3e7c7a2ae73bb034e
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 #957441 · 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.