Hapoel Beer Sheva vs Dinamo Zagreb
Europa League · UEFA · 16 Sept 2026, 19: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.
2C4oPTnJQz/2PA7NI2OIy/T5Q/+yBWZr5YD/088qnlCASHmrYuywlpbRFfNx/D7wFPUMN1NAyvKvi6fgjJiFsJGMBqIaFk3MVCb0+TO+O7JLD1wRJ64dTxdrz8kMfR6H/kXFg6WXHiEq4UBiagUWmotgQ98C+83Ep141D2NYYWJbegkfhynDqiDbNu5v8+BYkO04KPSCZjddXrz4Xa2/+tXeQXTSqJnBleoaNlBGzWlD/nYz2HfV4KmlalutGFcNf1MdK+yHkMB42MY4fF70IYSeOztVm07z0xh0pWRAxb7mbqJVicZGh/l1FrHJKA2i+FHJ4lSYboHty56A+viKp3YvrGkTCmCnyQunylpGm6AWU7IJ
4153b675f37f4b3a152f84b408005f9c7f36edef0531fdd411df1369bc95158fDecrypt 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("2C4oPTnJQz/2PA7NI2OIy/T5Q/+yBWZr5YD/088qnlCASHmrYuywlpbRFfNx/D7wFPUMN1NAyvKvi6fgjJiFsJGMBqIaFk3MVCb0+TO+O7JLD1wRJ64dTxdrz8kMfR6H/kXFg6WXHiEq4UBiagUWmotgQ98C+83Ep141D2NYYWJbegkfhynDqiDbNu5v8+BYkO04KPSCZjddXrz4Xa2/+tXeQXTSqJnBleoaNlBGzWlD/nYz2HfV4KmlalutGFcNf1MdK+yHkMB42MY4fF70IYSeOztVm07z0xh0pWRAxb7mbqJVicZGh/l1FrHJKA2i+FHJ4lSYboHty56A+viKp3YvrGkTCmCnyQunylpGm6AWU7IJ"), c => c.charCodeAt(0));
const key = Uint8Array.from("4153b675f37f4b3a152f84b408005f9c7f36edef0531fdd411df1369bc95158f".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):
4153b675f37f4b3a152f84b408005f9c7f36edef0531fdd411df1369bc95158f - IV / nonce (hex):
d82e283d39c9433ff63c0ecd - Ciphertext (hex):
236388cbf4f943ffb205666be580ffd3cf2a9e50804879ab62ecb09696d115f371fc3ef014f50c375340caf2af8ba7e08c9885b0918c06a21a164dcc5426f4f933be3bb24b0f5c1127ae1d4f176bcfc90c7d1e87fe45c583a5971e212ae140626a05169a8b6043df02fbcdc4a75e350f635861625b7a091f8729c3aa20db36ee6ff3e05890ed3828f48266375d5ebcf85dadbffad5de4174d2a899c195ea1a365046cd6943fe7633d877d5e0a9a56a5bad18570d7f531d2bec8790c078d8c6387c5ef421849e3b3b559b4ef3d31874a56440c5bee66ea25589c64687f97516b1c9280da2f851c9e254986e81edcb9e80faf88aa7762fac69 - Auth tag (hex):
130a60a7c90ba7ca5a469ba01653b209
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 #964860 · 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.