script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 44613
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV
RowNo.append(int(int(matrix_index[i]))%int(256)) #ver XV
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([3479882.2715635705, 3568270.3125, 3594449.6777186967, 3594456.25, 3596675.2517835903, 3614040.836833821, 3619503.794421508, 3625510.2853655876, 3626457.0903458814, 3628060.9375, 3654091.9429549533, 3679592.5238775187, 3683259.375, 3687076.5625, 3736244.6300093755, 3738549.306111465, 3864645.257580122, 3872501.5650694342, 3877925.482120591, 3879166.679566048, 3892617.823097926, 3916981.25, 3917810.1994227427, 3920428.125, 3921938.3524671895, 3923967.7387667596, 3925145.9922048952, 3927423.4375, 3927975.092577196, 3928753.169906432, 3928841.3613719638, 3929527.250658461, 3929555.520618878, 3930712.49734673, 3932397.6606703196, 3932963.727556019, 3933995.487954038, 3934631.585837302, 3935342.082231583, 3939129.6875, 3947014.5697197695, 3958471.7889988227, 3962265.625, 3964028.8198605888, 3964377.852949257, 3965118.75, 3967540.625, 3967859.375, 3968318.627290569, 3968421.294467844, 3969095.8256554664, 3969481.25, 3970130.445023188, 3970523.4375, 3970899.7035462176, 3971353.80263046, 3971458.0401037377, 3971784.375, 3971967.4184705997, 3971999.380302422, 3972143.75, 3972318.1642837496, 3974198.946606489, 3974207.8125, 3974296.8331669727, 3974463.880659377, 3976754.126864425, 3983489.9073657696, 3984451.609922405, 3984529.206126173, 3985282.8125, 4000084.375, 4005871.17954524, 4006665.625, 4014457.5628076945, 4029975.63087065, 4041970.3114167047, 4042691.6617072355, 4044193.443469607, 4044796.1375788315, 4110242.1875, 4334176.5625, 4430692.722623296, 4437233.381123965, 4454106.25, 4495187.5, 4506241.031617484, 4507453.125, 4521437.279405068, 4545489.572551925, 4550533.70583846, 4584374.250260866, 4712755.772889458, 4746225.0, 4749377.523994008, 4752482.034918056, 4753185.37014696, 4753231.25, 4774400.6466296, 4831481.0483574085, 4844557.594808566, 4855587.6746932715, 4860804.6875, 4861156.731432365, 4870436.374253127, 4874243.75, 4885141.4609370595, 4885282.146895267, 4902128.71880224, 4918078.125, 4927188.6660710005, 4938114.0625, 4952059.411818276, 4956420.699221372, 4956770.2538773, 4956771.8433507625, 4956801.476533285, 4958870.013679774, 4959362.5, 4959436.038635579, 4959773.4375, 4959884.375, 4959904.361864903, 4960373.4375, 4960654.540005952, 4960829.492834987, 4961220.182055533, 4962409.201019314, 4962489.689831262, 4962906.286945161, 4963287.5, 4965323.082826128, 4965402.460526811, 4965457.21634264, 4966649.166137446, 4968700.0, 4969150.0, 4969589.0625, 4972295.876116753, 4974848.369174258, 4974959.375, 4975023.041458853, 4980394.519835157, 4981870.220191517, 4987162.009972862, 4990287.18488838, 4994593.75, 4999011.384125616, 5006958.543947881, 5017243.75, 5028465.625, 5037674.232355898, 5039535.49032631, 5040586.881953103, 5041962.6364511475, 5042721.574569021, 5042985.9375, 5043406.25, 5045319.94479674, 5046908.86225369, 5047167.366965231, 5047557.266427271, 5047629.6875, 5049899.769394305, 5050399.823596708, 5058395.3125, 5059668.158981285, 5061935.126902402, 5065373.4375, 5065468.487572799, 5065488.891175753, 5065965.119778649, 5066480.889506656, 5066538.47891964, 5066889.387653053, 5066919.56024519, 5067146.322339446, 5067193.323579379, 5067388.266037761, 5067682.262120278, 5067694.635420772, 5067845.951454761, 5067930.565860693, 5067990.340111766, 5068255.941226527, 5068441.891818066, 5068483.938006678, 5068817.447043621, 5068827.398444691, 5069081.25, 5069168.6774889715, 5069340.6034828, 5069620.239891249, 5069810.893175974, 5069932.503632208, 5070469.359638355, 5070579.524945794, 5070620.571671795, 5070815.625, 5070839.806328669, 5071292.022698545, 5071295.71200079, 5071314.0625, 5071499.304692872, 5071541.5718114525, 5071656.99560593, 5071919.859333641, 5072105.71298428, 5072196.875, 5073065.317928875, 5073099.640969696, 5073121.306011371, 5073142.931179573, 5073751.273520189, 5073985.9375, 5074707.6476181075, 5076517.438960707, 5076561.4500516895, 5076606.25, 5078526.5625, 5078576.5625, 5078797.507479019, 5079459.228569562, 5080156.25, 5084011.448436755, 5089259.185302393, 5090568.75, 5092876.512485928, 5117565.4619817035, 5119738.934422079, 5120144.916454929, 5126131.25, 5131086.154187463, 5135470.489667237, 5150025.0, 5150032.136633368, 5151147.44308351, 5160006.683529093, 5160251.110581238, 5161520.906781573, 5163728.125, 5164849.316728729, 5169368.932037795, 5169687.125128137, 5169687.208287285, 5169831.15922152, 5175715.625, 5176281.25, 5180294.278665531, 5182958.576999655, 5184649.262732454, 5190084.196988441, 5191508.293593143, 5192176.237595593, 5192796.595731199, 5194131.25, 5194358.892446899, 5198884.375, 5201128.125, 5202103.125, 5202731.25, 5203339.462680224, 5203560.208764052, 5203565.22587005, 5203934.375, 5204018.75, 5204026.5625, 5204215.234321988, 5204576.5215913765, 5204595.3125, 5204839.858701982, 5204918.75, 5204972.784892485, 5205067.059977376, 5205259.375, 5205267.115929342, 5205312.5, 5205475.0, 5205575.130156971, 5205685.9375, 5205800.401169004, 5205868.75, 5205882.487996241, 5205953.089597799, 5206006.218001115, 5206036.313931357, 5206061.315519048, 5206196.514943725, 5206252.889328911, 5206256.25, 5206276.723678786, 5206527.880615752, 5206530.615202119, 5206624.484189379, 5206949.746388635, 5206950.5048408685, 5206988.575134508, 5207210.052306548, 5207889.584403315, 5208243.253677962, 5208901.5625, 5211225.9425826855, 5211440.625, 5212695.6105283415, 5212999.989951185, 5213055.100724311, 5213057.481329186, 5213745.3125, 5214953.5288669905, 5215780.83874386, 5221014.0625, 5221054.173089189, 5221779.502181156, 5221839.995970203, 5222176.771557996, 5222392.135637736, 5222690.625, 5222702.578790748, 5222715.1538121095, 5222755.085132685, 5223032.418697103, 5223104.497463066, 5223207.8125, 5223289.0625, 5223419.778269206, 5223481.820957897, 5223491.7867680155, 5223785.892623019, 5223815.33557197, 5223836.252094705, 5223865.43173342, 5223866.562968623, 5223874.606922677, 5223920.5619069515, 5223959.375, 5224008.9366987655, 5224028.506182664, 5224106.25, 5224107.760318015, 5224142.075133511, 5224168.786658077, 5224194.93401487, 5224226.5625, 5224228.125, 5224235.846057466, 5224249.048954712, 5224249.647029332, 5224250.0, 5224277.614758735, 5224282.446941486, 5224285.471968636, 5224285.9375, 5224293.75, 5224339.9063370675, 5224392.1602038825, 5224430.642105138, 5224441.514265243, 5224470.97354143, 5224484.679470884, 5224524.765580347, 5224529.676848145, 5224554.16198659, 5224612.5, 5224654.6875, 5224680.367543975, 5224694.978722719, 5224733.938305222, 5224779.6875, 5224792.1875, 5224822.411758443, 5224940.939080423, 5225032.8671719795, 5225062.622974708, 5225126.702536778, 5225150.0, 5225163.379089467, 5225188.788083397, 5225206.25, 5225234.375, 5225312.613201812, 5225364.501390655, 5225468.037492627, 5225510.277933826, 5225565.552797335, 5225593.737001402, 5227307.752654839, 5227388.461211329, 5228100.0, 5229084.929950996, 5231013.160109351, 6374195.994138641, 6507210.9375, 6510904.244241865, 6572964.271853284, 6573030.29795989, 6584865.1064160755, 6585640.599539983, 6631828.184190748, 6640301.755950619, 6645899.57221501, 6646934.944315956, 6679341.74047491, 6681835.9375, 6690810.9375, 6716508.01632543, 6787582.494527427, 6794041.09030954, 6801733.833118318, 6801745.3125, 6807066.368867035, 6809824.285507481, 6810032.8125, 6814248.4375, 6822044.026719068, 6825353.125, 6827246.831744827, 6827706.25, 6827841.896109048, 6828069.92882037, 6832967.1875, 6843643.342368835, 6848257.03029135, 6856425.0, 6857428.125, 6857676.251834121, 6859248.4375, 6859346.875, 6859746.875, 6860028.125, 6860144.812373088, 6860385.9375, 6860478.125, 6860682.233399341, 6861018.75, 6861330.341953209, 6861629.162417853, 6861885.9375, 6861907.958427872, 6862060.138055689, 6862098.4375, 6862265.026813629, 6862468.75, 6863526.5625, 6863626.5625, 6863659.375, 6865296.14221152, 6866332.164274778, 6869084.140786401, 6870709.375, 6871538.72015931, 6871665.146725905, 6872160.384368212, 6873282.411685061, 6873804.772340968, 6874400.0, 6875252.004079651, 6876320.3125, 6876557.0125426855, 6877093.767582739, 6877102.435407275, 6878303.752478336, 6881635.270756519, 6882331.25, 6885022.636195951, 6888912.430111699, 6889942.86519516, 6890999.829972658, 6892552.526746523, 6894610.851191667, 6894694.655883049, 6895574.835455992, 6897839.346640805, 6901423.4375, 6906188.812727972, 6906449.741177767, 6907048.180652632, 6907075.882993358, 6907477.991790208, 6907505.362303649, 6909469.170761222, 6910656.25, 6911084.786798677, 6911942.4793408355, 6913352.969094789, 6915310.331109165, 6916183.454482754, 6922327.329931944, 6922985.9375, 6924917.811051319, 6925317.204366399, 6926049.396325316, 6926837.053463044, 6927095.356529931, 6927842.127663522, 6928345.3125, 6928361.569049198, 6928364.39889559, 6928414.529785358, 6928834.03736133, 6928901.047483666, 6928951.407943989, 6928973.4375, 6929336.638964246, 6929418.632932125, 6929546.875, 6929716.864619238, 6930010.9375, 6930036.209979501, 6930563.345768066, 6930588.748080836, 6930717.1875, 6931076.020963571, 6931098.457900481, 6931124.3259831555, 6931301.180909013, 6931453.353330235, 6931459.375, 6931510.314050402, 6931603.125, 6931604.733683522, 6931643.689579815, 6931693.717482433, 6931700.0, 6931714.0625, 6931801.174515584, 6931844.508715964, 6931851.10537434, 6931889.160379255, 6931893.75, 6931940.625, 6931950.997149677, 6931964.353477199, 6932022.718320811, 6932039.9722206835, 6932070.050729867, 6932162.144320217, 6932190.625, 6932376.6208609445, 6932404.928516986, 6932483.127665689, 6932502.021145634, 6932533.232503176, 6932565.625, 6932603.125, 6932625.0, 6932719.922341181, 6932925.065955879, 6932962.792367912, 6932965.625, 6932971.875, 6933116.726799363, 6933127.925422322, 6933133.2116921265, 6933143.75, 6933152.469536274, 6933188.940166773, 6933207.733525701, 6933269.461236472, 6933383.55814752, 6933417.926328332, 6933468.75, 6933527.142879726, 6933717.1875, 6933823.43540785, 6934069.512252294, 6934118.237433356, 6934120.645688859, 6934128.0425035795, 6934159.175596501, 6934169.274761936, 6934229.6875, 6934352.899370449, 6934355.831575884, 6934424.2856230885, 6934487.008137156, 6934496.318439834, 6934514.500982089, 6934514.817089563, 6934526.115032729, 6934528.125, 6934767.292722661, 6934812.197653255, 6934825.522902817, 6934829.999434117, 6934898.924787633, 6934925.0, 6934989.451142461, 6935021.875, 6935024.491285099, 6935112.5, 6935129.574883999, 6935136.473685152, 6935163.710539821, 6935172.022290371, 6935275.0, 6935280.818769145, 6935307.610098492, 6935336.995897188, 6935478.538280174, 6935556.25, 6935775.0, 6935897.892049298, 6935956.25, 6936119.310803767, 6936424.878267652, 6936455.365590981, 6936479.865841721, 6936499.495945391, 6936576.5625, 6936634.305696685, 6936693.654976609, 6936744.947898284, 6936801.77918495, 6936823.189256238, 6936900.0, 6937054.6875, 6937720.341101134, 6938584.212934153, 6938837.137029659, 6942744.843935446, 6944026.559059108, 6958582.175324715, 6958584.323733585, 6958964.137083205, 6959781.290633755, 6960928.256868311, 6961026.5625, 6961161.681746031, 6961893.013205416, 6961928.444381484, 6962181.6096544275, 6962437.022682818, 6963070.257177131, 6964906.804416845, 6965460.232111978, 6965692.320885304, 6966056.25, 6967321.554850133, 6969993.981630167, 6976043.1535526225, 6976939.973503656, 6978326.235990357, 6978896.491744177, 6979905.709054391, 6982677.070503348, 6982757.8125, 6985148.36730911, 6987052.982633123, 6993562.895574128, 6993668.75, 6993681.689377959, 6994729.225409921, 6995838.212661765, 6997411.321595294, 7000026.581154338, 7002362.460475825, 7008353.125, 7017848.4375, 7020050.0, 7021506.1599281365, 7023959.148589724, 7024726.5625, 7024832.8125, 7025389.0625, 7029348.766415234, 7031430.893323357, 7032179.6875, 7032376.498941556, 7034133.712002623, 7034467.796339197, 7035643.75, 7037143.33320635, 7038357.877331979, 7040143.896852869, 7040723.85666687, 7042785.598060718, 7043345.040974619, 7045000.0, 7045181.25, 7045755.510701112, 7047141.843243821, 7047514.0625, 7049380.257701058, 7049501.5625, 7049537.247211366, 7051461.642864619, 7052557.8125, 7054107.475980746, 7056074.197715229, 7056338.470108332, 7056871.444676714, 7058248.4375, 7059977.7750701355, 7061230.910738644, 7062004.167868961, 7062376.5625, 7063622.124581311, 7063706.25, 7066695.549712675, 7068131.0843846, 7068173.507220812, 7068275.986431607, 7068517.1875, 7068974.9601809215, 7069016.031917264, 7069047.096406723, 7069771.812100078, 7069937.427884632, 7070253.125, 7071111.271885853, 7071632.578672367, 7071837.5, 7071979.6875, 7072084.425704559, 7072196.875, 7073293.877929904, 7075396.454666216, 7081790.625, 7083431.25, 7086273.548810973, 7087876.5625, 7088253.125, 7088642.652981645, 7088792.1875, 7090365.625, 7091169.326914396, 7092508.611124538, 7094218.215746578, 7095895.497864037, 7096497.093250802, 7097560.454791405, 7099267.968519554, 7102285.4166049315, 7104578.125, 7106359.375, 7108810.9375, 7109906.227420356, 7111194.368082609, 7112087.5, 7112367.5342490785, 7112667.118969541, 7114712.5, 7119326.539076371, 7123904.6875, 7129281.6921669, 7132898.271218009, 7135449.222257177, 7135967.1875, 7136627.136470465, 7136768.75, 7137334.375, 7137351.186765079, 7137596.875, 7138134.770134213, 7138205.387137628, 7138222.659621556, 7138237.023230174, 7138717.1875, 7139324.809859575, 7139489.034826313, 7139805.481418487, 7139883.661935324, 7140172.661106609, 7140231.3339060005, 7143890.438258253, 7144160.348244137, 7145619.760925637, 7145954.302031126, 7150780.614721057, 7150944.964354607, 7151163.794982317, 7155776.5625, 7159848.4375, 7160842.54261339, 7162437.587649635, 7163414.423213007, 7168391.056092707, 7172052.147935368, 7173430.6279098205, 7174371.083064618, 7177559.035163705, 7178188.462453836, 7180007.484445045, 7181335.626992576, 7182540.625, 7182587.246830799, 7183691.213632105, 7183973.4375, 7184223.128722099, 7185020.922099794, 7185098.4375, 7186611.977192658, 7189229.071083616, 7190372.717688182, 7190390.12291207, 7190905.327252368, 7191320.3125, 7191421.699029655, 7191601.5625, 7191865.625, 7192506.412789534, 7192720.616095358, 7192913.074928116, 7193581.25, 7193898.4375, 7194482.921016621, 7194517.6072131535, 7196171.244076976, 7198732.872926985, 7199382.57949176, 7199708.899997584, 7200109.66157479, 7200111.525428853, 7200762.349160912, 7201306.189189249, 7201474.753446751, 7202614.402040521, 7203245.3125, 7203934.375, 7205124.546937718, 7205338.921837826, 7210149.069905978, 7210840.631004007, 7211360.207160012, 7213773.4375, 7214285.9375, 7219125.2747750245, 7223040.435332608, 7223521.875, 7223984.478627144, 7224971.5000074785, 7224994.4314132435, 7225741.56329249, 7226634.132686926, 7226864.817688355, 7226876.860750338, 7228476.5625, 7228537.285056389, 7228773.254178528, 7228861.823737353, 7229712.5, 7230381.131845914, 7230625.537268028, 7230676.5625, 7230822.039519066, 7231027.892556925, 7231369.748043564, 7232149.068729887, 7232167.737142703, 7232229.995093022, 7232345.658133609, 7233652.867359546, 7233727.377658011, 7233746.205170213, 7233890.625, 7233937.5, 7234094.159675399, 7234315.625, 7234332.8125, 7234798.751977236, 7234902.321571852, 7234943.580019732, 7235321.85519202, 7235323.027276826, 7235324.762473323, 7235582.8125, 7235609.375, 7235929.6875, 7236354.610285225, 7236515.096075454, 7236626.5625, 7236695.196117649, 7236882.716058247, 7236995.658943456, 7237044.293502795, 7237180.744652085, 7237560.64216634, 7237575.0, 7237652.054728826, 7238205.607132945, 7238474.018712048, 7238482.58065019, 7238567.1875, 7238577.241111171, 7238627.067321068, 7238831.1458909875, 7238847.318324079, 7239080.634861367, 7239102.815223075, 7239137.5, 7239186.6771552, 7239187.123154033, 7239325.502659158, 7239363.681710437, 7239435.673001714, 7239461.643397808, 7239479.325912659, 7239505.372980159, 7239525.0, 7239533.917638685, 7239535.9375, 7239582.8125, 7239661.885716734, 7239681.58814542, 7239801.633853041, 7239854.128760917, 7240008.554243618, 7240012.459221523, 7240104.897448278, 7240126.5625, 7240138.560628585, 7240175.0, 7240490.043579237, 7240564.0625, 7240596.565193965, 7240632.8125, 7240661.179691219, 7240694.836429745, 7240702.1323997425, 7240933.863863643, 7240967.951917977, 7240969.70348104, 7241008.092897887, 7241021.486420734, 7241078.125, 7241081.25, 7241247.888914906, 7241463.710400428, 7241573.086722342, 7241591.23449904, 7241698.4375, 7241703.4620155655, 7242221.875, 7242371.157745181, 7242399.904896836, 7242466.883361149, 7242548.4375, 7242845.602151509, 7242886.221815445, 7243306.651237296, 7243335.932957451, 7243603.111985825, 7244054.6875, 7244069.770714636, 7244521.665180522, 7244604.6875, 7245027.586538115, 7245157.8125, 7245269.978715415, 7245371.979756168, 7245604.501080005, 7245891.755973094, 7246010.9375, 7246084.375, 7246101.550877057, 7246455.727043197, 7246526.330579147, 7246700.0, 7247027.819555859, 7247376.5625, 7247411.364548663, 7247656.25, 7248170.3125, 7248450.0, 7248976.499065153, 7249409.375, 7249892.1875, 7251168.75, 7251350.130421009, 7251359.62874821, 7252404.094415788, 7254174.314467945, 7256721.455512901, 7257330.62068624, 7258733.204467745, 7259398.219082091, 7259423.614741474, 7259942.78690061, 7260472.763079933, 7264378.539550724, 7267818.206391207, 7267880.5469093695, 7269830.3819850525, 7270939.0625, 7272645.3125, 7276940.531574293, 7277095.3125, 7277783.159659506, 7277946.875, 7277954.6110484395, 7278170.3125, 7278425.895967523, 7278547.386470348, 7278592.745011684, 7278605.778165587, 7278817.254325857, 7278952.856042553, 7279280.85272871, 7279328.213998909, 7279354.6875, ...], [23.643179141140145, 42.48318675860151, 7.49068981877128, 38.75842704829169, 55.009473336974054, 58.88633547569222, 60.197385193128795, 65.49096292361664, 25.30843565653029, 41.276303867402994, 37.45761306700592, 11.697607824175828, 50.70240498088894, 66.83867312665454, 6.385174658119688, 19.754911269813267, 9.285393066197798, 5.533205257348808, 5.049763256379972, 21.414318264582853, 18.081370868365134, 99.78294792882534, 26.606017069682487, 88.7261801908893, 19.62593082483185, 58.19591031009723, 68.28432413717798, 39.848828011611005, 21.234004872169102, 15.115479511171577, 6.609070856586649, 22.84116788302886, 8.782449318495814, 28.472737453495945, 19.11444227483412, 9.063385533589795, 62.08199726109537, 7.21262302455745, 14.554902388740278, 47.87885989689192, 8.574343511483082, 53.975034304842865, 43.73534919401438, 20.833046080772135, 24.114442850576115, 58.5065949828188, 71.05160201515565, 74.1621906159377, 15.223457633849755, 16.522527162558763, 5.740213902291141, 49.63789098547725, 39.74290956257322, 58.27430818409509, 23.79614561793198, 68.5407030851345, 7.687686055010499, 65.97972700682142, 15.901556486002182, 5.769507993433238, 53.92730846113785, 30.162336381826176, 9.802479473874799, 72.14329351424168, 44.93504228610041, 63.361247584736475, 16.037146498708456, 8.79033269708307, 9.371825994328798, 5.191329019680247, 82.39962003712566, 80.66648916533633, 8.805293894072637, 70.01036295652969, 96.14781042562751, 59.16872228730954, 25.009225292200433, 13.255956485654277, 7.043139853597584, 12.719666040415932, 67.23144460986833, 43.33260261084348, 17.466833653442194, 21.681055189572405, 29.212998049811464, 83.5054839338351, 103.769514396483, 57.62491590129914, 24.820943344503643, 166.41672811462118, 72.29800257140437, 10.128275178784884, 32.48242123989794, 90.41076307269562, 20.541403339879917, 12.62509219971626, 69.61978550380871, 39.81436128573606, 27.023148163817684, 25.09405221552067, 39.72323950240246, 11.41220224031305, 50.33002692663899, 17.160444117278082, 24.263864849443813, 51.268183627665444, 106.09979589439044, 47.839822923709036, 14.01553926979719, 88.39180151609011, 5.681984314447093, 102.65474539971456, 21.451735070420938, 99.17978916282216, 27.41611224901962, 64.82713542650596, 6.256397848858421, 30.767420167745815, 87.99031047275139, 23.392441141205218, 52.518266441137534, 112.58428133306258, 7.038404560089484, 71.688993578627, 25.91606410015208, 91.95968001806459, 26.188535329420432, 25.505999248946754, 12.27373390779271, 15.084222050080985, 39.8487732977939, 137.6699925419507, 68.91971510653714, 13.07018899967099, 5.754754598878808, 59.49910128952639, 54.54289610559196, 157.07989280870086, 44.15576575609016, 9.274290478727245, 62.256796823254625, 32.22281495904736, 58.32357240095782, 60.35141139260419, 30.71805830990632, 23.55961197987252, 33.85323571924356, 6.325325033503332, 10.037285521941111, 62.52248589634203, 44.284382318870485, 19.18274084428906, 7.4491320307590625, 30.879248502807904, 54.13285663194078, 5.063473547458756, 69.45989990385705, 85.99206799881875, 13.703592725539655, 21.36688440597751, 8.383817756859285, 44.54604541703853, 71.22919153557982, 6.238496109638879, 6.245165409699367, 38.477588465925436, 8.8771140012833, 33.674826867795616, 76.66063755551123, 5.0933259613568955, 14.326378163924026, 21.441172118190238, 13.725081601711175, 20.697981648545532, 9.6223528350762, 13.942233726417477, 13.184098499173407, 67.03763829037807, 7.905975735057047, 21.004838098286353, 5.319243902267688, 45.20782484128271, 52.099902608210236, 31.982986859278302, 9.083286608631072, 27.578582823560993, 8.068259694676954, 16.032540816866252, 19.49614403858449, 49.03564233516376, 56.84270447702569, 8.27523135296578, 27.16636592993714, 61.79918284781335, 71.20677515022098, 17.917147901459394, 9.197635327664615, 24.94907327464172, 57.632239482669426, 11.045342103604202, 25.646335357757017, 9.693705183611135, 48.32421100038188, 16.837241554248216, 103.39223455937577, 19.435132381986687, 10.486278894005872, 7.419908036982027, 41.026270395881504, 29.885248825925384, 23.024902040818336, 20.831442588798716, 67.44149012374018, 9.098450134689466, 56.53941009687496, 253.3812585176222, 15.99518716784049, 17.336261913972063, 66.16744061824744, 68.52935262678263, 32.76139568535981, 8.65198180329568, 87.75772072208305, 54.281407195239815, 14.507036495051366, 10.843601301589374, 139.04531903601634, 132.9393767981352, 23.042376668809208, 51.53419619005201, 42.09983442875305, 100.50042395393842, 15.837173478761434, 11.416402467526362, 63.93835459931459, 26.531759051741922, 41.80298063825602, 29.455082648214187, 13.45968683408762, 6.345319424372239, 50.984619892165476, 12.850652698271537, 6.8004014447021195, 22.83925852836962, 58.944302419649745, 14.606436526601984, 69.55792103602471, 95.05008624815582, 17.429209821326985, 76.15773422057404, 50.608415336674405, 14.303811474284936, 7.787030234718944, 134.2229574193732, 42.05262712424546, 86.13328630825801, 17.65062302736053, 96.86359717880586, 52.492109843423286, 34.17991946774449, 67.83555429035036, 16.72304055692598, 108.93386007053564, 35.487380340723796, 125.40468240799407, 36.430533143619584, 82.10175637330744, 5.279170124195056, 101.8763836594552, 80.99005602997438, 13.005864433940278, 42.16306536255441, 82.03324962185427, 26.235921732651764, 81.74202084105647, 24.671353510235914, 55.87738976747239, 68.44511017001646, 6.283784017423068, 32.68631465438965, 70.78923107000583, 42.07695840856658, 5.790353688024057, 27.843046443104036, 14.82093137090286, 37.507557180094174, 8.497135575997664, 8.104929189468175, 50.78074376120947, 30.1308379635501, 9.471511698853407, 10.766059880638501, 20.246150802608533, 6.992155505447037, 139.76724711384853, 5.852302973554594, 33.61052418551746, 9.9782701707478, 34.29029354512676, 25.700498060679863, 30.632344773024485, 20.37483150372951, 70.51887284047145, 85.68911669583268, 6.761502057239604, 16.79123897659122, 86.9335720282738, 72.66156548756537, 6.846905999917864, 13.575848337570843, 167.99045547080345, 20.217755910776905, 25.335187471070835, 8.850708341433952, 23.160038506130505, 81.09586034015715, 107.0529774075215, 10.369289742266867, 22.61515624445096, 37.11125053586444, 22.622190712006947, 8.188575820710458, 46.40428402740564, 96.53209780626162, 21.1582934786071, 17.679603782367995, 25.13461929029323, 27.666949003209773, 6.4426581927946005, 68.45788983709541, 210.9006628711238, 10.274205984450555, 59.13093456600192, 15.98573411353485, 112.77304407676161, 22.131479462563014, 12.227476952613316, 51.3775061965385, 112.25877483954073, 65.49854215904213, 17.059984846165463, 28.258805353109583, 60.33937984464745, 66.24554634651668, 14.509357236357191, 12.239979971318308, 13.747608000689496, 68.18374860701678, 13.298084861835388, 66.50679424389087, 47.58125416332893, 40.52518987059326, 62.61888799517643, 15.310627874301328, 9.308428923569874, 17.017735577416865, 25.6560204672056, 12.346367256565692, 16.24460528763577, 14.117440525215068, 6.761381869841331, 163.43264852030123, 77.51236374976321, 97.43152484767688, 91.43452827634249, 23.328663790361038, 56.766931443054126, 117.0577053686185, 37.908533040546764, 12.084950932568912, 16.290966174739456, 7.623132023346532, 9.437595856792317, 15.503551526216093, 34.71427860634565, 47.097024660042365, 24.083129025871145, 58.932737987558184, 61.831057678116245, 48.95701197696733, 11.890804088249796, 19.606351447139442, 7.380918162977932, 29.28043720802571, 28.270204515738865, 84.96386515065348, 16.28006013860185, 37.836284067444915, 46.128908027264075, 26.802639471933592, 18.382611766349743, 123.70519821821544, 22.07844206537106, 11.471504985433308, 5.363284315009734, 15.545145012425706, 38.8728778077414, 15.172020591975558, 54.23168906714006, 50.8285917669282, 5.361816024636647, 33.35347265987614, 172.7206898527469, 205.53773101180428, 5.102489102539771, 23.523849929168822, 7.7806729045777345, 10.374632306573373, 103.1868026010326, 12.53060209431637, 66.37103335357925, 70.06565505954023, 59.236584188386836, 5.963871689963087, 71.76885819021776, 7.587667589020204, 76.75045464048243, 13.93615189634733, 22.73762897386581, 48.52522125453673, 22.466823971019807, 19.074738364386732, 78.71247318244771, 31.80170256907568, 82.52328587001345, 67.71057740163717, 107.37674891271995, 85.61330405109899, 106.75648161468814, 21.49183431607434, 28.663389589042822, 41.39905461195945, 220.22788102827718, 39.64811070780111, 21.86368990127322, 21.246488945767638, 99.99995025133543, 15.528504324798941, 131.8211043452174, 29.763183981591432, 10.305852749683861, 44.481561854672805, 234.73047199407924, 36.713261014984376, 112.65773361797866, 101.3071106776356, 20.13179647708414, 24.629090198253476, 57.914000690491704, 10.631688446043128, 7.43895314631348, 20.97896534626243, 167.25382934778676, 9.40418630257736, 51.81600716741768, 16.942111205467693, 155.59991708465196, 116.6057026211048, 24.81812940299292, 12.835150682156224, 9.925025750559879, 92.04364178507673, 106.54566340867852, 8.734783589417773, 20.97341727312984, 23.800931705304468, 14.330766473453696, 34.12590350867242, 134.55670503570576, 12.916643495322232, 5.0387819180762845, 18.070136408849315, 71.94672778972841, 14.067917116316536, 84.62072171006915, 65.73420973727993, 7.95720464551191, 6.25051370474027, 62.07371762606188, 46.895146122979, 61.80693260181905, 8.517048747055949, 5.046496530429146, 5.696907110002234, 20.4936220934906, 39.50799423144137, 5.757404503437924, 106.12919516270419, 6.349330737262159, 84.46861551801157, 13.050799214956596, 13.474893128603641, 26.67285364602696, 14.718242264898917, 58.68264219669225, 9.92933798346559, 16.400030068018634, 40.98414601575813, 23.28157827000219, 10.408011567811737, 6.733038005174626, 30.85544616178239, 14.621537803085102, 43.174581123446316, 38.00278742864853, 40.65920901596585, 56.370450275321744, 24.450732639285977, 10.166044617690602, 32.17997637318741, 28.664860346632675, 13.21370908846302, 8.297394984457785, 26.098518291629375, 184.99048667635174, 105.77827450809875, 56.07575551735824, 10.275498856321144, 70.4407795038255, 32.33223069262975, 27.38370932791273, 65.01225362336379, 56.0165219582963, 127.41376176304504, 13.643669674623755, 27.145474765814647, 13.445022828176578, 11.284224318942545, 80.19420419545717, 43.354584922613654, 43.0252930707204, 16.18010915651941, 6.180419049643301, 10.240644002351026, 24.25167535130146, 31.421378144461926, 115.42262708754119, 59.17997861703719, 11.526556645720717, 133.23717896818695, 239.96530756005362, 9.713721659416494, 30.573425704673163, 60.15992387126194, 30.206141238293846, 22.66357786067122, 10.250658693965018, 64.62498581020115, 43.303780653948714, 61.10457829085228, 37.89001590020446, 83.81506307990462, 21.867303048004423, 106.37084729102503, 20.070828882228138, 26.32059191025989, 9.265506898819885, 16.354508063116874, 40.73703854237639, 53.80781273225678, 40.573822412622924, 9.875613806058778, 43.19979171771679, 13.075475217019614, 18.943129819980836, 13.291760219194575, 22.423066873489446, 5.807901348955455, 9.168301747609767, 12.060617707869337, 65.3819184006771, 24.7495969016215, 13.555157197886794, 19.591592386468456, 13.348387174270544, 29.202198044107465, 6.55809643364102, 10.062888842670992, 40.473239040110336, 33.18565180136074, 8.343015834271228, 5.518584448880147, 5.307517328529061, 11.65299194084908, 7.789531672689121, 59.82310373767486, 9.683164439834847, 113.61137762094623, 71.89280130858029, 56.990034751873715, 38.06569820210768, 17.473040884504, 69.38918430000838, 112.47425331718065, 85.26150206504826, 10.514523869063062, 14.222363252515752, 142.10088295507276, 51.89155079539393, 60.227858433277284, 86.84539551022414, 113.53944670383024, 85.14422908616581, 81.69827134930216, 24.659403228897183, 18.35893096111014, 21.125249189867752, 21.452748479695064, 44.10186769869843, 114.97836623069158, 33.95296991784029, 72.09225227694351, 160.03963139454993, 96.51324443363075, 55.47860555768001, 67.86330321864277, 12.097451286824924, 105.52824563840659, 22.97838249441659, 28.36953795587377, 5.34180378925065, 118.65231040083957, 52.58469048560475, 5.536711282357216, 6.272345835219124, 33.23895054621099, 71.70461652603069, 6.610450004681599, 19.416813012127257, 7.722986797427229, 6.54498791900449, 5.779487323583089, 40.29836279411502, 13.088343349093654, 19.66281750056107, 11.342799841491724, 38.95817756130985, 56.42184058132743, 35.54721693382737, 182.58514693006111, 54.78103514307996, 61.0538915368008, 22.74249355340523, 21.094143998783167, 17.310264502959093, 64.41302971125788, 50.70418393872362, 25.997284865769437, 201.6311861109213, 79.29981730061705, 11.891746683310178, 16.855053482521228, 175.08281782114545, 8.50070353295684, 38.21397102019165, 87.56501120290054, 31.884541855199927, 50.496669730028934, 63.29940421004952, 117.0416829254267, 37.94607743561728, 51.79274367705849, 45.508593972423725, 126.82923052048702, 21.511713479316157, 8.10655650875275, 35.52223494170974, 9.27823298948128, 20.007873194664832, 41.82753328170516, 85.22939274006723, 109.46160852200839, 9.386830572228455, 9.458741084147539, 37.129299746742674, 14.237477548959058, 87.91131574095371, 57.289061742287245, 37.53412154797886, 19.39753658417865, 16.97023242194226, 183.78824695849306, 9.865049793540043, 55.98265989084147, 31.73327198404999, 18.543063432169077, 95.03544149309165, 75.2477629080532, 130.9310996920352, 82.13158092933458, 22.217510313011758, 99.11931718433507, 130.78182361522758, 23.26186093079368, 10.402251731116092, 46.42228265933681, 7.188641774828865, 51.75152772057092, 9.540371047534888, 25.63381628161176, 7.628650673268919, 82.53738180112892, 38.07024444503194, 38.45579737151329, 148.18101998604936, 5.830546135606269, 11.030793178741998, 27.175084164720076, 46.55398911341917, 13.527061298437587, 9.141216729711255, 35.07896711840742, 100.5250960842625, 6.495069097867007, 38.49256578227709, 76.05644613578995, 54.76499649964602, 137.4425693730533, 83.07034081115371, 201.80291617984997, 38.146323052139316, 32.161281650260754, 9.758660622737779, 73.72485893477406, 45.88652930731064, 17.715641028007965, 28.282202930158874, 35.113631622072916, 15.698458791166175, 15.84418546335607, 24.269076710594383, 38.41095718121744, 170.3606204295761, 58.967343510641754, 28.890321410647903, 58.44990895785796, 222.98314798609186, 14.403757361644434, 155.68904700099364, 16.451310769566387, 22.222492164856675, 94.44461397049258, 14.852974853962102, 94.74910108442147, 105.79849244250792, 145.6176148140699, 19.107687010291617, 41.19718506562112, 183.92533427328794, 34.51375546804897, 29.040461526952182, 17.932860938804502, 43.622937543938775, 28.57462754007489, 8.694791173485433, 48.80251641958729, 14.270486855043, 56.697769419943846, 9.175642182240292, 49.8529241046795, 166.63627110777185, 5.269557894944566, 13.541843578756135, 5.618702947346201, 82.0767920246989, 149.01820656888998, 103.34786149124359, 34.86451824653509, 12.970214004216682, 45.40471507772475, 79.70925343669964, 52.249396205797524, 50.106295529257984, 6.544237485336574, 11.2675294733319, 155.75713813473126, 50.636915153206374, 6.582953861805139, 19.601390558175694, 50.61474692649559, 83.6448740137173, 13.060147663870842, 133.02365054170616, 13.876817769813952, 50.509228785725554, 24.36795802212075, 17.787105156311245, 70.07736237278836, 23.639259974863634, 95.04970961141217, 38.253825918984624, 35.77752138889603, 203.9328184400976, 12.761817992957981, 21.472297272754954, 153.73805319085758, 71.20295192273949, 25.475823852336173, 30.924374807372132, 91.15341192845115, 9.472951557634465, 16.240399211095013, 18.441694610330337, 37.155571467862664, 93.3869962374001, 6.099457159166862, 5.637693467690134, 15.225792752263935, 7.625240290673269, 14.122018745814435, 91.66606880047733, 76.12854879747903, 25.728597552169386, 34.49048115830254, 206.50306087030123, 24.458332385980395, 21.69580336036832, 46.101049650658176, 30.040704355037654, 5.900897923714717, 36.362052619438764, 18.060964431269284, 45.12655840022305, 8.781807052404597, 62.67795124358528, 38.76228238156312, 58.52201156286199, 82.5201855680854, 38.259530259832346, 9.420590291916396, 22.837858713910492, 18.381104843071643, 87.90374885965782, 64.72927596729127, 19.05056211977954, 39.362949406556915, 53.455837321965795, 21.57636956449044, 20.092671845446805, 19.89823662176764, 64.31546144927724, 48.93873705662371, 66.67134369035594, 54.22206242906556, 90.18851179957163, 14.123853185496488, 82.60566784284488, 12.28206661665418, 41.06176168868065, 9.605776873723407, 158.31980792359775, 34.82546933368774, 26.08958654265457, 15.12892246512689, 73.11608095451362, 74.75017775851828, 11.834719475093681, 77.98325029273201, 73.28617225071869, 6.82795665044607, 12.565347859013748, 8.198688859502104, 28.138740332940433, 13.57883776605296, 183.63396538966774, 146.10512527613042, 64.11098980292256, 69.34937528530801, 14.65514972920828, 8.920920676618287, 63.97520313157338, 5.527458673540174, 41.60375511409816, 11.71613948206678, 43.42283157601556, 6.4106877141676, 201.5425000125338, 88.79766553901722, 88.26103826816228, 6.641608943841725, 5.744774036472241, 204.97495430132366, 31.920525431400353, 8.681297090336196, 65.37815435418061, 14.559006822717562, 8.5358057686789, 228.02515567115657, 23.626653219366624, 189.18563655731182, 18.781546575787065, 50.47629320709875, 5.85213308252497, 63.742676464363015, 14.020882375625208, 21.87641028562384, 115.78272039700622, 81.48353917510784, 32.33680247250755, 125.88516419709033, 41.03486926327562, 59.9784425578299, 20.424097245161008, 19.478300800882707, 11.241098346725844, 10.353874324234944, 16.306063615750407, 9.297159057401108, 25.36974901205813, 41.360356476153974, 13.140464970989566, 65.55482815913581, 153.33502434136398, 76.42628787900142, 23.626286110831302, 95.07831951288588, 85.64760237675625, 20.38778132184142, 45.44803043315124, 30.125009015354784, 18.95880582357909, 20.47040415820445, 24.06111751554824, 14.542180989405843, 54.81832254026807, 63.121470749748234, 140.15749519720848, 23.107298223182124, 10.620377290327184, 12.235842013397582, 28.571790302267843, 87.37419482916462, 42.92949788171339, 19.568928454724414, 94.83067672568897, 33.176731365927004, 45.504008174657834, 24.722819478783187, 11.603226666984124, 9.695394756280074, 28.4354951503616, 14.892136415789755, 30.4486167156414, 8.01944696020508, 61.733363560216574, 81.26544243663056, 77.07110640387158, 72.48974455543845, 23.328574504876993, 70.20747311248145, 51.43963322765258, 35.98538327494195, 38.944882217715985, 78.90818254509249, 28.2969398676882, 13.263609434796642, 105.80017420701788, 121.58024069862476, 23.681448507039118, 131.9839241774585, 16.864341364447043, 82.24428944590362, 72.56584408809387, 159.6737497665721, 27.329568356939184, 68.0232731488537, 64.92395283584348, 35.14254190013374, 84.34239330617916, 11.548931810754304, 19.53876682179827, 32.86482284768993, 5.513062074500233, 14.358490320872178, 218.74770574848944, 204.23234129416528, 128.92017420435516, 7.8354398974379835, 7.376259238930473, 16.798215956150678, 21.068836768953624, 32.60769721665082, 45.81486724716758, 67.28460052469858, 45.586053149874516, 14.596982770122167, 31.395504785047613, 140.0057197925314, 85.5974131013074, 27.098689348139935, 113.74730341623007, 12.89197547826863, 12.033835445443856, 9.851936319100659, 8.051887567468606, 60.41098901221468, 113.38849504511671, 8.087102327803493, 8.33420893646793, 63.60561000770916, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3479882.2715635705, 3568270.3125, 3594449.6777186967, 3594456.25, 3596675.2517835903, 3614040.836833821, 3619503.794421508, 3625510.2853655876, 3626457.0903458814, 3628060.9375, 3654091.9429549533, 3679592.5238775187, 3683259.375, 3687076.5625, 3736244.6300093755, 3738549.306111465, 3864645.257580122, 3872501.5650694342, 3877925.482120591, 3879166.679566048, 3892617.823097926, 3916981.25, 3917810.1994227427, 3920428.125, 3921938.3524671895, 3923967.7387667596, 3925145.9922048952, 3927423.4375, 3927975.092577196, 3928753.169906432, 3928841.3613719638, 3929527.250658461, 3929555.520618878, 3930712.49734673, 3932397.6606703196, 3932963.727556019, 3933995.487954038, 3934631.585837302, 3935342.082231583, 3939129.6875, 3947014.5697197695, 3958471.7889988227, 3962265.625, 3964028.8198605888, 3964377.852949257, 3965118.75, 3967540.625, 3967859.375, 3968318.627290569, 3968421.294467844, 3969095.8256554664, 3969481.25, 3970130.445023188, 3970523.4375, 3970899.7035462176, 3971353.80263046, 3971458.0401037377, 3971784.375, 3971967.4184705997, 3971999.380302422, 3972143.75, 3972318.1642837496, 3974198.946606489, 3974207.8125, 3974296.8331669727, 3974463.880659377, 3976754.126864425, 3983489.9073657696, 3984451.609922405, 3984529.206126173, 3985282.8125, 4000084.375, 4005871.17954524, 4006665.625, 4014457.5628076945, 4029975.63087065, 4041970.3114167047, 4042691.6617072355, 4044193.443469607, 4044796.1375788315, 4110242.1875, 4334176.5625, 4430692.722623296, 4437233.381123965, 4454106.25, 4495187.5, 4506241.031617484, 4507453.125, 4521437.279405068, 4545489.572551925, 4550533.70583846, 4584374.250260866, 4712755.772889458, 4746225.0, 4749377.523994008, 4752482.034918056, 4753185.37014696, 4753231.25, 4774400.6466296, 4831481.0483574085, 4844557.594808566, 4855587.6746932715, 4860804.6875, 4861156.731432365, 4870436.374253127, 4874243.75, 4885141.4609370595, 4885282.146895267, 4902128.71880224, 4918078.125, 4927188.6660710005, 4938114.0625, 4952059.411818276, 4956420.699221372, 4956770.2538773, 4956771.8433507625, 4956801.476533285, 4958870.013679774, 4959362.5, 4959436.038635579, 4959773.4375, 4959884.375, 4959904.361864903, 4960373.4375, 4960654.540005952, 4960829.492834987, 4961220.182055533, 4962409.201019314, 4962489.689831262, 4962906.286945161, 4963287.5, 4965323.082826128, 4965402.460526811, 4965457.21634264, 4966649.166137446, 4968700.0, 4969150.0, 4969589.0625, 4972295.876116753, 4974848.369174258, 4974959.375, 4975023.041458853, 4980394.519835157, 4981870.220191517, 4987162.009972862, 4990287.18488838, 4994593.75, 4999011.384125616, 5006958.543947881, 5017243.75, 5028465.625, 5037674.232355898, 5039535.49032631, 5040586.881953103, 5041962.6364511475, 5042721.574569021, 5042985.9375, 5043406.25, 5045319.94479674, 5046908.86225369, 5047167.366965231, 5047557.266427271, 5047629.6875, 5049899.769394305, 5050399.823596708, 5058395.3125, 5059668.158981285, 5061935.126902402, 5065373.4375, 5065468.487572799, 5065488.891175753, 5065965.119778649, 5066480.889506656, 5066538.47891964, 5066889.387653053, 5066919.56024519, 5067146.322339446, 5067193.323579379, 5067388.266037761, 5067682.262120278, 5067694.635420772, 5067845.951454761, 5067930.565860693, 5067990.340111766, 5068255.941226527, 5068441.891818066, 5068483.938006678, 5068817.447043621, 5068827.398444691, 5069081.25, 5069168.6774889715, 5069340.6034828, 5069620.239891249, 5069810.893175974, 5069932.503632208, 5070469.359638355, 5070579.524945794, 5070620.571671795, 5070815.625, 5070839.806328669, 5071292.022698545, 5071295.71200079, 5071314.0625, 5071499.304692872, 5071541.5718114525, 5071656.99560593, 5071919.859333641, 5072105.71298428, 5072196.875, 5073065.317928875, 5073099.640969696, 5073121.306011371, 5073142.931179573, 5073751.273520189, 5073985.9375, 5074707.6476181075, 5076517.438960707, 5076561.4500516895, 5076606.25, 5078526.5625, 5078576.5625, 5078797.507479019, 5079459.228569562, 5080156.25, 5084011.448436755, 5089259.185302393, 5090568.75, 5092876.512485928, 5117565.4619817035, 5119738.934422079, 5120144.916454929, 5126131.25, 5131086.154187463, 5135470.489667237, 5150025.0, 5150032.136633368, 5151147.44308351, 5160006.683529093, 5160251.110581238, 5161520.906781573, 5163728.125, 5164849.316728729, 5169368.932037795, 5169687.125128137, 5169687.208287285, 5169831.15922152, 5175715.625, 5176281.25, 5180294.278665531, 5182958.576999655, 5184649.262732454, 5190084.196988441, 5191508.293593143, 5192176.237595593, 5192796.595731199, 5194131.25, 5194358.892446899, 5198884.375, 5201128.125, 5202103.125, 5202731.25, 5203339.462680224, 5203560.208764052, 5203565.22587005, 5203934.375, 5204018.75, 5204026.5625, 5204215.234321988, 5204576.5215913765, 5204595.3125, 5204839.858701982, 5204918.75, 5204972.784892485, 5205067.059977376, 5205259.375, 5205267.115929342, 5205312.5, 5205475.0, 5205575.130156971, 5205685.9375, 5205800.401169004, 5205868.75, 5205882.487996241, 5205953.089597799, 5206006.218001115, 5206036.313931357, 5206061.315519048, 5206196.514943725, 5206252.889328911, 5206256.25, 5206276.723678786, 5206527.880615752, 5206530.615202119, 5206624.484189379, 5206949.746388635, 5206950.5048408685, 5206988.575134508, 5207210.052306548, 5207889.584403315, 5208243.253677962, 5208901.5625, 5211225.9425826855, 5211440.625, 5212695.6105283415, 5212999.989951185, 5213055.100724311, 5213057.481329186, 5213745.3125, 5214953.5288669905, 5215780.83874386, 5221014.0625, 5221054.173089189, 5221779.502181156, 5221839.995970203, 5222176.771557996, 5222392.135637736, 5222690.625, 5222702.578790748, 5222715.1538121095, 5222755.085132685, 5223032.418697103, 5223104.497463066, 5223207.8125, 5223289.0625, 5223419.778269206, 5223481.820957897, 5223491.7867680155, 5223785.892623019, 5223815.33557197, 5223836.252094705, 5223865.43173342, 5223866.562968623, 5223874.606922677, 5223920.5619069515, 5223959.375, 5224008.9366987655, 5224028.506182664, 5224106.25, 5224107.760318015, 5224142.075133511, 5224168.786658077, 5224194.93401487, 5224226.5625, 5224228.125, 5224235.846057466, 5224249.048954712, 5224249.647029332, 5224250.0, 5224277.614758735, 5224282.446941486, 5224285.471968636, 5224285.9375, 5224293.75, 5224339.9063370675, 5224392.1602038825, 5224430.642105138, 5224441.514265243, 5224470.97354143, 5224484.679470884, 5224524.765580347, 5224529.676848145, 5224554.16198659, 5224612.5, 5224654.6875, 5224680.367543975, 5224694.978722719, 5224733.938305222, 5224779.6875, 5224792.1875, 5224822.411758443, 5224940.939080423, 5225032.8671719795, 5225062.622974708, 5225126.702536778, 5225150.0, 5225163.379089467, 5225188.788083397, 5225206.25, 5225234.375, 5225312.613201812, 5225364.501390655, 5225468.037492627, 5225510.277933826, 5225565.552797335, 5225593.737001402, 5227307.752654839, 5227388.461211329, 5228100.0, 5229084.929950996, 5231013.160109351, 6374195.994138641, 6507210.9375, 6510904.244241865, 6572964.271853284, 6573030.29795989, 6584865.1064160755, 6585640.599539983, 6631828.184190748, 6640301.755950619, 6645899.57221501, 6646934.944315956, 6679341.74047491, 6681835.9375, 6690810.9375, 6716508.01632543, 6787582.494527427, 6794041.09030954, 6801733.833118318, 6801745.3125, 6807066.368867035, 6809824.285507481, 6810032.8125, 6814248.4375, 6822044.026719068, 6825353.125, 6827246.831744827, 6827706.25, 6827841.896109048, 6828069.92882037, 6832967.1875, 6843643.342368835, 6848257.03029135, 6856425.0, 6857428.125, 6857676.251834121, 6859248.4375, 6859346.875, 6859746.875, 6860028.125, 6860144.812373088, 6860385.9375, 6860478.125, 6860682.233399341, 6861018.75, 6861330.341953209, 6861629.162417853, 6861885.9375, 6861907.958427872, 6862060.138055689, 6862098.4375, 6862265.026813629, 6862468.75, 6863526.5625, 6863626.5625, 6863659.375, 6865296.14221152, 6866332.164274778, 6869084.140786401, 6870709.375, 6871538.72015931, 6871665.146725905, 6872160.384368212, 6873282.411685061, 6873804.772340968, 6874400.0, 6875252.004079651, 6876320.3125, 6876557.0125426855, 6877093.767582739, 6877102.435407275, 6878303.752478336, 6881635.270756519, 6882331.25, 6885022.636195951, 6888912.430111699, 6889942.86519516, 6890999.829972658, 6892552.526746523, 6894610.851191667, 6894694.655883049, 6895574.835455992, 6897839.346640805, 6901423.4375, 6906188.812727972, 6906449.741177767, 6907048.180652632, 6907075.882993358, 6907477.991790208, 6907505.362303649, 6909469.170761222, 6910656.25, 6911084.786798677, 6911942.4793408355, 6913352.969094789, 6915310.331109165, 6916183.454482754, 6922327.329931944, 6922985.9375, 6924917.811051319, 6925317.204366399, 6926049.396325316, 6926837.053463044, 6927095.356529931, 6927842.127663522, 6928345.3125, 6928361.569049198, 6928364.39889559, 6928414.529785358, 6928834.03736133, 6928901.047483666, 6928951.407943989, 6928973.4375, 6929336.638964246, 6929418.632932125, 6929546.875, 6929716.864619238, 6930010.9375, 6930036.209979501, 6930563.345768066, 6930588.748080836, 6930717.1875, 6931076.020963571, 6931098.457900481, 6931124.3259831555, 6931301.180909013, 6931453.353330235, 6931459.375, 6931510.314050402, 6931603.125, 6931604.733683522, 6931643.689579815, 6931693.717482433, 6931700.0, 6931714.0625, 6931801.174515584, 6931844.508715964, 6931851.10537434, 6931889.160379255, 6931893.75, 6931940.625, 6931950.997149677, 6931964.353477199, 6932022.718320811, 6932039.9722206835, 6932070.050729867, 6932162.144320217, 6932190.625, 6932376.6208609445, 6932404.928516986, 6932483.127665689, 6932502.021145634, 6932533.232503176, 6932565.625, 6932603.125, 6932625.0, 6932719.922341181, 6932925.065955879, 6932962.792367912, 6932965.625, 6932971.875, 6933116.726799363, 6933127.925422322, 6933133.2116921265, 6933143.75, 6933152.469536274, 6933188.940166773, 6933207.733525701, 6933269.461236472, 6933383.55814752, 6933417.926328332, 6933468.75, 6933527.142879726, 6933717.1875, 6933823.43540785, 6934069.512252294, 6934118.237433356, 6934120.645688859, 6934128.0425035795, 6934159.175596501, 6934169.274761936, 6934229.6875, 6934352.899370449, 6934355.831575884, 6934424.2856230885, 6934487.008137156, 6934496.318439834, 6934514.500982089, 6934514.817089563, 6934526.115032729, 6934528.125, 6934767.292722661, 6934812.197653255, 6934825.522902817, 6934829.999434117, 6934898.924787633, 6934925.0, 6934989.451142461, 6935021.875, 6935024.491285099, 6935112.5, 6935129.574883999, 6935136.473685152, 6935163.710539821, 6935172.022290371, 6935275.0, 6935280.818769145, 6935307.610098492, 6935336.995897188, 6935478.538280174, 6935556.25, 6935775.0, 6935897.892049298, 6935956.25, 6936119.310803767, 6936424.878267652, 6936455.365590981, 6936479.865841721, 6936499.495945391, 6936576.5625, 6936634.305696685, 6936693.654976609, 6936744.947898284, 6936801.77918495, 6936823.189256238, 6936900.0, 6937054.6875, 6937720.341101134, 6938584.212934153, 6938837.137029659, 6942744.843935446, 6944026.559059108, 6958582.175324715, 6958584.323733585, 6958964.137083205, 6959781.290633755, 6960928.256868311, 6961026.5625, 6961161.681746031, 6961893.013205416, 6961928.444381484, 6962181.6096544275, 6962437.022682818, 6963070.257177131, 6964906.804416845, 6965460.232111978, 6965692.320885304, 6966056.25, 6967321.554850133, 6969993.981630167, 6976043.1535526225, 6976939.973503656, 6978326.235990357, 6978896.491744177, 6979905.709054391, 6982677.070503348, 6982757.8125, 6985148.36730911, 6987052.982633123, 6993562.895574128, 6993668.75, 6993681.689377959, 6994729.225409921, 6995838.212661765, 6997411.321595294, 7000026.581154338, 7002362.460475825, 7008353.125, 7017848.4375, 7020050.0, 7021506.1599281365, 7023959.148589724, 7024726.5625, 7024832.8125, 7025389.0625, 7029348.766415234, 7031430.893323357, 7032179.6875, 7032376.498941556, 7034133.712002623, 7034467.796339197, 7035643.75, 7037143.33320635, 7038357.877331979, 7040143.896852869, 7040723.85666687, 7042785.598060718, 7043345.040974619, 7045000.0, 7045181.25, 7045755.510701112, 7047141.843243821, 7047514.0625, 7049380.257701058, 7049501.5625, 7049537.247211366, 7051461.642864619, 7052557.8125, 7054107.475980746, 7056074.197715229, 7056338.470108332, 7056871.444676714, 7058248.4375, 7059977.7750701355, 7061230.910738644, 7062004.167868961, 7062376.5625, 7063622.124581311, 7063706.25, 7066695.549712675, 7068131.0843846, 7068173.507220812, 7068275.986431607, 7068517.1875, 7068974.9601809215, 7069016.031917264, 7069047.096406723, 7069771.812100078, 7069937.427884632, 7070253.125, 7071111.271885853, 7071632.578672367, 7071837.5, 7071979.6875, 7072084.425704559, 7072196.875, 7073293.877929904, 7075396.454666216, 7081790.625, 7083431.25, 7086273.548810973, 7087876.5625, 7088253.125, 7088642.652981645, 7088792.1875, 7090365.625, 7091169.326914396, 7092508.611124538, 7094218.215746578, 7095895.497864037, 7096497.093250802, 7097560.454791405, 7099267.968519554, 7102285.4166049315, 7104578.125, 7106359.375, 7108810.9375, 7109906.227420356, 7111194.368082609, 7112087.5, 7112367.5342490785, 7112667.118969541, 7114712.5, 7119326.539076371, 7123904.6875, 7129281.6921669, 7132898.271218009, 7135449.222257177, 7135967.1875, 7136627.136470465, 7136768.75, 7137334.375, 7137351.186765079, 7137596.875, 7138134.770134213, 7138205.387137628, 7138222.659621556, 7138237.023230174, 7138717.1875, 7139324.809859575, 7139489.034826313, 7139805.481418487, 7139883.661935324, 7140172.661106609, 7140231.3339060005, 7143890.438258253, 7144160.348244137, 7145619.760925637, 7145954.302031126, 7150780.614721057, 7150944.964354607, 7151163.794982317, 7155776.5625, 7159848.4375, 7160842.54261339, 7162437.587649635, 7163414.423213007, 7168391.056092707, 7172052.147935368, 7173430.6279098205, 7174371.083064618, 7177559.035163705, 7178188.462453836, 7180007.484445045, 7181335.626992576, 7182540.625, 7182587.246830799, 7183691.213632105, 7183973.4375, 7184223.128722099, 7185020.922099794, 7185098.4375, 7186611.977192658, 7189229.071083616, 7190372.717688182, 7190390.12291207, 7190905.327252368, 7191320.3125, 7191421.699029655, 7191601.5625, 7191865.625, 7192506.412789534, 7192720.616095358, 7192913.074928116, 7193581.25, 7193898.4375, 7194482.921016621, 7194517.6072131535, 7196171.244076976, 7198732.872926985, 7199382.57949176, 7199708.899997584, 7200109.66157479, 7200111.525428853, 7200762.349160912, 7201306.189189249, 7201474.753446751, 7202614.402040521, 7203245.3125, 7203934.375, 7205124.546937718, 7205338.921837826, 7210149.069905978, 7210840.631004007, 7211360.207160012, 7213773.4375, 7214285.9375, 7219125.2747750245, 7223040.435332608, 7223521.875, 7223984.478627144, 7224971.5000074785, 7224994.4314132435, 7225741.56329249, 7226634.132686926, 7226864.817688355, 7226876.860750338, 7228476.5625, 7228537.285056389, 7228773.254178528, 7228861.823737353, 7229712.5, 7230381.131845914, 7230625.537268028, 7230676.5625, 7230822.039519066, 7231027.892556925, 7231369.748043564, 7232149.068729887, 7232167.737142703, 7232229.995093022, 7232345.658133609, 7233652.867359546, 7233727.377658011, 7233746.205170213, 7233890.625, 7233937.5, 7234094.159675399, 7234315.625, 7234332.8125, 7234798.751977236, 7234902.321571852, 7234943.580019732, 7235321.85519202, 7235323.027276826, 7235324.762473323, 7235582.8125, 7235609.375, 7235929.6875, 7236354.610285225, 7236515.096075454, 7236626.5625, 7236695.196117649, 7236882.716058247, 7236995.658943456, 7237044.293502795, 7237180.744652085, 7237560.64216634, 7237575.0, 7237652.054728826, 7238205.607132945, 7238474.018712048, 7238482.58065019, 7238567.1875, 7238577.241111171, 7238627.067321068, 7238831.1458909875, 7238847.318324079, 7239080.634861367, 7239102.815223075, 7239137.5, 7239186.6771552, 7239187.123154033, 7239325.502659158, 7239363.681710437, 7239435.673001714, 7239461.643397808, 7239479.325912659, 7239505.372980159, 7239525.0, 7239533.917638685, 7239535.9375, 7239582.8125, 7239661.885716734, 7239681.58814542, 7239801.633853041, 7239854.128760917, 7240008.554243618, 7240012.459221523, 7240104.897448278, 7240126.5625, 7240138.560628585, 7240175.0, 7240490.043579237, 7240564.0625, 7240596.565193965, 7240632.8125, 7240661.179691219, 7240694.836429745, 7240702.1323997425, 7240933.863863643, 7240967.951917977, 7240969.70348104, 7241008.092897887, 7241021.486420734, 7241078.125, 7241081.25, 7241247.888914906, 7241463.710400428, 7241573.086722342, 7241591.23449904, 7241698.4375, 7241703.4620155655, 7242221.875, 7242371.157745181, 7242399.904896836, 7242466.883361149, 7242548.4375, 7242845.602151509, 7242886.221815445, 7243306.651237296, 7243335.932957451, 7243603.111985825, 7244054.6875, 7244069.770714636, 7244521.665180522, 7244604.6875, 7245027.586538115, 7245157.8125, 7245269.978715415, 7245371.979756168, 7245604.501080005, 7245891.755973094, 7246010.9375, 7246084.375, 7246101.550877057, 7246455.727043197, 7246526.330579147, 7246700.0, 7247027.819555859, 7247376.5625, 7247411.364548663, 7247656.25, 7248170.3125, 7248450.0, 7248976.499065153, 7249409.375, 7249892.1875, 7251168.75, 7251350.130421009, 7251359.62874821, 7252404.094415788, 7254174.314467945, 7256721.455512901, 7257330.62068624, 7258733.204467745, 7259398.219082091, 7259423.614741474, 7259942.78690061, 7260472.763079933, 7264378.539550724, 7267818.206391207, 7267880.5469093695, 7269830.3819850525, 7270939.0625, 7272645.3125, 7276940.531574293, 7277095.3125, 7277783.159659506, 7277946.875, 7277954.6110484395, 7278170.3125, 7278425.895967523, 7278547.386470348, 7278592.745011684, 7278605.778165587, 7278817.254325857, 7278952.856042553, 7279280.85272871, 7279328.213998909, 7279354.6875, ...], [23.643179141140145, 42.48318675860151, 7.49068981877128, 38.75842704829169, 55.009473336974054, 58.88633547569222, 60.197385193128795, 65.49096292361664, 25.30843565653029, 41.276303867402994, 37.45761306700592, 11.697607824175828, 50.70240498088894, 66.83867312665454, 6.385174658119688, 19.754911269813267, 9.285393066197798, 5.533205257348808, 5.049763256379972, 21.414318264582853, 18.081370868365134, 99.78294792882534, 26.606017069682487, 88.7261801908893, 19.62593082483185, 58.19591031009723, 68.28432413717798, 39.848828011611005, 21.234004872169102, 15.115479511171577, 6.609070856586649, 22.84116788302886, 8.782449318495814, 28.472737453495945, 19.11444227483412, 9.063385533589795, 62.08199726109537, 7.21262302455745, 14.554902388740278, 47.87885989689192, 8.574343511483082, 53.975034304842865, 43.73534919401438, 20.833046080772135, 24.114442850576115, 58.5065949828188, 71.05160201515565, 74.1621906159377, 15.223457633849755, 16.522527162558763, 5.740213902291141, 49.63789098547725, 39.74290956257322, 58.27430818409509, 23.79614561793198, 68.5407030851345, 7.687686055010499, 65.97972700682142, 15.901556486002182, 5.769507993433238, 53.92730846113785, 30.162336381826176, 9.802479473874799, 72.14329351424168, 44.93504228610041, 63.361247584736475, 16.037146498708456, 8.79033269708307, 9.371825994328798, 5.191329019680247, 82.39962003712566, 80.66648916533633, 8.805293894072637, 70.01036295652969, 96.14781042562751, 59.16872228730954, 25.009225292200433, 13.255956485654277, 7.043139853597584, 12.719666040415932, 67.23144460986833, 43.33260261084348, 17.466833653442194, 21.681055189572405, 29.212998049811464, 83.5054839338351, 103.769514396483, 57.62491590129914, 24.820943344503643, 166.41672811462118, 72.29800257140437, 10.128275178784884, 32.48242123989794, 90.41076307269562, 20.541403339879917, 12.62509219971626, 69.61978550380871, 39.81436128573606, 27.023148163817684, 25.09405221552067, 39.72323950240246, 11.41220224031305, 50.33002692663899, 17.160444117278082, 24.263864849443813, 51.268183627665444, 106.09979589439044, 47.839822923709036, 14.01553926979719, 88.39180151609011, 5.681984314447093, 102.65474539971456, 21.451735070420938, 99.17978916282216, 27.41611224901962, 64.82713542650596, 6.256397848858421, 30.767420167745815, 87.99031047275139, 23.392441141205218, 52.518266441137534, 112.58428133306258, 7.038404560089484, 71.688993578627, 25.91606410015208, 91.95968001806459, 26.188535329420432, 25.505999248946754, 12.27373390779271, 15.084222050080985, 39.8487732977939, 137.6699925419507, 68.91971510653714, 13.07018899967099, 5.754754598878808, 59.49910128952639, 54.54289610559196, 157.07989280870086, 44.15576575609016, 9.274290478727245, 62.256796823254625, 32.22281495904736, 58.32357240095782, 60.35141139260419, 30.71805830990632, 23.55961197987252, 33.85323571924356, 6.325325033503332, 10.037285521941111, 62.52248589634203, 44.284382318870485, 19.18274084428906, 7.4491320307590625, 30.879248502807904, 54.13285663194078, 5.063473547458756, 69.45989990385705, 85.99206799881875, 13.703592725539655, 21.36688440597751, 8.383817756859285, 44.54604541703853, 71.22919153557982, 6.238496109638879, 6.245165409699367, 38.477588465925436, 8.8771140012833, 33.674826867795616, 76.66063755551123, 5.0933259613568955, 14.326378163924026, 21.441172118190238, 13.725081601711175, 20.697981648545532, 9.6223528350762, 13.942233726417477, 13.184098499173407, 67.03763829037807, 7.905975735057047, 21.004838098286353, 5.319243902267688, 45.20782484128271, 52.099902608210236, 31.982986859278302, 9.083286608631072, 27.578582823560993, 8.068259694676954, 16.032540816866252, 19.49614403858449, 49.03564233516376, 56.84270447702569, 8.27523135296578, 27.16636592993714, 61.79918284781335, 71.20677515022098, 17.917147901459394, 9.197635327664615, 24.94907327464172, 57.632239482669426, 11.045342103604202, 25.646335357757017, 9.693705183611135, 48.32421100038188, 16.837241554248216, 103.39223455937577, 19.435132381986687, 10.486278894005872, 7.419908036982027, 41.026270395881504, 29.885248825925384, 23.024902040818336, 20.831442588798716, 67.44149012374018, 9.098450134689466, 56.53941009687496, 253.3812585176222, 15.99518716784049, 17.336261913972063, 66.16744061824744, 68.52935262678263, 32.76139568535981, 8.65198180329568, 87.75772072208305, 54.281407195239815, 14.507036495051366, 10.843601301589374, 139.04531903601634, 132.9393767981352, 23.042376668809208, 51.53419619005201, 42.09983442875305, 100.50042395393842, 15.837173478761434, 11.416402467526362, 63.93835459931459, 26.531759051741922, 41.80298063825602, 29.455082648214187, 13.45968683408762, 6.345319424372239, 50.984619892165476, 12.850652698271537, 6.8004014447021195, 22.83925852836962, 58.944302419649745, 14.606436526601984, 69.55792103602471, 95.05008624815582, 17.429209821326985, 76.15773422057404, 50.608415336674405, 14.303811474284936, 7.787030234718944, 134.2229574193732, 42.05262712424546, 86.13328630825801, 17.65062302736053, 96.86359717880586, 52.492109843423286, 34.17991946774449, 67.83555429035036, 16.72304055692598, 108.93386007053564, 35.487380340723796, 125.40468240799407, 36.430533143619584, 82.10175637330744, 5.279170124195056, 101.8763836594552, 80.99005602997438, 13.005864433940278, 42.16306536255441, 82.03324962185427, 26.235921732651764, 81.74202084105647, 24.671353510235914, 55.87738976747239, 68.44511017001646, 6.283784017423068, 32.68631465438965, 70.78923107000583, 42.07695840856658, 5.790353688024057, 27.843046443104036, 14.82093137090286, 37.507557180094174, 8.497135575997664, 8.104929189468175, 50.78074376120947, 30.1308379635501, 9.471511698853407, 10.766059880638501, 20.246150802608533, 6.992155505447037, 139.76724711384853, 5.852302973554594, 33.61052418551746, 9.9782701707478, 34.29029354512676, 25.700498060679863, 30.632344773024485, 20.37483150372951, 70.51887284047145, 85.68911669583268, 6.761502057239604, 16.79123897659122, 86.9335720282738, 72.66156548756537, 6.846905999917864, 13.575848337570843, 167.99045547080345, 20.217755910776905, 25.335187471070835, 8.850708341433952, 23.160038506130505, 81.09586034015715, 107.0529774075215, 10.369289742266867, 22.61515624445096, 37.11125053586444, 22.622190712006947, 8.188575820710458, 46.40428402740564, 96.53209780626162, 21.1582934786071, 17.679603782367995, 25.13461929029323, 27.666949003209773, 6.4426581927946005, 68.45788983709541, 210.9006628711238, 10.274205984450555, 59.13093456600192, 15.98573411353485, 112.77304407676161, 22.131479462563014, 12.227476952613316, 51.3775061965385, 112.25877483954073, 65.49854215904213, 17.059984846165463, 28.258805353109583, 60.33937984464745, 66.24554634651668, 14.509357236357191, 12.239979971318308, 13.747608000689496, 68.18374860701678, 13.298084861835388, 66.50679424389087, 47.58125416332893, 40.52518987059326, 62.61888799517643, 15.310627874301328, 9.308428923569874, 17.017735577416865, 25.6560204672056, 12.346367256565692, 16.24460528763577, 14.117440525215068, 6.761381869841331, 163.43264852030123, 77.51236374976321, 97.43152484767688, 91.43452827634249, 23.328663790361038, 56.766931443054126, 117.0577053686185, 37.908533040546764, 12.084950932568912, 16.290966174739456, 7.623132023346532, 9.437595856792317, 15.503551526216093, 34.71427860634565, 47.097024660042365, 24.083129025871145, 58.932737987558184, 61.831057678116245, 48.95701197696733, 11.890804088249796, 19.606351447139442, 7.380918162977932, 29.28043720802571, 28.270204515738865, 84.96386515065348, 16.28006013860185, 37.836284067444915, 46.128908027264075, 26.802639471933592, 18.382611766349743, 123.70519821821544, 22.07844206537106, 11.471504985433308, 5.363284315009734, 15.545145012425706, 38.8728778077414, 15.172020591975558, 54.23168906714006, 50.8285917669282, 5.361816024636647, 33.35347265987614, 172.7206898527469, 205.53773101180428, 5.102489102539771, 23.523849929168822, 7.7806729045777345, 10.374632306573373, 103.1868026010326, 12.53060209431637, 66.37103335357925, 70.06565505954023, 59.236584188386836, 5.963871689963087, 71.76885819021776, 7.587667589020204, 76.75045464048243, 13.93615189634733, 22.73762897386581, 48.52522125453673, 22.466823971019807, 19.074738364386732, 78.71247318244771, 31.80170256907568, 82.52328587001345, 67.71057740163717, 107.37674891271995, 85.61330405109899, 106.75648161468814, 21.49183431607434, 28.663389589042822, 41.39905461195945, 220.22788102827718, 39.64811070780111, 21.86368990127322, 21.246488945767638, 99.99995025133543, 15.528504324798941, 131.8211043452174, 29.763183981591432, 10.305852749683861, 44.481561854672805, 234.73047199407924, 36.713261014984376, 112.65773361797866, 101.3071106776356, 20.13179647708414, 24.629090198253476, 57.914000690491704, 10.631688446043128, 7.43895314631348, 20.97896534626243, 167.25382934778676, 9.40418630257736, 51.81600716741768, 16.942111205467693, 155.59991708465196, 116.6057026211048, 24.81812940299292, 12.835150682156224, 9.925025750559879, 92.04364178507673, 106.54566340867852, 8.734783589417773, 20.97341727312984, 23.800931705304468, 14.330766473453696, 34.12590350867242, 134.55670503570576, 12.916643495322232, 5.0387819180762845, 18.070136408849315, 71.94672778972841, 14.067917116316536, 84.62072171006915, 65.73420973727993, 7.95720464551191, 6.25051370474027, 62.07371762606188, 46.895146122979, 61.80693260181905, 8.517048747055949, 5.046496530429146, 5.696907110002234, 20.4936220934906, 39.50799423144137, 5.757404503437924, 106.12919516270419, 6.349330737262159, 84.46861551801157, 13.050799214956596, 13.474893128603641, 26.67285364602696, 14.718242264898917, 58.68264219669225, 9.92933798346559, 16.400030068018634, 40.98414601575813, 23.28157827000219, 10.408011567811737, 6.733038005174626, 30.85544616178239, 14.621537803085102, 43.174581123446316, 38.00278742864853, 40.65920901596585, 56.370450275321744, 24.450732639285977, 10.166044617690602, 32.17997637318741, 28.664860346632675, 13.21370908846302, 8.297394984457785, 26.098518291629375, 184.99048667635174, 105.77827450809875, 56.07575551735824, 10.275498856321144, 70.4407795038255, 32.33223069262975, 27.38370932791273, 65.01225362336379, 56.0165219582963, 127.41376176304504, 13.643669674623755, 27.145474765814647, 13.445022828176578, 11.284224318942545, 80.19420419545717, 43.354584922613654, 43.0252930707204, 16.18010915651941, 6.180419049643301, 10.240644002351026, 24.25167535130146, 31.421378144461926, 115.42262708754119, 59.17997861703719, 11.526556645720717, 133.23717896818695, 239.96530756005362, 9.713721659416494, 30.573425704673163, 60.15992387126194, 30.206141238293846, 22.66357786067122, 10.250658693965018, 64.62498581020115, 43.303780653948714, 61.10457829085228, 37.89001590020446, 83.81506307990462, 21.867303048004423, 106.37084729102503, 20.070828882228138, 26.32059191025989, 9.265506898819885, 16.354508063116874, 40.73703854237639, 53.80781273225678, 40.573822412622924, 9.875613806058778, 43.19979171771679, 13.075475217019614, 18.943129819980836, 13.291760219194575, 22.423066873489446, 5.807901348955455, 9.168301747609767, 12.060617707869337, 65.3819184006771, 24.7495969016215, 13.555157197886794, 19.591592386468456, 13.348387174270544, 29.202198044107465, 6.55809643364102, 10.062888842670992, 40.473239040110336, 33.18565180136074, 8.343015834271228, 5.518584448880147, 5.307517328529061, 11.65299194084908, 7.789531672689121, 59.82310373767486, 9.683164439834847, 113.61137762094623, 71.89280130858029, 56.990034751873715, 38.06569820210768, 17.473040884504, 69.38918430000838, 112.47425331718065, 85.26150206504826, 10.514523869063062, 14.222363252515752, 142.10088295507276, 51.89155079539393, 60.227858433277284, 86.84539551022414, 113.53944670383024, 85.14422908616581, 81.69827134930216, 24.659403228897183, 18.35893096111014, 21.125249189867752, 21.452748479695064, 44.10186769869843, 114.97836623069158, 33.95296991784029, 72.09225227694351, 160.03963139454993, 96.51324443363075, 55.47860555768001, 67.86330321864277, 12.097451286824924, 105.52824563840659, 22.97838249441659, 28.36953795587377, 5.34180378925065, 118.65231040083957, 52.58469048560475, 5.536711282357216, 6.272345835219124, 33.23895054621099, 71.70461652603069, 6.610450004681599, 19.416813012127257, 7.722986797427229, 6.54498791900449, 5.779487323583089, 40.29836279411502, 13.088343349093654, 19.66281750056107, 11.342799841491724, 38.95817756130985, 56.42184058132743, 35.54721693382737, 182.58514693006111, 54.78103514307996, 61.0538915368008, 22.74249355340523, 21.094143998783167, 17.310264502959093, 64.41302971125788, 50.70418393872362, 25.997284865769437, 201.6311861109213, 79.29981730061705, 11.891746683310178, 16.855053482521228, 175.08281782114545, 8.50070353295684, 38.21397102019165, 87.56501120290054, 31.884541855199927, 50.496669730028934, 63.29940421004952, 117.0416829254267, 37.94607743561728, 51.79274367705849, 45.508593972423725, 126.82923052048702, 21.511713479316157, 8.10655650875275, 35.52223494170974, 9.27823298948128, 20.007873194664832, 41.82753328170516, 85.22939274006723, 109.46160852200839, 9.386830572228455, 9.458741084147539, 37.129299746742674, 14.237477548959058, 87.91131574095371, 57.289061742287245, 37.53412154797886, 19.39753658417865, 16.97023242194226, 183.78824695849306, 9.865049793540043, 55.98265989084147, 31.73327198404999, 18.543063432169077, 95.03544149309165, 75.2477629080532, 130.9310996920352, 82.13158092933458, 22.217510313011758, 99.11931718433507, 130.78182361522758, 23.26186093079368, 10.402251731116092, 46.42228265933681, 7.188641774828865, 51.75152772057092, 9.540371047534888, 25.63381628161176, 7.628650673268919, 82.53738180112892, 38.07024444503194, 38.45579737151329, 148.18101998604936, 5.830546135606269, 11.030793178741998, 27.175084164720076, 46.55398911341917, 13.527061298437587, 9.141216729711255, 35.07896711840742, 100.5250960842625, 6.495069097867007, 38.49256578227709, 76.05644613578995, 54.76499649964602, 137.4425693730533, 83.07034081115371, 201.80291617984997, 38.146323052139316, 32.161281650260754, 9.758660622737779, 73.72485893477406, 45.88652930731064, 17.715641028007965, 28.282202930158874, 35.113631622072916, 15.698458791166175, 15.84418546335607, 24.269076710594383, 38.41095718121744, 170.3606204295761, 58.967343510641754, 28.890321410647903, 58.44990895785796, 222.98314798609186, 14.403757361644434, 155.68904700099364, 16.451310769566387, 22.222492164856675, 94.44461397049258, 14.852974853962102, 94.74910108442147, 105.79849244250792, 145.6176148140699, 19.107687010291617, 41.19718506562112, 183.92533427328794, 34.51375546804897, 29.040461526952182, 17.932860938804502, 43.622937543938775, 28.57462754007489, 8.694791173485433, 48.80251641958729, 14.270486855043, 56.697769419943846, 9.175642182240292, 49.8529241046795, 166.63627110777185, 5.269557894944566, 13.541843578756135, 5.618702947346201, 82.0767920246989, 149.01820656888998, 103.34786149124359, 34.86451824653509, 12.970214004216682, 45.40471507772475, 79.70925343669964, 52.249396205797524, 50.106295529257984, 6.544237485336574, 11.2675294733319, 155.75713813473126, 50.636915153206374, 6.582953861805139, 19.601390558175694, 50.61474692649559, 83.6448740137173, 13.060147663870842, 133.02365054170616, 13.876817769813952, 50.509228785725554, 24.36795802212075, 17.787105156311245, 70.07736237278836, 23.639259974863634, 95.04970961141217, 38.253825918984624, 35.77752138889603, 203.9328184400976, 12.761817992957981, 21.472297272754954, 153.73805319085758, 71.20295192273949, 25.475823852336173, 30.924374807372132, 91.15341192845115, 9.472951557634465, 16.240399211095013, 18.441694610330337, 37.155571467862664, 93.3869962374001, 6.099457159166862, 5.637693467690134, 15.225792752263935, 7.625240290673269, 14.122018745814435, 91.66606880047733, 76.12854879747903, 25.728597552169386, 34.49048115830254, 206.50306087030123, 24.458332385980395, 21.69580336036832, 46.101049650658176, 30.040704355037654, 5.900897923714717, 36.362052619438764, 18.060964431269284, 45.12655840022305, 8.781807052404597, 62.67795124358528, 38.76228238156312, 58.52201156286199, 82.5201855680854, 38.259530259832346, 9.420590291916396, 22.837858713910492, 18.381104843071643, 87.90374885965782, 64.72927596729127, 19.05056211977954, 39.362949406556915, 53.455837321965795, 21.57636956449044, 20.092671845446805, 19.89823662176764, 64.31546144927724, 48.93873705662371, 66.67134369035594, 54.22206242906556, 90.18851179957163, 14.123853185496488, 82.60566784284488, 12.28206661665418, 41.06176168868065, 9.605776873723407, 158.31980792359775, 34.82546933368774, 26.08958654265457, 15.12892246512689, 73.11608095451362, 74.75017775851828, 11.834719475093681, 77.98325029273201, 73.28617225071869, 6.82795665044607, 12.565347859013748, 8.198688859502104, 28.138740332940433, 13.57883776605296, 183.63396538966774, 146.10512527613042, 64.11098980292256, 69.34937528530801, 14.65514972920828, 8.920920676618287, 63.97520313157338, 5.527458673540174, 41.60375511409816, 11.71613948206678, 43.42283157601556, 6.4106877141676, 201.5425000125338, 88.79766553901722, 88.26103826816228, 6.641608943841725, 5.744774036472241, 204.97495430132366, 31.920525431400353, 8.681297090336196, 65.37815435418061, 14.559006822717562, 8.5358057686789, 228.02515567115657, 23.626653219366624, 189.18563655731182, 18.781546575787065, 50.47629320709875, 5.85213308252497, 63.742676464363015, 14.020882375625208, 21.87641028562384, 115.78272039700622, 81.48353917510784, 32.33680247250755, 125.88516419709033, 41.03486926327562, 59.9784425578299, 20.424097245161008, 19.478300800882707, 11.241098346725844, 10.353874324234944, 16.306063615750407, 9.297159057401108, 25.36974901205813, 41.360356476153974, 13.140464970989566, 65.55482815913581, 153.33502434136398, 76.42628787900142, 23.626286110831302, 95.07831951288588, 85.64760237675625, 20.38778132184142, 45.44803043315124, 30.125009015354784, 18.95880582357909, 20.47040415820445, 24.06111751554824, 14.542180989405843, 54.81832254026807, 63.121470749748234, 140.15749519720848, 23.107298223182124, 10.620377290327184, 12.235842013397582, 28.571790302267843, 87.37419482916462, 42.92949788171339, 19.568928454724414, 94.83067672568897, 33.176731365927004, 45.504008174657834, 24.722819478783187, 11.603226666984124, 9.695394756280074, 28.4354951503616, 14.892136415789755, 30.4486167156414, 8.01944696020508, 61.733363560216574, 81.26544243663056, 77.07110640387158, 72.48974455543845, 23.328574504876993, 70.20747311248145, 51.43963322765258, 35.98538327494195, 38.944882217715985, 78.90818254509249, 28.2969398676882, 13.263609434796642, 105.80017420701788, 121.58024069862476, 23.681448507039118, 131.9839241774585, 16.864341364447043, 82.24428944590362, 72.56584408809387, 159.6737497665721, 27.329568356939184, 68.0232731488537, 64.92395283584348, 35.14254190013374, 84.34239330617916, 11.548931810754304, 19.53876682179827, 32.86482284768993, 5.513062074500233, 14.358490320872178, 218.74770574848944, 204.23234129416528, 128.92017420435516, 7.8354398974379835, 7.376259238930473, 16.798215956150678, 21.068836768953624, 32.60769721665082, 45.81486724716758, 67.28460052469858, 45.586053149874516, 14.596982770122167, 31.395504785047613, 140.0057197925314, 85.5974131013074, 27.098689348139935, 113.74730341623007, 12.89197547826863, 12.033835445443856, 9.851936319100659, 8.051887567468606, 60.41098901221468, 113.38849504511671, 8.087102327803493, 8.33420893646793, 63.60561000770916, ...])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([3479882.2715635705, 3568270.3125, 3594449.6777186967, 3594456.25, 3596675.2517835903, 3614040.836833821, 3619503.794421508, 3625510.2853655876, 3626457.0903458814, 3628060.9375, 3654091.9429549533, 3679592.5238775187, 3683259.375, 3687076.5625, 3736244.6300093755, 3738549.306111465, 3864645.257580122, 3872501.5650694342, 3877925.482120591, 3879166.679566048, 3892617.823097926, 3916981.25, 3917810.1994227427, 3920428.125, 3921938.3524671895, 3923967.7387667596, 3925145.9922048952, 3927423.4375, 3927975.092577196, 3928753.169906432, 3928841.3613719638, 3929527.250658461, 3929555.520618878, 3930712.49734673, 3932397.6606703196, 3932963.727556019, 3933995.487954038, 3934631.585837302, 3935342.082231583, 3939129.6875, 3947014.5697197695, 3958471.7889988227, 3962265.625, 3964028.8198605888, 3964377.852949257, 3965118.75, 3967540.625, 3967859.375, 3968318.627290569, 3968421.294467844, 3969095.8256554664, 3969481.25, 3970130.445023188, 3970523.4375, 3970899.7035462176, 3971353.80263046, 3971458.0401037377, 3971784.375, 3971967.4184705997, 3971999.380302422, 3972143.75, 3972318.1642837496, 3974198.946606489, 3974207.8125, 3974296.8331669727, 3974463.880659377, 3976754.126864425, 3983489.9073657696, 3984451.609922405, 3984529.206126173, 3985282.8125, 4000084.375, 4005871.17954524, 4006665.625, 4014457.5628076945, 4029975.63087065, 4041970.3114167047, 4042691.6617072355, 4044193.443469607, 4044796.1375788315, 4110242.1875, 4334176.5625, 4430692.722623296, 4437233.381123965, 4454106.25, 4495187.5, 4506241.031617484, 4507453.125, 4521437.279405068, 4545489.572551925, 4550533.70583846, 4584374.250260866, 4712755.772889458, 4746225.0, 4749377.523994008, 4752482.034918056, 4753185.37014696, 4753231.25, 4774400.6466296, 4831481.0483574085, 4844557.594808566, 4855587.6746932715, 4860804.6875, 4861156.731432365, 4870436.374253127, 4874243.75, 4885141.4609370595, 4885282.146895267, 4902128.71880224, 4918078.125, 4927188.6660710005, 4938114.0625, 4952059.411818276, 4956420.699221372, 4956770.2538773, 4956771.8433507625, 4956801.476533285, 4958870.013679774, 4959362.5, 4959436.038635579, 4959773.4375, 4959884.375, 4959904.361864903, 4960373.4375, 4960654.540005952, 4960829.492834987, 4961220.182055533, 4962409.201019314, 4962489.689831262, 4962906.286945161, 4963287.5, 4965323.082826128, 4965402.460526811, 4965457.21634264, 4966649.166137446, 4968700.0, 4969150.0, 4969589.0625, 4972295.876116753, 4974848.369174258, 4974959.375, 4975023.041458853, 4980394.519835157, 4981870.220191517, 4987162.009972862, 4990287.18488838, 4994593.75, 4999011.384125616, 5006958.543947881, 5017243.75, 5028465.625, 5037674.232355898, 5039535.49032631, 5040586.881953103, 5041962.6364511475, 5042721.574569021, 5042985.9375, 5043406.25, 5045319.94479674, 5046908.86225369, 5047167.366965231, 5047557.266427271, 5047629.6875, 5049899.769394305, 5050399.823596708, 5058395.3125, 5059668.158981285, 5061935.126902402, 5065373.4375, 5065468.487572799, 5065488.891175753, 5065965.119778649, 5066480.889506656, 5066538.47891964, 5066889.387653053, 5066919.56024519, 5067146.322339446, 5067193.323579379, 5067388.266037761, 5067682.262120278, 5067694.635420772, 5067845.951454761, 5067930.565860693, 5067990.340111766, 5068255.941226527, 5068441.891818066, 5068483.938006678, 5068817.447043621, 5068827.398444691, 5069081.25, 5069168.6774889715, 5069340.6034828, 5069620.239891249, 5069810.893175974, 5069932.503632208, 5070469.359638355, 5070579.524945794, 5070620.571671795, 5070815.625, 5070839.806328669, 5071292.022698545, 5071295.71200079, 5071314.0625, 5071499.304692872, 5071541.5718114525, 5071656.99560593, 5071919.859333641, 5072105.71298428, 5072196.875, 5073065.317928875, 5073099.640969696, 5073121.306011371, 5073142.931179573, 5073751.273520189, 5073985.9375, 5074707.6476181075, 5076517.438960707, 5076561.4500516895, 5076606.25, 5078526.5625, 5078576.5625, 5078797.507479019, 5079459.228569562, 5080156.25, 5084011.448436755, 5089259.185302393, 5090568.75, 5092876.512485928, 5117565.4619817035, 5119738.934422079, 5120144.916454929, 5126131.25, 5131086.154187463, 5135470.489667237, 5150025.0, 5150032.136633368, 5151147.44308351, 5160006.683529093, 5160251.110581238, 5161520.906781573, 5163728.125, 5164849.316728729, 5169368.932037795, 5169687.125128137, 5169687.208287285, 5169831.15922152, 5175715.625, 5176281.25, 5180294.278665531, 5182958.576999655, 5184649.262732454, 5190084.196988441, 5191508.293593143, 5192176.237595593, 5192796.595731199, 5194131.25, 5194358.892446899, 5198884.375, 5201128.125, 5202103.125, 5202731.25, 5203339.462680224, 5203560.208764052, 5203565.22587005, 5203934.375, 5204018.75, 5204026.5625, 5204215.234321988, 5204576.5215913765, 5204595.3125, 5204839.858701982, 5204918.75, 5204972.784892485, 5205067.059977376, 5205259.375, 5205267.115929342, 5205312.5, 5205475.0, 5205575.130156971, 5205685.9375, 5205800.401169004, 5205868.75, 5205882.487996241, 5205953.089597799, 5206006.218001115, 5206036.313931357, 5206061.315519048, 5206196.514943725, 5206252.889328911, 5206256.25, 5206276.723678786, 5206527.880615752, 5206530.615202119, 5206624.484189379, 5206949.746388635, 5206950.5048408685, 5206988.575134508, 5207210.052306548, 5207889.584403315, 5208243.253677962, 5208901.5625, 5211225.9425826855, 5211440.625, 5212695.6105283415, 5212999.989951185, 5213055.100724311, 5213057.481329186, 5213745.3125, 5214953.5288669905, 5215780.83874386, 5221014.0625, 5221054.173089189, 5221779.502181156, 5221839.995970203, 5222176.771557996, 5222392.135637736, 5222690.625, 5222702.578790748, 5222715.1538121095, 5222755.085132685, 5223032.418697103, 5223104.497463066, 5223207.8125, 5223289.0625, 5223419.778269206, 5223481.820957897, 5223491.7867680155, 5223785.892623019, 5223815.33557197, 5223836.252094705, 5223865.43173342, 5223866.562968623, 5223874.606922677, 5223920.5619069515, 5223959.375, 5224008.9366987655, 5224028.506182664, 5224106.25, 5224107.760318015, 5224142.075133511, 5224168.786658077, 5224194.93401487, 5224226.5625, 5224228.125, 5224235.846057466, 5224249.048954712, 5224249.647029332, 5224250.0, 5224277.614758735, 5224282.446941486, 5224285.471968636, 5224285.9375, 5224293.75, 5224339.9063370675, 5224392.1602038825, 5224430.642105138, 5224441.514265243, 5224470.97354143, 5224484.679470884, 5224524.765580347, 5224529.676848145, 5224554.16198659, 5224612.5, 5224654.6875, 5224680.367543975, 5224694.978722719, 5224733.938305222, 5224779.6875, 5224792.1875, 5224822.411758443, 5224940.939080423, 5225032.8671719795, 5225062.622974708, 5225126.702536778, 5225150.0, 5225163.379089467, 5225188.788083397, 5225206.25, 5225234.375, 5225312.613201812, 5225364.501390655, 5225468.037492627, 5225510.277933826, 5225565.552797335, 5225593.737001402, 5227307.752654839, 5227388.461211329, 5228100.0, 5229084.929950996, 5231013.160109351, 6374195.994138641, 6507210.9375, 6510904.244241865, 6572964.271853284, 6573030.29795989, 6584865.1064160755, 6585640.599539983, 6631828.184190748, 6640301.755950619, 6645899.57221501, 6646934.944315956, 6679341.74047491, 6681835.9375, 6690810.9375, 6716508.01632543, 6787582.494527427, 6794041.09030954, 6801733.833118318, 6801745.3125, 6807066.368867035, 6809824.285507481, 6810032.8125, 6814248.4375, 6822044.026719068, 6825353.125, 6827246.831744827, 6827706.25, 6827841.896109048, 6828069.92882037, 6832967.1875, 6843643.342368835, 6848257.03029135, 6856425.0, 6857428.125, 6857676.251834121, 6859248.4375, 6859346.875, 6859746.875, 6860028.125, 6860144.812373088, 6860385.9375, 6860478.125, 6860682.233399341, 6861018.75, 6861330.341953209, 6861629.162417853, 6861885.9375, 6861907.958427872, 6862060.138055689, 6862098.4375, 6862265.026813629, 6862468.75, 6863526.5625, 6863626.5625, 6863659.375, 6865296.14221152, 6866332.164274778, 6869084.140786401, 6870709.375, 6871538.72015931, 6871665.146725905, 6872160.384368212, 6873282.411685061, 6873804.772340968, 6874400.0, 6875252.004079651, 6876320.3125, 6876557.0125426855, 6877093.767582739, 6877102.435407275, 6878303.752478336, 6881635.270756519, 6882331.25, 6885022.636195951, 6888912.430111699, 6889942.86519516, 6890999.829972658, 6892552.526746523, 6894610.851191667, 6894694.655883049, 6895574.835455992, 6897839.346640805, 6901423.4375, 6906188.812727972, 6906449.741177767, 6907048.180652632, 6907075.882993358, 6907477.991790208, 6907505.362303649, 6909469.170761222, 6910656.25, 6911084.786798677, 6911942.4793408355, 6913352.969094789, 6915310.331109165, 6916183.454482754, 6922327.329931944, 6922985.9375, 6924917.811051319, 6925317.204366399, 6926049.396325316, 6926837.053463044, 6927095.356529931, 6927842.127663522, 6928345.3125, 6928361.569049198, 6928364.39889559, 6928414.529785358, 6928834.03736133, 6928901.047483666, 6928951.407943989, 6928973.4375, 6929336.638964246, 6929418.632932125, 6929546.875, 6929716.864619238, 6930010.9375, 6930036.209979501, 6930563.345768066, 6930588.748080836, 6930717.1875, 6931076.020963571, 6931098.457900481, 6931124.3259831555, 6931301.180909013, 6931453.353330235, 6931459.375, 6931510.314050402, 6931603.125, 6931604.733683522, 6931643.689579815, 6931693.717482433, 6931700.0, 6931714.0625, 6931801.174515584, 6931844.508715964, 6931851.10537434, 6931889.160379255, 6931893.75, 6931940.625, 6931950.997149677, 6931964.353477199, 6932022.718320811, 6932039.9722206835, 6932070.050729867, 6932162.144320217, 6932190.625, 6932376.6208609445, 6932404.928516986, 6932483.127665689, 6932502.021145634, 6932533.232503176, 6932565.625, 6932603.125, 6932625.0, 6932719.922341181, 6932925.065955879, 6932962.792367912, 6932965.625, 6932971.875, 6933116.726799363, 6933127.925422322, 6933133.2116921265, 6933143.75, 6933152.469536274, 6933188.940166773, 6933207.733525701, 6933269.461236472, 6933383.55814752, 6933417.926328332, 6933468.75, 6933527.142879726, 6933717.1875, 6933823.43540785, 6934069.512252294, 6934118.237433356, 6934120.645688859, 6934128.0425035795, 6934159.175596501, 6934169.274761936, 6934229.6875, 6934352.899370449, 6934355.831575884, 6934424.2856230885, 6934487.008137156, 6934496.318439834, 6934514.500982089, 6934514.817089563, 6934526.115032729, 6934528.125, 6934767.292722661, 6934812.197653255, 6934825.522902817, 6934829.999434117, 6934898.924787633, 6934925.0, 6934989.451142461, 6935021.875, 6935024.491285099, 6935112.5, 6935129.574883999, 6935136.473685152, 6935163.710539821, 6935172.022290371, 6935275.0, 6935280.818769145, 6935307.610098492, 6935336.995897188, 6935478.538280174, 6935556.25, 6935775.0, 6935897.892049298, 6935956.25, 6936119.310803767, 6936424.878267652, 6936455.365590981, 6936479.865841721, 6936499.495945391, 6936576.5625, 6936634.305696685, 6936693.654976609, 6936744.947898284, 6936801.77918495, 6936823.189256238, 6936900.0, 6937054.6875, 6937720.341101134, 6938584.212934153, 6938837.137029659, 6942744.843935446, 6944026.559059108, 6958582.175324715, 6958584.323733585, 6958964.137083205, 6959781.290633755, 6960928.256868311, 6961026.5625, 6961161.681746031, 6961893.013205416, 6961928.444381484, 6962181.6096544275, 6962437.022682818, 6963070.257177131, 6964906.804416845, 6965460.232111978, 6965692.320885304, 6966056.25, 6967321.554850133, 6969993.981630167, 6976043.1535526225, 6976939.973503656, 6978326.235990357, 6978896.491744177, 6979905.709054391, 6982677.070503348, 6982757.8125, 6985148.36730911, 6987052.982633123, 6993562.895574128, 6993668.75, 6993681.689377959, 6994729.225409921, 6995838.212661765, 6997411.321595294, 7000026.581154338, 7002362.460475825, 7008353.125, 7017848.4375, 7020050.0, 7021506.1599281365, 7023959.148589724, 7024726.5625, 7024832.8125, 7025389.0625, 7029348.766415234, 7031430.893323357, 7032179.6875, 7032376.498941556, 7034133.712002623, 7034467.796339197, 7035643.75, 7037143.33320635, 7038357.877331979, 7040143.896852869, 7040723.85666687, 7042785.598060718, 7043345.040974619, 7045000.0, 7045181.25, 7045755.510701112, 7047141.843243821, 7047514.0625, 7049380.257701058, 7049501.5625, 7049537.247211366, 7051461.642864619, 7052557.8125, 7054107.475980746, 7056074.197715229, 7056338.470108332, 7056871.444676714, 7058248.4375, 7059977.7750701355, 7061230.910738644, 7062004.167868961, 7062376.5625, 7063622.124581311, 7063706.25, 7066695.549712675, 7068131.0843846, 7068173.507220812, 7068275.986431607, 7068517.1875, 7068974.9601809215, 7069016.031917264, 7069047.096406723, 7069771.812100078, 7069937.427884632, 7070253.125, 7071111.271885853, 7071632.578672367, 7071837.5, 7071979.6875, 7072084.425704559, 7072196.875, 7073293.877929904, 7075396.454666216, 7081790.625, 7083431.25, 7086273.548810973, 7087876.5625, 7088253.125, 7088642.652981645, 7088792.1875, 7090365.625, 7091169.326914396, 7092508.611124538, 7094218.215746578, 7095895.497864037, 7096497.093250802, 7097560.454791405, 7099267.968519554, 7102285.4166049315, 7104578.125, 7106359.375, 7108810.9375, 7109906.227420356, 7111194.368082609, 7112087.5, 7112367.5342490785, 7112667.118969541, 7114712.5, 7119326.539076371, 7123904.6875, 7129281.6921669, 7132898.271218009, 7135449.222257177, 7135967.1875, 7136627.136470465, 7136768.75, 7137334.375, 7137351.186765079, 7137596.875, 7138134.770134213, 7138205.387137628, 7138222.659621556, 7138237.023230174, 7138717.1875, 7139324.809859575, 7139489.034826313, 7139805.481418487, 7139883.661935324, 7140172.661106609, 7140231.3339060005, 7143890.438258253, 7144160.348244137, 7145619.760925637, 7145954.302031126, 7150780.614721057, 7150944.964354607, 7151163.794982317, 7155776.5625, 7159848.4375, 7160842.54261339, 7162437.587649635, 7163414.423213007, 7168391.056092707, 7172052.147935368, 7173430.6279098205, 7174371.083064618, 7177559.035163705, 7178188.462453836, 7180007.484445045, 7181335.626992576, 7182540.625, 7182587.246830799, 7183691.213632105, 7183973.4375, 7184223.128722099, 7185020.922099794, 7185098.4375, 7186611.977192658, 7189229.071083616, 7190372.717688182, 7190390.12291207, 7190905.327252368, 7191320.3125, 7191421.699029655, 7191601.5625, 7191865.625, 7192506.412789534, 7192720.616095358, 7192913.074928116, 7193581.25, 7193898.4375, 7194482.921016621, 7194517.6072131535, 7196171.244076976, 7198732.872926985, 7199382.57949176, 7199708.899997584, 7200109.66157479, 7200111.525428853, 7200762.349160912, 7201306.189189249, 7201474.753446751, 7202614.402040521, 7203245.3125, 7203934.375, 7205124.546937718, 7205338.921837826, 7210149.069905978, 7210840.631004007, 7211360.207160012, 7213773.4375, 7214285.9375, 7219125.2747750245, 7223040.435332608, 7223521.875, 7223984.478627144, 7224971.5000074785, 7224994.4314132435, 7225741.56329249, 7226634.132686926, 7226864.817688355, 7226876.860750338, 7228476.5625, 7228537.285056389, 7228773.254178528, 7228861.823737353, 7229712.5, 7230381.131845914, 7230625.537268028, 7230676.5625, 7230822.039519066, 7231027.892556925, 7231369.748043564, 7232149.068729887, 7232167.737142703, 7232229.995093022, 7232345.658133609, 7233652.867359546, 7233727.377658011, 7233746.205170213, 7233890.625, 7233937.5, 7234094.159675399, 7234315.625, 7234332.8125, 7234798.751977236, 7234902.321571852, 7234943.580019732, 7235321.85519202, 7235323.027276826, 7235324.762473323, 7235582.8125, 7235609.375, 7235929.6875, 7236354.610285225, 7236515.096075454, 7236626.5625, 7236695.196117649, 7236882.716058247, 7236995.658943456, 7237044.293502795, 7237180.744652085, 7237560.64216634, 7237575.0, 7237652.054728826, 7238205.607132945, 7238474.018712048, 7238482.58065019, 7238567.1875, 7238577.241111171, 7238627.067321068, 7238831.1458909875, 7238847.318324079, 7239080.634861367, 7239102.815223075, 7239137.5, 7239186.6771552, 7239187.123154033, 7239325.502659158, 7239363.681710437, 7239435.673001714, 7239461.643397808, 7239479.325912659, 7239505.372980159, 7239525.0, 7239533.917638685, 7239535.9375, 7239582.8125, 7239661.885716734, 7239681.58814542, 7239801.633853041, 7239854.128760917, 7240008.554243618, 7240012.459221523, 7240104.897448278, 7240126.5625, 7240138.560628585, 7240175.0, 7240490.043579237, 7240564.0625, 7240596.565193965, 7240632.8125, 7240661.179691219, 7240694.836429745, 7240702.1323997425, 7240933.863863643, 7240967.951917977, 7240969.70348104, 7241008.092897887, 7241021.486420734, 7241078.125, 7241081.25, 7241247.888914906, 7241463.710400428, 7241573.086722342, 7241591.23449904, 7241698.4375, 7241703.4620155655, 7242221.875, 7242371.157745181, 7242399.904896836, 7242466.883361149, 7242548.4375, 7242845.602151509, 7242886.221815445, 7243306.651237296, 7243335.932957451, 7243603.111985825, 7244054.6875, 7244069.770714636, 7244521.665180522, 7244604.6875, 7245027.586538115, 7245157.8125, 7245269.978715415, 7245371.979756168, 7245604.501080005, 7245891.755973094, 7246010.9375, 7246084.375, 7246101.550877057, 7246455.727043197, 7246526.330579147, 7246700.0, 7247027.819555859, 7247376.5625, 7247411.364548663, 7247656.25, 7248170.3125, 7248450.0, 7248976.499065153, 7249409.375, 7249892.1875, 7251168.75, 7251350.130421009, 7251359.62874821, 7252404.094415788, 7254174.314467945, 7256721.455512901, 7257330.62068624, 7258733.204467745, 7259398.219082091, 7259423.614741474, 7259942.78690061, 7260472.763079933, 7264378.539550724, 7267818.206391207, 7267880.5469093695, 7269830.3819850525, 7270939.0625, 7272645.3125, 7276940.531574293, 7277095.3125, 7277783.159659506, 7277946.875, 7277954.6110484395, 7278170.3125, 7278425.895967523, 7278547.386470348, 7278592.745011684, 7278605.778165587, 7278817.254325857, 7278952.856042553, 7279280.85272871, 7279328.213998909, 7279354.6875, ...], [23.643179141140145, 42.48318675860151, 7.49068981877128, 38.75842704829169, 55.009473336974054, 58.88633547569222, 60.197385193128795, 65.49096292361664, 25.30843565653029, 41.276303867402994, 37.45761306700592, 11.697607824175828, 50.70240498088894, 66.83867312665454, 6.385174658119688, 19.754911269813267, 9.285393066197798, 5.533205257348808, 5.049763256379972, 21.414318264582853, 18.081370868365134, 99.78294792882534, 26.606017069682487, 88.7261801908893, 19.62593082483185, 58.19591031009723, 68.28432413717798, 39.848828011611005, 21.234004872169102, 15.115479511171577, 6.609070856586649, 22.84116788302886, 8.782449318495814, 28.472737453495945, 19.11444227483412, 9.063385533589795, 62.08199726109537, 7.21262302455745, 14.554902388740278, 47.87885989689192, 8.574343511483082, 53.975034304842865, 43.73534919401438, 20.833046080772135, 24.114442850576115, 58.5065949828188, 71.05160201515565, 74.1621906159377, 15.223457633849755, 16.522527162558763, 5.740213902291141, 49.63789098547725, 39.74290956257322, 58.27430818409509, 23.79614561793198, 68.5407030851345, 7.687686055010499, 65.97972700682142, 15.901556486002182, 5.769507993433238, 53.92730846113785, 30.162336381826176, 9.802479473874799, 72.14329351424168, 44.93504228610041, 63.361247584736475, 16.037146498708456, 8.79033269708307, 9.371825994328798, 5.191329019680247, 82.39962003712566, 80.66648916533633, 8.805293894072637, 70.01036295652969, 96.14781042562751, 59.16872228730954, 25.009225292200433, 13.255956485654277, 7.043139853597584, 12.719666040415932, 67.23144460986833, 43.33260261084348, 17.466833653442194, 21.681055189572405, 29.212998049811464, 83.5054839338351, 103.769514396483, 57.62491590129914, 24.820943344503643, 166.41672811462118, 72.29800257140437, 10.128275178784884, 32.48242123989794, 90.41076307269562, 20.541403339879917, 12.62509219971626, 69.61978550380871, 39.81436128573606, 27.023148163817684, 25.09405221552067, 39.72323950240246, 11.41220224031305, 50.33002692663899, 17.160444117278082, 24.263864849443813, 51.268183627665444, 106.09979589439044, 47.839822923709036, 14.01553926979719, 88.39180151609011, 5.681984314447093, 102.65474539971456, 21.451735070420938, 99.17978916282216, 27.41611224901962, 64.82713542650596, 6.256397848858421, 30.767420167745815, 87.99031047275139, 23.392441141205218, 52.518266441137534, 112.58428133306258, 7.038404560089484, 71.688993578627, 25.91606410015208, 91.95968001806459, 26.188535329420432, 25.505999248946754, 12.27373390779271, 15.084222050080985, 39.8487732977939, 137.6699925419507, 68.91971510653714, 13.07018899967099, 5.754754598878808, 59.49910128952639, 54.54289610559196, 157.07989280870086, 44.15576575609016, 9.274290478727245, 62.256796823254625, 32.22281495904736, 58.32357240095782, 60.35141139260419, 30.71805830990632, 23.55961197987252, 33.85323571924356, 6.325325033503332, 10.037285521941111, 62.52248589634203, 44.284382318870485, 19.18274084428906, 7.4491320307590625, 30.879248502807904, 54.13285663194078, 5.063473547458756, 69.45989990385705, 85.99206799881875, 13.703592725539655, 21.36688440597751, 8.383817756859285, 44.54604541703853, 71.22919153557982, 6.238496109638879, 6.245165409699367, 38.477588465925436, 8.8771140012833, 33.674826867795616, 76.66063755551123, 5.0933259613568955, 14.326378163924026, 21.441172118190238, 13.725081601711175, 20.697981648545532, 9.6223528350762, 13.942233726417477, 13.184098499173407, 67.03763829037807, 7.905975735057047, 21.004838098286353, 5.319243902267688, 45.20782484128271, 52.099902608210236, 31.982986859278302, 9.083286608631072, 27.578582823560993, 8.068259694676954, 16.032540816866252, 19.49614403858449, 49.03564233516376, 56.84270447702569, 8.27523135296578, 27.16636592993714, 61.79918284781335, 71.20677515022098, 17.917147901459394, 9.197635327664615, 24.94907327464172, 57.632239482669426, 11.045342103604202, 25.646335357757017, 9.693705183611135, 48.32421100038188, 16.837241554248216, 103.39223455937577, 19.435132381986687, 10.486278894005872, 7.419908036982027, 41.026270395881504, 29.885248825925384, 23.024902040818336, 20.831442588798716, 67.44149012374018, 9.098450134689466, 56.53941009687496, 253.3812585176222, 15.99518716784049, 17.336261913972063, 66.16744061824744, 68.52935262678263, 32.76139568535981, 8.65198180329568, 87.75772072208305, 54.281407195239815, 14.507036495051366, 10.843601301589374, 139.04531903601634, 132.9393767981352, 23.042376668809208, 51.53419619005201, 42.09983442875305, 100.50042395393842, 15.837173478761434, 11.416402467526362, 63.93835459931459, 26.531759051741922, 41.80298063825602, 29.455082648214187, 13.45968683408762, 6.345319424372239, 50.984619892165476, 12.850652698271537, 6.8004014447021195, 22.83925852836962, 58.944302419649745, 14.606436526601984, 69.55792103602471, 95.05008624815582, 17.429209821326985, 76.15773422057404, 50.608415336674405, 14.303811474284936, 7.787030234718944, 134.2229574193732, 42.05262712424546, 86.13328630825801, 17.65062302736053, 96.86359717880586, 52.492109843423286, 34.17991946774449, 67.83555429035036, 16.72304055692598, 108.93386007053564, 35.487380340723796, 125.40468240799407, 36.430533143619584, 82.10175637330744, 5.279170124195056, 101.8763836594552, 80.99005602997438, 13.005864433940278, 42.16306536255441, 82.03324962185427, 26.235921732651764, 81.74202084105647, 24.671353510235914, 55.87738976747239, 68.44511017001646, 6.283784017423068, 32.68631465438965, 70.78923107000583, 42.07695840856658, 5.790353688024057, 27.843046443104036, 14.82093137090286, 37.507557180094174, 8.497135575997664, 8.104929189468175, 50.78074376120947, 30.1308379635501, 9.471511698853407, 10.766059880638501, 20.246150802608533, 6.992155505447037, 139.76724711384853, 5.852302973554594, 33.61052418551746, 9.9782701707478, 34.29029354512676, 25.700498060679863, 30.632344773024485, 20.37483150372951, 70.51887284047145, 85.68911669583268, 6.761502057239604, 16.79123897659122, 86.9335720282738, 72.66156548756537, 6.846905999917864, 13.575848337570843, 167.99045547080345, 20.217755910776905, 25.335187471070835, 8.850708341433952, 23.160038506130505, 81.09586034015715, 107.0529774075215, 10.369289742266867, 22.61515624445096, 37.11125053586444, 22.622190712006947, 8.188575820710458, 46.40428402740564, 96.53209780626162, 21.1582934786071, 17.679603782367995, 25.13461929029323, 27.666949003209773, 6.4426581927946005, 68.45788983709541, 210.9006628711238, 10.274205984450555, 59.13093456600192, 15.98573411353485, 112.77304407676161, 22.131479462563014, 12.227476952613316, 51.3775061965385, 112.25877483954073, 65.49854215904213, 17.059984846165463, 28.258805353109583, 60.33937984464745, 66.24554634651668, 14.509357236357191, 12.239979971318308, 13.747608000689496, 68.18374860701678, 13.298084861835388, 66.50679424389087, 47.58125416332893, 40.52518987059326, 62.61888799517643, 15.310627874301328, 9.308428923569874, 17.017735577416865, 25.6560204672056, 12.346367256565692, 16.24460528763577, 14.117440525215068, 6.761381869841331, 163.43264852030123, 77.51236374976321, 97.43152484767688, 91.43452827634249, 23.328663790361038, 56.766931443054126, 117.0577053686185, 37.908533040546764, 12.084950932568912, 16.290966174739456, 7.623132023346532, 9.437595856792317, 15.503551526216093, 34.71427860634565, 47.097024660042365, 24.083129025871145, 58.932737987558184, 61.831057678116245, 48.95701197696733, 11.890804088249796, 19.606351447139442, 7.380918162977932, 29.28043720802571, 28.270204515738865, 84.96386515065348, 16.28006013860185, 37.836284067444915, 46.128908027264075, 26.802639471933592, 18.382611766349743, 123.70519821821544, 22.07844206537106, 11.471504985433308, 5.363284315009734, 15.545145012425706, 38.8728778077414, 15.172020591975558, 54.23168906714006, 50.8285917669282, 5.361816024636647, 33.35347265987614, 172.7206898527469, 205.53773101180428, 5.102489102539771, 23.523849929168822, 7.7806729045777345, 10.374632306573373, 103.1868026010326, 12.53060209431637, 66.37103335357925, 70.06565505954023, 59.236584188386836, 5.963871689963087, 71.76885819021776, 7.587667589020204, 76.75045464048243, 13.93615189634733, 22.73762897386581, 48.52522125453673, 22.466823971019807, 19.074738364386732, 78.71247318244771, 31.80170256907568, 82.52328587001345, 67.71057740163717, 107.37674891271995, 85.61330405109899, 106.75648161468814, 21.49183431607434, 28.663389589042822, 41.39905461195945, 220.22788102827718, 39.64811070780111, 21.86368990127322, 21.246488945767638, 99.99995025133543, 15.528504324798941, 131.8211043452174, 29.763183981591432, 10.305852749683861, 44.481561854672805, 234.73047199407924, 36.713261014984376, 112.65773361797866, 101.3071106776356, 20.13179647708414, 24.629090198253476, 57.914000690491704, 10.631688446043128, 7.43895314631348, 20.97896534626243, 167.25382934778676, 9.40418630257736, 51.81600716741768, 16.942111205467693, 155.59991708465196, 116.6057026211048, 24.81812940299292, 12.835150682156224, 9.925025750559879, 92.04364178507673, 106.54566340867852, 8.734783589417773, 20.97341727312984, 23.800931705304468, 14.330766473453696, 34.12590350867242, 134.55670503570576, 12.916643495322232, 5.0387819180762845, 18.070136408849315, 71.94672778972841, 14.067917116316536, 84.62072171006915, 65.73420973727993, 7.95720464551191, 6.25051370474027, 62.07371762606188, 46.895146122979, 61.80693260181905, 8.517048747055949, 5.046496530429146, 5.696907110002234, 20.4936220934906, 39.50799423144137, 5.757404503437924, 106.12919516270419, 6.349330737262159, 84.46861551801157, 13.050799214956596, 13.474893128603641, 26.67285364602696, 14.718242264898917, 58.68264219669225, 9.92933798346559, 16.400030068018634, 40.98414601575813, 23.28157827000219, 10.408011567811737, 6.733038005174626, 30.85544616178239, 14.621537803085102, 43.174581123446316, 38.00278742864853, 40.65920901596585, 56.370450275321744, 24.450732639285977, 10.166044617690602, 32.17997637318741, 28.664860346632675, 13.21370908846302, 8.297394984457785, 26.098518291629375, 184.99048667635174, 105.77827450809875, 56.07575551735824, 10.275498856321144, 70.4407795038255, 32.33223069262975, 27.38370932791273, 65.01225362336379, 56.0165219582963, 127.41376176304504, 13.643669674623755, 27.145474765814647, 13.445022828176578, 11.284224318942545, 80.19420419545717, 43.354584922613654, 43.0252930707204, 16.18010915651941, 6.180419049643301, 10.240644002351026, 24.25167535130146, 31.421378144461926, 115.42262708754119, 59.17997861703719, 11.526556645720717, 133.23717896818695, 239.96530756005362, 9.713721659416494, 30.573425704673163, 60.15992387126194, 30.206141238293846, 22.66357786067122, 10.250658693965018, 64.62498581020115, 43.303780653948714, 61.10457829085228, 37.89001590020446, 83.81506307990462, 21.867303048004423, 106.37084729102503, 20.070828882228138, 26.32059191025989, 9.265506898819885, 16.354508063116874, 40.73703854237639, 53.80781273225678, 40.573822412622924, 9.875613806058778, 43.19979171771679, 13.075475217019614, 18.943129819980836, 13.291760219194575, 22.423066873489446, 5.807901348955455, 9.168301747609767, 12.060617707869337, 65.3819184006771, 24.7495969016215, 13.555157197886794, 19.591592386468456, 13.348387174270544, 29.202198044107465, 6.55809643364102, 10.062888842670992, 40.473239040110336, 33.18565180136074, 8.343015834271228, 5.518584448880147, 5.307517328529061, 11.65299194084908, 7.789531672689121, 59.82310373767486, 9.683164439834847, 113.61137762094623, 71.89280130858029, 56.990034751873715, 38.06569820210768, 17.473040884504, 69.38918430000838, 112.47425331718065, 85.26150206504826, 10.514523869063062, 14.222363252515752, 142.10088295507276, 51.89155079539393, 60.227858433277284, 86.84539551022414, 113.53944670383024, 85.14422908616581, 81.69827134930216, 24.659403228897183, 18.35893096111014, 21.125249189867752, 21.452748479695064, 44.10186769869843, 114.97836623069158, 33.95296991784029, 72.09225227694351, 160.03963139454993, 96.51324443363075, 55.47860555768001, 67.86330321864277, 12.097451286824924, 105.52824563840659, 22.97838249441659, 28.36953795587377, 5.34180378925065, 118.65231040083957, 52.58469048560475, 5.536711282357216, 6.272345835219124, 33.23895054621099, 71.70461652603069, 6.610450004681599, 19.416813012127257, 7.722986797427229, 6.54498791900449, 5.779487323583089, 40.29836279411502, 13.088343349093654, 19.66281750056107, 11.342799841491724, 38.95817756130985, 56.42184058132743, 35.54721693382737, 182.58514693006111, 54.78103514307996, 61.0538915368008, 22.74249355340523, 21.094143998783167, 17.310264502959093, 64.41302971125788, 50.70418393872362, 25.997284865769437, 201.6311861109213, 79.29981730061705, 11.891746683310178, 16.855053482521228, 175.08281782114545, 8.50070353295684, 38.21397102019165, 87.56501120290054, 31.884541855199927, 50.496669730028934, 63.29940421004952, 117.0416829254267, 37.94607743561728, 51.79274367705849, 45.508593972423725, 126.82923052048702, 21.511713479316157, 8.10655650875275, 35.52223494170974, 9.27823298948128, 20.007873194664832, 41.82753328170516, 85.22939274006723, 109.46160852200839, 9.386830572228455, 9.458741084147539, 37.129299746742674, 14.237477548959058, 87.91131574095371, 57.289061742287245, 37.53412154797886, 19.39753658417865, 16.97023242194226, 183.78824695849306, 9.865049793540043, 55.98265989084147, 31.73327198404999, 18.543063432169077, 95.03544149309165, 75.2477629080532, 130.9310996920352, 82.13158092933458, 22.217510313011758, 99.11931718433507, 130.78182361522758, 23.26186093079368, 10.402251731116092, 46.42228265933681, 7.188641774828865, 51.75152772057092, 9.540371047534888, 25.63381628161176, 7.628650673268919, 82.53738180112892, 38.07024444503194, 38.45579737151329, 148.18101998604936, 5.830546135606269, 11.030793178741998, 27.175084164720076, 46.55398911341917, 13.527061298437587, 9.141216729711255, 35.07896711840742, 100.5250960842625, 6.495069097867007, 38.49256578227709, 76.05644613578995, 54.76499649964602, 137.4425693730533, 83.07034081115371, 201.80291617984997, 38.146323052139316, 32.161281650260754, 9.758660622737779, 73.72485893477406, 45.88652930731064, 17.715641028007965, 28.282202930158874, 35.113631622072916, 15.698458791166175, 15.84418546335607, 24.269076710594383, 38.41095718121744, 170.3606204295761, 58.967343510641754, 28.890321410647903, 58.44990895785796, 222.98314798609186, 14.403757361644434, 155.68904700099364, 16.451310769566387, 22.222492164856675, 94.44461397049258, 14.852974853962102, 94.74910108442147, 105.79849244250792, 145.6176148140699, 19.107687010291617, 41.19718506562112, 183.92533427328794, 34.51375546804897, 29.040461526952182, 17.932860938804502, 43.622937543938775, 28.57462754007489, 8.694791173485433, 48.80251641958729, 14.270486855043, 56.697769419943846, 9.175642182240292, 49.8529241046795, 166.63627110777185, 5.269557894944566, 13.541843578756135, 5.618702947346201, 82.0767920246989, 149.01820656888998, 103.34786149124359, 34.86451824653509, 12.970214004216682, 45.40471507772475, 79.70925343669964, 52.249396205797524, 50.106295529257984, 6.544237485336574, 11.2675294733319, 155.75713813473126, 50.636915153206374, 6.582953861805139, 19.601390558175694, 50.61474692649559, 83.6448740137173, 13.060147663870842, 133.02365054170616, 13.876817769813952, 50.509228785725554, 24.36795802212075, 17.787105156311245, 70.07736237278836, 23.639259974863634, 95.04970961141217, 38.253825918984624, 35.77752138889603, 203.9328184400976, 12.761817992957981, 21.472297272754954, 153.73805319085758, 71.20295192273949, 25.475823852336173, 30.924374807372132, 91.15341192845115, 9.472951557634465, 16.240399211095013, 18.441694610330337, 37.155571467862664, 93.3869962374001, 6.099457159166862, 5.637693467690134, 15.225792752263935, 7.625240290673269, 14.122018745814435, 91.66606880047733, 76.12854879747903, 25.728597552169386, 34.49048115830254, 206.50306087030123, 24.458332385980395, 21.69580336036832, 46.101049650658176, 30.040704355037654, 5.900897923714717, 36.362052619438764, 18.060964431269284, 45.12655840022305, 8.781807052404597, 62.67795124358528, 38.76228238156312, 58.52201156286199, 82.5201855680854, 38.259530259832346, 9.420590291916396, 22.837858713910492, 18.381104843071643, 87.90374885965782, 64.72927596729127, 19.05056211977954, 39.362949406556915, 53.455837321965795, 21.57636956449044, 20.092671845446805, 19.89823662176764, 64.31546144927724, 48.93873705662371, 66.67134369035594, 54.22206242906556, 90.18851179957163, 14.123853185496488, 82.60566784284488, 12.28206661665418, 41.06176168868065, 9.605776873723407, 158.31980792359775, 34.82546933368774, 26.08958654265457, 15.12892246512689, 73.11608095451362, 74.75017775851828, 11.834719475093681, 77.98325029273201, 73.28617225071869, 6.82795665044607, 12.565347859013748, 8.198688859502104, 28.138740332940433, 13.57883776605296, 183.63396538966774, 146.10512527613042, 64.11098980292256, 69.34937528530801, 14.65514972920828, 8.920920676618287, 63.97520313157338, 5.527458673540174, 41.60375511409816, 11.71613948206678, 43.42283157601556, 6.4106877141676, 201.5425000125338, 88.79766553901722, 88.26103826816228, 6.641608943841725, 5.744774036472241, 204.97495430132366, 31.920525431400353, 8.681297090336196, 65.37815435418061, 14.559006822717562, 8.5358057686789, 228.02515567115657, 23.626653219366624, 189.18563655731182, 18.781546575787065, 50.47629320709875, 5.85213308252497, 63.742676464363015, 14.020882375625208, 21.87641028562384, 115.78272039700622, 81.48353917510784, 32.33680247250755, 125.88516419709033, 41.03486926327562, 59.9784425578299, 20.424097245161008, 19.478300800882707, 11.241098346725844, 10.353874324234944, 16.306063615750407, 9.297159057401108, 25.36974901205813, 41.360356476153974, 13.140464970989566, 65.55482815913581, 153.33502434136398, 76.42628787900142, 23.626286110831302, 95.07831951288588, 85.64760237675625, 20.38778132184142, 45.44803043315124, 30.125009015354784, 18.95880582357909, 20.47040415820445, 24.06111751554824, 14.542180989405843, 54.81832254026807, 63.121470749748234, 140.15749519720848, 23.107298223182124, 10.620377290327184, 12.235842013397582, 28.571790302267843, 87.37419482916462, 42.92949788171339, 19.568928454724414, 94.83067672568897, 33.176731365927004, 45.504008174657834, 24.722819478783187, 11.603226666984124, 9.695394756280074, 28.4354951503616, 14.892136415789755, 30.4486167156414, 8.01944696020508, 61.733363560216574, 81.26544243663056, 77.07110640387158, 72.48974455543845, 23.328574504876993, 70.20747311248145, 51.43963322765258, 35.98538327494195, 38.944882217715985, 78.90818254509249, 28.2969398676882, 13.263609434796642, 105.80017420701788, 121.58024069862476, 23.681448507039118, 131.9839241774585, 16.864341364447043, 82.24428944590362, 72.56584408809387, 159.6737497665721, 27.329568356939184, 68.0232731488537, 64.92395283584348, 35.14254190013374, 84.34239330617916, 11.548931810754304, 19.53876682179827, 32.86482284768993, 5.513062074500233, 14.358490320872178, 218.74770574848944, 204.23234129416528, 128.92017420435516, 7.8354398974379835, 7.376259238930473, 16.798215956150678, 21.068836768953624, 32.60769721665082, 45.81486724716758, 67.28460052469858, 45.586053149874516, 14.596982770122167, 31.395504785047613, 140.0057197925314, 85.5974131013074, 27.098689348139935, 113.74730341623007, 12.89197547826863, 12.033835445443856, 9.851936319100659, 8.051887567468606, 60.41098901221468, 113.38849504511671, 8.087102327803493, 8.33420893646793, 63.60561000770916, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)