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

Viimsi vs Elva

Esiliiga A · Estonia · 16 Jul 2026, 16:00 UTC

Final score
1 : 3
Result
Won
Pick
Elva
Market
1x2
Model prob.
49.8%
Best price
4.45
Min odds
2.18
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)
YjfL5hBAp/+OXtUlbe17g/hG+foATunnAx0oFkLtOvv3BAx3V7NZpATSte3An+ziYFLcHkfEHkIEq3z6GrL2utKoj30Ji5W+rv9NgIId/KksQ1ctTsVKvpDaSpwYcFHQQY/vdu+6ezqZ0RGocaKpgX8QM6J+pPKAZor7bhgid5mqo5Bx58MEnB1bQhlkvOw4VrPLhrQ1p+EM5tPFdiIWKoCEXgvph6aXgE0AkHGS9hHg0K2OFxrCh8ubXRskj4n6vBm/VyDYVEs2ow2JpnmvplcqrJ9r+L+E03FPfSN9mX+cWnETPH6jkxJAoovj8Ex3+LUUyNorUxeyTfs4BMknKks=
key fingerprint sha256: 1a2b6042acb4244177d2a8b89b43c7457105c197d6d56941d364177db64728dd
Decrypt it & read the pick
Decryption key (released after the match)
0d1fcc37bc6a78041824d056c471edecb42bb2cb18212d706c18c2a7afb35c43
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("YjfL5hBAp/+OXtUlbe17g/hG+foATunnAx0oFkLtOvv3BAx3V7NZpATSte3An+ziYFLcHkfEHkIEq3z6GrL2utKoj30Ji5W+rv9NgIId/KksQ1ctTsVKvpDaSpwYcFHQQY/vdu+6ezqZ0RGocaKpgX8QM6J+pPKAZor7bhgid5mqo5Bx58MEnB1bQhlkvOw4VrPLhrQ1p+EM5tPFdiIWKoCEXgvph6aXgE0AkHGS9hHg0K2OFxrCh8ubXRskj4n6vBm/VyDYVEs2ow2JpnmvplcqrJ9r+L+E03FPfSN9mX+cWnETPH6jkxJAoovj8Ex3+LUUyNorUxeyTfs4BMknKks="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0d1fcc37bc6a78041824d056c471edecb42bb2cb18212d706c18c2a7afb35c43".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): 0d1fcc37bc6a78041824d056c471edecb42bb2cb18212d706c18c2a7afb35c43
  • IV / nonce (hex): 6237cbe61040a7ff8e5ed525
  • Ciphertext (hex): 6ded7b83f846f9fa004ee9e7031d281642ed3afbf7040c7757b359a404d2b5edc09fece26052dc1e47c41e4204ab7cfa1ab2f6bad2a88f7d098b95beaeff4d80821dfca92c43572d4ec54abe90da4a9c187051d0418fef76efba7b3a99d111a871a2a9817f1033a27ea4f280668afb6e18227799aaa39071e7c3049c1d5b421964bcec3856b3cb86b435a7e10ce6d3c57622162a80845e0be987a697804d00907192f611e0d0ad8e171ac287cb9b5d1b248f89fabc19bf5720d8544b36a30d89a679afa6572aac9f6bf8bf84d3714f7d237d997f9c5a71133c7ea3931240a28be3f04c77f8
  • Auth tag (hex): b514c8da2b5317b24dfb3804c9272a4b

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