⠄⠄⠄⠄⠄⠄⣠⣤⣶⣶⣿⣶⣶⣤⣀⠄⣀⣤⣴⣶⣶⣶⣦⣀⠄⠄⠄⠄⠄⠄
⠄⠄⠄⢀⣤⣿⠡⢟⡿⠿⣛⣛⣛⠿⢿⡆⢻⣿⣿⣿⣿⣯⣃⣸⣧⡀⠄⠄⠄⠄
⠄⠄⢀⣾⣿⣿⣋⣵⣾⣿⣿⣿⣿⣿⣷⣶⡄⣩⣴⣶⣶⣶⣶⣶⣭⣉⣀⠄⠄⠄
⠄⢀⣿⡟⣻⣿⣿⣿⣿⠟⢋⣭⣴⣶⣶⣶⣦⣮⡙⠟⢛⣭⣭⣶⣶⣶⣮⣭⣄⠄
⣴⣸⣿⠑⣛⣿⠟⢩⣶⣿⣿⣿⣿⣿⡏⡋⠉⣿⣿⡌⣿⣿⣿⣿⣿⠋⡋⠛⣿⣧
⢿⣿⣿⣿⣿⣿⣶⣶⣭⣝⡻⠿⣿⣿⣷⣧⣵⠿⢟⡑⠿⠿⠿⠿⠿⠶⠭⠶⠟⠃
⣬⣿⣿⣿⣿⣿⣿⣿⣷⣬⣙⣛⣒⠠⢤⣤⡔⢚⣛⣴⣿⣿⣿⣿⣿⣿⣿⡿⠛⠄
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠿⣋⣱⣾⣿⣿⣿⣎⡙⢛⣋⣉⣉⣅⠄⠄⠄⠄
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢏⣭⡝⢿⣿⣿⣿⣦⠄⠄⠄
⣿⣿⣿⣿⣿⣿⠿⣛⣩⣭⣭⣭⣛⣛⠿⠿⢿⣿⣿⡏⣾⣿⡇⢸⣿⡿⠿⢛⣃⠄
⣿⣿⣿⣿⣿⡏⢾⣿⣯⣭⣍⣛⣛⣛⡻⠶⠶⣮⣭⢡⣿⣿⢇⣭⣵⣶⠾⠿⠋⠄
⣿⣿⣿⣿⣟⢿⣦⣤⣭⣭⣭⣝⣛⡻⠿⠿⠿⠶⠶⢸⣿⣿⢠⣤⣤⣶⠾⠛⠄⠄
⠿⢿⣿⣿⣿⣷⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⣾⣿⡿⠰⠖⠄⠄⠄⠄⠄⠄
⣭⣕⠒⠲⣭⣭⣝⣛⠛⠛⠛⠛⠛⠛⠛⢛⣛⣭⠄⣿⡟⢣⣴⣾⠟⢂⣤⡀⠄⠄
⣿⣿⣿⣿⣶⣶⣮⣭⣭⣭⣍⣛⣛⣉⣭⣭⣭⣶⢸⣿⣿⣿⣯⣴⠞⣛⣭⣶⣷⠄
      

This website is made as a personal database full of gimps and retards that owe me money.
I might add more to this website at some point but atm it's just for this.
A Telegram link below has my GC where you can learn everything about OSINT/OPSEC. If you are upset by what is displayed on its website, remeber you are posted on here for a reason. Any DMCA letters can be sent to rapeb87894@besibali.com

799A 68FD 019A 095E 711E 4431 1359 14C1 BA4F 02B7

Join my Telegram Group

Money Owed

Hall of Gimps

£250 for removal    dm @syricalnet for a removal request

Pastes

New Paste

Untitled


  

Btown vid of the week

function showTab(tabId) { document.querySelectorAll('.tab-content').forEach(tab => tab.classList.remove('active')); document.getElementById(tabId).classList.add('active'); } function loadOwedList() { const list = document.getElementById("owedList"); const oweList = JSON.parse(localStorage.getItem("moneyOwed")) || []; list.innerHTML = ""; oweList.forEach(({ name, amount }) => { const li = document.createElement("li"); li.textContent = `${name} owes $${amount}`; list.appendChild(li); }); } function loadGimps() { const container = document.getElementById("gimpList"); container.innerHTML = ""; const gimpList = JSON.parse(localStorage.getItem("hallOfGimps")) || []; gimpList.forEach(({ name, image, description, link }) => { const div = document.createElement("div"); div.className = "gimp-card"; div.innerHTML = ` ${name}

${name}

${description}

${link ? `Link` : ""} `; container.appendChild(div); }); } window.onload = function () { loadOwedList(); loadGimps(); }; const canvas = document.getElementById('particleCanvas'); const ctx = canvas.getContext('2d'); let particles = []; function resizeCanvas() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; } window.addEventListener('resize', resizeCanvas); resizeCanvas(); class Particle { constructor() { this.reset(); } reset() { this.x = Math.random() * canvas.width; this.y = Math.random() * -canvas.height; this.radius = Math.random() * 2 + 1; this.speed = Math.random() * 1 + 0.5; } update() { this.y += this.speed; if (this.y > canvas.height) this.reset(); } draw() { ctx.beginPath(); ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2); ctx.fillStyle = '#ff0033'; ctx.fill(); } } for (let i = 0; i < 100; i++) { particles.push(new Particle()); } function animate() { ctx.clearRect(0, 0, canvas.width, canvas.height); particles.forEach(p => { p.update(); p.draw(); }); requestAnimationFrame(animate); } animate(); // Music autoplay fallback window.addEventListener("DOMContentLoaded", () => { const audio = document.getElementById("bgMusic"); document.body.addEventListener("click", () => { if (audio.paused) { audio.play().catch(e => console.warn("Autoplay failed:", e)); } }, { once: true }); audio.play().catch(() => { console.warn("Waiting for user interaction to start audio."); }); });