jsir 1.0.3 → 1.0.7
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/cmd/ethPrivateHit.js +45 -35
- package/cmd/ooa.js +773 -168
- package/ethWeb.js +5 -4
- package/index.js +10 -2
- package/package.json +4 -2
- package/sol.js +2 -1
- package/util.js +41 -7
- package/.idea/misc.xml +0 -9
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -382
package/ethWeb.js
CHANGED
|
@@ -809,7 +809,8 @@ async function forEachBlock(web3, num, fn) {
|
|
|
809
809
|
}
|
|
810
810
|
}
|
|
811
811
|
|
|
812
|
-
async function web3BatchReq(items, batchNum = 49, asyncNum = 33) {
|
|
812
|
+
async function web3BatchReq(items, batchNum = 49, asyncNum = 33, web3) {
|
|
813
|
+
web3 = web3 || global.web3
|
|
813
814
|
if (items.length <= 0) {
|
|
814
815
|
return
|
|
815
816
|
}
|
|
@@ -817,7 +818,7 @@ async function web3BatchReq(items, batchNum = 49, asyncNum = 33) {
|
|
|
817
818
|
let callBatchs = splitArray(items, batchNum)
|
|
818
819
|
let pros = []
|
|
819
820
|
for(let i = 0; i< callBatchs.length; i++) {
|
|
820
|
-
let pro = _web3BatchReq(callBatchs[i])
|
|
821
|
+
let pro = _web3BatchReq(callBatchs[i], web3)
|
|
821
822
|
pros.push(pro)
|
|
822
823
|
if (asyncNum === 1) {
|
|
823
824
|
await pro;
|
|
@@ -827,10 +828,10 @@ async function web3BatchReq(items, batchNum = 49, asyncNum = 33) {
|
|
|
827
828
|
}
|
|
828
829
|
return (await Promise.all(pros)).reduce((a,b) => a.concat(b))
|
|
829
830
|
}
|
|
830
|
-
return _web3BatchReq(items)
|
|
831
|
+
return _web3BatchReq(items, web3)
|
|
831
832
|
}
|
|
832
833
|
|
|
833
|
-
async function _web3BatchReq(items) {
|
|
834
|
+
async function _web3BatchReq(items, web3) {
|
|
834
835
|
let batcher = new web3.BatchRequest();
|
|
835
836
|
let proms = []
|
|
836
837
|
items.forEach(item => {
|
package/index.js
CHANGED
|
@@ -59,7 +59,11 @@ const {
|
|
|
59
59
|
$log,
|
|
60
60
|
createLimitLogger2,
|
|
61
61
|
cacheFn,
|
|
62
|
-
isError
|
|
62
|
+
isError,
|
|
63
|
+
getOrFn,
|
|
64
|
+
emptyFn,
|
|
65
|
+
setConfig,
|
|
66
|
+
axios
|
|
63
67
|
} = require('./util')
|
|
64
68
|
const {
|
|
65
69
|
sc,
|
|
@@ -239,5 +243,9 @@ module.exports = {
|
|
|
239
243
|
isError,
|
|
240
244
|
getTokenBal,
|
|
241
245
|
transferToken,
|
|
242
|
-
tokenApprove
|
|
246
|
+
tokenApprove,
|
|
247
|
+
getOrFn,
|
|
248
|
+
emptyFn,
|
|
249
|
+
setConfig,
|
|
250
|
+
axios
|
|
243
251
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsir",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -33,11 +33,13 @@
|
|
|
33
33
|
"axios": "^0.20.0",
|
|
34
34
|
"better-sqlite3": "^7.4.3",
|
|
35
35
|
"bignumber.js": "^9.0.0",
|
|
36
|
+
"chokidar": "^3.5.2",
|
|
37
|
+
"console.table": "^0.10.0",
|
|
36
38
|
"dayjs": "^1.10.4",
|
|
37
39
|
"ethereumjs-tx": "^1.3.7",
|
|
38
40
|
"ethereumjs-util": "latest",
|
|
39
41
|
"ethers": "^5.1.0",
|
|
40
|
-
"global-dirs": "^
|
|
42
|
+
"global-dirs": "^3.0.0",
|
|
41
43
|
"keccak": "latest",
|
|
42
44
|
"md5": "^2.3.0",
|
|
43
45
|
"pad": "^3.2.0",
|
package/sol.js
CHANGED
|
@@ -173,7 +173,8 @@ function doFile(dir, fileName, sol) {
|
|
|
173
173
|
}
|
|
174
174
|
},
|
|
175
175
|
optimizer: {
|
|
176
|
-
enabled:
|
|
176
|
+
enabled: String(getConfig('solcOptimizer')) === 'true',
|
|
177
|
+
runs: Number(getConfig('solcRuns') || 200)
|
|
177
178
|
}
|
|
178
179
|
},
|
|
179
180
|
};
|
package/util.js
CHANGED
|
@@ -6,7 +6,8 @@ const readline = require('readline')
|
|
|
6
6
|
const fs = require('fs')
|
|
7
7
|
const http = require("http");
|
|
8
8
|
const querystring = require('querystring');
|
|
9
|
-
const
|
|
9
|
+
const axios = require('axios')
|
|
10
|
+
const got = axios.create({
|
|
10
11
|
timeout: 9000
|
|
11
12
|
})
|
|
12
13
|
const BigNumber = require('bignumber.js');
|
|
@@ -50,6 +51,10 @@ global.$config = {
|
|
|
50
51
|
get: (key, defaultVal) => {
|
|
51
52
|
return getFnVl(() => $config.getRemote(key),
|
|
52
53
|
() => $config.getLocal(key), defaultVal)
|
|
54
|
+
},
|
|
55
|
+
set: (key, val) => {
|
|
56
|
+
$config.localConfig[key] = val
|
|
57
|
+
setConfig(key, val)
|
|
53
58
|
}
|
|
54
59
|
}
|
|
55
60
|
const $config = global.$config
|
|
@@ -136,6 +141,7 @@ async function timeLimit(proms, mills) {
|
|
|
136
141
|
|
|
137
142
|
function clearConsole() {
|
|
138
143
|
process.stdout.write('\033[0f');
|
|
144
|
+
console.clear()
|
|
139
145
|
}
|
|
140
146
|
|
|
141
147
|
function appendLog(fileName, text) {
|
|
@@ -151,7 +157,7 @@ function createLimitLogger(fileName, maxChars) {
|
|
|
151
157
|
let logPath = logDir + "/" + fileName
|
|
152
158
|
fileCleaner(logPath, maxChars)
|
|
153
159
|
return (text) => {
|
|
154
|
-
fs.appendFile(logPath, text + '\n', emptyFn)
|
|
160
|
+
fs.appendFile(logPath, String(text) + '\n', emptyFn)
|
|
155
161
|
}
|
|
156
162
|
}
|
|
157
163
|
|
|
@@ -161,10 +167,10 @@ function createLimitLogger2(fileName, maxChars) {
|
|
|
161
167
|
let logPath = logDir + "/" + fileName
|
|
162
168
|
cleanFile(logPath, maxChars)
|
|
163
169
|
return (text) => {
|
|
164
|
-
if (Date.now()
|
|
170
|
+
if (Date.now()%(1000 * 60 * 10) === 0) {
|
|
165
171
|
cleanFile(logPath, maxChars)
|
|
166
172
|
}
|
|
167
|
-
fs.appendFile(logPath, text + '\n', emptyFn)
|
|
173
|
+
fs.appendFile(logPath, String(text) + '\n', emptyFn)
|
|
168
174
|
}
|
|
169
175
|
}
|
|
170
176
|
|
|
@@ -217,7 +223,7 @@ function requireG(module){
|
|
|
217
223
|
} catch (e) {}
|
|
218
224
|
let path = globalDirectories.npm.packages + '/' + module;
|
|
219
225
|
if (!fs.existsSync(path)) {
|
|
220
|
-
throw `ERROR: ${module} not found, use [npm install -g ${module}
|
|
226
|
+
throw `ERROR: ${module} not found, use [npm install -g ${module}] to install it`;
|
|
221
227
|
}
|
|
222
228
|
return require(path);
|
|
223
229
|
}
|
|
@@ -247,7 +253,7 @@ function getConfig(key, defaultVal) {
|
|
|
247
253
|
if (key) {
|
|
248
254
|
configInit[key] = ''
|
|
249
255
|
}
|
|
250
|
-
let configFile = getLibDataDir() + '/config';
|
|
256
|
+
let configFile = getLibDataDir() + '/config.json';
|
|
251
257
|
if (!fs.existsSync(configFile)) {
|
|
252
258
|
fs.writeFileSync(configFile, JSON.stringify(configInit, null, 2));
|
|
253
259
|
}
|
|
@@ -271,6 +277,23 @@ function getConfig(key, defaultVal) {
|
|
|
271
277
|
return getVl(config[key], defaultVal)
|
|
272
278
|
}
|
|
273
279
|
|
|
280
|
+
function setConfig(key, val) {
|
|
281
|
+
let configInit = {}
|
|
282
|
+
if (key) {
|
|
283
|
+
configInit[key] = val
|
|
284
|
+
}
|
|
285
|
+
let configFile = getLibDataDir() + '/config.json';
|
|
286
|
+
if (!fs.existsSync(configFile)) {
|
|
287
|
+
fs.writeFileSync(configFile, JSON.stringify(configInit, null, 2));
|
|
288
|
+
return val
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
let config = JSON.parse(String(fs.readFileSync(configFile)))
|
|
292
|
+
Object.assign(config, configInit)
|
|
293
|
+
fs.writeFileSync(configFile, JSON.stringify(config, null ,2))
|
|
294
|
+
return val
|
|
295
|
+
}
|
|
296
|
+
|
|
274
297
|
async function getUniConfig(key, defaultVal) {
|
|
275
298
|
let remoteConfigIp = getConfig('remoteConfigIp')
|
|
276
299
|
let val
|
|
@@ -702,6 +725,13 @@ function getOr(obj, key, defaultVal) {
|
|
|
702
725
|
return obj[key]
|
|
703
726
|
}
|
|
704
727
|
|
|
728
|
+
function getOrFn(obj, key, defaultValFn) {
|
|
729
|
+
if (!obj[key]) {
|
|
730
|
+
obj[key] = defaultValFn()
|
|
731
|
+
}
|
|
732
|
+
return obj[key]
|
|
733
|
+
}
|
|
734
|
+
|
|
705
735
|
module.exports = {
|
|
706
736
|
run,
|
|
707
737
|
reget,
|
|
@@ -763,5 +793,9 @@ module.exports = {
|
|
|
763
793
|
$log,
|
|
764
794
|
createLimitLogger2,
|
|
765
795
|
cacheFn,
|
|
766
|
-
isError
|
|
796
|
+
isError,
|
|
797
|
+
getOrFn,
|
|
798
|
+
emptyFn,
|
|
799
|
+
setConfig,
|
|
800
|
+
axios
|
|
767
801
|
}
|
package/.idea/misc.xml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ClojureProjectResolveSettings">
|
|
4
|
-
<currentScheme>IDE</currentScheme>
|
|
5
|
-
</component>
|
|
6
|
-
<component name="ProjectRootManager">
|
|
7
|
-
<output url="file://$PROJECT_DIR$/out" />
|
|
8
|
-
</component>
|
|
9
|
-
</project>
|
package/.idea/modules.xml
DELETED
package/.idea/vcs.xml
DELETED
package/.idea/workspace.xml
DELETED
|
@@ -1,382 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="0dc0fae1-2d32-4026-ba5c-a1ced656c593" name="Default Changelist" comment="">
|
|
5
|
-
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
6
|
-
</list>
|
|
7
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
8
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
9
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
10
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
11
|
-
</component>
|
|
12
|
-
<component name="ChangesViewManager">
|
|
13
|
-
<option name="groupingKeys">
|
|
14
|
-
<option value="directory" />
|
|
15
|
-
</option>
|
|
16
|
-
</component>
|
|
17
|
-
<component name="ComposerSettings">
|
|
18
|
-
<execution>
|
|
19
|
-
<executable />
|
|
20
|
-
</execution>
|
|
21
|
-
</component>
|
|
22
|
-
<component name="Git.Settings">
|
|
23
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
24
|
-
<option name="UPDATE_TYPE" value="REBASE" />
|
|
25
|
-
</component>
|
|
26
|
-
<component name="MavenImportPreferences">
|
|
27
|
-
<option name="generalSettings">
|
|
28
|
-
<MavenGeneralSettings>
|
|
29
|
-
<option name="alwaysUpdateSnapshots" value="true" />
|
|
30
|
-
</MavenGeneralSettings>
|
|
31
|
-
</option>
|
|
32
|
-
</component>
|
|
33
|
-
<component name="ProjectId" id="1uy6IybMqwsM3RE8fTvrf7NsD7R" />
|
|
34
|
-
<component name="ProjectViewState">
|
|
35
|
-
<option name="hideEmptyMiddlePackages" value="true" />
|
|
36
|
-
<option name="showExcludedFiles" value="true" />
|
|
37
|
-
<option name="showLibraryContents" value="true" />
|
|
38
|
-
</component>
|
|
39
|
-
<component name="PropertiesComponent">
|
|
40
|
-
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
|
41
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
42
|
-
<property name="aspect.path.notification.shown" value="true" />
|
|
43
|
-
<property name="nodejs_package_manager_path" value="npm" />
|
|
44
|
-
<property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
|
|
45
|
-
<property name="ts.external.directory.path" value="$APPLICATION_HOME_DIR$/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external" />
|
|
46
|
-
</component>
|
|
47
|
-
<component name="RunManager" selected="Node.js.test.js">
|
|
48
|
-
<configuration name="sql.js" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/sql.js" working-dir="$PROJECT_DIR$">
|
|
49
|
-
<method v="2" />
|
|
50
|
-
</configuration>
|
|
51
|
-
<configuration name="test.js" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/test/test.js" working-dir="$PROJECT_DIR$/test">
|
|
52
|
-
<method v="2" />
|
|
53
|
-
</configuration>
|
|
54
|
-
<recent_temporary>
|
|
55
|
-
<list>
|
|
56
|
-
<item itemvalue="Node.js.test.js" />
|
|
57
|
-
<item itemvalue="Node.js.sql.js" />
|
|
58
|
-
</list>
|
|
59
|
-
</recent_temporary>
|
|
60
|
-
</component>
|
|
61
|
-
<component name="SvnConfiguration">
|
|
62
|
-
<configuration />
|
|
63
|
-
</component>
|
|
64
|
-
<component name="TaskManager">
|
|
65
|
-
<task active="true" id="Default" summary="Default task">
|
|
66
|
-
<changelist id="0dc0fae1-2d32-4026-ba5c-a1ced656c593" name="Default Changelist" comment="" />
|
|
67
|
-
<created>1625625405976</created>
|
|
68
|
-
<option name="number" value="Default" />
|
|
69
|
-
<option name="presentableId" value="Default" />
|
|
70
|
-
<updated>1625625405976</updated>
|
|
71
|
-
<workItem from="1625625407534" duration="2258000" />
|
|
72
|
-
<workItem from="1625627830055" duration="1435000" />
|
|
73
|
-
<workItem from="1625639092369" duration="3243000" />
|
|
74
|
-
<workItem from="1625710813630" duration="41000" />
|
|
75
|
-
<workItem from="1625800741169" duration="102000" />
|
|
76
|
-
<workItem from="1625802819207" duration="1702000" />
|
|
77
|
-
<workItem from="1626058800518" duration="175000" />
|
|
78
|
-
<workItem from="1626070697059" duration="196000" />
|
|
79
|
-
<workItem from="1626072466992" duration="162000" />
|
|
80
|
-
<workItem from="1626417210699" duration="1138000" />
|
|
81
|
-
<workItem from="1627022402624" duration="2770000" />
|
|
82
|
-
<workItem from="1627367203370" duration="34000" />
|
|
83
|
-
<workItem from="1627367245732" duration="49000" />
|
|
84
|
-
<workItem from="1627438500736" duration="831000" />
|
|
85
|
-
<workItem from="1627462912204" duration="314000" />
|
|
86
|
-
<workItem from="1627463547492" duration="2980000" />
|
|
87
|
-
<workItem from="1627539187663" duration="34000" />
|
|
88
|
-
<workItem from="1627540902499" duration="978000" />
|
|
89
|
-
<workItem from="1627543713678" duration="1281000" />
|
|
90
|
-
<workItem from="1627609970450" duration="585000" />
|
|
91
|
-
<workItem from="1627614775111" duration="1645000" />
|
|
92
|
-
<workItem from="1627628741204" duration="28000" />
|
|
93
|
-
<workItem from="1627634506124" duration="61000" />
|
|
94
|
-
<workItem from="1627711463071" duration="1326000" />
|
|
95
|
-
<workItem from="1627884224913" duration="469000" />
|
|
96
|
-
<workItem from="1627887034754" duration="559000" />
|
|
97
|
-
<workItem from="1627892584699" duration="4162000" />
|
|
98
|
-
<workItem from="1627899936067" duration="813000" />
|
|
99
|
-
<workItem from="1627901971071" duration="145000" />
|
|
100
|
-
<workItem from="1627911655517" duration="650000" />
|
|
101
|
-
<workItem from="1627958263143" duration="196000" />
|
|
102
|
-
<workItem from="1627971029359" duration="897000" />
|
|
103
|
-
<workItem from="1627972146797" duration="375000" />
|
|
104
|
-
<workItem from="1627973023310" duration="185000" />
|
|
105
|
-
<workItem from="1627973344211" duration="108000" />
|
|
106
|
-
<workItem from="1627977950400" duration="19000" />
|
|
107
|
-
<workItem from="1627986170863" duration="4000" />
|
|
108
|
-
<workItem from="1627986196234" duration="77000" />
|
|
109
|
-
<workItem from="1627994416121" duration="16000" />
|
|
110
|
-
<workItem from="1627997180329" duration="924000" />
|
|
111
|
-
<workItem from="1627998324810" duration="47000" />
|
|
112
|
-
<workItem from="1627998818208" duration="285000" />
|
|
113
|
-
<workItem from="1628043083450" duration="787000" />
|
|
114
|
-
<workItem from="1628061396516" duration="662000" />
|
|
115
|
-
<workItem from="1628580090180" duration="230000" />
|
|
116
|
-
<workItem from="1628584906529" duration="45000" />
|
|
117
|
-
<workItem from="1628586493352" duration="6000" />
|
|
118
|
-
<workItem from="1628591528485" duration="5000" />
|
|
119
|
-
<workItem from="1628650355023" duration="406000" />
|
|
120
|
-
<workItem from="1628651064129" duration="253000" />
|
|
121
|
-
<workItem from="1628651735319" duration="21000" />
|
|
122
|
-
<workItem from="1628736364827" duration="1608000" />
|
|
123
|
-
<workItem from="1628738440712" duration="1738000" />
|
|
124
|
-
<workItem from="1628762328964" duration="1317000" />
|
|
125
|
-
<workItem from="1628825902157" duration="83000" />
|
|
126
|
-
<workItem from="1628826231884" duration="6948000" />
|
|
127
|
-
<workItem from="1628850438000" duration="12000" />
|
|
128
|
-
<workItem from="1629252362911" duration="226000" />
|
|
129
|
-
<workItem from="1629770985983" duration="44000" />
|
|
130
|
-
<workItem from="1629774502179" duration="13376000" />
|
|
131
|
-
<workItem from="1629862968148" duration="1068000" />
|
|
132
|
-
<workItem from="1629874363145" duration="2486000" />
|
|
133
|
-
<workItem from="1629877010010" duration="594000" />
|
|
134
|
-
<workItem from="1629878040637" duration="1377000" />
|
|
135
|
-
<workItem from="1629883939749" duration="893000" />
|
|
136
|
-
<workItem from="1629965358349" duration="215000" />
|
|
137
|
-
<workItem from="1629966834827" duration="818000" />
|
|
138
|
-
<workItem from="1629967782085" duration="100000" />
|
|
139
|
-
<workItem from="1629970878446" duration="1117000" />
|
|
140
|
-
<workItem from="1629972837583" duration="907000" />
|
|
141
|
-
<workItem from="1630034740904" duration="882000" />
|
|
142
|
-
<workItem from="1630045554888" duration="322000" />
|
|
143
|
-
<workItem from="1630045954618" duration="728000" />
|
|
144
|
-
<workItem from="1630047108078" duration="146000" />
|
|
145
|
-
<workItem from="1630059858587" duration="634000" />
|
|
146
|
-
<workItem from="1630463637922" duration="152000" />
|
|
147
|
-
<workItem from="1630662622614" duration="32000" />
|
|
148
|
-
<workItem from="1630664464242" duration="693000" />
|
|
149
|
-
<workItem from="1630998330462" duration="1058000" />
|
|
150
|
-
<workItem from="1631000029483" duration="7565000" />
|
|
151
|
-
<workItem from="1631069471758" duration="159000" />
|
|
152
|
-
<workItem from="1631081806200" duration="340000" />
|
|
153
|
-
<workItem from="1631082963194" duration="25000" />
|
|
154
|
-
<workItem from="1631083844532" duration="28000" />
|
|
155
|
-
<workItem from="1631084127518" duration="10910000" />
|
|
156
|
-
<workItem from="1631152576677" duration="105000" />
|
|
157
|
-
<workItem from="1631157789047" duration="642000" />
|
|
158
|
-
<workItem from="1631162877607" duration="2396000" />
|
|
159
|
-
<workItem from="1631165281016" duration="1000" />
|
|
160
|
-
<workItem from="1631173839081" duration="2389000" />
|
|
161
|
-
<workItem from="1631176250067" duration="299000" />
|
|
162
|
-
<workItem from="1631176676370" duration="681000" />
|
|
163
|
-
<workItem from="1631177487306" duration="82000" />
|
|
164
|
-
<workItem from="1631177799074" duration="647000" />
|
|
165
|
-
<workItem from="1631179942024" duration="312000" />
|
|
166
|
-
<workItem from="1631239344307" duration="417000" />
|
|
167
|
-
<workItem from="1631246202324" duration="442000" />
|
|
168
|
-
<workItem from="1631255559134" duration="5691000" />
|
|
169
|
-
<workItem from="1631264394962" duration="10000" />
|
|
170
|
-
<workItem from="1631265956859" duration="3152000" />
|
|
171
|
-
<workItem from="1631269206929" duration="793000" />
|
|
172
|
-
<workItem from="1631503045304" duration="1991000" />
|
|
173
|
-
<workItem from="1631514761033" duration="540000" />
|
|
174
|
-
<workItem from="1631520257066" duration="56000" />
|
|
175
|
-
<workItem from="1631527333564" duration="876000" />
|
|
176
|
-
<workItem from="1631530259300" duration="8000" />
|
|
177
|
-
<workItem from="1631585901041" duration="1452000" />
|
|
178
|
-
<workItem from="1631589479968" duration="3962000" />
|
|
179
|
-
<workItem from="1631600840098" duration="7000" />
|
|
180
|
-
<workItem from="1631600943796" duration="50000" />
|
|
181
|
-
<workItem from="1631602031413" duration="29000" />
|
|
182
|
-
<workItem from="1631604666437" duration="882000" />
|
|
183
|
-
<workItem from="1631606547993" duration="1533000" />
|
|
184
|
-
<workItem from="1631673783315" duration="1187000" />
|
|
185
|
-
<workItem from="1631675121241" duration="1922000" />
|
|
186
|
-
<workItem from="1631689057229" duration="163000" />
|
|
187
|
-
<workItem from="1631690099698" duration="106000" />
|
|
188
|
-
<workItem from="1631690389646" duration="2479000" />
|
|
189
|
-
<workItem from="1631693486370" duration="862000" />
|
|
190
|
-
<workItem from="1631700595467" duration="51000" />
|
|
191
|
-
<workItem from="1631701366606" duration="210000" />
|
|
192
|
-
<workItem from="1631702404069" duration="1703000" />
|
|
193
|
-
<workItem from="1631759503599" duration="1125000" />
|
|
194
|
-
<workItem from="1631870465235" duration="16000" />
|
|
195
|
-
<workItem from="1631871038613" duration="58000" />
|
|
196
|
-
<workItem from="1631929391946" duration="1098000" />
|
|
197
|
-
<workItem from="1631956845672" duration="16000" />
|
|
198
|
-
<workItem from="1631957232779" duration="64000" />
|
|
199
|
-
<workItem from="1631962892290" duration="595000" />
|
|
200
|
-
<workItem from="1631963492804" duration="8964000" />
|
|
201
|
-
<workItem from="1632456320512" duration="28000" />
|
|
202
|
-
<workItem from="1632622415578" duration="259000" />
|
|
203
|
-
<workItem from="1632641071044" duration="95000" />
|
|
204
|
-
<workItem from="1632650034427" duration="449000" />
|
|
205
|
-
<workItem from="1632652300356" duration="280000" />
|
|
206
|
-
<workItem from="1632706778114" duration="1963000" />
|
|
207
|
-
<workItem from="1632715655392" duration="3148000" />
|
|
208
|
-
<workItem from="1632727291760" duration="49000" />
|
|
209
|
-
<workItem from="1632728514952" duration="2418000" />
|
|
210
|
-
<workItem from="1632738936400" duration="132000" />
|
|
211
|
-
<workItem from="1632739452010" duration="6000" />
|
|
212
|
-
<workItem from="1632794008706" duration="2093000" />
|
|
213
|
-
<workItem from="1632816665797" duration="618000" />
|
|
214
|
-
<workItem from="1632825619834" duration="199000" />
|
|
215
|
-
<workItem from="1632882867272" duration="881000" />
|
|
216
|
-
<workItem from="1632968394035" duration="320000" />
|
|
217
|
-
<workItem from="1632971870183" duration="791000" />
|
|
218
|
-
<workItem from="1633672460311" duration="386000" />
|
|
219
|
-
<workItem from="1633674064430" duration="4847000" />
|
|
220
|
-
<workItem from="1633681290983" duration="13000" />
|
|
221
|
-
<workItem from="1633683974319" duration="3161000" />
|
|
222
|
-
<workItem from="1633748189509" duration="3127000" />
|
|
223
|
-
<workItem from="1633765635195" duration="3000" />
|
|
224
|
-
<workItem from="1633767447676" duration="2212000" />
|
|
225
|
-
<workItem from="1633774651391" duration="610000" />
|
|
226
|
-
<workItem from="1633920312566" duration="1386000" />
|
|
227
|
-
<workItem from="1633935935033" duration="2562000" />
|
|
228
|
-
<workItem from="1634004974674" duration="251000" />
|
|
229
|
-
<workItem from="1634007083392" duration="30000" />
|
|
230
|
-
<workItem from="1634008014599" duration="13000" />
|
|
231
|
-
<workItem from="1634008335232" duration="1962000" />
|
|
232
|
-
<workItem from="1634023770006" duration="378000" />
|
|
233
|
-
<workItem from="1634024201023" duration="14000" />
|
|
234
|
-
<workItem from="1634027311863" duration="1592000" />
|
|
235
|
-
<workItem from="1634030623223" duration="8503000" />
|
|
236
|
-
<workItem from="1634095066095" duration="904000" />
|
|
237
|
-
<workItem from="1634106706093" duration="234000" />
|
|
238
|
-
<workItem from="1634109605506" duration="924000" />
|
|
239
|
-
<workItem from="1634110707085" duration="3236000" />
|
|
240
|
-
<workItem from="1634119011756" duration="604000" />
|
|
241
|
-
<workItem from="1634120060161" duration="16000" />
|
|
242
|
-
<workItem from="1634175057397" duration="954000" />
|
|
243
|
-
<workItem from="1634176201257" duration="439000" />
|
|
244
|
-
<workItem from="1634182298603" duration="45000" />
|
|
245
|
-
<workItem from="1634182448646" duration="61000" />
|
|
246
|
-
<workItem from="1634185599787" duration="1451000" />
|
|
247
|
-
<workItem from="1634190227289" duration="649000" />
|
|
248
|
-
<workItem from="1634194170699" duration="69000" />
|
|
249
|
-
<workItem from="1634195544458" duration="17000" />
|
|
250
|
-
<workItem from="1634198815219" duration="6254000" />
|
|
251
|
-
<workItem from="1634264984742" duration="9000" />
|
|
252
|
-
<workItem from="1634265035105" duration="437000" />
|
|
253
|
-
<workItem from="1634266512683" duration="1000" />
|
|
254
|
-
<workItem from="1634266644160" duration="2184000" />
|
|
255
|
-
<workItem from="1634277991562" duration="181000" />
|
|
256
|
-
<workItem from="1634279032947" duration="259000" />
|
|
257
|
-
<workItem from="1634280398491" duration="242000" />
|
|
258
|
-
<workItem from="1634281066249" duration="120000" />
|
|
259
|
-
<workItem from="1634281935590" duration="27000" />
|
|
260
|
-
<workItem from="1634281999445" duration="196000" />
|
|
261
|
-
<workItem from="1634282660016" duration="1265000" />
|
|
262
|
-
<workItem from="1634293573695" duration="664000" />
|
|
263
|
-
<workItem from="1634294482134" duration="5000" />
|
|
264
|
-
<workItem from="1634521835921" duration="548000" />
|
|
265
|
-
<workItem from="1634523219068" duration="141000" />
|
|
266
|
-
<workItem from="1634543512182" duration="51000" />
|
|
267
|
-
</task>
|
|
268
|
-
<task id="LOCAL-00001" summary="text">
|
|
269
|
-
<created>1627971912393</created>
|
|
270
|
-
<option name="number" value="00001" />
|
|
271
|
-
<option name="presentableId" value="LOCAL-00001" />
|
|
272
|
-
<option name="project" value="LOCAL" />
|
|
273
|
-
<updated>1627971912393</updated>
|
|
274
|
-
</task>
|
|
275
|
-
<task id="LOCAL-00002" summary="text">
|
|
276
|
-
<created>1627998159578</created>
|
|
277
|
-
<option name="number" value="00002" />
|
|
278
|
-
<option name="presentableId" value="LOCAL-00002" />
|
|
279
|
-
<option name="project" value="LOCAL" />
|
|
280
|
-
<updated>1627998159578</updated>
|
|
281
|
-
</task>
|
|
282
|
-
<task id="LOCAL-00003" summary="text">
|
|
283
|
-
<created>1627998365448</created>
|
|
284
|
-
<option name="number" value="00003" />
|
|
285
|
-
<option name="presentableId" value="LOCAL-00003" />
|
|
286
|
-
<option name="project" value="LOCAL" />
|
|
287
|
-
<updated>1627998365448</updated>
|
|
288
|
-
</task>
|
|
289
|
-
<option name="localTasksCounter" value="4" />
|
|
290
|
-
<servers />
|
|
291
|
-
</component>
|
|
292
|
-
<component name="TypeScriptGeneratedFilesManager">
|
|
293
|
-
<option name="version" value="1" />
|
|
294
|
-
</component>
|
|
295
|
-
<component name="Vcs.Log.History.Properties">
|
|
296
|
-
<option name="COLUMN_ORDER">
|
|
297
|
-
<list>
|
|
298
|
-
<option value="0" />
|
|
299
|
-
<option value="2" />
|
|
300
|
-
<option value="3" />
|
|
301
|
-
<option value="1" />
|
|
302
|
-
</list>
|
|
303
|
-
</option>
|
|
304
|
-
</component>
|
|
305
|
-
<component name="Vcs.Log.Tabs.Properties">
|
|
306
|
-
<option name="TAB_STATES">
|
|
307
|
-
<map>
|
|
308
|
-
<entry key="MAIN">
|
|
309
|
-
<value>
|
|
310
|
-
<State>
|
|
311
|
-
<option name="COLUMN_ORDER" />
|
|
312
|
-
</State>
|
|
313
|
-
</value>
|
|
314
|
-
</entry>
|
|
315
|
-
</map>
|
|
316
|
-
</option>
|
|
317
|
-
</component>
|
|
318
|
-
<component name="VcsManagerConfiguration">
|
|
319
|
-
<MESSAGE value="text" />
|
|
320
|
-
<option name="LAST_COMMIT_MESSAGE" value="text" />
|
|
321
|
-
</component>
|
|
322
|
-
<component name="WindowStateProjectService">
|
|
323
|
-
<state x="286" y="64" key="CommitChangelistDialog2" timestamp="1627998364869">
|
|
324
|
-
<screen x="0" y="23" width="1388" height="877" />
|
|
325
|
-
</state>
|
|
326
|
-
<state x="286" y="64" key="CommitChangelistDialog2/0.23.1388.877/-1120.-1417.2560.1417@0.23.1388.877" timestamp="1627998364869" />
|
|
327
|
-
<state x="13" y="27" width="1357" height="850" maximized="true" key="DiffContextDialog" timestamp="1634523265355">
|
|
328
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
329
|
-
</state>
|
|
330
|
-
<state x="13" y="27" width="1357" height="850" maximized="true" key="DiffContextDialog/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1634523265355" />
|
|
331
|
-
<state x="100" y="123" width="1186" height="677" key="DiffContextDialog/0.23.1386.877/-1120.-1417.2560.1417@0.23.1386.877" timestamp="1627463816346" />
|
|
332
|
-
<state x="7" y="30" width="1374" height="863" maximized="true" key="DiffContextDialog/0.23.1388.877/-1120.-1417.2560.1417@0.23.1388.877" timestamp="1628043872192" />
|
|
333
|
-
<state x="100" y="123" width="1190" height="677" key="DiffContextDialog/0.23.1390.877/-1120.-1417.2560.1417@0.23.1390.877" timestamp="1627912078842" />
|
|
334
|
-
<state width="1342" height="221" key="GridCell.Tab.0.bottom" timestamp="1631261260920">
|
|
335
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
336
|
-
</state>
|
|
337
|
-
<state width="1342" height="221" key="GridCell.Tab.0.bottom/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1631261260920" />
|
|
338
|
-
<state width="1342" height="335" key="GridCell.Tab.0.bottom/0.23.1386.877/-1120.-1417.2560.1417@0.23.1386.877" timestamp="1627466667252" />
|
|
339
|
-
<state width="1342" height="221" key="GridCell.Tab.0.center" timestamp="1631261260918">
|
|
340
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
341
|
-
</state>
|
|
342
|
-
<state width="1342" height="221" key="GridCell.Tab.0.center/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1631261260918" />
|
|
343
|
-
<state width="1342" height="335" key="GridCell.Tab.0.center/0.23.1386.877/-1120.-1417.2560.1417@0.23.1386.877" timestamp="1627466667250" />
|
|
344
|
-
<state width="1342" height="221" key="GridCell.Tab.0.left" timestamp="1631261260917">
|
|
345
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
346
|
-
</state>
|
|
347
|
-
<state width="1342" height="221" key="GridCell.Tab.0.left/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1631261260917" />
|
|
348
|
-
<state width="1342" height="335" key="GridCell.Tab.0.left/0.23.1386.877/-1120.-1417.2560.1417@0.23.1386.877" timestamp="1627466667250" />
|
|
349
|
-
<state width="1342" height="221" key="GridCell.Tab.0.right" timestamp="1631261260919">
|
|
350
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
351
|
-
</state>
|
|
352
|
-
<state width="1342" height="221" key="GridCell.Tab.0.right/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1631261260919" />
|
|
353
|
-
<state width="1342" height="335" key="GridCell.Tab.0.right/0.23.1386.877/-1120.-1417.2560.1417@0.23.1386.877" timestamp="1627466667251" />
|
|
354
|
-
<state x="351" y="179" key="RollbackChangesDialog" timestamp="1633937976560">
|
|
355
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
356
|
-
</state>
|
|
357
|
-
<state x="351" y="179" key="RollbackChangesDialog/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1633937976560" />
|
|
358
|
-
<state x="353" y="179" key="RollbackChangesDialog/0.23.1390.877/-1120.-1417.2560.1417@0.23.1390.877" timestamp="1627902102118" />
|
|
359
|
-
<state x="544" y="384" key="VCS.ChangelistChooser" timestamp="1633937972175">
|
|
360
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
361
|
-
</state>
|
|
362
|
-
<state x="544" y="384" key="VCS.ChangelistChooser/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1633937972175" />
|
|
363
|
-
<state x="100" y="123" width="1184" height="677" key="VCS.FileHistoryDialog" timestamp="1634182342957">
|
|
364
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
365
|
-
</state>
|
|
366
|
-
<state x="100" y="123" width="1184" height="677" key="VCS.FileHistoryDialog/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1634182342957" />
|
|
367
|
-
<state x="292" y="190" key="Vcs.Push.Dialog.v2" timestamp="1627998367106">
|
|
368
|
-
<screen x="0" y="23" width="1388" height="877" />
|
|
369
|
-
</state>
|
|
370
|
-
<state x="292" y="190" key="Vcs.Push.Dialog.v2/0.23.1388.877/-1120.-1417.2560.1417@0.23.1388.877" timestamp="1627998367106" />
|
|
371
|
-
<state x="480" y="385" key="com.intellij.openapi.vcs.update.UpdateOrStatusOptionsDialogupdate-v2" timestamp="1634523224813">
|
|
372
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
373
|
-
</state>
|
|
374
|
-
<state x="480" y="385" key="com.intellij.openapi.vcs.update.UpdateOrStatusOptionsDialogupdate-v2/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1634523224813" />
|
|
375
|
-
<state x="481" y="385" key="com.intellij.openapi.vcs.update.UpdateOrStatusOptionsDialogupdate-v2/0.23.1388.877/-1120.-1417.2560.1417@0.23.1388.877" timestamp="1627958266521" />
|
|
376
|
-
<state x="321" y="218" width="816" height="550" key="find.popup" timestamp="1634182455832">
|
|
377
|
-
<screen x="0" y="23" width="1384" height="877" />
|
|
378
|
-
</state>
|
|
379
|
-
<state x="321" y="218" width="816" height="550" key="find.popup/0.23.1384.877/-1120.-1417.2560.1417@0.23.1384.877" timestamp="1634182455831" />
|
|
380
|
-
<state x="322" y="218" width="819" height="486" key="find.popup/0.23.1388.877/-1120.-1417.2560.1417@0.23.1388.877" timestamp="1627998821157" />
|
|
381
|
-
</component>
|
|
382
|
-
</project>
|