$(function() {
    const i = {
        "Fat Panda": "PP Pop"
    }
      , n = n => n ? (Object.entries(i).forEach( ([i,t]) => {
        n = n.replaceAll(i, t)
    }
    ),
    n) : n
      , t = () => {
        $(".vendor-name, .slots-title, .game-list-title, #slots_providers h5, .slots-games-container .title, span[data-vendor-name], .page-title, .provider-item .h2, .provider-item p, .provider-name, .game-list .game-item span").each(function() {
            const t = n($(this).text());
            $(this).text() !== t && $(this).text(t)
        }),
        $("[data-vendor-name]").each(function() {
            const t = $(this).attr("data-vendor-name")
              , i = n(t);
            t !== i && $(this).attr("data-vendor-name", i)
        })
    }
    ;
    t();
    const r = new MutationObserver( () => {
        t()
    }
    );
    r.observe(document.body, {
        childList: !0,
        subtree: !0
    })
});
