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

Columbus Crew vs Atlas

Leagues Cup · North & Central America · 04 Aug 2026, 23:45 UTC

Final score
3 : 1
Result
Won
Pick
Columbus Crew
Market
1x2
Model prob.
57.6%
Best price
1.95
Min odds
1.87
Stake factor
1.90

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)
8zLCsQB9a8Wkhpki3y9cBQkZr2in84UvEM5h78QfkmQdLnsCFVw6YHc+uJa4p3hKGOY4WqOu8lvKoRHIYd0bZdoY573EKzpYT8byFFi/fh+6lBxsdX37Ebmd7VnGH2RkHqfL41wmMhNWWrkXOyvGVYcUgevHtzcg4D2cowkD4cdXOX0ldqdJPkRHyFVG5RZykfklvMOoMf4WDANUiagswyEz2bAAu8bgaA4fh77KaBWPHVcZui5jsU/XHV4s9bzUK6gWxw1rZxnfTy4x10bWdLdsMUmyJnfjbmIoGhY+aVWyxuqRjMQFEIYXKW7dkDTmUUVbB/ZRlYeWklmFUsf7cIreul206XZxpVAXoA==
key fingerprint sha256: aa4f7283c03eb9531b090c807beb03287185dc1fd833de022c1b43ccaa9af47f
Decrypt it & read the pick
Decryption key (released after the match)
25a7fc3afe49a8e39c5328e189ea682d002f0ea59357cbd5ae72e4e4e9d0f5da
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("8zLCsQB9a8Wkhpki3y9cBQkZr2in84UvEM5h78QfkmQdLnsCFVw6YHc+uJa4p3hKGOY4WqOu8lvKoRHIYd0bZdoY573EKzpYT8byFFi/fh+6lBxsdX37Ebmd7VnGH2RkHqfL41wmMhNWWrkXOyvGVYcUgevHtzcg4D2cowkD4cdXOX0ldqdJPkRHyFVG5RZykfklvMOoMf4WDANUiagswyEz2bAAu8bgaA4fh77KaBWPHVcZui5jsU/XHV4s9bzUK6gWxw1rZxnfTy4x10bWdLdsMUmyJnfjbmIoGhY+aVWyxuqRjMQFEIYXKW7dkDTmUUVbB/ZRlYeWklmFUsf7cIreul206XZxpVAXoA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("25a7fc3afe49a8e39c5328e189ea682d002f0ea59357cbd5ae72e4e4e9d0f5da".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): 25a7fc3afe49a8e39c5328e189ea682d002f0ea59357cbd5ae72e4e4e9d0f5da
  • IV / nonce (hex): f332c2b1007d6bc5a4869922
  • Ciphertext (hex): df2f5c050919af68a7f3852f10ce61efc41f92641d2e7b02155c3a60773eb896b8a7784a18e6385aa3aef25bcaa111c861dd1b65da18e7bdc42b3a584fc6f21458bf7e1fba941c6c757dfb11b99ded59c61f64641ea7cbe35c263213565ab9173b2bc655871481ebc7b73720e03d9ca30903e1c757397d2576a7493e4447c85546e5167291f925bcc3a831fe160c035489a82cc32133d9b000bbc6e0680e1f87beca68158f1d5719ba2e63b14fd71d5e2cf5bcd42ba816c70d6b6719df4f2e31d746d674b76c3149b22677e36e62281a163e6955b2c6ea918cc405108617296edd9034e651455b07f651958796925985
  • Auth tag (hex): 52c7fb708adeba5db4e97671a55017a0

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