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

Llamas Kochi vs R Velho Takamatsu

Regional League · Japan · 13 Sept 2026, 02:00 UTC

Final score
0 : 1
Result
Won
Pick
R Velho Takamatsu
Market
1X2
CLV vs fair close
+15.57%
Model prob.
40.7%
Best price
2.87
Min odds
2.51
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)
9TTm4cljuI/eFROr1O3LH4N4Y9a6schbmlIcW4+akd65Bn+C9PE/SWiuzb/u40CNWSxwh7PrMuU6UfXfQWAUI1mAsfTRummmiNkfc8w4w7HgEPkGV43ZqWp2V9Pms0TIpDnZVX2Rvvy4uOB/645hNkH4kF7LPH8rP8KzWhzoqrUzBYAXdcOf6LnbPBWZl2xPDR/b/MStDUXFEt4zPwUS/jOWP1gUkLL6q39oUUtV+ohrUb0hr2pRuo8TZ/CUzkVzu/WAAfO6RlSC9giCpEoUlxPEhSoDaxitpLD4MnTeiv+amRQy3BLG2HpzRDTRv7qZT723NCAxS73t9Nus9iHrbQ0Ke12lFzBeQxgk45Gvgu0ohfkn
key fingerprint sha256: 266d22254d4c1daf23830b1b95e33c428748ae0f1071ed32569c8ea714da0279
Decrypt it & read the pick
Decryption key (released after the match)
cfb67290a36f72c53f30a6bf384168f6de19da5d6888b1a3aa2c1a94293aa223
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("9TTm4cljuI/eFROr1O3LH4N4Y9a6schbmlIcW4+akd65Bn+C9PE/SWiuzb/u40CNWSxwh7PrMuU6UfXfQWAUI1mAsfTRummmiNkfc8w4w7HgEPkGV43ZqWp2V9Pms0TIpDnZVX2Rvvy4uOB/645hNkH4kF7LPH8rP8KzWhzoqrUzBYAXdcOf6LnbPBWZl2xPDR/b/MStDUXFEt4zPwUS/jOWP1gUkLL6q39oUUtV+ohrUb0hr2pRuo8TZ/CUzkVzu/WAAfO6RlSC9giCpEoUlxPEhSoDaxitpLD4MnTeiv+amRQy3BLG2HpzRDTRv7qZT723NCAxS73t9Nus9iHrbQ0Ke12lFzBeQxgk45Gvgu0ohfkn"), c => c.charCodeAt(0));
const key  = Uint8Array.from("cfb67290a36f72c53f30a6bf384168f6de19da5d6888b1a3aa2c1a94293aa223".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): cfb67290a36f72c53f30a6bf384168f6de19da5d6888b1a3aa2c1a94293aa223
  • IV / nonce (hex): f534e6e1c963b88fde1513ab
  • Ciphertext (hex): d4edcb1f837863d6bab1c85b9a521c5b8f9a91deb9067f82f4f13f4968aecdbfeee3408d592c7087b3eb32e53a51f5df416014235980b1f4d1ba69a688d91f73cc38c3b1e010f906578dd9a96a7657d3e6b344c8a439d9557d91befcb8b8e07feb8e613641f8905ecb3c7f2b3fc2b35a1ce8aab53305801775c39fe8b9db3c1599976c4f0d1fdbfcc4ad0d45c512de333f0512fe33963f581490b2faab7f68514b55fa886b51bd21af6a51ba8f1367f094ce4573bbf58001f3ba465482f60882a44a149713c4852a036b18ada4b0f83274de8aff9a991432dc12c6d87a734434d1bfba994fbdb73420314bbdedf4dbacf621eb6d0d0a7b5d
  • Auth tag (hex): a517305e431824e391af82ed2885f927

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