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

Ross County vs Clyde

League Cup · Scotland · 18 Jul 2026, 14:00 UTC

Final score
3 : 1
Result
Won
Pick
Ross County
Market
1x2
Model prob.
68.4%
Best price
1.61
Min odds
1.55
Stake factor
1.70

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)
Yvz4zKMUTImaywfJn+WOmHjQu6SsOli0lAnaoN0667UwbcqSHhzfQybyuULhCRTHlJugJVmQExmaYKlojlpQ37ylBhKJ3QjNlfxbnqSAScCf5Rv664THfxIBkQV2zGa5vLchemA79W2+3d1Bka7yM7iMgk2tMMVDRGHP4on1aFMQr+t5ghuzQwEHNIMvc4yGBh053qy0QVOu9bqXRZzdZG4chWLolU1w2dyhyyIAriY/1R36BjoClS0tq64T1y8MG+5z4JhEX7pjizDo3duTv96DT6HK7gCpeuhsZvw5InTUAeRZroGCQ9jGonZAYPU1ELIJ5lcnQXKpXgOOHbSeOjoonw92ZB2o4Zw=
key fingerprint sha256: ff443d4a18d277bd29b81bd7599db88bfc1743fab3545f9ba049360ee50a1487
Decrypt it & read the pick
Decryption key (released after the match)
da77877c0d4b2c6d0b792aef724f6648aa0a942f83df97afcd1ef222b689f6fc
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("Yvz4zKMUTImaywfJn+WOmHjQu6SsOli0lAnaoN0667UwbcqSHhzfQybyuULhCRTHlJugJVmQExmaYKlojlpQ37ylBhKJ3QjNlfxbnqSAScCf5Rv664THfxIBkQV2zGa5vLchemA79W2+3d1Bka7yM7iMgk2tMMVDRGHP4on1aFMQr+t5ghuzQwEHNIMvc4yGBh053qy0QVOu9bqXRZzdZG4chWLolU1w2dyhyyIAriY/1R36BjoClS0tq64T1y8MG+5z4JhEX7pjizDo3duTv96DT6HK7gCpeuhsZvw5InTUAeRZroGCQ9jGonZAYPU1ELIJ5lcnQXKpXgOOHbSeOjoonw92ZB2o4Zw="), c => c.charCodeAt(0));
const key  = Uint8Array.from("da77877c0d4b2c6d0b792aef724f6648aa0a942f83df97afcd1ef222b689f6fc".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): da77877c0d4b2c6d0b792aef724f6648aa0a942f83df97afcd1ef222b689f6fc
  • IV / nonce (hex): 62fcf8cca3144c899acb07c9
  • Ciphertext (hex): 9fe58e9878d0bba4ac3a58b49409daa0dd3aebb5306dca921e1cdf4326f2b942e10914c7949ba025599013199a60a9688e5a50dfbca5061289dd08cd95fc5b9ea48049c09fe51bfaeb84c77f1201910576cc66b9bcb7217a603bf56dbedddd4191aef233b88c824dad30c5434461cfe289f5685310afeb79821bb343010734832f738c86061d39deacb44153aef5ba97459cdd646e1c8562e8954d70d9dca1cb2200ae263fd51dfa063a02952d2dabae13d72f0c1bee73e098445fba638b30e8dddb93bfde834fa1caee00a97ae86c66fc392274d401e459ae818243d8c6a2764060f53510b209e657274172a95e
  • Auth tag (hex): 038e1db49e3a3a289f0f76641da8e19c

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 #958395 · 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.