Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rafael Peretti Pezzi
OpenFlatus
Commits
fae5b316
Commit
fae5b316
authored
Mar 05, 2012
by
Matheus Müller
Browse files
Remocao de pontos no perfil funcional, interface modificada e melhorias no codigo
parent
d1738f9b
Changes
36
Expand all
Hide whitespace changes
Inline
Side-by-side
Al.dat
View file @
fae5b316
0 0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
1.24565756824 0.206632653061
5.0 0
Ewindow.py
View file @
fae5b316
...
...
@@ -2,16 +2,19 @@
import
Tkinter
as
tk
from
PTE
import
*
from
pylab
import
*
from
layers
import
*
from
numpy
import
zeros
import
os
import
tkFileDialog
import
shutil
import
sys
##############################################################################
# Control variables and lists
Edict
=
dict
()
Ebuttons
=
list
()
Labentrys
=
list
()
Frames
=
list
()
i
=
0
Econtrol
=
0
...
...
@@ -49,15 +52,15 @@ def elem_select(i, button):
##############################################################################
# Init
def
ewin_build
(
window
,
OFlabentries
):
def
ewin_build
(
window
,
OFlabentries
,
mainwindow
,
calcbutton
,
distvar
):
##############################################################################
# Element addition
def
create
():
global
i
,
Edict
,
Ebuttons
Edict
[
i
]
=
dict
(
name
=
"New"
,
symbol
=
"Hf"
,
mass
=
178.
00
,
Z
=
72
,
dist
=
zeros
(
int
(
10.
/
float
(
OFlabentries
[
17
].
get
())
)),
LineShape
=
200.
,
profundidademax
=
10.
)
Edict
[
i
]
=
dict
(
name
=
"New"
,
symbol
=
"Hf"
,
mass
=
178.
,
Z
=
72
,
dist
=
zeros
(
int
(
10.
/
float
(
OFlabentries
[
17
].
get
()))),
LineShape
=
200.
,
profundidademax
=
10.
)
Ebuttons
.
insert
(
i
,
tk
.
Button
(
Eframe
,
text
=
i
,
width
=
1
,
height
=
1
,
command
=
lambda
i
=
i
:
elem_select
(
i
,
Ebuttons
))
)
Ebuttons
[
i
].
grid
(
column
=
((
len
(
Ebuttons
)
-
1
)
%
1
4
),
row
=
int
(
math
.
floor
((
len
(
Ebuttons
)
-
1
)
/
1
4
)))
Ebuttons
[
i
].
grid
(
column
=
((
len
(
Ebuttons
)
-
1
)
%
1
3
),
row
=
int
(
math
.
floor
((
len
(
Ebuttons
)
-
1
)
/
1
3
)))
i
=
i
+
1
##############################################################################
...
...
@@ -79,10 +82,9 @@ def ewin_build(window, OFlabentries):
Labelprop
=
tk
.
LabelFrame
(
window
,
text
=
'Properties'
,
relief
=
'raised'
,
bd
=
2
)
Labelprop
.
pack
(
side
=
'top'
)
Label1
=
tk
.
LabelFrame
(
window
,
text
=
'Elements'
,
relief
=
'raised'
,
bd
=
2
)
Label1
.
pack
(
side
=
'top'
)
# For Button Creation
Eframe
=
tk
.
Canvas
(
Label1
)
Eframe
.
pack
(
fill
=
'both'
,
expand
=
0
)
...
...
@@ -109,22 +111,28 @@ def ewin_build(window, OFlabentries):
Labentrys
[
5
].
configure
(
text
=
'Max Depht - %f'
%
Edict
[
i
][
'profundidademax'
])
Edict
[
i
][
'dist'
]
=
np
.
loadtxt
(
Edict
[
i
][
'symbol'
]
+
".prof"
)
LpFrame1
=
tk
.
Frame
(
Labelprop
)
LpFrame1
.
pack
(
side
=
'left'
)
LpFrame2
=
tk
.
Frame
(
Labelprop
)
LpFrame2
.
pack
(
side
=
'top'
)
LpFrame3
=
tk
.
Frame
(
Labelprop
)
LpFrame3
.
pack
(
side
=
'right'
)
for
i
in
range
(
3
):
Frames
.
insert
(
i
,
tk
.
Frame
(
Labelprop
)
)
Frames
[
0
].
pack
(
side
=
'left'
)
Frames
[
1
].
pack
(
side
=
'top'
)
Frames
[
2
].
pack
(
side
=
'right'
)
for
i
in
arange
(
3
,
5
):
Frames
.
insert
(
i
,
tk
.
Frame
(
Frames
[
0
])
)
EPframel
=
tk
.
Frame
(
LpFrame1
)
EPframel
.
pack
(
side
=
'left'
)
EPframee
=
tk
.
Frame
(
LpFrame1
)
EPframee
.
pack
(
side
=
'right'
)
Frames
[
3
].
pack
(
side
=
'left'
)
Frames
[
4
].
pack
(
side
=
'right'
)
EPframel2
=
tk
.
Frame
(
LpFrame2
)
EPframel2
.
pack
(
side
=
'left'
)
EPframee2
=
tk
.
Frame
(
LpFrame2
)
EPframee2
.
pack
(
side
=
'right'
)
for
i
in
arange
(
5
,
7
):
Frames
.
insert
(
i
,
tk
.
Frame
(
Frames
[
1
])
)
Frames
[
5
].
pack
(
side
=
'left'
)
Frames
[
6
].
pack
(
side
=
'right'
)
Labeldist
=
tk
.
LabelFrame
(
Frames
[
5
],
text
=
'Distribution'
,
relief
=
'raised'
,
bd
=
2
)
Labeldist
.
pack
(
side
=
'bottom'
)
Frames
.
insert
(
7
,
tk
.
Frame
(
Labeldist
)
)
Frames
[
7
].
pack
(
side
=
'top'
)
# Label // Entries numbers:
# 0 // 6 = Name
...
...
@@ -133,24 +141,25 @@ def ewin_build(window, OFlabentries):
# 3 // 9 = Symbol
# 4 // 10 = Line shape
# 5 // 11 = Max Depht
Labentrys
.
insert
(
0
,
tk
.
Label
(
EPf
rame
l
,
width
=
2
6
,
pady
=
2
,
text
=
'%s'
%
Edict
[
int
(
Econtrol
)][
'name'
])
)
Labentrys
.
insert
(
1
,
tk
.
Label
(
EPf
rame
l
,
width
=
2
6
,
pady
=
2
,
text
=
'Mass - %f'
%
Edict
[
int
(
Econtrol
)][
'mass'
])
)
Labentrys
.
insert
(
2
,
tk
.
Label
(
EPf
rame
l
,
width
=
2
6
,
pady
=
2
,
text
=
'Z - %f'
%
Edict
[
int
(
Econtrol
)][
'Z'
])
)
Labentrys
.
insert
(
3
,
tk
.
Label
(
EPf
rame
l
,
width
=
2
6
,
pady
=
2
,
text
=
'Symbol - %s'
%
Edict
[
int
(
Econtrol
)][
'symbol'
])
)
Labentrys
.
insert
(
4
,
tk
.
Label
(
EPf
rame
l
,
width
=
2
6
,
pady
=
2
,
text
=
'Line Shape α - %f'
%
Edict
[
int
(
Econtrol
)][
'LineShape'
])
)
Labentrys
.
insert
(
5
,
tk
.
Label
(
EPf
rame
l
,
width
=
2
6
,
pady
=
2
,
text
=
'Max Depht - %f'
%
Edict
[
int
(
Econtrol
)][
'profundidademax'
])
)
Labentrys
.
insert
(
0
,
tk
.
Label
(
F
rame
s
[
3
]
,
width
=
2
3
,
pady
=
2
,
text
=
'%s'
%
Edict
[
int
(
Econtrol
)][
'name'
])
)
Labentrys
.
insert
(
1
,
tk
.
Label
(
F
rame
s
[
3
]
,
width
=
2
3
,
pady
=
2
,
text
=
'Mass - %f'
%
Edict
[
int
(
Econtrol
)][
'mass'
])
)
Labentrys
.
insert
(
2
,
tk
.
Label
(
F
rame
s
[
3
]
,
width
=
2
3
,
pady
=
2
,
text
=
'Z - %f'
%
Edict
[
int
(
Econtrol
)][
'Z'
])
)
Labentrys
.
insert
(
3
,
tk
.
Label
(
F
rame
s
[
3
]
,
width
=
2
3
,
pady
=
2
,
text
=
'Symbol - %s'
%
Edict
[
int
(
Econtrol
)][
'symbol'
])
)
Labentrys
.
insert
(
4
,
tk
.
Label
(
F
rame
s
[
3
]
,
width
=
2
3
,
pady
=
2
,
text
=
'Line Shape α - %f'
%
Edict
[
int
(
Econtrol
)][
'LineShape'
])
)
Labentrys
.
insert
(
5
,
tk
.
Label
(
F
rame
s
[
3
]
,
width
=
2
3
,
pady
=
2
,
text
=
'Max Depht - %f'
%
Edict
[
int
(
Econtrol
)][
'profundidademax'
])
)
for
i
in
range
(
6
):
Labentrys
[
i
].
pack
()
for
i
in
arange
(
6
,
12
):
Labentrys
.
insert
(
i
,
tk
.
Entry
(
EPf
rame
e
,
width
=
1
8
)
)
Labentrys
.
insert
(
i
,
tk
.
Entry
(
F
rame
s
[
4
]
,
width
=
1
7
)
)
Labentrys
[
i
].
pack
()
# Declaration of interpolation method variable
# Declaration of interpolation
and distribution
method variable
s
methodvar
=
tk
.
StringVar
()
methodvar
.
set
(
'reta'
)
##############################################################################
# Load/Save sample
def
LOADSAMPLE
():
...
...
@@ -211,36 +220,80 @@ def ewin_build(window, OFlabentries):
elist
.
close
()
config
.
close
()
##############################################################################
# Menu
def
donothing
():
return
0
menubar
=
tk
.
Menu
(
mainwindow
,
bg
=
'grey'
,
relief
=
'flat'
,
bd
=
0
)
filemenu
=
tk
.
Menu
(
menubar
,
tearoff
=
0
)
filemenu
.
add_command
(
label
=
"Simulate"
,
command
=
lambda
i
=
int
(
Econtrol
)
:
calcbutton
.
invoke
())
filemenu
.
add_separator
()
filemenu
.
add_command
(
label
=
"Exit"
,
command
=
sys
.
exit
)
menubar
.
add_cascade
(
label
=
"File"
,
menu
=
filemenu
)
samplemenu
=
tk
.
Menu
(
menubar
,
tearoff
=
0
)
samplemenu
.
add_command
(
label
=
"Load Sample"
,
command
=
lambda
i
=
int
(
Econtrol
)
:
LOADSAMPLE
())
samplemenu
.
add_command
(
label
=
"Save Sample"
,
command
=
lambda
i
=
int
(
Econtrol
)
:
SAVESAMPLE
())
menubar
.
add_cascade
(
label
=
"Samples"
,
menu
=
samplemenu
)
helpmenu
=
tk
.
Menu
(
menubar
,
tearoff
=
0
)
helpmenu
.
add_command
(
label
=
"Help!"
,
command
=
donothing
)
helpmenu
.
add_command
(
label
=
"About..."
,
command
=
donothing
)
menubar
.
add_cascade
(
label
=
"Help"
,
menu
=
helpmenu
)
mainwindow
.
config
(
menu
=
menubar
)
##############################################################################
# Buttons
but
=
tk
.
Button
(
EPf
rame
l2
,
command
=
create
,
text
=
'Add element'
,
bd
=
1
,
height
=
1
,
width
=
15
)
but
=
tk
.
Button
(
F
rame
s
[
3
]
,
command
=
create
,
text
=
'Add element'
,
bd
=
1
,
height
=
1
,
width
=
15
,
pady
=
'4'
)
but
.
pack
()
butrmv
=
tk
.
Button
(
EPf
rame
l2
,
command
=
remove
,
text
=
'Remove element'
,
bd
=
1
,
height
=
1
,
width
=
1
5
)
butrmv
=
tk
.
Button
(
F
rame
s
[
4
]
,
command
=
remove
,
text
=
'Remove element'
,
bd
=
1
,
height
=
1
,
width
=
1
4
,
pady
=
'4'
)
butrmv
.
pack
()
butPTE
=
tk
.
Button
(
EPf
rame
l2
,
text
=
'S
how
PTE'
,
bd
=
1
,
width
=
15
,
command
=
lambda
i
=
i
:
elem_callback
(
Econtrol
,
Edict
,
Ebuttons
)
)
butPTE
=
tk
.
Button
(
F
rame
s
[
5
]
,
text
=
'S
elect from
PTE'
,
bd
=
1
,
width
=
15
,
command
=
lambda
i
=
i
:
elem_callback
(
Econtrol
,
Edict
,
Ebuttons
)
)
butPTE
.
pack
()
BUpdate
=
tk
.
Button
(
EPf
rame
l2
,
text
=
'Update properties'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
update
(
Econtrol
),
width
=
15
)
BUpdate
=
tk
.
Button
(
F
rame
s
[
5
]
,
text
=
'Update properties'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
update
(
Econtrol
),
width
=
15
)
BUpdate
.
pack
()
BUpdateD
=
tk
.
Button
(
EPframel2
,
text
=
'Distribution'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
os
.
system
(
"python profiler.py %s %s %s %s &"
%
(
Edict
[
int
(
Econtrol
)][
'symbol'
],
str
(
methodvar
.
get
()),
str
(
Labentrys
[
11
].
get
()),
str
(
OFlabentries
[
17
].
get
())
)
),
width
=
15
)
BUpdateD
.
pack
()
BLoad
=
tk
.
Button
(
EPframel
,
text
=
'Load Sample'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
LOADSAMPLE
(),
width
=
15
)
BLoad
.
pack
()
BSave
=
tk
.
Button
(
EPframee
,
text
=
'Save Sample'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
SAVESAMPLE
(),
width
=
15
)
BSave
.
pack
()
##############################################################################
# Interpolation methods
RS
=
tk
.
Radiobutton
(
Labelprop
,
text
=
"Step"
,
variable
=
methodvar
,
value
=
'step'
)
# Distribution
def
changestate
():
if
str
(
distvar
.
get
())
==
'layer'
:
BLayer
[
'state'
]
=
'normal'
BUpdateD
[
'state'
]
=
'disabled'
RS
[
'state'
]
=
'disabled'
RL
[
'state'
]
=
'disabled'
elif
str
(
distvar
.
get
())
==
'drawing'
:
BLayer
[
'state'
]
=
'disabled'
BUpdateD
[
'state'
]
=
'normal'
RS
[
'state'
]
=
'normal'
RL
[
'state'
]
=
'normal'
def
call_layers
():
layers
()
# By Layers
BLayer
=
tk
.
Button
(
Labeldist
,
text
=
'Open Layers'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
call_layers
(),
width
=
15
)
BLayer
.
pack
()
# By Drawing
BUpdateD
=
tk
.
Button
(
Labeldist
,
text
=
'Element Distribution'
,
command
=
lambda
i
=
int
(
Econtrol
)
:
os
.
system
(
"python profiler.py %s %s %s %s &"
%
(
Edict
[
int
(
Econtrol
)][
'symbol'
],
str
(
methodvar
.
get
()),
str
(
Labentrys
[
11
].
get
()),
str
(
OFlabentries
[
17
].
get
())
)
),
width
=
15
)
BUpdateD
.
pack
()
# Interpolation methods
RS
=
tk
.
Radiobutton
(
Labeldist
,
text
=
"Step"
,
variable
=
methodvar
,
value
=
'step'
)
RS
.
pack
(
side
=
'left'
)
RL
=
tk
.
Radiobutton
(
Label
prop
,
text
=
"Lines"
,
variable
=
methodvar
,
value
=
'reta'
)
RL
=
tk
.
Radiobutton
(
Label
dist
,
text
=
"Lines"
,
variable
=
methodvar
,
value
=
'reta'
)
RL
.
pack
(
side
=
'right'
)
# Distribution methods
RLay
=
tk
.
Radiobutton
(
Frames
[
7
],
text
=
"Layers"
,
command
=
lambda
i
=
int
(
Econtrol
)
:
changestate
(),
variable
=
distvar
,
value
=
'layer'
)
RLay
.
pack
(
side
=
'left'
)
RDra
=
tk
.
Radiobutton
(
Frames
[
7
],
text
=
"Drawing"
,
command
=
lambda
i
=
int
(
Econtrol
)
:
changestate
(),
variable
=
distvar
,
value
=
'drawing'
)
RDra
.
pack
(
side
=
'right'
)
##############################################################################
# Init
RDra
.
invoke
()
RS
.
select
()
Ebuttons
[
0
].
invoke
()
...
...
Ewindow.pyc
View file @
fae5b316
No preview for this file type
Hf.dat
View file @
fae5b316
0 0
1.22580645161 0.308673469388
1.38461538462 0.188775510204
2.03970223325 0.234693877551
2.55583126551 0.135204081633
4.20347394541 0.614540816327
6.04962779156 0.454081632653
7.06203473946 0.326530612245
8.23325062035 0.262755102041
9.20595533499 0.108214285714
10.0 0
Hf.prof
View file @
fae5b316
This diff is collapsed.
Click to expand it.
La.dat
View file @
fae5b316
0 0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
0.0 0.0
1.02543424317 0.165816326529
1.19851116625 0.163265306122
1.80397022333 0.00255102040817
2.27047146402 0.00255102040816
5.0 0
La.prof
View file @
fae5b316
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.16
5816326529
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.0025510204081
7
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.16
3265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.163265306122
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0025510204081
6
0.0