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

Zacatepec FC vs Lobos ULMX

Liga Premier · Mexico · 05 Sept 2026, 21:30 UTC

Final score
2 : 1
Result
Won
Pick
Zacatepec FC
Market
1X2
CLV vs fair close
+6.78%
Model prob.
48.4%
Best price
2.20
Min odds
2.11
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)
ykg9gBQjqAPtnQfpWbx2JIB/dBXNbUhyyloA1ov1POk0JP9YOQwe7toZR1EfrW5Zimt7cNGq0mbGDsFkgZ+3ta1pymEqjY2/uVM3ciT8yA2A7cmmRWUHRzppPuYrlcUAzP12iRzv7SdW9YQfQgBdUt66qAzFiWr7Po3P8CjL4v8iPsTss05rP2/ulrvZRMJaO9oVw4h+8Q5vxbmrnrYh7Bmt5vDsvdO5SxAkn3tP2J7dUYBTVyOmYsERi+LVjRr5l2IDGAiwxKnSLWuZunGv5V/LpJ8s9WMOAbhNpmoqPXjHH/d2xGcsr8WAbr+AbCb85Oniowpi5SSelm8bjM+0ebxUjhhvUJi+neNp7Gf1kQ==
key fingerprint sha256: d83b504d5fa1588408fef905f7cac8b3069937f5867327934affda298605bb49
Decrypt it & read the pick
Decryption key (released after the match)
e7bd30783a4912d605e43fdd0d43d0d40bdaf70ba2816abe2bb17ab924440b72
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("ykg9gBQjqAPtnQfpWbx2JIB/dBXNbUhyyloA1ov1POk0JP9YOQwe7toZR1EfrW5Zimt7cNGq0mbGDsFkgZ+3ta1pymEqjY2/uVM3ciT8yA2A7cmmRWUHRzppPuYrlcUAzP12iRzv7SdW9YQfQgBdUt66qAzFiWr7Po3P8CjL4v8iPsTss05rP2/ulrvZRMJaO9oVw4h+8Q5vxbmrnrYh7Bmt5vDsvdO5SxAkn3tP2J7dUYBTVyOmYsERi+LVjRr5l2IDGAiwxKnSLWuZunGv5V/LpJ8s9WMOAbhNpmoqPXjHH/d2xGcsr8WAbr+AbCb85Oniowpi5SSelm8bjM+0ebxUjhhvUJi+neNp7Gf1kQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e7bd30783a4912d605e43fdd0d43d0d40bdaf70ba2816abe2bb17ab924440b72".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): e7bd30783a4912d605e43fdd0d43d0d40bdaf70ba2816abe2bb17ab924440b72
  • IV / nonce (hex): ca483d801423a803ed9d07e9
  • Ciphertext (hex): 59bc7624807f7415cd6d4872ca5a00d68bf53ce93424ff58390c1eeeda1947511fad6e598a6b7b70d1aad266c60ec164819fb7b5ad69ca612a8d8dbfb953377224fcc80d80edc9a6456507473a693ee62b95c500ccfd76891cefed2756f5841f42005d52debaa80cc5896afb3e8dcff028cbe2ff223ec4ecb34e6b3f6fee96bbd944c25a3bda15c3887ef10e6fc5b9ab9eb621ec19ade6f0ecbdd3b94b10249f7b4fd89edd5180535723a662c1118be2d58d1af99762031808b0c4a9d22d6b99ba71afe55fcba49f2cf5630e01b84da66a2a3d78c71ff776c4672cafc5806ebf806c26fce4e9e2a30a62e5249e966f1b8ccfb4
  • Auth tag (hex): 79bc548e186f5098be9de369ec67f591

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