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

Haukar Hafnarfjordur vs UMF Selfoss

2. Deild · Iceland · 05 Sept 2026, 14:00 UTC

Final score
1 : 2
Result
Won
Pick
UMF Selfoss
Market
1X2
CLV vs fair close
+21.78%
Model prob.
33.2%
Best price
3.25
Min odds
3.07
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)
IJddTNY3TbI1om3pmbjmw31wsxKScx4H9l9WocK2/HxNfUE+3iwbvgJXf2IwZjFAhTkSyOUYzZ9Np+Mo/Jf3bJtUB6UPbjKgH4/rsGqg5aBe9QdHuSnLNZHQlgMdpnQMfZHBx1bX0PYP4NFFx+rXEQgDVqMGL761OI15en0g4F1KtW0r/h9Qp7KskZz0nyvchaxT0pRfYQYK+99x4UpSs7T0cOxhsTW8MjXJy5m9V3FT6/a05cHnXVvZ2TG2V9daTMm2mF25bSk5uR3kHpX9+SO171QCgXOXkw7Qw7ibG2Fqbncp/GqPdq2bnHtzG3Bu7PaYba9HeXQ0nOG3sSEmamwE1ezwQYHAOUk3o1+5
key fingerprint sha256: f82d1dac5c3b0e46180c0f05fdddcf0473b098f28ad472a245271420b0c30558
Decrypt it & read the pick
Decryption key (released after the match)
371ff70a73da645ed9e4f6d1328ec8e43cd894470b20bafae44196577540b17b
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("IJddTNY3TbI1om3pmbjmw31wsxKScx4H9l9WocK2/HxNfUE+3iwbvgJXf2IwZjFAhTkSyOUYzZ9Np+Mo/Jf3bJtUB6UPbjKgH4/rsGqg5aBe9QdHuSnLNZHQlgMdpnQMfZHBx1bX0PYP4NFFx+rXEQgDVqMGL761OI15en0g4F1KtW0r/h9Qp7KskZz0nyvchaxT0pRfYQYK+99x4UpSs7T0cOxhsTW8MjXJy5m9V3FT6/a05cHnXVvZ2TG2V9daTMm2mF25bSk5uR3kHpX9+SO171QCgXOXkw7Qw7ibG2Fqbncp/GqPdq2bnHtzG3Bu7PaYba9HeXQ0nOG3sSEmamwE1ezwQYHAOUk3o1+5"), c => c.charCodeAt(0));
const key  = Uint8Array.from("371ff70a73da645ed9e4f6d1328ec8e43cd894470b20bafae44196577540b17b".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): 371ff70a73da645ed9e4f6d1328ec8e43cd894470b20bafae44196577540b17b
  • IV / nonce (hex): 20975d4cd6374db235a26de9
  • Ciphertext (hex): 99b8e6c37d70b31292731e07f65f56a1c2b6fc7c4d7d413ede2c1bbe02577f6230663140853912c8e518cd9f4da7e328fc97f76c9b5407a50f6e32a01f8febb06aa0e5a05ef50747b929cb3591d096031da6740c7d91c1c756d7d0f60fe0d145c7ead711080356a3062fbeb5388d797a7d20e05d4ab56d2bfe1f50a7b2ac919cf49f2bdc85ac53d2945f61060afbdf71e14a52b3b4f470ec61b135bc3235c9cb99bd577153ebf6b4e5c1e75d5bd9d931b657d75a4cc9b6985db96d2939b91de41e95fdf923b5ef5402817397930ed0c3b89b1b616a6e7729fc6a8f76ad9b9c7b731b706eecf6986daf477974349ce1b7b121
  • Auth tag (hex): 266a6c04d5ecf04181c0394937a35fb9

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