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

Elfsborg vs Sirius

Allsvenskan · Sweden · 19 Jul 2026, 14:30 UTC

Final score
1 : 3
Result
Lost
Pick
Elfsborg
Market
1x2
Model prob.
31.0%
Best price
4.02
Min odds
3.71
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)
Fy3+fpmPetQdLrIMgaFjcVYai8N/atSk99mdwvRJuxMv1aB+0AXxLDnTbDEbMwInr7D7ygBkZpCbelslJWoXwl8noHGDgF7V5Im1IuLyJmugRX/MtbpVnHKN36cflnY3FL65L6Z91FSF8hyKUNRcqs+f4e5CofGuU41ONRwNENLlaQa4pJKkXXPP5ijDqqEBzJnJIame/BdJ02xpSullGTeKrcMabUKVSpdqwu4KIGUJBxhPrOE+ynWqHzcs7Xe+kic5ArlZFtHctiM6ipMG8DgCrIDLvjBStXcCGaefP9eRadbh/KERLj7356MrX/j5MoCmZOqReCD3xF+EEanW8EbdaU+ptw==
key fingerprint sha256: 922613242a6c1a3f776894eacc5f8425f7c662ff4b856d9517167ebd2a9ee2e1
Decrypt it & read the pick
Decryption key (released after the match)
e2a1cb2ed51cb16ac6abcb631c1efe190fbda9b51d1f25089626d7acdabe464a
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("Fy3+fpmPetQdLrIMgaFjcVYai8N/atSk99mdwvRJuxMv1aB+0AXxLDnTbDEbMwInr7D7ygBkZpCbelslJWoXwl8noHGDgF7V5Im1IuLyJmugRX/MtbpVnHKN36cflnY3FL65L6Z91FSF8hyKUNRcqs+f4e5CofGuU41ONRwNENLlaQa4pJKkXXPP5ijDqqEBzJnJIame/BdJ02xpSullGTeKrcMabUKVSpdqwu4KIGUJBxhPrOE+ynWqHzcs7Xe+kic5ArlZFtHctiM6ipMG8DgCrIDLvjBStXcCGaefP9eRadbh/KERLj7356MrX/j5MoCmZOqReCD3xF+EEanW8EbdaU+ptw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e2a1cb2ed51cb16ac6abcb631c1efe190fbda9b51d1f25089626d7acdabe464a".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): e2a1cb2ed51cb16ac6abcb631c1efe190fbda9b51d1f25089626d7acdabe464a
  • IV / nonce (hex): 172dfe7e998f7ad41d2eb20c
  • Ciphertext (hex): 81a16371561a8bc37f6ad4a4f7d99dc2f449bb132fd5a07ed005f12c39d36c311b330227afb0fbca006466909b7a5b25256a17c25f27a07183805ed5e489b522e2f2266ba0457fccb5ba559c728ddfa71f96763714beb92fa67dd45485f21c8a50d45caacf9fe1ee42a1f1ae538d4e351c0d10d2e56906b8a492a45d73cfe628c3aaa101cc99c921a99efc1749d36c694ae96519378aadc31a6d42954a976ac2ee0a20650907184face13eca75aa1f372ced77be92273902b95916d1dcb6233a8a9306f03802ac80cbbe3052b5770219a79f3fd79169d6e1fca1112e3ef7e7a32b5ff8f93280a664ea91
  • Auth tag (hex): 7820f7c45f8411a9d6f046dd694fa9b7

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