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

Brumunddal vs Gjøvik-Lyn

3. Division - Group 6 · Norway · 25 Jun 2026, 17:30 UTC

Final score
0 : 3
Result
Won
Pick
Gjøvik-Lyn
Market
1x2
Model prob.
75.5%
Best price
1.44
Min odds
1.40
Stake factor
1.70

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)
V8c4cRaexeDWVdVCb9a90HaJtLm4ntxtaE7vODaYwZBL+gjip3ZpqHbfTBDgCwlY4daNWXXj6qrAcu159gMHv/8HNTuLilr3etDWdveNtTKcYWrWlYPoxRA57wr21viF9r+P7u+cjbHCz4R6MZULZu6lF5YUnhIG6OxhoKZBCO7/QvN4+DhcLYTsHn1M1acuZl2ULaaIGOH71y1PvYHKvsNdZT5KgD3NTZRTFQVaX+KKeo9e2truylTFgAE73FSPEpSNLvEUSLHpmaCdlVbnVFN/IyDFH2mdtcZql1Y0b4XEbiiOLpzCULwrM7JzVjH84AynW37udqs0MxBnhiaETHqrDgfsHpAr6FU=
key fingerprint sha256: 96e5cd8f778867bbf7839106db5dcbd66ce6b8fcd701c65dd2e5051d8e133b19
Decrypt it & read the pick
Decryption key (released after the match)
3e7a9b8e677526e0254350dbfde5d7e3b5e41ade91546629ab5f2ddc0efedd84
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("V8c4cRaexeDWVdVCb9a90HaJtLm4ntxtaE7vODaYwZBL+gjip3ZpqHbfTBDgCwlY4daNWXXj6qrAcu159gMHv/8HNTuLilr3etDWdveNtTKcYWrWlYPoxRA57wr21viF9r+P7u+cjbHCz4R6MZULZu6lF5YUnhIG6OxhoKZBCO7/QvN4+DhcLYTsHn1M1acuZl2ULaaIGOH71y1PvYHKvsNdZT5KgD3NTZRTFQVaX+KKeo9e2truylTFgAE73FSPEpSNLvEUSLHpmaCdlVbnVFN/IyDFH2mdtcZql1Y0b4XEbiiOLpzCULwrM7JzVjH84AynW37udqs0MxBnhiaETHqrDgfsHpAr6FU="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3e7a9b8e677526e0254350dbfde5d7e3b5e41ade91546629ab5f2ddc0efedd84".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): 3e7a9b8e677526e0254350dbfde5d7e3b5e41ade91546629ab5f2ddc0efedd84
  • IV / nonce (hex): 57c73871169ec5e0d655d542
  • Ciphertext (hex): 6fd6bdd07689b4b9b89edc6d684eef383698c1904bfa08e2a77669a876df4c10e00b0958e1d68d5975e3eaaac072ed79f60307bfff07353b8b8a5af77ad0d676f78db5329c616ad69583e8c51039ef0af6d6f885f6bf8feeef9c8db1c2cf847a31950b66eea51796149e1206e8ec61a0a64108eeff42f378f8385c2d84ec1e7d4cd5a72e665d942da68818e1fbd72d4fbd81cabec35d653e4a803dcd4d945315055a5fe28a7a8f5edadaeeca54c580013bdc548f12948d2ef11448b1e999a09d9556e754537f2320c51f699db5c66a9756346f85c46e288e2e9cc250bc2b33b2735631fce00ca75b7eee76ab3433
  • Auth tag (hex): 10678626844c7aab0e07ec1e902be855

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