Dunărea 2020 Giurgiu vs Dunarea Turris Turnu Magurele
Romania Cup · Romania · 05 Aug 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.
H/P0OjYBaIAkDBys63sKnbeGQ6W0ZFL+rtNcVOWMNHpq+s3BxJcQRXnaVDwD99okibiUfShAyMbqPJr9Vl5TXWRutFGaQcZH1FCDZ342b/sV8293X62lXPR6UXpIpg2jdGY5Hh5YD0oXOU+EU8wk2u8pj4Vu033Rs24cohZ8HnX2BFhmo9rhoHuCfoYhVyd7vjSYVNPytKBdp3+69zgjbjxYJAp+tA2pnocGYPLQbqKuZtQRfSrztQrInoZdA6M/HetfriHeXsxCYg+eNIlUfzNnqjFZkVTcERlptx4MOYfth5nPNDbaCyfZjthzHhmVJj25RlJhdPFd0eXauiENI6e7ABnBT4wkLlmOYjG68GHbmPDz
783d40c9bc2dacaae76746d238c3a68c0d5c57948dc21c3494f980daddbda6adDecrypt 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("H/P0OjYBaIAkDBys63sKnbeGQ6W0ZFL+rtNcVOWMNHpq+s3BxJcQRXnaVDwD99okibiUfShAyMbqPJr9Vl5TXWRutFGaQcZH1FCDZ342b/sV8293X62lXPR6UXpIpg2jdGY5Hh5YD0oXOU+EU8wk2u8pj4Vu033Rs24cohZ8HnX2BFhmo9rhoHuCfoYhVyd7vjSYVNPytKBdp3+69zgjbjxYJAp+tA2pnocGYPLQbqKuZtQRfSrztQrInoZdA6M/HetfriHeXsxCYg+eNIlUfzNnqjFZkVTcERlptx4MOYfth5nPNDbaCyfZjthzHhmVJj25RlJhdPFd0eXauiENI6e7ABnBT4wkLlmOYjG68GHbmPDz"), c => c.charCodeAt(0));
const key = Uint8Array.from("783d40c9bc2dacaae76746d238c3a68c0d5c57948dc21c3494f980daddbda6ad".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):
783d40c9bc2dacaae76746d238c3a68c0d5c57948dc21c3494f980daddbda6ad - IV / nonce (hex):
1ff3f43a36016880240c1cac - Ciphertext (hex):
eb7b0a9db78643a5b46452feaed35c54e58c347a6afacdc1c497104579da543c03f7da2489b8947d2840c8c6ea3c9afd565e535d646eb4519a41c647d45083677e366ffb15f36f775fada55cf47a517a48a60da37466391e1e580f4a17394f8453cc24daef298f856ed37dd1b36e1ca2167c1e75f6045866a3dae1a07b827e862157277bbe349854d3f2b4a05da77fbaf738236e3c58240a7eb40da99e870660f2d06ea2ae66d4117d2af3b50ac89e865d03a33f1deb5fae21de5ecc42620f9e3489547f3367aa31599154dc111969b71e0c3987ed8799cf3436da0b27d98ed8731e1995263db946526174f15dd1e5daba210d23a7bb0019 - Auth tag (hex):
c14f8c242e598e6231baf061db98f0f3
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 #961140 · 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.