Skip to content

Instantly share code, notes, and snippets.

@zsrinivas
Created April 3, 2017 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zsrinivas/93c15e48c3133d9e9a79d364b07fbf4f to your computer and use it in GitHub Desktop.
Save zsrinivas/93c15e48c3133d9e9a79d364b07fbf4f to your computer and use it in GitHub Desktop.
set ns [new Simulator]
set f [open out.tr w]
set nf [open out.nam w]
$ns trace-all $f
$ns namtrace-all $nf
proc finish {} {
global f nf ns
$ns flush-trace
close $f
close $nf
exec nam out.nam &
exit 0
}
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
$ns duplex-link $n0 $n1 1Mb 10ms DropTail
$ns duplex-link $n1 $n2 1Mb 10ms DropTail
$ns duplex-link $n2 $n3 1Mb 10ms DropTail
$ns duplex-link $n3 $n4 1Mb 10ms DropTail
$ns duplex-link $n4 $n0 1Mb 10ms DropTail
#$ns queue-limit $n1 $n2 5
set udp0 [new Agent/UDP]
$ns attach-agent $n0 $udp0
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetsize_ 500
$cbr0 set interval_ 0.005
$cbr0 attach-agent $udp0
set sink [new Agent/Null]
$ns attach-agent $n2 $sink
$ns connect $udp0 $sink
$ns at 0.2 "$cbr0 start"
$ns at 4.5 "$cbr0 stop"
$ns at 5.0 "finish"
$ns run
set val(chan) Channel/WirelessChannel;
set val(prop) Propagation/TwoRayGround;
set val(netif) Phy/WirelessPhy;
set val(mac) Mac/802_11;
set val(ifq) Queue/DropTail/PriQueue;
set val(ll) LL;
set val(ant) Antenna/OmniAntenna;
set val(X) 1000;
set val(Y) 1000;
set val(ifqlen) 50;
set val(nn) 6;
set val(rp) DSDV;
set ns [new Simulator]
set f [open out.tr w]
$ns trace-all $f
set nf [open out.nam w]
$ns namtrace-all-wireless $nf $val(X) $val(Y)
set topo [new Topography]
$topo load_flatgrid $val(X) $val(Y)
set god_ [create-god $val(nn)]
$ns node-config -adhocRouting $val(rp) \
-llType $val(ll) \
-macType $val(mac) \
-ifqType $val(ifq) \
-ifqLen $val(ifqlen) \
-antType $val(ant) \
-propType $val(prop) \
-phyType $val(netif) \
-channelType $val(chan) \
-topoInstance $topo \
-agentTrace ON \
-routerTrace ON \
-macTrace OFF \
-movementTrace OFF
for { set i 0 } { $i< $val(nn) } { incr i } {set n($i) [$ns node]
$ns initial_node_pos $n($i) 40
$n($i) random-motion 0
}
$n(0) set x_ 100.0
$n(0) set y_ 100.0
$n(0) set z_ 000.0
$n(1) set x_ 200.0
$n(1) set y_ 200.0
$n(1) set z_ 000.0
$n(2) set x_ 300.0
$n(2) set y_ 200.0
$n(2) set z_ 000.0
$n(3) set x_ 400.0
$n(3) set y_ 300.0
$n(3) set z_ 000.0
$n(4) set x_ 500.0
$n(4) set y_ 300.0
$n(4) set z_ 000.0
$n(5) set x_ 600.0
$n(5) set y_ 400.0
$n(5) set z_ 000.0
$ns at 0.0 "$n(0) setdest 100.0 100.0 000.0"
$ns at 0.0 "$n(1) setdest 200.0 200.0 000.0"
$ns at 0.0 "$n(2) setdest 300.0 200.0 000.0"
$ns at 0.0 "$n(3) setdest 400.0 300.0 000.0"
$ns at 0.0 "$n(4) setdest 500.0 300.0 000.0"
$ns at 0.0 "$n(5) setdest 600.0 400.0 000.0"
set udp0 [new Agent/UDP]
$ns attach-agent $n(0) $udp0
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 500
$cbr0 set interval_ .005
$cbr0 attach-agent $udp0
set null0 [new Agent/Null]
$ns attach-agent $n(5) $null0
$ns connect $udp0 $null0
proc finish {} {
global ns nf f
$ns flush-trace
close $f
close $nf
exec nam -r 5m out.nam &
exit 0
}
$ns at 0.5 "$cbr0 start"
$ns at 3.0 "$cbr0 stop"
$ns at 5.0 "finish"
$ns run
##############################################################
###################www.ns2blogger.blogspot.in#################
###################ns2blogger@gmail.com#######################
#!/usr/bin/perl
use :strict;
if($#ARGV<0){
printf("Usage: <trace-file>\n");
exit 1;
}
# to open the given trace file
open(Trace, $ARGV[0]) or die "Cannot open the trace file";
my $sc = 0; # sending counter
my $rc = 0; # receiving counter
my $rp = 0;
my $mc =0;
my %pkt_fc = (); #packet forwarding counter
while(<Trace>){ # read one line in from the file
my @line = split; #split the line with delimin as space
if($line[3] eq "AGT" && $line[6] eq "cbr"){ # an application agent trace line
if($line[0] eq "s"){ # a packet sent by some data source
$sc++;
$pkt_fc{$line[5]} = 0; #define the forwarding couter for this pkt
}
if($line[0] eq "r"){ # a packet received by sink
$rc++;
$pkt_fc{$line[5]}++; # one more hop to complement
}
}
if($line[3] eq "MAC" && $line[6] eq "cbr")
{
if ($line[0] eq "s")
{ $mc++}
}
if($line[3] eq "RTR"){ # a routing agent trace lineOD
if($line[0] eq "f")
{
$rp++;
$pkt_fc{$line[5]}++;
}
}
}
close(Trace); #close the file
my $temp_rc =0;
my $pkt = 0;
foreach $pkt ( keys %pkt_fc )
{
$temp_rc += $pkt_fc{$pkt}; #the total forwarding times
}
if($rc > 0)
{
printf("sent packets= %d\n",$sc);
printf("received packets= %d\n",$rc);
printf("packets dropped=%d\n",$sc-$rc);
printf("routing agents=%d/n",$rp);
printf("routing overhead= %f\n",$rp/$sc*100);
printf("Packet delivery ratio %f\n",$rc/$sc);
printf("Average path length %f\n", $temp_rc/$rc);
}
#Command use to run perl script from terminal
#perl filename.p tracefilename.tr
#!/usr/bin/perl
use :strict;
if($#ARGV<0){
printf("Usage: <trace-file>\n");
exit 1;
}
# to open the given trace file
open(Trace, $ARGV[0]) or die "Cannot open the trace file";
my $sc = 0; # sending counter
my $rc = 0; # receiving counter
my $rp = 0;
my $mc =0;
my $d_udp = 0;
my $d_tcp = 0;
my %pkt_fc = (); #packet forwarding counter
while(<Trace>){ # read one line in from the file
my @line = split; #split the line with delimin as space
if($line[0] eq "d" && $line[4] eq "cbr"){
$d_udp++;
}
if($line[0] eq "d" && $line[4] eq "tcp"){
$d_tcp++;
}
}
printf("Dropped tcp length %f\n",$d_tcp);
printf("Dropped udp length %f\n",$d_udp);
BEGIN {
sSize=0;
startTime = 5.0;
stopTime = 0.1;
Tput = 0;
}
{
event = $1;
time = $2;
from = $3;
to = $4;
pkt = $5;
size = $6;
fid = $7;
src = $8;
dst = $9;
seqn = $10;
pid = $11;
if (event == "+") {
if(time < startTime) {
startTime = time;
}
}
if (event == "r") {
if(time > stopTime) {
stopTime = time;
}
sSize+=size;
}
Tput = (sSize/(stopTime-startTime))*(8/1000);
printf("%f\t%.2f\n",time,Tput);
}
END {
}
set ns [new Simulator]
set nf [open out.nam w]
$ns namtrace-all $nf
set nd [open out.tr w]
$ns trace-all $nd
proc finish {} {
global ns nf nd
$ns flush-trace
close $nf
close $nd
exec nam out.nam &
exit 0
}
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
set n5 [$ns node]
set n6 [$ns node]
$ns make-lan "$n0 $n1 $n2 $n3 $n4 $n5 $n6" 0.2Mb 40ms LL Queue/DropTail Mac/802_3
set tcp [new Agent/TCP]
$ns attach-agent $n0 $tcp
set sink [new Agent/TCPSink]
$ns attach-agent $n5 $sink
$ns connect $tcp $sink
set ftp [new Application/FTP]
$ftp attach-agent $tcp
$ns at 1.0 "$ftp start"
$ns at 5.0 "$ftp stop"
$ns at 5.5 "finish"
$ns run
5.302472 113.161081
5.338708 113.161081
5.341996 113.956405
5.341996 113.956405
5.345112 113.956405
5.381996 113.956405
5.384636 114.752997
5.384636 114.752997
5.387752 114.752997
set ns [new Simulator]
set nf [open prog3a.nam w]
$ns namtrace-all $nf
set nd [open prog3a.tr w]
$ns trace-all $nd
proc finish {} {
global ns nf nd
$ns flush-trace
close $nf
close $nd
exec nam prog3a.nam &
exit 0
}
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
$ns duplex-link $n0 $n1 1Mb 10ms DropTail
$ns duplex-link $n1 $n2 1Mb 10ms DropTail
$ns duplex-link $n2 $n3 1Mb 10ms DropTail
$ns duplex-link $n3 $n4 1Mb 10ms DropTail
set tcp [new Agent/TCP]
set sink [new Agent/TCPSink]
$ns attach-agent $n0 $tcp
$ns attach-agent $n4 $sink
$ns connect $tcp $sink
set ftp [new Application/FTP]
$ftp attach-agent $tcp
$ns at 0.2 "$ftp start"
$ns at 4.5 "$ftp stop"
$ns at 5.0 "finish"
$ns run
set ns [new Simulator]
set nf [open prog3b.nam w]
$ns namtrace-all $nf
set nd [open prog3b.tr w]
$ns trace-all $nd
proc finish {} {
global ns nf nd
$ns flush-trace
close $nf
close $nd
exec nam prog3b.nam &
exit 0
}
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
$ns duplex-link $n0 $n1 1Mb 10ms DropTail
$ns duplex-link $n1 $n2 1Mb 10ms DropTail
$ns duplex-link $n2 $n3 1Mb 10ms DropTail
$ns duplex-link $n3 $n4 1Mb 10ms DropTail
set tcp0 [new Agent/TCP]
set tcpsink0 [new Agent/TCPSink]
$ns attach-agent $n0 $tcp0
$ns attach-agent $n4 $tcpsink0
set telnet0 [new Application/Telnet]
$telnet0 attach-agent $tcp0
$ns connect $tcp0 $tcpsink0
$ns at 0.2 "$telnet0 start"
$ns at 4.5 "$telnet0 stop"
$ns at 5.8 "finish"
$ns run
BEGIN {
sSize =0 ;
startTime=5.0;
stopTime=0.1;
Tput=0;
}
{
event=$1;
time=$2;
from=$3;
to=$4;
pkt=$5;
size=$6;
fid=$7;
src=$8;
dst=$9;
seqn=$10;
pid=$11;
if(event == "+") {
if(time < startTime) { startTime=time; }
}
if(event == "r") {
if(time >stopTime) { stopTime =time; }
sSize+=size;
}
Tput=(sSize/(stopTime-startTime))*(8/1000);
printf("%f\t%f\n",time,Tput);
}
END {
}
EGIN {
PacketRcvd = 0;
Throughput = 0.0;
}
{
if(($1 == "r")&&($3 == "_3_")&&($4 == "AGT")&&($7 == "tcp")&&($8 > 1000))
{
PacketRcvd++;
}
}
END {
Throughput = ((PacketRcvd*1000*8) / (95.0*1000000));
printf("\nThe throughput is:%f\n", Throughput);
}
if {$argc != 1} {
error "Command: ns <ScriptName.tcl> <Number_of_Nodes>"
exit 0
}
set ns [new Simulator]
set tracefile [open s6.tr w]
$ns trace-all $tracefile
set namfile [open s6.nam w]
$ns namtrace-all-wireless $namfile 750 750
proc finish {} {
global ns tracefile namfile
$ns flush-trace
close $tracefile
close $namfile
exec nam s6.nam &
exec awk -f s6.awk s6.tr &
exit 0
}
#get the number of nodes value from the user
set val(nn) [ lindex $argv 0]
#create new topography object
set topo [new Topography]
$topo load_flatgrid 750 750
#Configure the nodes
$ns node-config -adhocRouting AODV \
-llType LL \
-macType Mac/802_11 \
-ifqType Queue/DropTail \
-channelType Channel/WirelessChannel \
-propType Propagation/TwoRayGround \
-antType Antenna/OmniAntenna \
-ifqLen 50 \
-phyType Phy/WirelessPhy \
-topoInstance $topo \
-agentTrace ON \
-routerTrace ON \
-macTrace OFF \
-movementTrace ON
#general operational descriptor storing the hop details in the network
set god_ [create-god $val(nn)]
#create mobile nodes
for {set i 0} {$i < $val(nn)} {incr i} {
set n($i) [$ns node]
}
#label node
$n(1) label "TCPSource"
$n(3) label "Sink"
#Randomly placing the nodes
for {set i 0} {$i < $val(nn)} {incr i} {
set XX [expr rand()*750]
set YY [expr rand()*750]
$n($i) set X_ $XX
$n($i) set Y_ $YY
}
#define the initial position for the nodes
for {set i 0} {$i < $val(nn)} {incr i} {
$ns initial_node_pos $n($i) 100
}
#define the destination procedure to set the destination to each node
proc destination {} {
global ns val n
set now [$ns now]
set time 5.0
for {set i 0} {$i < $val(nn)} {incr i} {
set XX [expr rand()*750]
set YY [expr rand()*750]
$ns at [expr $now + $time] "$n($i) setdest $XX $YY 20.0"
}
$ns at [expr $now + $time] "destination"
}
set tcp [new Agent/TCP]
$ns attach-agent $n(1) $tcp
set ftp [new Application/FTP]
$ftp attach-agent $tcp
set sink [new Agent/TCPSink]
$ns attach-agent $n(3) $sink
$ns connect $tcp $sink
$ns at 0.0 "destination"
$ns at 1.0 "$ftp start"
$ns at 100 "finish"
$ns run
set val(chan) Channel/WirelessChannel;
set val(prop) Propagation/TwoRayGround;
set val(netif) Phy/WirelessPhy;
set val(mac) Mac/802_11;
set val(ifq) Queue/DropTail/PriQueue;
set val(ll) LL;
set val(ant) Antenna/OmniAntenna;
set val(X) 1000;
set val(Y) 1000;
set val(ifqlen) 50;
set val(nn) 6;
set val(rp) AODV;
set ns [new Simulator]
set f [open out.tr w]
$ns trace-all $f
set nf [open out.nam w]
$ns namtrace-all-wireless $nf $val(X) $val(Y)
set topo [new Topography]
$topo load_flatgrid $val(X) $val(Y)
set god_ [create-god $val(nn)]
$ns node-config -adhocRouting $val(rp) \
-llType $val(ll) \
-macType $val(mac) \
-ifqType $val(ifq) \
-ifqLen $val(ifqlen) \
-antType $val(ant) \
-propType $val(prop) \
-phyType $val(netif) \
-channelType $val(chan) \
-topoInstance $topo \
-agentTrace ON \
-routerTrace ON \
-macTrace OFF \
-movementTrace OFF
for { set i 0 } { $i< $val(nn) } { incr i } {set n($i) [$ns node]
$ns initial_node_pos $n($i) 40
$n($i) random-motion 0
}
$n(0) set x_ 100.0
$n(0) set y_ 100.0
$n(0) set z_ 000.0
$n(1) set x_ 200.0
$n(1) set y_ 200.0
$n(1) set z_ 000.0
$n(2) set x_ 300.0
$n(2) set y_ 200.0
$n(2) set z_ 000.0
$n(3) set x_ 400.0
$n(3) set y_ 300.0
$n(3) set z_ 000.0
$n(4) set x_ 500.0
$n(4) set y_ 300.0
$n(4) set z_ 000.0
$n(5) set x_ 600.0
$n(5) set y_ 400.0
$n(5) set z_ 000.0
$ns at 0.0 "$n(0) setdest 100.0 100.0 000.0"
$ns at 0.0 "$n(1) setdest 200.0 200.0 000.0"
$ns at 0.0 "$n(2) setdest 300.0 200.0 000.0"
$ns at 0.0 "$n(3) setdest 400.0 300.0 000.0"
$ns at 0.0 "$n(4) setdest 500.0 300.0 000.0"
$ns at 0.0 "$n(5) setdest 600.0 400.0 000.0"
set udp0 [new Agent/UDP]
$ns attach-agent $n(0) $udp0
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 500
$cbr0 set interval_ .005
$cbr0 attach-agent $udp0
set null0 [new Agent/Null]
$ns attach-agent $n(5) $null0
$ns connect $udp0 $null0
proc finish {} {
global ns nf f
$ns flush-trace
close $f
close $nf
exec nam -r 5m out.nam &
exit 0
}
$ns at 0.5 "$cbr0 start"
$ns at 3.0 "$cbr0 stop"
$ns at 5.0 "finish"
$ns run
# Create scheduler
#Create an event scheduler wit multicast turned on
set ns [new Simulator -multicast on]
#$ns multicast
#Turn on Tracing
set tf [open output.tr w]
$ns trace-all $tf
# Turn on nam Tracing
set fd [open mcast.nam w]
$ns namtrace-all $fd
# Create nodes
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
set n5 [$ns node]
set n6 [$ns node]
set n7 [$ns node]
# Create links
$ns duplex-link $n0 $n2 1.5Mb 10ms DropTail
$ns duplex-link $n1 $n2 1.5Mb 10ms DropTail
$ns duplex-link $n2 $n3 1.5Mb 10ms DropTail
$ns duplex-link $n3 $n4 1.5Mb 10ms DropTail
$ns duplex-link $n3 $n7 1.5Mb 10ms DropTail
$ns duplex-link $n4 $n5 1.5Mb 10ms DropTail
$ns duplex-link $n4 $n6 1.5Mb 10ms DropTail
# Routing protocol: say distance vector
#Protocols: CtrMcast, DM, ST, BST
set mproto DM
set mrthandle [$ns mrtproto $mproto {}]
# Allocate group addresses
set group1 [Node allocaddr]
set group2 [Node allocaddr]
# UDP Transport agent for the traffic source
set udp0 [new Agent/UDP]
$ns attach-agent $n0 $udp0
$udp0 set dst_addr_ $group1
$udp0 set dst_port_ 0
set cbr1 [new Application/Traffic/CBR]
$cbr1 attach-agent $udp0
# Transport agent for the traffic source
set udp1 [new Agent/UDP]
$ns attach-agent $n1 $udp1
$udp1 set dst_addr_ $group2
$udp1 set dst_port_ 0
set cbr2 [new Application/Traffic/CBR]
$cbr2 attach-agent $udp1
# Create receiver
set rcvr1 [new Agent/Null]
$ns attach-agent $n5 $rcvr1
$ns at 1.0 "$n5 join-group $rcvr1 $group1"
set rcvr2 [new Agent/Null]
$ns attach-agent $n6 $rcvr2
$ns at 1.5 "$n6 join-group $rcvr2 $group1"
set rcvr3 [new Agent/Null]
$ns attach-agent $n7 $rcvr3
$ns at 2.0 "$n7 join-group $rcvr3 $group1"
set rcvr4 [new Agent/Null]
$ns attach-agent $n5 $rcvr1
$ns at 2.5 "$n5 join-group $rcvr4 $group2"
set rcvr5 [new Agent/Null]
$ns attach-agent $n6 $rcvr2
$ns at 3.0 "$n6 join-group $rcvr5 $group2"
set rcvr6 [new Agent/Null]
$ns attach-agent $n7 $rcvr3
$ns at 3.5 "$n7 join-group $rcvr6 $group2"
$ns at 4.0 "$n5 leave-group $rcvr1 $group1"
$ns at 4.5 "$n6 leave-group $rcvr2 $group1"
$ns at 5.0 "$n7 leave-group $rcvr3 $group1"
$ns at 5.5 "$n5 leave-group $rcvr4 $group2"
$ns at 6.0 "$n6 leave-group $rcvr5 $group2"
$ns at 6.5 "$n7 leave-group $rcvr6 $group2"
# Schedule events
$ns at 0.5 "$cbr1 start"
$ns at 9.5 "$cbr1 stop"
$ns at 0.5 "$cbr2 start"
$ns at 9.5 "$cbr2 stop"
#post-processing
$ns at 10.0 "finish"
proc finish {} {
global ns tf
$ns flush-trace
close $tf
exec nam mcast.nam &
exit 0
}
# For nam
#Colors for packets from two mcast groups
$ns color 10 red
$ns color 11 green
$ns color 30 purple
$ns color 31 green
# Manual layout: order of the link is significant!
#$ns duplex-link-op $n0 $n1 orient right
#$ns duplex-link-op $n0 $n2 orient right-up
#$ns duplex-link-op $n0 $n3 orient right-down
# Show queue on simplex link n0->n1
#$ns duplex-link-op $n2 $n3 queuePos 0.5
# Group 0 source
$udp0 set fid_ 10
$n0 color red
$n0 label "Source 1"
# Group 1 source
$udp1 set fid_ 11
$n1 color green
$n1 label "Source 2"
$n5 label "Receiver 1"
$n5 color blue
$n6 label "Receiver 2"
$n6 color blue
$n7 label "Receiver 3"
$n7 color blue
#$n2 add-mark m0 red
#$n2 delete-mark m0"
# Animation rate
$ns set-animation-rate 3.0ms
$ns run
#!/usr/bin/awk -f
BEGIN{
cbrPkt=0;
tcpPkt=0;
}
{
if(($1 == "d")&&($5 == "cbr")) {
cbrPkt = cbrPkt + 1;
}
if(($1 == "d")&&($5 == "tcp")) {
tcpPkt = tcpPkt + 1;
}
}
END {
printf "\nNo. of CBR Packets Dropped %d", cbrPkt;
printf "\nNo. of TCP Packets Dropped %d\n", tcpPkt;
}
0.00000 1 0 7 0 cwnd_ 1.000
0.96498 1 0 7 0 cwnd_ 2.000
0.96498 1 0 7 0 cwnd_ 3.000
1.42995 1 0 7 0 cwnd_ 4.000
1.43795 1 0 7 0 cwnd_ 5.000
1.44595 1 0 7 0 cwnd_ 6.000
1.89493 1 0 7 0 cwnd_ 7.000
1.90293 1 0 7 0 cwnd_ 8.000
1.91093 1 0 7 0 cwnd_ 9.000
1.91893 1 0 7 0 cwnd_ 10.000
1.92693 1 0 7 0 cwnd_ 11.000
1.94101 1 0 7 0 cwnd_ 12.000
2.35990 1 0 7 0 cwnd_ 13.000
2.36790 1 0 7 0 cwnd_ 14.000
2.37590 1 0 7 0 cwnd_ 15.000
2.38390 1 0 7 0 cwnd_ 16.000
2.39190 1 0 7 0 cwnd_ 17.000
2.39990 1 0 7 0 cwnd_ 18.000
2.40790 1 0 7 0 cwnd_ 19.000
2.41590 1 0 7 0 cwnd_ 20.000
2.59239 1 0 7 0 cwnd_ 20.050
2.60039 1 0 7 0 cwnd_ 20.100
2.60839 1 0 7 0 cwnd_ 20.150
2.61639 1 0 7 0 cwnd_ 20.200
2.62439 1 0 7 0 cwnd_ 20.250
2.63239 1 0 7 0 cwnd_ 20.300
2.64039 1 0 7 0 cwnd_ 20.350
2.64839 1 0 7 0 cwnd_ 20.400
2.65639 1 0 7 0 cwnd_ 20.450
2.66439 1 0 7 0 cwnd_ 20.500
2.67239 1 0 7 0 cwnd_ 20.550
2.68039 1 0 7 0 cwnd_ 20.600
2.68839 1 0 7 0 cwnd_ 20.650
2.69639 1 0 7 0 cwnd_ 20.700
2.70439 1 0 7 0 cwnd_ 20.750
2.71239 1 0 7 0 cwnd_ 20.800
2.72039 1 0 7 0 cwnd_ 20.850
2.72915 1 0 7 0 cwnd_ 20.900
2.73715 1 0 7 0 cwnd_ 20.950
2.74515 1 0 7 0 cwnd_ 21.000
3.05737 1 0 7 0 cwnd_ 21.048
3.06537 1 0 7 0 cwnd_ 21.095
3.07337 1 0 7 0 cwnd_ 21.143
3.08137 1 0 7 0 cwnd_ 21.190
3.08937 1 0 7 0 cwnd_ 21.238
3.09737 1 0 7 0 cwnd_ 21.286
3.10537 1 0 7 0 cwnd_ 21.333
3.11337 1 0 7 0 cwnd_ 21.381
3.12137 1 0 7 0 cwnd_ 21.429
3.12937 1 0 7 0 cwnd_ 21.476
3.13737 1 0 7 0 cwnd_ 21.524
3.14537 1 0 7 0 cwnd_ 21.571
3.15337 1 0 7 0 cwnd_ 21.619
3.16137 1 0 7 0 cwnd_ 21.667
3.16937 1 0 7 0 cwnd_ 21.714
3.17737 1 0 7 0 cwnd_ 21.762
3.18537 1 0 7 0 cwnd_ 21.810
3.19413 1 0 7 0 cwnd_ 21.857
3.20213 1 0 7 0 cwnd_ 21.905
3.21013 1 0 7 0 cwnd_ 21.952
3.28986 1 0 7 0 cwnd_ 21.998
3.29786 1 0 7 0 cwnd_ 22.043
5.49976 1 0 7 0 cwnd_ 1.000
5.49976 1 0 7 0 cwnd_ 2.000
0.00000 2 0 8 0 cwnd_ 1.000
1.22097 2 0 8 0 cwnd_ 2.000
1.45021 2 0 8 0 cwnd_ 3.000
1.45084 2 0 8 0 cwnd_ 4.000
1.69870 2 0 8 0 cwnd_ 5.000
1.69933 2 0 8 0 cwnd_ 6.000
1.69997 2 0 8 0 cwnd_ 7.000
1.70060 2 0 8 0 cwnd_ 8.000
1.93118 2 0 8 0 cwnd_ 9.000
1.93182 2 0 8 0 cwnd_ 10.000
1.93246 2 0 8 0 cwnd_ 11.000
1.93309 2 0 8 0 cwnd_ 12.000
1.93373 2 0 8 0 cwnd_ 13.000
1.93436 2 0 8 0 cwnd_ 14.000
1.93500 2 0 8 0 cwnd_ 15.000
1.93564 2 0 8 0 cwnd_ 16.000
2.19567 2 0 8 0 cwnd_ 17.000
2.19631 2 0 8 0 cwnd_ 18.000
2.19694 2 0 8 0 cwnd_ 19.000
2.19758 2 0 8 0 cwnd_ 20.000
2.19822 2 0 8 0 cwnd_ 20.050
2.19885 2 0 8 0 cwnd_ 20.100
2.19949 2 0 8 0 cwnd_ 20.150
2.20012 2 0 8 0 cwnd_ 20.199
2.20076 2 0 8 0 cwnd_ 20.249
2.21051 2 0 8 0 cwnd_ 20.298
2.21115 2 0 8 0 cwnd_ 20.347
2.21178 2 0 8 0 cwnd_ 20.397
2.21242 2 0 8 0 cwnd_ 20.446
2.21306 2 0 8 0 cwnd_ 20.494
2.42943 2 0 8 0 cwnd_ 10.000
2.72465 2 0 8 0 cwnd_ 10.100
3.18465 2 0 8 0 cwnd_ 1.000
3.41411 2 0 8 0 cwnd_ 2.000
3.64660 2 0 8 0 cwnd_ 3.000
3.64724 2 0 8 0 cwnd_ 4.000
3.87909 2 0 8 0 cwnd_ 5.000
3.87972 2 0 8 0 cwnd_ 5.200
3.88036 2 0 8 0 cwnd_ 5.392
3.88100 2 0 8 0 cwnd_ 5.578
4.11158 2 0 8 0 cwnd_ 5.757
4.11221 2 0 8 0 cwnd_ 5.931
4.11285 2 0 8 0 cwnd_ 6.099
4.11348 2 0 8 0 cwnd_ 6.263
4.11412 2 0 8 0 cwnd_ 6.423
4.34406 2 0 8 0 cwnd_ 6.579
4.34470 2 0 8 0 cwnd_ 6.731
4.34534 2 0 8 0 cwnd_ 6.879
4.34597 2 0 8 0 cwnd_ 7.025
4.34661 2 0 8 0 cwnd_ 7.167
4.34724 2 0 8 0 cwnd_ 7.306
4.57655 2 0 8 0 cwnd_ 7.443
4.57719 2 0 8 0 cwnd_ 7.578
4.57782 2 0 8 0 cwnd_ 7.710
4.57846 2 0 8 0 cwnd_ 7.839
4.57910 2 0 8 0 cwnd_ 7.967
4.57973 2 0 8 0 cwnd_ 8.092
4.58037 2 0 8 0 cwnd_ 8.216
4.80904 2 0 8 0 cwnd_ 8.338
4.80968 2 0 8 0 cwnd_ 8.458
4.81031 2 0 8 0 cwnd_ 8.576
4.81095 2 0 8 0 cwnd_ 8.693
4.81158 2 0 8 0 cwnd_ 8.808
4.81222 2 0 8 0 cwnd_ 8.921
4.81286 2 0 8 0 cwnd_ 9.033
4.81349 2 0 8 0 cwnd_ 9.144
5.04153 2 0 8 0 cwnd_ 9.253
5.04216 2 0 8 0 cwnd_ 9.361
5.04280 2 0 8 0 cwnd_ 9.468
5.04344 2 0 8 0 cwnd_ 9.574
5.04407 2 0 8 0 cwnd_ 9.678
5.04471 2 0 8 0 cwnd_ 9.782
5.04534 2 0 8 0 cwnd_ 9.884
5.04598 2 0 8 0 cwnd_ 9.985
5.04662 2 0 8 0 cwnd_ 10.085
5.32662 2 0 8 0 cwnd_ 1.000
BEGIN {
}
{
if($6=="cwnd_") {
printf("%f\t%f\n",$1,$7);
}
}
END {
}
set ns [new Simulator]
set nf [open prog7.nam w]
$ns namtrace-all $nf
set nd [open prog7.tr w]
$ns trace-all $nd
$ns color 1 Blue
$ns color 2 Red
proc finish { } {
global ns nf nd
$ns flush-trace
close $nf
close $nd
exec nam prog7.nam &
exit 0
}
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]
set n5 [$ns node]
set n6 [$ns node]
set n7 [$ns node]
set n8 [$ns node]
$n7 shape box
$n7 color Blue
$n8 shape hexagon
$n8 color Red
$ns duplex-link $n1 $n0 2Mb 10ms DropTail
$ns duplex-link $n2 $n0 2Mb 10ms DropTail
$ns duplex-link $n0 $n3 1Mb 20ms DropTail
$ns make-lan "$n3 $n4 $n5 $n6 $n7 $n8" 512Kb 40ms LL
Queue/DropTail Mac/802_3
$ns duplex-link-op $n1 $n0 orient right-down
$ns duplex-link-op $n2 $n0 orient right-up
$ns duplex-link-op $n0 $n3 orient right
$ns queue-limit $n0 $n3 20
set tcp1 [new Agent/TCP/Vegas]
$ns attach-agent $n1 $tcp1
set sink1 [new Agent/TCPSink]
$ns attach-agent $n7 $sink1
$ns connect $tcp1 $sink1
$tcp1 set class_ 1
$tcp1 set packetsize_ 55
set ftp1 [new Application/FTP]
$ftp1 attach-agent $tcp1
set tfile [open cwnd.tr w]
$tcp1 attach $tfile
$tcp1 trace cwnd_
set tcp2 [new Agent/TCP/Reno]
$ns attach-agent $n2 $tcp2
set sink2 [new Agent/TCPSink]
$ns attach-agent $n8 $sink2
$ns connect $tcp2 $sink2
$tcp2 set class_ 2
$tcp2 set packetSize_ 55
set ftp2 [new Application/FTP]
$ftp2 attach-agent $tcp2
set tfile2 [open cwnd2.tr w]
$tcp2 attach $tfile2
$tcp2 trace cwnd_
$ns at 0.5 "$ftp1 start"
$ns at 1.0 "$ftp2 start"
$ns at 5.0 "$ftp2 stop"
$ns at 5.0 "$ftp1 stop"
$ns at 5.5 "finish"
$ns run
This file has been truncated, but you can view the full file.
n -t 0 -s 0 -S DLABEL -l "Source 1" -L ""
n -t 0 -s 1 -S DLABEL -l "Source 2" -L ""
n -t 0 -s 5 -S DLABEL -l "Receiver 1" -L ""
n -t 0 -s 6 -S DLABEL -l "Receiver 2" -L ""
n -t 0 -s 7 -S DLABEL -l "Receiver 3" -L ""
v -t 0 set_rate_ext 0.0030000000000000001 1
V -t * -v 1.0a5 -a 0
A -t * -n 1 -p 0 -o 0x7fffffff -c 30 -a 1
A -t * -h 1 -m 1073741823 -s 0
c -t * -i 31 -n green
c -t * -i 10 -n red
c -t * -i 11 -n green
c -t * -i 30 -n purple
n -t * -a 4 -s 4 -S UP -v circle -c black -i black
n -t * -a 0 -s 0 -S UP -v circle -c red -i red
n -t * -a 5 -s 5 -S UP -v circle -c blue -i blue
n -t * -a 1 -s 1 -S UP -v circle -c green -i green
n -t * -a 6 -s 6 -S UP -v circle -c blue -i blue
n -t * -a 2 -s 2 -S UP -v circle -c black -i black
n -t * -a 7 -s 7 -S UP -v circle -c blue -i blue
n -t * -a 3 -s 3 -S UP -v circle -c black -i black
l -t * -s 0 -d 2 -S UP -r 1500000 -D 0.01 -c black
l -t * -s 1 -d 2 -S UP -r 1500000 -D 0.01 -c black
l -t * -s 2 -d 3 -S UP -r 1500000 -D 0.01 -c black
l -t * -s 3 -d 4 -S UP -r 1500000 -D 0.01 -c black
l -t * -s 3 -d 7 -S UP -r 1500000 -D 0.01 -c black
l -t * -s 4 -d 5 -S UP -r 1500000 -D 0.01 -c black
l -t * -s 4 -d 6 -S UP -r 1500000 -D 0.01 -c black
+ -t 0.5 -s 0 -d 2 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.5 -s 0 -d 2 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.5 -s 0 -d 2 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.5 -s 1 -d 2 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
- -t 0.5 -s 1 -d 2 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.5 -s 1 -d 2 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.50375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.50375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.50375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.50375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
- -t 0.50375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.50375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.5075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.5075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.5075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.5075 -s 1 -d 2 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
- -t 0.5075 -s 1 -d 2 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.5075 -s 1 -d 2 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.51112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.51112 -s 2 -d 1 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.51112 -s 2 -d 1 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.51112 -s 2 -d 1 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.51112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.51112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.51112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.51112 -s 1 -d 2 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.51112 -s 2 -d 3 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.51112 -s 2 -d 0 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
- -t 0.51112 -s 2 -d 0 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.51112 -s 2 -d 0 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.51125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.51125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.51125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.51125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
- -t 0.51125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.51125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.51224 -s 2 -d 3 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.51224 -s 2 -d 3 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.51487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.51487 -s 2 -d 1 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.51487 -s 2 -d 1 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.51487 -s 2 -d 1 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.51487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.51487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.51487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.51487 -s 1 -d 2 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.51487 -s 2 -d 3 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.51487 -s 2 -d 0 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
- -t 0.51487 -s 2 -d 0 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.51487 -s 2 -d 0 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.515 -s 0 -d 2 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.515 -s 0 -d 2 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.515 -s 0 -d 2 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.515 -s 1 -d 2 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
- -t 0.515 -s 1 -d 2 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.515 -s 1 -d 2 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.51599 -s 2 -d 3 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.51599 -s 2 -d 3 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.51862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.51862 -s 2 -d 1 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.51862 -s 2 -d 1 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.51862 -s 2 -d 1 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.51862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.51862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.51862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.51862 -s 1 -d 2 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.51862 -s 2 -d 3 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.51862 -s 2 -d 0 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
- -t 0.51862 -s 2 -d 0 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.51862 -s 2 -d 0 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.51875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.51875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.51875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.51875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
- -t 0.51875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.51875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.51974 -s 2 -d 3 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.51974 -s 2 -d 3 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.52224 -s 2 -d 1 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.52224 -s 1 -d 2 -p prune -e 80 -c 30 -i 12 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 0.52224 -s 1 -d 2 -p prune -e 80 -c 30 -i 12 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 0.52224 -s 1 -d 2 -p prune -e 80 -c 30 -i 12 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.52224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.52224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.52224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.52224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.52224 -s 3 -d 7 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.52224 -s 3 -d 7 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.52224 -s 3 -d 7 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52224 -s 2 -d 0 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.52224 -s 0 -d 2 -p prune -e 80 -c 30 -i 13 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 0.52224 -s 0 -d 2 -p prune -e 80 -c 30 -i 13 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 0.52224 -s 0 -d 2 -p prune -e 80 -c 30 -i 13 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.52237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.52237 -s 2 -d 1 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.52237 -s 2 -d 1 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.52237 -s 2 -d 1 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.52237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.52237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.52237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52237 -s 1 -d 2 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.52237 -s 2 -d 3 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.52237 -s 2 -d 0 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
- -t 0.52237 -s 2 -d 0 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.52237 -s 2 -d 0 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.5225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
+ -t 0.5225 -s 1 -d 2 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
- -t 0.522666666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
h -t 0.522666666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.522666666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
h -t 0.522666666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52336 -s 2 -d 3 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.52336 -s 3 -d 4 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.52336 -s 3 -d 7 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
- -t 0.52336 -s 3 -d 4 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.52336 -s 3 -d 4 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.52336 -s 3 -d 7 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.52336 -s 3 -d 7 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.52349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.52349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.52599 -s 2 -d 1 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.52599 -s 1 -d 2 -p prune -e 80 -c 30 -i 16 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 0.52599 -s 1 -d 2 -p prune -e 80 -c 30 -i 16 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 0.52599 -s 1 -d 2 -p prune -e 80 -c 30 -i 16 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.52599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.52599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.52599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.52599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.52599 -s 3 -d 7 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.52599 -s 3 -d 7 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.52599 -s 3 -d 7 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52599 -s 2 -d 0 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.52599 -s 0 -d 2 -p prune -e 80 -c 30 -i 17 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 0.52599 -s 0 -d 2 -p prune -e 80 -c 30 -i 17 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 0.52599 -s 0 -d 2 -p prune -e 80 -c 30 -i 17 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.52612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.52612 -s 2 -d 1 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.52612 -s 2 -d 1 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.52612 -s 2 -d 1 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.52612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.52612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.52612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52612 -s 1 -d 2 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.52612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.52612 -s 2 -d 0 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
- -t 0.52612 -s 2 -d 0 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.52612 -s 2 -d 0 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.52625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
+ -t 0.52625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
- -t 0.526416666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
h -t 0.526416666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.526416666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
h -t 0.526416666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52711 -s 2 -d 3 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.52711 -s 3 -d 4 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.52711 -s 3 -d 7 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
- -t 0.52711 -s 3 -d 4 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.52711 -s 3 -d 4 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.52711 -s 3 -d 7 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.52711 -s 3 -d 7 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.52724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.52724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.52974 -s 2 -d 1 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.52974 -s 1 -d 2 -p prune -e 80 -c 30 -i 20 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 0.52974 -s 1 -d 2 -p prune -e 80 -c 30 -i 20 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 0.52974 -s 1 -d 2 -p prune -e 80 -c 30 -i 20 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.52974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.52974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.52974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.52974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.52974 -s 3 -d 7 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.52974 -s 3 -d 7 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.52974 -s 3 -d 7 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52974 -s 2 -d 0 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.52974 -s 0 -d 2 -p prune -e 80 -c 30 -i 21 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 0.52974 -s 0 -d 2 -p prune -e 80 -c 30 -i 21 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 0.52974 -s 0 -d 2 -p prune -e 80 -c 30 -i 21 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.52987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.52987 -s 2 -d 1 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.52987 -s 2 -d 1 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.52987 -s 2 -d 1 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.52987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.52987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.52987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.52987 -s 1 -d 2 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.52987 -s 2 -d 3 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.52987 -s 2 -d 0 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
- -t 0.52987 -s 2 -d 0 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.52987 -s 2 -d 0 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.53 -s 0 -d 2 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
+ -t 0.53 -s 1 -d 2 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
- -t 0.530166666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
h -t 0.530166666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.530166666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
h -t 0.530166666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53086 -s 2 -d 3 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.53086 -s 3 -d 4 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.53086 -s 3 -d 7 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
- -t 0.53086 -s 3 -d 4 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.53086 -s 3 -d 4 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.53086 -s 3 -d 7 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.53086 -s 3 -d 7 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.53099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.53099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.532666666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 12 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.532666666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 13 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.53336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.53336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.53336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.53336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.53336 -s 4 -d 6 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
- -t 0.53336 -s 4 -d 6 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
h -t 0.53336 -s 4 -d 6 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53336 -s 3 -d 7 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.53336 -s 7 -d 3 -p prune -e 80 -c 30 -i 24 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.53336 -s 7 -d 3 -p prune -e 80 -c 30 -i 24 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.53336 -s 7 -d 3 -p prune -e 80 -c 30 -i 24 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.53349 -s 2 -d 1 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.53349 -s 1 -d 2 -p prune -e 80 -c 30 -i 25 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 0.53349 -s 1 -d 2 -p prune -e 80 -c 30 -i 25 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 0.53349 -s 1 -d 2 -p prune -e 80 -c 30 -i 25 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.53349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.53349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.53349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.53349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.53349 -s 3 -d 7 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.53349 -s 3 -d 7 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.53349 -s 3 -d 7 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53349 -s 2 -d 0 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.53349 -s 0 -d 2 -p prune -e 80 -c 30 -i 26 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 0.53349 -s 0 -d 2 -p prune -e 80 -c 30 -i 26 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 0.53349 -s 0 -d 2 -p prune -e 80 -c 30 -i 26 -a 30 -x {0.0 2.0 -1 ------- null}
+ -t 0.53375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
+ -t 0.53375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
r -t 0.533786666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
+ -t 0.533786666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
- -t 0.533786666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
h -t 0.533786666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.533786666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
+ -t 0.533786666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
- -t 0.533916666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
h -t 0.533916666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.533916666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
h -t 0.533916666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53448 -s 3 -d 4 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.53448 -s 4 -d 5 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.53448 -s 4 -d 6 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
r -t 0.53448 -s 3 -d 7 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.53448 -s 7 -d 3 -p prune -e 80 -c 30 -i 29 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.53448 -s 7 -d 3 -p prune -e 80 -c 30 -i 29 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.53448 -s 7 -d 3 -p prune -e 80 -c 30 -i 29 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.53448 -s 4 -d 5 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.53448 -s 4 -d 5 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.53448 -s 4 -d 6 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
h -t 0.53448 -s 4 -d 6 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.53461 -s 2 -d 3 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.53461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.53461 -s 3 -d 7 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
- -t 0.53461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.53461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.53461 -s 3 -d 7 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.53461 -s 3 -d 7 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.534906666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
h -t 0.534906666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.536416666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 16 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.536416666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 17 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.53711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.53711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.53711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.53711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.53711 -s 4 -d 6 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
- -t 0.53711 -s 4 -d 6 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
h -t 0.53711 -s 4 -d 6 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53711 -s 3 -d 7 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.53711 -s 7 -d 3 -p prune -e 80 -c 30 -i 30 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.53711 -s 7 -d 3 -p prune -e 80 -c 30 -i 30 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.53711 -s 7 -d 3 -p prune -e 80 -c 30 -i 30 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.53724 -s 2 -d 1 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.53724 -s 1 -d 2 -p prune -e 80 -c 30 -i 31 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 0.53724 -s 1 -d 2 -p prune -e 80 -c 30 -i 31 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 0.53724 -s 1 -d 2 -p prune -e 80 -c 30 -i 31 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.53724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.53724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.53724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.53724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.53724 -s 3 -d 7 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.53724 -s 3 -d 7 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.53724 -s 3 -d 7 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53724 -s 2 -d 0 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.53724 -s 0 -d 2 -p prune -e 80 -c 30 -i 32 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 0.53724 -s 0 -d 2 -p prune -e 80 -c 30 -i 32 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 0.53724 -s 0 -d 2 -p prune -e 80 -c 30 -i 32 -a 30 -x {0.0 2.0 -1 ------- null}
+ -t 0.5375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
+ -t 0.5375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
r -t 0.537536666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
+ -t 0.537536666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
- -t 0.537536666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
h -t 0.537536666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.537536666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
+ -t 0.537536666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
- -t 0.537666666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
h -t 0.537666666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.537666666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
h -t 0.537666666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.53823 -s 3 -d 4 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.53823 -s 4 -d 5 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.53823 -s 4 -d 6 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
r -t 0.53823 -s 3 -d 7 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.53823 -s 7 -d 3 -p prune -e 80 -c 30 -i 35 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.53823 -s 7 -d 3 -p prune -e 80 -c 30 -i 35 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.53823 -s 7 -d 3 -p prune -e 80 -c 30 -i 35 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.53823 -s 4 -d 5 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.53823 -s 4 -d 5 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.53823 -s 4 -d 6 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
h -t 0.53823 -s 4 -d 6 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.53836 -s 2 -d 3 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.53836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.53836 -s 3 -d 7 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
- -t 0.53836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.53836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.53836 -s 3 -d 7 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.53836 -s 3 -d 7 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.538656666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
h -t 0.538656666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.540166666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 20 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.540166666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 21 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.54086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.54086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.54086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.54086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.54086 -s 4 -d 6 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
- -t 0.54086 -s 4 -d 6 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
h -t 0.54086 -s 4 -d 6 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.54086 -s 3 -d 7 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.54086 -s 7 -d 3 -p prune -e 80 -c 30 -i 36 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54086 -s 7 -d 3 -p prune -e 80 -c 30 -i 36 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.54086 -s 7 -d 3 -p prune -e 80 -c 30 -i 36 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.54099 -s 2 -d 1 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.54099 -s 1 -d 2 -p prune -e 80 -c 30 -i 37 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 0.54099 -s 1 -d 2 -p prune -e 80 -c 30 -i 37 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 0.54099 -s 1 -d 2 -p prune -e 80 -c 30 -i 37 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.54099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.54099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.54099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.54099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.54099 -s 3 -d 7 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.54099 -s 3 -d 7 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.54099 -s 3 -d 7 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.54099 -s 2 -d 0 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.54099 -s 0 -d 2 -p prune -e 80 -c 30 -i 38 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 0.54099 -s 0 -d 2 -p prune -e 80 -c 30 -i 38 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 0.54099 -s 0 -d 2 -p prune -e 80 -c 30 -i 38 -a 30 -x {0.0 2.0 -1 ------- null}
+ -t 0.54125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
+ -t 0.54125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
r -t 0.541286666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
+ -t 0.541286666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
- -t 0.541286666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
h -t 0.541286666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.541286666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
+ -t 0.541286666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
- -t 0.541416666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
h -t 0.541416666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.541416666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
h -t 0.541416666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.54198 -s 3 -d 4 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.54198 -s 4 -d 5 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.54198 -s 4 -d 6 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
r -t 0.54198 -s 3 -d 7 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.54198 -s 7 -d 3 -p prune -e 80 -c 30 -i 41 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54198 -s 7 -d 3 -p prune -e 80 -c 30 -i 41 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.54198 -s 7 -d 3 -p prune -e 80 -c 30 -i 41 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54198 -s 4 -d 5 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.54198 -s 4 -d 5 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.54198 -s 4 -d 6 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
h -t 0.54198 -s 4 -d 6 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.54211 -s 2 -d 3 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.54211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.54211 -s 3 -d 7 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
- -t 0.54211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.54211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.54211 -s 3 -d 7 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.54211 -s 3 -d 7 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.542406666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
h -t 0.542406666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.543786666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 24 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.543916666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 25 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.543916666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 26 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.54448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.54448 -s 5 -d 4 -p prune -e 80 -c 30 -i 42 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.54448 -s 5 -d 4 -p prune -e 80 -c 30 -i 42 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.54448 -s 5 -d 4 -p prune -e 80 -c 30 -i 42 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.54448 -s 4 -d 6 -p cbr -e 210 -c 10 -i 0 -a 10 -x {0.1 1073741824.0 0 ------- null}
+ -t 0.54448 -s 6 -d 4 -p prune -e 80 -c 30 -i 43 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.54448 -s 6 -d 4 -p prune -e 80 -c 30 -i 43 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.54448 -s 6 -d 4 -p prune -e 80 -c 30 -i 43 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.54461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.54461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.54461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.54461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.54461 -s 4 -d 6 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
- -t 0.54461 -s 4 -d 6 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
h -t 0.54461 -s 4 -d 6 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.54461 -s 3 -d 7 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.54461 -s 7 -d 3 -p prune -e 80 -c 30 -i 44 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54461 -s 7 -d 3 -p prune -e 80 -c 30 -i 44 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.54461 -s 7 -d 3 -p prune -e 80 -c 30 -i 44 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.544906666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
+ -t 0.544906666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
- -t 0.544906666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
h -t 0.544906666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.544906666666667 -s 3 -d 7 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
- -t 0.544906666666667 -s 3 -d 7 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
h -t 0.544906666666667 -s 3 -d 7 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.544906666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 29 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 0.545 -s 0 -d 2 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 12 ------- null}
- -t 0.545 -s 0 -d 2 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 12 ------- null}
h -t 0.545 -s 0 -d 2 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.545 -s 1 -d 2 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 12 ------- null}
- -t 0.545 -s 1 -d 2 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 12 ------- null}
h -t 0.545 -s 1 -d 2 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.545036666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
+ -t 0.545036666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
- -t 0.545036666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
h -t 0.545036666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.545036666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
+ -t 0.545036666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
r -t 0.5456 -s 4 -d 5 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.5456 -s 5 -d 4 -p prune -e 80 -c 30 -i 47 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.5456 -s 5 -d 4 -p prune -e 80 -c 30 -i 47 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.5456 -s 5 -d 4 -p prune -e 80 -c 30 -i 47 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.5456 -s 4 -d 6 -p cbr -e 210 -c 11 -i 1 -a 11 -x {1.1 1073741825.0 0 ------- null}
+ -t 0.5456 -s 6 -d 4 -p prune -e 80 -c 30 -i 48 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.5456 -s 6 -d 4 -p prune -e 80 -c 30 -i 48 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.5456 -s 6 -d 4 -p prune -e 80 -c 30 -i 48 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.54573 -s 3 -d 4 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.54573 -s 4 -d 5 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.54573 -s 4 -d 6 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
r -t 0.54573 -s 3 -d 7 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.54573 -s 7 -d 3 -p prune -e 80 -c 30 -i 49 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54573 -s 7 -d 3 -p prune -e 80 -c 30 -i 49 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.54573 -s 7 -d 3 -p prune -e 80 -c 30 -i 49 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54573 -s 4 -d 5 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.54573 -s 4 -d 5 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.54573 -s 4 -d 6 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
h -t 0.54573 -s 4 -d 6 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.546026666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
+ -t 0.546026666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
- -t 0.546026666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
h -t 0.546026666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 0.546156666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
h -t 0.546156666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.547536666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 30 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.547666666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 31 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.547666666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 32 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.54823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.54823 -s 5 -d 4 -p prune -e 80 -c 30 -i 50 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.54823 -s 5 -d 4 -p prune -e 80 -c 30 -i 50 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.54823 -s 5 -d 4 -p prune -e 80 -c 30 -i 50 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.54823 -s 4 -d 6 -p cbr -e 210 -c 10 -i 2 -a 10 -x {0.1 1073741824.0 1 ------- null}
+ -t 0.54823 -s 6 -d 4 -p prune -e 80 -c 30 -i 51 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.54823 -s 6 -d 4 -p prune -e 80 -c 30 -i 51 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.54823 -s 6 -d 4 -p prune -e 80 -c 30 -i 51 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.54836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.54836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.54836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.54836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.54836 -s 4 -d 6 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
- -t 0.54836 -s 4 -d 6 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
h -t 0.54836 -s 4 -d 6 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.54836 -s 3 -d 7 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.54836 -s 7 -d 3 -p prune -e 80 -c 30 -i 52 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54836 -s 7 -d 3 -p prune -e 80 -c 30 -i 52 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.54836 -s 7 -d 3 -p prune -e 80 -c 30 -i 52 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.548656666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
+ -t 0.548656666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
- -t 0.548656666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
h -t 0.548656666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.548656666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 35 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 0.54875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 13 ------- null}
- -t 0.54875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 13 ------- null}
h -t 0.54875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.54875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 13 ------- null}
- -t 0.54875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 13 ------- null}
h -t 0.54875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.548786666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
+ -t 0.548786666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
- -t 0.548786666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
h -t 0.548786666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.548786666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
+ -t 0.548786666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
r -t 0.54935 -s 4 -d 5 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.54935 -s 5 -d 4 -p prune -e 80 -c 30 -i 55 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.54935 -s 5 -d 4 -p prune -e 80 -c 30 -i 55 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.54935 -s 5 -d 4 -p prune -e 80 -c 30 -i 55 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.54935 -s 4 -d 6 -p cbr -e 210 -c 11 -i 3 -a 11 -x {1.1 1073741825.0 1 ------- null}
+ -t 0.54935 -s 6 -d 4 -p prune -e 80 -c 30 -i 56 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.54935 -s 6 -d 4 -p prune -e 80 -c 30 -i 56 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.54935 -s 6 -d 4 -p prune -e 80 -c 30 -i 56 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.54948 -s 3 -d 4 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.54948 -s 4 -d 5 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.54948 -s 4 -d 6 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
r -t 0.54948 -s 3 -d 7 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.54948 -s 7 -d 3 -p prune -e 80 -c 30 -i 57 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54948 -s 7 -d 3 -p prune -e 80 -c 30 -i 57 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.54948 -s 7 -d 3 -p prune -e 80 -c 30 -i 57 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.54948 -s 4 -d 5 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.54948 -s 4 -d 5 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.54948 -s 4 -d 6 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
h -t 0.54948 -s 4 -d 6 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.549776666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
+ -t 0.549776666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
- -t 0.549776666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
h -t 0.549776666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 0.549906666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
h -t 0.549906666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.551286666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 36 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.551416666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 37 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 0.551416666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 38 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 0.55198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.55198 -s 5 -d 4 -p prune -e 80 -c 30 -i 58 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.55198 -s 5 -d 4 -p prune -e 80 -c 30 -i 58 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.55198 -s 5 -d 4 -p prune -e 80 -c 30 -i 58 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.55198 -s 4 -d 6 -p cbr -e 210 -c 10 -i 4 -a 10 -x {0.1 1073741824.0 2 ------- null}
+ -t 0.55198 -s 6 -d 4 -p prune -e 80 -c 30 -i 59 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.55198 -s 6 -d 4 -p prune -e 80 -c 30 -i 59 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.55198 -s 6 -d 4 -p prune -e 80 -c 30 -i 59 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.55211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.55211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.55211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.55211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.55211 -s 4 -d 6 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
- -t 0.55211 -s 4 -d 6 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
h -t 0.55211 -s 4 -d 6 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.55211 -s 3 -d 7 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.55211 -s 7 -d 3 -p prune -e 80 -c 30 -i 60 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.55211 -s 7 -d 3 -p prune -e 80 -c 30 -i 60 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.55211 -s 7 -d 3 -p prune -e 80 -c 30 -i 60 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.552406666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
+ -t 0.552406666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
- -t 0.552406666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
h -t 0.552406666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.552406666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 41 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 0.5525 -s 0 -d 2 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 14 ------- null}
- -t 0.5525 -s 0 -d 2 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 14 ------- null}
h -t 0.5525 -s 0 -d 2 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.5525 -s 1 -d 2 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 14 ------- null}
- -t 0.5525 -s 1 -d 2 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 14 ------- null}
h -t 0.5525 -s 1 -d 2 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.552536666666667 -s 1 -d 2 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
+ -t 0.552536666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
- -t 0.552536666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
h -t 0.552536666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.552536666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
+ -t 0.552536666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
r -t 0.5531 -s 4 -d 5 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.5531 -s 5 -d 4 -p prune -e 80 -c 30 -i 63 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.5531 -s 5 -d 4 -p prune -e 80 -c 30 -i 63 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.5531 -s 5 -d 4 -p prune -e 80 -c 30 -i 63 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.5531 -s 4 -d 6 -p cbr -e 210 -c 11 -i 5 -a 11 -x {1.1 1073741825.0 2 ------- null}
+ -t 0.5531 -s 6 -d 4 -p prune -e 80 -c 30 -i 64 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.5531 -s 6 -d 4 -p prune -e 80 -c 30 -i 64 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.5531 -s 6 -d 4 -p prune -e 80 -c 30 -i 64 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.55323 -s 3 -d 4 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.55323 -s 4 -d 5 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.55323 -s 4 -d 6 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
r -t 0.55323 -s 3 -d 7 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.55323 -s 7 -d 3 -p prune -e 80 -c 30 -i 65 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.55323 -s 7 -d 3 -p prune -e 80 -c 30 -i 65 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.55323 -s 7 -d 3 -p prune -e 80 -c 30 -i 65 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.55323 -s 4 -d 5 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.55323 -s 4 -d 5 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 0.55323 -s 4 -d 6 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
h -t 0.55323 -s 4 -d 6 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.553526666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
+ -t 0.553526666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
- -t 0.553526666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
h -t 0.553526666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 0.553656666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
h -t 0.553656666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.554906666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 42 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.554906666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 43 -a 30 -x {6.0 4.0 -1 ------- null}
+ -t 0.554906666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 66 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.554906666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 66 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.554906666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 66 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.555036666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 44 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.55573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.55573 -s 5 -d 4 -p prune -e 80 -c 30 -i 67 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.55573 -s 5 -d 4 -p prune -e 80 -c 30 -i 67 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.55573 -s 5 -d 4 -p prune -e 80 -c 30 -i 67 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.55573 -s 4 -d 6 -p cbr -e 210 -c 10 -i 6 -a 10 -x {0.1 1073741824.0 3 ------- null}
+ -t 0.55573 -s 6 -d 4 -p prune -e 80 -c 30 -i 68 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.55573 -s 6 -d 4 -p prune -e 80 -c 30 -i 68 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.55573 -s 6 -d 4 -p prune -e 80 -c 30 -i 68 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.556026666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
+ -t 0.556026666666667 -s 4 -d 5 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
- -t 0.556026666666667 -s 4 -d 5 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
h -t 0.556026666666667 -s 4 -d 5 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 0.556026666666667 -s 4 -d 6 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
- -t 0.556026666666667 -s 4 -d 6 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
h -t 0.556026666666667 -s 4 -d 6 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.556026666666667 -s 3 -d 7 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
+ -t 0.556026666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 69 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 0.556026666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 69 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 0.556026666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 69 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.556026666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 47 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.556026666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 48 -a 30 -x {6.0 4.0 -1 ------- null}
+ -t 0.556026666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 70 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.556026666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 70 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.556026666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 70 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.55612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 12 ------- null}
+ -t 0.55612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 12 ------- null}
- -t 0.55612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 12 ------- null}
h -t 0.55612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.55612 -s 1 -d 2 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 12 ------- null}
+ -t 0.55612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 12 ------- null}
r -t 0.556156666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
+ -t 0.556156666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
- -t 0.556156666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
h -t 0.556156666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.556156666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 49 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 0.55625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 15 ------- null}
- -t 0.55625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 15 ------- null}
h -t 0.55625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.55625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 15 ------- null}
- -t 0.55625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 15 ------- null}
h -t 0.55625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.55685 -s 4 -d 5 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.55685 -s 5 -d 4 -p prune -e 80 -c 30 -i 73 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.55685 -s 5 -d 4 -p prune -e 80 -c 30 -i 73 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.55685 -s 5 -d 4 -p prune -e 80 -c 30 -i 73 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.55685 -s 4 -d 6 -p cbr -e 210 -c 11 -i 7 -a 11 -x {1.1 1073741825.0 3 ------- null}
+ -t 0.55685 -s 6 -d 4 -p prune -e 80 -c 30 -i 74 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.55685 -s 6 -d 4 -p prune -e 80 -c 30 -i 74 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.55685 -s 6 -d 4 -p prune -e 80 -c 30 -i 74 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.557146666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 14 -a 10 -x {0.1 1073741824.0 6 ------- null}
+ -t 0.557146666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 75 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.557146666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 75 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.557146666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 75 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.55724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 12 ------- null}
h -t 0.55724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.557276666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
+ -t 0.557276666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
- -t 0.557276666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
h -t 0.557276666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.558656666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 50 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.558656666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 51 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.558786666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 52 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.55948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.55948 -s 5 -d 4 -p prune -e 80 -c 30 -i 76 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.55948 -s 5 -d 4 -p prune -e 80 -c 30 -i 76 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.55948 -s 5 -d 4 -p prune -e 80 -c 30 -i 76 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.55948 -s 4 -d 6 -p cbr -e 210 -c 10 -i 8 -a 10 -x {0.1 1073741824.0 4 ------- null}
+ -t 0.55948 -s 6 -d 4 -p prune -e 80 -c 30 -i 77 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.55948 -s 6 -d 4 -p prune -e 80 -c 30 -i 77 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.55948 -s 6 -d 4 -p prune -e 80 -c 30 -i 77 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.559776666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 19 -a 11 -x {1.1 1073741825.0 7 ------- null}
+ -t 0.559776666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 78 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.559776666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 78 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.559776666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 78 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.559776666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 55 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.559776666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 56 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.55987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 13 ------- null}
+ -t 0.55987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 13 ------- null}
- -t 0.55987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 13 ------- null}
h -t 0.55987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.55987 -s 1 -d 2 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 13 ------- null}
+ -t 0.55987 -s 2 -d 3 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 13 ------- null}
r -t 0.559906666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
+ -t 0.559906666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
- -t 0.559906666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
h -t 0.559906666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.559906666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 57 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 0.56 -s 0 -d 2 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 16 ------- null}
- -t 0.56 -s 0 -d 2 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 16 ------- null}
h -t 0.56 -s 0 -d 2 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.56 -s 1 -d 2 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 16 ------- null}
- -t 0.56 -s 1 -d 2 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 16 ------- null}
h -t 0.56 -s 1 -d 2 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.5606 -s 4 -d 5 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.5606 -s 5 -d 4 -p prune -e 80 -c 30 -i 81 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.5606 -s 5 -d 4 -p prune -e 80 -c 30 -i 81 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.5606 -s 5 -d 4 -p prune -e 80 -c 30 -i 81 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.5606 -s 4 -d 6 -p cbr -e 210 -c 11 -i 9 -a 11 -x {1.1 1073741825.0 4 ------- null}
+ -t 0.5606 -s 6 -d 4 -p prune -e 80 -c 30 -i 82 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.5606 -s 6 -d 4 -p prune -e 80 -c 30 -i 82 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.5606 -s 6 -d 4 -p prune -e 80 -c 30 -i 82 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.560896666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 18 -a 10 -x {0.1 1073741824.0 7 ------- null}
+ -t 0.560896666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 83 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.560896666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 83 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.560896666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 83 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.56099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 13 ------- null}
h -t 0.56099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.561026666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
+ -t 0.561026666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
- -t 0.561026666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
h -t 0.561026666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.562406666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 58 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.562406666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 59 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.562536666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 60 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.56323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.56323 -s 5 -d 4 -p prune -e 80 -c 30 -i 84 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.56323 -s 5 -d 4 -p prune -e 80 -c 30 -i 84 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.56323 -s 5 -d 4 -p prune -e 80 -c 30 -i 84 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.56323 -s 4 -d 6 -p cbr -e 210 -c 10 -i 10 -a 10 -x {0.1 1073741824.0 5 ------- null}
+ -t 0.56323 -s 6 -d 4 -p prune -e 80 -c 30 -i 85 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.56323 -s 6 -d 4 -p prune -e 80 -c 30 -i 85 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.56323 -s 6 -d 4 -p prune -e 80 -c 30 -i 85 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.563526666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 23 -a 11 -x {1.1 1073741825.0 8 ------- null}
+ -t 0.563526666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 86 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.563526666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 86 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.563526666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 86 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.563526666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 63 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.563526666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 64 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.56362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 14 ------- null}
+ -t 0.56362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 14 ------- null}
- -t 0.56362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 14 ------- null}
h -t 0.56362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.56362 -s 1 -d 2 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 14 ------- null}
+ -t 0.56362 -s 2 -d 3 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 14 ------- null}
r -t 0.563656666666667 -s 2 -d 3 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
+ -t 0.563656666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
- -t 0.563656666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
h -t 0.563656666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.563656666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 65 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 0.563750000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 17 ------- null}
- -t 0.563750000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 17 ------- null}
h -t 0.563750000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.563750000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 17 ------- null}
- -t 0.563750000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 17 ------- null}
h -t 0.563750000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.56435 -s 4 -d 5 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.56435 -s 5 -d 4 -p prune -e 80 -c 30 -i 89 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.56435 -s 5 -d 4 -p prune -e 80 -c 30 -i 89 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.56435 -s 5 -d 4 -p prune -e 80 -c 30 -i 89 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.56435 -s 4 -d 6 -p cbr -e 210 -c 11 -i 11 -a 11 -x {1.1 1073741825.0 5 ------- null}
+ -t 0.56435 -s 6 -d 4 -p prune -e 80 -c 30 -i 90 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.56435 -s 6 -d 4 -p prune -e 80 -c 30 -i 90 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.56435 -s 6 -d 4 -p prune -e 80 -c 30 -i 90 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.564646666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 22 -a 10 -x {0.1 1073741824.0 8 ------- null}
+ -t 0.564646666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 91 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.564646666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 91 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.564646666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 91 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.56474 -s 2 -d 3 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 14 ------- null}
h -t 0.56474 -s 2 -d 3 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.564776666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
+ -t 0.564776666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
- -t 0.564776666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
h -t 0.564776666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.565333333333333 -s 4 -d 3 -p prune -e 80 -c 30 -i 66 -a 30 -x {4.0 3.0 -1 ------- null}
+ -t 0.565333333333333 -s 3 -d 2 -p prune -e 80 -c 30 -i 92 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.565333333333333 -s 3 -d 2 -p prune -e 80 -c 30 -i 92 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.565333333333333 -s 3 -d 2 -p prune -e 80 -c 30 -i 92 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.566156666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 67 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.566156666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 68 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.566453333333333 -s 7 -d 3 -p prune -e 80 -c 30 -i 69 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 0.566453333333333 -s 4 -d 3 -p prune -e 80 -c 30 -i 70 -a 30 -x {4.0 3.0 -1 ------- null}
+ -t 0.566453333333333 -s 3 -d 2 -p prune -e 80 -c 30 -i 93 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.566453333333333 -s 3 -d 2 -p prune -e 80 -c 30 -i 93 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.566453333333333 -s 3 -d 2 -p prune -e 80 -c 30 -i 93 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.567146666666667 -s 4 -d 5 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
+ -t 0.567146666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 94 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 0.567146666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 94 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 0.567146666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 94 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.567146666666667 -s 4 -d 6 -p cbr -e 210 -c 11 -i 15 -a 11 -x {1.1 1073741825.0 6 ------- null}
+ -t 0.567146666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 95 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 0.567146666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 95 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 0.567146666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 95 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.56724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 45 -a 10 -x {0.1 1073741824.0 12 ------- null}
+ -t 0.56724 -s 3 -d 2 -p prune -e 80 -c 30 -i 96 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.56724 -s 3 -d 2 -p prune -e 80 -c 30 -i 96 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.56724 -s 3 -d 2 -p prune -e 80 -c 30 -i 96 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.567276666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 28 -a 11 -x {1.1 1073741825.0 9 ------- null}
+ -t 0.567276666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 97 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.567276666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 97 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.567276666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 97 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.567276666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 73 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.567276666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 74 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.56737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 15 ------- null}
+ -t 0.56737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 15 ------- null}
- -t 0.56737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 15 ------- null}
h -t 0.56737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.56737 -s 1 -d 2 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 15 ------- null}
+ -t 0.56737 -s 2 -d 3 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 15 ------- null}
+ -t 0.567500000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 98 -a 10 -x {0.1 1073741824.0 18 ------- null}
- -t 0.567500000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 98 -a 10 -x {0.1 1073741824.0 18 ------- null}
h -t 0.567500000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 98 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.567500000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 99 -a 11 -x {1.1 1073741825.0 18 ------- null}
- -t 0.567500000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 99 -a 11 -x {1.1 1073741825.0 18 ------- null}
h -t 0.567500000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 99 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.567573333333333 -s 4 -d 3 -p prune -e 80 -c 30 -i 75 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.56836 -s 2 -d 3 -p cbr -e 210 -c 11 -i 46 -a 11 -x {1.1 1073741825.0 12 ------- null}
+ -t 0.56836 -s 3 -d 2 -p prune -e 80 -c 30 -i 100 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.56836 -s 3 -d 2 -p prune -e 80 -c 30 -i 100 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.56836 -s 3 -d 2 -p prune -e 80 -c 30 -i 100 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.568396666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 27 -a 10 -x {0.1 1073741824.0 9 ------- null}
+ -t 0.568396666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 101 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.568396666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 101 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.568396666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 101 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.56849 -s 2 -d 3 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 15 ------- null}
h -t 0.56849 -s 2 -d 3 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.569906666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 76 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.569906666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 77 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.570203333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 78 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.57099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 53 -a 10 -x {0.1 1073741824.0 13 ------- null}
+ -t 0.57099 -s 3 -d 2 -p prune -e 80 -c 30 -i 102 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.57099 -s 3 -d 2 -p prune -e 80 -c 30 -i 102 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.57099 -s 3 -d 2 -p prune -e 80 -c 30 -i 102 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.571026666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 34 -a 11 -x {1.1 1073741825.0 10 ------- null}
+ -t 0.571026666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 103 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.571026666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 103 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.571026666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 103 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.571026666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 81 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.571026666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 82 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.571120000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 16 ------- null}
+ -t 0.571120000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 16 ------- null}
- -t 0.571120000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 16 ------- null}
h -t 0.571120000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.571120000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 16 ------- null}
+ -t 0.571120000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 16 ------- null}
+ -t 0.571250000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 104 -a 10 -x {0.1 1073741824.0 19 ------- null}
- -t 0.571250000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 104 -a 10 -x {0.1 1073741824.0 19 ------- null}
h -t 0.571250000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.571250000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 105 -a 11 -x {1.1 1073741825.0 19 ------- null}
- -t 0.571250000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 105 -a 11 -x {1.1 1073741825.0 19 ------- null}
h -t 0.571250000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 105 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.571323333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 83 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.57211 -s 2 -d 3 -p cbr -e 210 -c 11 -i 54 -a 11 -x {1.1 1073741825.0 13 ------- null}
+ -t 0.57211 -s 3 -d 2 -p prune -e 80 -c 30 -i 106 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.57211 -s 3 -d 2 -p prune -e 80 -c 30 -i 106 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.57211 -s 3 -d 2 -p prune -e 80 -c 30 -i 106 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.572146666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 33 -a 10 -x {0.1 1073741824.0 10 ------- null}
+ -t 0.572146666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 107 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.572146666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 107 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.572146666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 107 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.572240000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 16 ------- null}
h -t 0.572240000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.573656666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 84 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.573656666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 85 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.573953333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 86 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.57474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 61 -a 10 -x {0.1 1073741824.0 14 ------- null}
+ -t 0.57474 -s 3 -d 2 -p prune -e 80 -c 30 -i 108 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.57474 -s 3 -d 2 -p prune -e 80 -c 30 -i 108 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.57474 -s 3 -d 2 -p prune -e 80 -c 30 -i 108 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.574776666666667 -s 3 -d 4 -p cbr -e 210 -c 11 -i 40 -a 11 -x {1.1 1073741825.0 11 ------- null}
+ -t 0.574776666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 109 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.574776666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 109 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.574776666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 109 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.574776666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 89 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.574776666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 90 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.574870000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 17 ------- null}
+ -t 0.574870000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 17 ------- null}
- -t 0.574870000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 17 ------- null}
h -t 0.574870000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 0.574870000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 17 ------- null}
+ -t 0.574870000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 17 ------- null}
+ -t 0.575000000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 110 -a 10 -x {0.1 1073741824.0 20 ------- null}
- -t 0.575000000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 110 -a 10 -x {0.1 1073741824.0 20 ------- null}
h -t 0.575000000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.575000000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 111 -a 11 -x {1.1 1073741825.0 20 ------- null}
- -t 0.575000000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 111 -a 11 -x {1.1 1073741825.0 20 ------- null}
h -t 0.575000000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 111 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.575073333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 91 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.57576 -s 3 -d 2 -p prune -e 80 -c 30 -i 92 -a 30 -x {3.0 2.0 -1 ------- null}
+ -t 0.57576 -s 2 -d 0 -p prune -e 80 -c 30 -i 112 -a 30 -x {2.0 0.0 -1 ------- null}
- -t 0.57576 -s 2 -d 0 -p prune -e 80 -c 30 -i 112 -a 30 -x {2.0 0.0 -1 ------- null}
h -t 0.57576 -s 2 -d 0 -p prune -e 80 -c 30 -i 112 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.57586 -s 2 -d 3 -p cbr -e 210 -c 11 -i 62 -a 11 -x {1.1 1073741825.0 14 ------- null}
+ -t 0.57586 -s 3 -d 2 -p prune -e 80 -c 30 -i 113 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.57586 -s 3 -d 2 -p prune -e 80 -c 30 -i 113 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.57586 -s 3 -d 2 -p prune -e 80 -c 30 -i 113 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.575896666666667 -s 3 -d 4 -p cbr -e 210 -c 10 -i 39 -a 10 -x {0.1 1073741824.0 11 ------- null}
+ -t 0.575896666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 114 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.575896666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 114 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 0.575896666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 114 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 0.575990000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 17 ------- null}
h -t 0.575990000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.57688 -s 3 -d 2 -p prune -e 80 -c 30 -i 93 -a 30 -x {3.0 2.0 -1 ------- null}
+ -t 0.57688 -s 2 -d 1 -p prune -e 80 -c 30 -i 115 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.57688 -s 2 -d 1 -p prune -e 80 -c 30 -i 115 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.57688 -s 2 -d 1 -p prune -e 80 -c 30 -i 115 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.577573333333333 -s 5 -d 4 -p prune -e 80 -c 30 -i 94 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 0.577573333333333 -s 6 -d 4 -p prune -e 80 -c 30 -i 95 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 0.577666666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 96 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.577703333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 97 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.578490000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 71 -a 10 -x {0.1 1073741824.0 15 ------- null}
+ -t 0.578490000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 116 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.578490000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 116 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.578490000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 116 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.578620000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 98 -a 10 -x {0.1 1073741824.0 18 ------- null}
+ -t 0.578620000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 117 -a 30 -x {2.0 0.0 -1 ------- null}
- -t 0.578620000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 117 -a 30 -x {2.0 0.0 -1 ------- null}
h -t 0.578620000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 117 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.578620000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 99 -a 11 -x {1.1 1073741825.0 18 ------- null}
+ -t 0.578620000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 118 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.578620000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 118 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.578620000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 118 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 0.578750000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 119 -a 10 -x {0.1 1073741824.0 21 ------- null}
- -t 0.578750000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 119 -a 10 -x {0.1 1073741824.0 21 ------- null}
h -t 0.578750000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.578750000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 120 -a 11 -x {1.1 1073741825.0 21 ------- null}
- -t 0.578750000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 120 -a 11 -x {1.1 1073741825.0 21 ------- null}
h -t 0.578750000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 120 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.578786666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 100 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.578823333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 101 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.579610000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 72 -a 11 -x {1.1 1073741825.0 15 ------- null}
+ -t 0.579610000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 121 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.579610000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 121 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.579610000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 121 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.581416666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 102 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.581453333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 103 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.582240000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 79 -a 10 -x {0.1 1073741824.0 16 ------- null}
+ -t 0.582240000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 122 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.582240000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 122 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.582240000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 122 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.582370000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 104 -a 10 -x {0.1 1073741824.0 19 ------- null}
+ -t 0.582370000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 123 -a 30 -x {2.0 0.0 -1 ------- null}
- -t 0.582370000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 123 -a 30 -x {2.0 0.0 -1 ------- null}
h -t 0.582370000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 123 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.582370000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 105 -a 11 -x {1.1 1073741825.0 19 ------- null}
+ -t 0.582370000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 124 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.582370000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 124 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.582370000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 124 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 0.582500000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 125 -a 10 -x {0.1 1073741824.0 22 ------- null}
- -t 0.582500000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 125 -a 10 -x {0.1 1073741824.0 22 ------- null}
h -t 0.582500000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 0.582500000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 126 -a 11 -x {1.1 1073741825.0 22 ------- null}
- -t 0.582500000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 126 -a 11 -x {1.1 1073741825.0 22 ------- null}
h -t 0.582500000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 126 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.582536666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 106 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.582573333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 107 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.583360000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 80 -a 11 -x {1.1 1073741825.0 16 ------- null}
+ -t 0.583360000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 127 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.583360000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 127 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.583360000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 127 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.585166666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 108 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.585203333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 109 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.585990000000001 -s 2 -d 3 -p cbr -e 210 -c 10 -i 87 -a 10 -x {0.1 1073741824.0 17 ------- null}
+ -t 0.585990000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 128 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.585990000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 128 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.585990000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 128 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.586120000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 110 -a 10 -x {0.1 1073741824.0 20 ------- null}
+ -t 0.586120000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 129 -a 30 -x {2.0 0.0 -1 ------- null}
- -t 0.586120000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 129 -a 30 -x {2.0 0.0 -1 ------- null}
h -t 0.586120000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 129 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.586120000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 111 -a 11 -x {1.1 1073741825.0 20 ------- null}
+ -t 0.586120000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 130 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.586120000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 130 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.586120000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 130 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.586186666666667 -s 2 -d 0 -p prune -e 80 -c 30 -i 112 -a 30 -x {2.0 0.0 -1 ------- null}
+ -t 0.586250000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 132 -a 11 -x {1.1 1073741825.0 23 ------- null}
- -t 0.586250000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 132 -a 11 -x {1.1 1073741825.0 23 ------- null}
h -t 0.586250000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 132 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 0.586286666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 113 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.586323333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 114 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 0.587110000000001 -s 2 -d 3 -p cbr -e 210 -c 11 -i 88 -a 11 -x {1.1 1073741825.0 17 ------- null}
+ -t 0.587110000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 133 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 0.587110000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 133 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 0.587110000000001 -s 3 -d 2 -p prune -e 80 -c 30 -i 133 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.587306666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 115 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.588916666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 116 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.589046666666667 -s 2 -d 0 -p prune -e 80 -c 30 -i 117 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.589046666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 118 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.589870000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 119 -a 10 -x {0.1 1073741824.0 21 ------- null}
+ -t 0.589870000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 134 -a 30 -x {2.0 0.0 -1 ------- null}
- -t 0.589870000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 134 -a 30 -x {2.0 0.0 -1 ------- null}
h -t 0.589870000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 134 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.589870000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 120 -a 11 -x {1.1 1073741825.0 21 ------- null}
+ -t 0.589870000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 135 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.589870000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 135 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.589870000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 135 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.590036666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 121 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.592666666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 122 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.592796666666667 -s 2 -d 0 -p prune -e 80 -c 30 -i 123 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.592796666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 124 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.593620000000001 -s 0 -d 2 -p cbr -e 210 -c 10 -i 125 -a 10 -x {0.1 1073741824.0 22 ------- null}
+ -t 0.593620000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 138 -a 30 -x {2.0 0.0 -1 ------- null}
- -t 0.593620000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 138 -a 30 -x {2.0 0.0 -1 ------- null}
h -t 0.593620000000001 -s 2 -d 0 -p prune -e 80 -c 30 -i 138 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.593620000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 126 -a 11 -x {1.1 1073741825.0 22 ------- null}
+ -t 0.593620000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 139 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.593620000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 139 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.593620000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 139 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.593786666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 127 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.596416666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 128 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.596546666666667 -s 2 -d 0 -p prune -e 80 -c 30 -i 129 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.596546666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 130 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.597370000000001 -s 1 -d 2 -p cbr -e 210 -c 11 -i 132 -a 11 -x {1.1 1073741825.0 23 ------- null}
+ -t 0.597370000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 142 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 0.597370000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 142 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 0.597370000000001 -s 2 -d 1 -p prune -e 80 -c 30 -i 142 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.597536666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 133 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 0.600296666666667 -s 2 -d 0 -p prune -e 80 -c 30 -i 134 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.600296666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 135 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.604046666666667 -s 2 -d 0 -p prune -e 80 -c 30 -i 138 -a 30 -x {2.0 0.0 -1 ------- null}
r -t 0.604046666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 139 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 0.607796666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 142 -a 30 -x {2.0 1.0 -1 ------- null}
v -t 1 -e sim_annotation 1 1 5 join-group 1073741824
+ -t 1 -s 5 -d 4 -p graft -e 80 -c 31 -i 359 -a 31 -x {5.0 4.0 -1 ------- null}
- -t 1 -s 5 -d 4 -p graft -e 80 -c 31 -i 359 -a 31 -x {5.0 4.0 -1 ------- null}
h -t 1 -s 5 -d 4 -p graft -e 80 -c 31 -i 359 -a 31 -x {5.0 4.0 -1 ------- null}
r -t 1.01042666666667 -s 5 -d 4 -p graft -e 80 -c 31 -i 359 -a 31 -x {5.0 4.0 -1 ------- null}
+ -t 1.01042666666667 -s 4 -d 3 -p graft -e 80 -c 31 -i 366 -a 31 -x {4.0 3.0 -1 ------- null}
- -t 1.01042666666667 -s 4 -d 3 -p graft -e 80 -c 31 -i 366 -a 31 -x {4.0 3.0 -1 ------- null}
h -t 1.01042666666667 -s 4 -d 3 -p graft -e 80 -c 31 -i 366 -a 31 -x {4.0 3.0 -1 ------- null}
r -t 1.02085333333333 -s 4 -d 3 -p graft -e 80 -c 31 -i 366 -a 31 -x {4.0 3.0 -1 ------- null}
+ -t 1.02085333333333 -s 3 -d 2 -p graft -e 80 -c 31 -i 371 -a 31 -x {3.0 2.0 -1 ------- null}
- -t 1.02085333333333 -s 3 -d 2 -p graft -e 80 -c 31 -i 371 -a 31 -x {3.0 2.0 -1 ------- null}
h -t 1.02085333333333 -s 3 -d 2 -p graft -e 80 -c 31 -i 371 -a 31 -x {3.0 2.0 -1 ------- null}
r -t 1.03128 -s 3 -d 2 -p graft -e 80 -c 31 -i 371 -a 31 -x {3.0 2.0 -1 ------- null}
+ -t 1.03128 -s 2 -d 0 -p graft -e 80 -c 31 -i 378 -a 31 -x {2.0 0.0 -1 ------- null}
- -t 1.03128 -s 2 -d 0 -p graft -e 80 -c 31 -i 378 -a 31 -x {2.0 0.0 -1 ------- null}
h -t 1.03128 -s 2 -d 0 -p graft -e 80 -c 31 -i 378 -a 31 -x {2.0 0.0 -1 ------- null}
r -t 1.04170666666667 -s 2 -d 0 -p graft -e 80 -c 31 -i 378 -a 31 -x {2.0 0.0 -1 ------- null}
+ -t 1.04375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.04375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.04375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.0475 -s 0 -d 2 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.0475 -s 0 -d 2 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.0475 -s 0 -d 2 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.05125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.05125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.05125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.05487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
+ -t 1.05487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.05487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.05487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.05487 -s 2 -d 1 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.05487 -s 2 -d 1 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.05487 -s 2 -d 1 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.055 -s 0 -d 2 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.055 -s 0 -d 2 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.055 -s 0 -d 2 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.05862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
+ -t 1.05862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.05862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.05862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.05862 -s 2 -d 1 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.05862 -s 2 -d 1 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.05862 -s 2 -d 1 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.05875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.05875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.05875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.06237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
+ -t 1.06237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.06237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.06237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.06237 -s 2 -d 1 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.06237 -s 2 -d 1 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.06237 -s 2 -d 1 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.0625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.0625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.0625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.06599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
+ -t 1.06599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.06599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.06599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.06599 -s 3 -d 7 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.06599 -s 3 -d 7 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.06599 -s 3 -d 7 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.06599 -s 2 -d 1 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
+ -t 1.06599 -s 1 -d 2 -p prune -e 80 -c 30 -i 397 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.06599 -s 1 -d 2 -p prune -e 80 -c 30 -i 397 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.06599 -s 1 -d 2 -p prune -e 80 -c 30 -i 397 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.06612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
+ -t 1.06612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.06612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.06612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.06612 -s 2 -d 1 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.06612 -s 2 -d 1 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.06612 -s 2 -d 1 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.06625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
- -t 1.06625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
h -t 1.06625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.06974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
+ -t 1.06974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.06974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.06974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.06974 -s 3 -d 7 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.06974 -s 3 -d 7 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.06974 -s 3 -d 7 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.06974 -s 2 -d 1 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
+ -t 1.06974 -s 1 -d 2 -p prune -e 80 -c 30 -i 400 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.06974 -s 1 -d 2 -p prune -e 80 -c 30 -i 400 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.06974 -s 1 -d 2 -p prune -e 80 -c 30 -i 400 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.06987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
+ -t 1.06987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.06987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.06987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.06987 -s 2 -d 1 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.06987 -s 2 -d 1 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.06987 -s 2 -d 1 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.07 -s 0 -d 2 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
- -t 1.07 -s 0 -d 2 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
h -t 1.07 -s 0 -d 2 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.07349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
+ -t 1.07349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.07349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.07349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.07349 -s 3 -d 7 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.07349 -s 3 -d 7 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.07349 -s 3 -d 7 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.07349 -s 2 -d 1 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
+ -t 1.07349 -s 1 -d 2 -p prune -e 80 -c 30 -i 403 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.07349 -s 1 -d 2 -p prune -e 80 -c 30 -i 403 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.07349 -s 1 -d 2 -p prune -e 80 -c 30 -i 403 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.07362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
+ -t 1.07362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.07362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.07362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.07362 -s 2 -d 1 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.07362 -s 2 -d 1 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.07362 -s 2 -d 1 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.07375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
- -t 1.07375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
h -t 1.07375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.07641666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 397 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.07711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
+ -t 1.07711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.07711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.07711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.07711 -s 4 -d 6 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
- -t 1.07711 -s 4 -d 6 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
h -t 1.07711 -s 4 -d 6 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.07711 -s 3 -d 7 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
+ -t 1.07711 -s 7 -d 3 -p prune -e 80 -c 30 -i 406 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.07711 -s 7 -d 3 -p prune -e 80 -c 30 -i 406 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.07711 -s 7 -d 3 -p prune -e 80 -c 30 -i 406 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.07724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
+ -t 1.07724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.07724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.07724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.07724 -s 3 -d 7 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.07724 -s 3 -d 7 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.07724 -s 3 -d 7 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.07724 -s 2 -d 1 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
+ -t 1.07724 -s 1 -d 2 -p prune -e 80 -c 30 -i 407 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.07724 -s 1 -d 2 -p prune -e 80 -c 30 -i 407 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.07724 -s 1 -d 2 -p prune -e 80 -c 30 -i 407 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.07737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
+ -t 1.07737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
- -t 1.07737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
h -t 1.07737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.0775 -s 0 -d 2 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
- -t 1.0775 -s 0 -d 2 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
h -t 1.0775 -s 0 -d 2 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08016666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 400 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.08086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
+ -t 1.08086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.08086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.08086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08086 -s 4 -d 6 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
- -t 1.08086 -s 4 -d 6 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
h -t 1.08086 -s 4 -d 6 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08086 -s 3 -d 7 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
+ -t 1.08086 -s 7 -d 3 -p prune -e 80 -c 30 -i 410 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.08086 -s 7 -d 3 -p prune -e 80 -c 30 -i 410 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.08086 -s 7 -d 3 -p prune -e 80 -c 30 -i 410 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.08099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
+ -t 1.08099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.08099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.08099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08099 -s 3 -d 7 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.08099 -s 3 -d 7 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.08099 -s 3 -d 7 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08099 -s 2 -d 1 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
+ -t 1.08099 -s 1 -d 2 -p prune -e 80 -c 30 -i 411 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.08099 -s 1 -d 2 -p prune -e 80 -c 30 -i 411 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.08099 -s 1 -d 2 -p prune -e 80 -c 30 -i 411 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.08112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
+ -t 1.08112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
- -t 1.08112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
h -t 1.08112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
- -t 1.08125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
h -t 1.08125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08391666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 403 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.08461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
+ -t 1.08461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.08461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.08461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08461 -s 4 -d 6 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
- -t 1.08461 -s 4 -d 6 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
h -t 1.08461 -s 4 -d 6 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08461 -s 3 -d 7 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
+ -t 1.08461 -s 7 -d 3 -p prune -e 80 -c 30 -i 414 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.08461 -s 7 -d 3 -p prune -e 80 -c 30 -i 414 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.08461 -s 7 -d 3 -p prune -e 80 -c 30 -i 414 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.08474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
+ -t 1.08474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.08474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.08474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08474 -s 3 -d 7 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.08474 -s 3 -d 7 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.08474 -s 3 -d 7 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08474 -s 2 -d 1 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
+ -t 1.08474 -s 1 -d 2 -p prune -e 80 -c 30 -i 415 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.08474 -s 1 -d 2 -p prune -e 80 -c 30 -i 415 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.08474 -s 1 -d 2 -p prune -e 80 -c 30 -i 415 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.08487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
+ -t 1.08487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
- -t 1.08487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
h -t 1.08487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.085 -s 0 -d 2 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
- -t 1.085 -s 0 -d 2 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
h -t 1.085 -s 0 -d 2 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08753666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 406 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.08766666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 407 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.08823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
r -t 1.08823 -s 4 -d 6 -p cbr -e 210 -c 10 -i 385 -a 10 -x {0.1 1073741824.0 145 ------- null}
+ -t 1.08823 -s 6 -d 4 -p prune -e 80 -c 30 -i 418 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.08823 -s 6 -d 4 -p prune -e 80 -c 30 -i 418 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.08823 -s 6 -d 4 -p prune -e 80 -c 30 -i 418 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.08836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
+ -t 1.08836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.08836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.08836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08836 -s 4 -d 6 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
- -t 1.08836 -s 4 -d 6 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
h -t 1.08836 -s 4 -d 6 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08836 -s 3 -d 7 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
+ -t 1.08836 -s 7 -d 3 -p prune -e 80 -c 30 -i 419 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.08836 -s 7 -d 3 -p prune -e 80 -c 30 -i 419 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.08836 -s 7 -d 3 -p prune -e 80 -c 30 -i 419 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.08849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
+ -t 1.08849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
- -t 1.08849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
h -t 1.08849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.08862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
+ -t 1.08862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
- -t 1.08862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
h -t 1.08862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.08875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
- -t 1.08875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
h -t 1.08875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09128666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 410 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.09141666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 411 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.09198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
r -t 1.09198 -s 4 -d 6 -p cbr -e 210 -c 10 -i 387 -a 10 -x {0.1 1073741824.0 146 ------- null}
+ -t 1.09198 -s 6 -d 4 -p prune -e 80 -c 30 -i 422 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.09198 -s 6 -d 4 -p prune -e 80 -c 30 -i 422 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.09198 -s 6 -d 4 -p prune -e 80 -c 30 -i 422 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.09211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
+ -t 1.09211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.09211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.09211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.09211 -s 4 -d 6 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
- -t 1.09211 -s 4 -d 6 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
h -t 1.09211 -s 4 -d 6 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09211 -s 3 -d 7 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
+ -t 1.09211 -s 7 -d 3 -p prune -e 80 -c 30 -i 423 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.09211 -s 7 -d 3 -p prune -e 80 -c 30 -i 423 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.09211 -s 7 -d 3 -p prune -e 80 -c 30 -i 423 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.09224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
+ -t 1.09224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
- -t 1.09224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
h -t 1.09224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
+ -t 1.09237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
- -t 1.09237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
h -t 1.09237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.0925 -s 0 -d 2 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
- -t 1.0925 -s 0 -d 2 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
h -t 1.0925 -s 0 -d 2 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09503666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 414 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.09516666666667 -s 1 -d 2 -p prune -e 80 -c 30 -i 415 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.09573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
r -t 1.09573 -s 4 -d 6 -p cbr -e 210 -c 10 -i 389 -a 10 -x {0.1 1073741824.0 147 ------- null}
+ -t 1.09573 -s 6 -d 4 -p prune -e 80 -c 30 -i 426 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.09573 -s 6 -d 4 -p prune -e 80 -c 30 -i 426 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.09573 -s 6 -d 4 -p prune -e 80 -c 30 -i 426 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.09586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
+ -t 1.09586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.09586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.09586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.09586 -s 4 -d 6 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
- -t 1.09586 -s 4 -d 6 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
h -t 1.09586 -s 4 -d 6 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09586 -s 3 -d 7 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
+ -t 1.09586 -s 7 -d 3 -p prune -e 80 -c 30 -i 427 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.09586 -s 7 -d 3 -p prune -e 80 -c 30 -i 427 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.09586 -s 7 -d 3 -p prune -e 80 -c 30 -i 427 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.09599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
+ -t 1.09599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
- -t 1.09599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
h -t 1.09599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
+ -t 1.09612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
- -t 1.09612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
h -t 1.09612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.09625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
- -t 1.09625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
h -t 1.09625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09865666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 418 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.09878666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 419 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.09948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
r -t 1.09948 -s 4 -d 6 -p cbr -e 210 -c 10 -i 391 -a 10 -x {0.1 1073741824.0 148 ------- null}
+ -t 1.09948 -s 6 -d 4 -p prune -e 80 -c 30 -i 430 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.09948 -s 6 -d 4 -p prune -e 80 -c 30 -i 430 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.09948 -s 6 -d 4 -p prune -e 80 -c 30 -i 430 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.09961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
+ -t 1.09961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
- -t 1.09961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
h -t 1.09961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
+ -t 1.09974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
- -t 1.09974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
h -t 1.09974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.09987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
+ -t 1.09987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
- -t 1.09987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
h -t 1.09987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.1 -s 0 -d 2 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
- -t 1.1 -s 0 -d 2 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
h -t 1.1 -s 0 -d 2 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10240666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 422 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.10253666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 423 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.10323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
r -t 1.10323 -s 4 -d 6 -p cbr -e 210 -c 10 -i 393 -a 10 -x {0.1 1073741824.0 149 ------- null}
+ -t 1.10323 -s 6 -d 4 -p prune -e 80 -c 30 -i 433 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.10323 -s 6 -d 4 -p prune -e 80 -c 30 -i 433 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.10323 -s 6 -d 4 -p prune -e 80 -c 30 -i 433 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.10336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
+ -t 1.10336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
- -t 1.10336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
h -t 1.10336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
+ -t 1.10349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
- -t 1.10349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
h -t 1.10349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
+ -t 1.10362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
- -t 1.10362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
h -t 1.10362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.10375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
- -t 1.10375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
h -t 1.10375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10615666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 426 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.10628666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 427 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.10698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
r -t 1.10698 -s 4 -d 6 -p cbr -e 210 -c 10 -i 395 -a 10 -x {0.1 1073741824.0 150 ------- null}
+ -t 1.10698 -s 6 -d 4 -p prune -e 80 -c 30 -i 436 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.10698 -s 6 -d 4 -p prune -e 80 -c 30 -i 436 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.10698 -s 6 -d 4 -p prune -e 80 -c 30 -i 436 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.10711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
+ -t 1.10711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
- -t 1.10711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
h -t 1.10711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
+ -t 1.10724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
- -t 1.10724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
h -t 1.10724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
+ -t 1.10737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
- -t 1.10737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
h -t 1.10737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.1075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
- -t 1.1075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
h -t 1.1075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.10990666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 430 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.11073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 398 -a 10 -x {0.1 1073741824.0 151 ------- null}
r -t 1.11086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
+ -t 1.11086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
- -t 1.11086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
h -t 1.11086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.11099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
+ -t 1.11099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
- -t 1.11099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
h -t 1.11099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.11112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
+ -t 1.11112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
- -t 1.11112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
h -t 1.11112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.11125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
- -t 1.11125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
h -t 1.11125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.11125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
- -t 1.11125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.11125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.11365666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 433 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.11448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 401 -a 10 -x {0.1 1073741824.0 152 ------- null}
r -t 1.11461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
+ -t 1.11461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
- -t 1.11461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
h -t 1.11461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.11474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
+ -t 1.11474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
- -t 1.11474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
h -t 1.11474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.11487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
+ -t 1.11487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
- -t 1.11487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
h -t 1.11487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.115 -s 0 -d 2 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
- -t 1.115 -s 0 -d 2 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
h -t 1.115 -s 0 -d 2 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.115 -s 1 -d 2 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
- -t 1.115 -s 1 -d 2 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.115 -s 1 -d 2 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.11740666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 436 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.11823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 404 -a 10 -x {0.1 1073741824.0 153 ------- null}
r -t 1.11836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
+ -t 1.11836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
- -t 1.11836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
h -t 1.11836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.11849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
+ -t 1.11849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
- -t 1.11849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
h -t 1.11849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.11862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
+ -t 1.11862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
- -t 1.11862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
h -t 1.11862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.11875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
- -t 1.11875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
h -t 1.11875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.11875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
- -t 1.11875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.11875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.12198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 408 -a 10 -x {0.1 1073741824.0 154 ------- null}
r -t 1.12211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
+ -t 1.12211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
- -t 1.12211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
h -t 1.12211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
+ -t 1.12224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
- -t 1.12224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
h -t 1.12224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
+ -t 1.12237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
- -t 1.12237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
h -t 1.12237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12237 -s 1 -d 2 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.12237 -s 2 -d 0 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
- -t 1.12237 -s 2 -d 0 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.12237 -s 2 -d 0 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.12237 -s 2 -d 3 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.1225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
- -t 1.1225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
h -t 1.1225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.1225 -s 1 -d 2 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
- -t 1.1225 -s 1 -d 2 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.1225 -s 1 -d 2 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.12349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.12349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.12573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 412 -a 10 -x {0.1 1073741824.0 155 ------- null}
r -t 1.12586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
+ -t 1.12586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
- -t 1.12586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
h -t 1.12586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
+ -t 1.12599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
- -t 1.12599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
h -t 1.12599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
+ -t 1.12612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
- -t 1.12612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
h -t 1.12612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12612 -s 1 -d 2 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.12612 -s 2 -d 0 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
- -t 1.12612 -s 2 -d 0 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.12612 -s 2 -d 0 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.12612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.12625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
- -t 1.12625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
h -t 1.12625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.12625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
- -t 1.12625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.12625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.12724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.12724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.12948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 416 -a 10 -x {0.1 1073741824.0 156 ------- null}
r -t 1.12961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
+ -t 1.12961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
- -t 1.12961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
h -t 1.12961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
+ -t 1.12974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
- -t 1.12974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
h -t 1.12974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
+ -t 1.12987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
- -t 1.12987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
h -t 1.12987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.12987 -s 1 -d 2 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.12987 -s 2 -d 0 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
- -t 1.12987 -s 2 -d 0 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.12987 -s 2 -d 0 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.12987 -s 2 -d 3 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.13 -s 0 -d 2 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
- -t 1.13 -s 0 -d 2 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
h -t 1.13 -s 0 -d 2 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.13 -s 1 -d 2 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
- -t 1.13 -s 1 -d 2 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.13 -s 1 -d 2 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.13099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.13099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.13323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 420 -a 10 -x {0.1 1073741824.0 157 ------- null}
r -t 1.13336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
+ -t 1.13336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
- -t 1.13336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
h -t 1.13336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
+ -t 1.13349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
- -t 1.13349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
h -t 1.13349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13349 -s 2 -d 0 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.13349 -s 0 -d 2 -p prune -e 80 -c 30 -i 451 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.13349 -s 0 -d 2 -p prune -e 80 -c 30 -i 451 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.13349 -s 0 -d 2 -p prune -e 80 -c 30 -i 451 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.13362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
+ -t 1.13362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
- -t 1.13362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
h -t 1.13362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13362 -s 1 -d 2 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.13362 -s 2 -d 0 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
- -t 1.13362 -s 2 -d 0 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.13362 -s 2 -d 0 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.13362 -s 2 -d 3 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.13375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
+ -t 1.13375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
- -t 1.13375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
h -t 1.13375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.13391666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
h -t 1.13391666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13461 -s 2 -d 3 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.13461 -s 3 -d 7 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
- -t 1.13461 -s 3 -d 7 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.13461 -s 3 -d 7 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.13461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
- -t 1.13461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.13461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.13474 -s 2 -d 3 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.13474 -s 2 -d 3 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.13698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 424 -a 10 -x {0.1 1073741824.0 158 ------- null}
r -t 1.13711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
+ -t 1.13711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
- -t 1.13711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
h -t 1.13711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
+ -t 1.13724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
- -t 1.13724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
h -t 1.13724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13724 -s 2 -d 0 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.13724 -s 0 -d 2 -p prune -e 80 -c 30 -i 454 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.13724 -s 0 -d 2 -p prune -e 80 -c 30 -i 454 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.13724 -s 0 -d 2 -p prune -e 80 -c 30 -i 454 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.13737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
+ -t 1.13737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
- -t 1.13737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
h -t 1.13737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13737 -s 1 -d 2 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.13737 -s 2 -d 0 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
- -t 1.13737 -s 2 -d 0 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.13737 -s 2 -d 0 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.13737 -s 2 -d 3 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.1375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
+ -t 1.1375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
- -t 1.1375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
h -t 1.1375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.13766666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
h -t 1.13766666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.13836 -s 2 -d 3 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.13836 -s 3 -d 7 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
- -t 1.13836 -s 3 -d 7 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.13836 -s 3 -d 7 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.13836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
- -t 1.13836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.13836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.13849 -s 2 -d 3 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.13849 -s 2 -d 3 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.14073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 428 -a 10 -x {0.1 1073741824.0 159 ------- null}
r -t 1.14086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
+ -t 1.14086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
- -t 1.14086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
h -t 1.14086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
+ -t 1.14099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
- -t 1.14099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
h -t 1.14099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14099 -s 2 -d 0 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.14099 -s 0 -d 2 -p prune -e 80 -c 30 -i 457 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.14099 -s 0 -d 2 -p prune -e 80 -c 30 -i 457 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.14099 -s 0 -d 2 -p prune -e 80 -c 30 -i 457 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.14112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
+ -t 1.14112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
- -t 1.14112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
h -t 1.14112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14112 -s 1 -d 2 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.14112 -s 2 -d 0 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
- -t 1.14112 -s 2 -d 0 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.14112 -s 2 -d 0 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.14112 -s 2 -d 3 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.14125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
+ -t 1.14125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
- -t 1.14125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
h -t 1.14125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.14141666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
h -t 1.14141666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14211 -s 2 -d 3 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.14211 -s 3 -d 7 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
- -t 1.14211 -s 3 -d 7 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.14211 -s 3 -d 7 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.14211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
- -t 1.14211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.14211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.14224 -s 2 -d 3 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.14224 -s 2 -d 3 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.14391666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 451 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.14448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 431 -a 10 -x {0.1 1073741824.0 160 ------- null}
r -t 1.14461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
+ -t 1.14461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
- -t 1.14461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
h -t 1.14461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
+ -t 1.14474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
- -t 1.14474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
h -t 1.14474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14474 -s 2 -d 0 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.14474 -s 0 -d 2 -p prune -e 80 -c 30 -i 460 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.14474 -s 0 -d 2 -p prune -e 80 -c 30 -i 460 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.14474 -s 0 -d 2 -p prune -e 80 -c 30 -i 460 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.14487 -s 1 -d 2 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
+ -t 1.14487 -s 2 -d 3 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
- -t 1.14487 -s 2 -d 3 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
h -t 1.14487 -s 2 -d 3 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.145 -s 0 -d 2 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
+ -t 1.145 -s 1 -d 2 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
- -t 1.145 -s 1 -d 2 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
h -t 1.145 -s 1 -d 2 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.14503666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
+ -t 1.14503666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
- -t 1.14516666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
h -t 1.14516666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14573 -s 3 -d 7 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.14573 -s 7 -d 3 -p prune -e 80 -c 30 -i 463 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.14573 -s 7 -d 3 -p prune -e 80 -c 30 -i 463 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.14573 -s 7 -d 3 -p prune -e 80 -c 30 -i 463 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.14573 -s 3 -d 4 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.14573 -s 4 -d 5 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.14573 -s 4 -d 6 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
- -t 1.14573 -s 4 -d 6 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.14573 -s 4 -d 6 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.14573 -s 4 -d 5 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
h -t 1.14573 -s 4 -d 5 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.14586 -s 2 -d 3 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.14586 -s 3 -d 7 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
- -t 1.14586 -s 3 -d 7 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.14586 -s 3 -d 7 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.14586 -s 3 -d 4 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
- -t 1.14586 -s 3 -d 4 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.14586 -s 3 -d 4 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.14599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
h -t 1.14599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14766666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 454 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.14823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 434 -a 10 -x {0.1 1073741824.0 161 ------- null}
r -t 1.14836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
+ -t 1.14836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
- -t 1.14836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
h -t 1.14836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
+ -t 1.14849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
- -t 1.14849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
h -t 1.14849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14849 -s 2 -d 0 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.14849 -s 0 -d 2 -p prune -e 80 -c 30 -i 464 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.14849 -s 0 -d 2 -p prune -e 80 -c 30 -i 464 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.14849 -s 0 -d 2 -p prune -e 80 -c 30 -i 464 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.14862 -s 1 -d 2 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
+ -t 1.14862 -s 2 -d 3 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
- -t 1.14862 -s 2 -d 3 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
h -t 1.14862 -s 2 -d 3 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.14875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
+ -t 1.14875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
- -t 1.14875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
h -t 1.14875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.14878666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
+ -t 1.14878666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
- -t 1.14891666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
h -t 1.14891666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.14948 -s 3 -d 7 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.14948 -s 7 -d 3 -p prune -e 80 -c 30 -i 467 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.14948 -s 7 -d 3 -p prune -e 80 -c 30 -i 467 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.14948 -s 7 -d 3 -p prune -e 80 -c 30 -i 467 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.14948 -s 3 -d 4 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.14948 -s 4 -d 5 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.14948 -s 4 -d 6 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
- -t 1.14948 -s 4 -d 6 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.14948 -s 4 -d 6 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.14948 -s 4 -d 5 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
h -t 1.14948 -s 4 -d 5 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.14961 -s 2 -d 3 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.14961 -s 3 -d 7 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
- -t 1.14961 -s 3 -d 7 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.14961 -s 3 -d 7 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.14961 -s 3 -d 4 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
- -t 1.14961 -s 3 -d 4 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.14961 -s 3 -d 4 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.14974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
h -t 1.14974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15141666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 457 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.15198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 437 -a 10 -x {0.1 1073741824.0 162 ------- null}
r -t 1.15211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
+ -t 1.15211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
- -t 1.15211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
h -t 1.15211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
+ -t 1.15224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
- -t 1.15224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
h -t 1.15224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15224 -s 2 -d 0 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.15224 -s 0 -d 2 -p prune -e 80 -c 30 -i 468 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.15224 -s 0 -d 2 -p prune -e 80 -c 30 -i 468 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.15224 -s 0 -d 2 -p prune -e 80 -c 30 -i 468 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.15237 -s 1 -d 2 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
+ -t 1.15237 -s 2 -d 3 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
- -t 1.15237 -s 2 -d 3 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
h -t 1.15237 -s 2 -d 3 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.1525 -s 0 -d 2 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
+ -t 1.1525 -s 1 -d 2 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
- -t 1.1525 -s 1 -d 2 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
h -t 1.1525 -s 1 -d 2 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15253666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
+ -t 1.15253666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
- -t 1.15266666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
h -t 1.15266666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15323 -s 3 -d 7 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.15323 -s 7 -d 3 -p prune -e 80 -c 30 -i 471 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.15323 -s 7 -d 3 -p prune -e 80 -c 30 -i 471 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.15323 -s 7 -d 3 -p prune -e 80 -c 30 -i 471 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.15323 -s 3 -d 4 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.15323 -s 4 -d 5 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.15323 -s 4 -d 6 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
- -t 1.15323 -s 4 -d 6 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.15323 -s 4 -d 6 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.15323 -s 4 -d 5 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
h -t 1.15323 -s 4 -d 5 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15336 -s 2 -d 3 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.15336 -s 3 -d 7 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
- -t 1.15336 -s 3 -d 7 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.15336 -s 3 -d 7 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.15336 -s 3 -d 4 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
- -t 1.15336 -s 3 -d 4 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.15336 -s 3 -d 4 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.15349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
h -t 1.15349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15516666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 460 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.15573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 439 -a 10 -x {0.1 1073741824.0 163 ------- null}
r -t 1.15586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
+ -t 1.15586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
- -t 1.15586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
h -t 1.15586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15599 -s 2 -d 3 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
+ -t 1.15599 -s 3 -d 7 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
- -t 1.15599 -s 3 -d 7 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
h -t 1.15599 -s 3 -d 7 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.15599 -s 3 -d 4 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
- -t 1.15599 -s 3 -d 4 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
h -t 1.15599 -s 3 -d 4 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15612 -s 1 -d 2 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
+ -t 1.15612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
- -t 1.15612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
h -t 1.15612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15615666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 463 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.15625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
- -t 1.15625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
h -t 1.15625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.15625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 175 ------- null}
- -t 1.15625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 175 ------- null}
h -t 1.15625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15628666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
+ -t 1.15628666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
r -t 1.15685 -s 4 -d 6 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.15685 -s 6 -d 4 -p prune -e 80 -c 30 -i 474 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.15685 -s 6 -d 4 -p prune -e 80 -c 30 -i 474 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.15685 -s 6 -d 4 -p prune -e 80 -c 30 -i 474 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.15685 -s 4 -d 5 -p cbr -e 210 -c 11 -i 440 -a 11 -x {1.1 1073741825.0 163 ------- null}
+ -t 1.15685 -s 5 -d 4 -p prune -e 80 -c 30 -i 475 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.15685 -s 5 -d 4 -p prune -e 80 -c 30 -i 475 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.15685 -s 5 -d 4 -p prune -e 80 -c 30 -i 475 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.15698 -s 3 -d 7 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.15698 -s 7 -d 3 -p prune -e 80 -c 30 -i 476 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.15698 -s 7 -d 3 -p prune -e 80 -c 30 -i 476 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.15698 -s 7 -d 3 -p prune -e 80 -c 30 -i 476 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.15698 -s 3 -d 4 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.15698 -s 4 -d 5 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.15698 -s 4 -d 6 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
- -t 1.15698 -s 4 -d 6 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.15698 -s 4 -d 6 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.15698 -s 4 -d 5 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
h -t 1.15698 -s 4 -d 5 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15711 -s 2 -d 3 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
+ -t 1.15711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
- -t 1.15711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
h -t 1.15711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.15724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
h -t 1.15724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15891666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 464 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.15948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 441 -a 10 -x {0.1 1073741824.0 164 ------- null}
r -t 1.15961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
+ -t 1.15961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
- -t 1.15961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
h -t 1.15961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.15974 -s 2 -d 3 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
+ -t 1.15974 -s 3 -d 4 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
- -t 1.15974 -s 3 -d 4 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
h -t 1.15974 -s 3 -d 4 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15987 -s 1 -d 2 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
+ -t 1.15987 -s 2 -d 3 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
- -t 1.15987 -s 2 -d 3 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
h -t 1.15987 -s 2 -d 3 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.15990666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 467 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.16 -s 0 -d 2 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
- -t 1.16 -s 0 -d 2 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
h -t 1.16 -s 0 -d 2 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.16 -s 1 -d 2 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 176 ------- null}
- -t 1.16 -s 1 -d 2 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 176 ------- null}
h -t 1.16 -s 1 -d 2 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16003666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
+ -t 1.16003666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
r -t 1.1606 -s 4 -d 6 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.1606 -s 6 -d 4 -p prune -e 80 -c 30 -i 479 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.1606 -s 6 -d 4 -p prune -e 80 -c 30 -i 479 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.1606 -s 6 -d 4 -p prune -e 80 -c 30 -i 479 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.1606 -s 4 -d 5 -p cbr -e 210 -c 11 -i 442 -a 11 -x {1.1 1073741825.0 164 ------- null}
+ -t 1.1606 -s 5 -d 4 -p prune -e 80 -c 30 -i 480 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.1606 -s 5 -d 4 -p prune -e 80 -c 30 -i 480 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.1606 -s 5 -d 4 -p prune -e 80 -c 30 -i 480 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.16073 -s 3 -d 7 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.16073 -s 7 -d 3 -p prune -e 80 -c 30 -i 481 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.16073 -s 7 -d 3 -p prune -e 80 -c 30 -i 481 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.16073 -s 7 -d 3 -p prune -e 80 -c 30 -i 481 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.16073 -s 3 -d 4 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.16073 -s 4 -d 5 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.16073 -s 4 -d 6 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
- -t 1.16073 -s 4 -d 6 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.16073 -s 4 -d 6 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.16073 -s 4 -d 5 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
h -t 1.16073 -s 4 -d 5 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16086 -s 2 -d 3 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
+ -t 1.16086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
- -t 1.16086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
h -t 1.16086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.16099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
h -t 1.16099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.16266666666667 -s 0 -d 2 -p prune -e 80 -c 30 -i 468 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.16323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 443 -a 10 -x {0.1 1073741824.0 165 ------- null}
r -t 1.16336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
+ -t 1.16336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
- -t 1.16336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
h -t 1.16336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.16349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
+ -t 1.16349 -s 3 -d 4 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
- -t 1.16349 -s 3 -d 4 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
h -t 1.16349 -s 3 -d 4 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16362 -s 1 -d 2 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
+ -t 1.16362 -s 2 -d 3 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
- -t 1.16362 -s 2 -d 3 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
h -t 1.16362 -s 2 -d 3 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16365666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 471 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.16375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
- -t 1.16375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
h -t 1.16375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.16375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 177 ------- null}
- -t 1.16375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 177 ------- null}
h -t 1.16375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16378666666667 -s 0 -d 2 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
+ -t 1.16378666666667 -s 2 -d 3 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
r -t 1.16435 -s 4 -d 6 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.16435 -s 6 -d 4 -p prune -e 80 -c 30 -i 484 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.16435 -s 6 -d 4 -p prune -e 80 -c 30 -i 484 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.16435 -s 6 -d 4 -p prune -e 80 -c 30 -i 484 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.16435 -s 4 -d 5 -p cbr -e 210 -c 11 -i 444 -a 11 -x {1.1 1073741825.0 165 ------- null}
+ -t 1.16435 -s 5 -d 4 -p prune -e 80 -c 30 -i 485 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.16435 -s 5 -d 4 -p prune -e 80 -c 30 -i 485 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.16435 -s 5 -d 4 -p prune -e 80 -c 30 -i 485 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.16448 -s 3 -d 7 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.16448 -s 7 -d 3 -p prune -e 80 -c 30 -i 486 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.16448 -s 7 -d 3 -p prune -e 80 -c 30 -i 486 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.16448 -s 7 -d 3 -p prune -e 80 -c 30 -i 486 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.16448 -s 3 -d 4 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.16448 -s 4 -d 5 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.16448 -s 4 -d 6 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
- -t 1.16448 -s 4 -d 6 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.16448 -s 4 -d 6 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.16448 -s 4 -d 5 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
h -t 1.16448 -s 4 -d 5 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16461 -s 2 -d 3 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
+ -t 1.16461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
- -t 1.16461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
h -t 1.16461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.16474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
h -t 1.16474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.16698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 445 -a 10 -x {0.1 1073741824.0 166 ------- null}
r -t 1.16711 -s 3 -d 7 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
+ -t 1.16711 -s 7 -d 3 -p prune -e 80 -c 30 -i 487 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.16711 -s 7 -d 3 -p prune -e 80 -c 30 -i 487 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.16711 -s 7 -d 3 -p prune -e 80 -c 30 -i 487 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.16711 -s 3 -d 4 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
+ -t 1.16711 -s 4 -d 5 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
- -t 1.16711 -s 4 -d 5 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
h -t 1.16711 -s 4 -d 5 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.16711 -s 4 -d 6 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
- -t 1.16711 -s 4 -d 6 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
h -t 1.16711 -s 4 -d 6 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
+ -t 1.16724 -s 3 -d 4 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
- -t 1.16724 -s 3 -d 4 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
h -t 1.16724 -s 3 -d 4 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.16727666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 474 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.16727666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 475 -a 30 -x {5.0 4.0 -1 ------- null}
+ -t 1.16727666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 488 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.16727666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 488 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.16727666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 488 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.16737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
+ -t 1.16737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
- -t 1.16737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
h -t 1.16737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.16737 -s 1 -d 2 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 175 ------- null}
+ -t 1.16737 -s 2 -d 3 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 175 ------- null}
r -t 1.16740666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 476 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.1675 -s 0 -d 2 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
- -t 1.1675 -s 0 -d 2 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
h -t 1.1675 -s 0 -d 2 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.1675 -s 1 -d 2 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 178 ------- null}
- -t 1.1675 -s 1 -d 2 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 178 ------- null}
h -t 1.1675 -s 1 -d 2 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.1681 -s 4 -d 6 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.1681 -s 6 -d 4 -p prune -e 80 -c 30 -i 491 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.1681 -s 6 -d 4 -p prune -e 80 -c 30 -i 491 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.1681 -s 6 -d 4 -p prune -e 80 -c 30 -i 491 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.1681 -s 4 -d 5 -p cbr -e 210 -c 11 -i 446 -a 11 -x {1.1 1073741825.0 166 ------- null}
+ -t 1.1681 -s 5 -d 4 -p prune -e 80 -c 30 -i 492 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.1681 -s 5 -d 4 -p prune -e 80 -c 30 -i 492 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.1681 -s 5 -d 4 -p prune -e 80 -c 30 -i 492 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.16823 -s 3 -d 4 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
+ -t 1.16823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
- -t 1.16823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
h -t 1.16823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.16836 -s 2 -d 3 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
+ -t 1.16836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
- -t 1.16836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
h -t 1.16836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.16849 -s 2 -d 3 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 175 ------- null}
h -t 1.16849 -s 2 -d 3 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 447 -a 10 -x {0.1 1073741824.0 167 ------- null}
r -t 1.17086 -s 3 -d 4 -p cbr -e 210 -c 11 -i 456 -a 11 -x {1.1 1073741825.0 170 ------- null}
+ -t 1.17086 -s 4 -d 3 -p prune -e 80 -c 30 -i 493 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.17086 -s 4 -d 3 -p prune -e 80 -c 30 -i 493 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.17086 -s 4 -d 3 -p prune -e 80 -c 30 -i 493 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.17099 -s 2 -d 3 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
+ -t 1.17099 -s 3 -d 4 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
- -t 1.17099 -s 3 -d 4 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
h -t 1.17099 -s 3 -d 4 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17102666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 479 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.17102666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 480 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.17112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
+ -t 1.17112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
- -t 1.17112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
h -t 1.17112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17112 -s 1 -d 2 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 176 ------- null}
+ -t 1.17112 -s 2 -d 3 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 176 ------- null}
r -t 1.17115666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 481 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.17125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
- -t 1.17125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
h -t 1.17125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.17125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 179 ------- null}
- -t 1.17125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 179 ------- null}
h -t 1.17125 -s 1 -d 2 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17185 -s 4 -d 6 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.17185 -s 6 -d 4 -p prune -e 80 -c 30 -i 496 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.17185 -s 6 -d 4 -p prune -e 80 -c 30 -i 496 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.17185 -s 6 -d 4 -p prune -e 80 -c 30 -i 496 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.17185 -s 4 -d 5 -p cbr -e 210 -c 11 -i 448 -a 11 -x {1.1 1073741825.0 167 ------- null}
+ -t 1.17185 -s 5 -d 4 -p prune -e 80 -c 30 -i 497 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.17185 -s 5 -d 4 -p prune -e 80 -c 30 -i 497 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.17185 -s 5 -d 4 -p prune -e 80 -c 30 -i 497 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.17198 -s 3 -d 4 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
+ -t 1.17198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
- -t 1.17198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
h -t 1.17198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17211 -s 2 -d 3 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
+ -t 1.17211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
- -t 1.17211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
h -t 1.17211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.17224 -s 2 -d 3 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 176 ------- null}
h -t 1.17224 -s 2 -d 3 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 449 -a 10 -x {0.1 1073741824.0 168 ------- null}
r -t 1.17461 -s 3 -d 4 -p cbr -e 210 -c 11 -i 459 -a 11 -x {1.1 1073741825.0 171 ------- null}
+ -t 1.17461 -s 4 -d 3 -p prune -e 80 -c 30 -i 498 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.17461 -s 4 -d 3 -p prune -e 80 -c 30 -i 498 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.17461 -s 4 -d 3 -p prune -e 80 -c 30 -i 498 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.17474 -s 2 -d 3 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
+ -t 1.17474 -s 3 -d 4 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
- -t 1.17474 -s 3 -d 4 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
h -t 1.17474 -s 3 -d 4 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17477666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 484 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.17477666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 485 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.17487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
+ -t 1.17487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
- -t 1.17487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
h -t 1.17487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17487 -s 1 -d 2 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 177 ------- null}
+ -t 1.17487 -s 2 -d 3 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 177 ------- null}
r -t 1.17490666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 486 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.175 -s 0 -d 2 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
- -t 1.175 -s 0 -d 2 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
h -t 1.175 -s 0 -d 2 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.175 -s 1 -d 2 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 180 ------- null}
- -t 1.175 -s 1 -d 2 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 180 ------- null}
h -t 1.175 -s 1 -d 2 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.1756 -s 4 -d 6 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.1756 -s 6 -d 4 -p prune -e 80 -c 30 -i 501 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.1756 -s 6 -d 4 -p prune -e 80 -c 30 -i 501 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.1756 -s 6 -d 4 -p prune -e 80 -c 30 -i 501 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.1756 -s 4 -d 5 -p cbr -e 210 -c 11 -i 450 -a 11 -x {1.1 1073741825.0 168 ------- null}
+ -t 1.1756 -s 5 -d 4 -p prune -e 80 -c 30 -i 502 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.1756 -s 5 -d 4 -p prune -e 80 -c 30 -i 502 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.1756 -s 5 -d 4 -p prune -e 80 -c 30 -i 502 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.17573 -s 3 -d 4 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
+ -t 1.17573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
- -t 1.17573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
h -t 1.17573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17586 -s 2 -d 3 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
+ -t 1.17586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
- -t 1.17586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
h -t 1.17586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.17599 -s 2 -d 3 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 177 ------- null}
h -t 1.17599 -s 2 -d 3 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17753666666667 -s 7 -d 3 -p prune -e 80 -c 30 -i 487 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.17770333333334 -s 4 -d 3 -p prune -e 80 -c 30 -i 488 -a 30 -x {4.0 3.0 -1 ------- null}
+ -t 1.17770333333334 -s 3 -d 2 -p prune -e 80 -c 30 -i 503 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.17770333333334 -s 3 -d 2 -p prune -e 80 -c 30 -i 503 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.17770333333334 -s 3 -d 2 -p prune -e 80 -c 30 -i 503 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.17823 -s 4 -d 5 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
+ -t 1.17823 -s 5 -d 4 -p prune -e 80 -c 30 -i 504 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.17823 -s 5 -d 4 -p prune -e 80 -c 30 -i 504 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.17823 -s 5 -d 4 -p prune -e 80 -c 30 -i 504 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.17823 -s 4 -d 6 -p cbr -e 210 -c 11 -i 453 -a 11 -x {1.1 1073741825.0 169 ------- null}
+ -t 1.17823 -s 6 -d 4 -p prune -e 80 -c 30 -i 505 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.17823 -s 6 -d 4 -p prune -e 80 -c 30 -i 505 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.17823 -s 6 -d 4 -p prune -e 80 -c 30 -i 505 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.17836 -s 3 -d 4 -p cbr -e 210 -c 11 -i 462 -a 11 -x {1.1 1073741825.0 172 ------- null}
+ -t 1.17836 -s 4 -d 3 -p prune -e 80 -c 30 -i 506 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.17836 -s 4 -d 3 -p prune -e 80 -c 30 -i 506 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.17836 -s 4 -d 3 -p prune -e 80 -c 30 -i 506 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.17849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
+ -t 1.17849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
- -t 1.17849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
h -t 1.17849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17852666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 491 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.17852666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 492 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.17862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
+ -t 1.17862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
- -t 1.17862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
h -t 1.17862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17862 -s 1 -d 2 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 178 ------- null}
+ -t 1.17862 -s 2 -d 3 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 178 ------- null}
+ -t 1.17875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
- -t 1.17875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
h -t 1.17875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.17875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 508 -a 11 -x {1.1 1073741825.0 181 ------- null}
- -t 1.17875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 508 -a 11 -x {1.1 1073741825.0 181 ------- null}
h -t 1.17875 -s 1 -d 2 -p cbr -e 210 -c 11 -i 508 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.17935 -s 4 -d 5 -p cbr -e 210 -c 10 -i 452 -a 10 -x {0.1 1073741824.0 169 ------- null}
r -t 1.17948 -s 3 -d 4 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
+ -t 1.17948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
- -t 1.17948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
h -t 1.17948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.17961 -s 2 -d 3 -p cbr -e 210 -c 11 -i 473 -a 11 -x {1.1 1073741825.0 175 ------- null}
+ -t 1.17961 -s 3 -d 2 -p prune -e 80 -c 30 -i 509 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.17961 -s 3 -d 2 -p prune -e 80 -c 30 -i 509 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.17961 -s 3 -d 2 -p prune -e 80 -c 30 -i 509 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.17974 -s 2 -d 3 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 178 ------- null}
h -t 1.17974 -s 2 -d 3 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.18128666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 493 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.18211 -s 3 -d 4 -p cbr -e 210 -c 11 -i 466 -a 11 -x {1.1 1073741825.0 173 ------- null}
+ -t 1.18211 -s 4 -d 3 -p prune -e 80 -c 30 -i 510 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.18211 -s 4 -d 3 -p prune -e 80 -c 30 -i 510 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.18211 -s 4 -d 3 -p prune -e 80 -c 30 -i 510 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.18224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
+ -t 1.18224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
- -t 1.18224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
h -t 1.18224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18227666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 496 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.18227666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 497 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.18237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
+ -t 1.18237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
- -t 1.18237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
h -t 1.18237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18237 -s 1 -d 2 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 179 ------- null}
+ -t 1.18237 -s 2 -d 3 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 179 ------- null}
+ -t 1.1825 -s 0 -d 2 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
- -t 1.1825 -s 0 -d 2 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
h -t 1.1825 -s 0 -d 2 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.1825 -s 1 -d 2 -p cbr -e 210 -c 11 -i 512 -a 11 -x {1.1 1073741825.0 182 ------- null}
- -t 1.1825 -s 1 -d 2 -p cbr -e 210 -c 11 -i 512 -a 11 -x {1.1 1073741825.0 182 ------- null}
h -t 1.1825 -s 1 -d 2 -p cbr -e 210 -c 11 -i 512 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.1831 -s 4 -d 5 -p cbr -e 210 -c 10 -i 455 -a 10 -x {0.1 1073741824.0 170 ------- null}
r -t 1.18323 -s 3 -d 4 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
+ -t 1.18323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
- -t 1.18323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
h -t 1.18323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18336 -s 2 -d 3 -p cbr -e 210 -c 11 -i 478 -a 11 -x {1.1 1073741825.0 176 ------- null}
+ -t 1.18336 -s 3 -d 2 -p prune -e 80 -c 30 -i 513 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.18336 -s 3 -d 2 -p prune -e 80 -c 30 -i 513 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.18336 -s 3 -d 2 -p prune -e 80 -c 30 -i 513 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.18349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 179 ------- null}
h -t 1.18349 -s 2 -d 3 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.18503666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 498 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.18586 -s 3 -d 4 -p cbr -e 210 -c 11 -i 470 -a 11 -x {1.1 1073741825.0 174 ------- null}
+ -t 1.18586 -s 4 -d 3 -p prune -e 80 -c 30 -i 514 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.18586 -s 4 -d 3 -p prune -e 80 -c 30 -i 514 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.18586 -s 4 -d 3 -p prune -e 80 -c 30 -i 514 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.18599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
+ -t 1.18599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
- -t 1.18599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
h -t 1.18599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18602666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 501 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.18602666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 502 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.18612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
+ -t 1.18612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
- -t 1.18612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
h -t 1.18612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18612 -s 1 -d 2 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 180 ------- null}
+ -t 1.18612 -s 2 -d 3 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 180 ------- null}
+ -t 1.18625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
- -t 1.18625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
h -t 1.18625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.18625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 516 -a 11 -x {1.1 1073741825.0 183 ------- null}
- -t 1.18625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 516 -a 11 -x {1.1 1073741825.0 183 ------- null}
h -t 1.18625 -s 1 -d 2 -p cbr -e 210 -c 11 -i 516 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.18685 -s 4 -d 5 -p cbr -e 210 -c 10 -i 458 -a 10 -x {0.1 1073741824.0 171 ------- null}
r -t 1.18698 -s 3 -d 4 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
+ -t 1.18698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
- -t 1.18698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
h -t 1.18698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18711 -s 2 -d 3 -p cbr -e 210 -c 11 -i 483 -a 11 -x {1.1 1073741825.0 177 ------- null}
+ -t 1.18711 -s 3 -d 2 -p prune -e 80 -c 30 -i 517 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.18711 -s 3 -d 2 -p prune -e 80 -c 30 -i 517 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.18711 -s 3 -d 2 -p prune -e 80 -c 30 -i 517 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.18724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 180 ------- null}
h -t 1.18724 -s 2 -d 3 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.18813 -s 3 -d 2 -p prune -e 80 -c 30 -i 503 -a 30 -x {3.0 2.0 -1 ------- null}
+ -t 1.18813 -s 2 -d 1 -p prune -e 80 -c 30 -i 518 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.18813 -s 2 -d 1 -p prune -e 80 -c 30 -i 518 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.18813 -s 2 -d 1 -p prune -e 80 -c 30 -i 518 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.18865666666667 -s 5 -d 4 -p prune -e 80 -c 30 -i 504 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.18865666666667 -s 6 -d 4 -p prune -e 80 -c 30 -i 505 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.18878666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 506 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.18961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
+ -t 1.18961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
- -t 1.18961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
h -t 1.18961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
+ -t 1.18974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
- -t 1.18974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
h -t 1.18974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
+ -t 1.18987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
- -t 1.18987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
h -t 1.18987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.18987 -s 1 -d 2 -p cbr -e 210 -c 11 -i 508 -a 11 -x {1.1 1073741825.0 181 ------- null}
+ -t 1.18987 -s 2 -d 1 -p prune -e 80 -c 30 -i 519 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.18987 -s 2 -d 1 -p prune -e 80 -c 30 -i 519 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.18987 -s 2 -d 1 -p prune -e 80 -c 30 -i 519 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.19 -s 0 -d 2 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
- -t 1.19 -s 0 -d 2 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
h -t 1.19 -s 0 -d 2 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.19 -s 1 -d 2 -p cbr -e 210 -c 11 -i 521 -a 11 -x {1.1 1073741825.0 184 ------- null}
- -t 1.19 -s 1 -d 2 -p cbr -e 210 -c 11 -i 521 -a 11 -x {1.1 1073741825.0 184 ------- null}
h -t 1.19 -s 1 -d 2 -p cbr -e 210 -c 11 -i 521 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.19003666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 509 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.1906 -s 4 -d 5 -p cbr -e 210 -c 10 -i 461 -a 10 -x {0.1 1073741824.0 172 ------- null}
r -t 1.19086 -s 2 -d 3 -p cbr -e 210 -c 11 -i 490 -a 11 -x {1.1 1073741825.0 178 ------- null}
+ -t 1.19086 -s 3 -d 2 -p prune -e 80 -c 30 -i 522 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.19086 -s 3 -d 2 -p prune -e 80 -c 30 -i 522 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.19086 -s 3 -d 2 -p prune -e 80 -c 30 -i 522 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.19253666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 510 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.19336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
+ -t 1.19336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
- -t 1.19336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
h -t 1.19336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.19349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
+ -t 1.19349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
- -t 1.19349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
h -t 1.19349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.19362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
+ -t 1.19362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
- -t 1.19362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
h -t 1.19362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.19362 -s 1 -d 2 -p cbr -e 210 -c 11 -i 512 -a 11 -x {1.1 1073741825.0 182 ------- null}
+ -t 1.19362 -s 2 -d 1 -p prune -e 80 -c 30 -i 523 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.19362 -s 2 -d 1 -p prune -e 80 -c 30 -i 523 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.19362 -s 2 -d 1 -p prune -e 80 -c 30 -i 523 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.19375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
- -t 1.19375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
h -t 1.19375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.19375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 525 -a 11 -x {1.1 1073741825.0 185 ------- null}
- -t 1.19375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 525 -a 11 -x {1.1 1073741825.0 185 ------- null}
h -t 1.19375 -s 1 -d 2 -p cbr -e 210 -c 11 -i 525 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.19378666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 513 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.19435 -s 4 -d 5 -p cbr -e 210 -c 10 -i 465 -a 10 -x {0.1 1073741824.0 173 ------- null}
r -t 1.19461 -s 2 -d 3 -p cbr -e 210 -c 11 -i 495 -a 11 -x {1.1 1073741825.0 179 ------- null}
+ -t 1.19461 -s 3 -d 2 -p prune -e 80 -c 30 -i 526 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.19461 -s 3 -d 2 -p prune -e 80 -c 30 -i 526 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.19461 -s 3 -d 2 -p prune -e 80 -c 30 -i 526 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.19628666666667 -s 4 -d 3 -p prune -e 80 -c 30 -i 514 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.19711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
+ -t 1.19711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
- -t 1.19711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
h -t 1.19711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.19724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
+ -t 1.19724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
- -t 1.19724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
h -t 1.19724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.19737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
+ -t 1.19737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
- -t 1.19737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
h -t 1.19737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.19737 -s 1 -d 2 -p cbr -e 210 -c 11 -i 516 -a 11 -x {1.1 1073741825.0 183 ------- null}
+ -t 1.19737 -s 2 -d 1 -p prune -e 80 -c 30 -i 527 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.19737 -s 2 -d 1 -p prune -e 80 -c 30 -i 527 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.19737 -s 2 -d 1 -p prune -e 80 -c 30 -i 527 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.1975 -s 0 -d 2 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
- -t 1.1975 -s 0 -d 2 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
h -t 1.1975 -s 0 -d 2 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.1975 -s 1 -d 2 -p cbr -e 210 -c 11 -i 529 -a 11 -x {1.1 1073741825.0 186 ------- null}
- -t 1.1975 -s 1 -d 2 -p cbr -e 210 -c 11 -i 529 -a 11 -x {1.1 1073741825.0 186 ------- null}
h -t 1.1975 -s 1 -d 2 -p cbr -e 210 -c 11 -i 529 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.19753666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 517 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.1981 -s 4 -d 5 -p cbr -e 210 -c 10 -i 469 -a 10 -x {0.1 1073741824.0 174 ------- null}
r -t 1.19836 -s 2 -d 3 -p cbr -e 210 -c 11 -i 500 -a 11 -x {1.1 1073741825.0 180 ------- null}
+ -t 1.19836 -s 3 -d 2 -p prune -e 80 -c 30 -i 530 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.19836 -s 3 -d 2 -p prune -e 80 -c 30 -i 530 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.19836 -s 3 -d 2 -p prune -e 80 -c 30 -i 530 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.19855666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 518 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.20029666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 519 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.20073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 472 -a 10 -x {0.1 1073741824.0 175 ------- null}
r -t 1.20086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
+ -t 1.20086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
- -t 1.20086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
h -t 1.20086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
+ -t 1.20099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
- -t 1.20099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
h -t 1.20099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
+ -t 1.20112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
- -t 1.20112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
h -t 1.20112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20112 -s 1 -d 2 -p cbr -e 210 -c 11 -i 521 -a 11 -x {1.1 1073741825.0 184 ------- null}
+ -t 1.20112 -s 2 -d 1 -p prune -e 80 -c 30 -i 531 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.20112 -s 2 -d 1 -p prune -e 80 -c 30 -i 531 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.20112 -s 2 -d 1 -p prune -e 80 -c 30 -i 531 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.20125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
- -t 1.20125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
h -t 1.20125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20128666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 522 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.20404666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 523 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.20448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 477 -a 10 -x {0.1 1073741824.0 176 ------- null}
r -t 1.20461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
+ -t 1.20461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
- -t 1.20461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
h -t 1.20461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
+ -t 1.20474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
- -t 1.20474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
h -t 1.20474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
+ -t 1.20487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
- -t 1.20487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
h -t 1.20487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20487 -s 1 -d 2 -p cbr -e 210 -c 11 -i 525 -a 11 -x {1.1 1073741825.0 185 ------- null}
+ -t 1.20487 -s 2 -d 1 -p prune -e 80 -c 30 -i 534 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.20487 -s 2 -d 1 -p prune -e 80 -c 30 -i 534 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.20487 -s 2 -d 1 -p prune -e 80 -c 30 -i 534 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.205 -s 0 -d 2 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
- -t 1.205 -s 0 -d 2 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
h -t 1.205 -s 0 -d 2 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20503666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 526 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.20779666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 527 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.20823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 482 -a 10 -x {0.1 1073741824.0 177 ------- null}
r -t 1.20836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
+ -t 1.20836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
- -t 1.20836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
h -t 1.20836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
+ -t 1.20849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
- -t 1.20849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
h -t 1.20849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
+ -t 1.20862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
- -t 1.20862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
h -t 1.20862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20862 -s 1 -d 2 -p cbr -e 210 -c 11 -i 529 -a 11 -x {1.1 1073741825.0 186 ------- null}
+ -t 1.20862 -s 2 -d 1 -p prune -e 80 -c 30 -i 537 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.20862 -s 2 -d 1 -p prune -e 80 -c 30 -i 537 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.20862 -s 2 -d 1 -p prune -e 80 -c 30 -i 537 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.20875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
- -t 1.20875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
h -t 1.20875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.20878666666667 -s 3 -d 2 -p prune -e 80 -c 30 -i 530 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.21154666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 531 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.21198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 489 -a 10 -x {0.1 1073741824.0 178 ------- null}
r -t 1.21211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
+ -t 1.21211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
- -t 1.21211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
h -t 1.21211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
+ -t 1.21224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
- -t 1.21224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
h -t 1.21224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
+ -t 1.21237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
- -t 1.21237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
h -t 1.21237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.2125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
- -t 1.2125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
h -t 1.2125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21529666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 534 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.21573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 494 -a 10 -x {0.1 1073741824.0 179 ------- null}
r -t 1.21586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
+ -t 1.21586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
- -t 1.21586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
h -t 1.21586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
+ -t 1.21599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
- -t 1.21599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
h -t 1.21599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
+ -t 1.21612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
- -t 1.21612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
h -t 1.21612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.21625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
- -t 1.21625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
h -t 1.21625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21904666666667 -s 2 -d 1 -p prune -e 80 -c 30 -i 537 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.21948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 499 -a 10 -x {0.1 1073741824.0 180 ------- null}
r -t 1.21961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
+ -t 1.21961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
- -t 1.21961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
h -t 1.21961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
+ -t 1.21974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
- -t 1.21974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
h -t 1.21974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.21987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
+ -t 1.21987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
- -t 1.21987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
h -t 1.21987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.22 -s 0 -d 2 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
- -t 1.22 -s 0 -d 2 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
h -t 1.22 -s 0 -d 2 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.22323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 507 -a 10 -x {0.1 1073741824.0 181 ------- null}
r -t 1.22336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
+ -t 1.22336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
- -t 1.22336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
h -t 1.22336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.22349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
+ -t 1.22349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
- -t 1.22349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
h -t 1.22349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.22362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
+ -t 1.22362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
- -t 1.22362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
h -t 1.22362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.22375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
- -t 1.22375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
h -t 1.22375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.22698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 511 -a 10 -x {0.1 1073741824.0 182 ------- null}
r -t 1.22711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
+ -t 1.22711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
- -t 1.22711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
h -t 1.22711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.22724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
+ -t 1.22724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
- -t 1.22724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
h -t 1.22724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.22737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
+ -t 1.22737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
- -t 1.22737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
h -t 1.22737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.2275 -s 0 -d 2 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
- -t 1.2275 -s 0 -d 2 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
h -t 1.2275 -s 0 -d 2 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 515 -a 10 -x {0.1 1073741824.0 183 ------- null}
r -t 1.23086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
+ -t 1.23086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
- -t 1.23086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
h -t 1.23086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
+ -t 1.23099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
- -t 1.23099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
h -t 1.23099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
+ -t 1.23112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
- -t 1.23112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
h -t 1.23112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.23125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
- -t 1.23125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
h -t 1.23125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 520 -a 10 -x {0.1 1073741824.0 184 ------- null}
r -t 1.23461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
+ -t 1.23461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
- -t 1.23461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
h -t 1.23461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
+ -t 1.23474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
- -t 1.23474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
h -t 1.23474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
+ -t 1.23487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
- -t 1.23487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
h -t 1.23487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.235 -s 0 -d 2 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
- -t 1.235 -s 0 -d 2 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
h -t 1.235 -s 0 -d 2 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 524 -a 10 -x {0.1 1073741824.0 185 ------- null}
r -t 1.23836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
+ -t 1.23836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
- -t 1.23836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
h -t 1.23836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
+ -t 1.23849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
- -t 1.23849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
h -t 1.23849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.23862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
+ -t 1.23862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
- -t 1.23862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
h -t 1.23862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.23875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
- -t 1.23875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
h -t 1.23875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 528 -a 10 -x {0.1 1073741824.0 186 ------- null}
r -t 1.24211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
+ -t 1.24211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
- -t 1.24211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
h -t 1.24211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
+ -t 1.24224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
- -t 1.24224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
h -t 1.24224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
+ -t 1.24237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
- -t 1.24237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
h -t 1.24237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.2425 -s 0 -d 2 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
- -t 1.2425 -s 0 -d 2 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
h -t 1.2425 -s 0 -d 2 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 532 -a 10 -x {0.1 1073741824.0 187 ------- null}
r -t 1.24586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
+ -t 1.24586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
- -t 1.24586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
h -t 1.24586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
+ -t 1.24599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
- -t 1.24599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
h -t 1.24599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
+ -t 1.24612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
- -t 1.24612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
h -t 1.24612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.24625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
- -t 1.24625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
h -t 1.24625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 535 -a 10 -x {0.1 1073741824.0 188 ------- null}
r -t 1.24961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
+ -t 1.24961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
- -t 1.24961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
h -t 1.24961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
+ -t 1.24974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
- -t 1.24974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
h -t 1.24974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.24987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
+ -t 1.24987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
- -t 1.24987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
h -t 1.24987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.25 -s 0 -d 2 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
- -t 1.25 -s 0 -d 2 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
h -t 1.25 -s 0 -d 2 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.25323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 538 -a 10 -x {0.1 1073741824.0 189 ------- null}
r -t 1.25336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
+ -t 1.25336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
- -t 1.25336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
h -t 1.25336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.25349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
+ -t 1.25349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
- -t 1.25349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
h -t 1.25349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.25362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
+ -t 1.25362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
- -t 1.25362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
h -t 1.25362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.25375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
- -t 1.25375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
h -t 1.25375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.25698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 540 -a 10 -x {0.1 1073741824.0 190 ------- null}
r -t 1.25711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
+ -t 1.25711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
- -t 1.25711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
h -t 1.25711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.25724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
+ -t 1.25724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
- -t 1.25724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
h -t 1.25724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.25737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
+ -t 1.25737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
- -t 1.25737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
h -t 1.25737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.2575 -s 0 -d 2 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
- -t 1.2575 -s 0 -d 2 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
h -t 1.2575 -s 0 -d 2 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 542 -a 10 -x {0.1 1073741824.0 191 ------- null}
r -t 1.26086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
+ -t 1.26086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
- -t 1.26086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
h -t 1.26086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
+ -t 1.26099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
- -t 1.26099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
h -t 1.26099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
+ -t 1.26112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
- -t 1.26112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
h -t 1.26112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.26125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
- -t 1.26125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
h -t 1.26125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 544 -a 10 -x {0.1 1073741824.0 192 ------- null}
r -t 1.26461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
+ -t 1.26461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
- -t 1.26461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
h -t 1.26461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
+ -t 1.26474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
- -t 1.26474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
h -t 1.26474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
+ -t 1.26487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
- -t 1.26487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
h -t 1.26487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.265 -s 0 -d 2 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
- -t 1.265 -s 0 -d 2 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
h -t 1.265 -s 0 -d 2 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 546 -a 10 -x {0.1 1073741824.0 193 ------- null}
r -t 1.26836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
+ -t 1.26836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
- -t 1.26836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
h -t 1.26836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
+ -t 1.26849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
- -t 1.26849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
h -t 1.26849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.26862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
+ -t 1.26862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
- -t 1.26862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
h -t 1.26862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.26875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
- -t 1.26875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
h -t 1.26875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 548 -a 10 -x {0.1 1073741824.0 194 ------- null}
r -t 1.27211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
+ -t 1.27211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
- -t 1.27211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
h -t 1.27211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
+ -t 1.27224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
- -t 1.27224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
h -t 1.27224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
+ -t 1.27237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
- -t 1.27237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
h -t 1.27237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.2725 -s 0 -d 2 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
- -t 1.2725 -s 0 -d 2 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
h -t 1.2725 -s 0 -d 2 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 550 -a 10 -x {0.1 1073741824.0 195 ------- null}
r -t 1.27586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
+ -t 1.27586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
- -t 1.27586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
h -t 1.27586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
+ -t 1.27599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
- -t 1.27599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
h -t 1.27599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
+ -t 1.27612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
- -t 1.27612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
h -t 1.27612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.27625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
- -t 1.27625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
h -t 1.27625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 552 -a 10 -x {0.1 1073741824.0 196 ------- null}
r -t 1.27961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
+ -t 1.27961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
- -t 1.27961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
h -t 1.27961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
+ -t 1.27974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
- -t 1.27974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
h -t 1.27974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.27987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
+ -t 1.27987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
- -t 1.27987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
h -t 1.27987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.28 -s 0 -d 2 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
- -t 1.28 -s 0 -d 2 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
h -t 1.28 -s 0 -d 2 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.28323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 554 -a 10 -x {0.1 1073741824.0 197 ------- null}
r -t 1.28336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
+ -t 1.28336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
- -t 1.28336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
h -t 1.28336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.28349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
+ -t 1.28349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
- -t 1.28349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
h -t 1.28349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.28362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
+ -t 1.28362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
- -t 1.28362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
h -t 1.28362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.28375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
- -t 1.28375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
h -t 1.28375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.28698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 556 -a 10 -x {0.1 1073741824.0 198 ------- null}
r -t 1.28711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
+ -t 1.28711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
- -t 1.28711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
h -t 1.28711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.28724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
+ -t 1.28724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
- -t 1.28724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
h -t 1.28724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.28737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
+ -t 1.28737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
- -t 1.28737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
h -t 1.28737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.2875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
- -t 1.2875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
h -t 1.2875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 558 -a 10 -x {0.1 1073741824.0 199 ------- null}
r -t 1.29086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
+ -t 1.29086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
- -t 1.29086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
h -t 1.29086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
+ -t 1.29099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
- -t 1.29099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
h -t 1.29099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
+ -t 1.29112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
- -t 1.29112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
h -t 1.29112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.29125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
- -t 1.29125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
h -t 1.29125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 560 -a 10 -x {0.1 1073741824.0 200 ------- null}
r -t 1.29461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
+ -t 1.29461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
- -t 1.29461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
h -t 1.29461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
+ -t 1.29474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
- -t 1.29474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
h -t 1.29474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
+ -t 1.29487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
- -t 1.29487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
h -t 1.29487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.295 -s 0 -d 2 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
- -t 1.295 -s 0 -d 2 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
h -t 1.295 -s 0 -d 2 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 562 -a 10 -x {0.1 1073741824.0 201 ------- null}
r -t 1.29836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
+ -t 1.29836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
- -t 1.29836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
h -t 1.29836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
+ -t 1.29849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
- -t 1.29849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
h -t 1.29849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.29862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
+ -t 1.29862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
- -t 1.29862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
h -t 1.29862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.29875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
- -t 1.29875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
h -t 1.29875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 564 -a 10 -x {0.1 1073741824.0 202 ------- null}
r -t 1.30211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
+ -t 1.30211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
- -t 1.30211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
h -t 1.30211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
+ -t 1.30224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
- -t 1.30224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
h -t 1.30224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
+ -t 1.30237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
- -t 1.30237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
h -t 1.30237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3025 -s 0 -d 2 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
- -t 1.3025 -s 0 -d 2 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
h -t 1.3025 -s 0 -d 2 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 566 -a 10 -x {0.1 1073741824.0 203 ------- null}
r -t 1.30586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
+ -t 1.30586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
- -t 1.30586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
h -t 1.30586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
+ -t 1.30599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
- -t 1.30599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
h -t 1.30599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
+ -t 1.30612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
- -t 1.30612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
h -t 1.30612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.30625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
- -t 1.30625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
h -t 1.30625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 568 -a 10 -x {0.1 1073741824.0 204 ------- null}
r -t 1.30961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
+ -t 1.30961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
- -t 1.30961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
h -t 1.30961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
+ -t 1.30974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
- -t 1.30974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
h -t 1.30974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.30987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
+ -t 1.30987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
- -t 1.30987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
h -t 1.30987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.31 -s 0 -d 2 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
- -t 1.31 -s 0 -d 2 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
h -t 1.31 -s 0 -d 2 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.31323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 570 -a 10 -x {0.1 1073741824.0 205 ------- null}
r -t 1.31336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
+ -t 1.31336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
- -t 1.31336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
h -t 1.31336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.31349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
+ -t 1.31349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
- -t 1.31349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
h -t 1.31349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.31362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
+ -t 1.31362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
- -t 1.31362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
h -t 1.31362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.31375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
- -t 1.31375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
h -t 1.31375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.31698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 572 -a 10 -x {0.1 1073741824.0 206 ------- null}
r -t 1.31711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
+ -t 1.31711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
- -t 1.31711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
h -t 1.31711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.31724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
+ -t 1.31724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
- -t 1.31724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
h -t 1.31724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.31737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
+ -t 1.31737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
- -t 1.31737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
h -t 1.31737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3175 -s 0 -d 2 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
- -t 1.3175 -s 0 -d 2 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
h -t 1.3175 -s 0 -d 2 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 574 -a 10 -x {0.1 1073741824.0 207 ------- null}
r -t 1.32086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
+ -t 1.32086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
- -t 1.32086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
h -t 1.32086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
+ -t 1.32099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
- -t 1.32099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
h -t 1.32099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
+ -t 1.32112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
- -t 1.32112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
h -t 1.32112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.32125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
- -t 1.32125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
h -t 1.32125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 576 -a 10 -x {0.1 1073741824.0 208 ------- null}
r -t 1.32461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
+ -t 1.32461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
- -t 1.32461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
h -t 1.32461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
+ -t 1.32474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
- -t 1.32474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
h -t 1.32474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
+ -t 1.32487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
- -t 1.32487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
h -t 1.32487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.325 -s 0 -d 2 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
- -t 1.325 -s 0 -d 2 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
h -t 1.325 -s 0 -d 2 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 578 -a 10 -x {0.1 1073741824.0 209 ------- null}
r -t 1.32836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
+ -t 1.32836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
- -t 1.32836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
h -t 1.32836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
+ -t 1.32849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
- -t 1.32849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
h -t 1.32849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.32862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
+ -t 1.32862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
- -t 1.32862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
h -t 1.32862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.32875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
- -t 1.32875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
h -t 1.32875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 580 -a 10 -x {0.1 1073741824.0 210 ------- null}
r -t 1.33211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
+ -t 1.33211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
- -t 1.33211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
h -t 1.33211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
+ -t 1.33224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
- -t 1.33224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
h -t 1.33224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
+ -t 1.33237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
- -t 1.33237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
h -t 1.33237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3325 -s 0 -d 2 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
- -t 1.3325 -s 0 -d 2 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
h -t 1.3325 -s 0 -d 2 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 582 -a 10 -x {0.1 1073741824.0 211 ------- null}
r -t 1.33586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
+ -t 1.33586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
- -t 1.33586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
h -t 1.33586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
+ -t 1.33599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
- -t 1.33599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
h -t 1.33599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
+ -t 1.33612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
- -t 1.33612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
h -t 1.33612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.33625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
- -t 1.33625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
h -t 1.33625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 584 -a 10 -x {0.1 1073741824.0 212 ------- null}
r -t 1.33961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
+ -t 1.33961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
- -t 1.33961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
h -t 1.33961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
+ -t 1.33974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
- -t 1.33974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
h -t 1.33974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.33987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
+ -t 1.33987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
- -t 1.33987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
h -t 1.33987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.34 -s 0 -d 2 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
- -t 1.34 -s 0 -d 2 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
h -t 1.34 -s 0 -d 2 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.34323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 586 -a 10 -x {0.1 1073741824.0 213 ------- null}
r -t 1.34336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
+ -t 1.34336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
- -t 1.34336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
h -t 1.34336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.34349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
+ -t 1.34349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
- -t 1.34349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
h -t 1.34349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.34362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
+ -t 1.34362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
- -t 1.34362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
h -t 1.34362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.34375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
- -t 1.34375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
h -t 1.34375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.34698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 588 -a 10 -x {0.1 1073741824.0 214 ------- null}
r -t 1.34711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
+ -t 1.34711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
- -t 1.34711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
h -t 1.34711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.34724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
+ -t 1.34724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
- -t 1.34724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
h -t 1.34724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.34737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
+ -t 1.34737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
- -t 1.34737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
h -t 1.34737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3475 -s 0 -d 2 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
- -t 1.3475 -s 0 -d 2 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
h -t 1.3475 -s 0 -d 2 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 590 -a 10 -x {0.1 1073741824.0 215 ------- null}
r -t 1.35086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
+ -t 1.35086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
- -t 1.35086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
h -t 1.35086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
+ -t 1.35099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
- -t 1.35099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
h -t 1.35099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
+ -t 1.35112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
- -t 1.35112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
h -t 1.35112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.35125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
- -t 1.35125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
h -t 1.35125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 592 -a 10 -x {0.1 1073741824.0 216 ------- null}
r -t 1.35461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
+ -t 1.35461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
- -t 1.35461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
h -t 1.35461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
+ -t 1.35474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
- -t 1.35474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
h -t 1.35474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
+ -t 1.35487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
- -t 1.35487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
h -t 1.35487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.355 -s 0 -d 2 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
- -t 1.355 -s 0 -d 2 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
h -t 1.355 -s 0 -d 2 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 594 -a 10 -x {0.1 1073741824.0 217 ------- null}
r -t 1.35836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
+ -t 1.35836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
- -t 1.35836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
h -t 1.35836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
+ -t 1.35849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
- -t 1.35849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
h -t 1.35849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.35862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
+ -t 1.35862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
- -t 1.35862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
h -t 1.35862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.35875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
- -t 1.35875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
h -t 1.35875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 596 -a 10 -x {0.1 1073741824.0 218 ------- null}
r -t 1.36211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
+ -t 1.36211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
- -t 1.36211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
h -t 1.36211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
+ -t 1.36224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
- -t 1.36224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
h -t 1.36224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
+ -t 1.36237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
- -t 1.36237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
h -t 1.36237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
- -t 1.3625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
h -t 1.3625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 598 -a 10 -x {0.1 1073741824.0 219 ------- null}
r -t 1.36586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
+ -t 1.36586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
- -t 1.36586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
h -t 1.36586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
+ -t 1.36599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
- -t 1.36599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
h -t 1.36599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
+ -t 1.36612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
- -t 1.36612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
h -t 1.36612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.36625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
- -t 1.36625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
h -t 1.36625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 600 -a 10 -x {0.1 1073741824.0 220 ------- null}
r -t 1.36961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
+ -t 1.36961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
- -t 1.36961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
h -t 1.36961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
+ -t 1.36974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
- -t 1.36974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
h -t 1.36974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.36987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
+ -t 1.36987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
- -t 1.36987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
h -t 1.36987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.37 -s 0 -d 2 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
- -t 1.37 -s 0 -d 2 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
h -t 1.37 -s 0 -d 2 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.37323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 602 -a 10 -x {0.1 1073741824.0 221 ------- null}
r -t 1.37336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
+ -t 1.37336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
- -t 1.37336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
h -t 1.37336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.37349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
+ -t 1.37349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
- -t 1.37349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
h -t 1.37349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.37362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
+ -t 1.37362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
- -t 1.37362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
h -t 1.37362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.37375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
- -t 1.37375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
h -t 1.37375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.37698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 604 -a 10 -x {0.1 1073741824.0 222 ------- null}
r -t 1.37711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
+ -t 1.37711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
- -t 1.37711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
h -t 1.37711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.37724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
+ -t 1.37724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
- -t 1.37724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
h -t 1.37724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.37737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
+ -t 1.37737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
- -t 1.37737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
h -t 1.37737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3775 -s 0 -d 2 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
- -t 1.3775 -s 0 -d 2 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
h -t 1.3775 -s 0 -d 2 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 606 -a 10 -x {0.1 1073741824.0 223 ------- null}
r -t 1.38086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
+ -t 1.38086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
- -t 1.38086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
h -t 1.38086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
+ -t 1.38099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
- -t 1.38099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
h -t 1.38099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
+ -t 1.38112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
- -t 1.38112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
h -t 1.38112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.38125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
- -t 1.38125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
h -t 1.38125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 608 -a 10 -x {0.1 1073741824.0 224 ------- null}
r -t 1.38461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
+ -t 1.38461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
- -t 1.38461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
h -t 1.38461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
+ -t 1.38474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
- -t 1.38474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
h -t 1.38474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
+ -t 1.38487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
- -t 1.38487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
h -t 1.38487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.385 -s 0 -d 2 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
- -t 1.385 -s 0 -d 2 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
h -t 1.385 -s 0 -d 2 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 610 -a 10 -x {0.1 1073741824.0 225 ------- null}
r -t 1.38836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
+ -t 1.38836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
- -t 1.38836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
h -t 1.38836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
+ -t 1.38849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
- -t 1.38849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
h -t 1.38849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.38862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
+ -t 1.38862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
- -t 1.38862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
h -t 1.38862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.38875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
- -t 1.38875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
h -t 1.38875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 612 -a 10 -x {0.1 1073741824.0 226 ------- null}
r -t 1.39211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
+ -t 1.39211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
- -t 1.39211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
h -t 1.39211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
+ -t 1.39224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
- -t 1.39224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
h -t 1.39224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
+ -t 1.39237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
- -t 1.39237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
h -t 1.39237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.3925 -s 0 -d 2 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
- -t 1.3925 -s 0 -d 2 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
h -t 1.3925 -s 0 -d 2 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 614 -a 10 -x {0.1 1073741824.0 227 ------- null}
r -t 1.39586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
+ -t 1.39586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
- -t 1.39586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
h -t 1.39586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
+ -t 1.39599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
- -t 1.39599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
h -t 1.39599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
+ -t 1.39612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
- -t 1.39612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
h -t 1.39612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.39625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
- -t 1.39625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
h -t 1.39625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 616 -a 10 -x {0.1 1073741824.0 228 ------- null}
r -t 1.39961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
+ -t 1.39961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
- -t 1.39961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
h -t 1.39961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
+ -t 1.39974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
- -t 1.39974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
h -t 1.39974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.39987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
+ -t 1.39987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
- -t 1.39987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
h -t 1.39987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.4 -s 0 -d 2 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
- -t 1.4 -s 0 -d 2 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
h -t 1.4 -s 0 -d 2 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.40323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 618 -a 10 -x {0.1 1073741824.0 229 ------- null}
r -t 1.40336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
+ -t 1.40336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
- -t 1.40336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
h -t 1.40336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.40349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
+ -t 1.40349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
- -t 1.40349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
h -t 1.40349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.40362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
+ -t 1.40362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
- -t 1.40362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
h -t 1.40362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.40375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
- -t 1.40375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
h -t 1.40375 -s 0 -d 2 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.40698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 620 -a 10 -x {0.1 1073741824.0 230 ------- null}
r -t 1.40711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
+ -t 1.40711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
- -t 1.40711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
h -t 1.40711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.40724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
+ -t 1.40724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
- -t 1.40724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
h -t 1.40724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.40737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
+ -t 1.40737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
- -t 1.40737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
h -t 1.40737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.4075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
- -t 1.4075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
h -t 1.4075 -s 0 -d 2 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 622 -a 10 -x {0.1 1073741824.0 231 ------- null}
r -t 1.41086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
+ -t 1.41086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
- -t 1.41086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
h -t 1.41086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
+ -t 1.41099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
- -t 1.41099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
h -t 1.41099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
+ -t 1.41112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
- -t 1.41112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
h -t 1.41112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.41125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
- -t 1.41125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
h -t 1.41125 -s 0 -d 2 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 624 -a 10 -x {0.1 1073741824.0 232 ------- null}
r -t 1.41461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
+ -t 1.41461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
- -t 1.41461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
h -t 1.41461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
+ -t 1.41474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
- -t 1.41474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
h -t 1.41474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41487 -s 0 -d 2 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
+ -t 1.41487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
- -t 1.41487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
h -t 1.41487 -s 2 -d 3 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.415 -s 0 -d 2 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
- -t 1.415 -s 0 -d 2 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
h -t 1.415 -s 0 -d 2 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 626 -a 10 -x {0.1 1073741824.0 233 ------- null}
r -t 1.41836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
+ -t 1.41836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
- -t 1.41836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
h -t 1.41836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
+ -t 1.41849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
- -t 1.41849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
h -t 1.41849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.41862 -s 0 -d 2 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
+ -t 1.41862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
- -t 1.41862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
h -t 1.41862 -s 2 -d 3 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.41875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
- -t 1.41875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
h -t 1.41875 -s 0 -d 2 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 628 -a 10 -x {0.1 1073741824.0 234 ------- null}
r -t 1.42211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
+ -t 1.42211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
- -t 1.42211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
h -t 1.42211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
+ -t 1.42224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
- -t 1.42224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
h -t 1.42224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42237 -s 0 -d 2 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
+ -t 1.42237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
- -t 1.42237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
h -t 1.42237 -s 2 -d 3 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.4225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
- -t 1.4225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
h -t 1.4225 -s 0 -d 2 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 630 -a 10 -x {0.1 1073741824.0 235 ------- null}
r -t 1.42586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
+ -t 1.42586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
- -t 1.42586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
h -t 1.42586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
+ -t 1.42599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
- -t 1.42599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
h -t 1.42599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42612 -s 0 -d 2 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
+ -t 1.42612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
- -t 1.42612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
h -t 1.42612 -s 2 -d 3 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.42625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
- -t 1.42625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
h -t 1.42625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 632 -a 10 -x {0.1 1073741824.0 236 ------- null}
r -t 1.42961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
+ -t 1.42961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
- -t 1.42961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
h -t 1.42961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42974 -s 2 -d 3 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
+ -t 1.42974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
- -t 1.42974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
h -t 1.42974 -s 3 -d 4 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.42987 -s 0 -d 2 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
+ -t 1.42987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
- -t 1.42987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
h -t 1.42987 -s 2 -d 3 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.43 -s 0 -d 2 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
- -t 1.43 -s 0 -d 2 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
h -t 1.43 -s 0 -d 2 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.43323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 634 -a 10 -x {0.1 1073741824.0 237 ------- null}
r -t 1.43336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
+ -t 1.43336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
- -t 1.43336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
h -t 1.43336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.43349 -s 2 -d 3 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
+ -t 1.43349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
- -t 1.43349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
h -t 1.43349 -s 3 -d 4 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.43362 -s 0 -d 2 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
+ -t 1.43362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
- -t 1.43362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
h -t 1.43362 -s 2 -d 3 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.43374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
- -t 1.43374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
h -t 1.43374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.43698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 636 -a 10 -x {0.1 1073741824.0 238 ------- null}
r -t 1.43711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
+ -t 1.43711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
- -t 1.43711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
h -t 1.43711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.43724 -s 2 -d 3 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
+ -t 1.43724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
- -t 1.43724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
h -t 1.43724 -s 3 -d 4 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.43737 -s 0 -d 2 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
+ -t 1.43737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
- -t 1.43737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
h -t 1.43737 -s 2 -d 3 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.43749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
- -t 1.43749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
h -t 1.43749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 638 -a 10 -x {0.1 1073741824.0 239 ------- null}
r -t 1.44086 -s 3 -d 4 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
+ -t 1.44086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
- -t 1.44086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
h -t 1.44086 -s 4 -d 5 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44099 -s 2 -d 3 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
+ -t 1.44099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
- -t 1.44099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
h -t 1.44099 -s 3 -d 4 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44112 -s 0 -d 2 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
+ -t 1.44112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
- -t 1.44112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
h -t 1.44112 -s 2 -d 3 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.44124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
- -t 1.44124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
h -t 1.44124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 640 -a 10 -x {0.1 1073741824.0 240 ------- null}
r -t 1.44461 -s 3 -d 4 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
+ -t 1.44461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
- -t 1.44461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
h -t 1.44461 -s 4 -d 5 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44474 -s 2 -d 3 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
+ -t 1.44474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
- -t 1.44474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
h -t 1.44474 -s 3 -d 4 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
+ -t 1.44486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
- -t 1.44486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
h -t 1.44486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.44499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
- -t 1.44499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
h -t 1.44499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 642 -a 10 -x {0.1 1073741824.0 241 ------- null}
r -t 1.44836 -s 3 -d 4 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
+ -t 1.44836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
- -t 1.44836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
h -t 1.44836 -s 4 -d 5 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44849 -s 2 -d 3 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
+ -t 1.44849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
- -t 1.44849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
h -t 1.44849 -s 3 -d 4 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.44861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
+ -t 1.44861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
- -t 1.44861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
h -t 1.44861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.44874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
- -t 1.44874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
h -t 1.44874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45198 -s 4 -d 5 -p cbr -e 210 -c 10 -i 644 -a 10 -x {0.1 1073741824.0 242 ------- null}
r -t 1.45211 -s 3 -d 4 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
+ -t 1.45211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
- -t 1.45211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
h -t 1.45211 -s 4 -d 5 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45224 -s 2 -d 3 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
+ -t 1.45224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
- -t 1.45224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
h -t 1.45224 -s 3 -d 4 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
+ -t 1.45236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
- -t 1.45236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
h -t 1.45236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.45249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
- -t 1.45249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
h -t 1.45249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45573 -s 4 -d 5 -p cbr -e 210 -c 10 -i 646 -a 10 -x {0.1 1073741824.0 243 ------- null}
r -t 1.45586 -s 3 -d 4 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
+ -t 1.45586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
- -t 1.45586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
h -t 1.45586 -s 4 -d 5 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45599 -s 2 -d 3 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
+ -t 1.45599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
- -t 1.45599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
h -t 1.45599 -s 3 -d 4 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
+ -t 1.45611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
- -t 1.45611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
h -t 1.45611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.45624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
- -t 1.45624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
h -t 1.45624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45948 -s 4 -d 5 -p cbr -e 210 -c 10 -i 648 -a 10 -x {0.1 1073741824.0 244 ------- null}
r -t 1.45961 -s 3 -d 4 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
+ -t 1.45961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
- -t 1.45961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
h -t 1.45961 -s 4 -d 5 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
+ -t 1.45973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
- -t 1.45973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
h -t 1.45973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.45986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
+ -t 1.45986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
- -t 1.45986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
h -t 1.45986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.45999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
- -t 1.45999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
h -t 1.45999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.46323 -s 4 -d 5 -p cbr -e 210 -c 10 -i 650 -a 10 -x {0.1 1073741824.0 245 ------- null}
r -t 1.46336 -s 3 -d 4 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
+ -t 1.46336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
- -t 1.46336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
h -t 1.46336 -s 4 -d 5 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.46348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
+ -t 1.46348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
- -t 1.46348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
h -t 1.46348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.46361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
+ -t 1.46361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
- -t 1.46361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
h -t 1.46361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.46374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
- -t 1.46374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
h -t 1.46374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.46698 -s 4 -d 5 -p cbr -e 210 -c 10 -i 652 -a 10 -x {0.1 1073741824.0 246 ------- null}
r -t 1.46711 -s 3 -d 4 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
+ -t 1.46711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
- -t 1.46711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
h -t 1.46711 -s 4 -d 5 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.46723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
+ -t 1.46723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
- -t 1.46723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
h -t 1.46723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.46736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
+ -t 1.46736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
- -t 1.46736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
h -t 1.46736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.46749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
- -t 1.46749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
h -t 1.46749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47073 -s 4 -d 5 -p cbr -e 210 -c 10 -i 654 -a 10 -x {0.1 1073741824.0 247 ------- null}
r -t 1.47085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
+ -t 1.47085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
- -t 1.47085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
h -t 1.47085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
+ -t 1.47098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
- -t 1.47098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
h -t 1.47098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
+ -t 1.47111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
- -t 1.47111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
h -t 1.47111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.47124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
- -t 1.47124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
h -t 1.47124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47448 -s 4 -d 5 -p cbr -e 210 -c 10 -i 656 -a 10 -x {0.1 1073741824.0 248 ------- null}
r -t 1.47460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
+ -t 1.47460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
- -t 1.47460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
h -t 1.47460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
+ -t 1.47473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
- -t 1.47473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
h -t 1.47473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
+ -t 1.47486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
- -t 1.47486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
h -t 1.47486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.47499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
- -t 1.47499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
h -t 1.47499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47823 -s 4 -d 5 -p cbr -e 210 -c 10 -i 658 -a 10 -x {0.1 1073741824.0 249 ------- null}
r -t 1.47835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
+ -t 1.47835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
- -t 1.47835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
h -t 1.47835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
+ -t 1.47848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
- -t 1.47848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
h -t 1.47848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.47861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
+ -t 1.47861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
- -t 1.47861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
h -t 1.47861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.47874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
- -t 1.47874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
h -t 1.47874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 660 -a 10 -x {0.1 1073741824.0 250 ------- null}
r -t 1.48210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
+ -t 1.48210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
- -t 1.48210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
h -t 1.48210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
+ -t 1.48223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
- -t 1.48223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
h -t 1.48223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
+ -t 1.48236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
- -t 1.48236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
h -t 1.48236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.48249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
- -t 1.48249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
h -t 1.48249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 662 -a 10 -x {0.1 1073741824.0 251 ------- null}
r -t 1.48585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
+ -t 1.48585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
- -t 1.48585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
h -t 1.48585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
+ -t 1.48598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
- -t 1.48598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
h -t 1.48598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
+ -t 1.48611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
- -t 1.48611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
h -t 1.48611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.48624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
- -t 1.48624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
h -t 1.48624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 664 -a 10 -x {0.1 1073741824.0 252 ------- null}
r -t 1.48960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
+ -t 1.48960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
- -t 1.48960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
h -t 1.48960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
+ -t 1.48973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
- -t 1.48973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
h -t 1.48973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.48986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
+ -t 1.48986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
- -t 1.48986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
h -t 1.48986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.48999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
- -t 1.48999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
h -t 1.48999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.49322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 666 -a 10 -x {0.1 1073741824.0 253 ------- null}
r -t 1.49335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
+ -t 1.49335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
- -t 1.49335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
h -t 1.49335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.49348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
+ -t 1.49348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
- -t 1.49348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
h -t 1.49348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.49361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
+ -t 1.49361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
- -t 1.49361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
h -t 1.49361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.49374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
- -t 1.49374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
h -t 1.49374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.49697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 668 -a 10 -x {0.1 1073741824.0 254 ------- null}
r -t 1.49710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
+ -t 1.49710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
- -t 1.49710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
h -t 1.49710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.49723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
+ -t 1.49723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
- -t 1.49723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
h -t 1.49723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.49736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
+ -t 1.49736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
- -t 1.49736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
h -t 1.49736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.49749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
- -t 1.49749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
h -t 1.49749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 -1 ------- null}
v -t 1.5 -e sim_annotation 1.5 1.5 6 join-group 1073741824
+ -t 1.5 -s 6 -d 4 -p graft -e 80 -c 31 -i 694 -a 31 -x {6.0 4.0 -1 ------- null}
- -t 1.5 -s 6 -d 4 -p graft -e 80 -c 31 -i 694 -a 31 -x {6.0 4.0 -1 ------- null}
h -t 1.5 -s 6 -d 4 -p graft -e 80 -c 31 -i 694 -a 31 -x {6.0 4.0 -1 ------- null}
r -t 1.50072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 670 -a 10 -x {0.1 1073741824.0 255 ------- null}
r -t 1.50085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
+ -t 1.50085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
- -t 1.50085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
h -t 1.50085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
+ -t 1.50098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
- -t 1.50098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
h -t 1.50098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
+ -t 1.50111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
- -t 1.50111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
h -t 1.50111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.50124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
- -t 1.50124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
h -t 1.50124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 672 -a 10 -x {0.1 1073741824.0 256 ------- null}
r -t 1.50460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
+ -t 1.50460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
- -t 1.50460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
h -t 1.50460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
+ -t 1.50473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
- -t 1.50473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
h -t 1.50473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
+ -t 1.50486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
- -t 1.50486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
h -t 1.50486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.50499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
- -t 1.50499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
h -t 1.50499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 674 -a 10 -x {0.1 1073741824.0 257 ------- null}
r -t 1.50835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
+ -t 1.50835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
- -t 1.50835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
h -t 1.50835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
+ -t 1.50848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
- -t 1.50848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
h -t 1.50848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.50861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
+ -t 1.50861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
- -t 1.50861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
h -t 1.50861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.50874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
- -t 1.50874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
h -t 1.50874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51042666666667 -s 6 -d 4 -p graft -e 80 -c 31 -i 694 -a 31 -x {6.0 4.0 -1 ------- null}
r -t 1.51197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 676 -a 10 -x {0.1 1073741824.0 258 ------- null}
r -t 1.51210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
+ -t 1.51210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
- -t 1.51210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
h -t 1.51210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.51210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
- -t 1.51210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
h -t 1.51210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
+ -t 1.51223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
- -t 1.51223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
h -t 1.51223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
+ -t 1.51236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
- -t 1.51236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
h -t 1.51236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.51249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
- -t 1.51249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
h -t 1.51249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 678 -a 10 -x {0.1 1073741824.0 259 ------- null}
r -t 1.51585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
+ -t 1.51585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
- -t 1.51585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
h -t 1.51585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.51585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
- -t 1.51585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
h -t 1.51585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
+ -t 1.51598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
- -t 1.51598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
h -t 1.51598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
+ -t 1.51611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
- -t 1.51611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
h -t 1.51611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.51624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
- -t 1.51624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
h -t 1.51624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 680 -a 10 -x {0.1 1073741824.0 260 ------- null}
r -t 1.51960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
+ -t 1.51960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
- -t 1.51960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
h -t 1.51960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.51960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
- -t 1.51960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
h -t 1.51960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
+ -t 1.51973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
- -t 1.51973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
h -t 1.51973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.51986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
+ -t 1.51986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
- -t 1.51986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
h -t 1.51986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.51999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
- -t 1.51999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
h -t 1.51999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.52322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
r -t 1.52322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 682 -a 10 -x {0.1 1073741824.0 261 ------- null}
r -t 1.52335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
+ -t 1.52335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
- -t 1.52335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
h -t 1.52335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.52335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
- -t 1.52335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
h -t 1.52335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.52348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
+ -t 1.52348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
- -t 1.52348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
h -t 1.52348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.52361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
+ -t 1.52361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
- -t 1.52361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
h -t 1.52361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.52374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
- -t 1.52374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
h -t 1.52374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.52697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
r -t 1.52697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 684 -a 10 -x {0.1 1073741824.0 262 ------- null}
r -t 1.52710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
+ -t 1.52710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
- -t 1.52710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
h -t 1.52710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.52710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
- -t 1.52710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
h -t 1.52710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.52723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
+ -t 1.52723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
- -t 1.52723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
h -t 1.52723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.52736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
+ -t 1.52736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
- -t 1.52736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
h -t 1.52736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.52749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
- -t 1.52749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
h -t 1.52749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
r -t 1.53072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 686 -a 10 -x {0.1 1073741824.0 263 ------- null}
r -t 1.53085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
+ -t 1.53085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
- -t 1.53085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
h -t 1.53085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.53085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
- -t 1.53085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
h -t 1.53085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
+ -t 1.53098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
- -t 1.53098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
h -t 1.53098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
+ -t 1.53111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
- -t 1.53111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
h -t 1.53111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.53124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
- -t 1.53124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
h -t 1.53124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
r -t 1.53447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 688 -a 10 -x {0.1 1073741824.0 264 ------- null}
r -t 1.53460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
+ -t 1.53460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
- -t 1.53460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
h -t 1.53460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.53460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
- -t 1.53460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
h -t 1.53460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
+ -t 1.53473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
- -t 1.53473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
h -t 1.53473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
+ -t 1.53486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
- -t 1.53486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
h -t 1.53486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.53499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
- -t 1.53499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
h -t 1.53499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
r -t 1.53822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 690 -a 10 -x {0.1 1073741824.0 265 ------- null}
r -t 1.53835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
+ -t 1.53835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
- -t 1.53835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
h -t 1.53835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.53835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
- -t 1.53835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
h -t 1.53835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
+ -t 1.53848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
- -t 1.53848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
h -t 1.53848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.53861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
+ -t 1.53861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
- -t 1.53861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
h -t 1.53861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.53874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
- -t 1.53874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
h -t 1.53874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
r -t 1.54197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 692 -a 10 -x {0.1 1073741824.0 266 ------- null}
r -t 1.54210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
+ -t 1.54210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
- -t 1.54210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
h -t 1.54210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.54210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
- -t 1.54210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
h -t 1.54210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
+ -t 1.54223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
- -t 1.54223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
h -t 1.54223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
+ -t 1.54236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
- -t 1.54236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
h -t 1.54236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.54249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
- -t 1.54249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
h -t 1.54249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
r -t 1.54572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 695 -a 10 -x {0.1 1073741824.0 267 ------- null}
r -t 1.54585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
+ -t 1.54585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
- -t 1.54585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
h -t 1.54585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.54585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
- -t 1.54585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
h -t 1.54585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
+ -t 1.54598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
- -t 1.54598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
h -t 1.54598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
+ -t 1.54611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
- -t 1.54611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
h -t 1.54611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.54624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
- -t 1.54624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
h -t 1.54624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
r -t 1.54947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 697 -a 10 -x {0.1 1073741824.0 268 ------- null}
r -t 1.54960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
+ -t 1.54960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
- -t 1.54960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
h -t 1.54960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.54960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
- -t 1.54960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
h -t 1.54960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
+ -t 1.54973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
- -t 1.54973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
h -t 1.54973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.54986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
+ -t 1.54986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
- -t 1.54986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
h -t 1.54986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.54999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
- -t 1.54999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
h -t 1.54999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.55322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
r -t 1.55322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 699 -a 10 -x {0.1 1073741824.0 269 ------- null}
r -t 1.55335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
+ -t 1.55335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
- -t 1.55335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
h -t 1.55335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.55335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
- -t 1.55335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
h -t 1.55335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.55348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
+ -t 1.55348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
- -t 1.55348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
h -t 1.55348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.55361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
+ -t 1.55361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
- -t 1.55361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
h -t 1.55361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.55374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
- -t 1.55374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
h -t 1.55374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.55697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
r -t 1.55697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 701 -a 10 -x {0.1 1073741824.0 270 ------- null}
r -t 1.55710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
+ -t 1.55710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
- -t 1.55710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
h -t 1.55710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.55710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
- -t 1.55710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
h -t 1.55710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.55723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
+ -t 1.55723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
- -t 1.55723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
h -t 1.55723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.55736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
+ -t 1.55736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
- -t 1.55736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
h -t 1.55736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.55749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
- -t 1.55749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
h -t 1.55749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
r -t 1.56072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 703 -a 10 -x {0.1 1073741824.0 271 ------- null}
r -t 1.56085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
+ -t 1.56085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
- -t 1.56085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
h -t 1.56085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.56085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
- -t 1.56085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
h -t 1.56085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
+ -t 1.56098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
- -t 1.56098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
h -t 1.56098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
+ -t 1.56111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
- -t 1.56111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
h -t 1.56111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.56124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
- -t 1.56124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
h -t 1.56124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
r -t 1.56447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 705 -a 10 -x {0.1 1073741824.0 272 ------- null}
r -t 1.56460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
+ -t 1.56460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
- -t 1.56460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
h -t 1.56460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.56460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
- -t 1.56460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
h -t 1.56460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
+ -t 1.56473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
- -t 1.56473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
h -t 1.56473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
+ -t 1.56486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
- -t 1.56486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
h -t 1.56486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.56499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
- -t 1.56499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
h -t 1.56499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
r -t 1.56822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 707 -a 10 -x {0.1 1073741824.0 273 ------- null}
r -t 1.56835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
+ -t 1.56835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
- -t 1.56835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
h -t 1.56835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.56835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
- -t 1.56835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
h -t 1.56835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
+ -t 1.56848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
- -t 1.56848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
h -t 1.56848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.56861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
+ -t 1.56861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
- -t 1.56861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
h -t 1.56861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.56874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
- -t 1.56874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
h -t 1.56874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
r -t 1.57197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 709 -a 10 -x {0.1 1073741824.0 274 ------- null}
r -t 1.57210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
+ -t 1.57210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
- -t 1.57210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
h -t 1.57210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.57210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
- -t 1.57210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
h -t 1.57210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
+ -t 1.57223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
- -t 1.57223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
h -t 1.57223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
+ -t 1.57236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
- -t 1.57236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
h -t 1.57236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.57249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
- -t 1.57249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
h -t 1.57249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
r -t 1.57572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 711 -a 10 -x {0.1 1073741824.0 275 ------- null}
r -t 1.57585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
+ -t 1.57585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
- -t 1.57585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
h -t 1.57585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.57585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
- -t 1.57585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
h -t 1.57585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
+ -t 1.57598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
- -t 1.57598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
h -t 1.57598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
+ -t 1.57611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
- -t 1.57611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
h -t 1.57611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.57624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
- -t 1.57624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
h -t 1.57624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
r -t 1.57947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 713 -a 10 -x {0.1 1073741824.0 276 ------- null}
r -t 1.57960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
+ -t 1.57960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
- -t 1.57960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
h -t 1.57960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.57960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
- -t 1.57960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
h -t 1.57960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
+ -t 1.57973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
- -t 1.57973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
h -t 1.57973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.57986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
+ -t 1.57986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
- -t 1.57986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
h -t 1.57986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.57999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
- -t 1.57999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
h -t 1.57999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.58322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
r -t 1.58322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 715 -a 10 -x {0.1 1073741824.0 277 ------- null}
r -t 1.58335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
+ -t 1.58335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
- -t 1.58335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
h -t 1.58335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.58335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
- -t 1.58335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
h -t 1.58335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.58348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
+ -t 1.58348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
- -t 1.58348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
h -t 1.58348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.58361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
+ -t 1.58361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
- -t 1.58361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
h -t 1.58361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.58374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
- -t 1.58374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
h -t 1.58374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.58697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
r -t 1.58697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 717 -a 10 -x {0.1 1073741824.0 278 ------- null}
r -t 1.58710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
+ -t 1.58710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
- -t 1.58710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
h -t 1.58710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.58710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
- -t 1.58710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
h -t 1.58710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.58723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
+ -t 1.58723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
- -t 1.58723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
h -t 1.58723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.58736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
+ -t 1.58736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
- -t 1.58736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
h -t 1.58736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.58749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.58749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.58749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
r -t 1.59072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 719 -a 10 -x {0.1 1073741824.0 279 ------- null}
r -t 1.59085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
+ -t 1.59085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
- -t 1.59085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
h -t 1.59085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
- -t 1.59085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
h -t 1.59085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
+ -t 1.59098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
- -t 1.59098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
h -t 1.59098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
+ -t 1.59111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
- -t 1.59111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
h -t 1.59111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.59124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.59124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
r -t 1.59447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 721 -a 10 -x {0.1 1073741824.0 280 ------- null}
r -t 1.59460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
+ -t 1.59460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
- -t 1.59460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
h -t 1.59460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
- -t 1.59460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
h -t 1.59460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
+ -t 1.59473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
- -t 1.59473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
h -t 1.59473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
+ -t 1.59486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
- -t 1.59486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
h -t 1.59486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.59499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.59499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
r -t 1.59822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 723 -a 10 -x {0.1 1073741824.0 281 ------- null}
r -t 1.59835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
+ -t 1.59835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
- -t 1.59835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
h -t 1.59835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
- -t 1.59835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
h -t 1.59835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
+ -t 1.59848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
- -t 1.59848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
h -t 1.59848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.59861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
+ -t 1.59861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.59861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.59861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59861999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.59861999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.59861999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.59874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.59874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.59874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
r -t 1.60197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 725 -a 10 -x {0.1 1073741824.0 282 ------- null}
r -t 1.60210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
+ -t 1.60210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
- -t 1.60210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
h -t 1.60210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
- -t 1.60210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
h -t 1.60210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
+ -t 1.60223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
- -t 1.60223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
h -t 1.60223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
+ -t 1.60236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.60236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.60236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60236999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.60236999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.60236999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.60249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.60249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
r -t 1.60572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 727 -a 10 -x {0.1 1073741824.0 283 ------- null}
r -t 1.60585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
+ -t 1.60585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
- -t 1.60585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
h -t 1.60585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
- -t 1.60585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
h -t 1.60585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
+ -t 1.60598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
- -t 1.60598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
h -t 1.60598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
+ -t 1.60611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.60611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.60611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60611999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.60611999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.60611999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.60624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.60624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
r -t 1.60947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 729 -a 10 -x {0.1 1073741824.0 284 ------- null}
r -t 1.60960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
+ -t 1.60960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
- -t 1.60960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
h -t 1.60960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
- -t 1.60960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
h -t 1.60960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
+ -t 1.60973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.60973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.60973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.60973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.60973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.60973999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
+ -t 1.60973999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 753 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.60973999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 753 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.60973999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 753 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.60986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
+ -t 1.60986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.60986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.60986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60986999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.60986999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.60986999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.60999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
- -t 1.60999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
h -t 1.60999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.61322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
r -t 1.61322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 731 -a 10 -x {0.1 1073741824.0 285 ------- null}
r -t 1.61335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
+ -t 1.61335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
- -t 1.61335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
h -t 1.61335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
- -t 1.61335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
h -t 1.61335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.61348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
+ -t 1.61348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.61348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.61348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.61348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.61348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.61348999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
+ -t 1.61348999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 756 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.61348999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 756 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.61348999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 756 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.61361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
+ -t 1.61361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.61361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.61361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61361999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.61361999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.61361999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
- -t 1.61374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
h -t 1.61374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.61697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
r -t 1.61697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 733 -a 10 -x {0.1 1073741824.0 286 ------- null}
r -t 1.61710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
+ -t 1.61710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
- -t 1.61710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
h -t 1.61710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
- -t 1.61710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
h -t 1.61710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.61723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
+ -t 1.61723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.61723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.61723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.61723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.61723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.61723999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
+ -t 1.61723999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 759 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.61723999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 759 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.61723999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 759 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.61736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
+ -t 1.61736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.61736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.61736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61736999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.61736999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.61736999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.61749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
- -t 1.61749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
h -t 1.61749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62016666666666 -s 1 -d 2 -p prune -e 80 -c 30 -i 753 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.62072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
r -t 1.62072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 735 -a 10 -x {0.1 1073741824.0 287 ------- null}
r -t 1.62085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
+ -t 1.62085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.62085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.62085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
- -t 1.62085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
h -t 1.62085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
+ -t 1.62085999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 762 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.62085999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 762 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.62085999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 762 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.62098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
+ -t 1.62098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.62098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.62098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.62098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.62098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62098999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
+ -t 1.62098999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 763 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.62098999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 763 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.62098999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 763 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.62111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
+ -t 1.62111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
- -t 1.62111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
h -t 1.62111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
- -t 1.62124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
h -t 1.62124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62391666666666 -s 1 -d 2 -p prune -e 80 -c 30 -i 756 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.62447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
r -t 1.62447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 737 -a 10 -x {0.1 1073741824.0 288 ------- null}
r -t 1.62460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
+ -t 1.62460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.62460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.62460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
- -t 1.62460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
h -t 1.62460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
+ -t 1.62460999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 766 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.62460999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 766 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.62460999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 766 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.62473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
+ -t 1.62473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.62473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.62473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.62473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.62473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62473999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
+ -t 1.62473999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 767 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.62473999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 767 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.62473999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 767 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.62486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
+ -t 1.62486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
- -t 1.62486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
h -t 1.62486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
- -t 1.62499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
h -t 1.62499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62766666666666 -s 1 -d 2 -p prune -e 80 -c 30 -i 759 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.62822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
r -t 1.62822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 739 -a 10 -x {0.1 1073741824.0 289 ------- null}
r -t 1.62835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
+ -t 1.62835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.62835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.62835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
- -t 1.62835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
h -t 1.62835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
+ -t 1.62835999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 770 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.62835999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 770 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.62835999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 770 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.62848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
+ -t 1.62848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.62848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.62848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.62848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.62848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.62848999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
+ -t 1.62848999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 771 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 1.62848999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 771 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 1.62848999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 771 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.62861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
+ -t 1.62861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
- -t 1.62861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
h -t 1.62861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.62874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
- -t 1.62874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
h -t 1.62874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63128666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 762 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.63141666666666 -s 1 -d 2 -p prune -e 80 -c 30 -i 763 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.63197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
r -t 1.63197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 741 -a 10 -x {0.1 1073741824.0 290 ------- null}
r -t 1.63210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
+ -t 1.63210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.63210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.63210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.63210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
- -t 1.63210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
h -t 1.63210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
+ -t 1.63210999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 774 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.63210999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 774 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.63210999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 774 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.63223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
+ -t 1.63223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
- -t 1.63223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
h -t 1.63223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
+ -t 1.63236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
- -t 1.63236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
h -t 1.63236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.63249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
- -t 1.63249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
h -t 1.63249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63503666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 766 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.63516666666666 -s 1 -d 2 -p prune -e 80 -c 30 -i 767 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.63572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
r -t 1.63572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 743 -a 10 -x {0.1 1073741824.0 291 ------- null}
r -t 1.63585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
+ -t 1.63585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.63585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.63585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.63585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
- -t 1.63585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
h -t 1.63585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
+ -t 1.63585999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 777 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.63585999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 777 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.63585999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 777 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.63598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
+ -t 1.63598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
- -t 1.63598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
h -t 1.63598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
+ -t 1.63611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
- -t 1.63611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
h -t 1.63611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.63624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
- -t 1.63624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
h -t 1.63624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63878666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 770 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.63891666666666 -s 1 -d 2 -p prune -e 80 -c 30 -i 771 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 1.63947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
r -t 1.63947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 745 -a 10 -x {0.1 1073741824.0 292 ------- null}
r -t 1.63960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
+ -t 1.63960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.63960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.63960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.63960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
- -t 1.63960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
h -t 1.63960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
+ -t 1.63960999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 780 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.63960999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 780 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.63960999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 780 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.63973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
+ -t 1.63973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
- -t 1.63973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
h -t 1.63973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.63986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
+ -t 1.63986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
- -t 1.63986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
h -t 1.63986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.63999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
- -t 1.63999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
h -t 1.63999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.64253666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 774 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.64322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
r -t 1.64322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 747 -a 10 -x {0.1 1073741824.0 293 ------- null}
r -t 1.64335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
+ -t 1.64335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
- -t 1.64335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
h -t 1.64335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.64335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
- -t 1.64335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
h -t 1.64335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.64348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
+ -t 1.64348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
- -t 1.64348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
h -t 1.64348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.64361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
+ -t 1.64361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
- -t 1.64361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
h -t 1.64361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.64374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
- -t 1.64374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
h -t 1.64374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.64628666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 777 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.64697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
r -t 1.64697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 749 -a 10 -x {0.1 1073741824.0 294 ------- null}
r -t 1.64710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
+ -t 1.64710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
- -t 1.64710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
h -t 1.64710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.64710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
- -t 1.64710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
h -t 1.64710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.64723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
+ -t 1.64723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
- -t 1.64723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
h -t 1.64723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.64736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
+ -t 1.64736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
- -t 1.64736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
h -t 1.64736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.64749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
- -t 1.64749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
h -t 1.64749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65003666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 780 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.65072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
r -t 1.65072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 751 -a 10 -x {0.1 1073741824.0 295 ------- null}
r -t 1.65085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
+ -t 1.65085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
- -t 1.65085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
h -t 1.65085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.65085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
- -t 1.65085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
h -t 1.65085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
+ -t 1.65098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
- -t 1.65098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
h -t 1.65098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
+ -t 1.65111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
- -t 1.65111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
h -t 1.65111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.65124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
- -t 1.65124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
h -t 1.65124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
r -t 1.65447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 754 -a 10 -x {0.1 1073741824.0 296 ------- null}
r -t 1.65460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
+ -t 1.65460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
- -t 1.65460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
h -t 1.65460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.65460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
- -t 1.65460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
h -t 1.65460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
+ -t 1.65473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
- -t 1.65473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
h -t 1.65473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
+ -t 1.65486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
- -t 1.65486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
h -t 1.65486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.65499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
- -t 1.65499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
h -t 1.65499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
r -t 1.65822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 757 -a 10 -x {0.1 1073741824.0 297 ------- null}
r -t 1.65835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
+ -t 1.65835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
- -t 1.65835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
h -t 1.65835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.65835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
- -t 1.65835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
h -t 1.65835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
+ -t 1.65848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
- -t 1.65848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
h -t 1.65848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.65861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
+ -t 1.65861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
- -t 1.65861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
h -t 1.65861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.65874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
- -t 1.65874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
h -t 1.65874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
r -t 1.66197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 760 -a 10 -x {0.1 1073741824.0 298 ------- null}
r -t 1.66210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
+ -t 1.66210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
- -t 1.66210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
h -t 1.66210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.66210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
- -t 1.66210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
h -t 1.66210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
+ -t 1.66223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
- -t 1.66223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
h -t 1.66223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
+ -t 1.66236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
- -t 1.66236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
h -t 1.66236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.66249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
- -t 1.66249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
h -t 1.66249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
r -t 1.66572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 764 -a 10 -x {0.1 1073741824.0 299 ------- null}
r -t 1.66585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
+ -t 1.66585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
- -t 1.66585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
h -t 1.66585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.66585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
- -t 1.66585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
h -t 1.66585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
+ -t 1.66598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
- -t 1.66598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
h -t 1.66598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
+ -t 1.66611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
- -t 1.66611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
h -t 1.66611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.66624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
- -t 1.66624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
h -t 1.66624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
r -t 1.66947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 768 -a 10 -x {0.1 1073741824.0 300 ------- null}
r -t 1.66960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
+ -t 1.66960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
- -t 1.66960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
h -t 1.66960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.66960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
- -t 1.66960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
h -t 1.66960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
+ -t 1.66973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
- -t 1.66973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
h -t 1.66973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.66986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
+ -t 1.66986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
- -t 1.66986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
h -t 1.66986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.66999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
- -t 1.66999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
h -t 1.66999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.67322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
r -t 1.67322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 772 -a 10 -x {0.1 1073741824.0 301 ------- null}
r -t 1.67335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
+ -t 1.67335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
- -t 1.67335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
h -t 1.67335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.67335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
- -t 1.67335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
h -t 1.67335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.67348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
+ -t 1.67348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
- -t 1.67348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
h -t 1.67348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.67361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
+ -t 1.67361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
- -t 1.67361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
h -t 1.67361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.67374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
- -t 1.67374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
h -t 1.67374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.67697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
r -t 1.67697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 775 -a 10 -x {0.1 1073741824.0 302 ------- null}
r -t 1.67710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
+ -t 1.67710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
- -t 1.67710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
h -t 1.67710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.67710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
- -t 1.67710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
h -t 1.67710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.67723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
+ -t 1.67723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
- -t 1.67723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
h -t 1.67723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.67736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
+ -t 1.67736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
- -t 1.67736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
h -t 1.67736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.67749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
- -t 1.67749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
h -t 1.67749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
r -t 1.68072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 778 -a 10 -x {0.1 1073741824.0 303 ------- null}
r -t 1.68085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
+ -t 1.68085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
- -t 1.68085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
h -t 1.68085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.68085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
- -t 1.68085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
h -t 1.68085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
+ -t 1.68098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
- -t 1.68098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
h -t 1.68098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
+ -t 1.68111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
- -t 1.68111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
h -t 1.68111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.68124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
- -t 1.68124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
h -t 1.68124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
r -t 1.68447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 781 -a 10 -x {0.1 1073741824.0 304 ------- null}
r -t 1.68460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
+ -t 1.68460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
- -t 1.68460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
h -t 1.68460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.68460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
- -t 1.68460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
h -t 1.68460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
+ -t 1.68473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
- -t 1.68473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
h -t 1.68473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
+ -t 1.68486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
- -t 1.68486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
h -t 1.68486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.68499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
- -t 1.68499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
h -t 1.68499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
r -t 1.68822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 783 -a 10 -x {0.1 1073741824.0 305 ------- null}
r -t 1.68835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
+ -t 1.68835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
- -t 1.68835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
h -t 1.68835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.68835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
- -t 1.68835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
h -t 1.68835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
+ -t 1.68848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
- -t 1.68848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
h -t 1.68848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.68861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
+ -t 1.68861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
- -t 1.68861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
h -t 1.68861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.68874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
- -t 1.68874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
h -t 1.68874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
r -t 1.69197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 785 -a 10 -x {0.1 1073741824.0 306 ------- null}
r -t 1.69210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
+ -t 1.69210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
- -t 1.69210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
h -t 1.69210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.69210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
- -t 1.69210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
h -t 1.69210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
+ -t 1.69223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
- -t 1.69223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
h -t 1.69223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
+ -t 1.69236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
- -t 1.69236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
h -t 1.69236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.69249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
- -t 1.69249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
h -t 1.69249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
r -t 1.69572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 787 -a 10 -x {0.1 1073741824.0 307 ------- null}
r -t 1.69585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
+ -t 1.69585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
- -t 1.69585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
h -t 1.69585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.69585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
- -t 1.69585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
h -t 1.69585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
+ -t 1.69598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
- -t 1.69598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
h -t 1.69598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
+ -t 1.69611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
- -t 1.69611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
h -t 1.69611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.69624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
- -t 1.69624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
h -t 1.69624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
r -t 1.69947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 789 -a 10 -x {0.1 1073741824.0 308 ------- null}
r -t 1.69960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
+ -t 1.69960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
- -t 1.69960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
h -t 1.69960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.69960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
- -t 1.69960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
h -t 1.69960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
+ -t 1.69973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
- -t 1.69973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
h -t 1.69973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.69986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
+ -t 1.69986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
- -t 1.69986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
h -t 1.69986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.69999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
- -t 1.69999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
h -t 1.69999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.70322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
r -t 1.70322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 791 -a 10 -x {0.1 1073741824.0 309 ------- null}
r -t 1.70335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
+ -t 1.70335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
- -t 1.70335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
h -t 1.70335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.70335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
- -t 1.70335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
h -t 1.70335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.70348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
+ -t 1.70348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
- -t 1.70348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
h -t 1.70348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.70361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
+ -t 1.70361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
- -t 1.70361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
h -t 1.70361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.70374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
- -t 1.70374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
h -t 1.70374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.70697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
r -t 1.70697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 793 -a 10 -x {0.1 1073741824.0 310 ------- null}
r -t 1.70710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
+ -t 1.70710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
- -t 1.70710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
h -t 1.70710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.70710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
- -t 1.70710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
h -t 1.70710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.70723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
+ -t 1.70723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
- -t 1.70723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
h -t 1.70723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.70736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
+ -t 1.70736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
- -t 1.70736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
h -t 1.70736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.70749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
- -t 1.70749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
h -t 1.70749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
r -t 1.71072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 795 -a 10 -x {0.1 1073741824.0 311 ------- null}
r -t 1.71085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
+ -t 1.71085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
- -t 1.71085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
h -t 1.71085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.71085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
- -t 1.71085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
h -t 1.71085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
+ -t 1.71098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
- -t 1.71098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
h -t 1.71098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
+ -t 1.71111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
- -t 1.71111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
h -t 1.71111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.71124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
- -t 1.71124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
h -t 1.71124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
r -t 1.71447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 797 -a 10 -x {0.1 1073741824.0 312 ------- null}
r -t 1.71460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
+ -t 1.71460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
- -t 1.71460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
h -t 1.71460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.71460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
- -t 1.71460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
h -t 1.71460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
+ -t 1.71473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
- -t 1.71473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
h -t 1.71473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
+ -t 1.71486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
- -t 1.71486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
h -t 1.71486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.71499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
- -t 1.71499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
h -t 1.71499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
r -t 1.71822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 799 -a 10 -x {0.1 1073741824.0 313 ------- null}
r -t 1.71835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
+ -t 1.71835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
- -t 1.71835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
h -t 1.71835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.71835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
- -t 1.71835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
h -t 1.71835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
+ -t 1.71848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
- -t 1.71848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
h -t 1.71848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.71861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
+ -t 1.71861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
- -t 1.71861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
h -t 1.71861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.71874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
- -t 1.71874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
h -t 1.71874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
r -t 1.72197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 801 -a 10 -x {0.1 1073741824.0 314 ------- null}
r -t 1.72210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
+ -t 1.72210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
- -t 1.72210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
h -t 1.72210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
- -t 1.72210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
h -t 1.72210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
+ -t 1.72223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
- -t 1.72223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
h -t 1.72223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
+ -t 1.72236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
- -t 1.72236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
h -t 1.72236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
- -t 1.72249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
h -t 1.72249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
- -t 1.72249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.72249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.72572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
r -t 1.72572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 803 -a 10 -x {0.1 1073741824.0 315 ------- null}
r -t 1.72585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
+ -t 1.72585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
- -t 1.72585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
h -t 1.72585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
- -t 1.72585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
h -t 1.72585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
+ -t 1.72598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
- -t 1.72598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
h -t 1.72598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
+ -t 1.72611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
- -t 1.72611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
h -t 1.72611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
- -t 1.72624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
h -t 1.72624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
- -t 1.72624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.72624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.72947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
r -t 1.72947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 805 -a 10 -x {0.1 1073741824.0 316 ------- null}
r -t 1.72960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
+ -t 1.72960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
- -t 1.72960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
h -t 1.72960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
- -t 1.72960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
h -t 1.72960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
+ -t 1.72973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
- -t 1.72973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
h -t 1.72973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.72986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
+ -t 1.72986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
- -t 1.72986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
h -t 1.72986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
- -t 1.72999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
h -t 1.72999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.72999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
- -t 1.72999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.72999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.73322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
r -t 1.73322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 807 -a 10 -x {0.1 1073741824.0 317 ------- null}
r -t 1.73335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
+ -t 1.73335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
- -t 1.73335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
h -t 1.73335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.73335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
- -t 1.73335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
h -t 1.73335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.73348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
+ -t 1.73348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
- -t 1.73348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
h -t 1.73348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.73361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
+ -t 1.73361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
- -t 1.73361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
h -t 1.73361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.73361999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.73361999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
- -t 1.73361999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.73361999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.73361999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.73374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
- -t 1.73374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
h -t 1.73374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.73374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
- -t 1.73374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.73374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.73473999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.73473999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.73697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
r -t 1.73697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 809 -a 10 -x {0.1 1073741824.0 318 ------- null}
r -t 1.73710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
+ -t 1.73710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
- -t 1.73710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
h -t 1.73710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.73710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
- -t 1.73710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
h -t 1.73710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.73723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
+ -t 1.73723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
- -t 1.73723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
h -t 1.73723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.73736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
+ -t 1.73736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
- -t 1.73736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
h -t 1.73736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.73736999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.73736999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
- -t 1.73736999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.73736999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.73736999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.73749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
- -t 1.73749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
h -t 1.73749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.73749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
- -t 1.73749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.73749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.73848999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.73848999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.74072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
r -t 1.74072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 811 -a 10 -x {0.1 1073741824.0 319 ------- null}
r -t 1.74085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
+ -t 1.74085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
- -t 1.74085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
h -t 1.74085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.74085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
- -t 1.74085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
h -t 1.74085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
+ -t 1.74098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
- -t 1.74098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
h -t 1.74098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
+ -t 1.74111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
- -t 1.74111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
h -t 1.74111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74111999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.74111999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
- -t 1.74111999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.74111999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.74111999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.74124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
- -t 1.74124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
h -t 1.74124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.74124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
- -t 1.74124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.74124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.74223999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.74223999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.74447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
r -t 1.74447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 813 -a 10 -x {0.1 1073741824.0 320 ------- null}
r -t 1.74460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
+ -t 1.74460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
- -t 1.74460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
h -t 1.74460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.74460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
- -t 1.74460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
h -t 1.74460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
+ -t 1.74473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
- -t 1.74473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
h -t 1.74473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74473999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.74473999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 837 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.74473999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 837 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.74473999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 837 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.74486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
+ -t 1.74486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
- -t 1.74486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
h -t 1.74486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74486999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.74486999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
- -t 1.74486999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.74486999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.74486999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.74499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
+ -t 1.74499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
- -t 1.74499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
h -t 1.74499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.74516666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
h -t 1.74516666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74585999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.74585999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
- -t 1.74585999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.74585999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.74585999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
- -t 1.74585999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.74585999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.74598999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.74598999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.74822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
r -t 1.74822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 815 -a 10 -x {0.1 1073741824.0 321 ------- null}
r -t 1.74835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
+ -t 1.74835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
- -t 1.74835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
h -t 1.74835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.74835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
- -t 1.74835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
h -t 1.74835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
+ -t 1.74848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
- -t 1.74848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
h -t 1.74848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74848999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.74848999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 840 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.74848999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 840 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.74848999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 840 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.74861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
+ -t 1.74861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
- -t 1.74861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
h -t 1.74861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74861999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.74861999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
- -t 1.74861999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.74861999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.74861999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.74874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
+ -t 1.74874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
- -t 1.74874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
h -t 1.74874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.74891666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
h -t 1.74891666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.74960999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.74960999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
- -t 1.74960999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.74960999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.74960999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
- -t 1.74960999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.74960999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.74973999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.74973999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.75197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
r -t 1.75197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 817 -a 10 -x {0.1 1073741824.0 322 ------- null}
r -t 1.75210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
+ -t 1.75210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
- -t 1.75210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
h -t 1.75210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.75210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
- -t 1.75210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
h -t 1.75210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
+ -t 1.75223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
- -t 1.75223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
h -t 1.75223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75223999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.75223999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 843 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.75223999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 843 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.75223999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 843 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.75236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
+ -t 1.75236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
- -t 1.75236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
h -t 1.75236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75236999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.75236999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
- -t 1.75236999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.75236999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.75236999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.75249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
+ -t 1.75249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
- -t 1.75249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
h -t 1.75249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.75266666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
h -t 1.75266666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75335999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.75335999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
- -t 1.75335999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.75335999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.75335999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
- -t 1.75335999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.75335999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.75348999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.75348999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.75516666666666 -s 0 -d 2 -p prune -e 80 -c 30 -i 837 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.75572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
r -t 1.75572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 819 -a 10 -x {0.1 1073741824.0 323 ------- null}
r -t 1.75585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
+ -t 1.75585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
- -t 1.75585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
h -t 1.75585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.75585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
- -t 1.75585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
h -t 1.75585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
+ -t 1.75598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
- -t 1.75598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
h -t 1.75598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75598999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.75598999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 846 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.75598999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 846 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.75598999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 846 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.75611999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
+ -t 1.75611999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
- -t 1.75611999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
h -t 1.75611999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.75624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
+ -t 1.75624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
- -t 1.75624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
h -t 1.75624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.75628666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
+ -t 1.75628666666666 -s 2 -d 3 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
- -t 1.75641666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
h -t 1.75641666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75697999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.75697999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 849 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.75697999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 849 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.75697999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 849 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.75697999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.75697999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.75697999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
- -t 1.75697999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.75697999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.75697999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
h -t 1.75697999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.75710999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.75710999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
- -t 1.75710999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.75710999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.75710999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
- -t 1.75710999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.75710999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.75723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
h -t 1.75723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75891666666666 -s 0 -d 2 -p prune -e 80 -c 30 -i 840 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.75947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
r -t 1.75947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 821 -a 10 -x {0.1 1073741824.0 324 ------- null}
r -t 1.75960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
+ -t 1.75960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
- -t 1.75960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
h -t 1.75960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.75960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
- -t 1.75960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
h -t 1.75960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
+ -t 1.75973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
- -t 1.75973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
h -t 1.75973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.75973999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.75973999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 850 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.75973999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 850 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.75973999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 850 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.75986999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
+ -t 1.75986999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
- -t 1.75986999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
h -t 1.75986999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.75999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
+ -t 1.75999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
- -t 1.75999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
h -t 1.75999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76003666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
+ -t 1.76003666666666 -s 2 -d 3 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
- -t 1.76016666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
h -t 1.76016666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76072999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.76072999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 853 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.76072999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 853 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.76072999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 853 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.76072999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.76072999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.76072999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
- -t 1.76072999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.76072999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.76072999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
h -t 1.76072999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76085999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.76085999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
- -t 1.76085999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.76085999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.76085999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
- -t 1.76085999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.76085999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.76098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
h -t 1.76098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76266666666666 -s 0 -d 2 -p prune -e 80 -c 30 -i 843 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.76322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
r -t 1.76322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 823 -a 10 -x {0.1 1073741824.0 325 ------- null}
r -t 1.76335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
+ -t 1.76335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
- -t 1.76335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
h -t 1.76335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.76335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
- -t 1.76335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
h -t 1.76335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
+ -t 1.76348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
- -t 1.76348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
h -t 1.76348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76348999999999 -s 2 -d 0 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.76348999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 854 -a 30 -x {0.0 2.0 -1 ------- null}
- -t 1.76348999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 854 -a 30 -x {0.0 2.0 -1 ------- null}
h -t 1.76348999999999 -s 0 -d 2 -p prune -e 80 -c 30 -i 854 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.76361999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
+ -t 1.76361999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
- -t 1.76361999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
h -t 1.76361999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.76374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
+ -t 1.76374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
- -t 1.76374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
h -t 1.76374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76378666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
+ -t 1.76378666666666 -s 2 -d 3 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
- -t 1.76391666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
h -t 1.76391666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76447999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.76447999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 857 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.76447999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 857 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.76447999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 857 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.76447999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.76447999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.76447999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
- -t 1.76447999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.76447999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.76447999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
h -t 1.76447999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76460999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.76460999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
- -t 1.76460999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.76460999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.76460999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
- -t 1.76460999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.76460999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.76473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
h -t 1.76473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76641666666666 -s 0 -d 2 -p prune -e 80 -c 30 -i 846 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.76697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
r -t 1.76697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 825 -a 10 -x {0.1 1073741824.0 326 ------- null}
r -t 1.76710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
+ -t 1.76710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
- -t 1.76710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
h -t 1.76710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.76710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
- -t 1.76710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
h -t 1.76710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.76723999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
+ -t 1.76723999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
- -t 1.76723999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
h -t 1.76723999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.76723999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
- -t 1.76723999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
h -t 1.76723999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76736999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
+ -t 1.76736999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
- -t 1.76736999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
h -t 1.76736999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76740666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 849 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.76749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
- -t 1.76749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
h -t 1.76749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.76749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 338 ------- null}
- -t 1.76749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 338 ------- null}
h -t 1.76749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76753666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
+ -t 1.76753666666666 -s 2 -d 3 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
r -t 1.76809999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.76809999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 860 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.76809999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 860 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.76809999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 860 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.76809999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 826 -a 11 -x {1.1 1073741825.0 326 ------- null}
+ -t 1.76809999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 861 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.76809999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 861 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.76809999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 861 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.76822999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.76822999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 862 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.76822999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 862 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.76822999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 862 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.76822999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.76822999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.76822999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
- -t 1.76822999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.76822999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.76822999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
h -t 1.76822999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.76835999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
+ -t 1.76835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
- -t 1.76835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
h -t 1.76835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.76848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
h -t 1.76848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77016666666666 -s 0 -d 2 -p prune -e 80 -c 30 -i 850 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.77072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
r -t 1.77072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 827 -a 10 -x {0.1 1073741824.0 327 ------- null}
r -t 1.77085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
+ -t 1.77085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
- -t 1.77085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
h -t 1.77085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.77085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
- -t 1.77085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
h -t 1.77085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77098999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
+ -t 1.77098999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
- -t 1.77098999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
h -t 1.77098999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77111999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
+ -t 1.77111999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
- -t 1.77111999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
h -t 1.77111999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77115666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 853 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.77124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
- -t 1.77124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
h -t 1.77124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.77124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 339 ------- null}
- -t 1.77124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 339 ------- null}
h -t 1.77124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77128666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
+ -t 1.77128666666666 -s 2 -d 3 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
r -t 1.77184999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.77184999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 865 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.77184999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 865 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.77184999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 865 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.77184999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 828 -a 11 -x {1.1 1073741825.0 327 ------- null}
+ -t 1.77184999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 866 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.77184999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 866 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.77184999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 866 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.77197999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.77197999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 867 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.77197999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 867 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.77197999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 867 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.77197999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.77197999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.77197999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
- -t 1.77197999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.77197999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.77197999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
h -t 1.77197999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77210999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
+ -t 1.77210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
- -t 1.77210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
h -t 1.77210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.77223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
h -t 1.77223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77391666666666 -s 0 -d 2 -p prune -e 80 -c 30 -i 854 -a 30 -x {0.0 2.0 -1 ------- null}
r -t 1.77447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
r -t 1.77447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 829 -a 10 -x {0.1 1073741824.0 328 ------- null}
r -t 1.77460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
+ -t 1.77460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
- -t 1.77460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
h -t 1.77460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.77460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
- -t 1.77460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
h -t 1.77460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77473999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
+ -t 1.77473999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
- -t 1.77473999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
h -t 1.77473999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77486999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
+ -t 1.77486999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
- -t 1.77486999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
h -t 1.77486999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77490666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 857 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.77499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
- -t 1.77499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
h -t 1.77499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.77499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 340 ------- null}
- -t 1.77499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 340 ------- null}
h -t 1.77499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77503666666666 -s 0 -d 2 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
+ -t 1.77503666666666 -s 2 -d 3 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
r -t 1.77559999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.77559999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 870 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.77559999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 870 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.77559999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 870 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.77559999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 830 -a 11 -x {1.1 1073741825.0 328 ------- null}
+ -t 1.77559999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 871 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.77559999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 871 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.77559999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 871 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.77572999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.77572999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 872 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.77572999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 872 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.77572999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 872 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.77572999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.77572999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.77572999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
- -t 1.77572999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.77572999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
- -t 1.77572999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
h -t 1.77572999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77585999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
+ -t 1.77585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
- -t 1.77585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
h -t 1.77585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.77598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
h -t 1.77598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
r -t 1.77822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 831 -a 10 -x {0.1 1073741824.0 329 ------- null}
r -t 1.77835999999999 -s 3 -d 7 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
+ -t 1.77835999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 873 -a 30 -x {7.0 3.0 -1 ------- null}
- -t 1.77835999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 873 -a 30 -x {7.0 3.0 -1 ------- null}
h -t 1.77835999999999 -s 7 -d 3 -p prune -e 80 -c 30 -i 873 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.77835999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
+ -t 1.77835999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
- -t 1.77835999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
h -t 1.77835999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 -1 ------- null}
+ -t 1.77835999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
- -t 1.77835999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
h -t 1.77835999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77848999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
+ -t 1.77848999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
- -t 1.77848999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
h -t 1.77848999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77852666666666 -s 5 -d 4 -p prune -e 80 -c 30 -i 860 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.77852666666666 -s 6 -d 4 -p prune -e 80 -c 30 -i 861 -a 30 -x {6.0 4.0 -1 ------- null}
+ -t 1.77852666666666 -s 4 -d 3 -p prune -e 80 -c 30 -i 874 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.77852666666666 -s 4 -d 3 -p prune -e 80 -c 30 -i 874 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.77852666666666 -s 4 -d 3 -p prune -e 80 -c 30 -i 874 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.77861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
+ -t 1.77861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
- -t 1.77861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
h -t 1.77861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77861999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 338 ------- null}
+ -t 1.77861999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 338 ------- null}
r -t 1.77865666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 862 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.77874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
- -t 1.77874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
h -t 1.77874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.77874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 341 ------- null}
- -t 1.77874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 341 ------- null}
h -t 1.77874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.77934999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.77934999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 877 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.77934999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 877 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.77934999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 877 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.77934999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 832 -a 11 -x {1.1 1073741825.0 329 ------- null}
+ -t 1.77934999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 878 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.77934999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 878 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.77934999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 878 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.77947999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
+ -t 1.77947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
+ -t 1.77947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
- -t 1.77947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
h -t 1.77947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.77947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
h -t 1.77947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.77960999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
+ -t 1.77960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
- -t 1.77960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
h -t 1.77960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.77973999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 338 ------- null}
h -t 1.77973999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
r -t 1.78197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 833 -a 10 -x {0.1 1073741824.0 330 ------- null}
r -t 1.78210999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 842 -a 11 -x {1.1 1073741825.0 333 ------- null}
+ -t 1.78210999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 879 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.78210999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 879 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.78210999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 879 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.78223999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
+ -t 1.78223999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
- -t 1.78223999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
h -t 1.78223999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78227666666666 -s 5 -d 4 -p prune -e 80 -c 30 -i 865 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.78227666666666 -s 6 -d 4 -p prune -e 80 -c 30 -i 866 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.78236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
+ -t 1.78236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
- -t 1.78236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
h -t 1.78236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.78236999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 339 ------- null}
+ -t 1.78236999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 339 ------- null}
r -t 1.78240666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 867 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.78249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
- -t 1.78249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
h -t 1.78249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.78249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 342 ------- null}
- -t 1.78249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 342 ------- null}
h -t 1.78249999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78309999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.78309999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 882 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.78309999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 882 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.78309999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 882 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.78309999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 834 -a 11 -x {1.1 1073741825.0 330 ------- null}
+ -t 1.78309999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 883 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.78309999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 883 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.78309999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 883 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.78322999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
+ -t 1.78322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
- -t 1.78322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
h -t 1.78322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.78322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
- -t 1.78322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
h -t 1.78322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.78335999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
+ -t 1.78335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
- -t 1.78335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
h -t 1.78335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.78348999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 339 ------- null}
h -t 1.78348999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
r -t 1.78572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 835 -a 10 -x {0.1 1073741824.0 331 ------- null}
r -t 1.78585999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 845 -a 11 -x {1.1 1073741825.0 334 ------- null}
+ -t 1.78585999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 884 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.78585999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 884 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.78585999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 884 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.78598999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
+ -t 1.78598999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
- -t 1.78598999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
h -t 1.78598999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78602666666666 -s 5 -d 4 -p prune -e 80 -c 30 -i 870 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.78602666666666 -s 6 -d 4 -p prune -e 80 -c 30 -i 871 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.78611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
+ -t 1.78611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
- -t 1.78611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
h -t 1.78611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.78611999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 340 ------- null}
+ -t 1.78611999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 340 ------- null}
r -t 1.78615666666666 -s 7 -d 3 -p prune -e 80 -c 30 -i 872 -a 30 -x {7.0 3.0 -1 ------- null}
+ -t 1.78624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
- -t 1.78624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
h -t 1.78624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.78624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 343 ------- null}
- -t 1.78624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 343 ------- null}
h -t 1.78624999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78684999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.78684999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 887 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.78684999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 887 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.78684999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 887 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.78684999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 836 -a 11 -x {1.1 1073741825.0 331 ------- null}
+ -t 1.78684999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 888 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.78684999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 888 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.78684999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 888 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.78697999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
+ -t 1.78697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
- -t 1.78697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
h -t 1.78697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.78697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
- -t 1.78697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
h -t 1.78697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.78710999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
+ -t 1.78710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
- -t 1.78710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
h -t 1.78710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 -1 ------- null}
- -t 1.78723999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 340 ------- null}
h -t 1.78723999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.78878666666665 -s 7 -d 3 -p prune -e 80 -c 30 -i 873 -a 30 -x {7.0 3.0 -1 ------- null}
r -t 1.78895333333332 -s 4 -d 3 -p prune -e 80 -c 30 -i 874 -a 30 -x {4.0 3.0 -1 ------- null}
+ -t 1.78895333333332 -s 3 -d 2 -p prune -e 80 -c 30 -i 889 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.78895333333332 -s 3 -d 2 -p prune -e 80 -c 30 -i 889 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.78895333333332 -s 3 -d 2 -p prune -e 80 -c 30 -i 889 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.78947999999999 -s 4 -d 5 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
+ -t 1.78947999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 890 -a 30 -x {5.0 4.0 -1 ------- null}
- -t 1.78947999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 890 -a 30 -x {5.0 4.0 -1 ------- null}
h -t 1.78947999999999 -s 5 -d 4 -p prune -e 80 -c 30 -i 890 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.78947999999999 -s 4 -d 6 -p cbr -e 210 -c 11 -i 839 -a 11 -x {1.1 1073741825.0 332 ------- null}
+ -t 1.78947999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 891 -a 30 -x {6.0 4.0 -1 ------- null}
- -t 1.78947999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 891 -a 30 -x {6.0 4.0 -1 ------- null}
h -t 1.78947999999999 -s 6 -d 4 -p prune -e 80 -c 30 -i 891 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.78960999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 848 -a 11 -x {1.1 1073741825.0 335 ------- null}
+ -t 1.78960999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 892 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.78960999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 892 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.78960999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 892 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.78973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
+ -t 1.78973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
- -t 1.78973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
h -t 1.78973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.78977666666666 -s 5 -d 4 -p prune -e 80 -c 30 -i 877 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.78977666666666 -s 6 -d 4 -p prune -e 80 -c 30 -i 878 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.78986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
+ -t 1.78986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
- -t 1.78986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
h -t 1.78986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.78986999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 341 ------- null}
+ -t 1.78986999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 341 ------- null}
+ -t 1.78999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
- -t 1.78999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
h -t 1.78999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.78999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 894 -a 11 -x {1.1 1073741825.0 344 ------- null}
- -t 1.78999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 894 -a 11 -x {1.1 1073741825.0 344 ------- null}
h -t 1.78999999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 894 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.79059999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
r -t 1.79059999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 838 -a 10 -x {0.1 1073741824.0 332 ------- null}
r -t 1.79072999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
+ -t 1.79072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
- -t 1.79072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
h -t 1.79072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.79072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
- -t 1.79072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
h -t 1.79072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79085999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 859 -a 11 -x {1.1 1073741825.0 338 ------- null}
+ -t 1.79085999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 895 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.79085999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 895 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.79085999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 895 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.79098999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 341 ------- null}
h -t 1.79098999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.79253666666665 -s 4 -d 3 -p prune -e 80 -c 30 -i 879 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.79335999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 852 -a 11 -x {1.1 1073741825.0 336 ------- null}
+ -t 1.79335999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 896 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.79335999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 896 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.79335999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 896 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.79348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
+ -t 1.79348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
- -t 1.79348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
h -t 1.79348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79352666666666 -s 5 -d 4 -p prune -e 80 -c 30 -i 882 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.79352666666666 -s 6 -d 4 -p prune -e 80 -c 30 -i 883 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.79361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
+ -t 1.79361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
- -t 1.79361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
h -t 1.79361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79361999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 342 ------- null}
+ -t 1.79361999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 342 ------- null}
+ -t 1.79374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
- -t 1.79374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
h -t 1.79374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.79374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 898 -a 11 -x {1.1 1073741825.0 345 ------- null}
- -t 1.79374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 898 -a 11 -x {1.1 1073741825.0 345 ------- null}
h -t 1.79374999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 898 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.79434999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
r -t 1.79434999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 841 -a 10 -x {0.1 1073741824.0 333 ------- null}
r -t 1.79447999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
+ -t 1.79447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
- -t 1.79447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
h -t 1.79447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.79447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
- -t 1.79447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
h -t 1.79447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79460999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 864 -a 11 -x {1.1 1073741825.0 339 ------- null}
+ -t 1.79460999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 899 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.79460999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 899 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.79460999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 899 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.79473999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 342 ------- null}
h -t 1.79473999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.79628666666665 -s 4 -d 3 -p prune -e 80 -c 30 -i 884 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.79710999999999 -s 3 -d 4 -p cbr -e 210 -c 11 -i 856 -a 11 -x {1.1 1073741825.0 337 ------- null}
+ -t 1.79710999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 900 -a 30 -x {4.0 3.0 -1 ------- null}
- -t 1.79710999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 900 -a 30 -x {4.0 3.0 -1 ------- null}
h -t 1.79710999999999 -s 4 -d 3 -p prune -e 80 -c 30 -i 900 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.79723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
+ -t 1.79723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
- -t 1.79723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
h -t 1.79723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79727666666666 -s 5 -d 4 -p prune -e 80 -c 30 -i 887 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.79727666666666 -s 6 -d 4 -p prune -e 80 -c 30 -i 888 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.79736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
+ -t 1.79736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
- -t 1.79736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
h -t 1.79736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79736999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 343 ------- null}
+ -t 1.79736999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 343 ------- null}
+ -t 1.79749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
- -t 1.79749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
h -t 1.79749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.79749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 902 -a 11 -x {1.1 1073741825.0 346 ------- null}
- -t 1.79749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 902 -a 11 -x {1.1 1073741825.0 346 ------- null}
h -t 1.79749999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 902 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.79809999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
r -t 1.79809999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 844 -a 10 -x {0.1 1073741824.0 334 ------- null}
r -t 1.79822999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
+ -t 1.79822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
- -t 1.79822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
h -t 1.79822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.79822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
- -t 1.79822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
h -t 1.79822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.79835999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 869 -a 11 -x {1.1 1073741825.0 340 ------- null}
+ -t 1.79835999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 903 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.79835999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 903 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.79835999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 903 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.79848999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 343 ------- null}
h -t 1.79848999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.79937999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 889 -a 30 -x {3.0 2.0 -1 ------- null}
+ -t 1.79937999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 904 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.79937999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 904 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.79937999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 904 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.79990666666665 -s 5 -d 4 -p prune -e 80 -c 30 -i 890 -a 30 -x {5.0 4.0 -1 ------- null}
r -t 1.79990666666665 -s 6 -d 4 -p prune -e 80 -c 30 -i 891 -a 30 -x {6.0 4.0 -1 ------- null}
r -t 1.80003666666665 -s 4 -d 3 -p prune -e 80 -c 30 -i 892 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.80085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
+ -t 1.80085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
- -t 1.80085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
h -t 1.80085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.80085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
- -t 1.80085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
h -t 1.80085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
+ -t 1.80098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
- -t 1.80098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
h -t 1.80098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
+ -t 1.80111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
- -t 1.80111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
h -t 1.80111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80111999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 894 -a 11 -x {1.1 1073741825.0 344 ------- null}
+ -t 1.80111999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 905 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.80111999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 905 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.80111999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 905 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.80124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
- -t 1.80124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
h -t 1.80124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.80124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 907 -a 11 -x {1.1 1073741825.0 347 ------- null}
- -t 1.80124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 907 -a 11 -x {1.1 1073741825.0 347 ------- null}
h -t 1.80124999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 907 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.80128666666665 -s 3 -d 2 -p prune -e 80 -c 30 -i 895 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.80184999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
r -t 1.80184999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 847 -a 10 -x {0.1 1073741824.0 335 ------- null}
r -t 1.80210999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 876 -a 11 -x {1.1 1073741825.0 341 ------- null}
+ -t 1.80210999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 908 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.80210999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 908 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.80210999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 908 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.80378666666665 -s 4 -d 3 -p prune -e 80 -c 30 -i 896 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.80460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
+ -t 1.80460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
- -t 1.80460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
h -t 1.80460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.80460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
- -t 1.80460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
h -t 1.80460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
+ -t 1.80473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
- -t 1.80473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
h -t 1.80473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
+ -t 1.80486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
- -t 1.80486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
h -t 1.80486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80486999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 898 -a 11 -x {1.1 1073741825.0 345 ------- null}
+ -t 1.80486999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 909 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.80486999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 909 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.80486999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 909 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.80499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
- -t 1.80499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
h -t 1.80499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.80499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 911 -a 11 -x {1.1 1073741825.0 348 ------- null}
- -t 1.80499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 911 -a 11 -x {1.1 1073741825.0 348 ------- null}
h -t 1.80499999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 911 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.80503666666665 -s 3 -d 2 -p prune -e 80 -c 30 -i 899 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.80559999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
r -t 1.80559999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 851 -a 10 -x {0.1 1073741824.0 336 ------- null}
r -t 1.80585999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 881 -a 11 -x {1.1 1073741825.0 342 ------- null}
+ -t 1.80585999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 912 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.80585999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 912 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.80585999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 912 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.80753666666665 -s 4 -d 3 -p prune -e 80 -c 30 -i 900 -a 30 -x {4.0 3.0 -1 ------- null}
r -t 1.80835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
+ -t 1.80835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
- -t 1.80835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
h -t 1.80835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.80835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
- -t 1.80835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
h -t 1.80835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
+ -t 1.80848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
- -t 1.80848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
h -t 1.80848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
+ -t 1.80861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
- -t 1.80861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
h -t 1.80861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.80861999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 902 -a 11 -x {1.1 1073741825.0 346 ------- null}
+ -t 1.80861999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 913 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.80861999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 913 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.80861999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 913 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.80874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
- -t 1.80874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
h -t 1.80874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.80874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 915 -a 11 -x {1.1 1073741825.0 349 ------- null}
- -t 1.80874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 915 -a 11 -x {1.1 1073741825.0 349 ------- null}
h -t 1.80874999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 915 -a 11 -x {1.1 1073741825.0 -1 ------- null}
r -t 1.80878666666665 -s 3 -d 2 -p prune -e 80 -c 30 -i 903 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.80934999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
r -t 1.80934999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 855 -a 10 -x {0.1 1073741824.0 337 ------- null}
r -t 1.80960999999999 -s 2 -d 3 -p cbr -e 210 -c 11 -i 886 -a 11 -x {1.1 1073741825.0 343 ------- null}
+ -t 1.80960999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 916 -a 30 -x {3.0 2.0 -1 ------- null}
- -t 1.80960999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 916 -a 30 -x {3.0 2.0 -1 ------- null}
h -t 1.80960999999999 -s 3 -d 2 -p prune -e 80 -c 30 -i 916 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.80980666666666 -s 2 -d 1 -p prune -e 80 -c 30 -i 904 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.81154666666665 -s 2 -d 1 -p prune -e 80 -c 30 -i 905 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.81197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
r -t 1.81197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 858 -a 10 -x {0.1 1073741824.0 338 ------- null}
r -t 1.81210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
+ -t 1.81210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
- -t 1.81210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
h -t 1.81210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.81210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
- -t 1.81210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
h -t 1.81210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
+ -t 1.81223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
- -t 1.81223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
h -t 1.81223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
+ -t 1.81236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
- -t 1.81236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
h -t 1.81236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81236999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 907 -a 11 -x {1.1 1073741825.0 347 ------- null}
+ -t 1.81236999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 917 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.81236999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 917 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.81236999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 917 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.81249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
- -t 1.81249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
h -t 1.81249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81253666666665 -s 3 -d 2 -p prune -e 80 -c 30 -i 908 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.81529666666665 -s 2 -d 1 -p prune -e 80 -c 30 -i 909 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.81572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
r -t 1.81572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 863 -a 10 -x {0.1 1073741824.0 339 ------- null}
r -t 1.81585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
+ -t 1.81585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
- -t 1.81585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
h -t 1.81585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.81585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
- -t 1.81585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
h -t 1.81585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
+ -t 1.81598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
- -t 1.81598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
h -t 1.81598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
+ -t 1.81611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
- -t 1.81611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
h -t 1.81611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81611999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 911 -a 11 -x {1.1 1073741825.0 348 ------- null}
+ -t 1.81611999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 920 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.81611999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 920 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.81611999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 920 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.81624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
- -t 1.81624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
h -t 1.81624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81628666666665 -s 3 -d 2 -p prune -e 80 -c 30 -i 912 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.81904666666665 -s 2 -d 1 -p prune -e 80 -c 30 -i 913 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.81947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
r -t 1.81947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 868 -a 10 -x {0.1 1073741824.0 340 ------- null}
r -t 1.81960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
+ -t 1.81960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
- -t 1.81960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
h -t 1.81960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.81960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
- -t 1.81960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
h -t 1.81960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
+ -t 1.81973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
- -t 1.81973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
h -t 1.81973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
+ -t 1.81986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
- -t 1.81986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
h -t 1.81986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.81986999999999 -s 1 -d 2 -p cbr -e 210 -c 11 -i 915 -a 11 -x {1.1 1073741825.0 349 ------- null}
+ -t 1.81986999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 923 -a 30 -x {2.0 1.0 -1 ------- null}
- -t 1.81986999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 923 -a 30 -x {2.0 1.0 -1 ------- null}
h -t 1.81986999999999 -s 2 -d 1 -p prune -e 80 -c 30 -i 923 -a 30 -x {2.0 1.0 -1 ------- null}
+ -t 1.81999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
- -t 1.81999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
h -t 1.81999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.82003666666665 -s 3 -d 2 -p prune -e 80 -c 30 -i 916 -a 30 -x {3.0 2.0 -1 ------- null}
r -t 1.82279666666665 -s 2 -d 1 -p prune -e 80 -c 30 -i 917 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.82322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
r -t 1.82322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 875 -a 10 -x {0.1 1073741824.0 341 ------- null}
r -t 1.82335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
+ -t 1.82335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
- -t 1.82335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
h -t 1.82335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.82335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
- -t 1.82335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
h -t 1.82335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.82348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
+ -t 1.82348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
- -t 1.82348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
h -t 1.82348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.82361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
+ -t 1.82361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
- -t 1.82361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
h -t 1.82361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.82374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
- -t 1.82374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
h -t 1.82374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.82654666666665 -s 2 -d 1 -p prune -e 80 -c 30 -i 920 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.82697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
r -t 1.82697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 880 -a 10 -x {0.1 1073741824.0 342 ------- null}
r -t 1.82710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
+ -t 1.82710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
- -t 1.82710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
h -t 1.82710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.82710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
- -t 1.82710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
h -t 1.82710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.82723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
+ -t 1.82723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
- -t 1.82723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
h -t 1.82723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.82736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
+ -t 1.82736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
- -t 1.82736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
h -t 1.82736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.82749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
- -t 1.82749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
h -t 1.82749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83029666666665 -s 2 -d 1 -p prune -e 80 -c 30 -i 923 -a 30 -x {2.0 1.0 -1 ------- null}
r -t 1.83072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
r -t 1.83072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 885 -a 10 -x {0.1 1073741824.0 343 ------- null}
r -t 1.83085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
+ -t 1.83085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
- -t 1.83085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
h -t 1.83085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.83085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
- -t 1.83085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
h -t 1.83085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
+ -t 1.83098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
- -t 1.83098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
h -t 1.83098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
+ -t 1.83111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
- -t 1.83111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
h -t 1.83111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.83124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
- -t 1.83124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
h -t 1.83124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
r -t 1.83447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 893 -a 10 -x {0.1 1073741824.0 344 ------- null}
r -t 1.83460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
+ -t 1.83460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
- -t 1.83460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
h -t 1.83460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.83460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
- -t 1.83460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
h -t 1.83460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
+ -t 1.83473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
- -t 1.83473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
h -t 1.83473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
+ -t 1.83486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
- -t 1.83486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
h -t 1.83486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.83499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
- -t 1.83499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
h -t 1.83499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
r -t 1.83822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 897 -a 10 -x {0.1 1073741824.0 345 ------- null}
r -t 1.83835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
+ -t 1.83835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
- -t 1.83835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
h -t 1.83835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.83835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
- -t 1.83835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
h -t 1.83835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
+ -t 1.83848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
- -t 1.83848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
h -t 1.83848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.83861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
+ -t 1.83861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
- -t 1.83861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
h -t 1.83861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.83874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
- -t 1.83874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
h -t 1.83874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
r -t 1.84197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 901 -a 10 -x {0.1 1073741824.0 346 ------- null}
r -t 1.84210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
+ -t 1.84210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
- -t 1.84210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
h -t 1.84210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.84210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
- -t 1.84210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
h -t 1.84210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
+ -t 1.84223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
- -t 1.84223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
h -t 1.84223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
+ -t 1.84236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
- -t 1.84236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
h -t 1.84236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.84249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
- -t 1.84249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
h -t 1.84249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
r -t 1.84572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 906 -a 10 -x {0.1 1073741824.0 347 ------- null}
r -t 1.84585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
+ -t 1.84585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
- -t 1.84585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
h -t 1.84585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.84585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
- -t 1.84585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
h -t 1.84585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
+ -t 1.84598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
- -t 1.84598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
h -t 1.84598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
+ -t 1.84611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
- -t 1.84611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
h -t 1.84611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.84624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
- -t 1.84624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
h -t 1.84624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
r -t 1.84947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 910 -a 10 -x {0.1 1073741824.0 348 ------- null}
r -t 1.84960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
+ -t 1.84960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
- -t 1.84960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
h -t 1.84960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.84960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
- -t 1.84960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
h -t 1.84960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
+ -t 1.84973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
- -t 1.84973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
h -t 1.84973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.84986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
+ -t 1.84986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
- -t 1.84986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
h -t 1.84986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.84999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
- -t 1.84999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
h -t 1.84999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.85322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
r -t 1.85322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 914 -a 10 -x {0.1 1073741824.0 349 ------- null}
r -t 1.85335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
+ -t 1.85335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
- -t 1.85335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
h -t 1.85335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.85335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
- -t 1.85335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
h -t 1.85335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.85348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
+ -t 1.85348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
- -t 1.85348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
h -t 1.85348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.85361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
+ -t 1.85361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
- -t 1.85361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
h -t 1.85361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.85374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
- -t 1.85374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
h -t 1.85374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.85697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
r -t 1.85697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 918 -a 10 -x {0.1 1073741824.0 350 ------- null}
r -t 1.85710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
+ -t 1.85710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
- -t 1.85710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
h -t 1.85710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.85710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
- -t 1.85710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
h -t 1.85710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.85723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
+ -t 1.85723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
- -t 1.85723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
h -t 1.85723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.85736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
+ -t 1.85736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
- -t 1.85736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
h -t 1.85736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.85749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
- -t 1.85749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
h -t 1.85749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
r -t 1.86072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 921 -a 10 -x {0.1 1073741824.0 351 ------- null}
r -t 1.86085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
+ -t 1.86085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
- -t 1.86085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
h -t 1.86085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.86085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
- -t 1.86085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
h -t 1.86085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
+ -t 1.86098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
- -t 1.86098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
h -t 1.86098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
+ -t 1.86111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
- -t 1.86111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
h -t 1.86111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.86124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
- -t 1.86124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
h -t 1.86124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
r -t 1.86447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 924 -a 10 -x {0.1 1073741824.0 352 ------- null}
r -t 1.86460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
+ -t 1.86460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
- -t 1.86460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
h -t 1.86460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.86460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
- -t 1.86460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
h -t 1.86460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
+ -t 1.86473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
- -t 1.86473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
h -t 1.86473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
+ -t 1.86486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
- -t 1.86486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
h -t 1.86486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.86499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
- -t 1.86499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
h -t 1.86499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
r -t 1.86822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 926 -a 10 -x {0.1 1073741824.0 353 ------- null}
r -t 1.86835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
+ -t 1.86835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
- -t 1.86835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
h -t 1.86835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.86835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
- -t 1.86835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
h -t 1.86835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
+ -t 1.86848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
- -t 1.86848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
h -t 1.86848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.86861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
+ -t 1.86861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
- -t 1.86861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
h -t 1.86861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.86874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
- -t 1.86874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
h -t 1.86874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
r -t 1.87197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 928 -a 10 -x {0.1 1073741824.0 354 ------- null}
r -t 1.87210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
+ -t 1.87210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
- -t 1.87210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
h -t 1.87210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.87210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
- -t 1.87210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
h -t 1.87210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
+ -t 1.87223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
- -t 1.87223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
h -t 1.87223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
+ -t 1.87236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
- -t 1.87236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
h -t 1.87236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.87249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
- -t 1.87249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
h -t 1.87249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
r -t 1.87572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 930 -a 10 -x {0.1 1073741824.0 355 ------- null}
r -t 1.87585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
+ -t 1.87585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
- -t 1.87585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
h -t 1.87585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.87585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
- -t 1.87585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
h -t 1.87585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
+ -t 1.87598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
- -t 1.87598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
h -t 1.87598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
+ -t 1.87611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
- -t 1.87611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
h -t 1.87611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.87624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
- -t 1.87624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
h -t 1.87624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
r -t 1.87947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 932 -a 10 -x {0.1 1073741824.0 356 ------- null}
r -t 1.87960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
+ -t 1.87960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
- -t 1.87960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
h -t 1.87960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.87960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
- -t 1.87960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
h -t 1.87960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
+ -t 1.87973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
- -t 1.87973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
h -t 1.87973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.87986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
+ -t 1.87986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
- -t 1.87986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
h -t 1.87986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.87999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
- -t 1.87999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
h -t 1.87999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.88322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
r -t 1.88322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 934 -a 10 -x {0.1 1073741824.0 357 ------- null}
r -t 1.88335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
+ -t 1.88335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
- -t 1.88335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
h -t 1.88335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.88335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
- -t 1.88335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
h -t 1.88335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.88348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
+ -t 1.88348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
- -t 1.88348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
h -t 1.88348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.88361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
+ -t 1.88361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
- -t 1.88361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
h -t 1.88361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.88374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
- -t 1.88374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
h -t 1.88374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.88697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
r -t 1.88697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 936 -a 10 -x {0.1 1073741824.0 358 ------- null}
r -t 1.88710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
+ -t 1.88710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
- -t 1.88710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
h -t 1.88710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.88710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
- -t 1.88710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
h -t 1.88710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.88723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
+ -t 1.88723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
- -t 1.88723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
h -t 1.88723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.88736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
+ -t 1.88736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
- -t 1.88736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
h -t 1.88736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.88749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
- -t 1.88749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
h -t 1.88749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
r -t 1.89072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 938 -a 10 -x {0.1 1073741824.0 359 ------- null}
r -t 1.89085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
+ -t 1.89085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
- -t 1.89085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
h -t 1.89085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.89085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
- -t 1.89085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
h -t 1.89085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
+ -t 1.89098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
- -t 1.89098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
h -t 1.89098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
+ -t 1.89111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
- -t 1.89111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
h -t 1.89111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.89124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
- -t 1.89124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
h -t 1.89124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
r -t 1.89447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 940 -a 10 -x {0.1 1073741824.0 360 ------- null}
r -t 1.89460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
+ -t 1.89460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
- -t 1.89460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
h -t 1.89460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.89460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
- -t 1.89460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
h -t 1.89460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
+ -t 1.89473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
- -t 1.89473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
h -t 1.89473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
+ -t 1.89486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
- -t 1.89486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
h -t 1.89486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.89499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
- -t 1.89499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
h -t 1.89499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
r -t 1.89822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 942 -a 10 -x {0.1 1073741824.0 361 ------- null}
r -t 1.89835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
+ -t 1.89835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
- -t 1.89835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
h -t 1.89835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.89835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
- -t 1.89835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
h -t 1.89835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
+ -t 1.89848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
- -t 1.89848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
h -t 1.89848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.89861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
+ -t 1.89861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
- -t 1.89861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
h -t 1.89861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.89874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
- -t 1.89874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
h -t 1.89874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
r -t 1.90197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 944 -a 10 -x {0.1 1073741824.0 362 ------- null}
r -t 1.90210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
+ -t 1.90210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
- -t 1.90210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
h -t 1.90210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.90210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
- -t 1.90210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
h -t 1.90210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
+ -t 1.90223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
- -t 1.90223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
h -t 1.90223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
+ -t 1.90236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
- -t 1.90236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
h -t 1.90236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.90249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
- -t 1.90249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
h -t 1.90249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
r -t 1.90572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 946 -a 10 -x {0.1 1073741824.0 363 ------- null}
r -t 1.90585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
+ -t 1.90585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
- -t 1.90585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
h -t 1.90585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.90585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
- -t 1.90585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
h -t 1.90585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
+ -t 1.90598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
- -t 1.90598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
h -t 1.90598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
+ -t 1.90611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
- -t 1.90611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
h -t 1.90611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.90624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
- -t 1.90624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
h -t 1.90624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
r -t 1.90947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 948 -a 10 -x {0.1 1073741824.0 364 ------- null}
r -t 1.90960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
+ -t 1.90960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
- -t 1.90960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
h -t 1.90960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.90960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
- -t 1.90960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
h -t 1.90960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
+ -t 1.90973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
- -t 1.90973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
h -t 1.90973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.90986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
+ -t 1.90986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
- -t 1.90986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
h -t 1.90986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.90999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
- -t 1.90999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
h -t 1.90999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.91322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
r -t 1.91322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 950 -a 10 -x {0.1 1073741824.0 365 ------- null}
r -t 1.91335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
+ -t 1.91335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
- -t 1.91335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
h -t 1.91335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.91335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
- -t 1.91335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
h -t 1.91335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.91348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
+ -t 1.91348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
- -t 1.91348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
h -t 1.91348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.91361999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
+ -t 1.91361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
- -t 1.91361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
h -t 1.91361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.91374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
- -t 1.91374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
h -t 1.91374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.91697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
r -t 1.91697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 952 -a 10 -x {0.1 1073741824.0 366 ------- null}
r -t 1.91710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
+ -t 1.91710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
- -t 1.91710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
h -t 1.91710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.91710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
- -t 1.91710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
h -t 1.91710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.91723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
+ -t 1.91723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
- -t 1.91723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
h -t 1.91723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.91736999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
+ -t 1.91736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
- -t 1.91736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
h -t 1.91736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.91749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
- -t 1.91749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
h -t 1.91749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
r -t 1.92072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 954 -a 10 -x {0.1 1073741824.0 367 ------- null}
r -t 1.92085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
+ -t 1.92085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
- -t 1.92085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
h -t 1.92085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.92085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
- -t 1.92085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
h -t 1.92085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
+ -t 1.92098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
- -t 1.92098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
h -t 1.92098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92111999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
+ -t 1.92111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
- -t 1.92111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
h -t 1.92111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.92124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
- -t 1.92124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
h -t 1.92124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
r -t 1.92447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 956 -a 10 -x {0.1 1073741824.0 368 ------- null}
r -t 1.92460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
+ -t 1.92460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
- -t 1.92460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
h -t 1.92460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.92460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
- -t 1.92460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
h -t 1.92460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
+ -t 1.92473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
- -t 1.92473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
h -t 1.92473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92486999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
+ -t 1.92486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
- -t 1.92486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
h -t 1.92486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.92499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
- -t 1.92499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
h -t 1.92499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
r -t 1.92822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 958 -a 10 -x {0.1 1073741824.0 369 ------- null}
r -t 1.92835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
+ -t 1.92835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
- -t 1.92835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
h -t 1.92835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.92835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
- -t 1.92835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
h -t 1.92835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92848999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
+ -t 1.92848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
- -t 1.92848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
h -t 1.92848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.92861999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
+ -t 1.92861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
- -t 1.92861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
h -t 1.92861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.92874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
- -t 1.92874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
h -t 1.92874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
r -t 1.93197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 960 -a 10 -x {0.1 1073741824.0 370 ------- null}
r -t 1.93210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
+ -t 1.93210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
- -t 1.93210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
h -t 1.93210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.93210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
- -t 1.93210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
h -t 1.93210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93223999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
+ -t 1.93223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
- -t 1.93223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
h -t 1.93223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93236999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
+ -t 1.93236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
- -t 1.93236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
h -t 1.93236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.93249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
- -t 1.93249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
h -t 1.93249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
r -t 1.93572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 962 -a 10 -x {0.1 1073741824.0 371 ------- null}
r -t 1.93585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
+ -t 1.93585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
- -t 1.93585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
h -t 1.93585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.93585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
- -t 1.93585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
h -t 1.93585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93598999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
+ -t 1.93598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
- -t 1.93598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
h -t 1.93598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93611999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
+ -t 1.93611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
- -t 1.93611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
h -t 1.93611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.93624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
- -t 1.93624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
h -t 1.93624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
r -t 1.93947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 964 -a 10 -x {0.1 1073741824.0 372 ------- null}
r -t 1.93960999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
+ -t 1.93960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
- -t 1.93960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
h -t 1.93960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.93960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
- -t 1.93960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
h -t 1.93960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93973999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
+ -t 1.93973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
- -t 1.93973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
h -t 1.93973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.93986999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
+ -t 1.93986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
- -t 1.93986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
h -t 1.93986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.93999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
- -t 1.93999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
h -t 1.93999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.94322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
r -t 1.94322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 966 -a 10 -x {0.1 1073741824.0 373 ------- null}
r -t 1.94335999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
+ -t 1.94335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
- -t 1.94335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
h -t 1.94335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.94335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
- -t 1.94335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
h -t 1.94335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.94348999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
+ -t 1.94348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
- -t 1.94348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
h -t 1.94348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.94361999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
+ -t 1.94361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
- -t 1.94361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
h -t 1.94361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.94374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
- -t 1.94374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
h -t 1.94374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.94697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
r -t 1.94697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 968 -a 10 -x {0.1 1073741824.0 374 ------- null}
r -t 1.94710999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
+ -t 1.94710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
- -t 1.94710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
h -t 1.94710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.94710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
- -t 1.94710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
h -t 1.94710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.94723999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
+ -t 1.94723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
- -t 1.94723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
h -t 1.94723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.94736999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
+ -t 1.94736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
- -t 1.94736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
h -t 1.94736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.94749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
- -t 1.94749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
h -t 1.94749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95072999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
r -t 1.95072999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 970 -a 10 -x {0.1 1073741824.0 375 ------- null}
r -t 1.95085999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
+ -t 1.95085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
- -t 1.95085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
h -t 1.95085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.95085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
- -t 1.95085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
h -t 1.95085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95098999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
+ -t 1.95098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
- -t 1.95098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
h -t 1.95098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95111999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
+ -t 1.95111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
- -t 1.95111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
h -t 1.95111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.95124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
- -t 1.95124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
h -t 1.95124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95447999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
r -t 1.95447999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 972 -a 10 -x {0.1 1073741824.0 376 ------- null}
r -t 1.95460999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
+ -t 1.95460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
- -t 1.95460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
h -t 1.95460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.95460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
- -t 1.95460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
h -t 1.95460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95473999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
+ -t 1.95473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
- -t 1.95473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
h -t 1.95473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95486999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
+ -t 1.95486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
- -t 1.95486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
h -t 1.95486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.95499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
- -t 1.95499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
h -t 1.95499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95822999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
r -t 1.95822999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 974 -a 10 -x {0.1 1073741824.0 377 ------- null}
r -t 1.95835999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
+ -t 1.95835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
- -t 1.95835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
h -t 1.95835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.95835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
- -t 1.95835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
h -t 1.95835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95848999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
+ -t 1.95848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
- -t 1.95848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
h -t 1.95848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.95861999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
+ -t 1.95861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
- -t 1.95861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
h -t 1.95861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.95874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
- -t 1.95874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
h -t 1.95874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96197999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
r -t 1.96197999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 976 -a 10 -x {0.1 1073741824.0 378 ------- null}
r -t 1.96210999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
+ -t 1.96210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
- -t 1.96210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
h -t 1.96210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.96210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
- -t 1.96210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
h -t 1.96210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96223999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
+ -t 1.96223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
- -t 1.96223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
h -t 1.96223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96236999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
+ -t 1.96236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
- -t 1.96236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
h -t 1.96236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.96249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
- -t 1.96249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
h -t 1.96249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96572999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
r -t 1.96572999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 978 -a 10 -x {0.1 1073741824.0 379 ------- null}
r -t 1.96585999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
+ -t 1.96585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
- -t 1.96585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
h -t 1.96585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.96585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
- -t 1.96585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
h -t 1.96585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96598999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
+ -t 1.96598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
- -t 1.96598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
h -t 1.96598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96611999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
+ -t 1.96611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
- -t 1.96611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
h -t 1.96611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.96624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
- -t 1.96624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
h -t 1.96624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96947999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
r -t 1.96947999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 980 -a 10 -x {0.1 1073741824.0 380 ------- null}
r -t 1.96960999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
+ -t 1.96960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
- -t 1.96960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
h -t 1.96960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.96960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
- -t 1.96960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
h -t 1.96960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96973999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
+ -t 1.96973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
- -t 1.96973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
h -t 1.96973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.96986999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
+ -t 1.96986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
- -t 1.96986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
h -t 1.96986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.96999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
- -t 1.96999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
h -t 1.96999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.97322999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
r -t 1.97322999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 982 -a 10 -x {0.1 1073741824.0 381 ------- null}
r -t 1.97335999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
+ -t 1.97335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
- -t 1.97335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
h -t 1.97335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.97335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
- -t 1.97335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
h -t 1.97335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.97348999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
+ -t 1.97348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
- -t 1.97348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
h -t 1.97348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.97361999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
+ -t 1.97361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
- -t 1.97361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
h -t 1.97361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.97374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
- -t 1.97374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
h -t 1.97374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.97697999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
r -t 1.97697999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 984 -a 10 -x {0.1 1073741824.0 382 ------- null}
r -t 1.97710999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
+ -t 1.97710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
- -t 1.97710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
h -t 1.97710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.97710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
- -t 1.97710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
h -t 1.97710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.97723999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
+ -t 1.97723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
- -t 1.97723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
h -t 1.97723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.97736999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
+ -t 1.97736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
- -t 1.97736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
h -t 1.97736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.97749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
- -t 1.97749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
h -t 1.97749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98072999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
r -t 1.98072999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 986 -a 10 -x {0.1 1073741824.0 383 ------- null}
r -t 1.98085999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
+ -t 1.98085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
- -t 1.98085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
h -t 1.98085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.98085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
- -t 1.98085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
h -t 1.98085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98098999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
+ -t 1.98098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
- -t 1.98098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
h -t 1.98098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98111999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
+ -t 1.98111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
- -t 1.98111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
h -t 1.98111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.98124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
- -t 1.98124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
h -t 1.98124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98447999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
r -t 1.98447999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 988 -a 10 -x {0.1 1073741824.0 384 ------- null}
r -t 1.98460999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
+ -t 1.98460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
- -t 1.98460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
h -t 1.98460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.98460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
- -t 1.98460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
h -t 1.98460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98473999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
+ -t 1.98473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
- -t 1.98473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
h -t 1.98473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98486999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
+ -t 1.98486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
- -t 1.98486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
h -t 1.98486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.98499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
- -t 1.98499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
h -t 1.98499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98822999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
r -t 1.98822999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 990 -a 10 -x {0.1 1073741824.0 385 ------- null}
r -t 1.98835999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
+ -t 1.98835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
- -t 1.98835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
h -t 1.98835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.98835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
- -t 1.98835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
h -t 1.98835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98848999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
+ -t 1.98848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
- -t 1.98848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
h -t 1.98848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.98861999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
+ -t 1.98861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
- -t 1.98861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
h -t 1.98861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.98874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
- -t 1.98874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
h -t 1.98874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99197999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
r -t 1.99197999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 992 -a 10 -x {0.1 1073741824.0 386 ------- null}
r -t 1.99210999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
+ -t 1.99210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
- -t 1.99210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
h -t 1.99210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.99210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
- -t 1.99210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
h -t 1.99210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99223999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
+ -t 1.99223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
- -t 1.99223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
h -t 1.99223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99236999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
+ -t 1.99236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
- -t 1.99236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
h -t 1.99236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.99249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
- -t 1.99249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
h -t 1.99249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99572999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
r -t 1.99572999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 994 -a 10 -x {0.1 1073741824.0 387 ------- null}
r -t 1.99585999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
+ -t 1.99585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
- -t 1.99585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
h -t 1.99585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.99585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
- -t 1.99585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
h -t 1.99585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99598999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
+ -t 1.99598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
- -t 1.99598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
h -t 1.99598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99611999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
+ -t 1.99611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
- -t 1.99611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
h -t 1.99611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.99624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
- -t 1.99624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
h -t 1.99624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99947999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
r -t 1.99947999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 996 -a 10 -x {0.1 1073741824.0 388 ------- null}
r -t 1.99960999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
+ -t 1.99960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
- -t 1.99960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
h -t 1.99960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.99960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
- -t 1.99960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
h -t 1.99960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99973999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
+ -t 1.99973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
- -t 1.99973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
h -t 1.99973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 1.99986999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
+ -t 1.99986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
- -t 1.99986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
h -t 1.99986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 1.99999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
- -t 1.99999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
h -t 1.99999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 -1 ------- null}
v -t 2 -e sim_annotation 2 2 7 join-group 1073741824
+ -t 2 -s 7 -d 3 -p graft -e 80 -c 31 -i 1022 -a 31 -x {7.0 3.0 -1 ------- null}
- -t 2 -s 7 -d 3 -p graft -e 80 -c 31 -i 1022 -a 31 -x {7.0 3.0 -1 ------- null}
h -t 2 -s 7 -d 3 -p graft -e 80 -c 31 -i 1022 -a 31 -x {7.0 3.0 -1 ------- null}
r -t 2.00322999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
r -t 2.00322999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 998 -a 10 -x {0.1 1073741824.0 389 ------- null}
r -t 2.00335999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
+ -t 2.00335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
- -t 2.00335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
h -t 2.00335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.00335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
- -t 2.00335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
h -t 2.00335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.00348999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
+ -t 2.00348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
- -t 2.00348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
h -t 2.00348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.00361999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
+ -t 2.00361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
- -t 2.00361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
h -t 2.00361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.00374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
- -t 2.00374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
h -t 2.00374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.00697999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
r -t 2.00697999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1000 -a 10 -x {0.1 1073741824.0 390 ------- null}
r -t 2.00710999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
+ -t 2.00710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
- -t 2.00710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
h -t 2.00710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.00710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
- -t 2.00710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
h -t 2.00710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.00723999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
+ -t 2.00723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
- -t 2.00723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
h -t 2.00723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.00736999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
+ -t 2.00736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
- -t 2.00736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
h -t 2.00736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.00749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
- -t 2.00749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
h -t 2.00749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01042666666667 -s 7 -d 3 -p graft -e 80 -c 31 -i 1022 -a 31 -x {7.0 3.0 -1 ------- null}
r -t 2.01072999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
r -t 2.01072999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1002 -a 10 -x {0.1 1073741824.0 391 ------- null}
r -t 2.01085999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
+ -t 2.01085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
- -t 2.01085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
h -t 2.01085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
- -t 2.01085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
h -t 2.01085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01098999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
+ -t 2.01098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
- -t 2.01098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
h -t 2.01098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
- -t 2.01098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
h -t 2.01098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01111999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
+ -t 2.01111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
- -t 2.01111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
h -t 2.01111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
- -t 2.01124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
h -t 2.01124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01447999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
r -t 2.01447999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1004 -a 10 -x {0.1 1073741824.0 392 ------- null}
r -t 2.01460999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
+ -t 2.01460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
- -t 2.01460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
h -t 2.01460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
- -t 2.01460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
h -t 2.01460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01473999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
+ -t 2.01473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
- -t 2.01473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
h -t 2.01473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
- -t 2.01473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
h -t 2.01473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01486999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
+ -t 2.01486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
- -t 2.01486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
h -t 2.01486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
- -t 2.01499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
h -t 2.01499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01822999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
r -t 2.01822999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1006 -a 10 -x {0.1 1073741824.0 393 ------- null}
r -t 2.01835999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
+ -t 2.01835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
- -t 2.01835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
h -t 2.01835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
- -t 2.01835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
h -t 2.01835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01848999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
+ -t 2.01848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
- -t 2.01848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
h -t 2.01848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
- -t 2.01848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
h -t 2.01848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.01861999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
+ -t 2.01861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
- -t 2.01861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
h -t 2.01861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.01874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
- -t 2.01874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
h -t 2.01874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02197999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
r -t 2.02197999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1008 -a 10 -x {0.1 1073741824.0 394 ------- null}
r -t 2.02210999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
+ -t 2.02210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
- -t 2.02210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
h -t 2.02210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
- -t 2.02210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
h -t 2.02210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02210999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
r -t 2.02223999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
+ -t 2.02223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
- -t 2.02223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
h -t 2.02223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
- -t 2.02223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
h -t 2.02223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02236999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
+ -t 2.02236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
- -t 2.02236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
h -t 2.02236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
- -t 2.02249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
h -t 2.02249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02572999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
r -t 2.02572999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1010 -a 10 -x {0.1 1073741824.0 395 ------- null}
r -t 2.02585999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
+ -t 2.02585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
- -t 2.02585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
h -t 2.02585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
- -t 2.02585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
h -t 2.02585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02585999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
r -t 2.02598999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
+ -t 2.02598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
- -t 2.02598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
h -t 2.02598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02598999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
- -t 2.02598999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
h -t 2.02598999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02611999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
+ -t 2.02611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
- -t 2.02611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
h -t 2.02611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
- -t 2.02624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
h -t 2.02624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02947999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
r -t 2.02947999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1012 -a 10 -x {0.1 1073741824.0 396 ------- null}
r -t 2.02960999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
+ -t 2.02960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
- -t 2.02960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
h -t 2.02960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
- -t 2.02960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
h -t 2.02960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02960999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
r -t 2.02973999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
+ -t 2.02973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
- -t 2.02973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
h -t 2.02973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02973999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
- -t 2.02973999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
h -t 2.02973999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.02986999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
+ -t 2.02986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
- -t 2.02986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
h -t 2.02986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.02999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
- -t 2.02999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
h -t 2.02999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.03322999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
r -t 2.03322999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1014 -a 10 -x {0.1 1073741824.0 397 ------- null}
r -t 2.03335999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
+ -t 2.03335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
- -t 2.03335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
h -t 2.03335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.03335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
- -t 2.03335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
h -t 2.03335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.03335999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
r -t 2.03348999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
+ -t 2.03348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
- -t 2.03348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
h -t 2.03348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.03348999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
- -t 2.03348999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
h -t 2.03348999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.03361999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
+ -t 2.03361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
- -t 2.03361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
h -t 2.03361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.03374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
- -t 2.03374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
h -t 2.03374999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.03697999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
r -t 2.03697999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1016 -a 10 -x {0.1 1073741824.0 398 ------- null}
r -t 2.03710999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
+ -t 2.03710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
- -t 2.03710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
h -t 2.03710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.03710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
- -t 2.03710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
h -t 2.03710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.03710999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
r -t 2.03723999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
+ -t 2.03723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
- -t 2.03723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
h -t 2.03723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.03723999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
- -t 2.03723999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
h -t 2.03723999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.03736999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
+ -t 2.03736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
- -t 2.03736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
h -t 2.03736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.03749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
- -t 2.03749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
h -t 2.03749999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04072999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
r -t 2.04072999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1018 -a 10 -x {0.1 1073741824.0 399 ------- null}
r -t 2.04085999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
+ -t 2.04085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
- -t 2.04085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
h -t 2.04085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
- -t 2.04085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
h -t 2.04085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04085999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
r -t 2.04098999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
+ -t 2.04098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
- -t 2.04098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
h -t 2.04098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
- -t 2.04098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
h -t 2.04098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04111999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
+ -t 2.04111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
- -t 2.04111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
h -t 2.04111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
- -t 2.04124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
h -t 2.04124999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04447999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
r -t 2.04447999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1020 -a 10 -x {0.1 1073741824.0 400 ------- null}
r -t 2.04460999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
+ -t 2.04460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
- -t 2.04460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
h -t 2.04460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
- -t 2.04460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
h -t 2.04460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04460999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
r -t 2.04473999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
+ -t 2.04473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
- -t 2.04473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
h -t 2.04473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
- -t 2.04473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
h -t 2.04473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04486999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
+ -t 2.04486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
- -t 2.04486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
h -t 2.04486999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
- -t 2.04499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
h -t 2.04499999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04822999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
r -t 2.04822999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1023 -a 10 -x {0.1 1073741824.0 401 ------- null}
r -t 2.04835999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
+ -t 2.04835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
- -t 2.04835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
h -t 2.04835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
- -t 2.04835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
h -t 2.04835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04835999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
r -t 2.04848999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
+ -t 2.04848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
- -t 2.04848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
h -t 2.04848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
- -t 2.04848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
h -t 2.04848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.04861999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
+ -t 2.04861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
- -t 2.04861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
h -t 2.04861999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.04874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
- -t 2.04874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
h -t 2.04874999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05197999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
r -t 2.05197999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1025 -a 10 -x {0.1 1073741824.0 402 ------- null}
r -t 2.05210999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
+ -t 2.05210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
- -t 2.05210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
h -t 2.05210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
- -t 2.05210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
h -t 2.05210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05210999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
r -t 2.05223999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
+ -t 2.05223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
- -t 2.05223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
h -t 2.05223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
- -t 2.05223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
h -t 2.05223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05236999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
+ -t 2.05236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
- -t 2.05236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
h -t 2.05236999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
- -t 2.05249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
h -t 2.05249999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05572999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
r -t 2.05572999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1027 -a 10 -x {0.1 1073741824.0 403 ------- null}
r -t 2.05585999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
+ -t 2.05585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
- -t 2.05585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
h -t 2.05585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
- -t 2.05585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
h -t 2.05585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05585999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
r -t 2.05598999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
+ -t 2.05598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
- -t 2.05598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
h -t 2.05598999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05598999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
- -t 2.05598999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
h -t 2.05598999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05611999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
+ -t 2.05611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
- -t 2.05611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
h -t 2.05611999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
- -t 2.05624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
h -t 2.05624999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05947999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
r -t 2.05947999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1029 -a 10 -x {0.1 1073741824.0 404 ------- null}
r -t 2.05960999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
+ -t 2.05960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
- -t 2.05960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
h -t 2.05960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
- -t 2.05960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
h -t 2.05960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05960999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
r -t 2.05973999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
+ -t 2.05973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
- -t 2.05973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
h -t 2.05973999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05973999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
- -t 2.05973999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
h -t 2.05973999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.05986999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
+ -t 2.05986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
- -t 2.05986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
h -t 2.05986999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.05999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
- -t 2.05999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
h -t 2.05999999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.06322999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
r -t 2.06322999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1031 -a 10 -x {0.1 1073741824.0 405 ------- null}
r -t 2.06335999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
+ -t 2.06335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
- -t 2.06335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
h -t 2.06335999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.06335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
- -t 2.06335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
h -t 2.06335999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.06335999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
r -t 2.06348999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
+ -t 2.06348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
- -t 2.06348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
h -t 2.06348999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.06348999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
- -t 2.06348999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
h -t 2.06348999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.06361999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
+ -t 2.06361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
- -t 2.06361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
h -t 2.06361999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.06374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
- -t 2.06374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
h -t 2.06374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.06697999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
r -t 2.06697999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1033 -a 10 -x {0.1 1073741824.0 406 ------- null}
r -t 2.06710999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
+ -t 2.06710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
- -t 2.06710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
h -t 2.06710999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.06710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
- -t 2.06710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
h -t 2.06710999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.06710999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
r -t 2.06723999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
+ -t 2.06723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
- -t 2.06723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
h -t 2.06723999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.06723999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
- -t 2.06723999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
h -t 2.06723999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.06736999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
+ -t 2.06736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
- -t 2.06736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
h -t 2.06736999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.06749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
- -t 2.06749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
h -t 2.06749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07072999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
r -t 2.07072999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1035 -a 10 -x {0.1 1073741824.0 407 ------- null}
r -t 2.07085999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
+ -t 2.07085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
- -t 2.07085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
h -t 2.07085999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
- -t 2.07085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
h -t 2.07085999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07085999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
r -t 2.07098999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
+ -t 2.07098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
- -t 2.07098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
h -t 2.07098999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
- -t 2.07098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
h -t 2.07098999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07111999999998 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
+ -t 2.07111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
- -t 2.07111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
h -t 2.07111999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
- -t 2.07124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
h -t 2.07124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07447999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
r -t 2.07447999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1037 -a 10 -x {0.1 1073741824.0 408 ------- null}
r -t 2.07460999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
+ -t 2.07460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
- -t 2.07460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
h -t 2.07460999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
- -t 2.07460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
h -t 2.07460999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07460999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
r -t 2.07473999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
+ -t 2.07473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
- -t 2.07473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
h -t 2.07473999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
- -t 2.07473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
h -t 2.07473999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
+ -t 2.07486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
- -t 2.07486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
h -t 2.07486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
- -t 2.07499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
h -t 2.07499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07822999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
r -t 2.07822999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1039 -a 10 -x {0.1 1073741824.0 409 ------- null}
r -t 2.07835999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
+ -t 2.07835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
- -t 2.07835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
h -t 2.07835999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
- -t 2.07835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
h -t 2.07835999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07835999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
r -t 2.07848999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
+ -t 2.07848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
- -t 2.07848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
h -t 2.07848999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
- -t 2.07848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
h -t 2.07848999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.07861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
+ -t 2.07861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
- -t 2.07861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
h -t 2.07861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.07874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
- -t 2.07874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
h -t 2.07874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08197999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
r -t 2.08197999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1041 -a 10 -x {0.1 1073741824.0 410 ------- null}
r -t 2.08210999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
+ -t 2.08210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
- -t 2.08210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
h -t 2.08210999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
- -t 2.08210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
h -t 2.08210999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08210999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
r -t 2.08223999999998 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
+ -t 2.08223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
- -t 2.08223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
h -t 2.08223999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
- -t 2.08223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
h -t 2.08223999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
+ -t 2.08236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
- -t 2.08236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
h -t 2.08236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
- -t 2.08249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
h -t 2.08249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08572999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
r -t 2.08572999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1043 -a 10 -x {0.1 1073741824.0 411 ------- null}
r -t 2.08585999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
+ -t 2.08585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
- -t 2.08585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
h -t 2.08585999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
- -t 2.08585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
h -t 2.08585999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08585999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
r -t 2.08598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
+ -t 2.08598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
- -t 2.08598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
h -t 2.08598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
- -t 2.08598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
h -t 2.08598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
+ -t 2.08611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
- -t 2.08611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
h -t 2.08611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
- -t 2.08624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
h -t 2.08624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08947999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
r -t 2.08947999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1045 -a 10 -x {0.1 1073741824.0 412 ------- null}
r -t 2.08960999999998 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
+ -t 2.08960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
- -t 2.08960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
h -t 2.08960999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
- -t 2.08960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
h -t 2.08960999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08960999999998 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
r -t 2.08973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
+ -t 2.08973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
- -t 2.08973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
h -t 2.08973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
- -t 2.08973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
h -t 2.08973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.08986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
+ -t 2.08986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
- -t 2.08986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
h -t 2.08986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.08999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
- -t 2.08999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
h -t 2.08999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.09322999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
r -t 2.09322999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1047 -a 10 -x {0.1 1073741824.0 413 ------- null}
r -t 2.09335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
+ -t 2.09335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
- -t 2.09335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
h -t 2.09335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.09335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
- -t 2.09335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
h -t 2.09335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.09335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
r -t 2.09348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
+ -t 2.09348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
- -t 2.09348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
h -t 2.09348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.09348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
- -t 2.09348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
h -t 2.09348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.09361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
+ -t 2.09361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
- -t 2.09361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
h -t 2.09361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.09374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
- -t 2.09374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
h -t 2.09374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.09697999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
r -t 2.09697999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1049 -a 10 -x {0.1 1073741824.0 414 ------- null}
r -t 2.09710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
+ -t 2.09710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
- -t 2.09710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
h -t 2.09710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.09710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
- -t 2.09710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
h -t 2.09710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.09710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
r -t 2.09723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
+ -t 2.09723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
- -t 2.09723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
h -t 2.09723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.09723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
- -t 2.09723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
h -t 2.09723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.09736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
+ -t 2.09736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
- -t 2.09736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
h -t 2.09736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.09749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
- -t 2.09749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
h -t 2.09749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10072999999998 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
r -t 2.10072999999998 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1051 -a 10 -x {0.1 1073741824.0 415 ------- null}
r -t 2.10085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
+ -t 2.10085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
- -t 2.10085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
h -t 2.10085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
- -t 2.10085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
h -t 2.10085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
r -t 2.10098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
+ -t 2.10098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
- -t 2.10098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
h -t 2.10098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
- -t 2.10098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
h -t 2.10098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
+ -t 2.10111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
- -t 2.10111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
h -t 2.10111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
- -t 2.10124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
h -t 2.10124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
r -t 2.10447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1053 -a 10 -x {0.1 1073741824.0 416 ------- null}
r -t 2.10460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
+ -t 2.10460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
- -t 2.10460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
h -t 2.10460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
- -t 2.10460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
h -t 2.10460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
r -t 2.10473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
+ -t 2.10473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
- -t 2.10473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
h -t 2.10473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
- -t 2.10473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
h -t 2.10473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
+ -t 2.10486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
- -t 2.10486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
h -t 2.10486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
- -t 2.10499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
h -t 2.10499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
r -t 2.10822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1055 -a 10 -x {0.1 1073741824.0 417 ------- null}
r -t 2.10835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
+ -t 2.10835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
- -t 2.10835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
h -t 2.10835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
- -t 2.10835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
h -t 2.10835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
r -t 2.10848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
+ -t 2.10848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
- -t 2.10848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
h -t 2.10848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
- -t 2.10848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
h -t 2.10848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.10861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
+ -t 2.10861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
- -t 2.10861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
h -t 2.10861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.10874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
- -t 2.10874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
h -t 2.10874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
r -t 2.11197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1057 -a 10 -x {0.1 1073741824.0 418 ------- null}
r -t 2.11210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
+ -t 2.11210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
- -t 2.11210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
h -t 2.11210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
- -t 2.11210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
h -t 2.11210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
r -t 2.11223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
+ -t 2.11223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
- -t 2.11223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
h -t 2.11223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
- -t 2.11223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
h -t 2.11223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
+ -t 2.11236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
- -t 2.11236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
h -t 2.11236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
- -t 2.11249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
h -t 2.11249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
r -t 2.11572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1059 -a 10 -x {0.1 1073741824.0 419 ------- null}
r -t 2.11585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
+ -t 2.11585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
- -t 2.11585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
h -t 2.11585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
- -t 2.11585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
h -t 2.11585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
r -t 2.11598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
+ -t 2.11598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
- -t 2.11598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
h -t 2.11598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
- -t 2.11598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
h -t 2.11598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
+ -t 2.11611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
- -t 2.11611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
h -t 2.11611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
- -t 2.11624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
h -t 2.11624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
r -t 2.11947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1061 -a 10 -x {0.1 1073741824.0 420 ------- null}
r -t 2.11960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
+ -t 2.11960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
- -t 2.11960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
h -t 2.11960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
- -t 2.11960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
h -t 2.11960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
r -t 2.11973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
+ -t 2.11973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
- -t 2.11973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
h -t 2.11973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
- -t 2.11973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
h -t 2.11973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.11986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
+ -t 2.11986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
- -t 2.11986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
h -t 2.11986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.11999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
- -t 2.11999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
h -t 2.11999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.12322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
r -t 2.12322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1063 -a 10 -x {0.1 1073741824.0 421 ------- null}
r -t 2.12335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
+ -t 2.12335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
- -t 2.12335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
h -t 2.12335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.12335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
- -t 2.12335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
h -t 2.12335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.12335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
r -t 2.12348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
+ -t 2.12348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
- -t 2.12348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
h -t 2.12348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.12348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
- -t 2.12348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
h -t 2.12348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.12361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
+ -t 2.12361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
- -t 2.12361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
h -t 2.12361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.12374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
- -t 2.12374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
h -t 2.12374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.12697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
r -t 2.12697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1065 -a 10 -x {0.1 1073741824.0 422 ------- null}
r -t 2.12710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
+ -t 2.12710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
- -t 2.12710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
h -t 2.12710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.12710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
- -t 2.12710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
h -t 2.12710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.12710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
r -t 2.12723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
+ -t 2.12723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
- -t 2.12723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
h -t 2.12723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.12723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
- -t 2.12723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
h -t 2.12723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.12736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
+ -t 2.12736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
- -t 2.12736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
h -t 2.12736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.12749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
- -t 2.12749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
h -t 2.12749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
r -t 2.13072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1067 -a 10 -x {0.1 1073741824.0 423 ------- null}
r -t 2.13085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
+ -t 2.13085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
- -t 2.13085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
h -t 2.13085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
- -t 2.13085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
h -t 2.13085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
r -t 2.13098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
+ -t 2.13098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
- -t 2.13098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
h -t 2.13098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
- -t 2.13098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
h -t 2.13098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
+ -t 2.13111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
- -t 2.13111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
h -t 2.13111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.13124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.13124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
r -t 2.13447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1069 -a 10 -x {0.1 1073741824.0 424 ------- null}
r -t 2.13460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
+ -t 2.13460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
- -t 2.13460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
h -t 2.13460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
- -t 2.13460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
h -t 2.13460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
r -t 2.13473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
+ -t 2.13473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
- -t 2.13473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
h -t 2.13473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
- -t 2.13473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
h -t 2.13473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
+ -t 2.13486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
- -t 2.13486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
h -t 2.13486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.13499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.13499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
r -t 2.13822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1071 -a 10 -x {0.1 1073741824.0 425 ------- null}
r -t 2.13835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
+ -t 2.13835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
- -t 2.13835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
h -t 2.13835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
- -t 2.13835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
h -t 2.13835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
r -t 2.13848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
+ -t 2.13848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
- -t 2.13848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
h -t 2.13848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
- -t 2.13848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
h -t 2.13848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.13861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
+ -t 2.13861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
- -t 2.13861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
h -t 2.13861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.13874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.13874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.13874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
r -t 2.14197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1073 -a 10 -x {0.1 1073741824.0 426 ------- null}
r -t 2.14210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
+ -t 2.14210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
- -t 2.14210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
h -t 2.14210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
- -t 2.14210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
h -t 2.14210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
r -t 2.14223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
+ -t 2.14223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
- -t 2.14223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
h -t 2.14223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
- -t 2.14223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
h -t 2.14223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
+ -t 2.14236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.14236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.14236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14236999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.14236999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.14236999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.14249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.14249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
r -t 2.14572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1075 -a 10 -x {0.1 1073741824.0 427 ------- null}
r -t 2.14585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
+ -t 2.14585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
- -t 2.14585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
h -t 2.14585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
- -t 2.14585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
h -t 2.14585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
r -t 2.14598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
+ -t 2.14598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
- -t 2.14598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
h -t 2.14598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
- -t 2.14598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
h -t 2.14598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
+ -t 2.14611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.14611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.14611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14611999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.14611999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.14611999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.14624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.14624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
r -t 2.14947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1077 -a 10 -x {0.1 1073741824.0 428 ------- null}
r -t 2.14960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
+ -t 2.14960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
- -t 2.14960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
h -t 2.14960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
- -t 2.14960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
h -t 2.14960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
r -t 2.14973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
+ -t 2.14973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
- -t 2.14973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
h -t 2.14973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
- -t 2.14973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
h -t 2.14973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.14986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
+ -t 2.14986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.14986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.14986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14986999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.14986999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.14986999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.14999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.14999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.14999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.15322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
r -t 2.15322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1079 -a 10 -x {0.1 1073741824.0 429 ------- null}
r -t 2.15335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
+ -t 2.15335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
- -t 2.15335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
h -t 2.15335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
- -t 2.15335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
h -t 2.15335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.15335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
r -t 2.15348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
+ -t 2.15348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.15348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.15348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.15348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.15348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.15348999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
+ -t 2.15348999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1103 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 2.15348999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1103 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 2.15348999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1103 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.15361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
+ -t 2.15361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.15361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.15361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15361999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.15361999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.15361999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
- -t 2.15374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
h -t 2.15374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.15697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
r -t 2.15697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1081 -a 10 -x {0.1 1073741824.0 430 ------- null}
r -t 2.15710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
+ -t 2.15710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
- -t 2.15710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
h -t 2.15710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
- -t 2.15710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
h -t 2.15710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.15710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
r -t 2.15723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
+ -t 2.15723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.15723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.15723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.15723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.15723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.15723999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
+ -t 2.15723999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1106 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 2.15723999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1106 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 2.15723999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1106 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.15736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
+ -t 2.15736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.15736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.15736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15736999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.15736999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.15736999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.15749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
- -t 2.15749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
h -t 2.15749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
r -t 2.16072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1083 -a 10 -x {0.1 1073741824.0 431 ------- null}
r -t 2.16085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
+ -t 2.16085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
- -t 2.16085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
h -t 2.16085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
- -t 2.16085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
h -t 2.16085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
r -t 2.16098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
+ -t 2.16098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.16098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.16098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.16098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.16098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16098999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
+ -t 2.16098999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1109 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 2.16098999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1109 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 2.16098999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1109 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.16111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
+ -t 2.16111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.16111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.16111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16111999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.16111999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.16111999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
- -t 2.16124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
h -t 2.16124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16391666666665 -s 1 -d 2 -p prune -e 80 -c 30 -i 1103 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.16447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
r -t 2.16447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1085 -a 10 -x {0.1 1073741824.0 432 ------- null}
r -t 2.16460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
+ -t 2.16460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.16460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.16460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
- -t 2.16460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
h -t 2.16460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
r -t 2.16473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
+ -t 2.16473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.16473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.16473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.16473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.16473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16473999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
+ -t 2.16473999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1112 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 2.16473999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1112 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 2.16473999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1112 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.16486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
+ -t 2.16486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
- -t 2.16486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
h -t 2.16486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
- -t 2.16499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
h -t 2.16499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16766666666665 -s 1 -d 2 -p prune -e 80 -c 30 -i 1106 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.16822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
r -t 2.16822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1087 -a 10 -x {0.1 1073741824.0 433 ------- null}
r -t 2.16835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
+ -t 2.16835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.16835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.16835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
- -t 2.16835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
h -t 2.16835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
r -t 2.16848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
+ -t 2.16848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.16848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.16848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.16848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.16848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.16848999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
+ -t 2.16848999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1115 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 2.16848999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1115 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 2.16848999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1115 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.16861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
+ -t 2.16861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
- -t 2.16861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
h -t 2.16861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.16874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
- -t 2.16874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
h -t 2.16874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17141666666665 -s 1 -d 2 -p prune -e 80 -c 30 -i 1109 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.17197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
r -t 2.17197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1089 -a 10 -x {0.1 1073741824.0 434 ------- null}
r -t 2.17210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
+ -t 2.17210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.17210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.17210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
- -t 2.17210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
h -t 2.17210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
r -t 2.17223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
+ -t 2.17223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.17223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.17223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.17223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.17223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17223999999999 -s 2 -d 1 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
+ -t 2.17223999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1118 -a 30 -x {1.0 2.0 -1 ------- null}
- -t 2.17223999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1118 -a 30 -x {1.0 2.0 -1 ------- null}
h -t 2.17223999999999 -s 1 -d 2 -p prune -e 80 -c 30 -i 1118 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.17236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
+ -t 2.17236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
- -t 2.17236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
h -t 2.17236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
- -t 2.17249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
h -t 2.17249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17516666666665 -s 1 -d 2 -p prune -e 80 -c 30 -i 1112 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.17572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
r -t 2.17572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1091 -a 10 -x {0.1 1073741824.0 435 ------- null}
r -t 2.17585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
+ -t 2.17585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.17585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.17585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
- -t 2.17585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
h -t 2.17585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
r -t 2.17598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
+ -t 2.17598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
- -t 2.17598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
h -t 2.17598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
- -t 2.17598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
h -t 2.17598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
+ -t 2.17611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
- -t 2.17611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
h -t 2.17611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
- -t 2.17624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
h -t 2.17624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17891666666665 -s 1 -d 2 -p prune -e 80 -c 30 -i 1115 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.17947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
r -t 2.17947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1093 -a 10 -x {0.1 1073741824.0 436 ------- null}
r -t 2.17960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
+ -t 2.17960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.17960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.17960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
- -t 2.17960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
h -t 2.17960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
r -t 2.17973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
+ -t 2.17973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
- -t 2.17973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
h -t 2.17973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
- -t 2.17973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
h -t 2.17973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.17986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
+ -t 2.17986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
- -t 2.17986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
h -t 2.17986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.17999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
- -t 2.17999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
h -t 2.17999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.18266666666665 -s 1 -d 2 -p prune -e 80 -c 30 -i 1118 -a 30 -x {1.0 2.0 -1 ------- null}
r -t 2.18322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
r -t 2.18322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1095 -a 10 -x {0.1 1073741824.0 437 ------- null}
r -t 2.18335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
+ -t 2.18335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.18335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.18335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.18335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
- -t 2.18335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
h -t 2.18335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.18335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
r -t 2.18348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
+ -t 2.18348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
- -t 2.18348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
h -t 2.18348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.18348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
- -t 2.18348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
h -t 2.18348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.18361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
+ -t 2.18361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
- -t 2.18361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
h -t 2.18361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.18374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
- -t 2.18374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
h -t 2.18374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.18697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
r -t 2.18697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1097 -a 10 -x {0.1 1073741824.0 438 ------- null}
r -t 2.18710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
+ -t 2.18710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
- -t 2.18710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
h -t 2.18710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.18710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
- -t 2.18710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
h -t 2.18710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.18710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
r -t 2.18723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
+ -t 2.18723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
- -t 2.18723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
h -t 2.18723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.18723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
- -t 2.18723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
h -t 2.18723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.18736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
+ -t 2.18736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
- -t 2.18736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
h -t 2.18736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.18749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
- -t 2.18749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
h -t 2.18749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
r -t 2.19072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1099 -a 10 -x {0.1 1073741824.0 439 ------- null}
r -t 2.19085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
+ -t 2.19085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
- -t 2.19085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
h -t 2.19085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
- -t 2.19085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
h -t 2.19085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
r -t 2.19098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
+ -t 2.19098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
- -t 2.19098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
h -t 2.19098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
- -t 2.19098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
h -t 2.19098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
+ -t 2.19111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
- -t 2.19111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
h -t 2.19111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
- -t 2.19124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
h -t 2.19124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
r -t 2.19447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1101 -a 10 -x {0.1 1073741824.0 440 ------- null}
r -t 2.19460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
+ -t 2.19460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
- -t 2.19460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
h -t 2.19460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
- -t 2.19460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
h -t 2.19460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
r -t 2.19473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
+ -t 2.19473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
- -t 2.19473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
h -t 2.19473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
- -t 2.19473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
h -t 2.19473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
+ -t 2.19486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
- -t 2.19486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
h -t 2.19486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
- -t 2.19499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
h -t 2.19499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
r -t 2.19822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1104 -a 10 -x {0.1 1073741824.0 441 ------- null}
r -t 2.19835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
+ -t 2.19835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
- -t 2.19835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
h -t 2.19835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
- -t 2.19835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
h -t 2.19835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
r -t 2.19848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
+ -t 2.19848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
- -t 2.19848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
h -t 2.19848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
- -t 2.19848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
h -t 2.19848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.19861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
+ -t 2.19861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
- -t 2.19861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
h -t 2.19861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.19874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
- -t 2.19874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
h -t 2.19874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
r -t 2.20197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1107 -a 10 -x {0.1 1073741824.0 442 ------- null}
r -t 2.20210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
+ -t 2.20210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
- -t 2.20210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
h -t 2.20210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
- -t 2.20210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
h -t 2.20210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
r -t 2.20223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
+ -t 2.20223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
- -t 2.20223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
h -t 2.20223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
- -t 2.20223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
h -t 2.20223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
+ -t 2.20236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
- -t 2.20236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
h -t 2.20236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
- -t 2.20249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
h -t 2.20249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
r -t 2.20572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1110 -a 10 -x {0.1 1073741824.0 443 ------- null}
r -t 2.20585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
+ -t 2.20585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
- -t 2.20585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
h -t 2.20585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
- -t 2.20585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
h -t 2.20585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
r -t 2.20598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
+ -t 2.20598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
- -t 2.20598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
h -t 2.20598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
- -t 2.20598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
h -t 2.20598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
+ -t 2.20611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
- -t 2.20611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
h -t 2.20611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
- -t 2.20624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
h -t 2.20624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
r -t 2.20947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1113 -a 10 -x {0.1 1073741824.0 444 ------- null}
r -t 2.20960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
+ -t 2.20960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
- -t 2.20960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
h -t 2.20960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
- -t 2.20960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
h -t 2.20960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
r -t 2.20973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
+ -t 2.20973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
- -t 2.20973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
h -t 2.20973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
- -t 2.20973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
h -t 2.20973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.20986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
+ -t 2.20986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
- -t 2.20986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
h -t 2.20986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.20999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
- -t 2.20999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
h -t 2.20999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.21322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
r -t 2.21322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1116 -a 10 -x {0.1 1073741824.0 445 ------- null}
r -t 2.21335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
+ -t 2.21335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
- -t 2.21335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
h -t 2.21335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.21335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
- -t 2.21335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
h -t 2.21335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.21335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
r -t 2.21348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
+ -t 2.21348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
- -t 2.21348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
h -t 2.21348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.21348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
- -t 2.21348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
h -t 2.21348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.21361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
+ -t 2.21361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
- -t 2.21361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
h -t 2.21361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.21374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
- -t 2.21374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
h -t 2.21374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.21697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
r -t 2.21697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1119 -a 10 -x {0.1 1073741824.0 446 ------- null}
r -t 2.21710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
+ -t 2.21710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
- -t 2.21710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
h -t 2.21710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.21710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
- -t 2.21710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
h -t 2.21710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.21710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
r -t 2.21723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
+ -t 2.21723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
- -t 2.21723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
h -t 2.21723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.21723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
- -t 2.21723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
h -t 2.21723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.21736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
+ -t 2.21736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
- -t 2.21736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
h -t 2.21736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.21749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
- -t 2.21749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
h -t 2.21749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
r -t 2.22072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1121 -a 10 -x {0.1 1073741824.0 447 ------- null}
r -t 2.22085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
+ -t 2.22085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
- -t 2.22085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
h -t 2.22085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
- -t 2.22085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
h -t 2.22085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
r -t 2.22098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
+ -t 2.22098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
- -t 2.22098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
h -t 2.22098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
- -t 2.22098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
h -t 2.22098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
+ -t 2.22111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
- -t 2.22111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
h -t 2.22111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
- -t 2.22124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
h -t 2.22124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
r -t 2.22447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1123 -a 10 -x {0.1 1073741824.0 448 ------- null}
r -t 2.22460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
+ -t 2.22460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
- -t 2.22460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
h -t 2.22460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
- -t 2.22460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
h -t 2.22460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
r -t 2.22473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
+ -t 2.22473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
- -t 2.22473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
h -t 2.22473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
- -t 2.22473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
h -t 2.22473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
+ -t 2.22486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
- -t 2.22486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
h -t 2.22486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
- -t 2.22499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
h -t 2.22499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
r -t 2.22822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1125 -a 10 -x {0.1 1073741824.0 449 ------- null}
r -t 2.22835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
+ -t 2.22835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
- -t 2.22835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
h -t 2.22835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
- -t 2.22835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
h -t 2.22835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
r -t 2.22848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
+ -t 2.22848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
- -t 2.22848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
h -t 2.22848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
- -t 2.22848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
h -t 2.22848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.22861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
+ -t 2.22861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
- -t 2.22861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
h -t 2.22861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.22874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
- -t 2.22874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
h -t 2.22874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
r -t 2.23197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1127 -a 10 -x {0.1 1073741824.0 450 ------- null}
r -t 2.23210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
+ -t 2.23210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
- -t 2.23210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
h -t 2.23210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
- -t 2.23210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
h -t 2.23210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
r -t 2.23223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
+ -t 2.23223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
- -t 2.23223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
h -t 2.23223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
- -t 2.23223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
h -t 2.23223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
+ -t 2.23236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
- -t 2.23236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
h -t 2.23236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
- -t 2.23249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
h -t 2.23249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
r -t 2.23572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1129 -a 10 -x {0.1 1073741824.0 451 ------- null}
r -t 2.23585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
+ -t 2.23585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
- -t 2.23585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
h -t 2.23585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
- -t 2.23585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
h -t 2.23585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
r -t 2.23598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
+ -t 2.23598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
- -t 2.23598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
h -t 2.23598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
- -t 2.23598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
h -t 2.23598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
+ -t 2.23611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
- -t 2.23611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
h -t 2.23611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
- -t 2.23624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
h -t 2.23624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
r -t 2.23947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1131 -a 10 -x {0.1 1073741824.0 452 ------- null}
r -t 2.23960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
+ -t 2.23960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
- -t 2.23960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
h -t 2.23960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
- -t 2.23960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
h -t 2.23960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
r -t 2.23973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
+ -t 2.23973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
- -t 2.23973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
h -t 2.23973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
- -t 2.23973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
h -t 2.23973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.23986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
+ -t 2.23986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
- -t 2.23986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
h -t 2.23986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.23999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
- -t 2.23999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
h -t 2.23999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.24322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
r -t 2.24322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1133 -a 10 -x {0.1 1073741824.0 453 ------- null}
r -t 2.24335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
+ -t 2.24335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
- -t 2.24335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
h -t 2.24335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.24335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
- -t 2.24335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
h -t 2.24335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.24335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
r -t 2.24348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
+ -t 2.24348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
- -t 2.24348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
h -t 2.24348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.24348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
- -t 2.24348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
h -t 2.24348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.24361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
+ -t 2.24361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
- -t 2.24361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
h -t 2.24361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.24374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
- -t 2.24374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
h -t 2.24374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.24697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
r -t 2.24697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1135 -a 10 -x {0.1 1073741824.0 454 ------- null}
r -t 2.24710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
+ -t 2.24710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
- -t 2.24710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
h -t 2.24710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.24710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
- -t 2.24710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
h -t 2.24710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.24710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
r -t 2.24723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
+ -t 2.24723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
- -t 2.24723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
h -t 2.24723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.24723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
- -t 2.24723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
h -t 2.24723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.24736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
+ -t 2.24736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
- -t 2.24736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
h -t 2.24736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.24749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
- -t 2.24749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
h -t 2.24749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
r -t 2.25072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1137 -a 10 -x {0.1 1073741824.0 455 ------- null}
r -t 2.25085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
+ -t 2.25085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
- -t 2.25085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
h -t 2.25085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
- -t 2.25085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
h -t 2.25085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
r -t 2.25098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
+ -t 2.25098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
- -t 2.25098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
h -t 2.25098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
- -t 2.25098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
h -t 2.25098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
+ -t 2.25111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
- -t 2.25111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
h -t 2.25111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
- -t 2.25124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
h -t 2.25124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
r -t 2.25447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1139 -a 10 -x {0.1 1073741824.0 456 ------- null}
r -t 2.25460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
+ -t 2.25460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
- -t 2.25460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
h -t 2.25460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
- -t 2.25460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
h -t 2.25460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
r -t 2.25473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
+ -t 2.25473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
- -t 2.25473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
h -t 2.25473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
- -t 2.25473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
h -t 2.25473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
+ -t 2.25486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
- -t 2.25486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
h -t 2.25486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
- -t 2.25499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
h -t 2.25499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
r -t 2.25822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1141 -a 10 -x {0.1 1073741824.0 457 ------- null}
r -t 2.25835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
+ -t 2.25835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
- -t 2.25835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
h -t 2.25835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
- -t 2.25835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
h -t 2.25835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
r -t 2.25848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
+ -t 2.25848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
- -t 2.25848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
h -t 2.25848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
- -t 2.25848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
h -t 2.25848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.25861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
+ -t 2.25861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
- -t 2.25861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
h -t 2.25861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.25874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
- -t 2.25874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
h -t 2.25874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
r -t 2.26197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1143 -a 10 -x {0.1 1073741824.0 458 ------- null}
r -t 2.26210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
+ -t 2.26210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
- -t 2.26210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
h -t 2.26210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
- -t 2.26210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
h -t 2.26210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
r -t 2.26223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
+ -t 2.26223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
- -t 2.26223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
h -t 2.26223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
- -t 2.26223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
h -t 2.26223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
+ -t 2.26236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
- -t 2.26236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
h -t 2.26236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
- -t 2.26249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
h -t 2.26249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
r -t 2.26572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1145 -a 10 -x {0.1 1073741824.0 459 ------- null}
r -t 2.26585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
+ -t 2.26585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
- -t 2.26585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
h -t 2.26585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
- -t 2.26585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
h -t 2.26585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
r -t 2.26598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
+ -t 2.26598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
- -t 2.26598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
h -t 2.26598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
- -t 2.26598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
h -t 2.26598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
+ -t 2.26611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
- -t 2.26611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
h -t 2.26611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
- -t 2.26624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
h -t 2.26624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
r -t 2.26947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1147 -a 10 -x {0.1 1073741824.0 460 ------- null}
r -t 2.26960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
+ -t 2.26960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
- -t 2.26960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
h -t 2.26960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
- -t 2.26960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
h -t 2.26960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
r -t 2.26973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
+ -t 2.26973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
- -t 2.26973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
h -t 2.26973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
- -t 2.26973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
h -t 2.26973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.26986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
+ -t 2.26986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
- -t 2.26986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
h -t 2.26986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.26999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
- -t 2.26999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
h -t 2.26999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.27322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
r -t 2.27322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1149 -a 10 -x {0.1 1073741824.0 461 ------- null}
r -t 2.27335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
+ -t 2.27335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
- -t 2.27335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
h -t 2.27335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.27335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
- -t 2.27335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
h -t 2.27335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.27335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
r -t 2.27348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
+ -t 2.27348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
- -t 2.27348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
h -t 2.27348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.27348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
- -t 2.27348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
h -t 2.27348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.27361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
+ -t 2.27361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
- -t 2.27361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
h -t 2.27361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.27374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
- -t 2.27374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
h -t 2.27374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.27697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
r -t 2.27697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1151 -a 10 -x {0.1 1073741824.0 462 ------- null}
r -t 2.27710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
+ -t 2.27710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
- -t 2.27710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
h -t 2.27710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.27710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
- -t 2.27710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
h -t 2.27710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.27710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
r -t 2.27723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
+ -t 2.27723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
- -t 2.27723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
h -t 2.27723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.27723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
- -t 2.27723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
h -t 2.27723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.27736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
+ -t 2.27736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
- -t 2.27736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
h -t 2.27736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.27749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
- -t 2.27749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
h -t 2.27749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
r -t 2.28072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1153 -a 10 -x {0.1 1073741824.0 463 ------- null}
r -t 2.28085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
+ -t 2.28085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
- -t 2.28085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
h -t 2.28085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
- -t 2.28085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
h -t 2.28085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
r -t 2.28098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
+ -t 2.28098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
- -t 2.28098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
h -t 2.28098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
- -t 2.28098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
h -t 2.28098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
+ -t 2.28111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
- -t 2.28111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
h -t 2.28111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
- -t 2.28124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
h -t 2.28124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
r -t 2.28447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1155 -a 10 -x {0.1 1073741824.0 464 ------- null}
r -t 2.28460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
+ -t 2.28460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
- -t 2.28460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
h -t 2.28460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
- -t 2.28460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
h -t 2.28460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
r -t 2.28473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
+ -t 2.28473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
- -t 2.28473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
h -t 2.28473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
- -t 2.28473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
h -t 2.28473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
+ -t 2.28486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
- -t 2.28486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
h -t 2.28486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
- -t 2.28499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
h -t 2.28499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
r -t 2.28822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1157 -a 10 -x {0.1 1073741824.0 465 ------- null}
r -t 2.28835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
+ -t 2.28835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
- -t 2.28835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
h -t 2.28835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
- -t 2.28835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
h -t 2.28835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
r -t 2.28848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
+ -t 2.28848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
- -t 2.28848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
h -t 2.28848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
- -t 2.28848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
h -t 2.28848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.28861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
+ -t 2.28861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
- -t 2.28861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
h -t 2.28861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.28874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
- -t 2.28874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
h -t 2.28874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
r -t 2.29197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1159 -a 10 -x {0.1 1073741824.0 466 ------- null}
r -t 2.29210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
+ -t 2.29210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
- -t 2.29210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
h -t 2.29210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
- -t 2.29210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
h -t 2.29210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
r -t 2.29223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
+ -t 2.29223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
- -t 2.29223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
h -t 2.29223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
- -t 2.29223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
h -t 2.29223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
+ -t 2.29236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
- -t 2.29236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
h -t 2.29236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
- -t 2.29249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
h -t 2.29249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
r -t 2.29572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1161 -a 10 -x {0.1 1073741824.0 467 ------- null}
r -t 2.29585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
+ -t 2.29585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
- -t 2.29585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
h -t 2.29585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
- -t 2.29585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
h -t 2.29585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
r -t 2.29598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
+ -t 2.29598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
- -t 2.29598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
h -t 2.29598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
- -t 2.29598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
h -t 2.29598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
+ -t 2.29611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
- -t 2.29611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
h -t 2.29611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
- -t 2.29624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
h -t 2.29624999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
r -t 2.29947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1163 -a 10 -x {0.1 1073741824.0 468 ------- null}
r -t 2.29960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
+ -t 2.29960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
- -t 2.29960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
h -t 2.29960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
- -t 2.29960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
h -t 2.29960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
r -t 2.29973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
+ -t 2.29973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
- -t 2.29973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
h -t 2.29973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
- -t 2.29973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
h -t 2.29973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.29986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
+ -t 2.29986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
- -t 2.29986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
h -t 2.29986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.29999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
- -t 2.29999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
h -t 2.29999999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.30322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
r -t 2.30322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1165 -a 10 -x {0.1 1073741824.0 469 ------- null}
r -t 2.30335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
+ -t 2.30335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
- -t 2.30335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
h -t 2.30335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.30335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
- -t 2.30335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
h -t 2.30335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.30335999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
r -t 2.30348999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
+ -t 2.30348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
- -t 2.30348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
h -t 2.30348999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.30348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
- -t 2.30348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
h -t 2.30348999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.30361999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
+ -t 2.30361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
- -t 2.30361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
h -t 2.30361999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.30374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
- -t 2.30374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
h -t 2.30374999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.30697999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
r -t 2.30697999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1167 -a 10 -x {0.1 1073741824.0 470 ------- null}
r -t 2.30710999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
+ -t 2.30710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
- -t 2.30710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
h -t 2.30710999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.30710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
- -t 2.30710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
h -t 2.30710999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.30710999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
r -t 2.30723999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
+ -t 2.30723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
- -t 2.30723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
h -t 2.30723999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.30723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
- -t 2.30723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
h -t 2.30723999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.30736999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
+ -t 2.30736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
- -t 2.30736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
h -t 2.30736999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.30749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
- -t 2.30749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
h -t 2.30749999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31072999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
r -t 2.31072999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1169 -a 10 -x {0.1 1073741824.0 471 ------- null}
r -t 2.31085999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
+ -t 2.31085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
- -t 2.31085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
h -t 2.31085999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
- -t 2.31085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
h -t 2.31085999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31085999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
r -t 2.31098999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
+ -t 2.31098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
- -t 2.31098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
h -t 2.31098999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
- -t 2.31098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
h -t 2.31098999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31111999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
+ -t 2.31111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
- -t 2.31111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
h -t 2.31111999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 483 ------- null}
- -t 2.31124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 483 ------- null}
h -t 2.31124999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31447999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
r -t 2.31447999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1171 -a 10 -x {0.1 1073741824.0 472 ------- null}
r -t 2.31460999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
+ -t 2.31460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
- -t 2.31460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
h -t 2.31460999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
- -t 2.31460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
h -t 2.31460999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31460999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
r -t 2.31473999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
+ -t 2.31473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
- -t 2.31473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
h -t 2.31473999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
- -t 2.31473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
h -t 2.31473999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31486999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
+ -t 2.31486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
- -t 2.31486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
h -t 2.31486999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 484 ------- null}
- -t 2.31499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 484 ------- null}
h -t 2.31499999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31822999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
r -t 2.31822999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1173 -a 10 -x {0.1 1073741824.0 473 ------- null}
r -t 2.31835999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
+ -t 2.31835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
- -t 2.31835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
h -t 2.31835999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
- -t 2.31835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
h -t 2.31835999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31835999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
r -t 2.31848999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
+ -t 2.31848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
- -t 2.31848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
h -t 2.31848999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
- -t 2.31848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
h -t 2.31848999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.31861999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
+ -t 2.31861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
- -t 2.31861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
h -t 2.31861999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.31874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 485 ------- null}
- -t 2.31874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 485 ------- null}
h -t 2.31874999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32197999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
r -t 2.32197999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1175 -a 10 -x {0.1 1073741824.0 474 ------- null}
r -t 2.32210999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
+ -t 2.32210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
- -t 2.32210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
h -t 2.32210999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
- -t 2.32210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
h -t 2.32210999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32210999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
r -t 2.32223999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
+ -t 2.32223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
- -t 2.32223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
h -t 2.32223999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
- -t 2.32223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
h -t 2.32223999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32236999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 483 ------- null}
+ -t 2.32236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 483 ------- null}
- -t 2.32236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 483 ------- null}
h -t 2.32236999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1193 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1199 -a 10 -x {0.1 1073741824.0 486 ------- null}
- -t 2.32249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1199 -a 10 -x {0.1 1073741824.0 486 ------- null}
h -t 2.32249999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1199 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32572999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
r -t 2.32572999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1177 -a 10 -x {0.1 1073741824.0 475 ------- null}
r -t 2.32585999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
+ -t 2.32585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
- -t 2.32585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
h -t 2.32585999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
- -t 2.32585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
h -t 2.32585999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32585999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1183 -a 10 -x {0.1 1073741824.0 478 ------- null}
r -t 2.32598999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
+ -t 2.32598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
- -t 2.32598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
h -t 2.32598999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
- -t 2.32598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 481 ------- null}
h -t 2.32598999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1189 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32611999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 484 ------- null}
+ -t 2.32611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 484 ------- null}
- -t 2.32611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 484 ------- null}
h -t 2.32611999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1195 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1201 -a 10 -x {0.1 1073741824.0 487 ------- null}
- -t 2.32625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1201 -a 10 -x {0.1 1073741824.0 487 ------- null}
h -t 2.32625 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1201 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32947999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
r -t 2.32947999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1179 -a 10 -x {0.1 1073741824.0 476 ------- null}
r -t 2.32960999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
+ -t 2.32960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
- -t 2.32960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
h -t 2.32960999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
- -t 2.32960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
h -t 2.32960999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32960999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1185 -a 10 -x {0.1 1073741824.0 479 ------- null}
r -t 2.32973999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
+ -t 2.32973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
- -t 2.32973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
h -t 2.32973999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.32973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
- -t 2.32973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 482 ------- null}
h -t 2.32973999999999 -s 3 -d 7 -p cbr -e 210 -c 10 -i 1191 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.32986999999999 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 485 ------- null}
+ -t 2.32986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 485 ------- null}
- -t 2.32986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 485 ------- null}
h -t 2.32986999999999 -s 2 -d 3 -p cbr -e 210 -c 10 -i 1197 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.33 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1203 -a 10 -x {0.1 1073741824.0 488 ------- null}
- -t 2.33 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1203 -a 10 -x {0.1 1073741824.0 488 ------- null}
h -t 2.33 -s 0 -d 2 -p cbr -e 210 -c 10 -i 1203 -a 10 -x {0.1 1073741824.0 -1 ------- null}
r -t 2.33322999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
r -t 2.33322999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1181 -a 10 -x {0.1 1073741824.0 477 ------- null}
r -t 2.33335999999999 -s 3 -d 4 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
+ -t 2.33335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
- -t 2.33335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
h -t 2.33335999999999 -s 4 -d 5 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 -1 ------- null}
+ -t 2.33335999999999 -s 4 -d 6 -p cbr -e 210 -c 10 -i 1187 -a 10 -x {0.1 1073741824.0 480 ------- null}
- -t 2.33335999999999 -s
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment