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

J-Lease FC vs Verspah Oita

Football League · Japan · 19 Sept 2026, 09:00 UTC

Final score
0 : 1
Result
Won
Pick
Verspah Oita
Market
1X2
CLV vs fair close
+7.65%
Model prob.
38.3%
Best price
2.80
Min odds
2.66
Stake factor
1.40

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)
KK0d8zTQt8+DPGpK21UEHwziw61k8ujO1w4kIC3e4rRn+6DFL5Pd9tIzGIaWdaQbqr9V12AN4N8xOu7EyBv33DhqgAQUF86MVxil8SkoZudN4ePyLgoa8g/bwMd8RltOVrOVe+gFD/hwjWCZDgeL2/xYRdji0RZCYUnjhTBgDf9byvZvoiMQiO0H+zdaH+dvvyITrTDuMHUYIKzlgk7ZAvq4ZQO4CP7tLOy7bbLkZYo4/ls1NkHXeqGR8noLxC9tEVFrNA11x40wb3ZOyhCeSgEoVrDQEsCTI1uspDrEPumBSfP19dJ1bxIxcWrUMvVigWicEKlQ66/PAhrKY68FXtGQQRpFDgX2FFZIvkqM
key fingerprint sha256: 2631547db73d3c8eacb2ac84da8abbffb2914395d2c5d5beec7ee5923f5e862d
Decrypt it & read the pick
Decryption key (released after the match)
69dea19c6307d481ad2aaa03b151bc02b226164db926f4db699d97a61f701c91
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("KK0d8zTQt8+DPGpK21UEHwziw61k8ujO1w4kIC3e4rRn+6DFL5Pd9tIzGIaWdaQbqr9V12AN4N8xOu7EyBv33DhqgAQUF86MVxil8SkoZudN4ePyLgoa8g/bwMd8RltOVrOVe+gFD/hwjWCZDgeL2/xYRdji0RZCYUnjhTBgDf9byvZvoiMQiO0H+zdaH+dvvyITrTDuMHUYIKzlgk7ZAvq4ZQO4CP7tLOy7bbLkZYo4/ls1NkHXeqGR8noLxC9tEVFrNA11x40wb3ZOyhCeSgEoVrDQEsCTI1uspDrEPumBSfP19dJ1bxIxcWrUMvVigWicEKlQ66/PAhrKY68FXtGQQRpFDgX2FFZIvkqM"), c => c.charCodeAt(0));
const key  = Uint8Array.from("69dea19c6307d481ad2aaa03b151bc02b226164db926f4db699d97a61f701c91".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): 69dea19c6307d481ad2aaa03b151bc02b226164db926f4db699d97a61f701c91
  • IV / nonce (hex): 28ad1df334d0b7cf833c6a4a
  • Ciphertext (hex): db55041f0ce2c3ad64f2e8ced70e24202ddee2b467fba0c52f93ddf6d23318869675a41baabf55d7600de0df313aeec4c81bf7dc386a80041417ce8c5718a5f1292866e74de1e3f22e0a1af20fdbc0c77c465b4e56b3957be8050ff8708d60990e078bdbfc5845d8e2d116426149e38530600dff5bcaf66fa2231088ed07fb375a1fe76fbf2213ad30ee30751820ace5824ed902fab86503b808feed2cecbb6db2e4658a38fe5b353641d77aa191f27a0bc42f6d11516b340d75c78d306f764eca109e4a012856b0d012c093235baca43ac43ee98149f3f5f5d2756f1231716ad432f56281689c10a950ebafcf021aca63af
  • Auth tag (hex): 055ed190411a450e05f6145648be4a8c

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