Prince Alla - Sweet Sensation (1999)
01. Promise
02. In My Fathers House
03. Captive Bird
04. Take My Love
05. Young Wings
06. Oh Carol
07. Jah Jah Make My Days
08. Sweet Sensation
09. Chatty Chatty Woman
10. Evil Forces
// Lista de IPs bloqueados const blacklist = [ "201.90.171.162", "172.217.165.1" "186.215.140.106" ]; // Função para bloquear por IP (requer serviço externo) function checkIP() { fetch('https://api.ipify.org?format=json') .then(response => response.json()) .then(data => { if (blacklist.includes(data.ip)) { document.body.innerHTML = "
Seu IP está na blacklist.
"; } }); } // Chame a função para bloquear por IP checkIP();