Donaufeld vs Rapid Wien II
Club Friendlies 3 · World · 14 Jul 2026, 16: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.
7K3U0thAeGHECaGMjoGLcAaFRarkrNSFrNUOpwi3QL+BgoOkFIAUvJ2k2XZwgGgr+iOCM8261lDsqie9xlc/v8DsF2ubR6wXc08yKgPtH6s0dsO/sR2lhHm1y6PSmJghmDsYG6PSG+kmjd+6vquqJn4orvUQIAFZRdLYxrAXByVEuUIj3QqirUHcSOAkkUpx4JIXq0bNFVBoMmwgaJ9MX/hBDypIJ6HY+rFsWtU5WW8DWX7oU93d9/xgr89FUJi5XA1rwDB5RQTsECxLdvXzDfROxhBPnKmMiHEYbjEtXMX33rQ29K06sdL9OBLGt8q974vMsfgRJQpJ4WcuRQ0iq+TdjRPr8a2a47yE
257a6f11b78507cf6fa6bf786f037977deb865e0a30dc6a5647bf224e061b4e5Decrypt 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("7K3U0thAeGHECaGMjoGLcAaFRarkrNSFrNUOpwi3QL+BgoOkFIAUvJ2k2XZwgGgr+iOCM8261lDsqie9xlc/v8DsF2ubR6wXc08yKgPtH6s0dsO/sR2lhHm1y6PSmJghmDsYG6PSG+kmjd+6vquqJn4orvUQIAFZRdLYxrAXByVEuUIj3QqirUHcSOAkkUpx4JIXq0bNFVBoMmwgaJ9MX/hBDypIJ6HY+rFsWtU5WW8DWX7oU93d9/xgr89FUJi5XA1rwDB5RQTsECxLdvXzDfROxhBPnKmMiHEYbjEtXMX33rQ29K06sdL9OBLGt8q974vMsfgRJQpJ4WcuRQ0iq+TdjRPr8a2a47yE"), c => c.charCodeAt(0));
const key = Uint8Array.from("257a6f11b78507cf6fa6bf786f037977deb865e0a30dc6a5647bf224e061b4e5".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):
257a6f11b78507cf6fa6bf786f037977deb865e0a30dc6a5647bf224e061b4e5 - IV / nonce (hex):
ecadd4d2d8407861c409a18c - Ciphertext (hex):
8e818b70068545aae4acd485acd50ea708b740bf818283a4148014bc9da4d9767080682bfa238233cdbad650ecaa27bdc6573fbfc0ec176b9b47ac17734f322a03ed1fab3476c3bfb11da58479b5cba3d2989821983b181ba3d21be9268ddfbabeabaa267e28aef51020015945d2d8c6b017072544b94223dd0aa2ad41dc48e024914a71e09217ab46cd155068326c20689f4c5ff8410f2a4827a1d8fab16c5ad539596f03597ee853ddddf7fc60afcf455098b95c0d6bc030794504ec102c4b76f5f30df44ec6104f9ca98c8871186e312d5cc5f7deb436f4ad3ab1d2fd3812c6b7cabdef8bccb1f811250a49e167 - Auth tag (hex):
2e450d22abe4dd8d13ebf1ad9ae3bc84
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 #957928 · 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.