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

Cowdenbeath vs East Kilbride

Challenge Cup · Scotland · 25 Aug 2026, 18:45 UTC

Final score
1 : 3
Result
Won
Pick
East Kilbride
Market
1X2
CLV vs fair close
+7.51%
Model prob.
78.8%
Best price
1.33
Min odds
1.29
Stake factor
3.00

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)
2squsMjzpEa5F3F3SNkZuGG4mmvhTiAnTpjQJ4Mpu8NIJ364qPcuD2DaEptr9r7FH2hmQblben4yk/VLKV/lxF3R38liIE5ixziSu07iEDg0KI+Yz8VBZ51Oleq0I1ui4ZUN5vys+Y1uSu3UacZeiWFTXLr8UVBkLW1bEDtJxeB0sRoFZKr5eTVUi9jDZnTOlX5LVP/cEB2bBrkyynHIHGnQo+sMGOI7v1cApPa6WRzhXTKjtJotJgI79Ye/0S4GOGjbvIzEzRFeaUfjeR4t//S+KFaRpK+PYLhjRob1jKxxZ4fjGz+pKcK+hhWgz21YS4a7+3mV1ap1+Qht6rp9tLDugVB0j18jEloCRTde
key fingerprint sha256: fc77afc84370f7c192e546742868204c06025e2872cdbad4f6aa2ba3cf573e7d
Decrypt it & read the pick
Decryption key (released after the match)
dd777d3878cbadcb4744e7472b4e577674dcb88edf6e1e689c942b98de660ab9
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("2squsMjzpEa5F3F3SNkZuGG4mmvhTiAnTpjQJ4Mpu8NIJ364qPcuD2DaEptr9r7FH2hmQblben4yk/VLKV/lxF3R38liIE5ixziSu07iEDg0KI+Yz8VBZ51Oleq0I1ui4ZUN5vys+Y1uSu3UacZeiWFTXLr8UVBkLW1bEDtJxeB0sRoFZKr5eTVUi9jDZnTOlX5LVP/cEB2bBrkyynHIHGnQo+sMGOI7v1cApPa6WRzhXTKjtJotJgI79Ye/0S4GOGjbvIzEzRFeaUfjeR4t//S+KFaRpK+PYLhjRob1jKxxZ4fjGz+pKcK+hhWgz21YS4a7+3mV1ap1+Qht6rp9tLDugVB0j18jEloCRTde"), c => c.charCodeAt(0));
const key  = Uint8Array.from("dd777d3878cbadcb4744e7472b4e577674dcb88edf6e1e689c942b98de660ab9".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): dd777d3878cbadcb4744e7472b4e577674dcb88edf6e1e689c942b98de660ab9
  • IV / nonce (hex): dacaaeb0c8f3a446b9177177
  • Ciphertext (hex): 48d919b861b89a6be14e20274e98d0278329bbc348277eb8a8f72e0f60da129b6bf6bec51f686641b95b7a7e3293f54b295fe5c45dd1dfc962204e62c73892bb4ee2103834288f98cfc541679d4e95eab4235ba2e1950de6fcacf98d6e4aedd469c65e8961535cbafc5150642d6d5b103b49c5e074b11a0564aaf97935548bd8c36674ce957e4b54ffdc101d9b06b932ca71c81c69d0a3eb0c18e23bbf5700a4f6ba591ce15d32a3b49a2d26023bf587bfd12e063868dbbc8cc4cd115e6947e3791e2dfff4be285691a4af8f60b8634686f58cac716787e31b3fa929c2be8615a0cf6d584b86bbfb7995d5aa75f9086deaba
  • Auth tag (hex): 7db4b0ee8150748f5f23125a0245375e

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