<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Array.prototype.includes || Object.defineProperty(Array.prototype, "includes", {
    value: function(r, e) {
        if (null == this) throw new TypeError('"this" is null or not defined');
        var t = Object(this), n = t.length &gt;&gt;&gt; 0;
        if (0 == n) return !1;
        var i, o, a = 0 | e, u = Math.max(0 &lt;= a ? a : n - Math.abs(a), 0);
        for (;u &lt; n; ) {
            if ((i = t[u]) === (o = r) || "number" == typeof i &amp;&amp; "number" == typeof o &amp;&amp; isNaN(i) &amp;&amp; isNaN(o)) return !0;
            u++;
        }
        return !1;
    }
});</pre></body></html>