@appium/fake-driver 4.2.1 → 4.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/lib/commands/alert.js.map +1 -0
- package/build/lib/commands/contexts.js +3 -3
- package/build/lib/commands/contexts.js.map +1 -0
- package/build/lib/commands/element.js +3 -3
- package/build/lib/commands/element.js.map +1 -0
- package/build/lib/commands/find.js +3 -3
- package/build/lib/commands/find.js.map +1 -0
- package/build/lib/commands/general.js +3 -3
- package/build/lib/commands/general.js.map +1 -0
- package/build/lib/commands/index.js +3 -3
- package/build/lib/commands/index.js.map +1 -0
- package/build/lib/driver.d.ts +3 -5
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +3 -3
- package/build/lib/driver.js.map +1 -0
- package/build/lib/fake-app.js +3 -3
- package/build/lib/fake-app.js.map +1 -0
- package/build/lib/fake-driver-schema.js.map +1 -0
- package/build/lib/fake-element.js +3 -3
- package/build/lib/fake-element.js.map +1 -0
- package/build/lib/index.js.map +1 -0
- package/build/lib/logger.js.map +1 -0
- package/build/lib/scripts/fake-error.js.map +1 -0
- package/build/lib/scripts/fake-success.js +3 -3
- package/build/lib/scripts/fake-success.js.map +1 -0
- package/build/lib/server.js +3 -3
- package/build/lib/server.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fake-app.js","names":["SCREENSHOT","path","join","__dirname","FakeApp","constructor","dom","activeDom","activeWebview","activeFrame","activeAlert","lat","long","_width","_height","rawXml","currentOrientation","actionLog","title","nodes","xpathQuery","length","Error","firstChild","data","currentGeoLocation","latitude","longitude","orientation","o","width","setDims","height","app","FakeElement","parseInt","nodeAttrs","loadApp","appPath","log","info","fs","readFile","toString","replace","XMLDom","DOMParser","parseFromString","getWebviews","map","n","FakeWebView","activateWebview","wv","fragment","XMLSerializer","serializeToString","node","deactivateWebview","activateFrame","frame","deactivateFrame","sel","ctx","xpath","select","idQuery","id","classQuery","className","cssQuery","css","startsWith","slice","hasAlert","setAlertText","text","hasPrompt","setAttr","showAlert","alertId","alertText","getAttr","handleAlert","getScreenshot","readFileSync"],"sources":["../../lib/fake-app.js"],"sourcesContent":["import {fs} from 'appium/support';\nimport {readFileSync} from 'fs';\nimport path from 'path';\nimport XMLDom from '@xmldom/xmldom';\nimport xpath from 'xpath';\nimport log from './logger';\nimport {FakeElement} from './fake-element';\n\nconst SCREENSHOT = path.join(__dirname, 'screen.png');\n\nclass FakeApp {\n constructor() {\n this.dom = null;\n this.activeDom = null;\n this.activeWebview = null;\n this.activeFrame = null;\n this.activeAlert = null;\n this.lat = 0;\n this.long = 0;\n this._width = null;\n this._height = null;\n this.rawXml = '';\n this.currentOrientation = 'PORTRAIT';\n this.actionLog = [];\n }\n\n get title() {\n let nodes = this.xpathQuery('//title');\n if (nodes.length < 1) {\n throw new Error('No title!');\n }\n return nodes[0].firstChild.data;\n }\n\n get currentGeoLocation() {\n return {\n latitude: this.lat,\n longitude: this.long,\n };\n }\n\n get orientation() {\n return this.currentOrientation;\n }\n\n set orientation(o) {\n this.currentOrientation = o;\n }\n\n get width() {\n if (this._width === null) {\n this.setDims();\n }\n return this._width;\n }\n\n get height() {\n if (this._width === null) {\n this.setDims();\n }\n return this._width;\n }\n\n setDims() {\n const nodes = this.xpathQuery('//app');\n const app = new FakeElement(nodes[0], this);\n this._width = parseInt(app.nodeAttrs.width, 10);\n this._height = parseInt(app.nodeAttrs.height, 10);\n }\n\n async loadApp(appPath) {\n log.info(`Loading Mock app model at ${appPath}`);\n let data = await fs.readFile(appPath);\n log.info('Parsing Mock app XML');\n this.rawXml = data.toString();\n this.rawXml = this.rawXml.replace('<app ', '<AppiumAUT><app ');\n this.rawXml = this.rawXml.replace('<app>', '<AppiumAUT><app>');\n this.rawXml = this.rawXml.replace('</app>', '</app></AppiumAUT>');\n this.dom = new XMLDom.DOMParser().parseFromString(this.rawXml);\n this.activeDom = this.dom;\n }\n\n getWebviews() {\n return this.xpathQuery('//MockWebView/*[1]').map((n) => new FakeWebView(n));\n }\n\n activateWebview(wv) {\n this.activeWebview = wv;\n let fragment = new XMLDom.XMLSerializer().serializeToString(wv.node);\n this.activeDom = new XMLDom.DOMParser().parseFromString(fragment, 'application/xml');\n }\n\n deactivateWebview() {\n this.activeWebview = null;\n this.activeDom = this.dom;\n }\n\n activateFrame(frame) {\n this.activeFrame = frame;\n let fragment = new XMLDom.XMLSerializer().serializeToString(frame);\n this.activeDom = new XMLDom.DOMParser().parseFromString(fragment, 'application/xml');\n }\n\n deactivateFrame() {\n this.activeFrame = null;\n this.activateWebview(this.activeWebview);\n }\n\n xpathQuery(sel, ctx) {\n return xpath.select(sel, ctx || this.activeDom);\n }\n\n idQuery(id, ctx) {\n return this.xpathQuery(`//*[@id=\"${id}\"]`, ctx);\n }\n\n classQuery(className, ctx) {\n return this.xpathQuery(`//${className}`, ctx);\n }\n\n cssQuery(css, ctx) {\n if (css.startsWith('#')) {\n return this.idQuery(css.slice(1), ctx);\n }\n if (css.startsWith('.')) {\n return this.classQuery(css.slice(1), ctx);\n }\n return this.classQuery(css, ctx);\n }\n\n hasAlert() {\n return this.activeAlert !== null;\n }\n\n setAlertText(text) {\n if (!this.activeAlert.hasPrompt()) {\n throw new Error('No prompt to set text of');\n }\n this.activeAlert.setAttr('prompt', text);\n }\n\n showAlert(alertId) {\n let nodes = this.xpathQuery(`//alert[@id=\"${alertId}\"]`);\n if (nodes.length < 1) {\n throw new Error(`Alert ${alertId} doesn't exist!`);\n }\n this.activeAlert = new FakeElement(nodes[0], this);\n }\n\n alertText() {\n return this.activeAlert.getAttr('prompt') || this.activeAlert.nodeAttrs.text;\n }\n\n handleAlert() {\n this.activeAlert = null;\n }\n\n getScreenshot() {\n return readFileSync(SCREENSHOT, 'base64');\n }\n}\n\nclass FakeWebView {\n constructor(node) {\n this.node = node;\n }\n}\n\nexport {FakeApp};\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fake-driver-schema.js","names":["type","title","description","properties","minimum","maximum","sillyWebServerHost","default"],"sources":["../../lib/fake-driver-schema.js"],"sourcesContent":["// this could be a .json file, too:\n// {\n// \"$schema\": \"http://json-schema.org/draft-07/schema\",\n// \"$id\": \"https://appium.io/fake-driver.json\",\n// \"type\": \"object\",\n// \"title\": \"Fake Driver Configuration\",\n// \"description\": \"A schema for Fake Driver arguments\",\n// \"properties\": {\n// \"answer\": {\n// \"type\": \"number\",\n// \"description\": \"The answer to life, the universe, and everything\",\n// \"default\": 42\n// }\n// }\n// }\n\nexport default {\n type: 'object',\n title: 'Fake Driver Configuration',\n description: 'A schema for Fake Driver arguments',\n properties: {\n // the prop name will always be normalized to camelCase\n 'silly-web-server-port': {\n type: 'integer',\n minimum: 1,\n maximum: 65535,\n description: 'The port to use for the fake web server',\n },\n sillyWebServerHost: {\n type: 'string',\n description: 'The host to use for the fake web server',\n default: 'sillyhost',\n },\n },\n};\n"],"mappings":";;;;;;;;;eAgBe;EACbA,IAAI,EAAE,QADO;EAEbC,KAAK,EAAE,2BAFM;EAGbC,WAAW,EAAE,oCAHA;EAIbC,UAAU,EAAE;IAEV,yBAAyB;MACvBH,IAAI,EAAE,SADiB;MAEvBI,OAAO,EAAE,CAFc;MAGvBC,OAAO,EAAE,KAHc;MAIvBH,WAAW,EAAE;IAJU,CAFf;IAQVI,kBAAkB,EAAE;MAClBN,IAAI,EAAE,QADY;MAElBE,WAAW,EAAE,yCAFK;MAGlBK,OAAO,EAAE;IAHS;EARV;AAJC,C"}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
@@ -13,6 +11,8 @@ var _lodash = _interopRequireDefault(require("lodash"));
|
|
|
13
11
|
|
|
14
12
|
var _xmldom = _interopRequireDefault(require("@xmldom/xmldom"));
|
|
15
13
|
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
16
|
class FakeElement {
|
|
17
17
|
constructor(xmlNode, app) {
|
|
18
18
|
this.app = app;
|
|
@@ -123,4 +123,4 @@ class FakeElement {
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
exports.FakeElement = FakeElement;
|
|
126
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
126
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJGYWtlRWxlbWVudCIsImNvbnN0cnVjdG9yIiwieG1sTm9kZSIsImFwcCIsIm5vZGUiLCJub2RlQXR0cnMiLCJ0eXBlIiwidGFnTmFtZSIsImF0dHJzIiwiY3NzIiwibmFtZSIsInZhbHVlIiwiXyIsInZhbHVlcyIsImF0dHJpYnV0ZXMiLCJwYXJzZUNzcyIsInN0eWxlIiwic2VnbWVudHMiLCJzcGxpdCIsInMiLCJwcm9wIiwidmFsIiwidHJpbSIsInNldEF0dHIiLCJrIiwidiIsImdldEF0dHIiLCJpc1Zpc2libGUiLCJ2aXNpYmxlIiwiaXNFbmFibGVkIiwiZW5hYmxlZCIsImlzU2VsZWN0ZWQiLCJzZWxlY3RlZCIsImdldExvY2F0aW9uIiwieCIsInBhcnNlRmxvYXQiLCJsZWZ0IiwieSIsInRvcCIsImdldEVsZW1lbnRSZWN0IiwiZ2V0U2l6ZSIsIndpZHRoIiwiaGVpZ2h0IiwiY2xpY2siLCJjdXJDbGlja3MiLCJhbGVydElkIiwic2hvd0FsZXJ0IiwiZXF1YWxzIiwib3RoZXIiLCJoYXNQcm9tcHQiLCJnZXRDc3MiLCJoYXMiLCJ4bWxGcmFnbWVudCIsImZyYWciLCJYTUxEb20iLCJYTUxTZXJpYWxpemVyIiwic2VyaWFsaXplVG9TdHJpbmciLCJET01QYXJzZXIiLCJwYXJzZUZyb21TdHJpbmciXSwic291cmNlcyI6WyIuLi8uLi9saWIvZmFrZS1lbGVtZW50LmpzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBfIGZyb20gJ2xvZGFzaCc7XG5pbXBvcnQgWE1MRG9tIGZyb20gJ0B4bWxkb20veG1sZG9tJztcblxuY2xhc3MgRmFrZUVsZW1lbnQge1xuICBjb25zdHJ1Y3Rvcih4bWxOb2RlLCBhcHApIHtcbiAgICB0aGlzLmFwcCA9IGFwcDtcbiAgICB0aGlzLm5vZGUgPSB4bWxOb2RlO1xuICAgIHRoaXMubm9kZUF0dHJzID0ge307XG4gICAgdGhpcy50eXBlID0gdGhpcy5ub2RlLnRhZ05hbWU7XG4gICAgdGhpcy5hdHRycyA9IHt9O1xuICAgIHRoaXMuY3NzID0ge307XG4gICAgZm9yIChsZXQge25hbWUsIHZhbHVlfSBvZiBfLnZhbHVlcyh0aGlzLm5vZGUuYXR0cmlidXRlcykpIHtcbiAgICAgIHRoaXMubm9kZUF0dHJzW25hbWVdID0gdmFsdWU7XG4gICAgfVxuICAgIHRoaXMucGFyc2VDc3MoKTtcbiAgfVxuXG4gIHBhcnNlQ3NzKCkge1xuICAgIGlmICh0aGlzLm5vZGVBdHRycy5zdHlsZSkge1xuICAgICAgbGV0IHNlZ21lbnRzID0gdGhpcy5ub2RlQXR0cnMuc3R5bGUuc3BsaXQoJzsnKTtcbiAgICAgIGZvciAobGV0IHMgb2Ygc2VnbWVudHMpIHtcbiAgICAgICAgbGV0IFtwcm9wLCB2YWxdID0gcy5zcGxpdCgnOicpO1xuICAgICAgICBwcm9wID0gcHJvcC50cmltKCk7XG4gICAgICAgIHZhbCA9IHZhbC50cmltKCk7XG4gICAgICAgIHRoaXMuY3NzW3Byb3BdID0gdmFsO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIGdldCB0YWdOYW1lKCkge1xuICAgIHJldHVybiB0aGlzLm5vZGUudGFnTmFtZTtcbiAgfVxuXG4gIHNldEF0dHIoaywgdikge1xuICAgIHRoaXMuYXR0cnNba10gPSB2O1xuICB9XG5cbiAgZ2V0QXR0cihrKSB7XG4gICAgcmV0dXJuIHRoaXMuYXR0cnNba10gfHwgJyc7XG4gIH1cblxuICBpc1Zpc2libGUoKSB7XG4gICAgcmV0dXJuIHRoaXMubm9kZUF0dHJzLnZpc2libGUgIT09ICdmYWxzZSc7XG4gIH1cblxuICBpc0VuYWJsZWQoKSB7XG4gICAgcmV0dXJuIHRoaXMubm9kZUF0dHJzLmVuYWJsZWQgIT09ICdmYWxzZSc7XG4gIH1cblxuICBpc1NlbGVjdGVkKCkge1xuICAgIHJldHVybiB0aGlzLm5vZGVBdHRycy5zZWxlY3RlZCA9PT0gJ3RydWUnO1xuICB9XG5cbiAgZ2V0TG9jYXRpb24oKSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIHg6IHBhcnNlRmxvYXQodGhpcy5ub2RlQXR0cnMubGVmdCB8fCAwKSxcbiAgICAgIHk6IHBhcnNlRmxvYXQodGhpcy5ub2RlQXR0cnMudG9wIHx8IDApLFxuICAgIH07XG4gIH1cblxuICBnZXRFbGVtZW50UmVjdCgpIHtcbiAgICByZXR1cm4gey4uLnRoaXMuZ2V0TG9jYXRpb24oKSwgLi4udGhpcy5nZXRTaXplKCl9O1xuICB9XG5cbiAgZ2V0U2l6ZSgpIHtcbiAgICByZXR1cm4ge1xuICAgICAgd2lkdGg6IHBhcnNlRmxvYXQodGhpcy5ub2RlQXR0cnMud2lkdGggfHwgMCksXG4gICAgICBoZWlnaHQ6IHBhcnNlRmxvYXQodGhpcy5ub2RlQXR0cnMuaGVpZ2h0IHx8IDApLFxuICAgIH07XG4gIH1cblxuICBjbGljaygpIHtcbiAgICBsZXQgY3VyQ2xpY2tzID0gdGhpcy5nZXRBdHRyKCdjbGlja3MnKSB8fCAwO1xuICAgIHRoaXMuc2V0QXR0cignY2xpY2tzJywgY3VyQ2xpY2tzICsgMSk7XG4gICAgbGV0IGFsZXJ0SWQgPSB0aGlzLm5vZGVBdHRycy5zaG93QWxlcnQ7XG4gICAgaWYgKGFsZXJ0SWQpIHtcbiAgICAgIHRoaXMuYXBwLnNob3dBbGVydChhbGVydElkKTtcbiAgICB9XG4gIH1cblxuICBlcXVhbHMob3RoZXIpIHtcbiAgICByZXR1cm4gdGhpcy5ub2RlID09PSBvdGhlci5ub2RlO1xuICB9XG5cbiAgaGFzUHJvbXB0KCkge1xuICAgIHJldHVybiB0aGlzLm5vZGVBdHRycy5oYXNQcm9tcHQgPT09ICd0cnVlJztcbiAgfVxuXG4gIGdldENzcyhwcm9wKSB7XG4gICAgaWYgKF8uaGFzKHRoaXMuY3NzLCBwcm9wKSkge1xuICAgICAgcmV0dXJuIHRoaXMuY3NzW3Byb3BdO1xuICAgIH1cbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuXG4gIGdldCB4bWxGcmFnbWVudCgpIHtcbiAgICBsZXQgZnJhZyA9IG5ldyBYTUxEb20uWE1MU2VyaWFsaXplcigpLnNlcmlhbGl6ZVRvU3RyaW5nKHRoaXMubm9kZSk7XG4gICAgcmV0dXJuIG5ldyBYTUxEb20uRE9NUGFyc2VyKCkucGFyc2VGcm9tU3RyaW5nKGZyYWcsICdhcHBsaWNhdGlvbi94bWwnKTtcbiAgfVxufVxuXG5leHBvcnQge0Zha2VFbGVtZW50fTtcbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQUE7O0FBQ0E7Ozs7QUFFQSxNQUFNQSxXQUFOLENBQWtCO0VBQ2hCQyxXQUFXLENBQUNDLE9BQUQsRUFBVUMsR0FBVixFQUFlO0lBQ3hCLEtBQUtBLEdBQUwsR0FBV0EsR0FBWDtJQUNBLEtBQUtDLElBQUwsR0FBWUYsT0FBWjtJQUNBLEtBQUtHLFNBQUwsR0FBaUIsRUFBakI7SUFDQSxLQUFLQyxJQUFMLEdBQVksS0FBS0YsSUFBTCxDQUFVRyxPQUF0QjtJQUNBLEtBQUtDLEtBQUwsR0FBYSxFQUFiO0lBQ0EsS0FBS0MsR0FBTCxHQUFXLEVBQVg7O0lBQ0EsS0FBSyxJQUFJO01BQUNDLElBQUQ7TUFBT0M7SUFBUCxDQUFULElBQTBCQyxlQUFBLENBQUVDLE1BQUYsQ0FBUyxLQUFLVCxJQUFMLENBQVVVLFVBQW5CLENBQTFCLEVBQTBEO01BQ3hELEtBQUtULFNBQUwsQ0FBZUssSUFBZixJQUF1QkMsS0FBdkI7SUFDRDs7SUFDRCxLQUFLSSxRQUFMO0VBQ0Q7O0VBRURBLFFBQVEsR0FBRztJQUNULElBQUksS0FBS1YsU0FBTCxDQUFlVyxLQUFuQixFQUEwQjtNQUN4QixJQUFJQyxRQUFRLEdBQUcsS0FBS1osU0FBTCxDQUFlVyxLQUFmLENBQXFCRSxLQUFyQixDQUEyQixHQUEzQixDQUFmOztNQUNBLEtBQUssSUFBSUMsQ0FBVCxJQUFjRixRQUFkLEVBQXdCO1FBQ3RCLElBQUksQ0FBQ0csSUFBRCxFQUFPQyxHQUFQLElBQWNGLENBQUMsQ0FBQ0QsS0FBRixDQUFRLEdBQVIsQ0FBbEI7UUFDQUUsSUFBSSxHQUFHQSxJQUFJLENBQUNFLElBQUwsRUFBUDtRQUNBRCxHQUFHLEdBQUdBLEdBQUcsQ0FBQ0MsSUFBSixFQUFOO1FBQ0EsS0FBS2IsR0FBTCxDQUFTVyxJQUFULElBQWlCQyxHQUFqQjtNQUNEO0lBQ0Y7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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fake-element.js","names":["FakeElement","constructor","xmlNode","app","node","nodeAttrs","type","tagName","attrs","css","name","value","_","values","attributes","parseCss","style","segments","split","s","prop","val","trim","setAttr","k","v","getAttr","isVisible","visible","isEnabled","enabled","isSelected","selected","getLocation","x","parseFloat","left","y","top","getElementRect","getSize","width","height","click","curClicks","alertId","showAlert","equals","other","hasPrompt","getCss","has","xmlFragment","frag","XMLDom","XMLSerializer","serializeToString","DOMParser","parseFromString"],"sources":["../../lib/fake-element.js"],"sourcesContent":["import _ from 'lodash';\nimport XMLDom from '@xmldom/xmldom';\n\nclass FakeElement {\n constructor(xmlNode, app) {\n this.app = app;\n this.node = xmlNode;\n this.nodeAttrs = {};\n this.type = this.node.tagName;\n this.attrs = {};\n this.css = {};\n for (let {name, value} of _.values(this.node.attributes)) {\n this.nodeAttrs[name] = value;\n }\n this.parseCss();\n }\n\n parseCss() {\n if (this.nodeAttrs.style) {\n let segments = this.nodeAttrs.style.split(';');\n for (let s of segments) {\n let [prop, val] = s.split(':');\n prop = prop.trim();\n val = val.trim();\n this.css[prop] = val;\n }\n }\n }\n\n get tagName() {\n return this.node.tagName;\n }\n\n setAttr(k, v) {\n this.attrs[k] = v;\n }\n\n getAttr(k) {\n return this.attrs[k] || '';\n }\n\n isVisible() {\n return this.nodeAttrs.visible !== 'false';\n }\n\n isEnabled() {\n return this.nodeAttrs.enabled !== 'false';\n }\n\n isSelected() {\n return this.nodeAttrs.selected === 'true';\n }\n\n getLocation() {\n return {\n x: parseFloat(this.nodeAttrs.left || 0),\n y: parseFloat(this.nodeAttrs.top || 0),\n };\n }\n\n getElementRect() {\n return {...this.getLocation(), ...this.getSize()};\n }\n\n getSize() {\n return {\n width: parseFloat(this.nodeAttrs.width || 0),\n height: parseFloat(this.nodeAttrs.height || 0),\n };\n }\n\n click() {\n let curClicks = this.getAttr('clicks') || 0;\n this.setAttr('clicks', curClicks + 1);\n let alertId = this.nodeAttrs.showAlert;\n if (alertId) {\n this.app.showAlert(alertId);\n }\n }\n\n equals(other) {\n return this.node === other.node;\n }\n\n hasPrompt() {\n return this.nodeAttrs.hasPrompt === 'true';\n }\n\n getCss(prop) {\n if (_.has(this.css, prop)) {\n return this.css[prop];\n }\n return null;\n }\n\n get xmlFragment() {\n let frag = new XMLDom.XMLSerializer().serializeToString(this.node);\n return new XMLDom.DOMParser().parseFromString(frag, 'application/xml');\n }\n}\n\nexport {FakeElement};\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","names":["FakeDriver","driver","startServer","server","DEFAULT_HOST","DEFAULT_PORT","main","getArgValue","argName","argIndex","process","argv","indexOf","port","parseInt","host"],"sources":["../../lib/index.js"],"sourcesContent":["import * as driver from './driver';\nimport * as server from './server';\n\nconst {FakeDriver} = driver;\nconst {startServer} = server;\n\nconst DEFAULT_HOST = 'localhost';\nconst DEFAULT_PORT = 4774;\n\nasync function main() {\n const getArgValue = (argName) => {\n const argIndex = process.argv.indexOf(argName);\n return argIndex > 0 ? process.argv[argIndex + 1] : null;\n };\n const port = parseInt(getArgValue('--port'), 10) || DEFAULT_PORT;\n const host = getArgValue('--host') || DEFAULT_HOST;\n return await startServer(port, host);\n}\n\nexport {FakeDriver, startServer, main};\n"],"mappings":";;;;;;;;;;;AAAA;;AACA;;;;;;AAEA,MAAM;EAACA;AAAD,IAAeC,MAArB;;AACA,MAAM;EAACC;AAAD,IAAgBC,MAAtB;;AAEA,MAAMC,YAAY,GAAG,WAArB;AACA,MAAMC,YAAY,GAAG,IAArB;;AAEA,eAAeC,IAAf,GAAsB;EACpB,MAAMC,WAAW,GAAIC,OAAD,IAAa;IAC/B,MAAMC,QAAQ,GAAGC,OAAO,CAACC,IAAR,CAAaC,OAAb,CAAqBJ,OAArB,CAAjB;IACA,OAAOC,QAAQ,GAAG,CAAX,GAAeC,OAAO,CAACC,IAAR,CAAaF,QAAQ,GAAG,CAAxB,CAAf,GAA4C,IAAnD;EACD,CAHD;;EAIA,MAAMI,IAAI,GAAGC,QAAQ,CAACP,WAAW,CAAC,QAAD,CAAZ,EAAwB,EAAxB,CAAR,IAAuCF,YAApD;EACA,MAAMU,IAAI,GAAGR,WAAW,CAAC,QAAD,CAAX,IAAyBH,YAAtC;EACA,OAAO,MAAMF,WAAW,CAACW,IAAD,EAAOE,IAAP,CAAxB;AACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.js","names":["log","logger","getLogger"],"sources":["../../lib/logger.js"],"sourcesContent":["import {logger} from 'appium/support';\n\nconst log = logger.getLogger('FakeDriver');\n\nexport default log;\n"],"mappings":";;;;;;;;;AAAA;;AAEA,MAAMA,GAAG,GAAGC,eAAA,CAAOC,SAAP,CAAiB,YAAjB,CAAZ;;eAEeF,G"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fake-error.js","names":["Error"],"sources":["../../../lib/scripts/fake-error.js"],"sourcesContent":["throw Error('Unsuccessfully ran the script');\n"],"mappings":";;;;AAAA,MAAMA,KAAK,CAAC,+BAAD,CAAX"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
3
|
require("source-map-support/register");
|
|
6
4
|
|
|
7
5
|
var _logger = _interopRequireDefault(require("../logger"));
|
|
8
6
|
|
|
7
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
8
|
+
|
|
9
9
|
_logger.default.info('Successfully ran the script');
|
|
10
10
|
|
|
11
11
|
_logger.default.info(process.argv.slice(2).join(' '));
|
|
12
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
12
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJsb2ciLCJpbmZvIiwicHJvY2VzcyIsImFyZ3YiLCJzbGljZSIsImpvaW4iXSwic291cmNlcyI6WyIuLi8uLi8uLi9saWIvc2NyaXB0cy9mYWtlLXN1Y2Nlc3MuanMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IGxvZyBmcm9tICcuLi9sb2dnZXInO1xuXG5sb2cuaW5mbygnU3VjY2Vzc2Z1bGx5IHJhbiB0aGUgc2NyaXB0Jyk7XG5cbmxvZy5pbmZvKHByb2Nlc3MuYXJndi5zbGljZSgyKS5qb2luKCcgJykpO1xuIl0sIm1hcHBpbmdzIjoiOzs7O0FBQUE7Ozs7QUFFQUEsZUFBQSxDQUFJQyxJQUFKLENBQVMsNkJBQVQ7O0FBRUFELGVBQUEsQ0FBSUMsSUFBSixDQUFTQyxPQUFPLENBQUNDLElBQVIsQ0FBYUMsS0FBYixDQUFtQixDQUFuQixFQUFzQkMsSUFBdEIsQ0FBMkIsR0FBM0IsQ0FBVCJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fake-success.js","names":["log","info","process","argv","slice","join"],"sources":["../../../lib/scripts/fake-success.js"],"sourcesContent":["import log from '../logger';\n\nlog.info('Successfully ran the script');\n\nlog.info(process.argv.slice(2).join(' '));\n"],"mappings":";;;;AAAA;;;;AAEAA,eAAA,CAAIC,IAAJ,CAAS,6BAAT;;AAEAD,eAAA,CAAIC,IAAJ,CAASC,OAAO,CAACC,IAAR,CAAaC,KAAb,CAAmB,CAAnB,EAAsBC,IAAtB,CAA2B,GAA3B,CAAT"}
|
package/build/lib/server.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
@@ -15,6 +13,8 @@ var _driver = require("appium/driver");
|
|
|
15
13
|
|
|
16
14
|
var _driver2 = require("./driver");
|
|
17
15
|
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
+
|
|
18
18
|
async function startServer(port, hostname) {
|
|
19
19
|
const d = new _driver2.FakeDriver();
|
|
20
20
|
const server = await (0, _driver.server)({
|
|
@@ -27,4 +27,4 @@ async function startServer(port, hostname) {
|
|
|
27
27
|
|
|
28
28
|
return server;
|
|
29
29
|
}
|
|
30
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
30
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJzdGFydFNlcnZlciIsInBvcnQiLCJob3N0bmFtZSIsImQiLCJGYWtlRHJpdmVyIiwic2VydmVyIiwiYmFzZVNlcnZlciIsInJvdXRlQ29uZmlndXJpbmdGdW5jdGlvbiIsImxvZyIsImluZm8iXSwic291cmNlcyI6WyIuLi8uLi9saWIvc2VydmVyLmpzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBsb2cgZnJvbSAnLi9sb2dnZXInO1xuaW1wb3J0IHtzZXJ2ZXIgYXMgYmFzZVNlcnZlciwgcm91dGVDb25maWd1cmluZ0Z1bmN0aW9ufSBmcm9tICdhcHBpdW0vZHJpdmVyJztcbmltcG9ydCB7RmFrZURyaXZlcn0gZnJvbSAnLi9kcml2ZXInO1xuXG5hc3luYyBmdW5jdGlvbiBzdGFydFNlcnZlcihwb3J0LCBob3N0bmFtZSkge1xuICBjb25zdCBkID0gbmV3IEZha2VEcml2ZXIoKTtcbiAgY29uc3Qgc2VydmVyID0gYXdhaXQgYmFzZVNlcnZlcih7XG4gICAgcm91dGVDb25maWd1cmluZ0Z1bmN0aW9uOiByb3V0ZUNvbmZpZ3VyaW5nRnVuY3Rpb24oZCksXG4gICAgcG9ydCxcbiAgICBob3N0bmFtZSxcbiAgfSk7XG4gIGxvZy5pbmZvKGBGYWtlRHJpdmVyIHNlcnZlciBsaXN0ZW5pbmcgb24gaHR0cDovLyR7aG9zdG5hbWV9OiR7cG9ydH1gKTtcbiAgcmV0dXJuIHNlcnZlcjtcbn1cblxuZXhwb3J0IHtzdGFydFNlcnZlcn07XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUFBOztBQUNBOztBQUNBOzs7O0FBRUEsZUFBZUEsV0FBZixDQUEyQkMsSUFBM0IsRUFBaUNDLFFBQWpDLEVBQTJDO0VBQ3pDLE1BQU1DLENBQUMsR0FBRyxJQUFJQyxtQkFBSixFQUFWO0VBQ0EsTUFBTUMsTUFBTSxHQUFHLE1BQU0sSUFBQUMsY0FBQSxFQUFXO0lBQzlCQyx3QkFBd0IsRUFBRSxJQUFBQSxnQ0FBQSxFQUF5QkosQ0FBekIsQ0FESTtJQUU5QkYsSUFGOEI7SUFHOUJDO0VBSDhCLENBQVgsQ0FBckI7O0VBS0FNLGVBQUEsQ0FBSUMsSUFBSixDQUFVLHlDQUF3Q1AsUUFBUyxJQUFHRCxJQUFLLEVBQW5FOztFQUNBLE9BQU9JLE1BQVA7QUFDRCJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.js","names":["startServer","port","hostname","d","FakeDriver","server","baseServer","routeConfiguringFunction","log","info"],"sources":["../../lib/server.js"],"sourcesContent":["import log from './logger';\nimport {server as baseServer, routeConfiguringFunction} from 'appium/driver';\nimport {FakeDriver} from './driver';\n\nasync function startServer(port, hostname) {\n const d = new FakeDriver();\n const server = await baseServer({\n routeConfiguringFunction: routeConfiguringFunction(d),\n port,\n hostname,\n });\n log.info(`FakeDriver server listening on http://${hostname}:${port}`);\n return server;\n}\n\nexport {startServer};\n"],"mappings":";;;;;;;;;AAAA;;AACA;;AACA;;;;AAEA,eAAeA,WAAf,CAA2BC,IAA3B,EAAiCC,QAAjC,EAA2C;EACzC,MAAMC,CAAC,GAAG,IAAIC,mBAAJ,EAAV;EACA,MAAMC,MAAM,GAAG,MAAM,IAAAC,cAAA,EAAW;IAC9BC,wBAAwB,EAAE,IAAAA,gCAAA,EAAyBJ,CAAzB,CADI;IAE9BF,IAF8B;IAG9BC;EAH8B,CAAX,CAArB;;EAKAM,eAAA,CAAIC,IAAJ,CAAU,yCAAwCP,QAAS,IAAGD,IAAK,EAAnE;;EACA,OAAOI,MAAP;AACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/bluebird/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/type-fest/source/primitive.d.ts","../../../node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/type-fest/source/basic.d.ts","../../../node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/type-fest/source/internal.d.ts","../../../node_modules/type-fest/source/except.d.ts","../../../node_modules/type-fest/source/simplify.d.ts","../../../node_modules/type-fest/source/writable.d.ts","../../../node_modules/type-fest/source/mutable.d.ts","../../../node_modules/type-fest/source/merge.d.ts","../../../node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/type-fest/source/remove-index-signature.d.ts","../../../node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/type-fest/source/promisable.d.ts","../../../node_modules/type-fest/source/opaque.d.ts","../../../node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/type-fest/source/set-required.d.ts","../../../node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/type-fest/source/value-of.d.ts","../../../node_modules/type-fest/source/promise-value.d.ts","../../../node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/type-fest/source/stringified.d.ts","../../../node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/type-fest/source/entry.d.ts","../../../node_modules/type-fest/source/entries.d.ts","../../../node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/type-fest/source/numeric.d.ts","../../../node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/type-fest/source/schema.d.ts","../../../node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/type-fest/source/exact.d.ts","../../../node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/type-fest/source/spread.d.ts","../../../node_modules/type-fest/source/split.d.ts","../../../node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/includes.d.ts","../../../node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/type-fest/source/join.d.ts","../../../node_modules/type-fest/source/trim.d.ts","../../../node_modules/type-fest/source/replace.d.ts","../../../node_modules/type-fest/source/get.d.ts","../../../node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/type-fest/source/package-json.d.ts","../../../node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/type-fest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../schema/build/appium-config-schema.d.ts","../../schema/build/index.d.ts","../../types/build/appium-config.d.ts","../../types/build/config.d.ts","../../../node_modules/typescript/lib/typescript.d.ts","../../../node_modules/@wdio/types/build/compiler.d.ts","../../../node_modules/@wdio/types/build/frameworks.d.ts","../../../node_modules/@wdio/types/build/services.d.ts","../../../node_modules/@wdio/types/build/reporters.d.ts","../../../node_modules/@wdio/types/build/options.d.ts","../../../node_modules/@wdio/types/build/capabilities.d.ts","../../../node_modules/@wdio/types/build/clients.d.ts","../../../node_modules/@wdio/types/build/workers.d.ts","../../../node_modules/@wdio/types/build/index.d.ts","../../types/build/capabilities.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../types/build/action.d.ts","../../types/build/driver.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../types/build/plugin.d.ts","../../types/build/index.d.ts","../../base-driver/build/lib/basedriver/device-settings.d.ts","../../base-driver/build/lib/basedriver/core.d.ts","../../base-driver/build/lib/express/server.d.ts","../../base-driver/build/lib/protocol/protocol.d.ts","../../../node_modules/es6-error/typings/index.d.ts","../../../node_modules/http-status-codes/build/cjs/utils-functions.d.ts","../../../node_modules/http-status-codes/build/cjs/status-codes.d.ts","../../../node_modules/http-status-codes/build/cjs/reason-phrases.d.ts","../../../node_modules/http-status-codes/build/cjs/legacy.d.ts","../../../node_modules/http-status-codes/build/cjs/index.d.ts","../../base-driver/build/lib/protocol/errors.d.ts","../../base-driver/build/lib/protocol/routes.d.ts","../../base-driver/build/lib/protocol/index.d.ts","../../base-driver/build/lib/express/static.d.ts","../../base-driver/build/lib/jsonwp-proxy/protocol-converter.d.ts","../../base-driver/build/lib/jsonwp-proxy/proxy.d.ts","../../base-driver/build/lib/express/websocket.d.ts","../../base-driver/build/lib/basedriver/driver.d.ts","../../base-driver/build/lib/constants.d.ts","../../base-driver/build/lib/jsonwp-status/status.d.ts","../../base-driver/build/lib/basedriver/capabilities.d.ts","../../base-driver/build/lib/index.d.ts","../../appium/driver.d.ts","../../../node_modules/@types/teen_process/index.d.ts","../../support/build/lib/npm.d.ts","../../support/build/lib/tempdir.d.ts","../../support/build/lib/system.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/shell-quote/index.d.ts","../../support/build/lib/util.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/mv/index.d.ts","../../../node_modules/@types/rimraf/index.d.ts","../../../node_modules/@types/ncp/index.d.ts","../../../node_modules/@types/which/index.d.ts","../../../node_modules/sanitize-filename/index.d.ts","../../../node_modules/@types/klaw/index.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/basic.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/except.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/mutable.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/merge.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/read-pkg/index.d.ts","../../support/build/lib/fs.d.ts","../../support/build/lib/plist.d.ts","../../support/build/lib/mkdirp.d.ts","../../support/build/lib/log-internal.d.ts","../../support/build/lib/logging.d.ts","../../support/build/lib/process.d.ts","../../../node_modules/@types/yauzl/index.d.ts","../../support/build/lib/zip.d.ts","../../../node_modules/@jimp/core/types/jimp.d.ts","../../../node_modules/@jimp/core/types/etc.d.ts","../../../node_modules/@jimp/core/types/functions.d.ts","../../../node_modules/@jimp/core/types/utils.d.ts","../../../node_modules/@jimp/core/types/plugins.d.ts","../../../node_modules/@jimp/core/types/index.d.ts","../../../node_modules/@jimp/jpeg/index.d.ts","../../../node_modules/@jimp/png/index.d.ts","../../../node_modules/@jimp/bmp/index.d.ts","../../../node_modules/@jimp/tiff/index.d.ts","../../../node_modules/@jimp/gif/index.d.ts","../../../node_modules/@jimp/types/index.d.ts","../../../node_modules/@jimp/plugin-blit/index.d.ts","../../../node_modules/@jimp/plugin-blur/index.d.ts","../../../node_modules/@jimp/plugin-circle/index.d.ts","../../../node_modules/@jimp/plugin-color/index.d.ts","../../../node_modules/@jimp/plugin-contain/index.d.ts","../../../node_modules/@jimp/plugin-cover/index.d.ts","../../../node_modules/@jimp/plugin-crop/index.d.ts","../../../node_modules/@jimp/plugin-displace/index.d.ts","../../../node_modules/@jimp/plugin-dither/index.d.ts","../../../node_modules/@jimp/plugin-fisheye/index.d.ts","../../../node_modules/@jimp/plugin-flip/index.d.ts","../../../node_modules/@jimp/plugin-gaussian/index.d.ts","../../../node_modules/@jimp/plugin-invert/index.d.ts","../../../node_modules/@jimp/plugin-mask/index.d.ts","../../../node_modules/@jimp/plugin-normalize/index.d.ts","../../../node_modules/@jimp/plugin-print/index.d.ts","../../../node_modules/@jimp/plugin-resize/index.d.ts","../../../node_modules/@jimp/plugin-rotate/index.d.ts","../../../node_modules/@jimp/plugin-scale/index.d.ts","../../../node_modules/@jimp/plugin-shadow/index.d.ts","../../../node_modules/@jimp/plugin-threshold/index.d.ts","../../../node_modules/@jimp/plugins/index.d.ts","../../../node_modules/jimp/types/ts3.1/index.d.ts","../../../node_modules/@types/pngjs/index.d.ts","../../../node_modules/buffer/index.d.ts","../../support/build/lib/image-util.d.ts","../../../node_modules/axios/index.d.ts","../../support/build/lib/net.d.ts","../../support/build/lib/mjpeg.d.ts","../../support/build/lib/node.d.ts","../../support/build/lib/timing.d.ts","../../support/build/lib/env.d.ts","../../../node_modules/log-symbols/index.d.ts","../../../node_modules/@colors/colors/index.d.ts","../../support/build/lib/console.d.ts","../../support/build/lib/index.d.ts","../../appium/support.d.ts","../../../node_modules/@xmldom/xmldom/index.d.ts","../../../node_modules/xpath/xpath.d.ts","../lib/logger.js","../lib/fake-element.js","../lib/fake-app.js","../lib/commands/contexts.js","../lib/commands/find.js","../lib/commands/element.js","../lib/commands/general.js","../lib/commands/alert.js","../lib/commands/index.js","../lib/driver.js","../lib/fake-driver-schema.js","../lib/server.js","../lib/index.js","../lib/scripts/fake-error.js","../lib/scripts/fake-success.js","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@types/chai-as-promised/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"a53ba2a104ae0e58b2791f9cdf3ddafd747d1a0ccb5e6363c2b0ce2eb5e0e67c","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","0fac2b483246d890f74e4050c8651f43b4569519c386082d4c3838cd42f39a7c","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"11c8be5993cd30dbb5310d95ba6c54dbb8724221eed0c4b2e4a7d6a4f9a032dd","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","0e1b73efb8ce3afd418f04f59e26134f46418d2033dff332446fe0ee762b884a","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"3a4c859c27b2aaedcd27173220d66590fa7da27ee45d84e365fb0fe7f2c2f72c","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","4a15fc59b27b65b9894952048be2afc561865ec37606cd0f5e929ee4a102233b",{"version":"744e7c636288493667d553c8f8ebd666ccbc0e715df445a4a7c4a48812f20544","affectsGlobalScope":true},"c05dcfbd5bd0abcefa3ad7d2931424d4d8090bc55bbe4f5c8acb8d2ca5886b2e","326da4aebf555d54b995854ff8f3432f63ba067be354fa16c6e1f50daa0667de","90748076a143bbeb455f8d5e8ad1cc451424c4856d41410e491268a496165256","76e3f3a30c533bf20840d4185ce2d143dc18ca955b64400ac09670a89d388198","144dfcee38ebc38aae93a85bc47211c9268d529b099127b74d61242ec5c17f35","2cf38989b23031694f04308b6797877534a49818b2f5257f4a5d824e7ea82a5a","f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","e4ace1cf5316aa7720e58c8dd511ba86bab1c981336996fb694fa64b8231d5f0","a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","f35a727758da36dd885a70dd13a74d9167691aaff662d50eaaf66ed591957702","116205156fb819f2afe33f9c6378ea11b6123fa3090f858211c23f667fff75da","8fe68442c15f8952b8816fa4e7e6bd8d5c45542832206bd7bcf3ebdc77d1c3f3","3add9402f56a60e9b379593f69729831ac0fc9eae604b6fafde5fa86d2f8a4b9","cc28c8b188905e790de427f3cd00b96734c9c662fb849d68ff9d5f0327165c0d","da2aa652d2bf03cc042e2ff31e4194f4f18f042b8344dcb2568f761daaf7869f","03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","de2b56099545de410af72a7e430ead88894e43e4f959de29663d4d0ba464944d","eec9e706eef30b4f1c6ff674738d3fca572829b7fa1715f37742863dabb3d2f2","cec67731fce8577b0a90aa67ef0522ddb9f1fd681bece50cdcb80a833b4ed06f","a14679c24962a81ef24b6f4e95bbc31601551f150d91af2dc0bce51f7961f223","3f4d43bb3f61d173a4646c19557e090a06e9a2ec9415313a6d84af388df64923","18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","d5a5025f04e7a3264ecfa3030ca9a3cb0353450f1915a26d5b84f596240a11cd","03f4449c691dd9c51e42efd51155b63c8b89a5f56b5cf3015062e2f818be8959","23b213ec3af677b3d33ec17d9526a88d5f226506e1b50e28ce4090fb7e4050a8","f0abf96437a6e57b9751a792ba2ebb765729a40d0d573f7f6800b305691b1afb","7d30aee3d35e64b4f49c235d17a09e7a7ce2961bebb3996ee1db5aa192f3feba","eb1625bab70cfed00931a1e09ecb7834b61a666b0011913b0ec24a8e219023ef","1a923815c127b27f7f375c143bb0d9313ccf3c66478d5d2965375eeb7da72a4c","4f92df9d64e5413d4b34020ae6b382edda84347daec97099e7c008a9d5c0910b","fcc438e50c00c9e865d9c1777627d3fdc1e13a4078c996fb4b04e67e462648c8","d0f07efa072420758194c452edb3f04f8eabc01cd4b3884a23e7274d4e2a7b69","7086cca41a87b3bf52c6abfc37cda0a0ec86bb7e8e5ef166b07976abec73fa5e","4571a6886b4414403eacdd1b4cdbd854453626900ece196a173e15fb2b795155","c122227064c2ebf6a5bd2800383181395b56bb71fd6683d5e92add550302e45f","60f476f1c4de44a08d6a566c6f1e1b7de6cbe53d9153c9cc2284ca0022e21fba","84315d5153613eeb4b34990fb3bc3a1261879a06812ee7ae481141e30876d8dc","4f0781ec008bb24dc1923285d25d648ea48fb5a3c36d0786e2ee82eb00eff426","8fefaef4be2d484cdfc35a1b514ee7e7bb51680ef998fb9f651f532c0b169e6b","8be5c5be3dbf0003a628f99ad870e31bebc2364c28ea3b96231089a94e09f7a6","6626bbc69c25a92f6d32e6d2f25038f156b4c2380cbf29a420f7084fb1d2f7d7","f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","5126032fe6e999f333827ee8e67f7ca1d5f3d6418025878aa5ebf13b499c2024","4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","1573cae51ae8a5b889ec55ecb58e88978fe251fd3962efa5c4fdb69ce00b23ba","75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","f2d1ac34b05bb6ce326ea1702befb0216363f1d5eccdd1b4b0b2f5a7e953ed8a","789665f0cd78bc675a31140d8f133ec6a482d753a514012fe1bb7f86d0a21040","bb30fb0534dceb2e41a884c1e4e2bb7a0c668dadd148092bba9ff15aafb94790","6ef829366514e4a8f75ce55fa390ebe080810b347e6f4a87bbeecb41e612c079","8f313aa8055158f08bd75e3a57161fa473a50884c20142f3318f89f19bfc0373","e789eb929b46299187312a01ff71905222f67907e546e491952c384b6f956a63","a0147b607f8c88a5433a5313cdc10443c6a45ed430e1b0a335a413dc2b099fd5","a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","6b1071c06abcbe1c9f60638d570fdbfe944b6768f95d9f28ebc06c7eec9b4087","92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","1285ddb279c6d0bc5fe46162a893855078ae5b708d804cd93bfc4a23d1e903d9","d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","fc3ee92b81a6188a545cba5c15dc7c5d38ee0aaca3d8adc29af419d9bdb1fdb9","a14371dc39f95c27264f8eb02ce2f80fd84ac693a2750983ac422877f0ae586d","755bcc456b4dd032244b51a8b4fe68ee3b2d2e463cf795f3fde970bb3f269fb1","c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","f3dedc92d06e0fdc43e76c2e1acca21759dd63d2572c9ec78a5188249965d944","25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","a1d1e49ccd2ac07ed8a49a3f98dfd2f7357cf03649b9e348b58b97bb75116f18","7ad042f7d744ccfbcf6398216203c7712f01359d6fd4348c8bd8df8164e98096","0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","8e7653c13989dca094412bc4de20d5c449457fc92735546331d5e9cdd79ac16e","189dedb255e41c8556d0d61d7f1c18506501896354d0925cbd47060bcddccab1","48f0819c2e14214770232f1ab0058125bafdde1d04c4be84339d5533098bf60a","2641aff32336e35a5b702aa2d870a0891da29dc1c19ae48602678e2050614041","e133066d15e9e860ca96220a548dee28640039a8ac33a9130d0f83c814a78605","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","7d9161ec720909c6abf2957b3f62d1ab27f2623e380a39d147715d43d8abd414","6101949945c252c5706da566e06b7be2a4cc48e73f25165add3c081d0dd37578","a983207132524290a38f8c5e3e1799c4b3372c66835ee1a9c207f42fc5220d88","8f55068da250ce5c00ce636f4c33b7e50fb15a75a84bf6092595e419e678dc2a","3fa86a2c33804b6a4221dda3714a6a2f8a2f26983ea6c63d2bf6f2839fbb778a","a47b38aac630271c68667d717c865e4c98200bd90b4a8859d3f07460da09adec","46ab84953b0abb33ae9a42af24c97883e68f1080f084ffb9436181b3f147776c","d97f055b516d74e0c0bace388e6bbe3bc386a9599a1d1862ba8a669e892a1d2a","2e97e912e078f6cea483fb096d9c49eb2b7285f9e4748e2f7723c7b55817b90b","5f9e9eee4568d2fbef66f0118381003c07c43193dd18bc86f3141726a23a386e","4d18894e559ba0ddde5d544c718dc71683f770f70b881dc697afeb0ea37ca292","db412fc192357cd4bff3e93e79030ea404b7d2cf8c089d2fe9d53ba010f1a916","7bc97e823dd70d66e9640998837ca0aad3480b415035dbd2074e3a450166e221",{"version":"1153175167a3c48f04cea09400723d11107af1c13e2f0fc858347ef085417519","affectsGlobalScope":true},"10487580175f86d0789473002b4b6e6606f9a4d7d3965f91066361aa8629297a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"101eb8b4e972b9326f39591e2e40e967e3331e8d960f81248daeb266ea1affec","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","b7e64651c85c710d82161ad78be0ff7c95e9ecc82b23ea21244b62753d549ea3","f7648bb46cef0cfd5dfad2050b96699d604e45639c95448814a1342bf3369853","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","6f36e68c339aea454afcdd2387ed71411d727a612f1412d84530e05f74d3e963","bc26951c777570d6480caae896eb50339d87f24c5f6b267c1dc1751a5507cbb2","d0c3f69853b08d50e442522622c52e1c80fd1150eb22b96e78290f0faf8ab346","2f4094ef7d7d55ddedd0758a3d46f2c8c653e91161217bea1b772cb8350b2632","4cbe65178b3e292e082c6baafff84e98552b67b43321c2fe42ed47cbf342e6b0","1f1a1d0609e7514b711768295528b3b9b0fd67d7f2ba3f1730d2f135e6f58069","87dc4aa712e5fc14d93d1a91919b0105aac5dc6c04259fcb28a5d57a1347fba3","1bc146fb8f5cf8f67d0bb651c2237196ab42d7bae6eff9c079f254c3a4b2dc9f","fcb175cbc3a5f91152314cabe52625d495da9a3c4e9b4578dfcb1018b10b5bd1","66b458867662fd10111e8241abfd372570816317b456b712979826b0d784df37","de743c53fbbaa917b418cff186394602074f211fdeeedc27c3a2ddd83993c043","bf028cb4dfbaa3e027a2d8935a48d323ba5c98c68f8197f38bf341b64c8c467f","3516415029e294ca20490e6795dabfa219dea3fdcb3d1907a1526025f457e1ab","db0305dce175dd75214f12f534fd4fe9805a320530a08f080323c24fd490f5a6","3dcfe6b1a091adfef5bf2e3eec522083f4ff042ddb83416953c06fa1ce50e359","4947905cda1cd79956a972a2eb6844e364d5204396732bf3831a1176e08742be","d7da4a1744d9516461b0301a70f5ff5a4d9372e5dfbcb95cbb55c45ca316efa0","c8a667992ef6ad695e4ca8e2831786deb95875a49f495e1bdba4a38341fe9935","3cf55b882e251da3fac1c15ab2f02bf981c633733080b39ce7d9490f9d2a6066","55e3fa6a6c5dd25e7f255fb107026b517f8adfd616f2da3cb96f20f33f6c4bfe","7ca56e4c578c8688979ac94aaed8ee4815c9406db9b5970de232f9a99e550366","c8865994df8b62fcd7a50c958ecc8dc949240bdb5b8a9e6b99e633df587da94f","ce09862a18df8c6bccaf65ef790abe8ba1769e45b4bf0871f066cd15ef632cb0","f4488f48b65ff16aac6bfa4cff45cfdf192e78d19db661fd296dddf14ded72c8","97f1c46ac3e27c7d6c4e07b3c27ab60e952e1c5d21cd51f282258f2ab87a620b","85ca0c94bcc3d2fb62cfe8dfc1e649b77611118a77fde72915ebbcff71da5656","72f8b24415b650a67ef570e3a532b3203a339277af81cd44530738d521acd6d4","eef7bc20cb0460e4dbaaf4668deaeb1276ea3046e22ee901cfff3e2885c81726","81f4c04629d3c5c4e22ef2586462765c4825867eacb928673ae1afbe62bf83be","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","c0dfe246179c685294cca8ba34f60731ad4095db8c97120e85bf57fc144a7d8c","b7b3958e1ccccecf9992c09c3f70f6a37a4559d73858f36777cd2fdbf174af7b","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","b0bc363dbdb9cd5a6772f3ab176ac1adcec1f245c6c546870415ef91008f6004","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","e021038f8cf781814ad05dd9b2a306976c5f7dc30be3f4596a086a84f2388d18","1e737469ef0482a3ca2ab4b98d2e193cc011448ca623299a4c5f38d5d6c1b554","ae02db44606a04880c676f200482d79436e3e8ac48f09307fc06c498e9c9221f","cfaf29b2c2b9a7566aaba8ade813e55863ffdfb88dc30f6d5254efb829256987",{"version":"99113e4c4599427330953ea8c0090f7b540d761cb9f162d39d65a130458feef4","affectsGlobalScope":true},"c58be3e560989a877531d3ff7c9e5db41c5dd9282480ccf197abfcc708a95b8d","4d1462b70f05fd1b16d7d4f78ac195824560a1dd96407de0a1fe964f3ec0e9d4","50d22844db90a0dcd359afeb59dd1e9a384d977b4b363c880b4e65047237a29e","b065ba1b9a52bc541a638fa4b11115644001bcf82a0a0b984b7c1834451bd2b5","cb328633afdbf2115fc1b44d5cf95558ca2bf84a4b36f6ce82a998e198c47bf6","d8b4c196cedbfbdd557ab5d5c609c32d8a77a86ac1a5e7406a06413ab56a1d67","091af8276fbc70609a00e296840bd284a2fe29df282f0e8dae2de9f0a706685f","537aff717746703d2157ec563b5de4f6393ce9f69a84ae62b49e9b6c80b6e587","8b108d831999b4c6b1df9c39cdcc57c059ef19219c441e5b61bca20aabb9f411","8714e4fab09146efd7db2d969cbeb50559225f09f40a2171d7ac122572d0d269","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","720f5916937961481bce84e956040e9d6375d43870762cf47e25fc227f3eee24","2dfe19de498444b172b62f86063f4a075203f023c35b860aa6a0e9e84ea901fe","b05b48274c318121533dee4ff3d104ca6e89389e4963bfd8148389790102a638","42d7edb069c45e38a073cdddeea0aa984129bf039aba3630f6e76896caf0b0f9","ab50fc338a9e0f6571e1143738eed70c3aa2fa7247667396167eba1ca402b607","d7fcddcd30ce28e95d3492b204a4ca7f0f1e83e36f475f6d0e8bf4d43ca582a6","962705e6b720553f5590fb20cc2be706aee3823f59a89c504a31a82f8e9a9937","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","0e2e948c4ad3184567fcae2684c360d2de35db86a021652386646ea6d235f43c","61c19bbc816b7685a7f7c90928b978fd384820471bed4eb3c8a8d2f2c6d6f51b","81cba1ca948d7a158b75d9bf342955793576687c61930f9d87a331a968c820bc","ac26e1df718b688cb69170ef4a10c4615796af3042dc4a2d533b295095052142","e5435a253e31a74a5ba34cddd2983c2b6e7798be830cf9896656f3dd02d513a3","c58c3df82dbbac85d6cbbfb6ece2a425c125db04ef0ceb3f034d33f6258a595b","107c1b5064b01db7a55616d09c5b6c278cd402c6afb82fcbf95fe28b48920d22","616293f491f8f8038be5cc29418493ba333e6e98820b0e85a6bf02a333667eb8","e32df6324918608e0d404ed125e7f2429a21315830f81d15a22958e53c3bbe97","0f6dc41bab0e1f96f70f46d797644d0d32a491e34a390e3411f61ecbbef3159b","07d406e2b9185f08617234e5d1307789c202e99159f3aa1a13670df39589a2fe","6f690985c908fd2d566f694394016be3e757fb7094e1e3d8be8545813af0453f","cf34998d6c868eb5d814521523731767ceed7d00bddaf40f82f89ef861c411bf","0298fb593e400ab7d61366fad5e84399f224bee4bb1cd3dc0cfaae0e2929c3d7","6adab4f1c0c67ce871828183137449e443e17a4142529a32b22f189f3c737af6","1be04a4005e2b7f5b2688e2d4de704ae68c9d95ebacc0367b8b5730bd8c50fb1","83c2f5af37e6d351b3d2f6824c8c0fe85361e2640035bef7c9e56a5dfeedcd35","101b82e4cc6bc4230c4c764ce8f28d0841a665c38f7c1a40981b2727ebc1bf3c","9c7efe7cc60262099e1f7bb4fbc6d0014df273c9049e744ffb484e6761a7e2ad","259b9513ebf3c844555adec1e27878aaa9e057046f8163fcbb9f3b8a8495440b","0634e12db1decbf3edc562dcf8e2b7f4affe4919a21005d6bea90aa9532612aa","3c464b3eecdf5cd990dcd882a04608f4ae29b99fc24ffbff970e340ac5d4eef1","6daca098a3cf1585848a1464458143442ef8042470cb975ef7ab360afa7651b6","c7b5b995bd17d27758d13f8d200d9748d8fcb5491dd5593a4e840e5abdd4e0c3","a8d4833b2b4896c44af60626a844a086c8120807cf2e6a39d2dc80ab5d1af972","40156b6e614fe0b0aa4af9c21a0157eb84758e572ae700788ff9d436fae78c2b","f0867230a5838be63be92c9480a65f1d075eec34683212e080002760a6174c83","098d6936c459f18218ad71cde5aa25562a74461701c3551c544aecfd2c6226e7","405dc951dda9d1ba88aa742a04541a749973bafa7873f1b49c3065a6dc05e170","fc9091f36b50dfc7e47b6183bd7b4294a20878e1d826f38f44e7053d403358ed","4c846ba0a980408c10c12ed8358bcabdb8ca97aee0bb8869becaea412d6e89bb","ed995ca53b2c1b6bc1555bbee8bc12ea290b2117d89dc1c27c1333f8c3a97d35","26a8c45aaa7c9b7cb356b565f880295b5a94b14f0c348b41dd776cbeab9f06e1","a18ab8a8420f372aab81c57e9eb3b0c29a8a7760eab40328765d65a3d2dff5ac","15465dcb7504e00902baf1c1bf1195c35a20612a300fcd8482836c9319af2d1b","762539fa7b805a2ca94de8b9587db0dfe12ae440848678d028707b70f31acced","0b6a0b628776a3e3a4aeeba090438a26e7ffa15373ce658452c78c1f2254665d","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","60f9122e77e76854919d5dbcd65b6bfab89fc5950978ff57922855640c0c31be","d88dc05fd345b7a4e1816bbfd2dd087eefa9b9e36096818c2348f5b246971125","a24c550713b0c89c592210e3ed105d31b28c32ad771822aabd4fc218a7bfcde9","24c9e3562d6219c42f7cf3392a4d17c0987320ca7fe41d5bf5ea89abe62ba1df","8158988aa420c707b0b8c83478da67f1ca846f861440371489c6921f8a519ae2","ac4b57f7e49e3a7b26673d3f77e029e156f3c9f5dcfbaf163b0ac3ba64a0ca8f","1365a8626ff81189ea28b9ad9f360a5729475066cde4932dfcf1a622778c353d","d1d46acba7d3b3f9abe50982dcdddb536c184371d84746bfe5076ee95358095b",{"version":"852b81a212b6f0927e7fb32ae4a21135bd75eb62f6a088ce94d6f179b72891a7","affectsGlobalScope":true},"d37f6c318237f7165bc3f4aa94721b71e3877fef6a6e3ea0b8213443d7956782","a4380443e2595fb9a78b9dbe5f99556c54cabd40e86fba6c6e75335d6cab485e","395441b10f28820c2096e1f1b502e97abc65c848873dd6250af151787eaff088","a417043139fa0cc466e9585c8c32796dd41edab67ae07324ef1ba91e6eca7aa2","4d4ac28f9ed5846ca7fe3625f380439cc4f69ef5f859c1b4006774736ad92963",{"version":"9c5f6cf6ec61e6b7aa1f2c1820d75a6d5f23f5bd3097e324dfeab9c775290160","signature":"7c76c854c1a31f5bc464d7cec09dd2c5f7992d2f35eabc18b08df8a366e432d3"},{"version":"262ab0db62ae65ca56e57f37f2902d81ead1a31aed2948ee442073f4a6d173c0","signature":"163d657b2d62ab4e164a6c685528c7fe9acc7d9152af6560546075febb36e3ac"},{"version":"43d8e732808363090b85f5dda1452227599df4d0e42f3f91884ec3e7e573346b","signature":"5a725878f45866a0f20f3eeb54a3754c4a280a95abecfa5624a2d332a9d40b28"},{"version":"46479aa970fa6d8a6cee3f2924d084deb5581e7f65937477d903b6f848eabeed","signature":"aa418505b073feefb5e2c703f6eff907d3a7d246236c492402228515912e6068"},{"version":"486f47adb2bb9d1e8f63e639eb0777efeaa9dd48a330ef5b1e6314bdf9f18d2e","signature":"fb5218df51a5438791a1d2f1d839ce444925f42c056b8343b985ddd65d5ed5be"},{"version":"43af71b7d3862c44146397df9d593a473e3e44ff6c72eb73924d2b2c9bb5a5c5","signature":"4c36aa1c24c6b30cd65fa50e06af8826bdbbbaa22c1d16675cf3950acbba3ca7"},{"version":"7133327dca45c9a1043980231b3563ab0297d31038453ab0f7c2d5b2a4963135","signature":"a75138a77e8409b87268f2a45bf16ead066343c85b1c8bdc669c5b5f35c1da5e"},{"version":"07b4c321733720167b1601f4be5076f987f3bf38961e9cf602d0702a261d2afe","signature":"294505ae91dd8dcdc273eff344f206ba84e5542f4ada8e66832fd0594a776ebd"},{"version":"b60e9952477663cfda91c690f2dc3007c97dd518b67f7e08e46b3946322e5cdf","signature":"977995610253300070475e0f0be802cff92d663a4388eb56aa9cf8777840e12f"},{"version":"f004d170b171652b72ff914bfbd66d52f41a7668444e6ba2c57fa4c1a7163a86","signature":"1ba794d0fe8748c054353f0b0ede28fee2d85f96df7a9771c937292387bf2871"},{"version":"6387f454898b701ce8328c1c45f33622b43ddf5514ac35183557f1f3eb30d4c7","signature":"e01e70612fe75306ad12549641ebc37165fc9fc0914c94eac6389b42ae8b6a58"},{"version":"2486851c1539c3dbc6ca8c256aa35b53b8eb4a5dda200286409813a4049b772c","signature":"1b6363fcc59bf786eb10f002ee84964bd4e3d5d33083c560da921328a19d7507"},{"version":"3bb1a4f6b4287fea673f187cb299be4fed222934fd27615887c1aa73f754fe21","signature":"6291cebfb2d596dfd32ebb6103fae6c658c8dde39227f3b66b2d8adb7fb55141"},{"version":"dc4d503242844935c14184ecf534fd2ca04cf16890ef4dcbe4d4d918756bdc60","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"0aaecf1e99f8a9e75dc43563e513ad41f97410388f9482c46c391b7bd7718a83","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},{"version":"127bf414ca8ced28c9738b91a935121009d03bbc136668db980bd1ba18976b2b","affectsGlobalScope":true},"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","354abbae08f72ea982b1a767a8908f1b3efe8bbe53955c64f9c0c249c8832d5d",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},{"version":"63e2182615c513e89bb8a3e749d08f7c379e86490fcdbf6d35f2c14b3507a6e8","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":5,"outDir":"./","removeComments":false,"strictNullChecks":true,"target":2},"fileIdsList":[[117],[117,298],[117,293],[117,293,294,295,296,297],[117,294],[117,294,296],[117,297],[117,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325],[117,299,300,301,302,303],[91,117,124,226],[117,360],[91,117,124],[88,91,117,124,221,222],[117,222,223,225,227],[88,89,117,124,264],[89,105,117,124],[59,61,62,63,64,65,66,67,68,69,70,71,117],[59,60,62,63,64,65,66,67,68,69,70,71,117],[60,61,62,63,64,65,66,67,68,69,70,71,117],[59,60,61,63,64,65,66,67,68,69,70,71,117],[59,60,61,62,64,65,66,67,68,69,70,71,117],[59,60,61,62,63,65,66,67,68,69,70,71,117],[59,60,61,62,63,64,66,67,68,69,70,71,117],[59,60,61,62,63,64,65,67,68,69,70,71,117],[59,60,61,62,63,64,65,66,68,69,70,71,117],[59,60,61,62,63,64,65,66,67,69,70,71,117],[59,60,61,62,63,64,65,66,67,68,70,71,117],[59,60,61,62,63,64,65,66,67,68,69,71,117],[59,60,61,62,63,64,65,66,67,68,69,70,117],[89,117,124],[73,117],[76,117],[77,82,117],[78,88,89,96,105,116,117],[78,79,88,96,117],[80,117],[81,82,89,97,117],[82,105,113,117],[83,85,88,96,117],[84,117],[85,86,117],[87,88,117],[88,117],[88,89,90,105,116,117],[88,89,90,105,117],[91,96,105,116,117],[88,89,91,92,96,105,113,116,117],[91,93,105,113,116,117],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123],[88,94,117],[95,116,117],[85,88,96,105,117],[97,117],[98,117],[76,99,117],[100,115,117,121],[101,117],[102,117],[88,103,117],[103,104,117,119],[88,105,106,107,117],[105,107,117],[105,106,117],[108,117],[109,117],[88,111,112,117],[111,112,117],[82,96,113,117],[114,117],[96,115,117],[77,91,102,116,117],[82,117],[105,117,118],[117,119],[117,120],[77,82,88,90,99,105,116,117,119,121],[105,117,122],[105,117,122,124],[89,117,124,265],[91,117,124,224],[117,360,362],[117,361],[78,88,116,117,124],[88,91,93,105,113,116,117,122,124],[88,105,117,124],[117,215],[117,216],[117,210],[117,212,213,214,215,216,217,218],[91,93,116,117,124,211,213,214,216],[88,89,117,124],[117,124,212,215,216],[88,117,124,215,216],[117,239,240,241,242],[117,298,304,326],[117,282,283],[117,272,273,274,275,276,277,278,279,280,281],[117,272],[117,273],[117,282],[117,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203],[117,152],[117,152,165],[117,130,179],[117,180],[117,131,154],[117,154],[117,130],[117,183],[117,163],[117,130,171,179],[117,174],[117,176],[117,126],[117,146],[117,127,128,167],[117,187],[117,185],[117,131,132],[117,133],[117,144],[117,130,135],[117,189],[117,131],[117,183,192,195],[117,131,132,176],[117,255],[117,340],[117,216,233],[72,88,117,233,234],[117,233],[117,204,216,228,233,235],[91,117,228,233],[117,125,233],[117,234,235,236,246,247,249,250,251,252,253,254],[91,93,117,124,204,233,243,248],[117,238,243],[117,237,244,245],[117,233,236],[117,256],[71,117,256],[71,117,256,345],[117,347,348,349,350,351],[58,71,117,256,346,352],[89,98,117,341,342,343,344,345],[71,117,342],[117,353,355],[117,341],[117,344],[117,256,344,353],[117,205],[117,206],[117,124,204,337,338],[71,117,284],[58,89,117,124,265,266,267,268,269,270,271,284],[77,117,124,327,328],[117,258,259,260,263,285,286,287,289,290,292,330,332,333,334,335,336,339],[117,231,233,288],[105,117],[117,331],[117,204,257],[58,117,261,262],[117,291],[117,219],[117,207,208],[88,117,124,209,220,229,233],[91,96,117,124,125,204,208,209,220,228,229,230,231,232],[117,230,233],[233]],"referencedMap":[[338,1],[301,2],[294,3],[295,3],[298,4],[293,5],[297,6],[296,7],[303,2],[299,2],[305,2],[306,2],[307,2],[308,2],[309,2],[310,2],[311,2],[312,2],[313,2],[314,2],[315,2],[316,2],[317,2],[318,2],[319,2],[320,2],[321,2],[322,2],[323,2],[324,2],[325,2],[326,8],[300,2],[302,2],[304,9],[72,1],[58,1],[227,10],[364,11],[360,1],[226,12],[223,13],[228,14],[265,15],[205,1],[271,16],[60,17],[61,18],[59,19],[62,20],[63,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[224,1],[264,1],[359,1],[266,1],[268,30],[73,31],[74,31],[76,32],[77,33],[78,34],[79,35],[80,36],[81,37],[82,38],[83,39],[84,40],[85,41],[86,41],[87,42],[88,43],[89,44],[90,45],[75,1],[123,1],[91,46],[92,47],[93,48],[124,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[107,62],[106,63],[108,64],[109,65],[110,1],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[118,73],[119,74],[120,75],[121,76],[122,77],[283,1],[231,43],[328,78],[222,1],[221,1],[267,79],[225,80],[262,1],[363,81],[362,82],[361,1],[257,83],[261,1],[269,1],[125,84],[291,85],[216,86],[217,87],[211,88],[212,1],[219,89],[215,90],[214,91],[213,92],[218,93],[342,1],[331,1],[329,1],[238,1],[243,94],[242,1],[241,1],[240,1],[239,1],[327,95],[337,1],[284,96],[282,97],[272,1],[273,1],[279,98],[276,1],[275,99],[274,1],[281,100],[280,1],[278,98],[277,99],[270,1],[204,101],[153,102],[166,103],[128,1],[180,104],[182,105],[181,105],[155,106],[154,1],[156,107],[183,108],[187,109],[185,109],[164,110],[163,1],[172,108],[131,108],[159,1],[200,111],[175,112],[177,113],[195,108],[130,114],[147,115],[162,1],[197,1],[168,116],[184,109],[188,117],[186,118],[201,1],[170,1],[144,114],[136,1],[135,119],[160,108],[161,108],[134,120],[167,1],[129,1],[146,1],[174,1],[202,121],[141,108],[142,122],[189,105],[191,123],[190,123],[126,1],[145,1],[152,1],[143,108],[173,1],[140,1],[199,1],[139,1],[137,124],[138,1],[176,1],[169,1],[196,125],[150,119],[148,119],[149,119],[165,1],[132,1],[192,109],[194,117],[193,118],[179,1],[178,126],[171,1],[158,1],[198,1],[203,1],[127,1],[157,1],[151,1],[133,119],[12,1],[13,1],[17,1],[16,1],[3,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,1],[4,1],[5,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[38,1],[39,1],[40,1],[8,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[9,1],[51,1],[48,1],[49,1],[50,1],[52,1],[10,1],[53,1],[54,1],[55,1],[56,1],[2,1],[1,1],[11,1],[57,1],[15,1],[14,1],[210,1],[343,1],[256,127],[341,128],[254,129],[235,130],[234,131],[251,132],[252,1],[236,133],[247,1],[250,134],[255,135],[248,1],[249,136],[253,1],[244,137],[246,138],[237,139],[245,131],[351,140],[347,141],[349,141],[348,142],[350,141],[352,143],[353,144],[346,145],[354,1],[345,146],[356,147],[344,148],[357,1],[358,149],[355,150],[206,151],[207,152],[339,153],[336,154],[285,155],[330,156],[340,157],[288,1],[289,158],[333,159],[287,30],[332,160],[334,1],[258,161],[286,1],[290,1],[260,1],[259,1],[335,1],[263,162],[292,163],[229,1],[208,1],[220,164],[209,165],[230,166],[233,167],[232,168]],"exportedModulesMap":[[338,1],[301,2],[294,3],[295,3],[298,4],[293,5],[297,6],[296,7],[303,2],[299,2],[305,2],[306,2],[307,2],[308,2],[309,2],[310,2],[311,2],[312,2],[313,2],[314,2],[315,2],[316,2],[317,2],[318,2],[319,2],[320,2],[321,2],[322,2],[323,2],[324,2],[325,2],[326,8],[300,2],[302,2],[304,9],[72,1],[58,1],[227,10],[364,11],[360,1],[226,12],[223,13],[228,14],[265,15],[205,1],[271,16],[60,17],[61,18],[59,19],[62,20],[63,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[224,1],[264,1],[359,1],[266,1],[268,30],[73,31],[74,31],[76,32],[77,33],[78,34],[79,35],[80,36],[81,37],[82,38],[83,39],[84,40],[85,41],[86,41],[87,42],[88,43],[89,44],[90,45],[75,1],[123,1],[91,46],[92,47],[93,48],[124,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[107,62],[106,63],[108,64],[109,65],[110,1],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[118,73],[119,74],[120,75],[121,76],[122,77],[283,1],[231,43],[328,78],[222,1],[221,1],[267,79],[225,80],[262,1],[363,81],[362,82],[361,1],[257,83],[261,1],[269,1],[125,84],[291,85],[216,86],[217,87],[211,88],[212,1],[219,89],[215,90],[214,91],[213,92],[218,93],[342,1],[331,1],[329,1],[238,1],[243,94],[242,1],[241,1],[240,1],[239,1],[327,95],[337,1],[284,96],[282,97],[272,1],[273,1],[279,98],[276,1],[275,99],[274,1],[281,100],[280,1],[278,98],[277,99],[270,1],[204,101],[153,102],[166,103],[128,1],[180,104],[182,105],[181,105],[155,106],[154,1],[156,107],[183,108],[187,109],[185,109],[164,110],[163,1],[172,108],[131,108],[159,1],[200,111],[175,112],[177,113],[195,108],[130,114],[147,115],[162,1],[197,1],[168,116],[184,109],[188,117],[186,118],[201,1],[170,1],[144,114],[136,1],[135,119],[160,108],[161,108],[134,120],[167,1],[129,1],[146,1],[174,1],[202,121],[141,108],[142,122],[189,105],[191,123],[190,123],[126,1],[145,1],[152,1],[143,108],[173,1],[140,1],[199,1],[139,1],[137,124],[138,1],[176,1],[169,1],[196,125],[150,119],[148,119],[149,119],[165,1],[132,1],[192,109],[194,117],[193,118],[179,1],[178,126],[171,1],[158,1],[198,1],[203,1],[127,1],[157,1],[151,1],[133,119],[12,1],[13,1],[17,1],[16,1],[3,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,1],[4,1],[5,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[38,1],[39,1],[40,1],[8,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[9,1],[51,1],[48,1],[49,1],[50,1],[52,1],[10,1],[53,1],[54,1],[55,1],[56,1],[2,1],[1,1],[11,1],[57,1],[15,1],[14,1],[210,1],[343,1],[256,127],[341,128],[254,129],[235,130],[234,131],[251,132],[252,1],[236,133],[247,1],[250,134],[255,135],[248,1],[249,136],[253,1],[244,137],[246,138],[237,139],[245,131],[353,169],[356,169],[344,169],[355,169],[206,151],[207,152],[339,153],[336,154],[285,155],[330,156],[340,157],[288,1],[289,158],[333,159],[287,30],[332,160],[334,1],[258,161],[286,1],[290,1],[260,1],[259,1],[335,1],[263,162],[292,163],[229,1],[208,1],[220,164],[209,165],[230,166],[233,167],[232,168]],"semanticDiagnosticsPerFile":[338,301,294,295,298,293,297,296,303,299,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,300,302,304,72,58,227,364,360,226,223,228,265,205,271,60,61,59,62,63,64,65,66,67,68,69,70,71,224,264,359,266,268,73,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,75,123,91,92,93,124,94,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,283,231,328,222,221,267,225,262,363,362,361,257,261,269,125,291,216,217,211,212,219,215,214,213,218,342,331,329,238,243,242,241,240,239,327,337,284,282,272,273,279,276,275,274,281,280,278,277,270,204,153,166,128,180,182,181,155,154,156,183,187,185,164,163,172,131,159,200,175,177,195,130,147,162,197,168,184,188,186,201,170,144,136,135,160,161,134,167,129,146,174,202,141,142,189,191,190,126,145,152,143,173,140,199,139,137,138,176,169,196,150,148,149,165,132,192,194,193,179,178,171,158,198,203,127,157,151,133,12,13,17,16,3,18,19,20,21,22,23,24,25,4,5,29,26,27,28,30,31,32,6,33,34,35,36,7,37,38,39,40,8,41,46,47,42,43,44,45,9,51,48,49,50,52,10,53,54,55,56,2,1,11,57,15,14,210,343,256,341,254,235,234,251,252,236,247,250,255,248,249,253,244,246,237,245,351,347,349,348,350,352,353,346,354,345,356,344,357,358,355,206,207,339,336,285,330,340,288,289,333,287,332,334,258,286,290,260,259,335,263,292,229,208,220,209,230,233,232]},"version":"4.7.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es6.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/bluebird/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/type-fest/source/primitive.d.ts","../../../node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/type-fest/source/basic.d.ts","../../../node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/type-fest/source/empty-object.d.ts","../../../node_modules/type-fest/source/internal.d.ts","../../../node_modules/type-fest/source/except.d.ts","../../../node_modules/type-fest/source/simplify.d.ts","../../../node_modules/type-fest/source/writable.d.ts","../../../node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/type-fest/source/enforce-optional.d.ts","../../../node_modules/type-fest/source/merge.d.ts","../../../node_modules/type-fest/source/conditional-simplify.d.ts","../../../node_modules/type-fest/source/merge-deep.d.ts","../../../node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/type-fest/source/promisable.d.ts","../../../node_modules/type-fest/source/opaque.d.ts","../../../node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/type-fest/source/set-required.d.ts","../../../node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/type-fest/source/value-of.d.ts","../../../node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/type-fest/source/conditional-pick-deep.d.ts","../../../node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/type-fest/source/stringified.d.ts","../../../node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/type-fest/source/entry.d.ts","../../../node_modules/type-fest/source/entries.d.ts","../../../node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/type-fest/source/numeric.d.ts","../../../node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/type-fest/source/schema.d.ts","../../../node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/type-fest/source/exact.d.ts","../../../node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/type-fest/source/spread.d.ts","../../../node_modules/type-fest/source/tuple-to-union.d.ts","../../../node_modules/type-fest/source/split.d.ts","../../../node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/includes.d.ts","../../../node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/type-fest/source/join.d.ts","../../../node_modules/type-fest/source/trim.d.ts","../../../node_modules/type-fest/source/replace.d.ts","../../../node_modules/type-fest/source/get.d.ts","../../../node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/type-fest/source/package-json.d.ts","../../../node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/type-fest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../schema/build/appium-config-schema.d.ts","../../schema/build/index.d.ts","../../types/build/appium-config.d.ts","../../types/build/config.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../types/build/action.d.ts","../../types/build/driver.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../types/build/plugin.d.ts","../../../node_modules/typescript/lib/typescript.d.ts","../../../node_modules/@wdio/types/build/compiler.d.ts","../../../node_modules/@wdio/types/build/frameworks.d.ts","../../../node_modules/@wdio/types/build/services.d.ts","../../../node_modules/@wdio/types/build/reporters.d.ts","../../../node_modules/@wdio/types/build/options.d.ts","../../../node_modules/@wdio/types/build/capabilities.d.ts","../../../node_modules/@wdio/types/build/clients.d.ts","../../../node_modules/@wdio/types/build/workers.d.ts","../../../node_modules/@wdio/types/build/index.d.ts","../../types/build/constraints.d.ts","../../types/build/capabilities.d.ts","../../types/build/index.d.ts","../../base-driver/build/lib/basedriver/device-settings.d.ts","../../base-driver/build/lib/basedriver/core.d.ts","../../base-driver/build/lib/express/server.d.ts","../../base-driver/build/lib/protocol/protocol.d.ts","../../../node_modules/es6-error/typings/index.d.ts","../../../node_modules/http-status-codes/build/cjs/utils-functions.d.ts","../../../node_modules/http-status-codes/build/cjs/status-codes.d.ts","../../../node_modules/http-status-codes/build/cjs/reason-phrases.d.ts","../../../node_modules/http-status-codes/build/cjs/legacy.d.ts","../../../node_modules/http-status-codes/build/cjs/index.d.ts","../../base-driver/build/lib/protocol/errors.d.ts","../../base-driver/build/lib/protocol/routes.d.ts","../../base-driver/build/lib/protocol/index.d.ts","../../base-driver/build/lib/express/static.d.ts","../../base-driver/build/lib/jsonwp-proxy/protocol-converter.d.ts","../../base-driver/build/lib/jsonwp-proxy/proxy.d.ts","../../base-driver/build/lib/express/websocket.d.ts","../../base-driver/build/lib/basedriver/commands/timeout.d.ts","../../base-driver/build/lib/basedriver/commands/event.d.ts","../../base-driver/build/lib/basedriver/commands/find.d.ts","../../base-driver/build/lib/basedriver/commands/log.d.ts","../../base-driver/build/lib/basedriver/commands/settings.d.ts","../../base-driver/build/lib/basedriver/commands/session.d.ts","../../base-driver/build/lib/basedriver/commands/execute.d.ts","../../base-driver/build/lib/basedriver/driver.d.ts","../../base-driver/build/lib/constants.d.ts","../../base-driver/build/lib/jsonwp-status/status.d.ts","../../base-driver/build/lib/basedriver/capabilities.d.ts","../../base-driver/build/lib/index.d.ts","../../appium/driver.d.ts","../../../node_modules/@types/teen_process/index.d.ts","../../support/build/lib/npm.d.ts","../../support/build/lib/tempdir.d.ts","../../support/build/lib/system.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/shell-quote/index.d.ts","../../support/build/lib/util.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/mv/index.d.ts","../../../node_modules/@types/rimraf/index.d.ts","../../../node_modules/@types/ncp/index.d.ts","../../../node_modules/@types/which/index.d.ts","../../../node_modules/sanitize-filename/index.d.ts","../../../node_modules/@types/klaw/index.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/basic.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/except.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/mutable.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/merge.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/read-pkg/node_modules/type-fest/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/read-pkg/index.d.ts","../../support/build/lib/fs.d.ts","../../support/build/lib/plist.d.ts","../../support/build/lib/mkdirp.d.ts","../../support/build/lib/log-internal.d.ts","../../support/build/lib/logging.d.ts","../../support/build/lib/process.d.ts","../../../node_modules/@types/yauzl/index.d.ts","../../support/build/lib/zip.d.ts","../../../node_modules/@jimp/core/types/jimp.d.ts","../../../node_modules/@jimp/core/types/etc.d.ts","../../../node_modules/@jimp/core/types/functions.d.ts","../../../node_modules/@jimp/core/types/utils.d.ts","../../../node_modules/@jimp/core/types/plugins.d.ts","../../../node_modules/@jimp/core/types/index.d.ts","../../../node_modules/@jimp/jpeg/index.d.ts","../../../node_modules/@jimp/png/index.d.ts","../../../node_modules/@jimp/bmp/index.d.ts","../../../node_modules/@jimp/tiff/index.d.ts","../../../node_modules/@jimp/gif/index.d.ts","../../../node_modules/@jimp/types/index.d.ts","../../../node_modules/@jimp/plugin-blit/index.d.ts","../../../node_modules/@jimp/plugin-blur/index.d.ts","../../../node_modules/@jimp/plugin-circle/index.d.ts","../../../node_modules/@jimp/plugin-color/index.d.ts","../../../node_modules/@jimp/plugin-contain/index.d.ts","../../../node_modules/@jimp/plugin-cover/index.d.ts","../../../node_modules/@jimp/plugin-crop/index.d.ts","../../../node_modules/@jimp/plugin-displace/index.d.ts","../../../node_modules/@jimp/plugin-dither/index.d.ts","../../../node_modules/@jimp/plugin-fisheye/index.d.ts","../../../node_modules/@jimp/plugin-flip/index.d.ts","../../../node_modules/@jimp/plugin-gaussian/index.d.ts","../../../node_modules/@jimp/plugin-invert/index.d.ts","../../../node_modules/@jimp/plugin-mask/index.d.ts","../../../node_modules/@jimp/plugin-normalize/index.d.ts","../../../node_modules/@jimp/plugin-print/index.d.ts","../../../node_modules/@jimp/plugin-resize/index.d.ts","../../../node_modules/@jimp/plugin-rotate/index.d.ts","../../../node_modules/@jimp/plugin-scale/index.d.ts","../../../node_modules/@jimp/plugin-shadow/index.d.ts","../../../node_modules/@jimp/plugin-threshold/index.d.ts","../../../node_modules/@jimp/plugins/index.d.ts","../../../node_modules/jimp/types/ts3.1/index.d.ts","../../../node_modules/@types/pngjs/index.d.ts","../../../node_modules/buffer/index.d.ts","../../support/build/lib/image-util.d.ts","../../../node_modules/axios/index.d.ts","../../support/build/lib/net.d.ts","../../support/build/lib/mjpeg.d.ts","../../support/build/lib/node.d.ts","../../support/build/lib/timing.d.ts","../../support/build/lib/env.d.ts","../../../node_modules/log-symbols/index.d.ts","../../../node_modules/@colors/colors/index.d.ts","../../support/build/lib/console.d.ts","../../support/build/lib/index.d.ts","../../appium/support.d.ts","../../../node_modules/@xmldom/xmldom/index.d.ts","../../../node_modules/xpath/xpath.d.ts","../lib/logger.js","../lib/fake-element.js","../lib/fake-app.js","../lib/commands/contexts.js","../lib/commands/find.js","../lib/commands/element.js","../lib/commands/general.js","../lib/commands/alert.js","../lib/commands/index.js","../lib/driver.js","../lib/fake-driver-schema.js","../lib/server.js","../lib/index.js","../lib/scripts/fake-error.js","../lib/scripts/fake-success.js","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@types/chai-as-promised/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"72978f1a73910441c6d0f39bd3f9f77d430764df6b51c47c93a0e37e84ab5ef6","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","a5f6d22760eef0178bebc5b5b5664a403109615a9c49da879ccd84438bd55223","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1dbccafbca82a60fdfb0fb3c28e2493ff76d06647a512dcf72a086022e8b6f91","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","f1f0ab91eacf5fe45d4b9c0fc67b7510f490bd292505bc4baeba3bb43d17ec68",{"version":"2d32bbdbd53e80a4d05607716e7861e3fca9e846fd8a970dcc4890c439d54aa4","affectsGlobalScope":true},"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","fcaf4736b812dae6fc9de8f6b44c2d1e5faed66c1c58e022db39a292980b167e","326da4aebf555d54b995854ff8f3432f63ba067be354fa16c6e1f50daa0667de","cb26f195564ee703a68161f88e57e33e6e76e630b999e582d0a4328435d7f84e","d274da8ba27079a593a7de4fbe82f3aab664724bf4f1b080e977f6e745e690e1","4502caaa3fff6c9766bfc145b1b586ef26d53e5f104271db046122b8eef57fd1","382f061a24f63ef8bfb1f7a748e1a2568ea62fb91ed1328901a6cf5ad129d61c","e5da2b7a4f643f017ffb444c2218217dbf76f096632af01a1d6c68d3fb2b14fb","ce01848c6682d9e7653bfa653b28ca9294beeabb85cf99bcc6168f10c6e3f436","ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","755bb3d307b8892706fc8b2bdbd4129f85b8fa40d54704eb4fa4b08fa88fbf52","f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","865f3db83300a1303349cc49ed80943775a858e0596e7e5a052cc65ac03b10bb","a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","a24c4fe21d5b13a9ecbbb39b5e22f5d4c6fe5feebb074865ba2de273381a73ae","48a9a38d31f33ba5a969cc7028907691e01c26d5341c558b051d27ef302602e9","2169cdcb2e85ec18274590018fc1a12b8fe02708813692d9a1531695c17d3198","9392e1e62ee32e9b9334fa9bf93c27be2d7227ded895a984532cb155dc776f95","da2aa652d2bf03cc042e2ff31e4194f4f18f042b8344dcb2568f761daaf7869f","03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","de2b56099545de410af72a7e430ead88894e43e4f959de29663d4d0ba464944d","eec9e706eef30b4f1c6ff674738d3fca572829b7fa1715f37742863dabb3d2f2","b0cefbc19466a38f5883079f0845babcb856637f7d4f3f594b746d39b74390f7","1e86d750ab0d4fbde7213aa28174f8838e38fe755bc75d8ab05795c58164082c","2581e202c26cdcb937bce677f26e5c150c6e63c73f3745fa050a026835e6efc3","18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","1e2c2a147cc887a3903d243aecb9be8d00f8701dd44a9668cc6f74a3559c8c1d","4d397c276bd0d41f8a5a0d67a674d5cf3f79b79b0f4df13a0fbefdf0e88f0519","aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","bfe7df6fcf991120bbaceee4349879cb61cc1818ca7861fbeb325d9fbc72010d","0b9bcc98884f81d8adda2c5d2ebb0361c7a53af6713e72138c4457e6016ff708","1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","746cb07f9dd17c219aaa9acbb1547bae40ad802cf98ee503a82f9be04e7d1da5","fcc438e50c00c9e865d9c1777627d3fdc1e13a4078c996fb4b04e67e462648c8","d0f07efa072420758194c452edb3f04f8eabc01cd4b3884a23e7274d4e2a7b69","a90339d50728b60f761127fe75192e632aa07055712a377acd8d20bb5d61e80c","37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","fa18c6fe108031717db1ada404c14dc75b8b38c54daa3bb3af4c4999861ca653","60f476f1c4de44a08d6a566c6f1e1b7de6cbe53d9153c9cc2284ca0022e21fba","9e4891d8c1d8de97893a062b68c543b3a77cfab40e1a4cf70db0be3c79a03b32","4f0781ec008bb24dc1923285d25d648ea48fb5a3c36d0786e2ee82eb00eff426","dcce1f3a3f016215125083f1b375167442b83a7bb205d60208f88e5038da7171","6d5ca4a24664e2abda6ca5268b35c98f3b51c24bfe2ea78e69474c33a00c70cf","e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","21fa5e89751e3004538ade8a86e892fdf107f183aa8ae07b205d10bd80d33156","4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","587ce54f0e8ad1eea0c9174d6f274fb859648cebb2b8535c7adb3975aee74c21","9550769b302bcd2675b6ebbc1bcc3babd47f5a4fdae6324eb5a4d3bdeddd4d19","5a4d0b09de173c391d5d50064fc20166becc194248b1ce738e8a56af5196d28c","f9c8e417b2c65e81f1af4837e8a525d44541c673906c891e10210b89aa273bc2","32568bfb6a4cc613a280821cb6d040cdb9f59002b94649b572ff56367d95acb0","3614116d0f47b274b9b771d45e06ef9bea3287295db0bafaecbaa592850328d0","92e35e09c72adfd70c14910c36e8edd659385822bb306d1a7ecf7cc45d87c2b7","a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","789110b95e963c99ace4e9ad8b60901201ddc4cab59f32bde5458c1359a4d887","92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","074343ca788a38f572d8bdb0985956c0ad1a4d8ca8b6ef8c1a19a0e11cf09db0","d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","fc3ee92b81a6188a545cba5c15dc7c5d38ee0aaca3d8adc29af419d9bdb1fdb9","7d05ac926705ce932b6e41e5e273333b380d08b6a036ad0c8b01139586b34548","0bc13111c65ef1373c84c86c039416127579469828f0e01e03ffe00fb8fd6785","c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","f3dedc92d06e0fdc43e76c2e1acca21759dd63d2572c9ec78a5188249965d944","25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","c0722c1915db9c489ddbece99e3cac757b961e945974c60574ca38c488f88c49","7ad042f7d744ccfbcf6398216203c7712f01359d6fd4348c8bd8df8164e98096","0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","008ed9b6d1fdb68f9d98e6fd238d99be77e738892c3a1c6cf8b7616de4f8b114","08f95bee0619072d2c49854434af3e53d94e7e762fc082b49cea59e77db06905","5eafc2fbbb2d978fca6a14812632b117ea539964e773301327d1a3c194ebc572","f734063a854b2402e89de037fd7289e31685248c0d8ca0f80ff4fe657364dd61","72990795adebe4cbaa941875a2c984e9d10272fddab506703e09cc48193cc5fa","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","7d9161ec720909c6abf2957b3f62d1ab27f2623e380a39d147715d43d8abd414","6101949945c252c5706da566e06b7be2a4cc48e73f25165add3c081d0dd37578","a983207132524290a38f8c5e3e1799c4b3372c66835ee1a9c207f42fc5220d88","8f55068da250ce5c00ce636f4c33b7e50fb15a75a84bf6092595e419e678dc2a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"101eb8b4e972b9326f39591e2e40e967e3331e8d960f81248daeb266ea1affec","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","b7e64651c85c710d82161ad78be0ff7c95e9ecc82b23ea21244b62753d549ea3","9505d603322c220b8b7d66d0a0ca163d895a1b679ea623d46a56b67c00f6219d","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","6f36e68c339aea454afcdd2387ed71411d727a612f1412d84530e05f74d3e963","3fa86a2c33804b6a4221dda3714a6a2f8a2f26983ea6c63d2bf6f2839fbb778a","a47b38aac630271c68667d717c865e4c98200bd90b4a8859d3f07460da09adec","46ab84953b0abb33ae9a42af24c97883e68f1080f084ffb9436181b3f147776c","d97f055b516d74e0c0bace388e6bbe3bc386a9599a1d1862ba8a669e892a1d2a","2e97e912e078f6cea483fb096d9c49eb2b7285f9e4748e2f7723c7b55817b90b","5f9e9eee4568d2fbef66f0118381003c07c43193dd18bc86f3141726a23a386e","de723bc82cf4066cad42425e303fade98c8840f41a6ed51ac20da0ce4fff09e2","db412fc192357cd4bff3e93e79030ea404b7d2cf8c089d2fe9d53ba010f1a916","7bc97e823dd70d66e9640998837ca0aad3480b415035dbd2074e3a450166e221",{"version":"1153175167a3c48f04cea09400723d11107af1c13e2f0fc858347ef085417519","affectsGlobalScope":true},"e23921a9a56b94e03c638fe7709cff6e24ff5dbb673500f39549555ca8481e6d","537519754d03076deac4b04781d600e1dff67adc72c00189d411e9eb917d50d5","5a4c22b5fbebb9c0c8f34d8c94aaf3c3ea12941ae09f3794f1983b9aca568513","d0c3f69853b08d50e442522622c52e1c80fd1150eb22b96e78290f0faf8ab346","b6b74b20ab6c5893c976815b7f50e0be40d87294df6e45752c43a8c092d1023e","4cbe65178b3e292e082c6baafff84e98552b67b43321c2fe42ed47cbf342e6b0","1f1a1d0609e7514b711768295528b3b9b0fd67d7f2ba3f1730d2f135e6f58069","87dc4aa712e5fc14d93d1a91919b0105aac5dc6c04259fcb28a5d57a1347fba3","1bc146fb8f5cf8f67d0bb651c2237196ab42d7bae6eff9c079f254c3a4b2dc9f","fcb175cbc3a5f91152314cabe52625d495da9a3c4e9b4578dfcb1018b10b5bd1","66b458867662fd10111e8241abfd372570816317b456b712979826b0d784df37","de743c53fbbaa917b418cff186394602074f211fdeeedc27c3a2ddd83993c043","bf028cb4dfbaa3e027a2d8935a48d323ba5c98c68f8197f38bf341b64c8c467f","3516415029e294ca20490e6795dabfa219dea3fdcb3d1907a1526025f457e1ab","db0305dce175dd75214f12f534fd4fe9805a320530a08f080323c24fd490f5a6","3dcfe6b1a091adfef5bf2e3eec522083f4ff042ddb83416953c06fa1ce50e359","4947905cda1cd79956a972a2eb6844e364d5204396732bf3831a1176e08742be","d7da4a1744d9516461b0301a70f5ff5a4d9372e5dfbcb95cbb55c45ca316efa0","c8a667992ef6ad695e4ca8e2831786deb95875a49f495e1bdba4a38341fe9935","3cf55b882e251da3fac1c15ab2f02bf981c633733080b39ce7d9490f9d2a6066","32998d5cda7a051b767de6fb34e1585adab73428172e56058cd8ac2d26314330","f0d7fd669e7c3c95a74f570f07b0d791dd9ccdc5b87e1dbb235ae9c9b4487bb3","b23c97e28b07bfdc4bab2df23268bfd4364130b6b9389436c2f4c296302d48b0","30248bd938cf5c970fa05276fa16f75ed645b967e49fb626a40a3198ff427cac","c52b3e2c50afb37edf529e43d28efaec0044af89ee885ddedd937d353942200b","ff495ee22655f5b8d28d88bdb11ed9999d04a963cc3b71d9bf44feb15c0d7d7a","aaf805cf591619d54d3a9cb2b964405f3d522d545c0023cb0256ade8e4548300","cc00d006bce557bef702bfe42c165d1eb0090b21447723910abdfdb1c9cda0c9","7ca56e4c578c8688979ac94aaed8ee4815c9406db9b5970de232f9a99e550366","c8865994df8b62fcd7a50c958ecc8dc949240bdb5b8a9e6b99e633df587da94f","7c96c813eaffe7f26db558bb51ef6552c788e4800314688fdd470e5f7cec6086","8bcb2bfa54c60a8f6886e5a03b892ebadd2d041fb53380a862f7a03b6098ac94","97f1c46ac3e27c7d6c4e07b3c27ab60e952e1c5d21cd51f282258f2ab87a620b","85ca0c94bcc3d2fb62cfe8dfc1e649b77611118a77fde72915ebbcff71da5656","72f8b24415b650a67ef570e3a532b3203a339277af81cd44530738d521acd6d4","eef7bc20cb0460e4dbaaf4668deaeb1276ea3046e22ee901cfff3e2885c81726","81f4c04629d3c5c4e22ef2586462765c4825867eacb928673ae1afbe62bf83be","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","c0dfe246179c685294cca8ba34f60731ad4095db8c97120e85bf57fc144a7d8c","b7b3958e1ccccecf9992c09c3f70f6a37a4559d73858f36777cd2fdbf174af7b","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","a55ca8b5f8c6a8535bb26fac1e10132a5338234ca3d5b9ed739fbc8ef41c8075","b0bc363dbdb9cd5a6772f3ab176ac1adcec1f245c6c546870415ef91008f6004","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","e021038f8cf781814ad05dd9b2a306976c5f7dc30be3f4596a086a84f2388d18","1e737469ef0482a3ca2ab4b98d2e193cc011448ca623299a4c5f38d5d6c1b554","ae02db44606a04880c676f200482d79436e3e8ac48f09307fc06c498e9c9221f","cfaf29b2c2b9a7566aaba8ade813e55863ffdfb88dc30f6d5254efb829256987",{"version":"99113e4c4599427330953ea8c0090f7b540d761cb9f162d39d65a130458feef4","affectsGlobalScope":true},"c58be3e560989a877531d3ff7c9e5db41c5dd9282480ccf197abfcc708a95b8d","4d1462b70f05fd1b16d7d4f78ac195824560a1dd96407de0a1fe964f3ec0e9d4","50d22844db90a0dcd359afeb59dd1e9a384d977b4b363c880b4e65047237a29e","b065ba1b9a52bc541a638fa4b11115644001bcf82a0a0b984b7c1834451bd2b5","cb328633afdbf2115fc1b44d5cf95558ca2bf84a4b36f6ce82a998e198c47bf6","d8b4c196cedbfbdd557ab5d5c609c32d8a77a86ac1a5e7406a06413ab56a1d67","091af8276fbc70609a00e296840bd284a2fe29df282f0e8dae2de9f0a706685f","537aff717746703d2157ec563b5de4f6393ce9f69a84ae62b49e9b6c80b6e587","8b108d831999b4c6b1df9c39cdcc57c059ef19219c441e5b61bca20aabb9f411","8714e4fab09146efd7db2d969cbeb50559225f09f40a2171d7ac122572d0d269","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","720f5916937961481bce84e956040e9d6375d43870762cf47e25fc227f3eee24","1f5d54d716e2983942fa3e96c10b9a134975cacfd4d0a6d60b64569b0badc937","b05b48274c318121533dee4ff3d104ca6e89389e4963bfd8148389790102a638","42d7edb069c45e38a073cdddeea0aa984129bf039aba3630f6e76896caf0b0f9","ab50fc338a9e0f6571e1143738eed70c3aa2fa7247667396167eba1ca402b607","d7fcddcd30ce28e95d3492b204a4ca7f0f1e83e36f475f6d0e8bf4d43ca582a6","962705e6b720553f5590fb20cc2be706aee3823f59a89c504a31a82f8e9a9937","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","0e2e948c4ad3184567fcae2684c360d2de35db86a021652386646ea6d235f43c","61c19bbc816b7685a7f7c90928b978fd384820471bed4eb3c8a8d2f2c6d6f51b","81cba1ca948d7a158b75d9bf342955793576687c61930f9d87a331a968c820bc","ac26e1df718b688cb69170ef4a10c4615796af3042dc4a2d533b295095052142","e5435a253e31a74a5ba34cddd2983c2b6e7798be830cf9896656f3dd02d513a3","c58c3df82dbbac85d6cbbfb6ece2a425c125db04ef0ceb3f034d33f6258a595b","107c1b5064b01db7a55616d09c5b6c278cd402c6afb82fcbf95fe28b48920d22","616293f491f8f8038be5cc29418493ba333e6e98820b0e85a6bf02a333667eb8","e32df6324918608e0d404ed125e7f2429a21315830f81d15a22958e53c3bbe97","0f6dc41bab0e1f96f70f46d797644d0d32a491e34a390e3411f61ecbbef3159b","07d406e2b9185f08617234e5d1307789c202e99159f3aa1a13670df39589a2fe","6f690985c908fd2d566f694394016be3e757fb7094e1e3d8be8545813af0453f","cf34998d6c868eb5d814521523731767ceed7d00bddaf40f82f89ef861c411bf","0298fb593e400ab7d61366fad5e84399f224bee4bb1cd3dc0cfaae0e2929c3d7","6adab4f1c0c67ce871828183137449e443e17a4142529a32b22f189f3c737af6","1be04a4005e2b7f5b2688e2d4de704ae68c9d95ebacc0367b8b5730bd8c50fb1","83c2f5af37e6d351b3d2f6824c8c0fe85361e2640035bef7c9e56a5dfeedcd35","101b82e4cc6bc4230c4c764ce8f28d0841a665c38f7c1a40981b2727ebc1bf3c","9c7efe7cc60262099e1f7bb4fbc6d0014df273c9049e744ffb484e6761a7e2ad","259b9513ebf3c844555adec1e27878aaa9e057046f8163fcbb9f3b8a8495440b","0634e12db1decbf3edc562dcf8e2b7f4affe4919a21005d6bea90aa9532612aa","3c464b3eecdf5cd990dcd882a04608f4ae29b99fc24ffbff970e340ac5d4eef1","6daca098a3cf1585848a1464458143442ef8042470cb975ef7ab360afa7651b6","c7b5b995bd17d27758d13f8d200d9748d8fcb5491dd5593a4e840e5abdd4e0c3","a8d4833b2b4896c44af60626a844a086c8120807cf2e6a39d2dc80ab5d1af972","40156b6e614fe0b0aa4af9c21a0157eb84758e572ae700788ff9d436fae78c2b","f0867230a5838be63be92c9480a65f1d075eec34683212e080002760a6174c83","098d6936c459f18218ad71cde5aa25562a74461701c3551c544aecfd2c6226e7","405dc951dda9d1ba88aa742a04541a749973bafa7873f1b49c3065a6dc05e170","fc9091f36b50dfc7e47b6183bd7b4294a20878e1d826f38f44e7053d403358ed","4c846ba0a980408c10c12ed8358bcabdb8ca97aee0bb8869becaea412d6e89bb","ed995ca53b2c1b6bc1555bbee8bc12ea290b2117d89dc1c27c1333f8c3a97d35","26a8c45aaa7c9b7cb356b565f880295b5a94b14f0c348b41dd776cbeab9f06e1","a18ab8a8420f372aab81c57e9eb3b0c29a8a7760eab40328765d65a3d2dff5ac","15465dcb7504e00902baf1c1bf1195c35a20612a300fcd8482836c9319af2d1b","762539fa7b805a2ca94de8b9587db0dfe12ae440848678d028707b70f31acced","0b6a0b628776a3e3a4aeeba090438a26e7ffa15373ce658452c78c1f2254665d","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","60f9122e77e76854919d5dbcd65b6bfab89fc5950978ff57922855640c0c31be","d88dc05fd345b7a4e1816bbfd2dd087eefa9b9e36096818c2348f5b246971125","a24c550713b0c89c592210e3ed105d31b28c32ad771822aabd4fc218a7bfcde9","24c9e3562d6219c42f7cf3392a4d17c0987320ca7fe41d5bf5ea89abe62ba1df","8158988aa420c707b0b8c83478da67f1ca846f861440371489c6921f8a519ae2","ac4b57f7e49e3a7b26673d3f77e029e156f3c9f5dcfbaf163b0ac3ba64a0ca8f","c0ab662b2062f0153ca133720fc005ab7c1540f4f43f5010fc188a37c4d6ad4b","d1d46acba7d3b3f9abe50982dcdddb536c184371d84746bfe5076ee95358095b",{"version":"852b81a212b6f0927e7fb32ae4a21135bd75eb62f6a088ce94d6f179b72891a7","affectsGlobalScope":true},"21c26e8b205b22ce0fc6b4a71dff51461339c88699b3c9bd1ba6a24cb1781820","a4380443e2595fb9a78b9dbe5f99556c54cabd40e86fba6c6e75335d6cab485e","395441b10f28820c2096e1f1b502e97abc65c848873dd6250af151787eaff088","a417043139fa0cc466e9585c8c32796dd41edab67ae07324ef1ba91e6eca7aa2","4d4ac28f9ed5846ca7fe3625f380439cc4f69ef5f859c1b4006774736ad92963",{"version":"9c5f6cf6ec61e6b7aa1f2c1820d75a6d5f23f5bd3097e324dfeab9c775290160","signature":"7c76c854c1a31f5bc464d7cec09dd2c5f7992d2f35eabc18b08df8a366e432d3"},{"version":"262ab0db62ae65ca56e57f37f2902d81ead1a31aed2948ee442073f4a6d173c0","signature":"163d657b2d62ab4e164a6c685528c7fe9acc7d9152af6560546075febb36e3ac"},{"version":"43d8e732808363090b85f5dda1452227599df4d0e42f3f91884ec3e7e573346b","signature":"5a725878f45866a0f20f3eeb54a3754c4a280a95abecfa5624a2d332a9d40b28"},{"version":"46479aa970fa6d8a6cee3f2924d084deb5581e7f65937477d903b6f848eabeed","signature":"aa418505b073feefb5e2c703f6eff907d3a7d246236c492402228515912e6068"},{"version":"486f47adb2bb9d1e8f63e639eb0777efeaa9dd48a330ef5b1e6314bdf9f18d2e","signature":"fb5218df51a5438791a1d2f1d839ce444925f42c056b8343b985ddd65d5ed5be"},{"version":"43af71b7d3862c44146397df9d593a473e3e44ff6c72eb73924d2b2c9bb5a5c5","signature":"4c36aa1c24c6b30cd65fa50e06af8826bdbbbaa22c1d16675cf3950acbba3ca7"},{"version":"7133327dca45c9a1043980231b3563ab0297d31038453ab0f7c2d5b2a4963135","signature":"a75138a77e8409b87268f2a45bf16ead066343c85b1c8bdc669c5b5f35c1da5e"},{"version":"07b4c321733720167b1601f4be5076f987f3bf38961e9cf602d0702a261d2afe","signature":"294505ae91dd8dcdc273eff344f206ba84e5542f4ada8e66832fd0594a776ebd"},{"version":"b60e9952477663cfda91c690f2dc3007c97dd518b67f7e08e46b3946322e5cdf","signature":"977995610253300070475e0f0be802cff92d663a4388eb56aa9cf8777840e12f"},{"version":"f004d170b171652b72ff914bfbd66d52f41a7668444e6ba2c57fa4c1a7163a86","signature":"623fd3d3eb9ae65094ad34ae6a706e982fef55b4c1c0c5af59bade21093a2fcb"},{"version":"6387f454898b701ce8328c1c45f33622b43ddf5514ac35183557f1f3eb30d4c7","signature":"e01e70612fe75306ad12549641ebc37165fc9fc0914c94eac6389b42ae8b6a58"},{"version":"2486851c1539c3dbc6ca8c256aa35b53b8eb4a5dda200286409813a4049b772c","signature":"1b6363fcc59bf786eb10f002ee84964bd4e3d5d33083c560da921328a19d7507"},{"version":"3bb1a4f6b4287fea673f187cb299be4fed222934fd27615887c1aa73f754fe21","signature":"6291cebfb2d596dfd32ebb6103fae6c658c8dde39227f3b66b2d8adb7fb55141"},{"version":"dc4d503242844935c14184ecf534fd2ca04cf16890ef4dcbe4d4d918756bdc60","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"0aaecf1e99f8a9e75dc43563e513ad41f97410388f9482c46c391b7bd7718a83","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"486521d4e8acd463ea1cff8dd48b2b1167fb6cb913ca2db97ec88691a85ecb1f","affectsGlobalScope":true},{"version":"127bf414ca8ced28c9738b91a935121009d03bbc136668db980bd1ba18976b2b","affectsGlobalScope":true},"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","354abbae08f72ea982b1a767a8908f1b3efe8bbe53955c64f9c0c249c8832d5d",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},{"version":"63e2182615c513e89bb8a3e749d08f7c379e86490fcdbf6d35f2c14b3507a6e8","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":5,"outDir":"./","removeComments":false,"strictNullChecks":true,"target":2},"fileIdsList":[[117],[117,311],[117,306],[117,306,307,308,309,310],[117,307],[117,307,309],[117,310],[117,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338],[117,312,313,314,315,316],[91,117,124,220],[117,373],[91,117,124],[88,91,117,124,215,216],[117,216,217,219,221],[88,89,117,124,277],[89,105,117,124],[59,61,62,63,64,65,66,67,68,69,70,71,117],[59,60,62,63,64,65,66,67,68,69,70,71,117],[60,61,62,63,64,65,66,67,68,69,70,71,117],[59,60,61,63,64,65,66,67,68,69,70,71,117],[59,60,61,62,64,65,66,67,68,69,70,71,117],[59,60,61,62,63,65,66,67,68,69,70,71,117],[59,60,61,62,63,64,66,67,68,69,70,71,117],[59,60,61,62,63,64,65,67,68,69,70,71,117],[59,60,61,62,63,64,65,66,68,69,70,71,117],[59,60,61,62,63,64,65,66,67,69,70,71,117],[59,60,61,62,63,64,65,66,67,68,70,71,117],[59,60,61,62,63,64,65,66,67,68,69,71,117],[59,60,61,62,63,64,65,66,67,68,69,70,117],[89,117,124],[73,117],[76,117],[77,82,117],[78,88,89,96,105,116,117],[78,79,88,96,117],[80,117],[81,82,89,97,117],[82,105,113,117],[83,85,88,96,117],[84,117],[85,86,117],[87,88,117],[88,117],[88,89,90,105,116,117],[88,89,90,105,117],[91,96,105,116,117],[88,89,91,92,96,105,113,116,117],[91,93,105,113,116,117],[73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123],[88,94,117],[95,116,117],[85,88,96,105,117],[97,117],[98,117],[76,99,117],[100,115,117,121],[101,117],[102,117],[88,103,117],[103,104,117,119],[88,105,106,107,117],[105,107,117],[105,106,117],[108,117],[109,117],[88,111,112,117],[111,112,117],[82,96,113,117],[114,117],[96,115,117],[77,91,102,116,117],[82,117],[105,117,118],[117,119],[117,120],[77,82,88,90,99,105,116,117,119,121],[105,117,122],[105,117,122,124],[89,117,124,278],[91,117,124,218],[117,373,375],[117,374],[78,88,116,117,124],[88,91,93,105,113,116,117,122,124],[88,105,117,124],[117,232],[117,233],[117,227],[117,229,230,231,232,233,234,235],[91,93,116,117,124,228,230,231,233],[88,89,117,124],[117,124,229,232,233],[88,117,124,232,233],[117,245,246,247,248],[117,311,317,339],[117,295,296],[117,285,286,287,288,289,290,291,292,293,294],[117,285],[117,286],[117,295],[117,126,127,128,129,130,132,133,134,135,136,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[117,169],[117,131,184],[117,185],[117,132,157],[117,131,139,150,158],[117,157],[117,131],[117,188],[117,133],[117,167],[117,131,175,184],[117,178],[117,180],[117,126],[117,150],[117,127,128,138,171],[117,192],[117,190],[117,131,135,136,137,138,139],[117,135,136,137],[117,128,148],[117,131,138],[117,194],[117,132],[117,188,197,200],[117,132,133],[117,132,133,180],[117,268],[117,353],[117,137,138,209,233,239],[117,239,257,264],[117,239,262,264],[117,239,258,264],[117,239,259,264],[117,239,261,264],[117,239,260,264],[117,239,264],[72,88,117,239,240],[117,239],[117,209,222,239,241,250,263],[91,117,222,239],[117,125,239],[117,240,241,242,252,253,255,256,264,265,266,267],[91,93,117,124,209,239,249,254],[117,244,249],[117,243,250,251],[117,239,242],[117,269],[71,117,269],[71,117,269,358],[117,360,361,362,363,364],[58,71,117,269,359,365],[89,98,117,354,355,356,357,358],[71,117,355],[117,366,368],[117,354],[117,357],[117,269,357,366],[117,210],[117,211],[117,124,209,350,351],[71,117,297],[58,89,117,124,278,279,280,281,282,283,284,297],[77,117,124,340,341],[117,271,272,273,276,298,299,300,302,303,305,343,345,346,347,348,349,352],[117,225,239,301],[105,117],[117,344],[117,209,270],[58,117,274,275],[117,304],[117,236,237,239],[117,212,213],[88,117,124,214,223,239],[91,96,117,124,125,209,213,214,222,223,224,225,226,237,238],[117,224,239],[239]],"referencedMap":[[351,1],[314,2],[307,3],[308,3],[311,4],[306,5],[310,6],[309,7],[316,2],[312,2],[318,2],[319,2],[320,2],[321,2],[322,2],[323,2],[324,2],[325,2],[326,2],[327,2],[328,2],[329,2],[330,2],[331,2],[332,2],[333,2],[334,2],[335,2],[336,2],[337,2],[338,2],[339,8],[313,2],[315,2],[317,9],[72,1],[58,1],[221,10],[377,11],[373,1],[220,12],[217,13],[222,14],[278,15],[210,1],[284,16],[60,17],[61,18],[59,19],[62,20],[63,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[218,1],[277,1],[372,1],[279,1],[281,30],[73,31],[74,31],[76,32],[77,33],[78,34],[79,35],[80,36],[81,37],[82,38],[83,39],[84,40],[85,41],[86,41],[87,42],[88,43],[89,44],[90,45],[75,1],[123,1],[91,46],[92,47],[93,48],[124,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[107,62],[106,63],[108,64],[109,65],[110,1],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[118,73],[119,74],[120,75],[121,76],[122,77],[296,1],[225,43],[341,78],[216,1],[215,1],[280,79],[219,80],[275,1],[376,81],[375,82],[374,1],[270,83],[274,1],[282,1],[125,84],[304,85],[233,86],[234,87],[228,88],[229,1],[236,89],[232,90],[231,91],[230,92],[235,93],[355,1],[344,1],[342,1],[244,1],[249,94],[248,1],[247,1],[246,1],[245,1],[340,95],[350,1],[297,96],[295,97],[285,1],[286,1],[292,98],[289,1],[288,99],[287,1],[294,100],[293,1],[291,98],[290,99],[283,1],[209,101],[156,1],[170,102],[128,1],[185,103],[187,104],[186,104],[158,105],[157,1],[160,106],[159,107],[139,1],[188,108],[192,109],[190,109],[130,1],[137,110],[168,111],[167,1],[176,108],[132,108],[163,1],[205,112],[179,113],[181,114],[200,108],[131,115],[151,116],[166,1],[202,1],[172,117],[189,109],[193,118],[191,119],[206,1],[174,1],[148,115],[140,120],[141,1],[138,121],[164,108],[165,108],[171,1],[129,1],[135,1],[150,1],[178,1],[207,122],[145,108],[146,123],[194,104],[196,124],[195,124],[136,1],[126,1],[149,1],[147,108],[177,1],[204,1],[144,1],[142,125],[143,1],[180,1],[173,1],[201,126],[154,127],[152,127],[153,127],[169,1],[133,1],[197,109],[199,118],[198,119],[184,1],[182,128],[175,1],[162,1],[203,1],[208,1],[183,1],[127,1],[161,1],[155,1],[134,127],[12,1],[13,1],[17,1],[16,1],[3,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,1],[4,1],[5,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[38,1],[39,1],[40,1],[8,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[9,1],[51,1],[48,1],[49,1],[50,1],[52,1],[10,1],[53,1],[54,1],[55,1],[56,1],[2,1],[1,1],[11,1],[57,1],[15,1],[14,1],[227,1],[356,1],[269,129],[354,130],[267,131],[258,132],[263,133],[259,134],[260,135],[262,136],[261,137],[257,138],[241,139],[240,140],[264,141],[265,1],[242,142],[253,1],[256,143],[268,144],[254,1],[255,145],[266,1],[250,146],[252,147],[243,148],[251,140],[364,149],[360,150],[362,150],[361,151],[363,150],[365,152],[366,153],[359,154],[367,1],[358,155],[369,156],[357,157],[370,1],[371,158],[368,159],[211,160],[212,161],[352,162],[349,163],[298,164],[343,165],[353,166],[301,1],[302,167],[346,168],[300,30],[345,169],[347,1],[271,170],[299,1],[303,1],[273,1],[272,1],[348,1],[276,171],[305,172],[223,1],[213,1],[238,173],[214,174],[237,1],[224,175],[239,176],[226,177]],"exportedModulesMap":[[351,1],[314,2],[307,3],[308,3],[311,4],[306,5],[310,6],[309,7],[316,2],[312,2],[318,2],[319,2],[320,2],[321,2],[322,2],[323,2],[324,2],[325,2],[326,2],[327,2],[328,2],[329,2],[330,2],[331,2],[332,2],[333,2],[334,2],[335,2],[336,2],[337,2],[338,2],[339,8],[313,2],[315,2],[317,9],[72,1],[58,1],[221,10],[377,11],[373,1],[220,12],[217,13],[222,14],[278,15],[210,1],[284,16],[60,17],[61,18],[59,19],[62,20],[63,21],[64,22],[65,23],[66,24],[67,25],[68,26],[69,27],[70,28],[71,29],[218,1],[277,1],[372,1],[279,1],[281,30],[73,31],[74,31],[76,32],[77,33],[78,34],[79,35],[80,36],[81,37],[82,38],[83,39],[84,40],[85,41],[86,41],[87,42],[88,43],[89,44],[90,45],[75,1],[123,1],[91,46],[92,47],[93,48],[124,49],[94,50],[95,51],[96,52],[97,53],[98,54],[99,55],[100,56],[101,57],[102,58],[103,59],[104,60],[105,61],[107,62],[106,63],[108,64],[109,65],[110,1],[111,66],[112,67],[113,68],[114,69],[115,70],[116,71],[117,72],[118,73],[119,74],[120,75],[121,76],[122,77],[296,1],[225,43],[341,78],[216,1],[215,1],[280,79],[219,80],[275,1],[376,81],[375,82],[374,1],[270,83],[274,1],[282,1],[125,84],[304,85],[233,86],[234,87],[228,88],[229,1],[236,89],[232,90],[231,91],[230,92],[235,93],[355,1],[344,1],[342,1],[244,1],[249,94],[248,1],[247,1],[246,1],[245,1],[340,95],[350,1],[297,96],[295,97],[285,1],[286,1],[292,98],[289,1],[288,99],[287,1],[294,100],[293,1],[291,98],[290,99],[283,1],[209,101],[156,1],[170,102],[128,1],[185,103],[187,104],[186,104],[158,105],[157,1],[160,106],[159,107],[139,1],[188,108],[192,109],[190,109],[130,1],[137,110],[168,111],[167,1],[176,108],[132,108],[163,1],[205,112],[179,113],[181,114],[200,108],[131,115],[151,116],[166,1],[202,1],[172,117],[189,109],[193,118],[191,119],[206,1],[174,1],[148,115],[140,120],[141,1],[138,121],[164,108],[165,108],[171,1],[129,1],[135,1],[150,1],[178,1],[207,122],[145,108],[146,123],[194,104],[196,124],[195,124],[136,1],[126,1],[149,1],[147,108],[177,1],[204,1],[144,1],[142,125],[143,1],[180,1],[173,1],[201,126],[154,127],[152,127],[153,127],[169,1],[133,1],[197,109],[199,118],[198,119],[184,1],[182,128],[175,1],[162,1],[203,1],[208,1],[183,1],[127,1],[161,1],[155,1],[134,127],[12,1],[13,1],[17,1],[16,1],[3,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,1],[4,1],[5,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[38,1],[39,1],[40,1],[8,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[9,1],[51,1],[48,1],[49,1],[50,1],[52,1],[10,1],[53,1],[54,1],[55,1],[56,1],[2,1],[1,1],[11,1],[57,1],[15,1],[14,1],[227,1],[356,1],[269,129],[354,130],[267,131],[258,132],[263,133],[259,134],[260,135],[262,136],[261,137],[257,138],[241,139],[240,140],[264,141],[265,1],[242,142],[253,1],[256,143],[268,144],[254,1],[255,145],[266,1],[250,146],[252,147],[243,148],[251,140],[366,178],[369,178],[357,178],[368,178],[211,160],[212,161],[352,162],[349,163],[298,164],[343,165],[353,166],[301,1],[302,167],[346,168],[300,30],[345,169],[347,1],[271,170],[299,1],[303,1],[273,1],[272,1],[348,1],[276,171],[305,172],[223,1],[213,1],[238,173],[214,174],[237,1],[224,175],[239,176],[226,177]],"semanticDiagnosticsPerFile":[351,314,307,308,311,306,310,309,316,312,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,313,315,317,72,58,221,377,373,220,217,222,278,210,284,60,61,59,62,63,64,65,66,67,68,69,70,71,218,277,372,279,281,73,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,75,123,91,92,93,124,94,95,96,97,98,99,100,101,102,103,104,105,107,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,296,225,341,216,215,280,219,275,376,375,374,270,274,282,125,304,233,234,228,229,236,232,231,230,235,355,344,342,244,249,248,247,246,245,340,350,297,295,285,286,292,289,288,287,294,293,291,290,283,209,156,170,128,185,187,186,158,157,160,159,139,188,192,190,130,137,168,167,176,132,163,205,179,181,200,131,151,166,202,172,189,193,191,206,174,148,140,141,138,164,165,171,129,135,150,178,207,145,146,194,196,195,136,126,149,147,177,204,144,142,143,180,173,201,154,152,153,169,133,197,199,198,184,182,175,162,203,208,183,127,161,155,134,12,13,17,16,3,18,19,20,21,22,23,24,25,4,5,29,26,27,28,30,31,32,6,33,34,35,36,7,37,38,39,40,8,41,46,47,42,43,44,45,9,51,48,49,50,52,10,53,54,55,56,2,1,11,57,15,14,227,356,269,354,267,258,263,259,260,262,261,257,241,240,264,265,242,253,256,268,254,255,266,250,252,243,251,364,360,362,361,363,365,366,359,367,358,369,357,370,371,368,211,212,352,349,298,343,353,301,302,346,300,345,347,271,299,303,273,272,348,276,305,223,213,238,214,237,224,239,226]},"version":"4.7.4"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appium/fake-driver",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.2",
|
|
4
4
|
"description": "Mock driver used internally by Appium for testing. Ignore",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -47,9 +47,8 @@
|
|
|
47
47
|
"test:unit": "mocha \"./test/unit/**/*.spec.js\""
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@xmldom/xmldom": "0.8.2",
|
|
50
|
+
"@types/bluebird": "3.5.37",
|
|
51
|
+
"@xmldom/xmldom": "0.8.3",
|
|
53
52
|
"asyncbox": "2.9.2",
|
|
54
53
|
"bluebird": "3.7.2",
|
|
55
54
|
"lodash": "4.17.21",
|
|
@@ -81,5 +80,5 @@
|
|
|
81
80
|
}
|
|
82
81
|
},
|
|
83
82
|
"types": "./build/lib/index.d.ts",
|
|
84
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "f545a6cde58d83f3289072f8957468793947ba66"
|
|
85
84
|
}
|