[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ns] Problems with source-routing, please help!!



Hi all!!

I'm implementing my own qos-routing module in ns-2.1b8 and I need source
routing in order to get the flows go the chosen path. If have tried to
make it work, but it just doesn't seem to do so. The problem is that
when i run the simulation, there comes an error message:

create session 1 0 - 4 successful (this is ok!!)
create session 2 1 - 4 successful (this is ok, next comes the error!)
ns: _o46 unknown-flow 1 4 2:
    (_o46 cmd line 1)
    invoked from within
"_o46 cmd unknown-flow 1 4 2"
    invoked from within
"catch "$self cmd $args" ret"
    (procedure "_o46" line 2)
    (SplitObject unknown line2)
    invoked from within
"_o46 unknown-flow 1 4 2"

I have included my script below, so that you can look at, what is going
on. The topology I use in my own  simulations is much bigger and there
are more flows. So I have made this simple script/topology to
demonstrate the problem. It seem, that this error occurs when a flow
have to travel over more than two links but sometimes it works also over
three or more links!! For example, if I remember right, if you change
the route of flow number one(fid=1) so that it travels route 0->1->4, it
works just fine and there are no error messages!

The problem might also be in CBQ or in the admission control I'm
using??? I need admission control in my own qos-routing-module so I also
included it here as a possible error-source. I also use it in setting up
CBQ parameters.

So I'm in a little trouble right now and I would be very pleased to have
some help with this problem. I'm doing this qos-thing as my work so it
would be nice to get forward!:)

ps. I also included the nam-file as attachment. If you run it, you can
see, that something goes wrong when the flow number 2 reaches node
zero(both the flows stop!!).

Any help is appreciated, thank you.

Juha Villanen
Helsinki University Of Technology
-----------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------
ADC set bandwidth_ 0

#  this example creates a five node topology:
#
#                
#             
#              /--------------n1-------------\
#             /                               \
#            /                                 \
#           /                                   \
#         n0------------------n2-----------------n4
#           \                                   /
#            \                                 /
#             \---------------n3--------------/
#
#
#  this script uses source-routing(which doesn't seem to work, as I
explained in my 
#  mail!) and creates the following flows:
#
#  1. a 2Mb flow between n0 and n4, with fid 1(which is set up to go
route n0->n3->n4)
#  1. a 5Mb flow between n1 and n4, with fid 2(which is set up to go
route n1->n0->n3->n4)
#
#  ...and as I told, there comes an error when the last flow (fid=2)
starts. Actually
#  the error comes after command: $ns at 3.0 "$cbr4 start". When you
look at the
#  nam-simulation, you can see that after the packets of flow five reach
the node zero,
#  every traffic coming from the node zero stops...this is the problem,
in which I
#  would very much need help!!! As I said, my own simulation, in which I
need
#  source-routing, have much bigger topology and more flows, so I have
just made this
#  simple topology to demonstrate this error! In my own topology it
seems, that this
#  error comes when a flow have to travel over three links(but sometimes
it works also!)!
#  I tested this same topology with the flow one going route
n0->n1->n4...and it worked 
#  fine!! I would be very glad to have some help with this problem,
thank you!


# the following procedure setups cbqlink between "n1" and "n2" with
# bandwith "bw" delay "delay". it also setups a default cbqclass for 
# normal traffic without bandwith requirements (with fid 0) with 
# "default" percent of bandwith available to it. it also creates an
ADC/param
# instances for the link
Simulator instproc duplex-cbq-link { n1 n2 bw delay default} {

    # create cbq link
    $self duplex-link $n1 $n2 $bw $delay CBQ/WRR

    set link12 [$self link $n1 $n2]
    set link21 [$self link $n2 $n1]

    # root class
    $link12 set topclass [new CBQClass]
    [$link12 set topclass] setparams none 0 1 auto 8 2 0
    $link12 insert [$link12 set topclass]

    $link21 set topclass [new CBQClass]
    [$link21 set topclass] setparams none 0 1 auto 8 2 0
    $link21 insert [$link21 set topclass]

    # class for fid 0 traffic
    set defclass [new CBQClass]
    $defclass setparams [$link12 set topclass] true $default auto 1 1 0
    set queue1 [new Queue/DropTail]
    $queue1 set limit_ 20
    $defclass install-queue $queue1

    $link12 insert $defclass
    $link12 bind $defclass 0

    set defclass [new CBQClass]
    $defclass setparams [$link21 set topclass] true $default auto 1 1 0
    set queue1 [new Queue/DropTail]
    $queue1 set limit_ 20
    $defclass install-queue $queue1

    $link21 insert $defclass
    $link21 bind $defclass 0

     # admission control module
    $link12 set paramadc_ [new ADC/Param]
    $link21 set paramadc_ [new ADC/Param]
    [$link12 set paramadc_] set bandwidth_ $bw
    [$link21 set paramadc_] set bandwidth_ $bw
}



# creates a flow(with flow-id: $fid and bandwith: $bw) between $self and
$dest.
# The flow is put to go route: $eroute1.
Node instproc create-session {dest eroute1 bw fid agnt} {
    set sim [Simulator instance]
    $self instvar src_agent_
    set node1 $self

    #separating the nodes in a route to a list and setting the cbq
parameters!!
    set eroute2 [split $eroute1 "/"]
    foreach i $eroute2 {
	set node2 [$sim get-node-by-id $i]
	set link [$sim link $node1 $node2]
        
        #getting the adc in a link
        set adc [$link set paramadc_]

	set cbqclass_ [new CBQClass]
	set cbqqueue_ [new Queue/DropTail]
	$cbqqueue_ set limit_ 20
	$cbqclass_ install-queue $cbqqueue_
	set ratio [expr [bw_parse $bw]/[bw_parse [$adc set bandwidth_]]]
	$cbqclass_ setparams [$link set topclass] true $ratio auto 1 1 0
	$link insert $cbqclass_
	$link bind $cbqclass_ $fid
	set node1 $node2
    }

    $agnt set class_ $fid
    $agnt target $src_agent_
   
    #installing the connection to go route $eroute1!
    $src_agent_ install_connection $fid [$self id] [$dest id] [$self id]
$eroute1
    
    puts "create session $fid [$self id] - [$dest id] successful"
    return 1
}


#---------------------------------------------------------------------------------------
#---------------------------------------------------------------------------------------

set ns [new Simulator]

#enable source routing
$ns src_rting 1

$ns color 1 red
$ns color 2 green

set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]
set n4 [$ns node]

set f [open out.tr w]
$ns trace-all $f
set nf [open src-route.nam w]
$ns namtrace-all $nf

#setting the links
$ns duplex-cbq-link $n0 $n1 8Mb 2ms .1
$ns duplex-cbq-link $n1 $n4 4Mb 2ms .1
$ns duplex-cbq-link $n0 $n2 5Mb 2ms .1
$ns duplex-cbq-link $n2 $n4 4Mb 2ms .1
$ns duplex-cbq-link $n0 $n3 5Mb 2ms .1
$ns duplex-cbq-link $n3 $n4 5Mb 2ms .1

#setting nam orientation
$ns duplex-link-op $n0 $n1 orient right-up
$ns duplex-link-op $n0 $n2 orient right
$ns duplex-link-op $n1 $n4 orient right-down
$ns duplex-link-op $n2 $n4 orient right
$ns duplex-link-op $n0 $n3 orient right-down
$ns duplex-link-op $n3 $n4 orient right-up

#create traffic sources

set udp1 [new Agent/UDP]
$ns attach-agent $n0 $udp1
set cbr1 [new Application/Traffic/CBR]
$cbr1 set rate_ 2Mb
$cbr1 attach-agent $udp1

set udp2 [new Agent/UDP]
$ns attach-agent $n1 $udp2
set cbr2 [new Application/Traffic/CBR]
$cbr2 set rate_ 5Mb
$cbr2 attach-agent $udp2

set null0 [new Agent/Null]
$ns attach-agent $n4 $null0

$ns connect $udp1 $null0
$ns connect $udp2 $null0

proc finish {} {
	global ns f nf
	$ns flush-trace
	close $f
	close $nf
	exit 0
}

# Here we set the explicit routes for each flow. The node-numbers are
separated
# by "/". Later these characters will be cut of so that we have a list
of node-numbers.
set eroute1 "3/4"
set eroute2 "0/3/4"


$ns at 0.3 "$n0 create-session $n4 $eroute1 2Mb 1 $udp1"
$ns at 0.4 "$cbr1 start"

$ns at 0.5 "$n1 create-session $n4 $eroute2 5Mb 2 $udp2"
# After this "start"-command, the error occurs!!!
$ns at 0.6 "$cbr2 start"

$ns at 0.8 "finish"

$ns run

source-routing.tcl

V -t * -v 1.0a5 -a 0
A -t * -n 1 -p 0 -o 0xffffffff -c 31 -a 1
A -t * -h 1 -m 2147483647 -s 0
c -t * -i 1 -n red
c -t * -i 2 -n green
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 black -i black
n -t * -a 1 -s 1 -S UP -v circle -c black -i black
n -t * -a 2 -s 2 -S UP -v circle -c black -i black
n -t * -a 3 -s 3 -S UP -v circle -c black -i black
l -t * -s 0 -d 1 -S UP -r 8000000 -D 0.002 -c black -o right-up
l -t * -s 0 -d 2 -S UP -r 5000000 -D 0.002 -c black -o right
l -t * -s 1 -d 4 -S UP -r 4000000 -D 0.002 -c black -o right-down
l -t * -s 2 -d 4 -S UP -r 4000000 -D 0.002 -c black -o right
l -t * -s 0 -d 3 -S UP -r 5000000 -D 0.002 -c black -o right-down
l -t * -s 3 -d 4 -S UP -r 5000000 -D 0.002 -c black -o right-up
+ -t 0.4 -s 0 -d 3 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 0 ------- null}
- -t 0.4 -s 0 -d 3 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 0 ------- null}
h -t 0.4 -s 0 -d 3 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40084 -s 0 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 1 ------- null}
- -t 0.40084 -s 0 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 1 ------- null}
h -t 0.40084 -s 0 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40168 -s 0 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 2 ------- null}
- -t 0.40168 -s 0 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 2 ------- null}
h -t 0.40168 -s 0 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.402336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 0 ------- null}
+ -t 0.402336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 0 ------- null}
- -t 0.402336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 0 ------- null}
h -t 0.402336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40252 -s 0 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 3 ------- null}
- -t 0.40252 -s 0 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 3 ------- null}
h -t 0.40252 -s 0 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.403176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 1 ------- null}
+ -t 0.403176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 1 ------- null}
- -t 0.403176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 1 ------- null}
h -t 0.403176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 4 ------- null}
- -t 0.40336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 4 ------- null}
h -t 0.40336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.404016 -s 0 -d 3 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 2 ------- null}
+ -t 0.404016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 2 ------- null}
- -t 0.404016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 2 ------- null}
h -t 0.404016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4042 -s 0 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 5 ------- null}
- -t 0.4042 -s 0 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 5 ------- null}
h -t 0.4042 -s 0 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.404672 -s 3 -d 4 -p cbr -e 210 -c 1 -i 0 -a 1 -x {0.1 4.1 0 ------- null}
r -t 0.404856 -s 0 -d 3 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 3 ------- null}
+ -t 0.404856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 3 ------- null}
- -t 0.404856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 3 ------- null}
h -t 0.404856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40504 -s 0 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 6 ------- null}
- -t 0.40504 -s 0 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 6 ------- null}
h -t 0.40504 -s 0 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.405512 -s 3 -d 4 -p cbr -e 210 -c 1 -i 1 -a 1 -x {0.1 4.1 1 ------- null}
r -t 0.405696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 4 ------- null}
+ -t 0.405696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 4 ------- null}
- -t 0.405696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 4 ------- null}
h -t 0.405696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40588 -s 0 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 7 ------- null}
- -t 0.40588 -s 0 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 7 ------- null}
h -t 0.40588 -s 0 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.406352 -s 3 -d 4 -p cbr -e 210 -c 1 -i 2 -a 1 -x {0.1 4.1 2 ------- null}
r -t 0.406536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 5 ------- null}
+ -t 0.406536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 5 ------- null}
- -t 0.406536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 5 ------- null}
h -t 0.406536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40672 -s 0 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 8 ------- null}
- -t 0.40672 -s 0 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 8 ------- null}
h -t 0.40672 -s 0 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.407192 -s 3 -d 4 -p cbr -e 210 -c 1 -i 3 -a 1 -x {0.1 4.1 3 ------- null}
r -t 0.407376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 6 ------- null}
+ -t 0.407376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 6 ------- null}
- -t 0.407376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 6 ------- null}
h -t 0.407376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40756 -s 0 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 9 ------- null}
- -t 0.40756 -s 0 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 9 ------- null}
h -t 0.40756 -s 0 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.408032 -s 3 -d 4 -p cbr -e 210 -c 1 -i 4 -a 1 -x {0.1 4.1 4 ------- null}
r -t 0.408216 -s 0 -d 3 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 7 ------- null}
+ -t 0.408216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 7 ------- null}
- -t 0.408216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 7 ------- null}
h -t 0.408216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4084 -s 0 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 10 ------- null}
- -t 0.4084 -s 0 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 10 ------- null}
h -t 0.4084 -s 0 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.408872 -s 3 -d 4 -p cbr -e 210 -c 1 -i 5 -a 1 -x {0.1 4.1 5 ------- null}
r -t 0.409056 -s 0 -d 3 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 8 ------- null}
+ -t 0.409056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 8 ------- null}
- -t 0.409056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 8 ------- null}
h -t 0.409056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.40924 -s 0 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 11 ------- null}
- -t 0.40924 -s 0 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 11 ------- null}
h -t 0.40924 -s 0 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.409712 -s 3 -d 4 -p cbr -e 210 -c 1 -i 6 -a 1 -x {0.1 4.1 6 ------- null}
r -t 0.409896 -s 0 -d 3 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 9 ------- null}
+ -t 0.409896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 9 ------- null}
- -t 0.409896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 9 ------- null}
h -t 0.409896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41008 -s 0 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 12 ------- null}
- -t 0.41008 -s 0 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 12 ------- null}
h -t 0.41008 -s 0 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.410552 -s 3 -d 4 -p cbr -e 210 -c 1 -i 7 -a 1 -x {0.1 4.1 7 ------- null}
r -t 0.410736 -s 0 -d 3 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 10 ------- null}
+ -t 0.410736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 10 ------- null}
- -t 0.410736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 10 ------- null}
h -t 0.410736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41092 -s 0 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 13 ------- null}
- -t 0.41092 -s 0 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 13 ------- null}
h -t 0.41092 -s 0 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.411392 -s 3 -d 4 -p cbr -e 210 -c 1 -i 8 -a 1 -x {0.1 4.1 8 ------- null}
r -t 0.411576 -s 0 -d 3 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 11 ------- null}
+ -t 0.411576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 11 ------- null}
- -t 0.411576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 11 ------- null}
h -t 0.411576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 14 ------- null}
- -t 0.41176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 14 ------- null}
h -t 0.41176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.412232 -s 3 -d 4 -p cbr -e 210 -c 1 -i 9 -a 1 -x {0.1 4.1 9 ------- null}
r -t 0.412416 -s 0 -d 3 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 12 ------- null}
+ -t 0.412416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 12 ------- null}
- -t 0.412416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 12 ------- null}
h -t 0.412416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4126 -s 0 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 15 ------- null}
- -t 0.4126 -s 0 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 15 ------- null}
h -t 0.4126 -s 0 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.413072 -s 3 -d 4 -p cbr -e 210 -c 1 -i 10 -a 1 -x {0.1 4.1 10 ------- null}
r -t 0.413256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 13 ------- null}
+ -t 0.413256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 13 ------- null}
- -t 0.413256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 13 ------- null}
h -t 0.413256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41344 -s 0 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 16 ------- null}
- -t 0.41344 -s 0 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 16 ------- null}
h -t 0.41344 -s 0 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.413912 -s 3 -d 4 -p cbr -e 210 -c 1 -i 11 -a 1 -x {0.1 4.1 11 ------- null}
r -t 0.414096 -s 0 -d 3 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 14 ------- null}
+ -t 0.414096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 14 ------- null}
- -t 0.414096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 14 ------- null}
h -t 0.414096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41428 -s 0 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 17 ------- null}
- -t 0.41428 -s 0 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 17 ------- null}
h -t 0.41428 -s 0 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.414752 -s 3 -d 4 -p cbr -e 210 -c 1 -i 12 -a 1 -x {0.1 4.1 12 ------- null}
r -t 0.414936 -s 0 -d 3 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 15 ------- null}
+ -t 0.414936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 15 ------- null}
- -t 0.414936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 15 ------- null}
h -t 0.414936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41512 -s 0 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 18 ------- null}
- -t 0.41512 -s 0 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 18 ------- null}
h -t 0.41512 -s 0 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.415592 -s 3 -d 4 -p cbr -e 210 -c 1 -i 13 -a 1 -x {0.1 4.1 13 ------- null}
r -t 0.415776 -s 0 -d 3 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 16 ------- null}
+ -t 0.415776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 16 ------- null}
- -t 0.415776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 16 ------- null}
h -t 0.415776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41596 -s 0 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 19 ------- null}
- -t 0.41596 -s 0 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 19 ------- null}
h -t 0.41596 -s 0 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.416432 -s 3 -d 4 -p cbr -e 210 -c 1 -i 14 -a 1 -x {0.1 4.1 14 ------- null}
r -t 0.416616 -s 0 -d 3 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 17 ------- null}
+ -t 0.416616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 17 ------- null}
- -t 0.416616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 17 ------- null}
h -t 0.416616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4168 -s 0 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 20 ------- null}
- -t 0.4168 -s 0 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 20 ------- null}
h -t 0.4168 -s 0 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.417272 -s 3 -d 4 -p cbr -e 210 -c 1 -i 15 -a 1 -x {0.1 4.1 15 ------- null}
r -t 0.417456 -s 0 -d 3 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 18 ------- null}
+ -t 0.417456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 18 ------- null}
- -t 0.417456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 18 ------- null}
h -t 0.417456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41764 -s 0 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 21 ------- null}
- -t 0.41764 -s 0 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 21 ------- null}
h -t 0.41764 -s 0 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.418112 -s 3 -d 4 -p cbr -e 210 -c 1 -i 16 -a 1 -x {0.1 4.1 16 ------- null}
r -t 0.418296 -s 0 -d 3 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 19 ------- null}
+ -t 0.418296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 19 ------- null}
- -t 0.418296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 19 ------- null}
h -t 0.418296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41848 -s 0 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 22 ------- null}
- -t 0.41848 -s 0 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 22 ------- null}
h -t 0.41848 -s 0 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.418952 -s 3 -d 4 -p cbr -e 210 -c 1 -i 17 -a 1 -x {0.1 4.1 17 ------- null}
r -t 0.419136 -s 0 -d 3 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 20 ------- null}
+ -t 0.419136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 20 ------- null}
- -t 0.419136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 20 ------- null}
h -t 0.419136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.41932 -s 0 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 23 ------- null}
- -t 0.41932 -s 0 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 23 ------- null}
h -t 0.41932 -s 0 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.419792 -s 3 -d 4 -p cbr -e 210 -c 1 -i 18 -a 1 -x {0.1 4.1 18 ------- null}
r -t 0.419976 -s 0 -d 3 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 21 ------- null}
+ -t 0.419976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 21 ------- null}
- -t 0.419976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 21 ------- null}
h -t 0.419976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42016 -s 0 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 24 ------- null}
- -t 0.42016 -s 0 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 24 ------- null}
h -t 0.42016 -s 0 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.420632 -s 3 -d 4 -p cbr -e 210 -c 1 -i 19 -a 1 -x {0.1 4.1 19 ------- null}
r -t 0.420816 -s 0 -d 3 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 22 ------- null}
+ -t 0.420816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 22 ------- null}
- -t 0.420816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 22 ------- null}
h -t 0.420816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.421 -s 0 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 25 ------- null}
- -t 0.421 -s 0 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 25 ------- null}
h -t 0.421 -s 0 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.421472 -s 3 -d 4 -p cbr -e 210 -c 1 -i 20 -a 1 -x {0.1 4.1 20 ------- null}
r -t 0.421656 -s 0 -d 3 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 23 ------- null}
+ -t 0.421656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 23 ------- null}
- -t 0.421656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 23 ------- null}
h -t 0.421656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42184 -s 0 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 26 ------- null}
- -t 0.42184 -s 0 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 26 ------- null}
h -t 0.42184 -s 0 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.422312 -s 3 -d 4 -p cbr -e 210 -c 1 -i 21 -a 1 -x {0.1 4.1 21 ------- null}
r -t 0.422496 -s 0 -d 3 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 24 ------- null}
+ -t 0.422496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 24 ------- null}
- -t 0.422496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 24 ------- null}
h -t 0.422496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42268 -s 0 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 27 ------- null}
- -t 0.42268 -s 0 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 27 ------- null}
h -t 0.42268 -s 0 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.423152 -s 3 -d 4 -p cbr -e 210 -c 1 -i 22 -a 1 -x {0.1 4.1 22 ------- null}
r -t 0.423336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 25 ------- null}
+ -t 0.423336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 25 ------- null}
- -t 0.423336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 25 ------- null}
h -t 0.423336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42352 -s 0 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 28 ------- null}
- -t 0.42352 -s 0 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 28 ------- null}
h -t 0.42352 -s 0 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.423992 -s 3 -d 4 -p cbr -e 210 -c 1 -i 23 -a 1 -x {0.1 4.1 23 ------- null}
r -t 0.424176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 26 ------- null}
+ -t 0.424176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 26 ------- null}
- -t 0.424176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 26 ------- null}
h -t 0.424176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42436 -s 0 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 29 ------- null}
- -t 0.42436 -s 0 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 29 ------- null}
h -t 0.42436 -s 0 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.424832 -s 3 -d 4 -p cbr -e 210 -c 1 -i 24 -a 1 -x {0.1 4.1 24 ------- null}
r -t 0.425016 -s 0 -d 3 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 27 ------- null}
+ -t 0.425016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 27 ------- null}
- -t 0.425016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 27 ------- null}
h -t 0.425016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4252 -s 0 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 30 ------- null}
- -t 0.4252 -s 0 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 30 ------- null}
h -t 0.4252 -s 0 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.425672 -s 3 -d 4 -p cbr -e 210 -c 1 -i 25 -a 1 -x {0.1 4.1 25 ------- null}
r -t 0.425856 -s 0 -d 3 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 28 ------- null}
+ -t 0.425856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 28 ------- null}
- -t 0.425856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 28 ------- null}
h -t 0.425856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42604 -s 0 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 31 ------- null}
- -t 0.42604 -s 0 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 31 ------- null}
h -t 0.42604 -s 0 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.426512 -s 3 -d 4 -p cbr -e 210 -c 1 -i 26 -a 1 -x {0.1 4.1 26 ------- null}
r -t 0.426696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 29 ------- null}
+ -t 0.426696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 29 ------- null}
- -t 0.426696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 29 ------- null}
h -t 0.426696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42688 -s 0 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 32 ------- null}
- -t 0.42688 -s 0 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 32 ------- null}
h -t 0.42688 -s 0 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.427352 -s 3 -d 4 -p cbr -e 210 -c 1 -i 27 -a 1 -x {0.1 4.1 27 ------- null}
r -t 0.427536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 30 ------- null}
+ -t 0.427536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 30 ------- null}
- -t 0.427536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 30 ------- null}
h -t 0.427536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42772 -s 0 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 33 ------- null}
- -t 0.42772 -s 0 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 33 ------- null}
h -t 0.42772 -s 0 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.428192 -s 3 -d 4 -p cbr -e 210 -c 1 -i 28 -a 1 -x {0.1 4.1 28 ------- null}
r -t 0.428376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 31 ------- null}
+ -t 0.428376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 31 ------- null}
- -t 0.428376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 31 ------- null}
h -t 0.428376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.42856 -s 0 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 34 ------- null}
- -t 0.42856 -s 0 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 34 ------- null}
h -t 0.42856 -s 0 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.429032 -s 3 -d 4 -p cbr -e 210 -c 1 -i 29 -a 1 -x {0.1 4.1 29 ------- null}
r -t 0.429216 -s 0 -d 3 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 32 ------- null}
+ -t 0.429216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 32 ------- null}
- -t 0.429216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 32 ------- null}
h -t 0.429216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4294 -s 0 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 35 ------- null}
- -t 0.4294 -s 0 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 35 ------- null}
h -t 0.4294 -s 0 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.429872 -s 3 -d 4 -p cbr -e 210 -c 1 -i 30 -a 1 -x {0.1 4.1 30 ------- null}
r -t 0.430056 -s 0 -d 3 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 33 ------- null}
+ -t 0.430056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 33 ------- null}
- -t 0.430056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 33 ------- null}
h -t 0.430056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43024 -s 0 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 36 ------- null}
- -t 0.43024 -s 0 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 36 ------- null}
h -t 0.43024 -s 0 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.430712 -s 3 -d 4 -p cbr -e 210 -c 1 -i 31 -a 1 -x {0.1 4.1 31 ------- null}
r -t 0.430896 -s 0 -d 3 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 34 ------- null}
+ -t 0.430896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 34 ------- null}
- -t 0.430896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 34 ------- null}
h -t 0.430896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43108 -s 0 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 37 ------- null}
- -t 0.43108 -s 0 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 37 ------- null}
h -t 0.43108 -s 0 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.431552 -s 3 -d 4 -p cbr -e 210 -c 1 -i 32 -a 1 -x {0.1 4.1 32 ------- null}
r -t 0.431736 -s 0 -d 3 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 35 ------- null}
+ -t 0.431736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 35 ------- null}
- -t 0.431736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 35 ------- null}
h -t 0.431736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43192 -s 0 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 38 ------- null}
- -t 0.43192 -s 0 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 38 ------- null}
h -t 0.43192 -s 0 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.432392 -s 3 -d 4 -p cbr -e 210 -c 1 -i 33 -a 1 -x {0.1 4.1 33 ------- null}
r -t 0.432576 -s 0 -d 3 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 36 ------- null}
+ -t 0.432576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 36 ------- null}
- -t 0.432576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 36 ------- null}
h -t 0.432576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43276 -s 0 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 39 ------- null}
- -t 0.43276 -s 0 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 39 ------- null}
h -t 0.43276 -s 0 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.433232 -s 3 -d 4 -p cbr -e 210 -c 1 -i 34 -a 1 -x {0.1 4.1 34 ------- null}
r -t 0.433416 -s 0 -d 3 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 37 ------- null}
+ -t 0.433416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 37 ------- null}
- -t 0.433416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 37 ------- null}
h -t 0.433416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 40 ------- null}
- -t 0.4336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 40 ------- null}
h -t 0.4336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.434072 -s 3 -d 4 -p cbr -e 210 -c 1 -i 35 -a 1 -x {0.1 4.1 35 ------- null}
r -t 0.434256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 38 ------- null}
+ -t 0.434256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 38 ------- null}
- -t 0.434256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 38 ------- null}
h -t 0.434256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43444 -s 0 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 41 ------- null}
- -t 0.43444 -s 0 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 41 ------- null}
h -t 0.43444 -s 0 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.434912 -s 3 -d 4 -p cbr -e 210 -c 1 -i 36 -a 1 -x {0.1 4.1 36 ------- null}
r -t 0.435096 -s 0 -d 3 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 39 ------- null}
+ -t 0.435096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 39 ------- null}
- -t 0.435096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 39 ------- null}
h -t 0.435096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43528 -s 0 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 42 ------- null}
- -t 0.43528 -s 0 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 42 ------- null}
h -t 0.43528 -s 0 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.435752 -s 3 -d 4 -p cbr -e 210 -c 1 -i 37 -a 1 -x {0.1 4.1 37 ------- null}
r -t 0.435936 -s 0 -d 3 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 40 ------- null}
+ -t 0.435936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 40 ------- null}
- -t 0.435936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 40 ------- null}
h -t 0.435936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43612 -s 0 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 43 ------- null}
- -t 0.43612 -s 0 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 43 ------- null}
h -t 0.43612 -s 0 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.436592 -s 3 -d 4 -p cbr -e 210 -c 1 -i 38 -a 1 -x {0.1 4.1 38 ------- null}
r -t 0.436776 -s 0 -d 3 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 41 ------- null}
+ -t 0.436776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 41 ------- null}
- -t 0.436776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 41 ------- null}
h -t 0.436776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 44 ------- null}
- -t 0.43696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 44 ------- null}
h -t 0.43696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.437432 -s 3 -d 4 -p cbr -e 210 -c 1 -i 39 -a 1 -x {0.1 4.1 39 ------- null}
r -t 0.437616 -s 0 -d 3 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 42 ------- null}
+ -t 0.437616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 42 ------- null}
- -t 0.437616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 42 ------- null}
h -t 0.437616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4378 -s 0 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 45 ------- null}
- -t 0.4378 -s 0 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 45 ------- null}
h -t 0.4378 -s 0 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.438272 -s 3 -d 4 -p cbr -e 210 -c 1 -i 40 -a 1 -x {0.1 4.1 40 ------- null}
r -t 0.438456 -s 0 -d 3 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 43 ------- null}
+ -t 0.438456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 43 ------- null}
- -t 0.438456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 43 ------- null}
h -t 0.438456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43864 -s 0 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 46 ------- null}
- -t 0.43864 -s 0 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 46 ------- null}
h -t 0.43864 -s 0 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.439112 -s 3 -d 4 -p cbr -e 210 -c 1 -i 41 -a 1 -x {0.1 4.1 41 ------- null}
r -t 0.439296 -s 0 -d 3 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 44 ------- null}
+ -t 0.439296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 44 ------- null}
- -t 0.439296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 44 ------- null}
h -t 0.439296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.43948 -s 0 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 47 ------- null}
- -t 0.43948 -s 0 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 47 ------- null}
h -t 0.43948 -s 0 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.439952 -s 3 -d 4 -p cbr -e 210 -c 1 -i 42 -a 1 -x {0.1 4.1 42 ------- null}
r -t 0.440136 -s 0 -d 3 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 45 ------- null}
+ -t 0.440136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 45 ------- null}
- -t 0.440136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 45 ------- null}
h -t 0.440136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44032 -s 0 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 48 ------- null}
- -t 0.44032 -s 0 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 48 ------- null}
h -t 0.44032 -s 0 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.440792 -s 3 -d 4 -p cbr -e 210 -c 1 -i 43 -a 1 -x {0.1 4.1 43 ------- null}
r -t 0.440976 -s 0 -d 3 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 46 ------- null}
+ -t 0.440976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 46 ------- null}
- -t 0.440976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 46 ------- null}
h -t 0.440976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44116 -s 0 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 49 ------- null}
- -t 0.44116 -s 0 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 49 ------- null}
h -t 0.44116 -s 0 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.441632 -s 3 -d 4 -p cbr -e 210 -c 1 -i 44 -a 1 -x {0.1 4.1 44 ------- null}
r -t 0.441816 -s 0 -d 3 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 47 ------- null}
+ -t 0.441816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 47 ------- null}
- -t 0.441816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 47 ------- null}
h -t 0.441816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.442 -s 0 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 50 ------- null}
- -t 0.442 -s 0 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 50 ------- null}
h -t 0.442 -s 0 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.442472 -s 3 -d 4 -p cbr -e 210 -c 1 -i 45 -a 1 -x {0.1 4.1 45 ------- null}
r -t 0.442656 -s 0 -d 3 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 48 ------- null}
+ -t 0.442656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 48 ------- null}
- -t 0.442656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 48 ------- null}
h -t 0.442656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44284 -s 0 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 51 ------- null}
- -t 0.44284 -s 0 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 51 ------- null}
h -t 0.44284 -s 0 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.443312 -s 3 -d 4 -p cbr -e 210 -c 1 -i 46 -a 1 -x {0.1 4.1 46 ------- null}
r -t 0.443496 -s 0 -d 3 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 49 ------- null}
+ -t 0.443496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 49 ------- null}
- -t 0.443496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 49 ------- null}
h -t 0.443496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44368 -s 0 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 52 ------- null}
- -t 0.44368 -s 0 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 52 ------- null}
h -t 0.44368 -s 0 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.444152 -s 3 -d 4 -p cbr -e 210 -c 1 -i 47 -a 1 -x {0.1 4.1 47 ------- null}
r -t 0.444336 -s 0 -d 3 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 50 ------- null}
+ -t 0.444336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 50 ------- null}
- -t 0.444336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 50 ------- null}
h -t 0.444336 -s 3 -d 4 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44452 -s 0 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 53 ------- null}
- -t 0.44452 -s 0 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 53 ------- null}
h -t 0.44452 -s 0 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.444992 -s 3 -d 4 -p cbr -e 210 -c 1 -i 48 -a 1 -x {0.1 4.1 48 ------- null}
r -t 0.445176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 51 ------- null}
+ -t 0.445176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 51 ------- null}
- -t 0.445176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 51 ------- null}
h -t 0.445176 -s 3 -d 4 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 54 ------- null}
- -t 0.44536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 54 ------- null}
h -t 0.44536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.445832 -s 3 -d 4 -p cbr -e 210 -c 1 -i 49 -a 1 -x {0.1 4.1 49 ------- null}
r -t 0.446016 -s 0 -d 3 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 52 ------- null}
+ -t 0.446016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 52 ------- null}
- -t 0.446016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 52 ------- null}
h -t 0.446016 -s 3 -d 4 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4462 -s 0 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 55 ------- null}
- -t 0.4462 -s 0 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 55 ------- null}
h -t 0.4462 -s 0 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.446672 -s 3 -d 4 -p cbr -e 210 -c 1 -i 50 -a 1 -x {0.1 4.1 50 ------- null}
r -t 0.446856 -s 0 -d 3 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 53 ------- null}
+ -t 0.446856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 53 ------- null}
- -t 0.446856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 53 ------- null}
h -t 0.446856 -s 3 -d 4 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44704 -s 0 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 56 ------- null}
- -t 0.44704 -s 0 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 56 ------- null}
h -t 0.44704 -s 0 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.447512 -s 3 -d 4 -p cbr -e 210 -c 1 -i 51 -a 1 -x {0.1 4.1 51 ------- null}
r -t 0.447696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 54 ------- null}
+ -t 0.447696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 54 ------- null}
- -t 0.447696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 54 ------- null}
h -t 0.447696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44788 -s 0 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 57 ------- null}
- -t 0.44788 -s 0 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 57 ------- null}
h -t 0.44788 -s 0 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.448352 -s 3 -d 4 -p cbr -e 210 -c 1 -i 52 -a 1 -x {0.1 4.1 52 ------- null}
r -t 0.448536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 55 ------- null}
+ -t 0.448536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 55 ------- null}
- -t 0.448536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 55 ------- null}
h -t 0.448536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44872 -s 0 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 58 ------- null}
- -t 0.44872 -s 0 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 58 ------- null}
h -t 0.44872 -s 0 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.449192 -s 3 -d 4 -p cbr -e 210 -c 1 -i 53 -a 1 -x {0.1 4.1 53 ------- null}
r -t 0.449376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 56 ------- null}
+ -t 0.449376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 56 ------- null}
- -t 0.449376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 56 ------- null}
h -t 0.449376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.44956 -s 0 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 59 ------- null}
- -t 0.44956 -s 0 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 59 ------- null}
h -t 0.44956 -s 0 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.450032 -s 3 -d 4 -p cbr -e 210 -c 1 -i 54 -a 1 -x {0.1 4.1 54 ------- null}
r -t 0.450216 -s 0 -d 3 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 57 ------- null}
+ -t 0.450216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 57 ------- null}
- -t 0.450216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 57 ------- null}
h -t 0.450216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.4504 -s 0 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 60 ------- null}
- -t 0.4504 -s 0 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 60 ------- null}
h -t 0.4504 -s 0 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.450872 -s 3 -d 4 -p cbr -e 210 -c 1 -i 55 -a 1 -x {0.1 4.1 55 ------- null}
r -t 0.451056 -s 0 -d 3 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 58 ------- null}
+ -t 0.451056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 58 ------- null}
- -t 0.451056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 58 ------- null}
h -t 0.451056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.45124 -s 0 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 61 ------- null}
- -t 0.45124 -s 0 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 61 ------- null}
h -t 0.45124 -s 0 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.451712 -s 3 -d 4 -p cbr -e 210 -c 1 -i 56 -a 1 -x {0.1 4.1 56 ------- null}
r -t 0.451896 -s 0 -d 3 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 59 ------- null}
+ -t 0.451896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 59 ------- null}
- -t 0.451896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 59 ------- null}
h -t 0.451896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.45208 -s 0 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 62 ------- null}
- -t 0.45208 -s 0 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 62 ------- null}
h -t 0.45208 -s 0 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.452552 -s 3 -d 4 -p cbr -e 210 -c 1 -i 57 -a 1 -x {0.1 4.1 57 ------- null}
r -t 0.452736 -s 0 -d 3 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 60 ------- null}
+ -t 0.452736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 60 ------- null}
- -t 0.452736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 60 ------- null}
h -t 0.452736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.45292 -s 0 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 63 ------- null}
- -t 0.45292 -s 0 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 63 ------- null}
h -t 0.45292 -s 0 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.453392 -s 3 -d 4 -p cbr -e 210 -c 1 -i 58 -a 1 -x {0.1 4.1 58 ------- null}
r -t 0.453576 -s 0 -d 3 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 61 ------- null}
+ -t 0.453576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 61 ------- null}
- -t 0.453576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 61 ------- null}
h -t 0.453576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.45376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 64 ------- null}
- -t 0.45376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 64 ------- null}
h -t 0.45376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.454232 -s 3 -d 4 -p cbr -e 210 -c 1 -i 59 -a 1 -x {0.1 4.1 59 ------- null}
r -t 0.454416 -s 0 -d 3 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 62 ------- null}
+ -t 0.454416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 62 ------- null}
- -t 0.454416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 62 ------- null}
h -t 0.454416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.454600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 65 ------- null}
- -t 0.454600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 65 ------- null}
h -t 0.454600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.455072 -s 3 -d 4 -p cbr -e 210 -c 1 -i 60 -a 1 -x {0.1 4.1 60 ------- null}
r -t 0.455256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 63 ------- null}
+ -t 0.455256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 63 ------- null}
- -t 0.455256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 63 ------- null}
h -t 0.455256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.455440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 66 ------- null}
- -t 0.455440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 66 ------- null}
h -t 0.455440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.455912 -s 3 -d 4 -p cbr -e 210 -c 1 -i 61 -a 1 -x {0.1 4.1 61 ------- null}
r -t 0.456096000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 64 ------- null}
+ -t 0.456096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 64 ------- null}
- -t 0.456096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 64 ------- null}
h -t 0.456096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.456280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 67 ------- null}
- -t 0.456280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 67 ------- null}
h -t 0.456280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.456752 -s 3 -d 4 -p cbr -e 210 -c 1 -i 62 -a 1 -x {0.1 4.1 62 ------- null}
r -t 0.456936000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 65 ------- null}
+ -t 0.456936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 65 ------- null}
- -t 0.456936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 65 ------- null}
h -t 0.456936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.457120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 68 ------- null}
- -t 0.457120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 68 ------- null}
h -t 0.457120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.457592 -s 3 -d 4 -p cbr -e 210 -c 1 -i 63 -a 1 -x {0.1 4.1 63 ------- null}
r -t 0.457776000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 66 ------- null}
+ -t 0.457776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 66 ------- null}
- -t 0.457776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 66 ------- null}
h -t 0.457776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.457960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 69 ------- null}
- -t 0.457960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 69 ------- null}
h -t 0.457960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.458432000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 64 -a 1 -x {0.1 4.1 64 ------- null}
r -t 0.458616000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 67 ------- null}
+ -t 0.458616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 67 ------- null}
- -t 0.458616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 67 ------- null}
h -t 0.458616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.458800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 70 ------- null}
- -t 0.458800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 70 ------- null}
h -t 0.458800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.459272000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 65 -a 1 -x {0.1 4.1 65 ------- null}
r -t 0.459456000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 68 ------- null}
+ -t 0.459456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 68 ------- null}
- -t 0.459456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 68 ------- null}
h -t 0.459456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.459640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 71 ------- null}
- -t 0.459640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 71 ------- null}
h -t 0.459640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.460112000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 66 -a 1 -x {0.1 4.1 66 ------- null}
r -t 0.460296000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 69 ------- null}
+ -t 0.460296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 69 ------- null}
- -t 0.460296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 69 ------- null}
h -t 0.460296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.460480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 72 ------- null}
- -t 0.460480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 72 ------- null}
h -t 0.460480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.460952000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 67 -a 1 -x {0.1 4.1 67 ------- null}
r -t 0.461136000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 70 ------- null}
+ -t 0.461136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 70 ------- null}
- -t 0.461136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 70 ------- null}
h -t 0.461136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.461320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 73 ------- null}
- -t 0.461320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 73 ------- null}
h -t 0.461320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.461792000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 68 -a 1 -x {0.1 4.1 68 ------- null}
r -t 0.461976000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 71 ------- null}
+ -t 0.461976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 71 ------- null}
- -t 0.461976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 71 ------- null}
h -t 0.461976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.462160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 74 ------- null}
- -t 0.462160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 74 ------- null}
h -t 0.462160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.462632000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 69 -a 1 -x {0.1 4.1 69 ------- null}
r -t 0.462816000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 72 ------- null}
+ -t 0.462816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 72 ------- null}
- -t 0.462816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 72 ------- null}
h -t 0.462816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.463000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 75 ------- null}
- -t 0.463000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 75 ------- null}
h -t 0.463000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.463472000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 70 -a 1 -x {0.1 4.1 70 ------- null}
r -t 0.463656000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 73 ------- null}
+ -t 0.463656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 73 ------- null}
- -t 0.463656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 73 ------- null}
h -t 0.463656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.463840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 76 ------- null}
- -t 0.463840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 76 ------- null}
h -t 0.463840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.464312000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 71 -a 1 -x {0.1 4.1 71 ------- null}
r -t 0.464496000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 74 ------- null}
+ -t 0.464496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 74 ------- null}
- -t 0.464496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 74 ------- null}
h -t 0.464496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.464680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 77 ------- null}
- -t 0.464680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 77 ------- null}
h -t 0.464680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.465152000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 72 -a 1 -x {0.1 4.1 72 ------- null}
r -t 0.465336000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 75 ------- null}
+ -t 0.465336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 75 ------- null}
- -t 0.465336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 75 ------- null}
h -t 0.465336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.465520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 78 ------- null}
- -t 0.465520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 78 ------- null}
h -t 0.465520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.465992000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 73 -a 1 -x {0.1 4.1 73 ------- null}
r -t 0.466176000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 76 ------- null}
+ -t 0.466176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 76 ------- null}
- -t 0.466176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 76 ------- null}
h -t 0.466176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.466360000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 79 ------- null}
- -t 0.466360000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 79 ------- null}
h -t 0.466360000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.466832000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 74 -a 1 -x {0.1 4.1 74 ------- null}
r -t 0.467016000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 77 ------- null}
+ -t 0.467016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 77 ------- null}
- -t 0.467016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 77 ------- null}
h -t 0.467016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.467200000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 80 ------- null}
- -t 0.467200000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 80 ------- null}
h -t 0.467200000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.467672000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 75 -a 1 -x {0.1 4.1 75 ------- null}
r -t 0.467856000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 78 ------- null}
+ -t 0.467856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 78 ------- null}
- -t 0.467856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 78 ------- null}
h -t 0.467856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.468040000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 81 ------- null}
- -t 0.468040000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 81 ------- null}
h -t 0.468040000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.468512000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 76 -a 1 -x {0.1 4.1 76 ------- null}
r -t 0.468696000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 79 ------- null}
+ -t 0.468696000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 79 ------- null}
- -t 0.468696000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 79 ------- null}
h -t 0.468696000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.468880000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 82 ------- null}
- -t 0.468880000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 82 ------- null}
h -t 0.468880000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.469352000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 77 -a 1 -x {0.1 4.1 77 ------- null}
r -t 0.469536000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 80 ------- null}
+ -t 0.469536000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 80 ------- null}
- -t 0.469536000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 80 ------- null}
h -t 0.469536000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.469720000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 83 ------- null}
- -t 0.469720000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 83 ------- null}
h -t 0.469720000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.470192000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 78 -a 1 -x {0.1 4.1 78 ------- null}
r -t 0.470376000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 81 ------- null}
+ -t 0.470376000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 81 ------- null}
- -t 0.470376000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 81 ------- null}
h -t 0.470376000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.470560000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 84 ------- null}
- -t 0.470560000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 84 ------- null}
h -t 0.470560000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.471032000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 79 -a 1 -x {0.1 4.1 79 ------- null}
r -t 0.471216000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 82 ------- null}
+ -t 0.471216000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 82 ------- null}
- -t 0.471216000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 82 ------- null}
h -t 0.471216000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.471400000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 85 ------- null}
- -t 0.471400000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 85 ------- null}
h -t 0.471400000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.471872000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 80 -a 1 -x {0.1 4.1 80 ------- null}
r -t 0.472056000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 83 ------- null}
+ -t 0.472056000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 83 ------- null}
- -t 0.472056000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 83 ------- null}
h -t 0.472056000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.472240000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 86 ------- null}
- -t 0.472240000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 86 ------- null}
h -t 0.472240000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.472712000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 81 -a 1 -x {0.1 4.1 81 ------- null}
r -t 0.472896000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 84 ------- null}
+ -t 0.472896000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 84 ------- null}
- -t 0.472896000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 84 ------- null}
h -t 0.472896000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.473080000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 87 ------- null}
- -t 0.473080000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 87 ------- null}
h -t 0.473080000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.473552000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 82 -a 1 -x {0.1 4.1 82 ------- null}
r -t 0.473736000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 85 ------- null}
+ -t 0.473736000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 85 ------- null}
- -t 0.473736000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 85 ------- null}
h -t 0.473736000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.473920000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 88 ------- null}
- -t 0.473920000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 88 ------- null}
h -t 0.473920000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.474392000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 83 -a 1 -x {0.1 4.1 83 ------- null}
r -t 0.474576000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 86 ------- null}
+ -t 0.474576000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 86 ------- null}
- -t 0.474576000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 86 ------- null}
h -t 0.474576000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.474760000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 89 ------- null}
- -t 0.474760000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 89 ------- null}
h -t 0.474760000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.475232000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 84 -a 1 -x {0.1 4.1 84 ------- null}
r -t 0.475416000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 87 ------- null}
+ -t 0.475416000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 87 ------- null}
- -t 0.475416000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 87 ------- null}
h -t 0.475416000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.475600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 90 ------- null}
- -t 0.475600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 90 ------- null}
h -t 0.475600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.476072000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 85 -a 1 -x {0.1 4.1 85 ------- null}
r -t 0.476256000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 88 ------- null}
+ -t 0.476256000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 88 ------- null}
- -t 0.476256000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 88 ------- null}
h -t 0.476256000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.476440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 91 ------- null}
- -t 0.476440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 91 ------- null}
h -t 0.476440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.476912000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 86 -a 1 -x {0.1 4.1 86 ------- null}
r -t 0.477096000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 89 ------- null}
+ -t 0.477096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 89 ------- null}
- -t 0.477096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 89 ------- null}
h -t 0.477096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.477280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 92 ------- null}
- -t 0.477280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 92 ------- null}
h -t 0.477280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.477752000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 87 -a 1 -x {0.1 4.1 87 ------- null}
r -t 0.477936000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 90 ------- null}
+ -t 0.477936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 90 ------- null}
- -t 0.477936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 90 ------- null}
h -t 0.477936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.478120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 93 ------- null}
- -t 0.478120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 93 ------- null}
h -t 0.478120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.478592000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 88 -a 1 -x {0.1 4.1 88 ------- null}
r -t 0.478776000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 91 ------- null}
+ -t 0.478776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 91 ------- null}
- -t 0.478776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 91 ------- null}
h -t 0.478776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.478960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 94 ------- null}
- -t 0.478960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 94 ------- null}
h -t 0.478960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.479432000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 89 -a 1 -x {0.1 4.1 89 ------- null}
r -t 0.479616000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 92 ------- null}
+ -t 0.479616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 92 ------- null}
- -t 0.479616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 92 ------- null}
h -t 0.479616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.479800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 95 ------- null}
- -t 0.479800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 95 ------- null}
h -t 0.479800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.480272000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 90 -a 1 -x {0.1 4.1 90 ------- null}
r -t 0.480456000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 93 ------- null}
+ -t 0.480456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 93 ------- null}
- -t 0.480456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 93 ------- null}
h -t 0.480456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.480640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 96 ------- null}
- -t 0.480640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 96 ------- null}
h -t 0.480640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.481112000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 91 -a 1 -x {0.1 4.1 91 ------- null}
r -t 0.481296000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 94 ------- null}
+ -t 0.481296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 94 ------- null}
- -t 0.481296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 94 ------- null}
h -t 0.481296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.481480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 97 ------- null}
- -t 0.481480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 97 ------- null}
h -t 0.481480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.481952000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 92 -a 1 -x {0.1 4.1 92 ------- null}
r -t 0.482136000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 95 ------- null}
+ -t 0.482136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 95 ------- null}
- -t 0.482136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 95 ------- null}
h -t 0.482136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.482320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 98 ------- null}
- -t 0.482320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 98 ------- null}
h -t 0.482320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.482792000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 93 -a 1 -x {0.1 4.1 93 ------- null}
r -t 0.482976000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 96 ------- null}
+ -t 0.482976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 96 ------- null}
- -t 0.482976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 96 ------- null}
h -t 0.482976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.483160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 99 ------- null}
- -t 0.483160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 99 ------- null}
h -t 0.483160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.483632000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 94 -a 1 -x {0.1 4.1 94 ------- null}
r -t 0.483816000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 97 ------- null}
+ -t 0.483816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 97 ------- null}
- -t 0.483816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 97 ------- null}
h -t 0.483816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.484000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 100 ------- null}
- -t 0.484000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 100 ------- null}
h -t 0.484000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.484472000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 95 -a 1 -x {0.1 4.1 95 ------- null}
r -t 0.484656000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 98 ------- null}
+ -t 0.484656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 98 ------- null}
- -t 0.484656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 98 ------- null}
h -t 0.484656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.484840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 101 ------- null}
- -t 0.484840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 101 ------- null}
h -t 0.484840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.485312000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 96 -a 1 -x {0.1 4.1 96 ------- null}
r -t 0.485496000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 99 ------- null}
+ -t 0.485496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 99 ------- null}
- -t 0.485496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 99 ------- null}
h -t 0.485496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.485680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 102 ------- null}
- -t 0.485680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 102 ------- null}
h -t 0.485680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.486152000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 97 -a 1 -x {0.1 4.1 97 ------- null}
r -t 0.486336000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 100 ------- null}
+ -t 0.486336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 100 ------- null}
- -t 0.486336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 100 ------- null}
h -t 0.486336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.486520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 103 ------- null}
- -t 0.486520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 103 ------- null}
h -t 0.486520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.486992000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 98 -a 1 -x {0.1 4.1 98 ------- null}
r -t 0.487176000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 101 ------- null}
+ -t 0.487176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 101 ------- null}
- -t 0.487176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 101 ------- null}
h -t 0.487176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.487360000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 104 ------- null}
- -t 0.487360000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 104 ------- null}
h -t 0.487360000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.487832000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 99 -a 1 -x {0.1 4.1 99 ------- null}
r -t 0.488016000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 102 ------- null}
+ -t 0.488016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 102 ------- null}
- -t 0.488016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 102 ------- null}
h -t 0.488016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.488200000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 105 ------- null}
- -t 0.488200000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 105 ------- null}
h -t 0.488200000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.488672000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 100 -a 1 -x {0.1 4.1 100 ------- null}
r -t 0.488856000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 103 ------- null}
+ -t 0.488856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 103 ------- null}
- -t 0.488856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 103 ------- null}
h -t 0.488856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.489040000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 106 ------- null}
- -t 0.489040000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 106 ------- null}
h -t 0.489040000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.489512000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 101 -a 1 -x {0.1 4.1 101 ------- null}
r -t 0.489696000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 104 ------- null}
+ -t 0.489696000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 104 ------- null}
- -t 0.489696000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 104 ------- null}
h -t 0.489696000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.489880000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 107 ------- null}
- -t 0.489880000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 107 ------- null}
h -t 0.489880000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.490352000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 102 -a 1 -x {0.1 4.1 102 ------- null}
r -t 0.490536000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 105 ------- null}
+ -t 0.490536000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 105 ------- null}
- -t 0.490536000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 105 ------- null}
h -t 0.490536000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.490720000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 108 ------- null}
- -t 0.490720000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 108 ------- null}
h -t 0.490720000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.491192000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 103 -a 1 -x {0.1 4.1 103 ------- null}
r -t 0.491376000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 106 ------- null}
+ -t 0.491376000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 106 ------- null}
- -t 0.491376000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 106 ------- null}
h -t 0.491376000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.491560000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 109 ------- null}
- -t 0.491560000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 109 ------- null}
h -t 0.491560000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.492032000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 104 -a 1 -x {0.1 4.1 104 ------- null}
r -t 0.492216000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 107 ------- null}
+ -t 0.492216000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 107 ------- null}
- -t 0.492216000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 107 ------- null}
h -t 0.492216000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.492400000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 110 ------- null}
- -t 0.492400000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 110 ------- null}
h -t 0.492400000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.492872000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 105 -a 1 -x {0.1 4.1 105 ------- null}
r -t 0.493056000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 108 ------- null}
+ -t 0.493056000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 108 ------- null}
- -t 0.493056000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 108 ------- null}
h -t 0.493056000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.493240000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 111 ------- null}
- -t 0.493240000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 111 ------- null}
h -t 0.493240000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.493712000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 106 -a 1 -x {0.1 4.1 106 ------- null}
r -t 0.493896000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 109 ------- null}
+ -t 0.493896000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 109 ------- null}
- -t 0.493896000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 109 ------- null}
h -t 0.493896000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.494080000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 112 ------- null}
- -t 0.494080000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 112 ------- null}
h -t 0.494080000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.494552000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 107 -a 1 -x {0.1 4.1 107 ------- null}
r -t 0.494736000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 110 ------- null}
+ -t 0.494736000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 110 ------- null}
- -t 0.494736000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 110 ------- null}
h -t 0.494736000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.494920000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 113 ------- null}
- -t 0.494920000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 113 ------- null}
h -t 0.494920000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.495392000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 108 -a 1 -x {0.1 4.1 108 ------- null}
r -t 0.495576000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 111 ------- null}
+ -t 0.495576000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 111 ------- null}
- -t 0.495576000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 111 ------- null}
h -t 0.495576000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.495760000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 114 ------- null}
- -t 0.495760000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 114 ------- null}
h -t 0.495760000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.496232000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 109 -a 1 -x {0.1 4.1 109 ------- null}
r -t 0.496416000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 112 ------- null}
+ -t 0.496416000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 112 ------- null}
- -t 0.496416000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 112 ------- null}
h -t 0.496416000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.496600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 115 ------- null}
- -t 0.496600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 115 ------- null}
h -t 0.496600000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.497072000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 110 -a 1 -x {0.1 4.1 110 ------- null}
r -t 0.497256000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 113 ------- null}
+ -t 0.497256000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 113 ------- null}
- -t 0.497256000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 113 ------- null}
h -t 0.497256000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.497440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 116 ------- null}
- -t 0.497440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 116 ------- null}
h -t 0.497440000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.497912000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 111 -a 1 -x {0.1 4.1 111 ------- null}
r -t 0.498096000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 114 ------- null}
+ -t 0.498096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 114 ------- null}
- -t 0.498096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 114 ------- null}
h -t 0.498096000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.498280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 117 ------- null}
- -t 0.498280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 117 ------- null}
h -t 0.498280000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.498752000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 112 -a 1 -x {0.1 4.1 112 ------- null}
r -t 0.498936000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 115 ------- null}
+ -t 0.498936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 115 ------- null}
- -t 0.498936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 115 ------- null}
h -t 0.498936000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.499120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 118 ------- null}
- -t 0.499120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 118 ------- null}
h -t 0.499120000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.499592000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 113 -a 1 -x {0.1 4.1 113 ------- null}
r -t 0.499776000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 116 ------- null}
+ -t 0.499776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 116 ------- null}
- -t 0.499776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 116 ------- null}
h -t 0.499776000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.499960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 119 ------- null}
- -t 0.499960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 119 ------- null}
h -t 0.499960000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.500432000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 114 -a 1 -x {0.1 4.1 114 ------- null}
r -t 0.500616000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 117 ------- null}
+ -t 0.500616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 117 ------- null}
- -t 0.500616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 117 ------- null}
h -t 0.500616000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.500800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 120 ------- null}
- -t 0.500800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 120 ------- null}
h -t 0.500800000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.501272000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 115 -a 1 -x {0.1 4.1 115 ------- null}
r -t 0.501456000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 118 ------- null}
+ -t 0.501456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 118 ------- null}
- -t 0.501456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 118 ------- null}
h -t 0.501456000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.501640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 121 ------- null}
- -t 0.501640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 121 ------- null}
h -t 0.501640000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.502112000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 116 -a 1 -x {0.1 4.1 116 ------- null}
r -t 0.502296000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 119 ------- null}
+ -t 0.502296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 119 ------- null}
- -t 0.502296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 119 ------- null}
h -t 0.502296000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.502480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 122 ------- null}
- -t 0.502480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 122 ------- null}
h -t 0.502480000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.502952000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 117 -a 1 -x {0.1 4.1 117 ------- null}
r -t 0.503136000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 120 ------- null}
+ -t 0.503136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 120 ------- null}
- -t 0.503136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 120 ------- null}
h -t 0.503136000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.503320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 123 ------- null}
- -t 0.503320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 123 ------- null}
h -t 0.503320000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.503792000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 118 -a 1 -x {0.1 4.1 118 ------- null}
r -t 0.503976000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 121 ------- null}
+ -t 0.503976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 121 ------- null}
- -t 0.503976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 121 ------- null}
h -t 0.503976000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.504160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 124 ------- null}
- -t 0.504160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 124 ------- null}
h -t 0.504160000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.504632000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 119 -a 1 -x {0.1 4.1 119 ------- null}
r -t 0.504816000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 122 ------- null}
+ -t 0.504816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 122 ------- null}
- -t 0.504816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 122 ------- null}
h -t 0.504816000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.505000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 125 ------- null}
- -t 0.505000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 125 ------- null}
h -t 0.505000000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.505472000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 120 -a 1 -x {0.1 4.1 120 ------- null}
r -t 0.505656000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 123 ------- null}
+ -t 0.505656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 123 ------- null}
- -t 0.505656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 123 ------- null}
h -t 0.505656000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.505840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 126 ------- null}
- -t 0.505840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 126 ------- null}
h -t 0.505840000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.506312000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 121 -a 1 -x {0.1 4.1 121 ------- null}
r -t 0.506496000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 124 ------- null}
+ -t 0.506496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 124 ------- null}
- -t 0.506496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 124 ------- null}
h -t 0.506496000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.506680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 127 ------- null}
- -t 0.506680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 127 ------- null}
h -t 0.506680000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.507152000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 122 -a 1 -x {0.1 4.1 122 ------- null}
r -t 0.507336000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 125 ------- null}
+ -t 0.507336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 125 ------- null}
- -t 0.507336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 125 ------- null}
h -t 0.507336000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.507520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 128 ------- null}
- -t 0.507520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 128 ------- null}
h -t 0.507520000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.507992000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 123 -a 1 -x {0.1 4.1 123 ------- null}
r -t 0.508176000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 126 ------- null}
+ -t 0.508176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 126 ------- null}
- -t 0.508176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 126 ------- null}
h -t 0.508176000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.50836 -s 0 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 129 ------- null}
- -t 0.50836 -s 0 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 129 ------- null}
h -t 0.50836 -s 0 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.508832000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 124 -a 1 -x {0.1 4.1 124 ------- null}
r -t 0.509016000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 127 ------- null}
+ -t 0.509016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 127 ------- null}
- -t 0.509016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 127 ------- null}
h -t 0.509016000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.5092 -s 0 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 130 ------- null}
- -t 0.5092 -s 0 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 130 ------- null}
h -t 0.5092 -s 0 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.509672000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 125 -a 1 -x {0.1 4.1 125 ------- null}
r -t 0.509856000000001 -s 0 -d 3 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 128 ------- null}
+ -t 0.509856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 128 ------- null}
- -t 0.509856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 128 ------- null}
h -t 0.509856000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51004 -s 0 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 131 ------- null}
- -t 0.51004 -s 0 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 131 ------- null}
h -t 0.51004 -s 0 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.510512000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 126 -a 1 -x {0.1 4.1 126 ------- null}
r -t 0.510696 -s 0 -d 3 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 129 ------- null}
+ -t 0.510696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 129 ------- null}
- -t 0.510696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 129 ------- null}
h -t 0.510696 -s 3 -d 4 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51088 -s 0 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 132 ------- null}
- -t 0.51088 -s 0 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 132 ------- null}
h -t 0.51088 -s 0 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.511352000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 127 -a 1 -x {0.1 4.1 127 ------- null}
r -t 0.511536 -s 0 -d 3 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 130 ------- null}
+ -t 0.511536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 130 ------- null}
- -t 0.511536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 130 ------- null}
h -t 0.511536 -s 3 -d 4 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51172 -s 0 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 133 ------- null}
- -t 0.51172 -s 0 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 133 ------- null}
h -t 0.51172 -s 0 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.512192000000001 -s 3 -d 4 -p cbr -e 210 -c 1 -i 128 -a 1 -x {0.1 4.1 128 ------- null}
r -t 0.512376 -s 0 -d 3 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 131 ------- null}
+ -t 0.512376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 131 ------- null}
- -t 0.512376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 131 ------- null}
h -t 0.512376 -s 3 -d 4 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 134 ------- null}
- -t 0.51256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 134 ------- null}
h -t 0.51256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.513032 -s 3 -d 4 -p cbr -e 210 -c 1 -i 129 -a 1 -x {0.1 4.1 129 ------- null}
r -t 0.513216 -s 0 -d 3 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 132 ------- null}
+ -t 0.513216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 132 ------- null}
- -t 0.513216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 132 ------- null}
h -t 0.513216 -s 3 -d 4 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.5134 -s 0 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 135 ------- null}
- -t 0.5134 -s 0 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 135 ------- null}
h -t 0.5134 -s 0 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.513872 -s 3 -d 4 -p cbr -e 210 -c 1 -i 130 -a 1 -x {0.1 4.1 130 ------- null}
r -t 0.514056 -s 0 -d 3 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 133 ------- null}
+ -t 0.514056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 133 ------- null}
- -t 0.514056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 133 ------- null}
h -t 0.514056 -s 3 -d 4 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51424 -s 0 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 136 ------- null}
- -t 0.51424 -s 0 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 136 ------- null}
h -t 0.51424 -s 0 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.514712 -s 3 -d 4 -p cbr -e 210 -c 1 -i 131 -a 1 -x {0.1 4.1 131 ------- null}
r -t 0.514896 -s 0 -d 3 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 134 ------- null}
+ -t 0.514896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 134 ------- null}
- -t 0.514896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 134 ------- null}
h -t 0.514896 -s 3 -d 4 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51508 -s 0 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 137 ------- null}
- -t 0.51508 -s 0 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 137 ------- null}
h -t 0.51508 -s 0 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.515552 -s 3 -d 4 -p cbr -e 210 -c 1 -i 132 -a 1 -x {0.1 4.1 132 ------- null}
r -t 0.515736 -s 0 -d 3 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 135 ------- null}
+ -t 0.515736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 135 ------- null}
- -t 0.515736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 135 ------- null}
h -t 0.515736 -s 3 -d 4 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51592 -s 0 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 138 ------- null}
- -t 0.51592 -s 0 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 138 ------- null}
h -t 0.51592 -s 0 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.516392 -s 3 -d 4 -p cbr -e 210 -c 1 -i 133 -a 1 -x {0.1 4.1 133 ------- null}
r -t 0.516576 -s 0 -d 3 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 136 ------- null}
+ -t 0.516576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 136 ------- null}
- -t 0.516576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 136 ------- null}
h -t 0.516576 -s 3 -d 4 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51676 -s 0 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 139 ------- null}
- -t 0.51676 -s 0 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 139 ------- null}
h -t 0.51676 -s 0 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.517232 -s 3 -d 4 -p cbr -e 210 -c 1 -i 134 -a 1 -x {0.1 4.1 134 ------- null}
r -t 0.517416 -s 0 -d 3 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 137 ------- null}
+ -t 0.517416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 137 ------- null}
- -t 0.517416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 137 ------- null}
h -t 0.517416 -s 3 -d 4 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.5176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 140 ------- null}
- -t 0.5176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 140 ------- null}
h -t 0.5176 -s 0 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.518072 -s 3 -d 4 -p cbr -e 210 -c 1 -i 135 -a 1 -x {0.1 4.1 135 ------- null}
r -t 0.518256 -s 0 -d 3 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 138 ------- null}
+ -t 0.518256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 138 ------- null}
- -t 0.518256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 138 ------- null}
h -t 0.518256 -s 3 -d 4 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51844 -s 0 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 141 ------- null}
- -t 0.51844 -s 0 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 141 ------- null}
h -t 0.51844 -s 0 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.518912 -s 3 -d 4 -p cbr -e 210 -c 1 -i 136 -a 1 -x {0.1 4.1 136 ------- null}
r -t 0.519096 -s 0 -d 3 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 139 ------- null}
+ -t 0.519096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 139 ------- null}
- -t 0.519096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 139 ------- null}
h -t 0.519096 -s 3 -d 4 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.51928 -s 0 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 142 ------- null}
- -t 0.51928 -s 0 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 142 ------- null}
h -t 0.51928 -s 0 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.519752 -s 3 -d 4 -p cbr -e 210 -c 1 -i 137 -a 1 -x {0.1 4.1 137 ------- null}
r -t 0.519936 -s 0 -d 3 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 140 ------- null}
+ -t 0.519936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 140 ------- null}
- -t 0.519936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 140 ------- null}
h -t 0.519936 -s 3 -d 4 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.52012 -s 0 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 143 ------- null}
- -t 0.52012 -s 0 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 143 ------- null}
h -t 0.52012 -s 0 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.520592 -s 3 -d 4 -p cbr -e 210 -c 1 -i 138 -a 1 -x {0.1 4.1 138 ------- null}
r -t 0.520776 -s 0 -d 3 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 141 ------- null}
+ -t 0.520776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 141 ------- null}
- -t 0.520776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 141 ------- null}
h -t 0.520776 -s 3 -d 4 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.52096 -s 0 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 144 ------- null}
- -t 0.52096 -s 0 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 144 ------- null}
h -t 0.52096 -s 0 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.521432 -s 3 -d 4 -p cbr -e 210 -c 1 -i 139 -a 1 -x {0.1 4.1 139 ------- null}
r -t 0.521616 -s 0 -d 3 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 142 ------- null}
+ -t 0.521616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 142 ------- null}
- -t 0.521616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 142 ------- null}
h -t 0.521616 -s 3 -d 4 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.5218 -s 0 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 145 ------- null}
- -t 0.5218 -s 0 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 145 ------- null}
h -t 0.5218 -s 0 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.522272 -s 3 -d 4 -p cbr -e 210 -c 1 -i 140 -a 1 -x {0.1 4.1 140 ------- null}
r -t 0.522456 -s 0 -d 3 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 143 ------- null}
+ -t 0.522456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 143 ------- null}
- -t 0.522456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 143 ------- null}
h -t 0.522456 -s 3 -d 4 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.52264 -s 0 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 146 ------- null}
- -t 0.52264 -s 0 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 146 ------- null}
h -t 0.52264 -s 0 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.523112 -s 3 -d 4 -p cbr -e 210 -c 1 -i 141 -a 1 -x {0.1 4.1 141 ------- null}
r -t 0.523296 -s 0 -d 3 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 144 ------- null}
+ -t 0.523296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 144 ------- null}
- -t 0.523296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 144 ------- null}
h -t 0.523296 -s 3 -d 4 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.52348 -s 0 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 147 ------- null}
- -t 0.52348 -s 0 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 147 ------- null}
h -t 0.52348 -s 0 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.523952 -s 3 -d 4 -p cbr -e 210 -c 1 -i 142 -a 1 -x {0.1 4.1 142 ------- null}
r -t 0.524136 -s 0 -d 3 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 145 ------- null}
+ -t 0.524136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 145 ------- null}
- -t 0.524136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 145 ------- null}
h -t 0.524136 -s 3 -d 4 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.52432 -s 0 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 148 ------- null}
- -t 0.52432 -s 0 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 148 ------- null}
h -t 0.52432 -s 0 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.524792 -s 3 -d 4 -p cbr -e 210 -c 1 -i 143 -a 1 -x {0.1 4.1 143 ------- null}
r -t 0.524976 -s 0 -d 3 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 146 ------- null}
+ -t 0.524976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 146 ------- null}
- -t 0.524976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 146 ------- null}
h -t 0.524976 -s 3 -d 4 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.52516 -s 0 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 149 ------- null}
- -t 0.52516 -s 0 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 149 ------- null}
h -t 0.52516 -s 0 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.525632 -s 3 -d 4 -p cbr -e 210 -c 1 -i 144 -a 1 -x {0.1 4.1 144 ------- null}
r -t 0.525816 -s 0 -d 3 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 147 ------- null}
+ -t 0.525816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 147 ------- null}
- -t 0.525816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 147 ------- null}
h -t 0.525816 -s 3 -d 4 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.525999999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 150 ------- null}
- -t 0.525999999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 150 ------- null}
h -t 0.525999999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.526472 -s 3 -d 4 -p cbr -e 210 -c 1 -i 145 -a 1 -x {0.1 4.1 145 ------- null}
r -t 0.526656 -s 0 -d 3 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 148 ------- null}
+ -t 0.526656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 148 ------- null}
- -t 0.526656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 148 ------- null}
h -t 0.526656 -s 3 -d 4 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.526839999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 151 ------- null}
- -t 0.526839999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 151 ------- null}
h -t 0.526839999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.527312 -s 3 -d 4 -p cbr -e 210 -c 1 -i 146 -a 1 -x {0.1 4.1 146 ------- null}
r -t 0.527496 -s 0 -d 3 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 149 ------- null}
+ -t 0.527496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 149 ------- null}
- -t 0.527496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 149 ------- null}
h -t 0.527496 -s 3 -d 4 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.527679999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 152 ------- null}
- -t 0.527679999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 152 ------- null}
h -t 0.527679999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.528152 -s 3 -d 4 -p cbr -e 210 -c 1 -i 147 -a 1 -x {0.1 4.1 147 ------- null}
r -t 0.528335999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 150 ------- null}
+ -t 0.528335999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 150 ------- null}
- -t 0.528335999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 150 ------- null}
h -t 0.528335999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.528519999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 153 ------- null}
- -t 0.528519999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 153 ------- null}
h -t 0.528519999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.528992 -s 3 -d 4 -p cbr -e 210 -c 1 -i 148 -a 1 -x {0.1 4.1 148 ------- null}
r -t 0.529175999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 151 ------- null}
+ -t 0.529175999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 151 ------- null}
- -t 0.529175999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 151 ------- null}
h -t 0.529175999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.529359999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 154 ------- null}
- -t 0.529359999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 154 ------- null}
h -t 0.529359999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.529832 -s 3 -d 4 -p cbr -e 210 -c 1 -i 149 -a 1 -x {0.1 4.1 149 ------- null}
r -t 0.530015999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 152 ------- null}
+ -t 0.530015999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 152 ------- null}
- -t 0.530015999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 152 ------- null}
h -t 0.530015999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.530199999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 155 ------- null}
- -t 0.530199999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 155 ------- null}
h -t 0.530199999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.530671999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 150 -a 1 -x {0.1 4.1 150 ------- null}
r -t 0.530855999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 153 ------- null}
+ -t 0.530855999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 153 ------- null}
- -t 0.530855999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 153 ------- null}
h -t 0.530855999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.531039999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 156 ------- null}
- -t 0.531039999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 156 ------- null}
h -t 0.531039999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.531511999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 151 -a 1 -x {0.1 4.1 151 ------- null}
r -t 0.531695999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 154 ------- null}
+ -t 0.531695999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 154 ------- null}
- -t 0.531695999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 154 ------- null}
h -t 0.531695999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.531879999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 157 ------- null}
- -t 0.531879999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 157 ------- null}
h -t 0.531879999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.532351999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 152 -a 1 -x {0.1 4.1 152 ------- null}
r -t 0.532535999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 155 ------- null}
+ -t 0.532535999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 155 ------- null}
- -t 0.532535999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 155 ------- null}
h -t 0.532535999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.532719999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 158 ------- null}
- -t 0.532719999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 158 ------- null}
h -t 0.532719999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.533191999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 153 -a 1 -x {0.1 4.1 153 ------- null}
r -t 0.533375999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 156 ------- null}
+ -t 0.533375999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 156 ------- null}
- -t 0.533375999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 156 ------- null}
h -t 0.533375999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.533559999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 159 ------- null}
- -t 0.533559999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 159 ------- null}
h -t 0.533559999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.534031999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 154 -a 1 -x {0.1 4.1 154 ------- null}
r -t 0.534215999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 157 ------- null}
+ -t 0.534215999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 157 ------- null}
- -t 0.534215999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 157 ------- null}
h -t 0.534215999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.534399999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 160 ------- null}
- -t 0.534399999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 160 ------- null}
h -t 0.534399999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.534871999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 155 -a 1 -x {0.1 4.1 155 ------- null}
r -t 0.535055999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 158 ------- null}
+ -t 0.535055999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 158 ------- null}
- -t 0.535055999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 158 ------- null}
h -t 0.535055999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.535239999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 161 ------- null}
- -t 0.535239999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 161 ------- null}
h -t 0.535239999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.535711999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 156 -a 1 -x {0.1 4.1 156 ------- null}
r -t 0.535895999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 159 ------- null}
+ -t 0.535895999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 159 ------- null}
- -t 0.535895999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 159 ------- null}
h -t 0.535895999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.536079999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 162 ------- null}
- -t 0.536079999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 162 ------- null}
h -t 0.536079999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.536551999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 157 -a 1 -x {0.1 4.1 157 ------- null}
r -t 0.536735999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 160 ------- null}
+ -t 0.536735999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 160 ------- null}
- -t 0.536735999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 160 ------- null}
h -t 0.536735999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.536919999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 163 ------- null}
- -t 0.536919999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 163 ------- null}
h -t 0.536919999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.537391999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 158 -a 1 -x {0.1 4.1 158 ------- null}
r -t 0.537575999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 161 ------- null}
+ -t 0.537575999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 161 ------- null}
- -t 0.537575999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 161 ------- null}
h -t 0.537575999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.537759999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 164 ------- null}
- -t 0.537759999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 164 ------- null}
h -t 0.537759999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.538231999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 159 -a 1 -x {0.1 4.1 159 ------- null}
r -t 0.538415999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 162 ------- null}
+ -t 0.538415999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 162 ------- null}
- -t 0.538415999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 162 ------- null}
h -t 0.538415999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.538599999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 165 ------- null}
- -t 0.538599999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 165 ------- null}
h -t 0.538599999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.539071999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 160 -a 1 -x {0.1 4.1 160 ------- null}
r -t 0.539255999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 163 ------- null}
+ -t 0.539255999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 163 ------- null}
- -t 0.539255999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 163 ------- null}
h -t 0.539255999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.539439999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 166 ------- null}
- -t 0.539439999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 166 ------- null}
h -t 0.539439999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.539911999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 161 -a 1 -x {0.1 4.1 161 ------- null}
r -t 0.540095999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 164 ------- null}
+ -t 0.540095999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 164 ------- null}
- -t 0.540095999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 164 ------- null}
h -t 0.540095999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.540279999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 167 ------- null}
- -t 0.540279999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 167 ------- null}
h -t 0.540279999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.540751999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 162 -a 1 -x {0.1 4.1 162 ------- null}
r -t 0.540935999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 165 ------- null}
+ -t 0.540935999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 165 ------- null}
- -t 0.540935999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 165 ------- null}
h -t 0.540935999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.541119999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 168 ------- null}
- -t 0.541119999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 168 ------- null}
h -t 0.541119999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.541591999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 163 -a 1 -x {0.1 4.1 163 ------- null}
r -t 0.541775999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 166 ------- null}
+ -t 0.541775999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 166 ------- null}
- -t 0.541775999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 166 ------- null}
h -t 0.541775999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.541959999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 169 ------- null}
- -t 0.541959999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 169 ------- null}
h -t 0.541959999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.542431999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 164 -a 1 -x {0.1 4.1 164 ------- null}
r -t 0.542615999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 167 ------- null}
+ -t 0.542615999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 167 ------- null}
- -t 0.542615999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 167 ------- null}
h -t 0.542615999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.542799999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 170 ------- null}
- -t 0.542799999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 170 ------- null}
h -t 0.542799999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.543271999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 165 -a 1 -x {0.1 4.1 165 ------- null}
r -t 0.543455999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 168 ------- null}
+ -t 0.543455999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 168 ------- null}
- -t 0.543455999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 168 ------- null}
h -t 0.543455999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.543639999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 171 ------- null}
- -t 0.543639999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 171 ------- null}
h -t 0.543639999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.544111999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 166 -a 1 -x {0.1 4.1 166 ------- null}
r -t 0.544295999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 169 ------- null}
+ -t 0.544295999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 169 ------- null}
- -t 0.544295999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 169 ------- null}
h -t 0.544295999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.544479999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 172 ------- null}
- -t 0.544479999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 172 ------- null}
h -t 0.544479999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.544951999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 167 -a 1 -x {0.1 4.1 167 ------- null}
r -t 0.545135999999999 -s 0 -d 3 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 170 ------- null}
+ -t 0.545135999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 170 ------- null}
- -t 0.545135999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 170 ------- null}
h -t 0.545135999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.545319999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 173 ------- null}
- -t 0.545319999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 173 ------- null}
h -t 0.545319999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.545791999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 168 -a 1 -x {0.1 4.1 168 ------- null}
r -t 0.545975999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 171 ------- null}
+ -t 0.545975999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 171 ------- null}
- -t 0.545975999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 171 ------- null}
h -t 0.545975999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.546159999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 174 ------- null}
- -t 0.546159999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 174 ------- null}
h -t 0.546159999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.546631999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 169 -a 1 -x {0.1 4.1 169 ------- null}
r -t 0.546815999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 172 ------- null}
+ -t 0.546815999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 172 ------- null}
- -t 0.546815999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 172 ------- null}
h -t 0.546815999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.546999999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 175 ------- null}
- -t 0.546999999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 175 ------- null}
h -t 0.546999999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.547471999999999 -s 3 -d 4 -p cbr -e 210 -c 1 -i 170 -a 1 -x {0.1 4.1 170 ------- null}
r -t 0.547655999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 173 ------- null}
+ -t 0.547655999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 173 ------- null}
- -t 0.547655999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 173 ------- null}
h -t 0.547655999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.547839999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 176 ------- null}
- -t 0.547839999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 176 ------- null}
h -t 0.547839999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.548311999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 171 -a 1 -x {0.1 4.1 171 ------- null}
r -t 0.548495999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 174 ------- null}
+ -t 0.548495999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 174 ------- null}
- -t 0.548495999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 174 ------- null}
h -t 0.548495999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.548679999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 177 ------- null}
- -t 0.548679999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 177 ------- null}
h -t 0.548679999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.549151999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 172 -a 1 -x {0.1 4.1 172 ------- null}
r -t 0.549335999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 175 ------- null}
+ -t 0.549335999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 175 ------- null}
- -t 0.549335999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 175 ------- null}
h -t 0.549335999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.549519999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 178 ------- null}
- -t 0.549519999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 178 ------- null}
h -t 0.549519999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.549991999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 173 -a 1 -x {0.1 4.1 173 ------- null}
r -t 0.550175999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 176 ------- null}
+ -t 0.550175999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 176 ------- null}
- -t 0.550175999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 176 ------- null}
h -t 0.550175999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.550359999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 179 ------- null}
- -t 0.550359999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 179 ------- null}
h -t 0.550359999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.550831999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 174 -a 1 -x {0.1 4.1 174 ------- null}
r -t 0.551015999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 177 ------- null}
+ -t 0.551015999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 177 ------- null}
- -t 0.551015999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 177 ------- null}
h -t 0.551015999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.551199999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 180 ------- null}
- -t 0.551199999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 180 ------- null}
h -t 0.551199999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.551671999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 175 -a 1 -x {0.1 4.1 175 ------- null}
r -t 0.551855999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 178 ------- null}
+ -t 0.551855999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 178 ------- null}
- -t 0.551855999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 178 ------- null}
h -t 0.551855999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.552039999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 181 ------- null}
- -t 0.552039999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 181 ------- null}
h -t 0.552039999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.552511999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 176 -a 1 -x {0.1 4.1 176 ------- null}
r -t 0.552695999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 179 ------- null}
+ -t 0.552695999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 179 ------- null}
- -t 0.552695999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 179 ------- null}
h -t 0.552695999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.552879999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 182 ------- null}
- -t 0.552879999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 182 ------- null}
h -t 0.552879999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.553351999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 177 -a 1 -x {0.1 4.1 177 ------- null}
r -t 0.553535999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 180 ------- null}
+ -t 0.553535999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 180 ------- null}
- -t 0.553535999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 180 ------- null}
h -t 0.553535999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.553719999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 183 ------- null}
- -t 0.553719999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 183 ------- null}
h -t 0.553719999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.554191999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 178 -a 1 -x {0.1 4.1 178 ------- null}
r -t 0.554375999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 181 ------- null}
+ -t 0.554375999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 181 ------- null}
- -t 0.554375999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 181 ------- null}
h -t 0.554375999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.554559999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 184 ------- null}
- -t 0.554559999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 184 ------- null}
h -t 0.554559999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.555031999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 179 -a 1 -x {0.1 4.1 179 ------- null}
r -t 0.555215999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 182 ------- null}
+ -t 0.555215999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 182 ------- null}
- -t 0.555215999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 182 ------- null}
h -t 0.555215999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.555399999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 185 ------- null}
- -t 0.555399999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 185 ------- null}
h -t 0.555399999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.555871999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 180 -a 1 -x {0.1 4.1 180 ------- null}
r -t 0.556055999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 183 ------- null}
+ -t 0.556055999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 183 ------- null}
- -t 0.556055999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 183 ------- null}
h -t 0.556055999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.556239999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 186 ------- null}
- -t 0.556239999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 186 ------- null}
h -t 0.556239999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.556711999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 181 -a 1 -x {0.1 4.1 181 ------- null}
r -t 0.556895999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 184 ------- null}
+ -t 0.556895999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 184 ------- null}
- -t 0.556895999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 184 ------- null}
h -t 0.556895999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.557079999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 187 ------- null}
- -t 0.557079999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 187 ------- null}
h -t 0.557079999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.557551999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 182 -a 1 -x {0.1 4.1 182 ------- null}
r -t 0.557735999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 185 ------- null}
+ -t 0.557735999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 185 ------- null}
- -t 0.557735999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 185 ------- null}
h -t 0.557735999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.557919999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 188 ------- null}
- -t 0.557919999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 188 ------- null}
h -t 0.557919999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.558391999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 183 -a 1 -x {0.1 4.1 183 ------- null}
r -t 0.558575999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 186 ------- null}
+ -t 0.558575999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 186 ------- null}
- -t 0.558575999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 186 ------- null}
h -t 0.558575999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.558759999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 189 ------- null}
- -t 0.558759999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 189 ------- null}
h -t 0.558759999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.559231999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 184 -a 1 -x {0.1 4.1 184 ------- null}
r -t 0.559415999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 187 ------- null}
+ -t 0.559415999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 187 ------- null}
- -t 0.559415999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 187 ------- null}
h -t 0.559415999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.559599999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 190 ------- null}
- -t 0.559599999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 190 ------- null}
h -t 0.559599999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.560071999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 185 -a 1 -x {0.1 4.1 185 ------- null}
r -t 0.560255999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 188 ------- null}
+ -t 0.560255999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 188 ------- null}
- -t 0.560255999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 188 ------- null}
h -t 0.560255999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.560439999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 191 ------- null}
- -t 0.560439999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 191 ------- null}
h -t 0.560439999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.560911999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 186 -a 1 -x {0.1 4.1 186 ------- null}
r -t 0.561095999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 189 ------- null}
+ -t 0.561095999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 189 ------- null}
- -t 0.561095999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 189 ------- null}
h -t 0.561095999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.561279999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 192 ------- null}
- -t 0.561279999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 192 ------- null}
h -t 0.561279999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.561751999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 187 -a 1 -x {0.1 4.1 187 ------- null}
r -t 0.561935999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 190 ------- null}
+ -t 0.561935999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 190 ------- null}
- -t 0.561935999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 190 ------- null}
h -t 0.561935999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.562119999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 193 ------- null}
- -t 0.562119999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 193 ------- null}
h -t 0.562119999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.562591999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 188 -a 1 -x {0.1 4.1 188 ------- null}
r -t 0.562775999999998 -s 0 -d 3 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 191 ------- null}
+ -t 0.562775999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 191 ------- null}
- -t 0.562775999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 191 ------- null}
h -t 0.562775999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.562959999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 194 ------- null}
- -t 0.562959999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 194 ------- null}
h -t 0.562959999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.563431999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 189 -a 1 -x {0.1 4.1 189 ------- null}
r -t 0.563615999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 192 ------- null}
+ -t 0.563615999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 192 ------- null}
- -t 0.563615999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 192 ------- null}
h -t 0.563615999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.563799999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 195 ------- null}
- -t 0.563799999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 195 ------- null}
h -t 0.563799999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.564271999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 190 -a 1 -x {0.1 4.1 190 ------- null}
r -t 0.564455999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 193 ------- null}
+ -t 0.564455999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 193 ------- null}
- -t 0.564455999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 193 ------- null}
h -t 0.564455999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.564639999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 196 ------- null}
- -t 0.564639999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 196 ------- null}
h -t 0.564639999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.565111999999998 -s 3 -d 4 -p cbr -e 210 -c 1 -i 191 -a 1 -x {0.1 4.1 191 ------- null}
r -t 0.565295999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 194 ------- null}
+ -t 0.565295999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 194 ------- null}
- -t 0.565295999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 194 ------- null}
h -t 0.565295999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.565479999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 197 ------- null}
- -t 0.565479999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 197 ------- null}
h -t 0.565479999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.565951999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 192 -a 1 -x {0.1 4.1 192 ------- null}
r -t 0.566135999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 195 ------- null}
+ -t 0.566135999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 195 ------- null}
- -t 0.566135999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 195 ------- null}
h -t 0.566135999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.566319999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 198 ------- null}
- -t 0.566319999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 198 ------- null}
h -t 0.566319999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.566791999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 193 -a 1 -x {0.1 4.1 193 ------- null}
r -t 0.566975999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 196 ------- null}
+ -t 0.566975999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 196 ------- null}
- -t 0.566975999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 196 ------- null}
h -t 0.566975999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.567159999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 199 ------- null}
- -t 0.567159999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 199 ------- null}
h -t 0.567159999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.567631999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 194 -a 1 -x {0.1 4.1 194 ------- null}
r -t 0.567815999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 197 ------- null}
+ -t 0.567815999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 197 ------- null}
- -t 0.567815999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 197 ------- null}
h -t 0.567815999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.567999999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 200 ------- null}
- -t 0.567999999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 200 ------- null}
h -t 0.567999999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.568471999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 195 -a 1 -x {0.1 4.1 195 ------- null}
r -t 0.568655999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 198 ------- null}
+ -t 0.568655999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 198 ------- null}
- -t 0.568655999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 198 ------- null}
h -t 0.568655999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.568839999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 201 ------- null}
- -t 0.568839999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 201 ------- null}
h -t 0.568839999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.569311999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 196 -a 1 -x {0.1 4.1 196 ------- null}
r -t 0.569495999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 199 ------- null}
+ -t 0.569495999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 199 ------- null}
- -t 0.569495999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 199 ------- null}
h -t 0.569495999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.569679999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 202 ------- null}
- -t 0.569679999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 202 ------- null}
h -t 0.569679999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.570151999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 197 -a 1 -x {0.1 4.1 197 ------- null}
r -t 0.570335999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 200 ------- null}
+ -t 0.570335999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 200 ------- null}
- -t 0.570335999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 200 ------- null}
h -t 0.570335999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.570519999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 203 ------- null}
- -t 0.570519999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 203 ------- null}
h -t 0.570519999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.570991999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 198 -a 1 -x {0.1 4.1 198 ------- null}
r -t 0.571175999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 201 ------- null}
+ -t 0.571175999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 201 ------- null}
- -t 0.571175999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 201 ------- null}
h -t 0.571175999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.571359999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 204 ------- null}
- -t 0.571359999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 204 ------- null}
h -t 0.571359999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.571831999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 199 -a 1 -x {0.1 4.1 199 ------- null}
r -t 0.572015999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 202 ------- null}
+ -t 0.572015999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 202 ------- null}
- -t 0.572015999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 202 ------- null}
h -t 0.572015999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.572199999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 205 ------- null}
- -t 0.572199999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 205 ------- null}
h -t 0.572199999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.572671999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 200 -a 1 -x {0.1 4.1 200 ------- null}
r -t 0.572855999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 203 ------- null}
+ -t 0.572855999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 203 ------- null}
- -t 0.572855999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 203 ------- null}
h -t 0.572855999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.573039999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 206 ------- null}
- -t 0.573039999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 206 ------- null}
h -t 0.573039999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.573511999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 201 -a 1 -x {0.1 4.1 201 ------- null}
r -t 0.573695999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 204 ------- null}
+ -t 0.573695999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 204 ------- null}
- -t 0.573695999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 204 ------- null}
h -t 0.573695999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.573879999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 207 ------- null}
- -t 0.573879999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 207 ------- null}
h -t 0.573879999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.574351999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 202 -a 1 -x {0.1 4.1 202 ------- null}
r -t 0.574535999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 205 ------- null}
+ -t 0.574535999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 205 ------- null}
- -t 0.574535999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 205 ------- null}
h -t 0.574535999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.574719999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 208 ------- null}
- -t 0.574719999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 208 ------- null}
h -t 0.574719999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.575191999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 203 -a 1 -x {0.1 4.1 203 ------- null}
r -t 0.575375999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 206 ------- null}
+ -t 0.575375999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 206 ------- null}
- -t 0.575375999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 206 ------- null}
h -t 0.575375999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.575559999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 209 ------- null}
- -t 0.575559999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 209 ------- null}
h -t 0.575559999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.576031999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 204 -a 1 -x {0.1 4.1 204 ------- null}
r -t 0.576215999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 207 ------- null}
+ -t 0.576215999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 207 ------- null}
- -t 0.576215999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 207 ------- null}
h -t 0.576215999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.576399999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 210 ------- null}
- -t 0.576399999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 210 ------- null}
h -t 0.576399999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.576871999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 205 -a 1 -x {0.1 4.1 205 ------- null}
r -t 0.577055999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 208 ------- null}
+ -t 0.577055999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 208 ------- null}
- -t 0.577055999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 208 ------- null}
h -t 0.577055999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.577239999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 211 ------- null}
- -t 0.577239999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 211 ------- null}
h -t 0.577239999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.577711999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 206 -a 1 -x {0.1 4.1 206 ------- null}
r -t 0.577895999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 209 ------- null}
+ -t 0.577895999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 209 ------- null}
- -t 0.577895999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 209 ------- null}
h -t 0.577895999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.578079999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 212 ------- null}
- -t 0.578079999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 212 ------- null}
h -t 0.578079999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.578551999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 207 -a 1 -x {0.1 4.1 207 ------- null}
r -t 0.578735999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 210 ------- null}
+ -t 0.578735999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 210 ------- null}
- -t 0.578735999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 210 ------- null}
h -t 0.578735999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.578919999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 213 ------- null}
- -t 0.578919999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 213 ------- null}
h -t 0.578919999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.579391999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 208 -a 1 -x {0.1 4.1 208 ------- null}
r -t 0.579575999999997 -s 0 -d 3 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 211 ------- null}
+ -t 0.579575999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 211 ------- null}
- -t 0.579575999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 211 ------- null}
h -t 0.579575999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.579759999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 214 ------- null}
- -t 0.579759999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 214 ------- null}
h -t 0.579759999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.580231999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 209 -a 1 -x {0.1 4.1 209 ------- null}
r -t 0.580415999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 212 ------- null}
+ -t 0.580415999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 212 ------- null}
- -t 0.580415999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 212 ------- null}
h -t 0.580415999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.580599999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 215 ------- null}
- -t 0.580599999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 215 ------- null}
h -t 0.580599999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.581071999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 210 -a 1 -x {0.1 4.1 210 ------- null}
r -t 0.581255999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 213 ------- null}
+ -t 0.581255999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 213 ------- null}
- -t 0.581255999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 213 ------- null}
h -t 0.581255999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.581439999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 216 ------- null}
- -t 0.581439999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 216 ------- null}
h -t 0.581439999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.581911999999997 -s 3 -d 4 -p cbr -e 210 -c 1 -i 211 -a 1 -x {0.1 4.1 211 ------- null}
r -t 0.582095999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 214 ------- null}
+ -t 0.582095999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 214 ------- null}
- -t 0.582095999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 214 ------- null}
h -t 0.582095999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.582279999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 217 ------- null}
- -t 0.582279999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 217 ------- null}
h -t 0.582279999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.582751999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 212 -a 1 -x {0.1 4.1 212 ------- null}
r -t 0.582935999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 215 ------- null}
+ -t 0.582935999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 215 ------- null}
- -t 0.582935999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 215 ------- null}
h -t 0.582935999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.583119999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 218 ------- null}
- -t 0.583119999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 218 ------- null}
h -t 0.583119999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.583591999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 213 -a 1 -x {0.1 4.1 213 ------- null}
r -t 0.583775999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 216 ------- null}
+ -t 0.583775999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 216 ------- null}
- -t 0.583775999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 216 ------- null}
h -t 0.583775999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.583959999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 219 ------- null}
- -t 0.583959999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 219 ------- null}
h -t 0.583959999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.584431999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 214 -a 1 -x {0.1 4.1 214 ------- null}
r -t 0.584615999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 217 ------- null}
+ -t 0.584615999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 217 ------- null}
- -t 0.584615999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 217 ------- null}
h -t 0.584615999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.584799999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 220 ------- null}
- -t 0.584799999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 220 ------- null}
h -t 0.584799999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.585271999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 215 -a 1 -x {0.1 4.1 215 ------- null}
r -t 0.585455999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 218 ------- null}
+ -t 0.585455999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 218 ------- null}
- -t 0.585455999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 218 ------- null}
h -t 0.585455999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.585639999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 221 ------- null}
- -t 0.585639999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 221 ------- null}
h -t 0.585639999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.586111999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 216 -a 1 -x {0.1 4.1 216 ------- null}
r -t 0.586295999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 219 ------- null}
+ -t 0.586295999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 219 ------- null}
- -t 0.586295999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 219 ------- null}
h -t 0.586295999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.586479999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 222 ------- null}
- -t 0.586479999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 222 ------- null}
h -t 0.586479999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.586951999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 217 -a 1 -x {0.1 4.1 217 ------- null}
r -t 0.587135999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 220 ------- null}
+ -t 0.587135999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 220 ------- null}
- -t 0.587135999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 220 ------- null}
h -t 0.587135999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.587319999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 223 ------- null}
- -t 0.587319999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 223 ------- null}
h -t 0.587319999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.587791999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 218 -a 1 -x {0.1 4.1 218 ------- null}
r -t 0.587975999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 221 ------- null}
+ -t 0.587975999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 221 ------- null}
- -t 0.587975999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 221 ------- null}
h -t 0.587975999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.588159999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 224 ------- null}
- -t 0.588159999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 224 ------- null}
h -t 0.588159999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.588631999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 219 -a 1 -x {0.1 4.1 219 ------- null}
r -t 0.588815999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 222 ------- null}
+ -t 0.588815999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 222 ------- null}
- -t 0.588815999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 222 ------- null}
h -t 0.588815999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.588999999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 225 ------- null}
- -t 0.588999999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 225 ------- null}
h -t 0.588999999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.589471999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 220 -a 1 -x {0.1 4.1 220 ------- null}
r -t 0.589655999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 223 ------- null}
+ -t 0.589655999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 223 ------- null}
- -t 0.589655999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 223 ------- null}
h -t 0.589655999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.589839999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 226 ------- null}
- -t 0.589839999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 226 ------- null}
h -t 0.589839999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.590311999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 221 -a 1 -x {0.1 4.1 221 ------- null}
r -t 0.590495999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 224 ------- null}
+ -t 0.590495999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 224 ------- null}
- -t 0.590495999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 224 ------- null}
h -t 0.590495999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.590679999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 227 ------- null}
- -t 0.590679999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 227 ------- null}
h -t 0.590679999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.591151999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 222 -a 1 -x {0.1 4.1 222 ------- null}
r -t 0.591335999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 225 ------- null}
+ -t 0.591335999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 225 ------- null}
- -t 0.591335999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 225 ------- null}
h -t 0.591335999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.591519999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 228 ------- null}
- -t 0.591519999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 228 ------- null}
h -t 0.591519999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.591991999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 223 -a 1 -x {0.1 4.1 223 ------- null}
r -t 0.592175999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 226 ------- null}
+ -t 0.592175999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 226 ------- null}
- -t 0.592175999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 226 ------- null}
h -t 0.592175999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.592359999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 229 ------- null}
- -t 0.592359999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 229 ------- null}
h -t 0.592359999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.592831999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 224 -a 1 -x {0.1 4.1 224 ------- null}
r -t 0.593015999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 227 ------- null}
+ -t 0.593015999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 227 ------- null}
- -t 0.593015999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 227 ------- null}
h -t 0.593015999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.593199999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 230 ------- null}
- -t 0.593199999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 230 ------- null}
h -t 0.593199999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.593671999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 225 -a 1 -x {0.1 4.1 225 ------- null}
r -t 0.593855999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 228 ------- null}
+ -t 0.593855999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 228 ------- null}
- -t 0.593855999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 228 ------- null}
h -t 0.593855999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.594039999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 231 ------- null}
- -t 0.594039999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 231 ------- null}
h -t 0.594039999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.594511999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 226 -a 1 -x {0.1 4.1 226 ------- null}
r -t 0.594695999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 229 ------- null}
+ -t 0.594695999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 229 ------- null}
- -t 0.594695999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 229 ------- null}
h -t 0.594695999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.594879999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 232 ------- null}
- -t 0.594879999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 232 ------- null}
h -t 0.594879999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.595351999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 227 -a 1 -x {0.1 4.1 227 ------- null}
r -t 0.595535999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 230 ------- null}
+ -t 0.595535999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 230 ------- null}
- -t 0.595535999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 230 ------- null}
h -t 0.595535999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.595719999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 233 ------- null}
- -t 0.595719999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 233 ------- null}
h -t 0.595719999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.596191999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 228 -a 1 -x {0.1 4.1 228 ------- null}
r -t 0.596375999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 231 ------- null}
+ -t 0.596375999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 231 ------- null}
- -t 0.596375999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 231 ------- null}
h -t 0.596375999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.596559999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 234 ------- null}
- -t 0.596559999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 234 ------- null}
h -t 0.596559999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.597031999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 229 -a 1 -x {0.1 4.1 229 ------- null}
r -t 0.597215999999996 -s 0 -d 3 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 232 ------- null}
+ -t 0.597215999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 232 ------- null}
- -t 0.597215999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 232 ------- null}
h -t 0.597215999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.597399999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 235 ------- null}
- -t 0.597399999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 235 ------- null}
h -t 0.597399999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.597871999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 230 -a 1 -x {0.1 4.1 230 ------- null}
r -t 0.598055999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 233 ------- null}
+ -t 0.598055999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 233 ------- null}
- -t 0.598055999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 233 ------- null}
h -t 0.598055999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.598239999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 236 ------- null}
- -t 0.598239999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 236 ------- null}
h -t 0.598239999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.598711999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 231 -a 1 -x {0.1 4.1 231 ------- null}
r -t 0.598895999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 234 ------- null}
+ -t 0.598895999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 234 ------- null}
- -t 0.598895999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 234 ------- null}
h -t 0.598895999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.599079999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 237 ------- null}
- -t 0.599079999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 237 ------- null}
h -t 0.599079999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 -1 ------- null}
r -t 0.599551999999996 -s 3 -d 4 -p cbr -e 210 -c 1 -i 232 -a 1 -x {0.1 4.1 232 ------- null}
r -t 0.599735999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 235 ------- null}
+ -t 0.599735999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 235 ------- null}
- -t 0.599735999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 235 ------- null}
h -t 0.599735999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.599919999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {0.1 4.1 238 ------- null}
- -t 0.599919999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {0.1 4.1 238 ------- null}
h -t 0.599919999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 238 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.6 -s 1 -d 0 -p cbr -e 210 -c 2 -i 239 -a 2 -x {1.1 4.1 0 ------- null}
- -t 0.6 -s 1 -d 0 -p cbr -e 210 -c 2 -i 239 -a 2 -x {1.1 4.1 0 ------- null}
h -t 0.6 -s 1 -d 0 -p cbr -e 210 -c 2 -i 239 -a 2 -x {1.1 4.1 -1 ------- null}
+ -t 0.600336 -s 1 -d 0 -p cbr -e 210 -c 2 -i 240 -a 2 -x {1.1 4.1 1 ------- null}
- -t 0.600336 -s 1 -d 0 -p cbr -e 210 -c 2 -i 240 -a 2 -x {1.1 4.1 1 ------- null}
h -t 0.600336 -s 1 -d 0 -p cbr -e 210 -c 2 -i 240 -a 2 -x {1.1 4.1 -1 ------- null}
r -t 0.600391999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 233 -a 1 -x {0.1 4.1 233 ------- null}
r -t 0.600575999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 236 ------- null}
+ -t 0.600575999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 236 ------- null}
- -t 0.600575999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 236 ------- null}
h -t 0.600575999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 236 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.600672 -s 1 -d 0 -p cbr -e 210 -c 2 -i 241 -a 2 -x {1.1 4.1 2 ------- null}
- -t 0.600672 -s 1 -d 0 -p cbr -e 210 -c 2 -i 241 -a 2 -x {1.1 4.1 2 ------- null}
h -t 0.600672 -s 1 -d 0 -p cbr -e 210 -c 2 -i 241 -a 2 -x {1.1 4.1 -1 ------- null}
+ -t 0.600759999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {0.1 4.1 239 ------- null}
- -t 0.600759999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {0.1 4.1 239 ------- null}
h -t 0.600759999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 242 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.601008 -s 1 -d 0 -p cbr -e 210 -c 2 -i 243 -a 2 -x {1.1 4.1 3 ------- null}
- -t 0.601008 -s 1 -d 0 -p cbr -e 210 -c 2 -i 243 -a 2 -x {1.1 4.1 3 ------- null}
h -t 0.601008 -s 1 -d 0 -p cbr -e 210 -c 2 -i 243 -a 2 -x {1.1 4.1 -1 ------- null}
r -t 0.601231999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 234 -a 1 -x {0.1 4.1 234 ------- null}
+ -t 0.601344 -s 1 -d 0 -p cbr -e 210 -c 2 -i 244 -a 2 -x {1.1 4.1 4 ------- null}
- -t 0.601344 -s 1 -d 0 -p cbr -e 210 -c 2 -i 244 -a 2 -x {1.1 4.1 4 ------- null}
h -t 0.601344 -s 1 -d 0 -p cbr -e 210 -c 2 -i 244 -a 2 -x {1.1 4.1 -1 ------- null}
r -t 0.601415999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 237 ------- null}
+ -t 0.601415999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 237 ------- null}
- -t 0.601415999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 237 ------- null}
h -t 0.601415999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 237 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.601599999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 -x {0.1 4.1 240 ------- null}
- -t 0.601599999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 -x {0.1 4.1 240 ------- null}
h -t 0.601599999999995 -s 0 -d 3 -p cbr -e 210 -c 1 -i 245 -a 1 -x {0.1 4.1 -1 ------- null}
+ -t 0.60168 -s 1 -d 0 -p cbr -e 210 -c 2 -i 246 -a 2 -x {1.1 4.1 5 ------- null}
- -t 0.60168 -s 1 -d 0 -p cbr -e 210 -c 2 -i 246 -a 2 -x {1.1 4.1 5 ------- null}
h -t 0.60168 -s 1 -d 0 -p cbr -e 210 -c 2 -i 246 -a 2 -x {1.1 4.1 -1 ------- null}
+ -t 0.602016 -s 1 -d 0 -p cbr -e 210 -c 2 -i 247 -a 2 -x {1.1 4.1 6 ------- null}
- -t 0.602016 -s 1 -d 0 -p cbr -e 210 -c 2 -i 247 -a 2 -x {1.1 4.1 6 ------- null}
h -t 0.602016 -s 1 -d 0 -p cbr -e 210 -c 2 -i 247 -a 2 -x {1.1 4.1 -1 ------- null}
r -t 0.602071999999995 -s 3 -d 4 -p cbr -e 210 -c 1 -i 235 -a 1 -x {0.1 4.1 235 ------- null}
r -t 0.60221 -s 1 -d 0 -p cbr -e 210 -c 2 -i 239 -a 2 -x {1.1 4.1 0 ------- null}
+ -t 0.60221 -s 0 -d 1 -p cbr -e 210 -c 2 -i 239 -a 2 -x {1.1 4.1 0 ------- null}