Sign in
← All matches
✅ Cryptographically verified · sealed pick #749

Pyunik W vs Wrexham W

UEFA Women's Champions League · Europe · 22 Jul 2026, 18:00 UTC

Final score
2 : 4
Result
Won
Pick
Wrexham W
Market
1x2
Model prob.
82.9%
Best price
1.34
Min odds
1.27
Stake factor
1.80

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.

Encrypted pick (AES-256-GCM)
1vLZTTXgDAiFnGp/68DmPn9pkVzs+nyhgnas24uCc4P8IE7BBxyuvW1WuFz7UNN0WJ6Mg6yJ9RhiIzyE6NM28e/dgPz/COhMO/dMISr5vJRfcAIsp4hrcE4XArBa/57I9JrVh7iuBM0ujjmbAl1y7xxMVfCMJDrjm1S9u6sUeA2DChOK1CyNQdIP59yETEDm+kvGJuPBAU0gNQKWUJ1APqjJX6WnUaSPqAxHodWU8CbvDEtqUDWN+YpcU/J8Mr5xzrg8JvJPYFMbZR8pcz3j8SS8T9t09Gv3AvNtCORaItdPKDMd7G6hYuqBv9ZhGIUUkP++FLhf1PEtTc1vjePc+IjVQ/nGo3Pq
key fingerprint sha256: f513caea3c405fffa734fee9fcd474a0efaf8ee964ddd9e417eb5812b3354eec
Decrypt it & read the pick
Decryption key (released after the match)
78b1d955742fad593e9472cd4ee346eaff74054ea951e29b1c0848d5fcbbc25f
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("1vLZTTXgDAiFnGp/68DmPn9pkVzs+nyhgnas24uCc4P8IE7BBxyuvW1WuFz7UNN0WJ6Mg6yJ9RhiIzyE6NM28e/dgPz/COhMO/dMISr5vJRfcAIsp4hrcE4XArBa/57I9JrVh7iuBM0ujjmbAl1y7xxMVfCMJDrjm1S9u6sUeA2DChOK1CyNQdIP59yETEDm+kvGJuPBAU0gNQKWUJ1APqjJX6WnUaSPqAxHodWU8CbvDEtqUDWN+YpcU/J8Mr5xzrg8JvJPYFMbZR8pcz3j8SS8T9t09Gv3AvNtCORaItdPKDMd7G6hYuqBv9ZhGIUUkP++FLhf1PEtTc1vjePc+IjVQ/nGo3Pq"), c => c.charCodeAt(0));
const key  = Uint8Array.from("78b1d955742fad593e9472cd4ee346eaff74054ea951e29b1c0848d5fcbbc25f".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): 78b1d955742fad593e9472cd4ee346eaff74054ea951e29b1c0848d5fcbbc25f
  • IV / nonce (hex): d6f2d94d35e00c08859c6a7f
  • Ciphertext (hex): ebc0e63e7f69915cecfa7ca18276acdb8b827383fc204ec1071caebd6d56b85cfb50d374589e8c83ac89f51862233c84e8d336f1efdd80fcff08e84c3bf74c212af9bc945f70022ca7886b704e1702b05aff9ec8f49ad587b8ae04cd2e8e399b025d72ef1c4c55f08c243ae39b54bdbbab14780d830a138ad42c8d41d20fe7dc844c40e6fa4bc626e3c1014d20350296509d403ea8c95fa5a751a48fa80c47a1d594f026ef0c4b6a50358df98a5c53f27c32be71ceb83c26f24f60531b651f29733de3f124bc4fdb74f46bf702f36d08e45a22d74f28331dec6ea162ea81bfd66118851490ffbe14b85fd4f1
  • Auth tag (hex): 2d4dcd6f8de3dcf888d543f9c6a373ea

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #959118 · 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.