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

Haukar W vs HK W

1. Deild Women · Iceland · 24 Jul 2026, 19:15 UTC

Final score
0 : 2
Result
Won
Pick
HK W
Market
1x2
Model prob.
42.6%
Best price
2.77
Min odds
2.59
Stake factor
2.50

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)
ehUirgOMGDBplTUs75e9H93Aad2OGvp6hhQ7ADMyp8KzHsDI3xAq8kBhAWy8172Ab2Rn8/OjY3gKcYTOjlGsYdzn72A3+xnJcOCtTvcP7dgZjNQMG3YPapc3p7HJ3TpJABK1lkg+qXXg8ByQg6ehrd035G+NkVYIZUuCKtZLgLQPvFFf2mu65BRhYgoZ+ZgEu0qj1iJMjgaszLk9MdQJ7bzbDDKk7xcH4EI9qpCSXsc/OyGauHRzAscKQdVTZ0yJCXph55F9fnz27vpjCXU0GQ/heksu2FONSyGO45/63QSl+2cNfpvV2y9Ni++1pbutNqnOLR/hxI+Z/VP5W5vObHfW
key fingerprint sha256: 5e7072e979ba7198a2753193dc7c89d4702c443756989979b58bead0aef661c8
Decrypt it & read the pick
Decryption key (released after the match)
a602fd01ec147db4d1dd54be712097da233f04b3477c9577bb943e4dd20948ff
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("ehUirgOMGDBplTUs75e9H93Aad2OGvp6hhQ7ADMyp8KzHsDI3xAq8kBhAWy8172Ab2Rn8/OjY3gKcYTOjlGsYdzn72A3+xnJcOCtTvcP7dgZjNQMG3YPapc3p7HJ3TpJABK1lkg+qXXg8ByQg6ehrd035G+NkVYIZUuCKtZLgLQPvFFf2mu65BRhYgoZ+ZgEu0qj1iJMjgaszLk9MdQJ7bzbDDKk7xcH4EI9qpCSXsc/OyGauHRzAscKQdVTZ0yJCXph55F9fnz27vpjCXU0GQ/heksu2FONSyGO45/63QSl+2cNfpvV2y9Ni++1pbutNqnOLR/hxI+Z/VP5W5vObHfW"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a602fd01ec147db4d1dd54be712097da233f04b3477c9577bb943e4dd20948ff".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): a602fd01ec147db4d1dd54be712097da233f04b3477c9577bb943e4dd20948ff
  • IV / nonce (hex): 7a1522ae038c18306995352c
  • Ciphertext (hex): ef97bd1fddc069dd8e1afa7a86143b003332a7c2b31ec0c8df102af24061016cbcd7bd806f6467f3f3a363780a7184ce8e51ac61dce7ef6037fb19c970e0ad4ef70fedd8198cd40c1b760f6a9737a7b1c9dd3a490012b596483ea975e0f01c9083a7a1addd37e46f8d915608654b822ad64b80b40fbc515fda6bbae41461620a19f99804bb4aa3d6224c8e06acccb93d31d409edbcdb0c32a4ef1707e0423daa90925ec73f3b219ab8747302c70a41d553674c89097a61e7917d7e7cf6eefa63097534190fe17a4b2ed8538d4b218ee39ffadd04a5fb670d7e9bd5db2f4d8befb5a5bbad36a9
  • Auth tag (hex): ce2d1fe1c48f99fd53f95b9bce6c77d6

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