Trace number 4292235

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
Choco-solver 4.0.7 seq (493a269)? 348.261 306.529

General information on the benchmark

NameCrosswordDesign/
CrosswordDesign-13-4-rom_c18.xml
MD5SUM0b51c5bbf7274d342280acfb624bd8bf
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark71
Best CPU time to get the best result obtained on this benchmark2520.08
Satisfiable
(Un)Satisfiability was proved
Number of variables481
Number of constraints104
Number of domains5
Minimum domain size2
Maximum domain size129443
Distribution of domain sizes[{"size":2,"count":26},{"size":14,"count":182},{"size":27,"count":169},{"size":129443,"count":104}]
Minimum variable degree1
Maximum variable degree8
Distribution of variable degrees[{"degree":1,"count":130},{"degree":2,"count":182},{"degree":8,"count":169}]
Minimum constraint arity16
Maximum constraint arity17
Distribution of constraint arities[{"arity":16,"count":26},{"arity":17,"count":78}]
Number of extensional constraints104
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":104}]
Optimization problemYES
Type of objectivemax SUM

Solver Data

0.00/0.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4292235-1532334942.xml"  -tl '2400s' -p 1 -x 0
0.12/0.18	c Choco 493a269
0.12/0.18	c [HOME/instance-4292235-1532334942.xml, -tl, 2400s, -p, 1, -x, 0]
0.12/0.22	c simple solver
0.33/0.28	c parse instance...
340.28/304.40	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
340.28/304.40		at org.chocosolver.solver.constraints.extension.nary.PropCompactTableStar.computeSupports(PropCompactTableStar.java:80)
340.28/304.40		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
340.28/304.40		at org.chocosolver.solver.constraints.extension.nary.PropCompactTableStar.<init>(PropCompactTableStar.java:45)
340.28/304.40		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2012)
340.28/304.40		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1970)
340.28/304.40		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:315)
340.28/304.40		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
340.28/304.40		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
340.28/304.40		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
340.28/304.40		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
340.28/304.40		at org.xcsp.parser.XCallbacks$$Lambda$98/2134991632.accept(Unknown Source)
340.28/304.40		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
340.28/304.40		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
340.28/304.40		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
340.28/304.40		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1414)
340.28/304.40		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
348.12/306.44		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
348.12/306.44		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
348.12/306.44		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
348.12/306.44		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
348.12/306.44		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:107)
348.12/306.44		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:94)
348.12/306.44		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
348.12/306.44	s UNKNOWN
348.12/306.44	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (10323 MiB free)
  memory of node 1: 16384 MiB (13665 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4292235-1532334942/watcher-4292235-1532334942 -o /tmp/evaluation-result-4292235-1532334942/solver-4292235-1532334942 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node134-1532328652-14414 --watchdog 2560 HOME/xcsp3-exec -seed 226420064 -dir HOME -tl 2400 -ml 11000 -p 1 HOME/instance-4292235-1532334942.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=15894, runsolver pid=15891

[startup+0.103001 s]*
/proc/loadavg: 1.96 2.02 2.04 3/221 15910
/proc/meminfo: memFree=24547132/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14082840 memory=29592 CPUtime=0.12 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 5263 0 0 0 11 1 0 0 20 0 15 0 51057597 14420828160 7398 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3520710 7398 2992 1 0 3483008 0
[pid=15896/tid=15897] ppid=15894 vsize=14082840 memory=-6962121287837372198 CPUtime=0.09 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) R 15894 15894 14382 0 -1 4202560 3262 0 0 0 9 0 0 0 20 0 15 0 51057597 14420828160 7398 33554432000 4194304 4196468 140732371501280 139672107441184 139672082292691 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14082840 memory=-3689349214911541841 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671699045520 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14082840 memory=139850966750848 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671697992720 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671696939920 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671695887120 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14082840 memory=139850966750848 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057599 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671577241968 139672103225986 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 51057599 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671576187936 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 51057600 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671575135088 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 305 0 0 0 0 0 0 0 20 0 15 0 51057602 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 15 0 51057602 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14082840 memory=139850966750848 CPUtime=0.01 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) R 15894 15894 14382 0 -1 4202560 276 0 0 0 1 0 0 0 20 0 15 0 51057602 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671570926192 139672081920304 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14082840 memory=139850966750848 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057603 14420828160 7398 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 14195968 KiB
Current children cumulated memory: 31044 KiB

[startup+0.210835 s]*
/proc/loadavg: 1.96 2.02 2.04 4/221 15910
/proc/meminfo: memFree=24535968/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14082840 memory=41168 CPUtime=0.33 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 7795 0 0 0 31 2 0 0 20 0 15 0 51057597 14420828160 10292 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3520710 10292 3156 1 0 3483008 0
[pid=15896/tid=15897] ppid=15894 vsize=14082840 memory=7883960649037381690 CPUtime=0.19 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) R 15894 15894 14382 0 -1 4202560 4944 0 0 0 18 1 0 0 20 0 15 0 51057597 14420828160 10292 33554432000 4194304 4196468 140732371501280 139672107449824 139672103236765 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14082840 memory=13660 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671699045520 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14082840 memory=139850966766048 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671697992720 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671696939920 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057598 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671695887120 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14082840 memory=139850966750848 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 51057599 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671577241968 139672103225986 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 51057599 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671576187936 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 51057600 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671575135088 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14082840 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 409 0 0 0 1 0 0 0 20 0 15 0 51057602 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14082840 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 378 0 0 0 2 0 0 0 20 0 15 0 51057602 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14082840 memory=139850966750848 CPUtime=0.07 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) R 15894 15894 14382 0 -1 4202560 757 0 0 0 7 0 0 0 20 0 15 0 51057602 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671570926192 139672082072615 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057603 14420828160 10292 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 14195968 KiB
Current children cumulated memory: 42620 KiB

[startup+0.31211 s]*
/proc/loadavg: 1.96 2.02 2.04 4/221 15910
/proc/meminfo: memFree=24530012/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14087096 memory=48092 CPUtime=0.52 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 8671 0 0 0 49 3 0 0 20 0 15 0 51057597 14425186304 12023 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3521774 12023 3248 1 0 3483008 0
[pid=15896/tid=15897] ppid=15894 vsize=14087096 memory=6791534058613427641 CPUtime=0.29 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) R 15894 15894 14382 0 -1 4202560 5683 0 0 0 27 2 0 0 20 0 15 0 51057597 14425186304 12023 33554432000 4194304 4196468 140732371501280 139672107445952 139672087295326 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14087096 memory=4126316290023845779 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057598 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671699045520 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14087096 memory=6944656575208382560 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) S 15894 15894 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 51057598 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671697992720 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14087096 memory=-3258418265892434876 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057598 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671696939920 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14087096 memory=4572146066226452084 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057598 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671695887120 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14087096 memory=6944613755495348631 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 51057599 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671577241968 139672103225986 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14087096 memory=7893295687695687954 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 51057599 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671576187936 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14087096 memory=-8813974798734826869 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 51057600 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671575135088 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14087096 memory=7827413994055111515 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14087096 memory=8508281356422055839 CPUtime=0.03 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 415 0 0 0 3 0 0 0 20 0 15 0 51057602 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14087096 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 464 0 0 0 5 0 0 0 20 0 15 0 51057602 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14087096 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) S 15894 15894 14382 0 -1 1077944384 813 0 0 0 12 0 0 0 20 0 15 0 51057602 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671570926192 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14087096 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14087096 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057603 14425186304 12023 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 14200224 KiB
Current children cumulated memory: 49544 KiB

[startup+0.701917 s]
/proc/loadavg: 1.96 2.02 2.04 4/221 15910
/proc/meminfo: memFree=24415140/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14087172 memory=293756 CPUtime=1.37 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 11614 0 0 0 113 24 0 0 20 0 15 0 51057597 14425264128 73439 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3521793 73439 3321 1 0 3483008 0
[pid=15896/tid=15897] ppid=15894 vsize=14087172 memory=33 CPUtime=0.61 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) R 15894 15894 14382 0 -1 4202560 6104 0 0 0 55 6 0 0 20 0 15 0 51057597 14425264128 73439 33554432000 4194304 4196468 140732371501280 139672107448800 139671740893926 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14087172 memory=-7816663703405220396 CPUtime=0.05 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) S 15894 15894 14382 0 -1 1077944384 56 0 0 0 2 3 0 0 20 0 15 0 51057598 14425264128 73439 33554432000 4194304 4196468 140732371501280 139671699045520 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14087172 memory=0 CPUtime=0.06 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) S 15894 15894 14382 0 -1 1077944384 66 0 0 0 2 4 0 0 20 0 15 0 51057598 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671697992720 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14087172 memory=16764 CPUtime=0.06 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) S 15894 15894 14382 0 -1 1077944384 62 0 0 0 2 4 0 0 20 0 15 0 51057598 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671696939920 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14087172 memory=2396 CPUtime=0.06 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) S 15894 15894 14382 0 -1 1077944384 63 0 0 0 2 4 0 0 20 0 15 0 51057598 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671695887120 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14087172 memory=1292 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 51057599 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671577241968 139672103225986 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14087172 memory=1732 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 51057599 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671576187936 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14087172 memory=1008 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 51057600 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671575135088 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14087172 memory=5404 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14087172 memory=796 CPUtime=0.13 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) R 15894 15894 14382 0 -1 4202560 1271 0 0 0 13 0 0 0 20 0 15 0 51057602 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671573031792 139672084732654 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14087172 memory=4616 CPUtime=0.16 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) R 15894 15894 14382 0 -1 4202560 1629 0 0 0 16 0 0 0 20 0 15 0 51057602 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671571959592 139672095504288 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14087172 memory=1424 CPUtime=0.18 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) R 15894 15894 14382 0 -1 1077944384 1038 0 0 0 18 0 0 0 20 0 15 0 51057602 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671570926192 139672103225986 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14087172 memory=10940 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14087172 memory=1200 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 51057603 14425264128 73505 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 1.37 s
Current children cumulated vsize: 14200300 KiB
Current children cumulated memory: 295208 KiB

[startup+1.50088 s]
/proc/loadavg: 1.96 2.02 2.04 5/221 15910
/proc/meminfo: memFree=24163560/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0

################
# More data... #
################

/proc/15896/task/15899/stat : 15899 (java) R 15894 15894 14382 0 -1 4202560 73084 0 0 0 836 274 0 0 20 0 15 0 51057598 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671697992608 139672083241211 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14089220 memory=1200 CPUtime=11.14 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) R 15894 15894 14382 0 -1 4202560 212092 0 0 0 836 278 0 0 20 0 15 0 51057598 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671696939920 139672087912614 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14089220 memory=1228 CPUtime=10.98 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) R 15894 15894 14382 0 -1 4202560 62350 0 0 0 821 277 0 0 20 0 15 0 51057598 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671695887016 139672095843047 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14089220 memory=1704 CPUtime=0.88 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 28633 0 0 0 86 2 0 0 20 0 15 0 51057599 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671577240288 139672103225045 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14089220 memory=1948 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 51057599 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671576187904 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14089220 memory=10420 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 51057600 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671575135104 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14089220 memory=15872 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14089220 memory=11732932 CPUtime=0.72 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 2978 0 0 0 72 0 0 0 20 0 15 0 51057602 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14089220 memory=6791534058613427641 CPUtime=0.73 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 2868 0 0 0 73 0 0 0 20 0 15 0 51057602 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14089220 memory=2340 CPUtime=0.35 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) S 15894 15894 14382 0 -1 1077944384 3261 0 0 0 35 0 0 0 20 0 15 0 51057602 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671570926192 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14089220 memory=928 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14089220 memory=1568 CPUtime=0.2 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1028 0 0 0 10 10 0 0 20 0 15 0 51057603 14427361280 2933233 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 339.09 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11734384 KiB

[startup+305.601 s]
/proc/loadavg: 2.45 2.12 2.08 6/221 15923
/proc/meminfo: memFree=12818952/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14089220 memory=11733004 CPUtime=345.02 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 596990 0 0 0 33365 1137 0 0 20 0 15 0 51057597 14427361280 2933251 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3522305 2933251 3380 1 0 3483520 0
[pid=15896/tid=15897] ppid=15894 vsize=14089220 memory=1452 CPUtime=291.82 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) S 15894 15894 14382 0 -1 1077944384 105657 0 0 0 29135 47 0 0 20 0 15 0 51057597 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139672107453856 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14089220 memory=11732932 CPUtime=12.54 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) R 15894 15894 14382 0 -1 4202560 83287 0 0 0 1011 243 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671699045720 139672096317825 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14089220 memory=1452 CPUtime=12.54 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) R 15894 15894 14382 0 -1 4202560 80455 0 0 0 980 274 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671697992920 139672096314491 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14089220 memory=11732828 CPUtime=12.56 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) R 15894 15894 14382 0 -1 4202560 217096 0 0 0 978 278 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671696940120 139672096314515 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14089220 memory=1452 CPUtime=12.43 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) R 15894 15894 14382 0 -1 4202560 68061 0 0 0 965 278 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671695887008 139672096311312 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14089220 memory=6791534058613427641 CPUtime=1.02 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 30903 0 0 0 99 3 0 0 20 0 15 0 51057599 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671577240512 139672103225045 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14089220 memory=1292 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 51057599 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671576188000 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14089220 memory=1732 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 51057600 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671575135104 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14089220 memory=1008 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14089220 memory=288230574492221466 CPUtime=0.72 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 2980 0 0 0 72 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14089220 memory=288230583166042426 CPUtime=0.73 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 2870 0 0 0 73 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14089220 memory=14977758669309581 CPUtime=0.35 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) S 15894 15894 14382 0 -1 1077944384 3297 0 0 0 35 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671570926192 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14089220 memory=14977758669309581 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14089220 memory=4100 CPUtime=0.2 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1028 0 0 0 10 10 0 0 20 0 15 0 51057603 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 345.02 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11734456 KiB

[startup+306.001 s]*
/proc/loadavg: 2.45 2.12 2.08 6/221 15923
/proc/meminfo: memFree=12818952/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14089220 memory=11733004 CPUtime=346.65 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 610109 0 0 0 33527 1138 0 0 20 0 15 0 51057597 14427361280 2933251 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3522305 2933251 3380 1 0 3483520 0
[pid=15896/tid=15897] ppid=15894 vsize=14089220 memory=6791534058613427641 CPUtime=291.82 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) S 15894 15894 14382 0 -1 1077944384 105657 0 0 0 29135 47 0 0 20 0 15 0 51057597 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139672107453856 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14089220 memory=4126316290023845779 CPUtime=12.95 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) R 15894 15894 14382 0 -1 4202560 85861 0 0 0 1052 243 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671699045720 139672096314503 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14089220 memory=5860704123658201174 CPUtime=12.96 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) R 15894 15894 14382 0 -1 4202560 83154 0 0 0 1021 275 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671697992920 139672096314491 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14089220 memory=7594587674001172330 CPUtime=12.96 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) R 15894 15894 14382 0 -1 4202560 218656 0 0 0 1018 278 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671696940120 139672096314491 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14089220 memory=7091290783109637209 CPUtime=12.84 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) R 15894 15894 14382 0 -1 4202560 74347 0 0 0 1006 278 0 0 20 0 15 0 51057598 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671695887008 139672096314612 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14089220 memory=0 CPUtime=1.02 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) S 15894 15894 14382 0 -1 1077944384 30903 0 0 0 99 3 0 0 20 0 15 0 51057599 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671577240512 139672103225045 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14089220 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 51057599 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671576188000 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14089220 memory=4856945695244118117 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 51057600 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671575135104 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14089220 memory=6226881142350500451 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14089220 memory=4420684795826484512 CPUtime=0.72 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 2980 0 0 0 72 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14089220 memory=139850966750848 CPUtime=0.73 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 2870 0 0 0 73 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14089220 memory=0 CPUtime=0.35 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) S 15894 15894 14382 0 -1 1077944384 3297 0 0 0 35 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671570926192 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14089220 memory=279701694395776 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14089220 memory=7160831573589846685 CPUtime=0.2 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1028 0 0 0 10 10 0 0 20 0 15 0 51057603 14427361280 2933251 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 346.65 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11734456 KiB

[startup+306.401 s]
/proc/loadavg: 2.45 2.12 2.08 6/221 15923
/proc/meminfo: memFree=12818952/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
[pid=15896] ppid=15894 vsize=14089220 memory=11733012 CPUtime=348.12 cores=1,3,5,7
/proc/15896/stat : 15896 (java) S 15894 15894 14382 0 -1 1077944320 635801 0 0 0 33672 1140 0 0 20 0 15 0 51057597 14427361280 2933253 33554432000 4194304 4196468 140732371501280 140732371483824 139672103214839 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
/proc/15896/statm: 3522305 2933253 3380 1 0 3483520 0
[pid=15896/tid=15897] ppid=15894 vsize=14089220 memory=6791534058613427641 CPUtime=291.82 cores=1,3,5,7
/proc/15896/task/15897/stat : 15897 (java) S 15894 15894 14382 0 -1 1077944384 105657 0 0 0 29135 47 0 0 20 0 15 0 51057597 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139672107453856 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15898] ppid=15894 vsize=14089220 memory=1008 CPUtime=13.31 cores=1,3,5,7
/proc/15896/task/15898/stat : 15898 (java) S 15894 15894 14382 0 -1 1077944384 92399 0 0 0 1088 243 0 0 20 0 15 0 51057598 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671699045520 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15899] ppid=15894 vsize=14089220 memory=5404 CPUtime=13.32 cores=1,3,5,7
/proc/15896/task/15899/stat : 15899 (java) S 15894 15894 14382 0 -1 1077944384 88265 0 0 0 1057 275 0 0 20 0 15 0 51057598 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671697992720 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15900] ppid=15894 vsize=14089220 memory=796 CPUtime=13.32 cores=1,3,5,7
/proc/15896/task/15900/stat : 15900 (java) S 15894 15894 14382 0 -1 1077944384 225962 0 0 0 1053 279 0 0 20 0 15 0 51057598 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671696939920 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15901] ppid=15894 vsize=14089220 memory=-3622645143214314312 CPUtime=13.21 cores=1,3,5,7
/proc/15896/task/15901/stat : 15901 (java) S 15894 15894 14382 0 -1 1077944384 80377 0 0 0 1042 279 0 0 20 0 15 0 51057598 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671695887120 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15902] ppid=15894 vsize=14089220 memory=1452 CPUtime=1.05 cores=1,3,5,7
/proc/15896/task/15902/stat : 15902 (java) R 15894 15894 14382 0 -1 4202560 31610 0 0 0 102 3 0 0 20 0 15 0 51057599 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671577240512 139672081585019 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15903] ppid=15894 vsize=14089220 memory=11732920 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15903/stat : 15903 (java) S 15894 15894 14382 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 51057599 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671576188000 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15904] ppid=15894 vsize=14089220 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15904/stat : 15904 (java) S 15894 15894 14382 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 15 0 51057600 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671575135104 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15905] ppid=15894 vsize=14089220 memory=4126316290023845779 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15905/stat : 15905 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671574083408 139672103233435 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15906] ppid=15894 vsize=14089220 memory=2240 CPUtime=0.72 cores=1,3,5,7
/proc/15896/task/15906/stat : 15906 (java) S 15894 15894 14382 0 -1 1077944384 2980 0 0 0 72 0 0 0 20 0 15 0 51057602 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671573031792 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15907] ppid=15894 vsize=14089220 memory=4124 CPUtime=0.73 cores=1,3,5,7
/proc/15896/task/15907/stat : 15907 (java) S 15894 15894 14382 0 -1 1077944384 2870 0 0 0 73 0 0 0 20 0 15 0 51057602 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671571978992 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15908] ppid=15894 vsize=14089220 memory=2196 CPUtime=0.35 cores=1,3,5,7
/proc/15896/task/15908/stat : 15908 (java) S 15894 15894 14382 0 -1 1077944384 3297 0 0 0 35 0 0 0 20 0 15 0 51057602 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671570926192 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15909] ppid=15894 vsize=14089220 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/15896/task/15909/stat : 15909 (java) S 15894 15894 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 51057602 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671569873632 139672103225045 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
[pid=15896/tid=15910] ppid=15894 vsize=14089220 memory=1292 CPUtime=0.2 cores=1,3,5,7
/proc/15896/task/15910/stat : 15910 (java) S 15894 15894 14382 0 -1 1077944384 1028 0 0 0 10 10 0 0 20 0 15 0 51057603 14427361280 2933253 33554432000 4194304 4196468 140732371501280 139671568820912 139672103225986 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7335936 140732371506305 140732371506481 140732371506481 140732371509199 0
Current children cumulated CPU time: 348.12 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11734464 KiB

[startup+306.501 s]
/proc/loadavg: 2.45 2.12 2.08 6/221 15923
/proc/meminfo: memFree=12818952/32770624 swapFree=67108860/67108860
[pid=15894] ppid=15891 vsize=113128 memory=1452 CPUtime=0 cores=1,3,5,7
/proc/15894/stat : 15894 (xcsp3-exec) S 15891 15894 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 51057596 115843072 363 33554432000 4194304 5098028 140735067939440 140735067937544 139885939835516 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 36319232 140735067948091 140735067948292 140735067948292 140735067951050 0
/proc/15894/statm: 28282 363 305 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

Child status: 1
Real time (s): 306.529
CPU time (s): 348.261
CPU user time (s): 336.772
CPU system time (s): 11.4887
CPU usage (%): 113.614
Max. virtual memory (cumulated for all children) (KiB): 14202348
Max. memory (cumulated for all children) (KiB): 11734464

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 336.772
system time used= 11.4887
maximum resident set size= 11733416
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 636466
page faults= 0
swaps= 0
block input operations= 0
block output operations= 704
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 16157
involuntary context switches= 647


# summary of solver processes directly reported to runsolver:
#   pid: 15894
#   total CPU time (s): 348.261
#   total CPU user time (s): 336.772
#   total CPU system time (s): 11.4887

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.90836 second user time and 3.38454 second system time

The end

Launcher Data

Begin job on node134 at 2018-07-23 10:35:44
IDJOB=4292235
IDBENCH=141310
IDSOLVER=2747
FILE ID=node134/4292235-1532334942
RUNJOBID= node134-1532328652-14414
PBS_JOBID= 21018997
Free space on /tmp= 55848 MiB

SOLVER NAME= Choco-solver 4.0.7 seq (493a269)
BENCH NAME= XCSP18/CrosswordDesign/CrosswordDesign-13-4-rom_c18.xml
COMMAND LINE= HOME/xcsp3-exec -seed RANDOMSEED -dir DIR -tl TIMEOUT -ml 11000 -p 1 BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4292235-1532334942/watcher-4292235-1532334942 -o /tmp/evaluation-result-4292235-1532334942/solver-4292235-1532334942 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node134-1532328652-14414 --watchdog 2560  HOME/xcsp3-exec -seed 226420064 -dir HOME -tl 2400 -ml 11000 -p 1 HOME/instance-4292235-1532334942.xml

TIME LIMIT= 2400 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 4

MD5SUM BENCH= 0b51c5bbf7274d342280acfb624bd8bf
RANDOM SEED=226420064

node134.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.68
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.68
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.68
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.68
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        24565656 kB
MemAvailable:   29211164 kB
Buffers:          188340 kB
Cached:          4721324 kB
SwapCached:            0 kB
Active:          4336184 kB
Inactive:        3390840 kB
Active(anon):    2767068 kB
Inactive(anon):    70304 kB
Active(file):    1569116 kB
Inactive(file):  3320536 kB
Unevictable:        7396 kB
Mlocked:            7396 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             55648 kB
Writeback:             0 kB
AnonPages:       2825088 kB
Mapped:            49532 kB
Shmem:             17056 kB
Slab:             171664 kB
SReclaimable:     143384 kB
SUnreclaim:        28280 kB
KernelStack:        3600 kB
PageTables:        10860 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    5132212 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2637824 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      120192 kB
DirectMap2M:    33425408 kB

Free space on /tmp at the end= 55828 MiB
End job on node134 at 2018-07-23 10:40:51