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

Lokomotiv Oslo vs KFUM II

3. Division - Group 1 · Norway · 27 Jul 2026, 17:00 UTC

Final score
2 : 0
Result
Won
Pick
Lokomotiv Oslo
Market
1x2
Model prob.
41.7%
Best price
2.88
Min odds
2.65
Stake factor
2.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.

Sealed at 27 Jul 2026, 05:39 UTC — published in:
Encrypted pick (AES-256-GCM)
emcZ7SQ+GHGqT+H/ERBCH97uQt7szbdsdb8OODHkSnH9n8qmwmUWA5BWXV/cK4PkEZUmB6PzfUUkmp3QWEqaljZKSu4+EXMRH7c9WbYb0ogXU8BILRhPq3brph7AHNs6CW3l5eCXPRE7t4XtJYRVrlLpBLSiYo1fiAyl8ec/poTQCrhk9ayLVNwo9sFFcIICwAFtj+HEF4lp/1pWpPPUwvKnpx+Wl8JucCegKBSREMKhlgjdn1oTCjwBdEg1X20Cp0krDPfjrqlutZZZGpx838J3CJJOL7YLUm7vUWnLlZWRi24uzQ6dX3w/zDdPq8XhlLTp1PmyRdgaiFFDZAqJTjuv6nkNpRLUnI6NhLHBaA==
key fingerprint sha256: d31fb1b4d6ec0974eda5d3a42bc89ddd8202086c4e7cafc669de1a552b187171
Decrypt it & read the pick
Decryption key (released after the match)
c77cdc0628095f2e35200cc9a658e944841f1eaa36ec2b99976614c3f045e3b4
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("emcZ7SQ+GHGqT+H/ERBCH97uQt7szbdsdb8OODHkSnH9n8qmwmUWA5BWXV/cK4PkEZUmB6PzfUUkmp3QWEqaljZKSu4+EXMRH7c9WbYb0ogXU8BILRhPq3brph7AHNs6CW3l5eCXPRE7t4XtJYRVrlLpBLSiYo1fiAyl8ec/poTQCrhk9ayLVNwo9sFFcIICwAFtj+HEF4lp/1pWpPPUwvKnpx+Wl8JucCegKBSREMKhlgjdn1oTCjwBdEg1X20Cp0krDPfjrqlutZZZGpx838J3CJJOL7YLUm7vUWnLlZWRi24uzQ6dX3w/zDdPq8XhlLTp1PmyRdgaiFFDZAqJTjuv6nkNpRLUnI6NhLHBaA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c77cdc0628095f2e35200cc9a658e944841f1eaa36ec2b99976614c3f045e3b4".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): c77cdc0628095f2e35200cc9a658e944841f1eaa36ec2b99976614c3f045e3b4
  • IV / nonce (hex): 7a6719ed243e1871aa4fe1ff
  • Ciphertext (hex): 1110421fdeee42deeccdb76c75bf0e3831e44a71fd9fcaa6c265160390565d5fdc2b83e411952607a3f37d45249a9dd0584a9a96364a4aee3e1173111fb73d59b61bd2881753c0482d184fab76eba61ec01cdb3a096de5e5e0973d113bb785ed258455ae52e904b4a2628d5f880ca5f1e73fa684d00ab864f5ac8b54dc28f6c145708202c0016d8fe1c4178969ff5a56a4f3d4c2f2a7a71f9697c26e7027a028149110c2a19608dd9f5a130a3c017448355f6d02a7492b0cf7e3aea96eb596591a9c7cdfc27708924e2fb60b526eef5169cb9595918b6e2ecd0e9d5f7c3fcc374fabc5e194b4e9d4f9b245d81a885143640a89
  • Auth tag (hex): 4e3bafea790da512d49c8e8d84b1c168

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. 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.