(function () {
const W = 1920;
const H = 1080;
const set = (obj, prop, val) =>
__zdGetter(obj, prop, () => val, { enumerable: true });
set(window.screen, 'width', W);
set(window.screen, 'height', H);
set(window.screen, 'availWidth', W);
set(window.screen, 'availHeight', H - 48); set(window.screen, 'availLeft', 0);
set(window.screen, 'availTop', 0);
set(window.screen, 'colorDepth', 24);
set(window.screen, 'pixelDepth', 24);
set(window, 'outerWidth', W);
set(window, 'outerHeight', H);
set(window, 'innerWidth', W);
set(window, 'innerHeight', H - 86);
set(window, 'screenX', 0);
set(window, 'screenY', 0);
set(window, 'screenLeft', 0);
set(window, 'screenTop', 0);
set(window, 'devicePixelRatio', 1);
if (window.screen.orientation) {
set(window.screen.orientation, 'type', 'landscape-primary');
set(window.screen.orientation, 'angle', 0);
}
})();