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

VIFK W vs PK-35 Vantaa W

Kansallinen Liiga Women · Finland · 19 Jul 2026, 11:00 UTC

Final score
1 : 1
Result
Lost
Pick
VIFK W
Market
1x2
Model prob.
26.0%
Best price
5.15
Min odds
4.54
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)
ECVDWpGiQaPClxNfCHJzaa/A0IhFMIGK411Qb4E2vkFS5wxW2mImjS637YrX7EJWT3HtSWTCuSgJ6hYBqAm8waEhOL+BINdumznI6x3bJk6TxcaYVdy05SrcRcYsUtXz/NqReZ/anMh7x3pOfgJvPpaYHqb011+LSoY1hZoDUlNTqdq5lTymf0rJJfoCW0cdrf0ZZVfH8ZQ3W0LGGmxEtUpTPD/IRBSei4m398uanTirdthmx21kTjql1pJC0IYl1d0yyON5BpnmYWmStPJSECvXpgi/rCp3pZrqG2vqCux6STdJxiD+vA403YwrkoKLlr02OhlT897VKFt3S7JxICMu
key fingerprint sha256: 2d423c9d86d77527aac832b8fe2be336c058a67e7692d1452c2fe0e5216f1dbd
Decrypt it & read the pick
Decryption key (released after the match)
5e7ed32dcd1577006269e0c7a59e44ed873d4ef5302cb7bcf8ce58117fa4895c
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("ECVDWpGiQaPClxNfCHJzaa/A0IhFMIGK411Qb4E2vkFS5wxW2mImjS637YrX7EJWT3HtSWTCuSgJ6hYBqAm8waEhOL+BINdumznI6x3bJk6TxcaYVdy05SrcRcYsUtXz/NqReZ/anMh7x3pOfgJvPpaYHqb011+LSoY1hZoDUlNTqdq5lTymf0rJJfoCW0cdrf0ZZVfH8ZQ3W0LGGmxEtUpTPD/IRBSei4m398uanTirdthmx21kTjql1pJC0IYl1d0yyON5BpnmYWmStPJSECvXpgi/rCp3pZrqG2vqCux6STdJxiD+vA403YwrkoKLlr02OhlT897VKFt3S7JxICMu"), c => c.charCodeAt(0));
const key  = Uint8Array.from("5e7ed32dcd1577006269e0c7a59e44ed873d4ef5302cb7bcf8ce58117fa4895c".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): 5e7ed32dcd1577006269e0c7a59e44ed873d4ef5302cb7bcf8ce58117fa4895c
  • IV / nonce (hex): 1025435a91a241a3c297135f
  • Ciphertext (hex): 08727369afc0d0884530818ae35d506f8136be4152e70c56da62268d2eb7ed8ad7ec42564f71ed4964c2b92809ea1601a809bcc1a12138bf8120d76e9b39c8eb1ddb264e93c5c69855dcb4e52adc45c62c52d5f3fcda91799fda9cc87bc77a4e7e026f3e96981ea6f4d75f8b4a8635859a03525353a9dab9953ca67f4ac925fa025b471dadfd196557c7f194375b42c61a6c44b54a533c3fc844149e8b89b7f7cb9a9d38ab76d866c76d644e3aa5d69242d08625d5dd32c8e3790699e6616992b4f252102bd7a608bfac2a77a59aea1b6bea0aec7a493749c620febc0e34dd8c2b92828b96bd
  • Auth tag (hex): 363a1953f3ded5285b774bb27120232e

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