Wiener Sport-Club vs Austria Wien
Austrian Cup · Austria · 26 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.
xaSjmseOEDwOmdmnyeyVZnLGdT/sEsDWkQoKkBmh8PatVP2922R4xTPHNp1O2p4G3YrQvwAJs+VET1uUY63CHkYwdGBE/hWBii9T3SxH5q75Zp0EsJON7kppSlL/cb7bI3QDKDMYadg/fEnITe+XKzBxpjYmMH0KLBz8mQmFxMwWm2fnG5GMYzAmrCkHXGPKekoQDUOukB+vwmfhT6XfzlOfb4/jqMbtgA6nRADlAqr2HuX8jvJi8P8DdK+tUwQvuYvkrb02eVLeLYKthcvrx2jx5JqG+qGmhJGjQ1gP1j07ri69MxSMGE7xDG5klCI1JbXOC49SyIcQd4DCJHgmeI1F6Rgv1N/oO42P
b81adf2a6410b95a75b9a052c85a5575874bbe7993d4d7ee8f62fd0dc1f269d7Decrypt 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("xaSjmseOEDwOmdmnyeyVZnLGdT/sEsDWkQoKkBmh8PatVP2922R4xTPHNp1O2p4G3YrQvwAJs+VET1uUY63CHkYwdGBE/hWBii9T3SxH5q75Zp0EsJON7kppSlL/cb7bI3QDKDMYadg/fEnITe+XKzBxpjYmMH0KLBz8mQmFxMwWm2fnG5GMYzAmrCkHXGPKekoQDUOukB+vwmfhT6XfzlOfb4/jqMbtgA6nRADlAqr2HuX8jvJi8P8DdK+tUwQvuYvkrb02eVLeLYKthcvrx2jx5JqG+qGmhJGjQ1gP1j07ri69MxSMGE7xDG5klCI1JbXOC49SyIcQd4DCJHgmeI1F6Rgv1N/oO42P"), c => c.charCodeAt(0));
const key = Uint8Array.from("b81adf2a6410b95a75b9a052c85a5575874bbe7993d4d7ee8f62fd0dc1f269d7".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):
b81adf2a6410b95a75b9a052c85a5575874bbe7993d4d7ee8f62fd0dc1f269d7 - IV / nonce (hex):
c5a4a39ac78e103c0e99d9a7 - Ciphertext (hex):
c9ec956672c6753fec12c0d6910a0a9019a1f0f6ad54fdbddb6478c533c7369d4eda9e06dd8ad0bf0009b3e5444f5b9463adc21e4630746044fe15818a2f53dd2c47e6aef9669d04b0938dee4a694a52ff71bedb23740328331869d83f7c49c84def972b3071a63626307d0a2c1cfc990985c4cc169b67e71b918c633026ac29075c63ca7a4a100d43ae901fafc267e14fa5dfce539f6f8fe3a8c6ed800ea74400e502aaf61ee5fc8ef262f0ff0374afad53042fb98be4adbd367952de2d82ad85cbebc768f1e49a86faa1a68491a343580fd63d3bae2ebd33148c184ef10c6e6494223525b5ce0b8f52c887107780 - Auth tag (hex):
c2247826788d45e9182fd4dfe83b8d8f
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 #959545 · 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.