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

VJS II vs ToTe

Kolmonen · Finland · 07 Sept 2026, 16:45 UTC

Final score
3 : 3
Result
Lost
Pick
ToTe
Market
1X2
CLV vs fair close
-7.23%
Model prob.
37.2%
Best price
2.88
Min odds
2.75
Stake factor
1.20

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)
x+skzhKL1j2MFfxEdbWalKeAl8ni8qW9r0k1a3LlzuOYygsSaAukpdzejMLbAd69NXJjNUkRzXUl7QiOlfYaRx3AnntZ0N/yIQ9cZ26+CmgquaJ4AHO2r5hkndKZOW/hrNvc21C7K5IufhMedl6uQwNG5Vdt549yXdQtGSMSmfyfCz7FxUd67Pz+InDg2XSuEFDeqrBb+OOHVveXTagR1F/gCAHqLfq8s34N4aAvcSj11iIa43oQC1Tl2/BcV1IAQkCjLeMpmQfwAUcBFhxwSCcCyTDv31xgXAkjb+dWYg07bQP6Ol7vvHz5vAXdunG6E4gJXCQM2w84oqNEAoG72X/52x/Vvw==
key fingerprint sha256: fe70fd01078ac36e980692f1237f5bbcadacc2fd1115a4ac6b88dce9f8a94395
Decrypt it & read the pick
Decryption key (released after the match)
28015d6c00154711e0dfaf80aeb946a994442acce79a14e9fb84e8eb413b1dc1
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("x+skzhKL1j2MFfxEdbWalKeAl8ni8qW9r0k1a3LlzuOYygsSaAukpdzejMLbAd69NXJjNUkRzXUl7QiOlfYaRx3AnntZ0N/yIQ9cZ26+CmgquaJ4AHO2r5hkndKZOW/hrNvc21C7K5IufhMedl6uQwNG5Vdt549yXdQtGSMSmfyfCz7FxUd67Pz+InDg2XSuEFDeqrBb+OOHVveXTagR1F/gCAHqLfq8s34N4aAvcSj11iIa43oQC1Tl2/BcV1IAQkCjLeMpmQfwAUcBFhxwSCcCyTDv31xgXAkjb+dWYg07bQP6Ol7vvHz5vAXdunG6E4gJXCQM2w84oqNEAoG72X/52x/Vvw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("28015d6c00154711e0dfaf80aeb946a994442acce79a14e9fb84e8eb413b1dc1".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): 28015d6c00154711e0dfaf80aeb946a994442acce79a14e9fb84e8eb413b1dc1
  • IV / nonce (hex): c7eb24ce128bd63d8c15fc44
  • Ciphertext (hex): 75b59a94a78097c9e2f2a5bdaf49356b72e5cee398ca0b12680ba4a5dcde8cc2db01debd357263354911cd7525ed088e95f61a471dc09e7b59d0dff2210f5c676ebe0a682ab9a2780073b6af98649dd299396fe1acdbdcdb50bb2b922e7e131e765eae430346e5576de78f725dd42d19231299fc9f0b3ec5c5477aecfcfe2270e0d974ae1050deaab05bf8e38756f7974da811d45fe00801ea2dfabcb37e0de1a02f7128f5d6221ae37a100b54e5dbf05c5752004240a32de3299907f0014701161c70482702c930efdf5c605c09236fe756620d3b6d03fa3a5eefbc7cf9bc05ddba71ba1388095c240c
  • Auth tag (hex): db0f38a2a3440281bbd97ff9db1fd5bf

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