F91 Dudelange vs UN Kaerjeng 97
National Division · Luxembourg · 16 Sept 2026, 18: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.
I7gvkDfj43DD3Ey2R/p02m1cgIVPr7wL+puMMDDMYGF3Qs0V4Ymqno5F7uY3m9tCZ9P94KiMXajE8Ste3VuifAVbfzrXuXW1VwNyeom2phmCecjBVBb69EH3W2vQgJt+RDsED0EE6sbTFcujXQxOIDNUdvcx7mwv6uE5Ye3v0U1NFn+hH9s046x4zaUqH6vPB8Qd3ECCuIh5By6DHO/6/+IZ9koDugSgsvcsreKpAFnxYntJjV5z9ktriX4zn5jjeH1JHY9IL8o6BCL6Q1qCGfl/p/JEO/W+/s37B2mYdiIDUKKoHHhWOn2JP8ZGRgHiQjoTXvkkHsu2UU64ETnc+umg6ehAYj16Svx0dGnI
847ad522c60fae30dbe166639ca7aa6038260e61479d0004174ceff3b8064f5fDecrypt 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("I7gvkDfj43DD3Ey2R/p02m1cgIVPr7wL+puMMDDMYGF3Qs0V4Ymqno5F7uY3m9tCZ9P94KiMXajE8Ste3VuifAVbfzrXuXW1VwNyeom2phmCecjBVBb69EH3W2vQgJt+RDsED0EE6sbTFcujXQxOIDNUdvcx7mwv6uE5Ye3v0U1NFn+hH9s046x4zaUqH6vPB8Qd3ECCuIh5By6DHO/6/+IZ9koDugSgsvcsreKpAFnxYntJjV5z9ktriX4zn5jjeH1JHY9IL8o6BCL6Q1qCGfl/p/JEO/W+/s37B2mYdiIDUKKoHHhWOn2JP8ZGRgHiQjoTXvkkHsu2UU64ETnc+umg6ehAYj16Svx0dGnI"), c => c.charCodeAt(0));
const key = Uint8Array.from("847ad522c60fae30dbe166639ca7aa6038260e61479d0004174ceff3b8064f5f".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):
847ad522c60fae30dbe166639ca7aa6038260e61479d0004174ceff3b8064f5f - IV / nonce (hex):
23b82f9037e3e370c3dc4cb6 - Ciphertext (hex):
47fa74da6d5c80854fafbc0bfa9b8c3030cc60617742cd15e189aa9e8e45eee6379bdb4267d3fde0a88c5da8c4f12b5edd5ba27c055b7f3ad7b975b55703727a89b6a6198279c8c15416faf441f75b6bd0809b7e443b040f4104eac6d315cba35d0c4e20335476f731ee6c2feae13961edefd14d4d167fa11fdb34e3ac78cda52a1fabcf07c41ddc4082b88879072e831ceffaffe219f64a03ba04a0b2f72cade2a90059f1627b498d5e73f64b6b897e339f98e3787d491d8f482fca3a0422fa435a8219f97fa7f2443bf5befecdfb07699876220350a2a81c78563a7d893fc6464601e2423a135ef9241ecbb6514eb81139 - Auth tag (hex):
dcfae9a0e9e840623d7a4afc747469c8
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 #967130 · 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.