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

Byåsen vs Aalesund II

3. Division - Group 2 · Norway · 27 Jun 2026, 15:00 UTC

Final score
2 : 1
Result
Won
Pick
Byåsen
Market
1x2
Model prob.
69.7%
Best price
1.59
Min odds
1.52
Stake factor
1.80

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)
sqomcdzICjCRUjOq/AMB/Q50dDBY43vPm8lIWngXHxBD42wdYcX40ZAQgICiCL6CUJzukbr+EbR4/eSgUgE6A7fiouJLOylnNNGHj214/i7vo2XipQAAJkjb6tggG6B/2DiDThXUL0lKYQw84BYlDz6knYPVsUHx24wc2v3mGJQWImY32ayqrJehBP2mXtMwgnaqWdMmVgfBuHJbF2haMVgBeIP2vIE6sBa++7S4yLMn5qox8+Mm05ViU1gXcA/GM3/TugQ8HOAgS2Jy82WRs/fg+9WFvh1cr/Q1yXlKRhglnYt8u6tAnDODph0axxgVatsCyWGV5G4TSxdqAJcF3UCd9wWboeg=
key fingerprint sha256: b01394c7d7d8152086ba11d37d2597cb8744fc286c0778f803fc585b6d49cdde
Decrypt it & read the pick
Decryption key (released after the match)
167202409a0f0dba31a4b8bc6a7bd8bd57c8a3db12eaaf7bfb8f2a6d2d4a2c06
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("sqomcdzICjCRUjOq/AMB/Q50dDBY43vPm8lIWngXHxBD42wdYcX40ZAQgICiCL6CUJzukbr+EbR4/eSgUgE6A7fiouJLOylnNNGHj214/i7vo2XipQAAJkjb6tggG6B/2DiDThXUL0lKYQw84BYlDz6knYPVsUHx24wc2v3mGJQWImY32ayqrJehBP2mXtMwgnaqWdMmVgfBuHJbF2haMVgBeIP2vIE6sBa++7S4yLMn5qox8+Mm05ViU1gXcA/GM3/TugQ8HOAgS2Jy82WRs/fg+9WFvh1cr/Q1yXlKRhglnYt8u6tAnDODph0axxgVatsCyWGV5G4TSxdqAJcF3UCd9wWboeg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("167202409a0f0dba31a4b8bc6a7bd8bd57c8a3db12eaaf7bfb8f2a6d2d4a2c06".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): 167202409a0f0dba31a4b8bc6a7bd8bd57c8a3db12eaaf7bfb8f2a6d2d4a2c06
  • IV / nonce (hex): b2aa2671dcc80a30915233aa
  • Ciphertext (hex): fc0301fd0e74743058e37bcf9bc9485a78171f1043e36c1d61c5f8d190108080a208be82509cee91bafe11b478fde4a052013a03b7e2a2e24b3b296734d1878f6d78fe2eefa365e2a500002648dbead8201ba07fd838834e15d42f494a610c3ce016250f3ea49d83d5b141f1db8c1cdafde6189416226637d9acaaac97a104fda65ed3308276aa59d3265607c1b8725b17685a3158017883f6bc813ab016befbb4b8c8b327e6aa31f3e326d39562535817700fc6337fd3ba043c1ce0204b6272f36591b3f7e0fbd585be1d5caff435c9794a4618259d8b7cbbab409c3383a61d1ac718156adb02c96195e4
  • Auth tag (hex): 6e134b176a009705dd409df7059ba1e8

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