FC Tallinn vs Nõmme United II
Esiliiga A · Estonia · 04 Jul 2026, 12: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.
0Nn3EbMLnd4TQdYtGFcpILlUyIY/rAOXA6vg+WxgysYw6CgBsv/GZZeZ+cirJQkNt0WVFO+UFGll32cAEKhT4rAheH0Anjct3956zF6jQHo5Tr5tSVTgLsLU8YHjf6v2BEdesNhRyzf438npf6t1+WLMC+LHkQzrk3NXiQii9+9BDI804RFT3y6GeVqQY1bx5OcJ5v2BBX8OcLJwnidHkvXfxpNRcIQReqzE9dEZ18rCvvYwWdqciKLTB8g4fWHRq7tmVU3cI4EU1vJX2HrDnBSed6x/CXAyaUyt1P3zNFXNJXA0Tq3pjBxm5bqhfL8xYxynjMV/aDUOPrzwE9F8dmXN1WV64m+C
318092133668539c84150faa9fe46c749653bc601e1d760a9ee8a5611dd63f77Decrypt 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("0Nn3EbMLnd4TQdYtGFcpILlUyIY/rAOXA6vg+WxgysYw6CgBsv/GZZeZ+cirJQkNt0WVFO+UFGll32cAEKhT4rAheH0Anjct3956zF6jQHo5Tr5tSVTgLsLU8YHjf6v2BEdesNhRyzf438npf6t1+WLMC+LHkQzrk3NXiQii9+9BDI804RFT3y6GeVqQY1bx5OcJ5v2BBX8OcLJwnidHkvXfxpNRcIQReqzE9dEZ18rCvvYwWdqciKLTB8g4fWHRq7tmVU3cI4EU1vJX2HrDnBSed6x/CXAyaUyt1P3zNFXNJXA0Tq3pjBxm5bqhfL8xYxynjMV/aDUOPrzwE9F8dmXN1WV64m+C"), c => c.charCodeAt(0));
const key = Uint8Array.from("318092133668539c84150faa9fe46c749653bc601e1d760a9ee8a5611dd63f77".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):
318092133668539c84150faa9fe46c749653bc601e1d760a9ee8a5611dd63f77 - IV / nonce (hex):
d0d9f711b30b9dde1341d62d - Ciphertext (hex):
18572920b954c8863fac039703abe0f96c60cac630e82801b2ffc6659799f9c8ab25090db7459514ef94146965df670010a853e2b021787d009e372ddfde7acc5ea3407a394ebe6d4954e02ec2d4f181e37fabf604475eb0d851cb37f8dfc9e97fab75f962cc0be2c7910ceb9373578908a2f7ef410c8f34e11153df2e86795a906356f1e4e709e6fd81057f0e70b2709e274792f5dfc693517084117aacc4f5d119d7cac2bef63059da9c88a2d307c8387d61d1abbb66554ddc238114d6f257d87ac39c149e77ac7f097032694cadd4fdf33455cd2570344eade98c1c66e5baa17cbf31631ca78cc57f6835 - Auth tag (hex):
0e3ebcf013d17c7665cdd5657ae26f82
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 #956641 · 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.