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 = 44917
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
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
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 - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
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);
([6858998.864615536, 6887425.345980463, 6924867.7493864875, 7038833.6851368705, 7220295.292535483, 7286065.501250159, 7303958.744287166, 7307356.834572851, 7318340.445545566, 7322903.3573565725, 7329557.540234916, 7329922.921789794, 7330032.8125, 7331421.875, 7347741.624954361, 7348268.026347267, 7351040.430850496, 7358136.328866392, 7360307.108052404, 7361738.076458706, 7364596.875, 7383393.534558936, 7385204.390473168, 7386981.616626741, 7391227.690786712, 7403574.5472002365, 7411238.936355876, 7413853.125, 7415466.544157389, 7416488.995033597, 7425970.6155399745, 7473251.5625, 7482056.5717369, 7484570.3125, 7485808.900677073, 7492774.91996266, 7492893.542332187, 7493675.388727801, 7494119.777578385, 7497215.000890267, 7497524.4724648055, 7497575.908334969, 7498835.9375, 7501550.0, 7502356.25, 7507633.164403233, 7507676.942800937, 7508614.732431925, 7509397.93280144, 7510707.83606483, 7518264.818889072, 7519587.373397478, 7529809.074697013, 7531910.250472301, 7535254.914995829, 7537076.322464357, 7539928.125, 7540037.40016407, 7540776.477487167, 7544001.5625, 7558524.25398607, 7560004.58425655, 7560051.5625, 7560114.2073223265, 7560268.879262343, 7560626.04178835, 7562312.669122213, 7586262.5, 7589207.8125, 7592133.894220251, 7596065.113918604, 7598957.342157152, 7607998.4375, 7612962.5, 7614740.319388605, 7625142.947720317, 7630175.617766436, 7632321.171865312, 7633522.757535505, 7634928.901026581, 7636292.49703604, 7636329.6875, 7639354.946173342, 7639706.2382099405, 7646751.443046546, 7653522.807443597, 7654439.0625, 7654454.018243663, 7654941.952512195, 7656485.1596908085, 7657251.664138594, 7658729.6875, 7658797.087794724, 7660250.4502668865, 7660704.963571151, 7660882.553625064, 7666936.748843785, 7670176.5625, 7685968.9280832885, 7701354.17843166, 7702087.635210595, 7709333.111232726, 7723459.710692153, 7729354.62256437, 7739462.819210199, 7739820.524931519, 7747941.475412948, 7758882.141241681, 7774337.689585802, 7792563.173478731, 7795332.734960818, 7797849.815489558, 7820531.849054919, 7833635.490391897, 7845059.033256783, 7873500.301322184, 7874273.212758495, 7875010.114833272, 7893047.629668509, 7903520.040534963, 7906971.875, 7916859.375, 7933350.5446192855, 7936777.218035541, 7937449.75908498, 7938415.014468724, 7961012.327992592, 7962888.989522642, 7980140.996376107, 8022743.531307549, 8028836.945657757, 8044371.729797225, 8066504.6875, 8074312.5, 8077343.5284113055, 8097523.4375, 8104845.613166872, 8105890.734462258, 8107135.265511002, 8114141.010390983, 8130054.6875, 8130629.257950044, 8162877.499322874, 8163644.677028928, 8164923.152810662, 8173361.729692018, 8187101.5625, 8190263.020071781, 8204303.35739593, 8217482.8125, 8226149.075185312, 8242082.150087726, 8243483.151636946, 8248296.412725796, 8249607.545066252, 8254911.8847576585, 8257887.5, 8288881.530413956, 8339325.0, 8360453.575894521, 8377849.071494732, 8395819.868040238, 8430987.69685944, 8431051.273334408, 8442809.576435953, 8511507.687034125, 8524945.893586112, 8525385.856700525, 8528530.92070436, 8531137.469249668, 8552706.25, 8553329.254877338, 8559702.707128577, 8579085.9375, 8626080.318124112, 8707812.691483924, 8732025.0, 8764953.779067561, 8778314.92224301, 8780502.464224173, 8833912.732058618, 8943864.570826521, 8951339.784429971, 8960279.20887259, 8966679.340661054, 8969052.605861839, 8989158.018494895, 8989190.820835872, 8993657.122422341, 9004731.290472627, 9030747.121198028, 9030863.707635403, 9031018.18303325, 9031385.9375, 9032592.660323173, 9034879.151016569, 9034886.593707316, 9076145.3125, 9076525.0, 9089313.382973291, 9116706.747016322, 9130051.29631514, 9138231.679051666, 9139343.75, 9140346.364681488, 9142437.5, 9142532.8125, 9159910.9375, 9170462.343029086, 9201360.585310012, 9202807.8125, 9213735.9375, 9218324.719261928, 9227071.483983887, 9230233.000039762, 9263988.716526745, 9264606.25, 9264662.267263219, 9264663.612452691, 9267791.977879552, 9286156.25, 9291426.5625, 9312517.24792807, 9361389.0625, 9366748.090711823, 9390270.483506514, 9395062.142354887, 9432430.458646836, 9436204.116110735, 9476534.227423484, 9478895.028285496, 9480039.00352661, 9495668.847484829, 9499676.604253517, 9502121.283227414, 9502604.055247307, 9504193.75, 9506382.127908086, 9527229.93999019, 9530851.97211219, 9532859.564555846, 9533615.08797011, 9535846.055517102, 9540606.085085688, 9576052.075281197, 9609828.32828209, 9620925.442096327, 9624192.774069041, 9628367.1875, 9628399.143326012, 9641096.875, 9642190.254003394, 9644595.918756424, 9653903.71666135, 9667486.37911554, 9672112.5, 9673377.04755547, 9677187.5, 9745730.511695355, 9798259.359654833, 9802039.021894034, 9803075.939337926, 9805332.49622078, 9832771.696683377, 9832805.259320779, 9863489.380819073, 9863665.085372081, 9874484.375, 9875382.8125, 9878163.988510167, 9891699.446931953, 9893319.018948518, 9922817.1875, 9923297.687045433, 9924701.372217163, 9937135.800367767, 9937307.883486256, 9953532.596548485, 9967718.922372838, 9973868.36801587, 9977443.882834002, 9979519.344982233, 9995982.747831535, 9996911.964824585, 10004772.458185138, 10004806.25, 10007046.71714768, 10011110.219590096, 10013927.26579689, 10045102.338525785, 10055131.891156645, 10058218.099821037, 10059417.247278955, 10060256.25, 10065733.976078223, 10068684.326119138, 10070209.294462154, 10077913.502498452, 10078574.169889547, 10079847.663216852, 10080594.018896418, 10080921.875, 10081339.186333325, 10082996.50549463, 10086129.322024204, 10109939.0625, 10110081.25, 10116324.534259982, 10126410.33789154, 10132223.744952025, 10133507.172428096, 10133998.145614345, 10138118.069316283, 10138477.7872416, 10152963.875130275, 10152991.10393106, 10169123.880551951, 10171528.125, 10201558.443410352, 10201875.620347805, 10201877.86713919, 10202100.665729169, 10204235.765824873, 10221649.428482559, 10226129.931814838, 10228256.842822837, 10229520.19157566, 10235211.878141731, 10243115.506603716, 10243703.08447117, 10258131.709388694, 10258167.012207247, 10269623.200385462, 10280634.626474854, 10283784.469686734, 10302486.060262177, 10308798.514870696, 10310257.369846411, 10311604.934901908, 10311687.5, 10311827.932531197, 10318830.683513178, 10323560.475211762, 10324556.25, 10325463.369182676, 10325750.780329108, 10327799.274715554, 10329904.6875, 10330398.210914973, 10331134.375, 10332490.515948918, 10333025.45647337, 10348906.996330649, 10360984.375, 10361692.575108012, 10363694.209883364, 10363724.330440858, 10366025.472826844, 10368081.241240956, 10368092.1875, 10369467.837114656, 10369649.195121497, 10370275.19449109, 10372331.156684624, 10372365.740880238, 10374695.166693037, 10376099.600599611, 10376989.0625, 10378343.574059436, 10378827.767798241, 10383501.908906478, 10386697.542869514, 10402601.5625, 10403466.976196362, 10407402.012162497, 10413986.30013606, 10421179.968321553, 10423525.779274136, 10433160.9375, 10439093.75, 10455982.781697603, 10460925.878612615, 10460956.25, 10461320.222867005, 10464813.88673437, 10466557.632031096, 10468962.883378258, 10470310.928842774, 10493109.375, 10496626.5625, 10519098.4375, 10519486.824987937, 10520041.85286152, 10532031.098312046, 10552530.18518446, 10560270.150179967, 10574114.864345098, 10576104.477014069, 10601137.5, 10608365.06582127, 10610663.57076658, 10611031.679086559, 10611063.700894874, 10611095.981564973, 10611525.294266155, 10612095.136155538, 10612146.053806657, 10612685.023601267, 10613555.64346298, 10614067.1875, 10614125.020975694, 10633851.76405502, 10634648.4375, 10635644.11339644, 10638103.010268906, 10645311.789048752, 10646116.888982834, 10648000.273452314, 10649670.01145693, 10652678.746645488, 10653079.765995523, 10674113.943047991, 10681467.337622046, 10688764.0625, 10690274.177411184, 10694401.733908584, 10712598.426684607, 10712731.847417219, 10716810.616975477, 10719081.80640462, 10719367.129119996, 10719524.97721123, 10720523.351249026, 10724347.583528481, 10727682.553076847, 10734074.257644251, 10734215.25156073, 10739486.91722284, 10743385.544191098, 10743750.413337946, 10745029.864386044, 10746574.360040242, 10763364.0625, 10763627.8363432, 10765803.125, 10770210.56659191, 10771645.391899694, 10771674.278488582, 10780027.948740812, 10795398.4375, 10795406.272839427, 10796945.980774892, 10814630.017889502, 10820520.54338234, 10827596.64358332, 10837147.753738962, 10863617.1875, 10863622.231888076, 10867037.13925527, 10870462.747690275, 10876271.875, 10879497.199291663, 10884653.051375411, 10903007.8125, 10906006.779864797, 10976510.872462086, 11098072.28625206, 11108608.97527215, 11114304.6875, 11219245.3125, 11219524.098541327, 11263256.093188595, 11278579.924091933, 11318806.648630302, 11513724.700906916, 11614663.614288794, 11674641.6215706, 11713052.258985274, 11825678.254511174, 11878712.605478738, 12117376.5625, 12158374.016470036, 12223028.419588175, 12516120.3125, 15272409.023607373, 15281693.6329651, 15282378.349075014, 15296334.375, 15316362.41071557, 15322382.600765552, 15322405.807353169, 15322643.682913426, 15322883.088393917, 15324644.643013751, 15325755.515548375, 15340428.91221931, 15340598.4375, 15346109.375, 15363259.057784203, 15366460.764637347, 15366505.29954092, 15367546.875, 15369850.748242773, 15374408.407333057, 15374939.818135446, 15376155.27108726, 15379842.88111883, 15379934.354963033, 15380600.935071757, 15381690.175732989, 15382425.0, 15384433.270392247, 15384893.75, 15386230.610296939, 15388129.69067093, 15388189.732108971, 15388225.0, 15388297.640204148, 15388457.399849512, 15389571.39463532, 15389983.396476986, 15390153.727000078, 15390912.212024698, 15391327.796859063, 15391737.833010051, 15392781.688160248, 15398617.049732178, 15398713.986103125, 15399385.892371682, 15399996.181540089, 15400176.757916203, 15400396.186007855, 15400967.313609708, 15401518.75, 15401527.687433844, 15401812.197118258, 15403910.901370455, 15405129.154241895, 15405801.5625, 15405869.287402455, 15406585.458012184, 15407979.6875, 15407999.262103692, 15408973.703816755, 15411637.435311591, 15413521.457803415, 15414517.1875, 15414520.016863719, 15414757.87663971, 15415839.122614749, 15416900.33977418, 15418287.94493308, 15418404.6041551, 15419549.205400767, 15423452.487245439, 15424346.875, 15426323.166726496, 15427010.395263221, 15427883.847051995, 15428053.27124881, 15428874.362554548, 15429191.475065472, 15429263.732835319, 15429482.8125, 15429499.63074265, 15429821.675985157, 15430227.078336967, 15430980.483755115, 15431288.513245516, 15431360.084059061, 15432004.6875, 15432073.29134327, 15433058.915601451, 15433720.844196873, 15433771.509535182, 15433771.875, 15433812.5954934, 15433861.04516986, 15434000.691405782, 15434429.670500394, 15435290.625, 15435338.984864712, 15435644.24568228, 15436024.29307576, 15436481.103713302, 15436556.701171888, 15436557.8125, 15436927.318063326, 15437109.707725674, 15437204.180204026, 15437326.315063639, 15437557.45853485, 15437721.866614707, 15438051.5625, 15438078.125, 15438129.86852421, 15438747.693913393, 15438792.989678789, 15438826.644432915, 15439175.0, 15439476.479751088, 15439571.875, 15439579.6875, 15439964.018138086, 15440617.1875, 15441687.115202354, 15441940.523587802, 15442156.25, 15442216.200968515, 15442880.533316081, 15442970.08824451, 15443123.121869447, 15443241.620215917, 15443331.34197917, 15443682.688992022, 15444023.430194166, 15444139.548692562, 15445039.0625, 15445132.545144144, 15445677.695759607, 15446289.0625, 15446436.037315955, 15447566.18860868, 15447840.39010071, 15448024.101484364, 15448245.06168911, 15448249.584688805, 15448339.788162582, 15448823.193437649, 15448826.267037451, 15448866.81065033, 15449574.977215033, 15449624.162805408, 15449700.0, 15449791.255583538, 15449851.5625, 15450028.629500506, 15450670.39980417, 15450860.468011482, 15450973.421642251, 15451289.642989708, 15451408.85221642, 15451473.56827505, 15451542.984528674, 15451634.952035047, 15451960.576413332, 15452068.68516866, 15452119.175987313, 15452354.770946715, 15452804.6875, 15453059.916716777, 15453383.633807505, 15453707.8125, 15454376.673483899, 15454567.0788011, 15457262.374066742, 15457294.294981573, 15458371.388973316, 15458873.93390212, 15461525.389045933, 15461799.697667735, 15465351.5625, 15465414.619028894, 15467911.901445337, 15469089.403583037, 15470355.19185696, 15475006.411810193, 15475903.125, 15475971.242945328, 15481381.4926614, 15481428.888081517, 15482608.720715519, 15483460.9375, 15483912.234409269, 15484142.627918106, 15484321.78318028, 15484714.517925788, 15485936.458161073, 15486758.183939405, 15487125.944508746, 15487298.4375, 15487304.305224648, 15488519.592277698, 15488555.955559982, 15488885.9375, 15490763.464084065, 15492147.403173808, 15492471.875, 15493852.129333815, 15494185.901001368, 15494537.834619585, 15495278.125, 15495747.022169702, 15496203.125, 15496460.32327998, 15496663.74349271, 15497019.455556555, 15497106.30101939, 15497399.94286762, 15499245.764543902, 15499431.99239747, 15500285.9375, 15500550.04253218, 15502329.6875, 15502809.349344831, 15503697.515024677, 15503746.181721907, 15503935.642630564, 15504754.557438876, 15504761.345445774, 15504826.487097975, 15504862.5, 15504983.745416373, 15505355.445903325, 15505434.836367171, 15505943.75, 15506128.543277754, 15506373.4375, 15506378.125, 15506432.292272083, 15507070.393991532, 15507117.947608156, 15507124.8330893, 15507241.91763128, 15507520.33085561, 15507781.121528015, 15507852.226689147, 15508073.4375, 15508299.89320762, 15508340.83460677, 15508416.195964452, 15508615.625, 15508627.644253502, 15508934.375, 15508978.125, 15509207.508510664, 15509317.4413692, 15510018.75, 15510167.128339825, 15510454.6875, 15510823.58728978, 15511057.288643014, 15511341.769746307, 15511693.24141545, 15511723.4375, 15512011.781059505, 15512107.866498888, 15513876.828186084, 15513977.49888487, 15514140.100972835, 15514351.964847155, 15514411.021945322, 15514489.37737911, 15514492.957577145, 15514785.90869579, 15515161.409190312, 15515931.19642748, 15515985.774659509, 15516490.625, 15516519.120342024, 15517062.040206607, 15517805.993898699, 15517860.730419938, 15517893.75, 15519172.640612956, 15519796.566849986, 15520220.476407122, 15520229.353817662, 15520784.22520477, 15520893.217338543, 15521589.055849675, 15522101.479641987, 15522472.348654134, 15522615.547373665, 15522696.25464035, 15522752.632880919, 15522877.178978829, 15523084.672761487, 15523692.099420479, 15523893.112280617, 15524631.60133911, 15524662.060693901, 15524732.815171264, 15524789.21851338, 15525111.713628026, 15525370.405625975, 15526257.54696307, 15526313.53222332, 15526916.229189431, 15526950.340742748, 15527253.61427063, 15527308.962452184, 15527935.719294991, 15528025.60107081, 15528192.1875, 15528450.746003078, 15528695.788959837, 15529025.185335336, 15529147.25183641, 15529201.665909996, 15529266.130618148, 15529471.07471239, 15529471.5460157, 15529568.414834568, 15529943.308029907, 15530028.125, 15530307.721503288, 15530387.226200541, 15530781.25, 15530792.190665843, 15530883.730471792, 15531198.665800793, 15531285.9375, 15531304.685376393, 15531387.449080162, 15531532.10358849, 15532372.448389241, 15532559.094508281, 15532683.140750173, 15532819.302100742, 15533156.14844215, 15533161.870043581, 15533163.113627816, 15533168.14662565, 15533378.114738042, 15533432.877324456, 15533682.8125, 15533792.1875, 15533904.6875, 15534031.68409201, 15534085.040239394, 15534088.121620152, 15534571.50203429, 15534675.178651333, 15535181.25, 15535201.5625, 15535213.852592418, 15535364.936454987, 15535366.06281764, 15535381.231068393, 15535570.811852235, 15535576.68775954, 15536144.365689883, 15536275.865251182, 15536374.347965263, 15536686.426591383, 15536784.805612914, 15537056.658453617, 15537059.613200119, 15537198.001738438, 15537200.649315484, 15537499.18958252, 15538071.875, 15538198.04366136, 15538232.88185722, 15538533.539175684, 15538840.107381808, 15538987.898909707, 15539064.051777473, 15539121.606248809, 15539594.961514406, 15539636.013952915, 15540040.224406024, 15540065.505945578, 15540612.242788997, 15540924.87607307, 15541255.521006642, 15541803.125, 15541952.441150643, 15541966.656903744, 15542527.841965534, 15542574.716386698, 15542700.346144058, 15542740.006353317, 15543033.363791669, 15543052.170380432, 15543227.520608665, 15543244.283205584, 15543398.137507644, 15543493.75, 15543517.037113948, 15543702.11049442, 15543786.705836648, 15543966.463494662, 15543987.63769893, 15544480.872120744, 15544843.343596192, 15544895.150909442, 15544947.602921352, 15545031.885441545, 15545513.033125797, 15545603.81180533, 15545806.577349264, 15545817.30525572, 15545989.0625, 15546353.515713677, 15546392.148691213, 15546597.810325112, 15546734.966725785, 15546753.125, 15546765.625, 15547634.375, 15547821.110522404, 15547897.032276591, 15547932.8125, 15548607.8125, 15548661.028409729, 15550008.699442804, 15550859.375, 15551764.0625, 15551836.301355673, 15551896.875, 15552184.301899137, 15552417.738025712, 15552443.234098801, 15552850.218379294, 15553002.073928928, 15553009.552487561, 15554079.87900776, 15554756.908267535, 15554770.379204197, 15554853.125, 15555188.109685222, 15555535.90332131, 15555891.748152144, 15556042.1875, 15556354.019711029, 15556602.467479357, 15556726.5625, 15556929.51917072, 15557189.330319254, 15558326.812752824, 15558437.09782636, 15558458.260818783, 15558498.305567216, 15558509.375, 15558818.666995093, 15558832.8125, 15559111.446368529, 15559122.993312186, 15559705.45679356, 15560135.9375, 15560412.09192538, 15560521.660238136, 15560557.891628562, 15560643.132914796, 15560657.83422103, 15561004.28449178, 15561135.9375, 15561168.603175838, 15561621.875, 15561692.498117538, 15561807.419031965, 15561865.539562386, 15561868.018456085, 15562161.042967927, 15562310.975753201, 15562445.453475248, 15562583.512179272, 15562806.25, 15562935.323136503, 15563008.133535743, 15563074.431915207, 15563165.988749227, 15563278.125, 15563408.14118847, 15563421.273970282, 15563473.376086926, 15563986.221353063, 15564265.471521646, 15564430.20823553, 15564438.00086553, 15564604.778194599, 15564713.26089672, 15565425.67593805, 15565441.333599996, 15566197.132085007, 15566363.006299123, 15566526.217515782, 15567045.696844777, 15567613.017943693, 15567651.946045786, 15567830.460428664, 15568103.900552666, 15568268.097490715, 15568368.646669846, 15568432.364811836, 15568534.68371905, 15568550.113166424, 15568578.87281937, 15568589.03854728, 15568848.0424675, 15569020.365425514, 15569026.47867161, 15569065.11901743, 15569121.784001261, 15569131.25, 15569185.61502054, 15569186.396855045, 15569393.704830516, ...], [17.56024148552262, 66.92037440362103, 12.136419810920517, 33.76974335823114, 95.65024355232411, 9.228912705920221, 6.024877796940483, 17.762262249795356, 21.34345301017966, 6.524142650313784, 33.94167629483887, 21.33780112827706, 29.885186602971093, 103.4840981300399, 13.157951293835918, 19.51878444537217, 104.13582196147065, 6.31794423581909, 12.79894351603787, 32.910039343312164, 56.141511398336036, 24.894498143061277, 91.88677202483066, 16.550996658526497, 58.87632788958825, 10.48674881449837, 26.258349654013337, 53.885896658029964, 28.74661686973385, 34.635545908292734, 21.82485383402313, 40.06054146989968, 41.086881155831634, 59.88452155674911, 17.497230404315456, 27.035900267221084, 8.179729558791493, 11.795016198186852, 48.83138874422805, 20.33836714278229, 6.662568196623967, 6.959491554692998, 41.509562553110214, 44.73255212321856, 59.503458137921115, 6.8358555045917955, 11.779162582866972, 18.304770679614165, 20.71932278156902, 23.051726209827393, 18.900857853440538, 27.81112776665996, 48.39252343800584, 96.34461978999998, 11.502944685386959, 147.17011549255528, 144.66052837747074, 5.930758112359455, 25.913470455325815, 69.14381296829836, 19.34609113207784, 71.35259363736044, 53.853518178127146, 5.404039463550091, 11.335947417774006, 10.40090454712175, 77.8044061400088, 54.99100781894315, 92.55681918128937, 100.8632710137642, 64.71865876185484, 21.794137138986994, 45.42866249860653, 53.64230198665442, 23.679327522839376, 19.46403338530735, 12.253364415813856, 37.6986675758077, 8.815802629821993, 10.086812213578233, 9.607605887979538, 72.65633492666002, 9.560142143300034, 14.896760855575629, 26.53486253733152, 26.292620777150105, 51.765624631229144, 33.46395104309948, 30.194316179763735, 41.31087744170624, 15.343596110929942, 67.63181805276781, 22.908735628912552, 16.989068166595747, 61.76534730255135, 40.883050937223516, 19.30693192842097, 35.53387440550948, 24.672408189311632, 30.715723107912954, 35.469061736302194, 24.24330122228396, 14.649152089673873, 99.67406486725528, 6.308388631369479, 135.63078719683043, 26.77833467994962, 97.26988012312816, 96.10370814517927, 121.64713971984015, 27.07960778838235, 69.45208434516069, 21.431322110386034, 6.419215094204215, 7.034424854825595, 49.32841290151772, 24.15378193052573, 10.046536395716487, 10.06297657952823, 62.42259128770555, 31.17370912375848, 59.10795853196346, 48.20835854752044, 12.334413342630304, 64.10486067805459, 37.9300953392588, 42.12853016743665, 27.159856873097773, 7.22262138166588, 14.168698441663846, 6.199612779302931, 33.15806051591053, 32.84433894368499, 48.82742277732177, 14.159218717385858, 52.939658020198216, 39.6014784900325, 31.52331017306942, 19.933390173180197, 5.048098853737086, 63.533814370921775, 22.225893822284014, 10.272837272313776, 12.969728668692575, 46.193486134538134, 21.739604567050172, 52.12051163945033, 54.20156732991208, 6.810806785503717, 42.046333870693275, 5.489818958617769, 22.928490328027053, 157.0604354786542, 32.821802089978675, 9.115066646227536, 70.65440198812345, 71.84399565242788, 26.509646028590375, 76.20962156610838, 16.9924742632451, 18.071113913343186, 13.721732722193256, 68.92517907990889, 16.906326282734224, 132.38641555598358, 73.48459558975956, 46.17294582308549, 37.14993209868844, 23.3836069297519, 14.82558473731923, 44.585859758092454, 5.327312662653704, 6.42352236922321, 33.04898602500066, 55.40384053420508, 24.557023960253375, 59.07692198120001, 9.953312238266573, 5.8804557968741, 7.380538220941349, 9.535645030842565, 111.91197333793585, 30.124336639880077, 7.001073209396277, 13.766049358346025, 34.635640931587886, 8.398600088789994, 15.744459098638117, 19.785675362716653, 27.650141308235177, 8.421208223996542, 15.345022778631606, 13.146306890637696, 157.87880810965015, 6.563855913083224, 5.585038380874519, 17.350914109960183, 48.99290839134811, 39.2643291448716, 7.3746608322338325, 5.359246037120441, 5.599485948923101, 25.069469810476107, 29.188866296241237, 29.174768770323233, 44.753193551097546, 63.21366042128538, 42.30110591192519, 32.76252650478985, 22.692898114600546, 30.327916427694802, 61.86845609459891, 23.999944332751095, 43.820228868077024, 5.250424638081745, 23.18073844073936, 40.504182477223864, 10.782419808615114, 7.448188721733058, 33.32766042996771, 46.40334103711365, 118.31053888045233, 126.99929396269158, 48.600087495171394, 48.424119437226736, 7.167141524193355, 20.739767822583257, 25.18962969447888, 20.809336115299086, 65.11453146392606, 13.95861729349547, 36.6408338218883, 34.116767829320466, 17.688305130724103, 8.87658729736653, 64.7317474396179, 39.13023163730641, 12.84740943103876, 5.545461468111498, 40.636760650937624, 34.565473119568765, 21.131492926580496, 42.233927017742204, 97.72571723632802, 5.740188906011036, 11.461045561394158, 6.8550983528977465, 15.457398036833592, 47.47433521686142, 67.83356090027209, 38.643312687141105, 61.09691064722682, 163.60483658495258, 96.94929640313202, 47.966101111819626, 70.6626424528773, 11.981157573814714, 60.54034774151717, 6.940017099677636, 28.224737172851885, 27.74600199433323, 7.392396925015305, 32.54745890086623, 25.264876422852, 17.513091864434866, 88.26909945462289, 13.218809159217498, 63.60206466515679, 176.43872178556077, 111.06229235287445, 11.583127235803797, 11.575829467029356, 44.77600163048311, 12.68873826574907, 37.723447736409696, 5.33724451922739, 11.240505783529638, 7.526955505812223, 22.11629208390334, 22.7571058708155, 7.65199857289129, 24.174829960434394, 59.464244571137314, 29.385126064612795, 25.778276656773976, 35.887029927527195, 10.889623209680629, 44.012409131483764, 10.00644701851549, 19.04340420259018, 90.21218402129979, 13.87431166190179, 11.222448656431679, 49.22395982970123, 38.50580580495909, 27.593323736035792, 43.320910935167944, 86.11956891747943, 59.42577794439194, 10.100505727209228, 7.703477082426216, 133.25831230708582, 17.054244784851836, 127.49560918094971, 47.389324223826605, 57.57576525784242, 108.08124751258819, 10.470204722543642, 62.73353773106001, 39.15668943295089, 7.387054254106317, 85.85451412343767, 20.78811160220878, 5.685594141286603, 14.150503126686239, 9.772094755953919, 102.60037770556009, 38.80122480701152, 92.07303736002206, 12.25885145425819, 64.26762560101787, 25.581111185552793, 10.869567167117438, 89.4102441632684, 7.187190515130725, 16.33422408903811, 14.499799520404613, 7.9830006662651325, 6.252354847924912, 11.064943092735005, 9.75259642647219, 34.116004377727954, 76.571247320907, 55.35668117793995, 9.412770349841368, 15.431019145713728, 179.61439044939792, 22.08489358299609, 24.376347311735813, 40.082124713626115, 33.72679271361396, 13.147569446400928, 290.9015080225009, 34.848992451962246, 7.951078852336269, 119.81826613382782, 19.506048589541795, 29.959530502721986, 16.070421022054326, 35.94917798007868, 26.540315475011727, 8.543679184596385, 12.536211964367741, 78.79869394781068, 16.658012353872948, 26.595280909174775, 12.884473923728967, 17.112660954121033, 14.908228812950522, 49.62667186005316, 18.17170421863298, 30.206330893732122, 9.501455055686595, 5.33873424158261, 94.57220421654598, 32.225041152699774, 36.60703319284443, 46.74482066740034, 89.95927027360379, 54.11521772106254, 17.890891730677833, 9.968108398936009, 87.44920909344951, 34.326444139019294, 93.15896514247176, 26.286370391787813, 40.41859205839324, 19.067253955961544, 31.789112361359383, 77.06047477665288, 7.592134844651248, 22.64659042292177, 54.33831722916705, 40.014074517194906, 25.47892462217493, 14.295544628800647, 104.85836216608921, 7.600109510552526, 67.01077665512169, 42.37235993017333, 42.009795955706764, 6.020608412667412, 15.670512200672691, 48.9791559876584, 144.41091668774342, 25.68459248719649, 5.0289543349524815, 88.7050924545656, 51.38479743983808, 20.922397934723847, 21.575962052758772, 9.722637657281426, 50.27313553784798, 67.21757254276356, 42.19299248101761, 34.533669865628696, 12.52478000939115, 11.357834000146733, 49.822274267678964, 77.74881223770511, 5.941234299386882, 79.05969179618491, 29.70099742618043, 16.534685307152575, 14.521526184253885, 34.43818608565327, 80.38115762971184, 11.583837714803105, 8.133547946256137, 15.179069617984826, 15.249383218859698, 26.36788512348608, 11.37075488726985, 63.17796135182748, 12.521610302585419, 100.97192816306915, 120.47181340540361, 6.8889401215276385, 45.01446413307342, 12.125133267903497, 72.23575542863351, 170.75507625400945, 14.622645560700443, 6.165015176004734, 115.97855011638345, 26.23338280880524, 13.686566904390855, 38.4932124993566, 10.56397045797218, 6.8489306076682315, 134.3838626956815, 13.823399028066094, 29.915426683977067, 30.095628240034255, 35.0478359459899, 22.885362218743182, 5.205449511241962, 7.3615828381034385, 39.85142249680129, 75.1672082397939, 5.342704915421159, 18.29382227863506, 13.780282030438691, 15.901156428482397, 14.12718645744294, 31.639784583756242, 31.078240414121073, 16.50195338474307, 5.194327634336962, 43.69430702890226, 36.69276382236676, 11.67548003345439, 131.5991571387848, 46.37462415595949, 88.15752400189724, 14.699277510015063, 9.705159680612983, 28.203724247100595, 121.88728655833114, 75.65623867017935, 77.56864116260036, 25.770014224415142, 11.518812077391921, 16.714986705758815, 10.690314327990881, 50.840188315112314, 83.98385529995949, 33.43685389678763, 207.35663882748818, 9.422212844579024, 62.76311068162347, 12.171803648357413, 18.48790208730213, 68.39336431283886, 7.48090418827384, 34.53113242485557, 15.870384022959149, 44.58417066132963, 14.71607892194132, 24.94772549959, 22.084965737989517, 27.264325931852433, 5.210508306134435, 7.961662251217604, 48.497840923641455, 85.33163942906224, 51.000911738912194, 36.39668772037275, 36.51377583491876, 25.522993286892735, 17.93218181198315, 117.51769974871299, 18.842530126726615, 37.84702701441276, 8.731140983550862, 78.22920248686444, 12.4178342225831, 6.264670155845106, 34.85811511033474, 22.014571197850035, 42.97392634246119, 49.11318319291249, 59.106194016429804, 47.72072169252446, 7.6043849571390165, 7.864815718155429, 33.12598278913544, 7.338259252604617, 9.005265704349434, 10.451613933083028, 72.89743299972173, 7.836518816546698, 23.905565434854555, 22.484052273755047, 7.211830589983137, 101.69400460212111, 52.20525820213116, 11.010356961121888, 14.772246736115406, 26.448036571590105, 6.80315723648738, 7.3717025407706815, 9.440362085567825, 39.59858795268448, 22.139371607168446, 73.78197169009199, 17.55752821762337, 28.75525350895589, 42.01926256803853, 53.27522550347936, 7.000866180218053, 90.3052778982225, 19.40832660754473, 7.193263314884104, 54.63274016632935, 9.00190971593091, 49.896837763156626, 13.92291148745905, 15.191748494879484, 59.06579847658561, 111.28209172316959, 15.278615424773438, 59.26926878761816, 16.156763159113254, 16.33041432682469, 60.89306246972997, 29.24325895373138, 21.081864947982442, 21.21876197572348, 59.21269696017695, 40.799564548510574, 7.364400689009195, 34.3753359740025, 28.970819379114218, 82.65488215354543, 50.701028604579314, 33.939768545624894, 19.193200052056007, 34.45042772366605, 84.52384185110049, 56.84470949576589, 56.60854306335979, 13.438636537871616, 19.761020755509687, 78.56410182068639, 41.7400787751688, 28.85481933152306, 7.642649843998848, 41.57543598455585, 91.89967739070167, 63.636366169748385, 9.2666096776893, 42.52662641363052, 53.90470495393575, 75.942383572024, 11.914631669369717, 45.78580668339943, 5.146985148230711, 120.87170045972137, 13.306108397911219, 43.05356505470131, 6.694839433852206, 50.029441618099284, 60.91072669036801, 38.751147791048645, 5.541931196135381, 12.705007184968766, 29.552332693145175, 5.0429273597990045, 122.63428730326336, 14.635218519863896, 36.01945025147232, 116.87843751726942, 11.059067102642269, 68.95269328201138, 22.724808393967006, 7.095046223458651, 43.941288683850615, 9.871030641991775, 21.60225047474479, 24.76901959870511, 19.188510274771225, 79.72923690524601, 9.410406858142235, 5.804897904039008, 47.54936773648737, 31.097607638732036, 40.07531219480006, 36.81747009068981, 6.04457117433406, 40.631097023654746, 10.479766247254041, 15.890259203530558, 30.58556736454913, 6.596470063771208, 14.064584084696543, 21.924403479445715, 47.367635945013035, 10.766510898565857, 23.80887486794893, 80.67259717600858, 30.70355296208487, 14.294645401725735, 44.236011948451385, 21.9951100130936, 83.11367881221122, 12.019865459493595, 7.144591948620364, 18.384255659949524, 9.318030450814373, 12.174966785308662, 13.264077312014232, 15.464545976405768, 12.653385784603776, 77.71033622037875, 6.222630703060656, 80.81523555074298, 23.969681347533218, 8.331203869772596, 34.37913950251198, 8.595445361376616, 63.92530130019273, 76.9067251916849, 21.135149261164003, 32.84553769593899, 5.804720674798996, 72.44147468669703, 74.8381044584626, 19.35494160114636, 5.552264861277384, 10.685885534979333, 60.364487961149145, 30.35672436715081, 56.07437913834938, 13.051603456454702, 7.79644335345224, 6.512759117444435, 37.540290713983325, 60.597008812302946, 11.529438896981276, 18.94912806766312, 12.922466936603714, 56.63933921470897, 57.75236495554219, 72.66010473293329, 44.10377100916983, 7.7767038339793295, 81.52166555706837, 7.743342520219561, 19.981551035203257, 37.23889250276934, 34.710284909156954, 10.162027388676885, 23.822023498007002, 37.92592367478379, 40.23264916815668, 7.267577100276567, 78.23935893413076, 32.030147177283936, 34.27114391524506, 8.471828222316585, 47.758977852854066, 31.804289651155592, 37.29078130135857, 6.646779633320853, 5.195370053331857, 18.435568105828935, 76.48141979074799, 32.61271152795534, 16.998716574480877, 19.616721403042295, 45.77409993561849, 11.194844548547024, 36.398878605705136, 7.114723984447476, 5.489924444560951, 12.826139120768191, 51.63789136979888, 26.19474068969385, 11.831425207196812, 48.90755997828975, 61.257373761216044, 94.20997632032812, 12.563813964198461, 7.779088649221843, 31.264617915824104, 17.55577807875297, 60.07900574060466, 31.68728701268741, 27.18752886424453, 27.598148305000137, 18.927642835518864, 25.613923903954266, 8.148842273041652, 57.03989696474305, 10.932663971573612, 18.26689997707165, 39.835731311722576, 78.8517317780913, 5.625746296996546, 19.47670509832831, 31.55963292626604, 6.414281281502088, 32.8503117041663, 51.8716984274174, 67.74370843751208, 60.20635017903143, 48.16512741101269, 30.439820073784052, 61.43871415167324, 26.24798438266022, 21.258370085242227, 16.68434368725319, 23.189283860073846, 42.673579298156156, 32.88696855184013, 6.2740449284542805, 6.301359786125277, 20.32098337975649, 72.96263418175991, 5.975227329757352, 5.247514906561149, 16.29483566574705, 18.999928244175077, 45.52404659205597, 44.803233450502425, 56.00434937966597, 10.882371494507751, 66.74630620666024, 88.57684050816228, 38.17903612114861, 14.047645947930206, 14.206891527482764, 49.664245151962675, 12.580386283571563, 61.914739666703554, 29.696982296359316, 49.079380841901, 6.733965103453739, 8.918260442891382, 8.28306365094967, 33.777798087352494, 79.59348386806738, 8.245949425292984, 13.008069000167282, 10.436753290932902, 49.25381835547273, 23.052550612809053, 17.916717321078885, 7.975866684807816, 9.647266038758493, 51.68963956025096, 14.951700812102402, 15.571483198336683, 28.203779882404532, 105.48008947412265, 14.426932885601413, 13.243883207679636, 27.84494710978699, 16.42150852298801, 45.37601200639914, 5.513387776687493, 14.170295693985182, 7.288957884827929, 31.268130231634654, 18.82657564651317, 16.506306878604605, 24.868460246444762, 60.60504811229252, 18.3613434001997, 12.022102186791225, 18.942841288768218, 23.387435679938594, 10.641340160740087, 38.595527944296265, 48.30522300528968, 69.93686117679543, 11.964866360249049, 57.056159232314805, 14.953589878687211, 21.95055146273547, 15.88946728368768, 31.88434966585878, 14.933421400138513, 5.810222216005094, 44.94121631731575, 14.698228053517967, 31.42255697924321, 11.68271294047085, 8.601838451849602, 122.38825314532014, 26.567226157293717, 17.942129985466124, 95.73245953520735, 60.78111824937184, 5.205076599662259, 83.01404679726505, 76.08746141866166, 45.36758971254148, 48.11134650869006, 18.27381047388729, 12.261558795681326, 31.432872094447454, 9.487173783178692, 56.24605903721057, 50.08877348558798, 7.067345303532054, 19.79808261317476, 15.639331563676636, 33.383215427779575, 6.867468499383963, 15.441446718658552, 17.955078753496995, 19.727886149251685, 19.099174870721704, 20.850064872110355, 5.304576525456481, 60.717761311361116, 44.615172652392715, 127.2067375705396, 21.66339118801033, 80.09528557770872, 36.71350202003673, 45.40514187589051, 8.323598319117645, 8.712266984222904, 27.404351200936222, 21.36596520910781, 37.323233135984175, 41.259703556724276, 190.56147592191084, 8.327424972521095, 160.533561175918, 26.37442720223957, 5.388731298458228, 26.294519484158556, 19.47717910239818, 58.1986395016044, 8.813162463289563, 5.894492630393475, 23.969899175089274, 5.598544315698348, 60.411137629679644, 128.14445997436093, 12.114635685774617, 27.9504543342616, 10.298368746392256, 9.826990783275166, 53.486076987133444, 31.788218379226645, 14.247009350999358, 6.339008466518777, 18.987256297726493, 49.04504898196034, 12.460036062338094, 98.33514940771163, 31.86053312158479, 18.92022271848714, 15.694222558672838, 63.035340865331094, 12.077566452668302, 38.18188445554762, 16.35557779556729, 25.755092903884517, 41.474514081355444, 22.2439701792731, 87.00450683338353, 15.159065512975094, 64.59508063499109, 44.495532945800264, 29.92059385030286, 35.047481322666606, 12.655715978115017, 15.576889574323655, 61.145663407068156, 33.347558569872035, 6.781792729386972, 6.185459842711105, 48.429940468566954, 30.88074137131484, 8.488842564461237, 76.48732753524028, 38.93233424963571, 17.55744920319189, 21.335930426438125, 24.75813932131865, 6.570366395439682, 6.106752906755994, 5.297039680108365, 18.22806440546485, 7.139097256391879, 53.38010940507187, 17.91744085053152, 35.97385597470546, 8.985626142489352, 30.55991253044036, 46.97960427218162, 10.235047882437055, 30.713066334937835, 36.63399166112197, 33.0685338149835, 15.989625653005026, 5.681631901777321, 19.773609038184812, 45.22294852653265, 52.504428197315924, 25.841609303750758, 72.90222075870878, 15.54448541578983, 8.982083370469024, 17.726384221816154, 88.81764261555614, 110.13202740078931, 5.5227474693309135, 15.25193878653386, 46.57340406300065, 17.028611492538392, 17.285246863953983, 45.7245255802974, 68.39032895409487, 36.443755232669346, 16.274218062555565, 42.303320506469, 26.941989299077733, 40.65420216524948, 68.26941446047887, 26.003191633262517, 79.18127340256962, 17.095972769754095, 47.50802163066293, 35.264644925859216, 5.632054971105885, 43.6858546226328, 11.748218916660273, 88.4608383245898, 8.4683935275398, 6.649168243389036, 101.9597730829224, 6.53252772573092, 9.204914830157353, 31.214671709680708, 83.43323519932737, 11.27249049435921, 81.9955497868701, 9.976794301534886, 7.321071915215253, 11.554819292229588, 79.41654259250544, 5.447151723027992, 16.641245128839106, 17.367216815881314, 9.678231122811805, 8.742489365225932, 6.009916125447854, 23.16834403987282, 77.90774077185799, 5.781581493263529, 34.37124662063991, 28.73825494656966, 53.192120523536985, 28.059425303944234, 6.426899512582091, 41.683484147565466, 41.516066609657436, 71.04144128609155, 26.846089787157403, 60.560324218425606, 42.96040850374358, 17.038568128077276, 52.9583667298857, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6858998.864615536, 6887425.345980463, 6924867.7493864875, 7038833.6851368705, 7220295.292535483, 7286065.501250159, 7303958.744287166, 7307356.834572851, 7318340.445545566, 7322903.3573565725, 7329557.540234916, 7329922.921789794, 7330032.8125, 7331421.875, 7347741.624954361, 7348268.026347267, 7351040.430850496, 7358136.328866392, 7360307.108052404, 7361738.076458706, 7364596.875, 7383393.534558936, 7385204.390473168, 7386981.616626741, 7391227.690786712, 7403574.5472002365, 7411238.936355876, 7413853.125, 7415466.544157389, 7416488.995033597, 7425970.6155399745, 7473251.5625, 7482056.5717369, 7484570.3125, 7485808.900677073, 7492774.91996266, 7492893.542332187, 7493675.388727801, 7494119.777578385, 7497215.000890267, 7497524.4724648055, 7497575.908334969, 7498835.9375, 7501550.0, 7502356.25, 7507633.164403233, 7507676.942800937, 7508614.732431925, 7509397.93280144, 7510707.83606483, 7518264.818889072, 7519587.373397478, 7529809.074697013, 7531910.250472301, 7535254.914995829, 7537076.322464357, 7539928.125, 7540037.40016407, 7540776.477487167, 7544001.5625, 7558524.25398607, 7560004.58425655, 7560051.5625, 7560114.2073223265, 7560268.879262343, 7560626.04178835, 7562312.669122213, 7586262.5, 7589207.8125, 7592133.894220251, 7596065.113918604, 7598957.342157152, 7607998.4375, 7612962.5, 7614740.319388605, 7625142.947720317, 7630175.617766436, 7632321.171865312, 7633522.757535505, 7634928.901026581, 7636292.49703604, 7636329.6875, 7639354.946173342, 7639706.2382099405, 7646751.443046546, 7653522.807443597, 7654439.0625, 7654454.018243663, 7654941.952512195, 7656485.1596908085, 7657251.664138594, 7658729.6875, 7658797.087794724, 7660250.4502668865, 7660704.963571151, 7660882.553625064, 7666936.748843785, 7670176.5625, 7685968.9280832885, 7701354.17843166, 7702087.635210595, 7709333.111232726, 7723459.710692153, 7729354.62256437, 7739462.819210199, 7739820.524931519, 7747941.475412948, 7758882.141241681, 7774337.689585802, 7792563.173478731, 7795332.734960818, 7797849.815489558, 7820531.849054919, 7833635.490391897, 7845059.033256783, 7873500.301322184, 7874273.212758495, 7875010.114833272, 7893047.629668509, 7903520.040534963, 7906971.875, 7916859.375, 7933350.5446192855, 7936777.218035541, 7937449.75908498, 7938415.014468724, 7961012.327992592, 7962888.989522642, 7980140.996376107, 8022743.531307549, 8028836.945657757, 8044371.729797225, 8066504.6875, 8074312.5, 8077343.5284113055, 8097523.4375, 8104845.613166872, 8105890.734462258, 8107135.265511002, 8114141.010390983, 8130054.6875, 8130629.257950044, 8162877.499322874, 8163644.677028928, 8164923.152810662, 8173361.729692018, 8187101.5625, 8190263.020071781, 8204303.35739593, 8217482.8125, 8226149.075185312, 8242082.150087726, 8243483.151636946, 8248296.412725796, 8249607.545066252, 8254911.8847576585, 8257887.5, 8288881.530413956, 8339325.0, 8360453.575894521, 8377849.071494732, 8395819.868040238, 8430987.69685944, 8431051.273334408, 8442809.576435953, 8511507.687034125, 8524945.893586112, 8525385.856700525, 8528530.92070436, 8531137.469249668, 8552706.25, 8553329.254877338, 8559702.707128577, 8579085.9375, 8626080.318124112, 8707812.691483924, 8732025.0, 8764953.779067561, 8778314.92224301, 8780502.464224173, 8833912.732058618, 8943864.570826521, 8951339.784429971, 8960279.20887259, 8966679.340661054, 8969052.605861839, 8989158.018494895, 8989190.820835872, 8993657.122422341, 9004731.290472627, 9030747.121198028, 9030863.707635403, 9031018.18303325, 9031385.9375, 9032592.660323173, 9034879.151016569, 9034886.593707316, 9076145.3125, 9076525.0, 9089313.382973291, 9116706.747016322, 9130051.29631514, 9138231.679051666, 9139343.75, 9140346.364681488, 9142437.5, 9142532.8125, 9159910.9375, 9170462.343029086, 9201360.585310012, 9202807.8125, 9213735.9375, 9218324.719261928, 9227071.483983887, 9230233.000039762, 9263988.716526745, 9264606.25, 9264662.267263219, 9264663.612452691, 9267791.977879552, 9286156.25, 9291426.5625, 9312517.24792807, 9361389.0625, 9366748.090711823, 9390270.483506514, 9395062.142354887, 9432430.458646836, 9436204.116110735, 9476534.227423484, 9478895.028285496, 9480039.00352661, 9495668.847484829, 9499676.604253517, 9502121.283227414, 9502604.055247307, 9504193.75, 9506382.127908086, 9527229.93999019, 9530851.97211219, 9532859.564555846, 9533615.08797011, 9535846.055517102, 9540606.085085688, 9576052.075281197, 9609828.32828209, 9620925.442096327, 9624192.774069041, 9628367.1875, 9628399.143326012, 9641096.875, 9642190.254003394, 9644595.918756424, 9653903.71666135, 9667486.37911554, 9672112.5, 9673377.04755547, 9677187.5, 9745730.511695355, 9798259.359654833, 9802039.021894034, 9803075.939337926, 9805332.49622078, 9832771.696683377, 9832805.259320779, 9863489.380819073, 9863665.085372081, 9874484.375, 9875382.8125, 9878163.988510167, 9891699.446931953, 9893319.018948518, 9922817.1875, 9923297.687045433, 9924701.372217163, 9937135.800367767, 9937307.883486256, 9953532.596548485, 9967718.922372838, 9973868.36801587, 9977443.882834002, 9979519.344982233, 9995982.747831535, 9996911.964824585, 10004772.458185138, 10004806.25, 10007046.71714768, 10011110.219590096, 10013927.26579689, 10045102.338525785, 10055131.891156645, 10058218.099821037, 10059417.247278955, 10060256.25, 10065733.976078223, 10068684.326119138, 10070209.294462154, 10077913.502498452, 10078574.169889547, 10079847.663216852, 10080594.018896418, 10080921.875, 10081339.186333325, 10082996.50549463, 10086129.322024204, 10109939.0625, 10110081.25, 10116324.534259982, 10126410.33789154, 10132223.744952025, 10133507.172428096, 10133998.145614345, 10138118.069316283, 10138477.7872416, 10152963.875130275, 10152991.10393106, 10169123.880551951, 10171528.125, 10201558.443410352, 10201875.620347805, 10201877.86713919, 10202100.665729169, 10204235.765824873, 10221649.428482559, 10226129.931814838, 10228256.842822837, 10229520.19157566, 10235211.878141731, 10243115.506603716, 10243703.08447117, 10258131.709388694, 10258167.012207247, 10269623.200385462, 10280634.626474854, 10283784.469686734, 10302486.060262177, 10308798.514870696, 10310257.369846411, 10311604.934901908, 10311687.5, 10311827.932531197, 10318830.683513178, 10323560.475211762, 10324556.25, 10325463.369182676, 10325750.780329108, 10327799.274715554, 10329904.6875, 10330398.210914973, 10331134.375, 10332490.515948918, 10333025.45647337, 10348906.996330649, 10360984.375, 10361692.575108012, 10363694.209883364, 10363724.330440858, 10366025.472826844, 10368081.241240956, 10368092.1875, 10369467.837114656, 10369649.195121497, 10370275.19449109, 10372331.156684624, 10372365.740880238, 10374695.166693037, 10376099.600599611, 10376989.0625, 10378343.574059436, 10378827.767798241, 10383501.908906478, 10386697.542869514, 10402601.5625, 10403466.976196362, 10407402.012162497, 10413986.30013606, 10421179.968321553, 10423525.779274136, 10433160.9375, 10439093.75, 10455982.781697603, 10460925.878612615, 10460956.25, 10461320.222867005, 10464813.88673437, 10466557.632031096, 10468962.883378258, 10470310.928842774, 10493109.375, 10496626.5625, 10519098.4375, 10519486.824987937, 10520041.85286152, 10532031.098312046, 10552530.18518446, 10560270.150179967, 10574114.864345098, 10576104.477014069, 10601137.5, 10608365.06582127, 10610663.57076658, 10611031.679086559, 10611063.700894874, 10611095.981564973, 10611525.294266155, 10612095.136155538, 10612146.053806657, 10612685.023601267, 10613555.64346298, 10614067.1875, 10614125.020975694, 10633851.76405502, 10634648.4375, 10635644.11339644, 10638103.010268906, 10645311.789048752, 10646116.888982834, 10648000.273452314, 10649670.01145693, 10652678.746645488, 10653079.765995523, 10674113.943047991, 10681467.337622046, 10688764.0625, 10690274.177411184, 10694401.733908584, 10712598.426684607, 10712731.847417219, 10716810.616975477, 10719081.80640462, 10719367.129119996, 10719524.97721123, 10720523.351249026, 10724347.583528481, 10727682.553076847, 10734074.257644251, 10734215.25156073, 10739486.91722284, 10743385.544191098, 10743750.413337946, 10745029.864386044, 10746574.360040242, 10763364.0625, 10763627.8363432, 10765803.125, 10770210.56659191, 10771645.391899694, 10771674.278488582, 10780027.948740812, 10795398.4375, 10795406.272839427, 10796945.980774892, 10814630.017889502, 10820520.54338234, 10827596.64358332, 10837147.753738962, 10863617.1875, 10863622.231888076, 10867037.13925527, 10870462.747690275, 10876271.875, 10879497.199291663, 10884653.051375411, 10903007.8125, 10906006.779864797, 10976510.872462086, 11098072.28625206, 11108608.97527215, 11114304.6875, 11219245.3125, 11219524.098541327, 11263256.093188595, 11278579.924091933, 11318806.648630302, 11513724.700906916, 11614663.614288794, 11674641.6215706, 11713052.258985274, 11825678.254511174, 11878712.605478738, 12117376.5625, 12158374.016470036, 12223028.419588175, 12516120.3125, 15272409.023607373, 15281693.6329651, 15282378.349075014, 15296334.375, 15316362.41071557, 15322382.600765552, 15322405.807353169, 15322643.682913426, 15322883.088393917, 15324644.643013751, 15325755.515548375, 15340428.91221931, 15340598.4375, 15346109.375, 15363259.057784203, 15366460.764637347, 15366505.29954092, 15367546.875, 15369850.748242773, 15374408.407333057, 15374939.818135446, 15376155.27108726, 15379842.88111883, 15379934.354963033, 15380600.935071757, 15381690.175732989, 15382425.0, 15384433.270392247, 15384893.75, 15386230.610296939, 15388129.69067093, 15388189.732108971, 15388225.0, 15388297.640204148, 15388457.399849512, 15389571.39463532, 15389983.396476986, 15390153.727000078, 15390912.212024698, 15391327.796859063, 15391737.833010051, 15392781.688160248, 15398617.049732178, 15398713.986103125, 15399385.892371682, 15399996.181540089, 15400176.757916203, 15400396.186007855, 15400967.313609708, 15401518.75, 15401527.687433844, 15401812.197118258, 15403910.901370455, 15405129.154241895, 15405801.5625, 15405869.287402455, 15406585.458012184, 15407979.6875, 15407999.262103692, 15408973.703816755, 15411637.435311591, 15413521.457803415, 15414517.1875, 15414520.016863719, 15414757.87663971, 15415839.122614749, 15416900.33977418, 15418287.94493308, 15418404.6041551, 15419549.205400767, 15423452.487245439, 15424346.875, 15426323.166726496, 15427010.395263221, 15427883.847051995, 15428053.27124881, 15428874.362554548, 15429191.475065472, 15429263.732835319, 15429482.8125, 15429499.63074265, 15429821.675985157, 15430227.078336967, 15430980.483755115, 15431288.513245516, 15431360.084059061, 15432004.6875, 15432073.29134327, 15433058.915601451, 15433720.844196873, 15433771.509535182, 15433771.875, 15433812.5954934, 15433861.04516986, 15434000.691405782, 15434429.670500394, 15435290.625, 15435338.984864712, 15435644.24568228, 15436024.29307576, 15436481.103713302, 15436556.701171888, 15436557.8125, 15436927.318063326, 15437109.707725674, 15437204.180204026, 15437326.315063639, 15437557.45853485, 15437721.866614707, 15438051.5625, 15438078.125, 15438129.86852421, 15438747.693913393, 15438792.989678789, 15438826.644432915, 15439175.0, 15439476.479751088, 15439571.875, 15439579.6875, 15439964.018138086, 15440617.1875, 15441687.115202354, 15441940.523587802, 15442156.25, 15442216.200968515, 15442880.533316081, 15442970.08824451, 15443123.121869447, 15443241.620215917, 15443331.34197917, 15443682.688992022, 15444023.430194166, 15444139.548692562, 15445039.0625, 15445132.545144144, 15445677.695759607, 15446289.0625, 15446436.037315955, 15447566.18860868, 15447840.39010071, 15448024.101484364, 15448245.06168911, 15448249.584688805, 15448339.788162582, 15448823.193437649, 15448826.267037451, 15448866.81065033, 15449574.977215033, 15449624.162805408, 15449700.0, 15449791.255583538, 15449851.5625, 15450028.629500506, 15450670.39980417, 15450860.468011482, 15450973.421642251, 15451289.642989708, 15451408.85221642, 15451473.56827505, 15451542.984528674, 15451634.952035047, 15451960.576413332, 15452068.68516866, 15452119.175987313, 15452354.770946715, 15452804.6875, 15453059.916716777, 15453383.633807505, 15453707.8125, 15454376.673483899, 15454567.0788011, 15457262.374066742, 15457294.294981573, 15458371.388973316, 15458873.93390212, 15461525.389045933, 15461799.697667735, 15465351.5625, 15465414.619028894, 15467911.901445337, 15469089.403583037, 15470355.19185696, 15475006.411810193, 15475903.125, 15475971.242945328, 15481381.4926614, 15481428.888081517, 15482608.720715519, 15483460.9375, 15483912.234409269, 15484142.627918106, 15484321.78318028, 15484714.517925788, 15485936.458161073, 15486758.183939405, 15487125.944508746, 15487298.4375, 15487304.305224648, 15488519.592277698, 15488555.955559982, 15488885.9375, 15490763.464084065, 15492147.403173808, 15492471.875, 15493852.129333815, 15494185.901001368, 15494537.834619585, 15495278.125, 15495747.022169702, 15496203.125, 15496460.32327998, 15496663.74349271, 15497019.455556555, 15497106.30101939, 15497399.94286762, 15499245.764543902, 15499431.99239747, 15500285.9375, 15500550.04253218, 15502329.6875, 15502809.349344831, 15503697.515024677, 15503746.181721907, 15503935.642630564, 15504754.557438876, 15504761.345445774, 15504826.487097975, 15504862.5, 15504983.745416373, 15505355.445903325, 15505434.836367171, 15505943.75, 15506128.543277754, 15506373.4375, 15506378.125, 15506432.292272083, 15507070.393991532, 15507117.947608156, 15507124.8330893, 15507241.91763128, 15507520.33085561, 15507781.121528015, 15507852.226689147, 15508073.4375, 15508299.89320762, 15508340.83460677, 15508416.195964452, 15508615.625, 15508627.644253502, 15508934.375, 15508978.125, 15509207.508510664, 15509317.4413692, 15510018.75, 15510167.128339825, 15510454.6875, 15510823.58728978, 15511057.288643014, 15511341.769746307, 15511693.24141545, 15511723.4375, 15512011.781059505, 15512107.866498888, 15513876.828186084, 15513977.49888487, 15514140.100972835, 15514351.964847155, 15514411.021945322, 15514489.37737911, 15514492.957577145, 15514785.90869579, 15515161.409190312, 15515931.19642748, 15515985.774659509, 15516490.625, 15516519.120342024, 15517062.040206607, 15517805.993898699, 15517860.730419938, 15517893.75, 15519172.640612956, 15519796.566849986, 15520220.476407122, 15520229.353817662, 15520784.22520477, 15520893.217338543, 15521589.055849675, 15522101.479641987, 15522472.348654134, 15522615.547373665, 15522696.25464035, 15522752.632880919, 15522877.178978829, 15523084.672761487, 15523692.099420479, 15523893.112280617, 15524631.60133911, 15524662.060693901, 15524732.815171264, 15524789.21851338, 15525111.713628026, 15525370.405625975, 15526257.54696307, 15526313.53222332, 15526916.229189431, 15526950.340742748, 15527253.61427063, 15527308.962452184, 15527935.719294991, 15528025.60107081, 15528192.1875, 15528450.746003078, 15528695.788959837, 15529025.185335336, 15529147.25183641, 15529201.665909996, 15529266.130618148, 15529471.07471239, 15529471.5460157, 15529568.414834568, 15529943.308029907, 15530028.125, 15530307.721503288, 15530387.226200541, 15530781.25, 15530792.190665843, 15530883.730471792, 15531198.665800793, 15531285.9375, 15531304.685376393, 15531387.449080162, 15531532.10358849, 15532372.448389241, 15532559.094508281, 15532683.140750173, 15532819.302100742, 15533156.14844215, 15533161.870043581, 15533163.113627816, 15533168.14662565, 15533378.114738042, 15533432.877324456, 15533682.8125, 15533792.1875, 15533904.6875, 15534031.68409201, 15534085.040239394, 15534088.121620152, 15534571.50203429, 15534675.178651333, 15535181.25, 15535201.5625, 15535213.852592418, 15535364.936454987, 15535366.06281764, 15535381.231068393, 15535570.811852235, 15535576.68775954, 15536144.365689883, 15536275.865251182, 15536374.347965263, 15536686.426591383, 15536784.805612914, 15537056.658453617, 15537059.613200119, 15537198.001738438, 15537200.649315484, 15537499.18958252, 15538071.875, 15538198.04366136, 15538232.88185722, 15538533.539175684, 15538840.107381808, 15538987.898909707, 15539064.051777473, 15539121.606248809, 15539594.961514406, 15539636.013952915, 15540040.224406024, 15540065.505945578, 15540612.242788997, 15540924.87607307, 15541255.521006642, 15541803.125, 15541952.441150643, 15541966.656903744, 15542527.841965534, 15542574.716386698, 15542700.346144058, 15542740.006353317, 15543033.363791669, 15543052.170380432, 15543227.520608665, 15543244.283205584, 15543398.137507644, 15543493.75, 15543517.037113948, 15543702.11049442, 15543786.705836648, 15543966.463494662, 15543987.63769893, 15544480.872120744, 15544843.343596192, 15544895.150909442, 15544947.602921352, 15545031.885441545, 15545513.033125797, 15545603.81180533, 15545806.577349264, 15545817.30525572, 15545989.0625, 15546353.515713677, 15546392.148691213, 15546597.810325112, 15546734.966725785, 15546753.125, 15546765.625, 15547634.375, 15547821.110522404, 15547897.032276591, 15547932.8125, 15548607.8125, 15548661.028409729, 15550008.699442804, 15550859.375, 15551764.0625, 15551836.301355673, 15551896.875, 15552184.301899137, 15552417.738025712, 15552443.234098801, 15552850.218379294, 15553002.073928928, 15553009.552487561, 15554079.87900776, 15554756.908267535, 15554770.379204197, 15554853.125, 15555188.109685222, 15555535.90332131, 15555891.748152144, 15556042.1875, 15556354.019711029, 15556602.467479357, 15556726.5625, 15556929.51917072, 15557189.330319254, 15558326.812752824, 15558437.09782636, 15558458.260818783, 15558498.305567216, 15558509.375, 15558818.666995093, 15558832.8125, 15559111.446368529, 15559122.993312186, 15559705.45679356, 15560135.9375, 15560412.09192538, 15560521.660238136, 15560557.891628562, 15560643.132914796, 15560657.83422103, 15561004.28449178, 15561135.9375, 15561168.603175838, 15561621.875, 15561692.498117538, 15561807.419031965, 15561865.539562386, 15561868.018456085, 15562161.042967927, 15562310.975753201, 15562445.453475248, 15562583.512179272, 15562806.25, 15562935.323136503, 15563008.133535743, 15563074.431915207, 15563165.988749227, 15563278.125, 15563408.14118847, 15563421.273970282, 15563473.376086926, 15563986.221353063, 15564265.471521646, 15564430.20823553, 15564438.00086553, 15564604.778194599, 15564713.26089672, 15565425.67593805, 15565441.333599996, 15566197.132085007, 15566363.006299123, 15566526.217515782, 15567045.696844777, 15567613.017943693, 15567651.946045786, 15567830.460428664, 15568103.900552666, 15568268.097490715, 15568368.646669846, 15568432.364811836, 15568534.68371905, 15568550.113166424, 15568578.87281937, 15568589.03854728, 15568848.0424675, 15569020.365425514, 15569026.47867161, 15569065.11901743, 15569121.784001261, 15569131.25, 15569185.61502054, 15569186.396855045, 15569393.704830516, ...], [17.56024148552262, 66.92037440362103, 12.136419810920517, 33.76974335823114, 95.65024355232411, 9.228912705920221, 6.024877796940483, 17.762262249795356, 21.34345301017966, 6.524142650313784, 33.94167629483887, 21.33780112827706, 29.885186602971093, 103.4840981300399, 13.157951293835918, 19.51878444537217, 104.13582196147065, 6.31794423581909, 12.79894351603787, 32.910039343312164, 56.141511398336036, 24.894498143061277, 91.88677202483066, 16.550996658526497, 58.87632788958825, 10.48674881449837, 26.258349654013337, 53.885896658029964, 28.74661686973385, 34.635545908292734, 21.82485383402313, 40.06054146989968, 41.086881155831634, 59.88452155674911, 17.497230404315456, 27.035900267221084, 8.179729558791493, 11.795016198186852, 48.83138874422805, 20.33836714278229, 6.662568196623967, 6.959491554692998, 41.509562553110214, 44.73255212321856, 59.503458137921115, 6.8358555045917955, 11.779162582866972, 18.304770679614165, 20.71932278156902, 23.051726209827393, 18.900857853440538, 27.81112776665996, 48.39252343800584, 96.34461978999998, 11.502944685386959, 147.17011549255528, 144.66052837747074, 5.930758112359455, 25.913470455325815, 69.14381296829836, 19.34609113207784, 71.35259363736044, 53.853518178127146, 5.404039463550091, 11.335947417774006, 10.40090454712175, 77.8044061400088, 54.99100781894315, 92.55681918128937, 100.8632710137642, 64.71865876185484, 21.794137138986994, 45.42866249860653, 53.64230198665442, 23.679327522839376, 19.46403338530735, 12.253364415813856, 37.6986675758077, 8.815802629821993, 10.086812213578233, 9.607605887979538, 72.65633492666002, 9.560142143300034, 14.896760855575629, 26.53486253733152, 26.292620777150105, 51.765624631229144, 33.46395104309948, 30.194316179763735, 41.31087744170624, 15.343596110929942, 67.63181805276781, 22.908735628912552, 16.989068166595747, 61.76534730255135, 40.883050937223516, 19.30693192842097, 35.53387440550948, 24.672408189311632, 30.715723107912954, 35.469061736302194, 24.24330122228396, 14.649152089673873, 99.67406486725528, 6.308388631369479, 135.63078719683043, 26.77833467994962, 97.26988012312816, 96.10370814517927, 121.64713971984015, 27.07960778838235, 69.45208434516069, 21.431322110386034, 6.419215094204215, 7.034424854825595, 49.32841290151772, 24.15378193052573, 10.046536395716487, 10.06297657952823, 62.42259128770555, 31.17370912375848, 59.10795853196346, 48.20835854752044, 12.334413342630304, 64.10486067805459, 37.9300953392588, 42.12853016743665, 27.159856873097773, 7.22262138166588, 14.168698441663846, 6.199612779302931, 33.15806051591053, 32.84433894368499, 48.82742277732177, 14.159218717385858, 52.939658020198216, 39.6014784900325, 31.52331017306942, 19.933390173180197, 5.048098853737086, 63.533814370921775, 22.225893822284014, 10.272837272313776, 12.969728668692575, 46.193486134538134, 21.739604567050172, 52.12051163945033, 54.20156732991208, 6.810806785503717, 42.046333870693275, 5.489818958617769, 22.928490328027053, 157.0604354786542, 32.821802089978675, 9.115066646227536, 70.65440198812345, 71.84399565242788, 26.509646028590375, 76.20962156610838, 16.9924742632451, 18.071113913343186, 13.721732722193256, 68.92517907990889, 16.906326282734224, 132.38641555598358, 73.48459558975956, 46.17294582308549, 37.14993209868844, 23.3836069297519, 14.82558473731923, 44.585859758092454, 5.327312662653704, 6.42352236922321, 33.04898602500066, 55.40384053420508, 24.557023960253375, 59.07692198120001, 9.953312238266573, 5.8804557968741, 7.380538220941349, 9.535645030842565, 111.91197333793585, 30.124336639880077, 7.001073209396277, 13.766049358346025, 34.635640931587886, 8.398600088789994, 15.744459098638117, 19.785675362716653, 27.650141308235177, 8.421208223996542, 15.345022778631606, 13.146306890637696, 157.87880810965015, 6.563855913083224, 5.585038380874519, 17.350914109960183, 48.99290839134811, 39.2643291448716, 7.3746608322338325, 5.359246037120441, 5.599485948923101, 25.069469810476107, 29.188866296241237, 29.174768770323233, 44.753193551097546, 63.21366042128538, 42.30110591192519, 32.76252650478985, 22.692898114600546, 30.327916427694802, 61.86845609459891, 23.999944332751095, 43.820228868077024, 5.250424638081745, 23.18073844073936, 40.504182477223864, 10.782419808615114, 7.448188721733058, 33.32766042996771, 46.40334103711365, 118.31053888045233, 126.99929396269158, 48.600087495171394, 48.424119437226736, 7.167141524193355, 20.739767822583257, 25.18962969447888, 20.809336115299086, 65.11453146392606, 13.95861729349547, 36.6408338218883, 34.116767829320466, 17.688305130724103, 8.87658729736653, 64.7317474396179, 39.13023163730641, 12.84740943103876, 5.545461468111498, 40.636760650937624, 34.565473119568765, 21.131492926580496, 42.233927017742204, 97.72571723632802, 5.740188906011036, 11.461045561394158, 6.8550983528977465, 15.457398036833592, 47.47433521686142, 67.83356090027209, 38.643312687141105, 61.09691064722682, 163.60483658495258, 96.94929640313202, 47.966101111819626, 70.6626424528773, 11.981157573814714, 60.54034774151717, 6.940017099677636, 28.224737172851885, 27.74600199433323, 7.392396925015305, 32.54745890086623, 25.264876422852, 17.513091864434866, 88.26909945462289, 13.218809159217498, 63.60206466515679, 176.43872178556077, 111.06229235287445, 11.583127235803797, 11.575829467029356, 44.77600163048311, 12.68873826574907, 37.723447736409696, 5.33724451922739, 11.240505783529638, 7.526955505812223, 22.11629208390334, 22.7571058708155, 7.65199857289129, 24.174829960434394, 59.464244571137314, 29.385126064612795, 25.778276656773976, 35.887029927527195, 10.889623209680629, 44.012409131483764, 10.00644701851549, 19.04340420259018, 90.21218402129979, 13.87431166190179, 11.222448656431679, 49.22395982970123, 38.50580580495909, 27.593323736035792, 43.320910935167944, 86.11956891747943, 59.42577794439194, 10.100505727209228, 7.703477082426216, 133.25831230708582, 17.054244784851836, 127.49560918094971, 47.389324223826605, 57.57576525784242, 108.08124751258819, 10.470204722543642, 62.73353773106001, 39.15668943295089, 7.387054254106317, 85.85451412343767, 20.78811160220878, 5.685594141286603, 14.150503126686239, 9.772094755953919, 102.60037770556009, 38.80122480701152, 92.07303736002206, 12.25885145425819, 64.26762560101787, 25.581111185552793, 10.869567167117438, 89.4102441632684, 7.187190515130725, 16.33422408903811, 14.499799520404613, 7.9830006662651325, 6.252354847924912, 11.064943092735005, 9.75259642647219, 34.116004377727954, 76.571247320907, 55.35668117793995, 9.412770349841368, 15.431019145713728, 179.61439044939792, 22.08489358299609, 24.376347311735813, 40.082124713626115, 33.72679271361396, 13.147569446400928, 290.9015080225009, 34.848992451962246, 7.951078852336269, 119.81826613382782, 19.506048589541795, 29.959530502721986, 16.070421022054326, 35.94917798007868, 26.540315475011727, 8.543679184596385, 12.536211964367741, 78.79869394781068, 16.658012353872948, 26.595280909174775, 12.884473923728967, 17.112660954121033, 14.908228812950522, 49.62667186005316, 18.17170421863298, 30.206330893732122, 9.501455055686595, 5.33873424158261, 94.57220421654598, 32.225041152699774, 36.60703319284443, 46.74482066740034, 89.95927027360379, 54.11521772106254, 17.890891730677833, 9.968108398936009, 87.44920909344951, 34.326444139019294, 93.15896514247176, 26.286370391787813, 40.41859205839324, 19.067253955961544, 31.789112361359383, 77.06047477665288, 7.592134844651248, 22.64659042292177, 54.33831722916705, 40.014074517194906, 25.47892462217493, 14.295544628800647, 104.85836216608921, 7.600109510552526, 67.01077665512169, 42.37235993017333, 42.009795955706764, 6.020608412667412, 15.670512200672691, 48.9791559876584, 144.41091668774342, 25.68459248719649, 5.0289543349524815, 88.7050924545656, 51.38479743983808, 20.922397934723847, 21.575962052758772, 9.722637657281426, 50.27313553784798, 67.21757254276356, 42.19299248101761, 34.533669865628696, 12.52478000939115, 11.357834000146733, 49.822274267678964, 77.74881223770511, 5.941234299386882, 79.05969179618491, 29.70099742618043, 16.534685307152575, 14.521526184253885, 34.43818608565327, 80.38115762971184, 11.583837714803105, 8.133547946256137, 15.179069617984826, 15.249383218859698, 26.36788512348608, 11.37075488726985, 63.17796135182748, 12.521610302585419, 100.97192816306915, 120.47181340540361, 6.8889401215276385, 45.01446413307342, 12.125133267903497, 72.23575542863351, 170.75507625400945, 14.622645560700443, 6.165015176004734, 115.97855011638345, 26.23338280880524, 13.686566904390855, 38.4932124993566, 10.56397045797218, 6.8489306076682315, 134.3838626956815, 13.823399028066094, 29.915426683977067, 30.095628240034255, 35.0478359459899, 22.885362218743182, 5.205449511241962, 7.3615828381034385, 39.85142249680129, 75.1672082397939, 5.342704915421159, 18.29382227863506, 13.780282030438691, 15.901156428482397, 14.12718645744294, 31.639784583756242, 31.078240414121073, 16.50195338474307, 5.194327634336962, 43.69430702890226, 36.69276382236676, 11.67548003345439, 131.5991571387848, 46.37462415595949, 88.15752400189724, 14.699277510015063, 9.705159680612983, 28.203724247100595, 121.88728655833114, 75.65623867017935, 77.56864116260036, 25.770014224415142, 11.518812077391921, 16.714986705758815, 10.690314327990881, 50.840188315112314, 83.98385529995949, 33.43685389678763, 207.35663882748818, 9.422212844579024, 62.76311068162347, 12.171803648357413, 18.48790208730213, 68.39336431283886, 7.48090418827384, 34.53113242485557, 15.870384022959149, 44.58417066132963, 14.71607892194132, 24.94772549959, 22.084965737989517, 27.264325931852433, 5.210508306134435, 7.961662251217604, 48.497840923641455, 85.33163942906224, 51.000911738912194, 36.39668772037275, 36.51377583491876, 25.522993286892735, 17.93218181198315, 117.51769974871299, 18.842530126726615, 37.84702701441276, 8.731140983550862, 78.22920248686444, 12.4178342225831, 6.264670155845106, 34.85811511033474, 22.014571197850035, 42.97392634246119, 49.11318319291249, 59.106194016429804, 47.72072169252446, 7.6043849571390165, 7.864815718155429, 33.12598278913544, 7.338259252604617, 9.005265704349434, 10.451613933083028, 72.89743299972173, 7.836518816546698, 23.905565434854555, 22.484052273755047, 7.211830589983137, 101.69400460212111, 52.20525820213116, 11.010356961121888, 14.772246736115406, 26.448036571590105, 6.80315723648738, 7.3717025407706815, 9.440362085567825, 39.59858795268448, 22.139371607168446, 73.78197169009199, 17.55752821762337, 28.75525350895589, 42.01926256803853, 53.27522550347936, 7.000866180218053, 90.3052778982225, 19.40832660754473, 7.193263314884104, 54.63274016632935, 9.00190971593091, 49.896837763156626, 13.92291148745905, 15.191748494879484, 59.06579847658561, 111.28209172316959, 15.278615424773438, 59.26926878761816, 16.156763159113254, 16.33041432682469, 60.89306246972997, 29.24325895373138, 21.081864947982442, 21.21876197572348, 59.21269696017695, 40.799564548510574, 7.364400689009195, 34.3753359740025, 28.970819379114218, 82.65488215354543, 50.701028604579314, 33.939768545624894, 19.193200052056007, 34.45042772366605, 84.52384185110049, 56.84470949576589, 56.60854306335979, 13.438636537871616, 19.761020755509687, 78.56410182068639, 41.7400787751688, 28.85481933152306, 7.642649843998848, 41.57543598455585, 91.89967739070167, 63.636366169748385, 9.2666096776893, 42.52662641363052, 53.90470495393575, 75.942383572024, 11.914631669369717, 45.78580668339943, 5.146985148230711, 120.87170045972137, 13.306108397911219, 43.05356505470131, 6.694839433852206, 50.029441618099284, 60.91072669036801, 38.751147791048645, 5.541931196135381, 12.705007184968766, 29.552332693145175, 5.0429273597990045, 122.63428730326336, 14.635218519863896, 36.01945025147232, 116.87843751726942, 11.059067102642269, 68.95269328201138, 22.724808393967006, 7.095046223458651, 43.941288683850615, 9.871030641991775, 21.60225047474479, 24.76901959870511, 19.188510274771225, 79.72923690524601, 9.410406858142235, 5.804897904039008, 47.54936773648737, 31.097607638732036, 40.07531219480006, 36.81747009068981, 6.04457117433406, 40.631097023654746, 10.479766247254041, 15.890259203530558, 30.58556736454913, 6.596470063771208, 14.064584084696543, 21.924403479445715, 47.367635945013035, 10.766510898565857, 23.80887486794893, 80.67259717600858, 30.70355296208487, 14.294645401725735, 44.236011948451385, 21.9951100130936, 83.11367881221122, 12.019865459493595, 7.144591948620364, 18.384255659949524, 9.318030450814373, 12.174966785308662, 13.264077312014232, 15.464545976405768, 12.653385784603776, 77.71033622037875, 6.222630703060656, 80.81523555074298, 23.969681347533218, 8.331203869772596, 34.37913950251198, 8.595445361376616, 63.92530130019273, 76.9067251916849, 21.135149261164003, 32.84553769593899, 5.804720674798996, 72.44147468669703, 74.8381044584626, 19.35494160114636, 5.552264861277384, 10.685885534979333, 60.364487961149145, 30.35672436715081, 56.07437913834938, 13.051603456454702, 7.79644335345224, 6.512759117444435, 37.540290713983325, 60.597008812302946, 11.529438896981276, 18.94912806766312, 12.922466936603714, 56.63933921470897, 57.75236495554219, 72.66010473293329, 44.10377100916983, 7.7767038339793295, 81.52166555706837, 7.743342520219561, 19.981551035203257, 37.23889250276934, 34.710284909156954, 10.162027388676885, 23.822023498007002, 37.92592367478379, 40.23264916815668, 7.267577100276567, 78.23935893413076, 32.030147177283936, 34.27114391524506, 8.471828222316585, 47.758977852854066, 31.804289651155592, 37.29078130135857, 6.646779633320853, 5.195370053331857, 18.435568105828935, 76.48141979074799, 32.61271152795534, 16.998716574480877, 19.616721403042295, 45.77409993561849, 11.194844548547024, 36.398878605705136, 7.114723984447476, 5.489924444560951, 12.826139120768191, 51.63789136979888, 26.19474068969385, 11.831425207196812, 48.90755997828975, 61.257373761216044, 94.20997632032812, 12.563813964198461, 7.779088649221843, 31.264617915824104, 17.55577807875297, 60.07900574060466, 31.68728701268741, 27.18752886424453, 27.598148305000137, 18.927642835518864, 25.613923903954266, 8.148842273041652, 57.03989696474305, 10.932663971573612, 18.26689997707165, 39.835731311722576, 78.8517317780913, 5.625746296996546, 19.47670509832831, 31.55963292626604, 6.414281281502088, 32.8503117041663, 51.8716984274174, 67.74370843751208, 60.20635017903143, 48.16512741101269, 30.439820073784052, 61.43871415167324, 26.24798438266022, 21.258370085242227, 16.68434368725319, 23.189283860073846, 42.673579298156156, 32.88696855184013, 6.2740449284542805, 6.301359786125277, 20.32098337975649, 72.96263418175991, 5.975227329757352, 5.247514906561149, 16.29483566574705, 18.999928244175077, 45.52404659205597, 44.803233450502425, 56.00434937966597, 10.882371494507751, 66.74630620666024, 88.57684050816228, 38.17903612114861, 14.047645947930206, 14.206891527482764, 49.664245151962675, 12.580386283571563, 61.914739666703554, 29.696982296359316, 49.079380841901, 6.733965103453739, 8.918260442891382, 8.28306365094967, 33.777798087352494, 79.59348386806738, 8.245949425292984, 13.008069000167282, 10.436753290932902, 49.25381835547273, 23.052550612809053, 17.916717321078885, 7.975866684807816, 9.647266038758493, 51.68963956025096, 14.951700812102402, 15.571483198336683, 28.203779882404532, 105.48008947412265, 14.426932885601413, 13.243883207679636, 27.84494710978699, 16.42150852298801, 45.37601200639914, 5.513387776687493, 14.170295693985182, 7.288957884827929, 31.268130231634654, 18.82657564651317, 16.506306878604605, 24.868460246444762, 60.60504811229252, 18.3613434001997, 12.022102186791225, 18.942841288768218, 23.387435679938594, 10.641340160740087, 38.595527944296265, 48.30522300528968, 69.93686117679543, 11.964866360249049, 57.056159232314805, 14.953589878687211, 21.95055146273547, 15.88946728368768, 31.88434966585878, 14.933421400138513, 5.810222216005094, 44.94121631731575, 14.698228053517967, 31.42255697924321, 11.68271294047085, 8.601838451849602, 122.38825314532014, 26.567226157293717, 17.942129985466124, 95.73245953520735, 60.78111824937184, 5.205076599662259, 83.01404679726505, 76.08746141866166, 45.36758971254148, 48.11134650869006, 18.27381047388729, 12.261558795681326, 31.432872094447454, 9.487173783178692, 56.24605903721057, 50.08877348558798, 7.067345303532054, 19.79808261317476, 15.639331563676636, 33.383215427779575, 6.867468499383963, 15.441446718658552, 17.955078753496995, 19.727886149251685, 19.099174870721704, 20.850064872110355, 5.304576525456481, 60.717761311361116, 44.615172652392715, 127.2067375705396, 21.66339118801033, 80.09528557770872, 36.71350202003673, 45.40514187589051, 8.323598319117645, 8.712266984222904, 27.404351200936222, 21.36596520910781, 37.323233135984175, 41.259703556724276, 190.56147592191084, 8.327424972521095, 160.533561175918, 26.37442720223957, 5.388731298458228, 26.294519484158556, 19.47717910239818, 58.1986395016044, 8.813162463289563, 5.894492630393475, 23.969899175089274, 5.598544315698348, 60.411137629679644, 128.14445997436093, 12.114635685774617, 27.9504543342616, 10.298368746392256, 9.826990783275166, 53.486076987133444, 31.788218379226645, 14.247009350999358, 6.339008466518777, 18.987256297726493, 49.04504898196034, 12.460036062338094, 98.33514940771163, 31.86053312158479, 18.92022271848714, 15.694222558672838, 63.035340865331094, 12.077566452668302, 38.18188445554762, 16.35557779556729, 25.755092903884517, 41.474514081355444, 22.2439701792731, 87.00450683338353, 15.159065512975094, 64.59508063499109, 44.495532945800264, 29.92059385030286, 35.047481322666606, 12.655715978115017, 15.576889574323655, 61.145663407068156, 33.347558569872035, 6.781792729386972, 6.185459842711105, 48.429940468566954, 30.88074137131484, 8.488842564461237, 76.48732753524028, 38.93233424963571, 17.55744920319189, 21.335930426438125, 24.75813932131865, 6.570366395439682, 6.106752906755994, 5.297039680108365, 18.22806440546485, 7.139097256391879, 53.38010940507187, 17.91744085053152, 35.97385597470546, 8.985626142489352, 30.55991253044036, 46.97960427218162, 10.235047882437055, 30.713066334937835, 36.63399166112197, 33.0685338149835, 15.989625653005026, 5.681631901777321, 19.773609038184812, 45.22294852653265, 52.504428197315924, 25.841609303750758, 72.90222075870878, 15.54448541578983, 8.982083370469024, 17.726384221816154, 88.81764261555614, 110.13202740078931, 5.5227474693309135, 15.25193878653386, 46.57340406300065, 17.028611492538392, 17.285246863953983, 45.7245255802974, 68.39032895409487, 36.443755232669346, 16.274218062555565, 42.303320506469, 26.941989299077733, 40.65420216524948, 68.26941446047887, 26.003191633262517, 79.18127340256962, 17.095972769754095, 47.50802163066293, 35.264644925859216, 5.632054971105885, 43.6858546226328, 11.748218916660273, 88.4608383245898, 8.4683935275398, 6.649168243389036, 101.9597730829224, 6.53252772573092, 9.204914830157353, 31.214671709680708, 83.43323519932737, 11.27249049435921, 81.9955497868701, 9.976794301534886, 7.321071915215253, 11.554819292229588, 79.41654259250544, 5.447151723027992, 16.641245128839106, 17.367216815881314, 9.678231122811805, 8.742489365225932, 6.009916125447854, 23.16834403987282, 77.90774077185799, 5.781581493263529, 34.37124662063991, 28.73825494656966, 53.192120523536985, 28.059425303944234, 6.426899512582091, 41.683484147565466, 41.516066609657436, 71.04144128609155, 26.846089787157403, 60.560324218425606, 42.96040850374358, 17.038568128077276, 52.9583667298857, ...])
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);
([6858998.864615536, 6887425.345980463, 6924867.7493864875, 7038833.6851368705, 7220295.292535483, 7286065.501250159, 7303958.744287166, 7307356.834572851, 7318340.445545566, 7322903.3573565725, 7329557.540234916, 7329922.921789794, 7330032.8125, 7331421.875, 7347741.624954361, 7348268.026347267, 7351040.430850496, 7358136.328866392, 7360307.108052404, 7361738.076458706, 7364596.875, 7383393.534558936, 7385204.390473168, 7386981.616626741, 7391227.690786712, 7403574.5472002365, 7411238.936355876, 7413853.125, 7415466.544157389, 7416488.995033597, 7425970.6155399745, 7473251.5625, 7482056.5717369, 7484570.3125, 7485808.900677073, 7492774.91996266, 7492893.542332187, 7493675.388727801, 7494119.777578385, 7497215.000890267, 7497524.4724648055, 7497575.908334969, 7498835.9375, 7501550.0, 7502356.25, 7507633.164403233, 7507676.942800937, 7508614.732431925, 7509397.93280144, 7510707.83606483, 7518264.818889072, 7519587.373397478, 7529809.074697013, 7531910.250472301, 7535254.914995829, 7537076.322464357, 7539928.125, 7540037.40016407, 7540776.477487167, 7544001.5625, 7558524.25398607, 7560004.58425655, 7560051.5625, 7560114.2073223265, 7560268.879262343, 7560626.04178835, 7562312.669122213, 7586262.5, 7589207.8125, 7592133.894220251, 7596065.113918604, 7598957.342157152, 7607998.4375, 7612962.5, 7614740.319388605, 7625142.947720317, 7630175.617766436, 7632321.171865312, 7633522.757535505, 7634928.901026581, 7636292.49703604, 7636329.6875, 7639354.946173342, 7639706.2382099405, 7646751.443046546, 7653522.807443597, 7654439.0625, 7654454.018243663, 7654941.952512195, 7656485.1596908085, 7657251.664138594, 7658729.6875, 7658797.087794724, 7660250.4502668865, 7660704.963571151, 7660882.553625064, 7666936.748843785, 7670176.5625, 7685968.9280832885, 7701354.17843166, 7702087.635210595, 7709333.111232726, 7723459.710692153, 7729354.62256437, 7739462.819210199, 7739820.524931519, 7747941.475412948, 7758882.141241681, 7774337.689585802, 7792563.173478731, 7795332.734960818, 7797849.815489558, 7820531.849054919, 7833635.490391897, 7845059.033256783, 7873500.301322184, 7874273.212758495, 7875010.114833272, 7893047.629668509, 7903520.040534963, 7906971.875, 7916859.375, 7933350.5446192855, 7936777.218035541, 7937449.75908498, 7938415.014468724, 7961012.327992592, 7962888.989522642, 7980140.996376107, 8022743.531307549, 8028836.945657757, 8044371.729797225, 8066504.6875, 8074312.5, 8077343.5284113055, 8097523.4375, 8104845.613166872, 8105890.734462258, 8107135.265511002, 8114141.010390983, 8130054.6875, 8130629.257950044, 8162877.499322874, 8163644.677028928, 8164923.152810662, 8173361.729692018, 8187101.5625, 8190263.020071781, 8204303.35739593, 8217482.8125, 8226149.075185312, 8242082.150087726, 8243483.151636946, 8248296.412725796, 8249607.545066252, 8254911.8847576585, 8257887.5, 8288881.530413956, 8339325.0, 8360453.575894521, 8377849.071494732, 8395819.868040238, 8430987.69685944, 8431051.273334408, 8442809.576435953, 8511507.687034125, 8524945.893586112, 8525385.856700525, 8528530.92070436, 8531137.469249668, 8552706.25, 8553329.254877338, 8559702.707128577, 8579085.9375, 8626080.318124112, 8707812.691483924, 8732025.0, 8764953.779067561, 8778314.92224301, 8780502.464224173, 8833912.732058618, 8943864.570826521, 8951339.784429971, 8960279.20887259, 8966679.340661054, 8969052.605861839, 8989158.018494895, 8989190.820835872, 8993657.122422341, 9004731.290472627, 9030747.121198028, 9030863.707635403, 9031018.18303325, 9031385.9375, 9032592.660323173, 9034879.151016569, 9034886.593707316, 9076145.3125, 9076525.0, 9089313.382973291, 9116706.747016322, 9130051.29631514, 9138231.679051666, 9139343.75, 9140346.364681488, 9142437.5, 9142532.8125, 9159910.9375, 9170462.343029086, 9201360.585310012, 9202807.8125, 9213735.9375, 9218324.719261928, 9227071.483983887, 9230233.000039762, 9263988.716526745, 9264606.25, 9264662.267263219, 9264663.612452691, 9267791.977879552, 9286156.25, 9291426.5625, 9312517.24792807, 9361389.0625, 9366748.090711823, 9390270.483506514, 9395062.142354887, 9432430.458646836, 9436204.116110735, 9476534.227423484, 9478895.028285496, 9480039.00352661, 9495668.847484829, 9499676.604253517, 9502121.283227414, 9502604.055247307, 9504193.75, 9506382.127908086, 9527229.93999019, 9530851.97211219, 9532859.564555846, 9533615.08797011, 9535846.055517102, 9540606.085085688, 9576052.075281197, 9609828.32828209, 9620925.442096327, 9624192.774069041, 9628367.1875, 9628399.143326012, 9641096.875, 9642190.254003394, 9644595.918756424, 9653903.71666135, 9667486.37911554, 9672112.5, 9673377.04755547, 9677187.5, 9745730.511695355, 9798259.359654833, 9802039.021894034, 9803075.939337926, 9805332.49622078, 9832771.696683377, 9832805.259320779, 9863489.380819073, 9863665.085372081, 9874484.375, 9875382.8125, 9878163.988510167, 9891699.446931953, 9893319.018948518, 9922817.1875, 9923297.687045433, 9924701.372217163, 9937135.800367767, 9937307.883486256, 9953532.596548485, 9967718.922372838, 9973868.36801587, 9977443.882834002, 9979519.344982233, 9995982.747831535, 9996911.964824585, 10004772.458185138, 10004806.25, 10007046.71714768, 10011110.219590096, 10013927.26579689, 10045102.338525785, 10055131.891156645, 10058218.099821037, 10059417.247278955, 10060256.25, 10065733.976078223, 10068684.326119138, 10070209.294462154, 10077913.502498452, 10078574.169889547, 10079847.663216852, 10080594.018896418, 10080921.875, 10081339.186333325, 10082996.50549463, 10086129.322024204, 10109939.0625, 10110081.25, 10116324.534259982, 10126410.33789154, 10132223.744952025, 10133507.172428096, 10133998.145614345, 10138118.069316283, 10138477.7872416, 10152963.875130275, 10152991.10393106, 10169123.880551951, 10171528.125, 10201558.443410352, 10201875.620347805, 10201877.86713919, 10202100.665729169, 10204235.765824873, 10221649.428482559, 10226129.931814838, 10228256.842822837, 10229520.19157566, 10235211.878141731, 10243115.506603716, 10243703.08447117, 10258131.709388694, 10258167.012207247, 10269623.200385462, 10280634.626474854, 10283784.469686734, 10302486.060262177, 10308798.514870696, 10310257.369846411, 10311604.934901908, 10311687.5, 10311827.932531197, 10318830.683513178, 10323560.475211762, 10324556.25, 10325463.369182676, 10325750.780329108, 10327799.274715554, 10329904.6875, 10330398.210914973, 10331134.375, 10332490.515948918, 10333025.45647337, 10348906.996330649, 10360984.375, 10361692.575108012, 10363694.209883364, 10363724.330440858, 10366025.472826844, 10368081.241240956, 10368092.1875, 10369467.837114656, 10369649.195121497, 10370275.19449109, 10372331.156684624, 10372365.740880238, 10374695.166693037, 10376099.600599611, 10376989.0625, 10378343.574059436, 10378827.767798241, 10383501.908906478, 10386697.542869514, 10402601.5625, 10403466.976196362, 10407402.012162497, 10413986.30013606, 10421179.968321553, 10423525.779274136, 10433160.9375, 10439093.75, 10455982.781697603, 10460925.878612615, 10460956.25, 10461320.222867005, 10464813.88673437, 10466557.632031096, 10468962.883378258, 10470310.928842774, 10493109.375, 10496626.5625, 10519098.4375, 10519486.824987937, 10520041.85286152, 10532031.098312046, 10552530.18518446, 10560270.150179967, 10574114.864345098, 10576104.477014069, 10601137.5, 10608365.06582127, 10610663.57076658, 10611031.679086559, 10611063.700894874, 10611095.981564973, 10611525.294266155, 10612095.136155538, 10612146.053806657, 10612685.023601267, 10613555.64346298, 10614067.1875, 10614125.020975694, 10633851.76405502, 10634648.4375, 10635644.11339644, 10638103.010268906, 10645311.789048752, 10646116.888982834, 10648000.273452314, 10649670.01145693, 10652678.746645488, 10653079.765995523, 10674113.943047991, 10681467.337622046, 10688764.0625, 10690274.177411184, 10694401.733908584, 10712598.426684607, 10712731.847417219, 10716810.616975477, 10719081.80640462, 10719367.129119996, 10719524.97721123, 10720523.351249026, 10724347.583528481, 10727682.553076847, 10734074.257644251, 10734215.25156073, 10739486.91722284, 10743385.544191098, 10743750.413337946, 10745029.864386044, 10746574.360040242, 10763364.0625, 10763627.8363432, 10765803.125, 10770210.56659191, 10771645.391899694, 10771674.278488582, 10780027.948740812, 10795398.4375, 10795406.272839427, 10796945.980774892, 10814630.017889502, 10820520.54338234, 10827596.64358332, 10837147.753738962, 10863617.1875, 10863622.231888076, 10867037.13925527, 10870462.747690275, 10876271.875, 10879497.199291663, 10884653.051375411, 10903007.8125, 10906006.779864797, 10976510.872462086, 11098072.28625206, 11108608.97527215, 11114304.6875, 11219245.3125, 11219524.098541327, 11263256.093188595, 11278579.924091933, 11318806.648630302, 11513724.700906916, 11614663.614288794, 11674641.6215706, 11713052.258985274, 11825678.254511174, 11878712.605478738, 12117376.5625, 12158374.016470036, 12223028.419588175, 12516120.3125, 15272409.023607373, 15281693.6329651, 15282378.349075014, 15296334.375, 15316362.41071557, 15322382.600765552, 15322405.807353169, 15322643.682913426, 15322883.088393917, 15324644.643013751, 15325755.515548375, 15340428.91221931, 15340598.4375, 15346109.375, 15363259.057784203, 15366460.764637347, 15366505.29954092, 15367546.875, 15369850.748242773, 15374408.407333057, 15374939.818135446, 15376155.27108726, 15379842.88111883, 15379934.354963033, 15380600.935071757, 15381690.175732989, 15382425.0, 15384433.270392247, 15384893.75, 15386230.610296939, 15388129.69067093, 15388189.732108971, 15388225.0, 15388297.640204148, 15388457.399849512, 15389571.39463532, 15389983.396476986, 15390153.727000078, 15390912.212024698, 15391327.796859063, 15391737.833010051, 15392781.688160248, 15398617.049732178, 15398713.986103125, 15399385.892371682, 15399996.181540089, 15400176.757916203, 15400396.186007855, 15400967.313609708, 15401518.75, 15401527.687433844, 15401812.197118258, 15403910.901370455, 15405129.154241895, 15405801.5625, 15405869.287402455, 15406585.458012184, 15407979.6875, 15407999.262103692, 15408973.703816755, 15411637.435311591, 15413521.457803415, 15414517.1875, 15414520.016863719, 15414757.87663971, 15415839.122614749, 15416900.33977418, 15418287.94493308, 15418404.6041551, 15419549.205400767, 15423452.487245439, 15424346.875, 15426323.166726496, 15427010.395263221, 15427883.847051995, 15428053.27124881, 15428874.362554548, 15429191.475065472, 15429263.732835319, 15429482.8125, 15429499.63074265, 15429821.675985157, 15430227.078336967, 15430980.483755115, 15431288.513245516, 15431360.084059061, 15432004.6875, 15432073.29134327, 15433058.915601451, 15433720.844196873, 15433771.509535182, 15433771.875, 15433812.5954934, 15433861.04516986, 15434000.691405782, 15434429.670500394, 15435290.625, 15435338.984864712, 15435644.24568228, 15436024.29307576, 15436481.103713302, 15436556.701171888, 15436557.8125, 15436927.318063326, 15437109.707725674, 15437204.180204026, 15437326.315063639, 15437557.45853485, 15437721.866614707, 15438051.5625, 15438078.125, 15438129.86852421, 15438747.693913393, 15438792.989678789, 15438826.644432915, 15439175.0, 15439476.479751088, 15439571.875, 15439579.6875, 15439964.018138086, 15440617.1875, 15441687.115202354, 15441940.523587802, 15442156.25, 15442216.200968515, 15442880.533316081, 15442970.08824451, 15443123.121869447, 15443241.620215917, 15443331.34197917, 15443682.688992022, 15444023.430194166, 15444139.548692562, 15445039.0625, 15445132.545144144, 15445677.695759607, 15446289.0625, 15446436.037315955, 15447566.18860868, 15447840.39010071, 15448024.101484364, 15448245.06168911, 15448249.584688805, 15448339.788162582, 15448823.193437649, 15448826.267037451, 15448866.81065033, 15449574.977215033, 15449624.162805408, 15449700.0, 15449791.255583538, 15449851.5625, 15450028.629500506, 15450670.39980417, 15450860.468011482, 15450973.421642251, 15451289.642989708, 15451408.85221642, 15451473.56827505, 15451542.984528674, 15451634.952035047, 15451960.576413332, 15452068.68516866, 15452119.175987313, 15452354.770946715, 15452804.6875, 15453059.916716777, 15453383.633807505, 15453707.8125, 15454376.673483899, 15454567.0788011, 15457262.374066742, 15457294.294981573, 15458371.388973316, 15458873.93390212, 15461525.389045933, 15461799.697667735, 15465351.5625, 15465414.619028894, 15467911.901445337, 15469089.403583037, 15470355.19185696, 15475006.411810193, 15475903.125, 15475971.242945328, 15481381.4926614, 15481428.888081517, 15482608.720715519, 15483460.9375, 15483912.234409269, 15484142.627918106, 15484321.78318028, 15484714.517925788, 15485936.458161073, 15486758.183939405, 15487125.944508746, 15487298.4375, 15487304.305224648, 15488519.592277698, 15488555.955559982, 15488885.9375, 15490763.464084065, 15492147.403173808, 15492471.875, 15493852.129333815, 15494185.901001368, 15494537.834619585, 15495278.125, 15495747.022169702, 15496203.125, 15496460.32327998, 15496663.74349271, 15497019.455556555, 15497106.30101939, 15497399.94286762, 15499245.764543902, 15499431.99239747, 15500285.9375, 15500550.04253218, 15502329.6875, 15502809.349344831, 15503697.515024677, 15503746.181721907, 15503935.642630564, 15504754.557438876, 15504761.345445774, 15504826.487097975, 15504862.5, 15504983.745416373, 15505355.445903325, 15505434.836367171, 15505943.75, 15506128.543277754, 15506373.4375, 15506378.125, 15506432.292272083, 15507070.393991532, 15507117.947608156, 15507124.8330893, 15507241.91763128, 15507520.33085561, 15507781.121528015, 15507852.226689147, 15508073.4375, 15508299.89320762, 15508340.83460677, 15508416.195964452, 15508615.625, 15508627.644253502, 15508934.375, 15508978.125, 15509207.508510664, 15509317.4413692, 15510018.75, 15510167.128339825, 15510454.6875, 15510823.58728978, 15511057.288643014, 15511341.769746307, 15511693.24141545, 15511723.4375, 15512011.781059505, 15512107.866498888, 15513876.828186084, 15513977.49888487, 15514140.100972835, 15514351.964847155, 15514411.021945322, 15514489.37737911, 15514492.957577145, 15514785.90869579, 15515161.409190312, 15515931.19642748, 15515985.774659509, 15516490.625, 15516519.120342024, 15517062.040206607, 15517805.993898699, 15517860.730419938, 15517893.75, 15519172.640612956, 15519796.566849986, 15520220.476407122, 15520229.353817662, 15520784.22520477, 15520893.217338543, 15521589.055849675, 15522101.479641987, 15522472.348654134, 15522615.547373665, 15522696.25464035, 15522752.632880919, 15522877.178978829, 15523084.672761487, 15523692.099420479, 15523893.112280617, 15524631.60133911, 15524662.060693901, 15524732.815171264, 15524789.21851338, 15525111.713628026, 15525370.405625975, 15526257.54696307, 15526313.53222332, 15526916.229189431, 15526950.340742748, 15527253.61427063, 15527308.962452184, 15527935.719294991, 15528025.60107081, 15528192.1875, 15528450.746003078, 15528695.788959837, 15529025.185335336, 15529147.25183641, 15529201.665909996, 15529266.130618148, 15529471.07471239, 15529471.5460157, 15529568.414834568, 15529943.308029907, 15530028.125, 15530307.721503288, 15530387.226200541, 15530781.25, 15530792.190665843, 15530883.730471792, 15531198.665800793, 15531285.9375, 15531304.685376393, 15531387.449080162, 15531532.10358849, 15532372.448389241, 15532559.094508281, 15532683.140750173, 15532819.302100742, 15533156.14844215, 15533161.870043581, 15533163.113627816, 15533168.14662565, 15533378.114738042, 15533432.877324456, 15533682.8125, 15533792.1875, 15533904.6875, 15534031.68409201, 15534085.040239394, 15534088.121620152, 15534571.50203429, 15534675.178651333, 15535181.25, 15535201.5625, 15535213.852592418, 15535364.936454987, 15535366.06281764, 15535381.231068393, 15535570.811852235, 15535576.68775954, 15536144.365689883, 15536275.865251182, 15536374.347965263, 15536686.426591383, 15536784.805612914, 15537056.658453617, 15537059.613200119, 15537198.001738438, 15537200.649315484, 15537499.18958252, 15538071.875, 15538198.04366136, 15538232.88185722, 15538533.539175684, 15538840.107381808, 15538987.898909707, 15539064.051777473, 15539121.606248809, 15539594.961514406, 15539636.013952915, 15540040.224406024, 15540065.505945578, 15540612.242788997, 15540924.87607307, 15541255.521006642, 15541803.125, 15541952.441150643, 15541966.656903744, 15542527.841965534, 15542574.716386698, 15542700.346144058, 15542740.006353317, 15543033.363791669, 15543052.170380432, 15543227.520608665, 15543244.283205584, 15543398.137507644, 15543493.75, 15543517.037113948, 15543702.11049442, 15543786.705836648, 15543966.463494662, 15543987.63769893, 15544480.872120744, 15544843.343596192, 15544895.150909442, 15544947.602921352, 15545031.885441545, 15545513.033125797, 15545603.81180533, 15545806.577349264, 15545817.30525572, 15545989.0625, 15546353.515713677, 15546392.148691213, 15546597.810325112, 15546734.966725785, 15546753.125, 15546765.625, 15547634.375, 15547821.110522404, 15547897.032276591, 15547932.8125, 15548607.8125, 15548661.028409729, 15550008.699442804, 15550859.375, 15551764.0625, 15551836.301355673, 15551896.875, 15552184.301899137, 15552417.738025712, 15552443.234098801, 15552850.218379294, 15553002.073928928, 15553009.552487561, 15554079.87900776, 15554756.908267535, 15554770.379204197, 15554853.125, 15555188.109685222, 15555535.90332131, 15555891.748152144, 15556042.1875, 15556354.019711029, 15556602.467479357, 15556726.5625, 15556929.51917072, 15557189.330319254, 15558326.812752824, 15558437.09782636, 15558458.260818783, 15558498.305567216, 15558509.375, 15558818.666995093, 15558832.8125, 15559111.446368529, 15559122.993312186, 15559705.45679356, 15560135.9375, 15560412.09192538, 15560521.660238136, 15560557.891628562, 15560643.132914796, 15560657.83422103, 15561004.28449178, 15561135.9375, 15561168.603175838, 15561621.875, 15561692.498117538, 15561807.419031965, 15561865.539562386, 15561868.018456085, 15562161.042967927, 15562310.975753201, 15562445.453475248, 15562583.512179272, 15562806.25, 15562935.323136503, 15563008.133535743, 15563074.431915207, 15563165.988749227, 15563278.125, 15563408.14118847, 15563421.273970282, 15563473.376086926, 15563986.221353063, 15564265.471521646, 15564430.20823553, 15564438.00086553, 15564604.778194599, 15564713.26089672, 15565425.67593805, 15565441.333599996, 15566197.132085007, 15566363.006299123, 15566526.217515782, 15567045.696844777, 15567613.017943693, 15567651.946045786, 15567830.460428664, 15568103.900552666, 15568268.097490715, 15568368.646669846, 15568432.364811836, 15568534.68371905, 15568550.113166424, 15568578.87281937, 15568589.03854728, 15568848.0424675, 15569020.365425514, 15569026.47867161, 15569065.11901743, 15569121.784001261, 15569131.25, 15569185.61502054, 15569186.396855045, 15569393.704830516, ...], [17.56024148552262, 66.92037440362103, 12.136419810920517, 33.76974335823114, 95.65024355232411, 9.228912705920221, 6.024877796940483, 17.762262249795356, 21.34345301017966, 6.524142650313784, 33.94167629483887, 21.33780112827706, 29.885186602971093, 103.4840981300399, 13.157951293835918, 19.51878444537217, 104.13582196147065, 6.31794423581909, 12.79894351603787, 32.910039343312164, 56.141511398336036, 24.894498143061277, 91.88677202483066, 16.550996658526497, 58.87632788958825, 10.48674881449837, 26.258349654013337, 53.885896658029964, 28.74661686973385, 34.635545908292734, 21.82485383402313, 40.06054146989968, 41.086881155831634, 59.88452155674911, 17.497230404315456, 27.035900267221084, 8.179729558791493, 11.795016198186852, 48.83138874422805, 20.33836714278229, 6.662568196623967, 6.959491554692998, 41.509562553110214, 44.73255212321856, 59.503458137921115, 6.8358555045917955, 11.779162582866972, 18.304770679614165, 20.71932278156902, 23.051726209827393, 18.900857853440538, 27.81112776665996, 48.39252343800584, 96.34461978999998, 11.502944685386959, 147.17011549255528, 144.66052837747074, 5.930758112359455, 25.913470455325815, 69.14381296829836, 19.34609113207784, 71.35259363736044, 53.853518178127146, 5.404039463550091, 11.335947417774006, 10.40090454712175, 77.8044061400088, 54.99100781894315, 92.55681918128937, 100.8632710137642, 64.71865876185484, 21.794137138986994, 45.42866249860653, 53.64230198665442, 23.679327522839376, 19.46403338530735, 12.253364415813856, 37.6986675758077, 8.815802629821993, 10.086812213578233, 9.607605887979538, 72.65633492666002, 9.560142143300034, 14.896760855575629, 26.53486253733152, 26.292620777150105, 51.765624631229144, 33.46395104309948, 30.194316179763735, 41.31087744170624, 15.343596110929942, 67.63181805276781, 22.908735628912552, 16.989068166595747, 61.76534730255135, 40.883050937223516, 19.30693192842097, 35.53387440550948, 24.672408189311632, 30.715723107912954, 35.469061736302194, 24.24330122228396, 14.649152089673873, 99.67406486725528, 6.308388631369479, 135.63078719683043, 26.77833467994962, 97.26988012312816, 96.10370814517927, 121.64713971984015, 27.07960778838235, 69.45208434516069, 21.431322110386034, 6.419215094204215, 7.034424854825595, 49.32841290151772, 24.15378193052573, 10.046536395716487, 10.06297657952823, 62.42259128770555, 31.17370912375848, 59.10795853196346, 48.20835854752044, 12.334413342630304, 64.10486067805459, 37.9300953392588, 42.12853016743665, 27.159856873097773, 7.22262138166588, 14.168698441663846, 6.199612779302931, 33.15806051591053, 32.84433894368499, 48.82742277732177, 14.159218717385858, 52.939658020198216, 39.6014784900325, 31.52331017306942, 19.933390173180197, 5.048098853737086, 63.533814370921775, 22.225893822284014, 10.272837272313776, 12.969728668692575, 46.193486134538134, 21.739604567050172, 52.12051163945033, 54.20156732991208, 6.810806785503717, 42.046333870693275, 5.489818958617769, 22.928490328027053, 157.0604354786542, 32.821802089978675, 9.115066646227536, 70.65440198812345, 71.84399565242788, 26.509646028590375, 76.20962156610838, 16.9924742632451, 18.071113913343186, 13.721732722193256, 68.92517907990889, 16.906326282734224, 132.38641555598358, 73.48459558975956, 46.17294582308549, 37.14993209868844, 23.3836069297519, 14.82558473731923, 44.585859758092454, 5.327312662653704, 6.42352236922321, 33.04898602500066, 55.40384053420508, 24.557023960253375, 59.07692198120001, 9.953312238266573, 5.8804557968741, 7.380538220941349, 9.535645030842565, 111.91197333793585, 30.124336639880077, 7.001073209396277, 13.766049358346025, 34.635640931587886, 8.398600088789994, 15.744459098638117, 19.785675362716653, 27.650141308235177, 8.421208223996542, 15.345022778631606, 13.146306890637696, 157.87880810965015, 6.563855913083224, 5.585038380874519, 17.350914109960183, 48.99290839134811, 39.2643291448716, 7.3746608322338325, 5.359246037120441, 5.599485948923101, 25.069469810476107, 29.188866296241237, 29.174768770323233, 44.753193551097546, 63.21366042128538, 42.30110591192519, 32.76252650478985, 22.692898114600546, 30.327916427694802, 61.86845609459891, 23.999944332751095, 43.820228868077024, 5.250424638081745, 23.18073844073936, 40.504182477223864, 10.782419808615114, 7.448188721733058, 33.32766042996771, 46.40334103711365, 118.31053888045233, 126.99929396269158, 48.600087495171394, 48.424119437226736, 7.167141524193355, 20.739767822583257, 25.18962969447888, 20.809336115299086, 65.11453146392606, 13.95861729349547, 36.6408338218883, 34.116767829320466, 17.688305130724103, 8.87658729736653, 64.7317474396179, 39.13023163730641, 12.84740943103876, 5.545461468111498, 40.636760650937624, 34.565473119568765, 21.131492926580496, 42.233927017742204, 97.72571723632802, 5.740188906011036, 11.461045561394158, 6.8550983528977465, 15.457398036833592, 47.47433521686142, 67.83356090027209, 38.643312687141105, 61.09691064722682, 163.60483658495258, 96.94929640313202, 47.966101111819626, 70.6626424528773, 11.981157573814714, 60.54034774151717, 6.940017099677636, 28.224737172851885, 27.74600199433323, 7.392396925015305, 32.54745890086623, 25.264876422852, 17.513091864434866, 88.26909945462289, 13.218809159217498, 63.60206466515679, 176.43872178556077, 111.06229235287445, 11.583127235803797, 11.575829467029356, 44.77600163048311, 12.68873826574907, 37.723447736409696, 5.33724451922739, 11.240505783529638, 7.526955505812223, 22.11629208390334, 22.7571058708155, 7.65199857289129, 24.174829960434394, 59.464244571137314, 29.385126064612795, 25.778276656773976, 35.887029927527195, 10.889623209680629, 44.012409131483764, 10.00644701851549, 19.04340420259018, 90.21218402129979, 13.87431166190179, 11.222448656431679, 49.22395982970123, 38.50580580495909, 27.593323736035792, 43.320910935167944, 86.11956891747943, 59.42577794439194, 10.100505727209228, 7.703477082426216, 133.25831230708582, 17.054244784851836, 127.49560918094971, 47.389324223826605, 57.57576525784242, 108.08124751258819, 10.470204722543642, 62.73353773106001, 39.15668943295089, 7.387054254106317, 85.85451412343767, 20.78811160220878, 5.685594141286603, 14.150503126686239, 9.772094755953919, 102.60037770556009, 38.80122480701152, 92.07303736002206, 12.25885145425819, 64.26762560101787, 25.581111185552793, 10.869567167117438, 89.4102441632684, 7.187190515130725, 16.33422408903811, 14.499799520404613, 7.9830006662651325, 6.252354847924912, 11.064943092735005, 9.75259642647219, 34.116004377727954, 76.571247320907, 55.35668117793995, 9.412770349841368, 15.431019145713728, 179.61439044939792, 22.08489358299609, 24.376347311735813, 40.082124713626115, 33.72679271361396, 13.147569446400928, 290.9015080225009, 34.848992451962246, 7.951078852336269, 119.81826613382782, 19.506048589541795, 29.959530502721986, 16.070421022054326, 35.94917798007868, 26.540315475011727, 8.543679184596385, 12.536211964367741, 78.79869394781068, 16.658012353872948, 26.595280909174775, 12.884473923728967, 17.112660954121033, 14.908228812950522, 49.62667186005316, 18.17170421863298, 30.206330893732122, 9.501455055686595, 5.33873424158261, 94.57220421654598, 32.225041152699774, 36.60703319284443, 46.74482066740034, 89.95927027360379, 54.11521772106254, 17.890891730677833, 9.968108398936009, 87.44920909344951, 34.326444139019294, 93.15896514247176, 26.286370391787813, 40.41859205839324, 19.067253955961544, 31.789112361359383, 77.06047477665288, 7.592134844651248, 22.64659042292177, 54.33831722916705, 40.014074517194906, 25.47892462217493, 14.295544628800647, 104.85836216608921, 7.600109510552526, 67.01077665512169, 42.37235993017333, 42.009795955706764, 6.020608412667412, 15.670512200672691, 48.9791559876584, 144.41091668774342, 25.68459248719649, 5.0289543349524815, 88.7050924545656, 51.38479743983808, 20.922397934723847, 21.575962052758772, 9.722637657281426, 50.27313553784798, 67.21757254276356, 42.19299248101761, 34.533669865628696, 12.52478000939115, 11.357834000146733, 49.822274267678964, 77.74881223770511, 5.941234299386882, 79.05969179618491, 29.70099742618043, 16.534685307152575, 14.521526184253885, 34.43818608565327, 80.38115762971184, 11.583837714803105, 8.133547946256137, 15.179069617984826, 15.249383218859698, 26.36788512348608, 11.37075488726985, 63.17796135182748, 12.521610302585419, 100.97192816306915, 120.47181340540361, 6.8889401215276385, 45.01446413307342, 12.125133267903497, 72.23575542863351, 170.75507625400945, 14.622645560700443, 6.165015176004734, 115.97855011638345, 26.23338280880524, 13.686566904390855, 38.4932124993566, 10.56397045797218, 6.8489306076682315, 134.3838626956815, 13.823399028066094, 29.915426683977067, 30.095628240034255, 35.0478359459899, 22.885362218743182, 5.205449511241962, 7.3615828381034385, 39.85142249680129, 75.1672082397939, 5.342704915421159, 18.29382227863506, 13.780282030438691, 15.901156428482397, 14.12718645744294, 31.639784583756242, 31.078240414121073, 16.50195338474307, 5.194327634336962, 43.69430702890226, 36.69276382236676, 11.67548003345439, 131.5991571387848, 46.37462415595949, 88.15752400189724, 14.699277510015063, 9.705159680612983, 28.203724247100595, 121.88728655833114, 75.65623867017935, 77.56864116260036, 25.770014224415142, 11.518812077391921, 16.714986705758815, 10.690314327990881, 50.840188315112314, 83.98385529995949, 33.43685389678763, 207.35663882748818, 9.422212844579024, 62.76311068162347, 12.171803648357413, 18.48790208730213, 68.39336431283886, 7.48090418827384, 34.53113242485557, 15.870384022959149, 44.58417066132963, 14.71607892194132, 24.94772549959, 22.084965737989517, 27.264325931852433, 5.210508306134435, 7.961662251217604, 48.497840923641455, 85.33163942906224, 51.000911738912194, 36.39668772037275, 36.51377583491876, 25.522993286892735, 17.93218181198315, 117.51769974871299, 18.842530126726615, 37.84702701441276, 8.731140983550862, 78.22920248686444, 12.4178342225831, 6.264670155845106, 34.85811511033474, 22.014571197850035, 42.97392634246119, 49.11318319291249, 59.106194016429804, 47.72072169252446, 7.6043849571390165, 7.864815718155429, 33.12598278913544, 7.338259252604617, 9.005265704349434, 10.451613933083028, 72.89743299972173, 7.836518816546698, 23.905565434854555, 22.484052273755047, 7.211830589983137, 101.69400460212111, 52.20525820213116, 11.010356961121888, 14.772246736115406, 26.448036571590105, 6.80315723648738, 7.3717025407706815, 9.440362085567825, 39.59858795268448, 22.139371607168446, 73.78197169009199, 17.55752821762337, 28.75525350895589, 42.01926256803853, 53.27522550347936, 7.000866180218053, 90.3052778982225, 19.40832660754473, 7.193263314884104, 54.63274016632935, 9.00190971593091, 49.896837763156626, 13.92291148745905, 15.191748494879484, 59.06579847658561, 111.28209172316959, 15.278615424773438, 59.26926878761816, 16.156763159113254, 16.33041432682469, 60.89306246972997, 29.24325895373138, 21.081864947982442, 21.21876197572348, 59.21269696017695, 40.799564548510574, 7.364400689009195, 34.3753359740025, 28.970819379114218, 82.65488215354543, 50.701028604579314, 33.939768545624894, 19.193200052056007, 34.45042772366605, 84.52384185110049, 56.84470949576589, 56.60854306335979, 13.438636537871616, 19.761020755509687, 78.56410182068639, 41.7400787751688, 28.85481933152306, 7.642649843998848, 41.57543598455585, 91.89967739070167, 63.636366169748385, 9.2666096776893, 42.52662641363052, 53.90470495393575, 75.942383572024, 11.914631669369717, 45.78580668339943, 5.146985148230711, 120.87170045972137, 13.306108397911219, 43.05356505470131, 6.694839433852206, 50.029441618099284, 60.91072669036801, 38.751147791048645, 5.541931196135381, 12.705007184968766, 29.552332693145175, 5.0429273597990045, 122.63428730326336, 14.635218519863896, 36.01945025147232, 116.87843751726942, 11.059067102642269, 68.95269328201138, 22.724808393967006, 7.095046223458651, 43.941288683850615, 9.871030641991775, 21.60225047474479, 24.76901959870511, 19.188510274771225, 79.72923690524601, 9.410406858142235, 5.804897904039008, 47.54936773648737, 31.097607638732036, 40.07531219480006, 36.81747009068981, 6.04457117433406, 40.631097023654746, 10.479766247254041, 15.890259203530558, 30.58556736454913, 6.596470063771208, 14.064584084696543, 21.924403479445715, 47.367635945013035, 10.766510898565857, 23.80887486794893, 80.67259717600858, 30.70355296208487, 14.294645401725735, 44.236011948451385, 21.9951100130936, 83.11367881221122, 12.019865459493595, 7.144591948620364, 18.384255659949524, 9.318030450814373, 12.174966785308662, 13.264077312014232, 15.464545976405768, 12.653385784603776, 77.71033622037875, 6.222630703060656, 80.81523555074298, 23.969681347533218, 8.331203869772596, 34.37913950251198, 8.595445361376616, 63.92530130019273, 76.9067251916849, 21.135149261164003, 32.84553769593899, 5.804720674798996, 72.44147468669703, 74.8381044584626, 19.35494160114636, 5.552264861277384, 10.685885534979333, 60.364487961149145, 30.35672436715081, 56.07437913834938, 13.051603456454702, 7.79644335345224, 6.512759117444435, 37.540290713983325, 60.597008812302946, 11.529438896981276, 18.94912806766312, 12.922466936603714, 56.63933921470897, 57.75236495554219, 72.66010473293329, 44.10377100916983, 7.7767038339793295, 81.52166555706837, 7.743342520219561, 19.981551035203257, 37.23889250276934, 34.710284909156954, 10.162027388676885, 23.822023498007002, 37.92592367478379, 40.23264916815668, 7.267577100276567, 78.23935893413076, 32.030147177283936, 34.27114391524506, 8.471828222316585, 47.758977852854066, 31.804289651155592, 37.29078130135857, 6.646779633320853, 5.195370053331857, 18.435568105828935, 76.48141979074799, 32.61271152795534, 16.998716574480877, 19.616721403042295, 45.77409993561849, 11.194844548547024, 36.398878605705136, 7.114723984447476, 5.489924444560951, 12.826139120768191, 51.63789136979888, 26.19474068969385, 11.831425207196812, 48.90755997828975, 61.257373761216044, 94.20997632032812, 12.563813964198461, 7.779088649221843, 31.264617915824104, 17.55577807875297, 60.07900574060466, 31.68728701268741, 27.18752886424453, 27.598148305000137, 18.927642835518864, 25.613923903954266, 8.148842273041652, 57.03989696474305, 10.932663971573612, 18.26689997707165, 39.835731311722576, 78.8517317780913, 5.625746296996546, 19.47670509832831, 31.55963292626604, 6.414281281502088, 32.8503117041663, 51.8716984274174, 67.74370843751208, 60.20635017903143, 48.16512741101269, 30.439820073784052, 61.43871415167324, 26.24798438266022, 21.258370085242227, 16.68434368725319, 23.189283860073846, 42.673579298156156, 32.88696855184013, 6.2740449284542805, 6.301359786125277, 20.32098337975649, 72.96263418175991, 5.975227329757352, 5.247514906561149, 16.29483566574705, 18.999928244175077, 45.52404659205597, 44.803233450502425, 56.00434937966597, 10.882371494507751, 66.74630620666024, 88.57684050816228, 38.17903612114861, 14.047645947930206, 14.206891527482764, 49.664245151962675, 12.580386283571563, 61.914739666703554, 29.696982296359316, 49.079380841901, 6.733965103453739, 8.918260442891382, 8.28306365094967, 33.777798087352494, 79.59348386806738, 8.245949425292984, 13.008069000167282, 10.436753290932902, 49.25381835547273, 23.052550612809053, 17.916717321078885, 7.975866684807816, 9.647266038758493, 51.68963956025096, 14.951700812102402, 15.571483198336683, 28.203779882404532, 105.48008947412265, 14.426932885601413, 13.243883207679636, 27.84494710978699, 16.42150852298801, 45.37601200639914, 5.513387776687493, 14.170295693985182, 7.288957884827929, 31.268130231634654, 18.82657564651317, 16.506306878604605, 24.868460246444762, 60.60504811229252, 18.3613434001997, 12.022102186791225, 18.942841288768218, 23.387435679938594, 10.641340160740087, 38.595527944296265, 48.30522300528968, 69.93686117679543, 11.964866360249049, 57.056159232314805, 14.953589878687211, 21.95055146273547, 15.88946728368768, 31.88434966585878, 14.933421400138513, 5.810222216005094, 44.94121631731575, 14.698228053517967, 31.42255697924321, 11.68271294047085, 8.601838451849602, 122.38825314532014, 26.567226157293717, 17.942129985466124, 95.73245953520735, 60.78111824937184, 5.205076599662259, 83.01404679726505, 76.08746141866166, 45.36758971254148, 48.11134650869006, 18.27381047388729, 12.261558795681326, 31.432872094447454, 9.487173783178692, 56.24605903721057, 50.08877348558798, 7.067345303532054, 19.79808261317476, 15.639331563676636, 33.383215427779575, 6.867468499383963, 15.441446718658552, 17.955078753496995, 19.727886149251685, 19.099174870721704, 20.850064872110355, 5.304576525456481, 60.717761311361116, 44.615172652392715, 127.2067375705396, 21.66339118801033, 80.09528557770872, 36.71350202003673, 45.40514187589051, 8.323598319117645, 8.712266984222904, 27.404351200936222, 21.36596520910781, 37.323233135984175, 41.259703556724276, 190.56147592191084, 8.327424972521095, 160.533561175918, 26.37442720223957, 5.388731298458228, 26.294519484158556, 19.47717910239818, 58.1986395016044, 8.813162463289563, 5.894492630393475, 23.969899175089274, 5.598544315698348, 60.411137629679644, 128.14445997436093, 12.114635685774617, 27.9504543342616, 10.298368746392256, 9.826990783275166, 53.486076987133444, 31.788218379226645, 14.247009350999358, 6.339008466518777, 18.987256297726493, 49.04504898196034, 12.460036062338094, 98.33514940771163, 31.86053312158479, 18.92022271848714, 15.694222558672838, 63.035340865331094, 12.077566452668302, 38.18188445554762, 16.35557779556729, 25.755092903884517, 41.474514081355444, 22.2439701792731, 87.00450683338353, 15.159065512975094, 64.59508063499109, 44.495532945800264, 29.92059385030286, 35.047481322666606, 12.655715978115017, 15.576889574323655, 61.145663407068156, 33.347558569872035, 6.781792729386972, 6.185459842711105, 48.429940468566954, 30.88074137131484, 8.488842564461237, 76.48732753524028, 38.93233424963571, 17.55744920319189, 21.335930426438125, 24.75813932131865, 6.570366395439682, 6.106752906755994, 5.297039680108365, 18.22806440546485, 7.139097256391879, 53.38010940507187, 17.91744085053152, 35.97385597470546, 8.985626142489352, 30.55991253044036, 46.97960427218162, 10.235047882437055, 30.713066334937835, 36.63399166112197, 33.0685338149835, 15.989625653005026, 5.681631901777321, 19.773609038184812, 45.22294852653265, 52.504428197315924, 25.841609303750758, 72.90222075870878, 15.54448541578983, 8.982083370469024, 17.726384221816154, 88.81764261555614, 110.13202740078931, 5.5227474693309135, 15.25193878653386, 46.57340406300065, 17.028611492538392, 17.285246863953983, 45.7245255802974, 68.39032895409487, 36.443755232669346, 16.274218062555565, 42.303320506469, 26.941989299077733, 40.65420216524948, 68.26941446047887, 26.003191633262517, 79.18127340256962, 17.095972769754095, 47.50802163066293, 35.264644925859216, 5.632054971105885, 43.6858546226328, 11.748218916660273, 88.4608383245898, 8.4683935275398, 6.649168243389036, 101.9597730829224, 6.53252772573092, 9.204914830157353, 31.214671709680708, 83.43323519932737, 11.27249049435921, 81.9955497868701, 9.976794301534886, 7.321071915215253, 11.554819292229588, 79.41654259250544, 5.447151723027992, 16.641245128839106, 17.367216815881314, 9.678231122811805, 8.742489365225932, 6.009916125447854, 23.16834403987282, 77.90774077185799, 5.781581493263529, 34.37124662063991, 28.73825494656966, 53.192120523536985, 28.059425303944234, 6.426899512582091, 41.683484147565466, 41.516066609657436, 71.04144128609155, 26.846089787157403, 60.560324218425606, 42.96040850374358, 17.038568128077276, 52.9583667298857, ...])
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)