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

GKS Wikielec vs Concordia Elblag

4th Liga · Poland · 29 Aug 2026, 16:00 UTC

Final score
0 : 4
Result
Lost
Pick
GKS Wikielec
Market
1X2
Model prob.
38.3%
Best price
3.00
Min odds
2.66
Stake factor
2.50

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)
o2jDzOHAQbahywHV5tD7td6iJ72tTtjeUa4/UBztY8U4DV8GpeDkRwZH0p/cf2sCqmXgf38Uroc6Wp2jcAN2E8WljBnAP1Egukgn2vV3LA1aceMqT0iB874YWtfcQsrdg43c03pEsQXwtuAP2L0vQl/MXfL+0qNqSVWqfUXg6q93hXWysifTX500uNZwosKR0jL4ALAieWfewgDPd2ZXMjB2AONHLSx50ZGnWCXhjhOvT10WPJrroxTdinNs5lDyMQXM7YmkHqwIBp0qDvZo7s0tefb3HioPyHBLQwdjuNrWtprzTcclb3vM/1R6AoKQdNUhDdR6lNuqzZsu2mCT60RgRHyT0yLQKw==
key fingerprint sha256: 436a0d43345199789cbfc8302583ca0f61de3ca7f851f134cfbadaefed2c1630
Decrypt it & read the pick
Decryption key (released after the match)
c6e5e05093df6559a38e22e77dd6f4c108d0fb39505d5a84e97073c482acf09c
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("o2jDzOHAQbahywHV5tD7td6iJ72tTtjeUa4/UBztY8U4DV8GpeDkRwZH0p/cf2sCqmXgf38Uroc6Wp2jcAN2E8WljBnAP1Egukgn2vV3LA1aceMqT0iB874YWtfcQsrdg43c03pEsQXwtuAP2L0vQl/MXfL+0qNqSVWqfUXg6q93hXWysifTX500uNZwosKR0jL4ALAieWfewgDPd2ZXMjB2AONHLSx50ZGnWCXhjhOvT10WPJrroxTdinNs5lDyMQXM7YmkHqwIBp0qDvZo7s0tefb3HioPyHBLQwdjuNrWtprzTcclb3vM/1R6AoKQdNUhDdR6lNuqzZsu2mCT60RgRHyT0yLQKw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c6e5e05093df6559a38e22e77dd6f4c108d0fb39505d5a84e97073c482acf09c".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): c6e5e05093df6559a38e22e77dd6f4c108d0fb39505d5a84e97073c482acf09c
  • IV / nonce (hex): a368c3cce1c041b6a1cb01d5
  • Ciphertext (hex): e6d0fbb5dea227bdad4ed8de51ae3f501ced63c5380d5f06a5e0e4470647d29fdc7f6b02aa65e07f7f14ae873a5a9da370037613c5a58c19c03f5120ba4827daf5772c0d5a71e32a4f4881f3be185ad7dc42cadd838ddcd37a44b105f0b6e00fd8bd2f425fcc5df2fed2a36a4955aa7d45e0eaaf778575b2b227d35f9d34b8d670a2c291d232f800b0227967dec200cf77665732307600e3472d2c79d191a75825e18e13af4f5d163c9aeba314dd8a736ce650f23105cced89a41eac08069d2a0ef668eecd2d79f6f71e2a0fc8704b430763b8dad6b69af34dc7256f7bccff547a02829074d5210dd47a94dbaa
  • Auth tag (hex): cd9b2eda6093eb4460447c93d322d02b

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