`;
// Create and inject script separately (so it executes)
var script = document.createElement('script');
script.src = `https://cdn.doubleverify.com/dvbm.js#ctx=32500597&cmp=35725271&sid=8664203&plc=445671280&advid=10873688&adsrv=1&mon=1&blk=0`;
script.async = true;
// Find the first element with class "sponsorAd"
var sponsorDiv = document.querySelector('.sponsorAd');
// If found, insert into it; otherwise, fall back to body
if (sponsorDiv) {
sponsorDiv.insertAdjacentHTML('beforeend', dvHTML);
sponsorDiv.appendChild(script);
} else {
document.body.insertAdjacentHTML('beforeend', dvHTML);
document.body.appendChild(script);
}