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

Machida Zelvia vs Urawa Red Diamonds

J League · Japan · 23 Aug 2026, 10:30 UTC

Final score
3 : 1
Result
Lost
Pick
Urawa Red Diamonds
Market
1X2
CLV vs fair close
+4.39%
Model prob.
21.0%
Best price
5.00
Min odds
4.85
Stake factor
1.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)
xZSZWBWGvNChjvO6gMS8qYIqz/euHS77yr5hYmZBWLQtg+RDsLgjZ+UpZZDSiKQ/3QBCD4cziy66yR3gH3wH7EGaVHYVf56IAydyaVwaREdVyR229H0o8XtOBtZ6kI2Zy16HqaoEQEQA7fChaI8Ghug9LhI2FbYgYu9VZgUDcF+YNh+xtIMjfzJ+CdoRudxNcF4GWix13X2Ci2SowRwO2877q2Os+79kJnEDenG6C/cpbOsxddFydtvU8y8oext1VTUbOQD5VMba4ulfR5firxiyuN2jikLUqwXcsIC4o/JLQUPR4QToITQx9AjoTXiex1vmZniORBIXLkiy99716QxEiWt/68gir1Wipl+6
key fingerprint sha256: a1a8501fd72a8a4101bf07c9a4646b6736a4122ca14b51e9bc177b5dda875dcb
Decrypt it & read the pick
Decryption key (released after the match)
99a9d10a02922c28f0bebe5d28a36ad6c7973301a821251c529e3e9ebdcaec18
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("xZSZWBWGvNChjvO6gMS8qYIqz/euHS77yr5hYmZBWLQtg+RDsLgjZ+UpZZDSiKQ/3QBCD4cziy66yR3gH3wH7EGaVHYVf56IAydyaVwaREdVyR229H0o8XtOBtZ6kI2Zy16HqaoEQEQA7fChaI8Ghug9LhI2FbYgYu9VZgUDcF+YNh+xtIMjfzJ+CdoRudxNcF4GWix13X2Ci2SowRwO2877q2Os+79kJnEDenG6C/cpbOsxddFydtvU8y8oext1VTUbOQD5VMba4ulfR5firxiyuN2jikLUqwXcsIC4o/JLQUPR4QToITQx9AjoTXiex1vmZniORBIXLkiy99716QxEiWt/68gir1Wipl+6"), c => c.charCodeAt(0));
const key  = Uint8Array.from("99a9d10a02922c28f0bebe5d28a36ad6c7973301a821251c529e3e9ebdcaec18".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): 99a9d10a02922c28f0bebe5d28a36ad6c7973301a821251c529e3e9ebdcaec18
  • IV / nonce (hex): c59499581586bcd0a18ef3ba
  • Ciphertext (hex): 80c4bca9822acff7ae1d2efbcabe6162664158b42d83e443b0b82367e5296590d288a43fdd00420f87338b2ebac91de01f7c07ec419a5476157f9e88032772695c1a444755c91db6f47d28f17b4e06d67a908d99cb5e87a9aa04404400edf0a1688f0686e83d2e123615b62062ef55660503705f98361fb1b483237f327e09da11b9dc4d705e065a2c75dd7d828b64a8c11c0edbcefbab63acfbbf642671037a71ba0bf7296ceb3175d17276dbd4f32f287b1b7555351b3900f954c6dae2e95f4797e2af18b2b8dda38a42d4ab05dcb080b8a3f24b4143d1e104e8213431f408e84d789ec75be666788e4412172e48b2f7de
  • Auth tag (hex): f5e90c44896b7febc822af55a2a65fba

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