1 | var __defProp = Object.defineProperty;
|
2 | var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
3 | var __getOwnPropNames = Object.getOwnPropertyNames;
|
4 | var __hasOwnProp = Object.prototype.hasOwnProperty;
|
5 | var __copyProps = (to, from, except, desc) => {
|
6 | if (from && typeof from === "object" || typeof from === "function") {
|
7 | for (let key of __getOwnPropNames(from))
|
8 | if (!__hasOwnProp.call(to, key) && key !== except)
|
9 | __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
10 | }
|
11 | return to;
|
12 | };
|
13 | var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
14 | var stdin_exports = {};
|
15 | module.exports = __toCommonJS(stdin_exports);
|