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 = 45427
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);
([4549462.231517581, 4593689.9433623245, 4650214.607526681, 4917702.709097382, 4926948.381098094, 4973609.856028922, 5047477.917696394, 5074568.1742331125, 5104871.668214088, 5123674.035169264, 5184968.75, 5186592.421440609, 5199146.670592579, 5232326.73451028, 5262763.152130116, 5267668.75, 5268525.977575946, 5298320.3125, 5300021.463690512, 5306626.5625, 5310471.875, 5312323.3788085515, 5315324.411586646, 5328465.390419737, 5329503.125, 5333182.118002975, 5335963.383081515, 5345315.343725348, 5416298.355347715, 5446523.4375, 5448235.660456866, 5471998.701440564, 5477009.157640188, 5514202.62283364, 5516602.8815901615, 5517600.734002334, 5517779.21292053, 5524128.125, 5541373.851750218, 5558065.625, 5570145.169789999, 5589821.674337208, 5609695.3125, 5613460.122054195, 5619436.759724534, 5619959.375, 5620179.364714297, 5622416.262395888, 5624932.8125, 5626042.1875, 5628613.809269488, 5630721.419228069, 5657290.535577607, 5663912.5, 5676684.375, 5678201.650191748, 5679719.538179822, 5681381.25, 5681758.060298736, 5691989.0625, 5692749.553000773, 5694484.375, 5697062.031711586, 5697178.832696042, 5731340.625, 5738195.3125, 5738226.424061793, 5742856.572214041, 5744799.786972896, 5775910.153315764, 5784367.1875, 5792355.671042082, 5841614.0625, 5921232.504504481, 5922166.695720102, 5922176.311215355, 5923946.649645867, 5924344.989277698, 5929985.9375, 5930656.25, 5952959.908577955, 5953122.75569869, 5982816.489505297, 5990152.714749338, 5991262.5, 5997886.760890972, 6004512.5, 6008724.703505366, 6013977.944723866, 6013987.6151938755, 6016135.9375, 6018227.047430442, 6018807.222169702, 6039869.321466345, 6040130.656906577, 6042754.846175816, 6043419.610271244, 6046330.728651063, 6047334.826128366, 6047337.140834477, 6051191.7214378435, 6059757.83102534, 6060782.455866125, 6074123.760461402, 6079270.3125, 6080108.872939933, 6090652.106273653, 6090902.880428459, 6091092.747533244, 6091760.464043368, 6092853.437908479, 6164774.253667358, 6166557.8125, 6168434.375, 6169629.526810335, 6192320.3125, 6192336.6281978665, 6204768.598498362, 6226201.067047845, 6226588.066856292, 6236120.764518739, 6236775.0, 6239765.273031067, 6240434.375, 6241178.315771639, 6243027.372681304, 6248881.25, 6265809.472635935, 6270398.4375, 6271010.362060198, 6274118.75, 6274793.75, 6275582.8125, 6275946.875, 6277346.083738393, 6282200.0, 6287842.0103062615, 6289514.069591771, 6303548.218871133, 6308864.0625, 6308937.5, 6309437.415851816, 6311745.008343836, 6314344.777382548, 6316903.587130324, 6322134.298515648, 6323151.061454844, 6331044.903096316, 6331756.166891773, 6331832.452330251, 6339274.772452789, 6347917.1875, 6362861.756913531, 6376254.6875, 6376515.380945667, 6383375.0, 6384990.625, 6385165.588220191, 6385611.310048164, 6414194.593462745, 6422646.875, 6422928.125, 6429380.535011545, 6429445.534607395, 6431989.148603544, 6435502.048375096, 6476655.428481717, 6478151.5625, 6485155.658163736, 6489502.830267955, 6490554.374220171, 6491043.75, 6493489.4834130965, 6493566.3523684945, 6500095.3125, 6519438.212297504, 6519904.175046127, 6533673.122750039, 6540479.726987765, 6541143.382774983, 6549801.5625, 6550457.8125, 6565525.68170336, 6566625.524699087, 6566961.201440782, 6570879.6875, 6574518.75, 6577443.27240455, 6593525.96601251, 6594910.9375, 6595368.401514898, 6597218.75, 6597991.725199363, 6632644.44321696, 6636080.885951869, 6636485.206806172, 6642518.930626231, 6644053.125, 6644410.427354895, 6659182.073574879, 6659203.125, 6659999.985478256, 6702615.625, 6713100.0, 6719963.96068897, 6728216.314269967, 6728363.275353496, 6728518.75, 6749536.745729275, 6755664.580883426, 6773607.8125, 6782879.622699641, 6784712.5, 6785389.241639606, 6786134.375, 6789938.848254392, 6791359.375, 6792525.11159294, 6797429.026631192, 6812838.993044109, 6828170.43849636, 6840469.584418451, 6840554.140456703, 6849853.978074548, 6851157.771135861, 6851168.75, 6857538.434982821, 6881542.1875, 6883909.800285594, 6884747.844874001, 6886262.5, 6899495.3125, 6907705.434654228, 6911062.5, 6917300.765013268, 6917826.069145972, 6919793.75, 6925650.0, 6925653.125, 6929235.670019224, 6930403.056333995, 6933029.6875, 6934441.20886195, 6937871.894960867, 6944513.150656365, 6945954.070581737, 6950575.478460137, 6954051.904337996, 6968935.098979671, 6970962.5, 6972936.874486212, 6973888.58137196, 6981420.3125, 6985200.0, 6986914.470541361, 6999023.4375, 7001879.965802714, 7002328.125, 7003655.153677533, 7018442.1875, 7019481.314586522, 7021590.900670435, 7023111.087684728, 7023168.374313954, 7051262.825475662, 7052996.874901411, 7053532.829517388, 7055373.9507993115, 7055416.475178355, 7055835.9375, 7059756.964208997, 7059840.512092422, 7062232.614876126, 7062298.7820647955, 7064718.061611351, 7069324.866609378, 7070117.1875, 7070433.5618512165, 7071435.8872870095, 7071842.60988271, 7073221.463557519, 7073645.3125, 7074575.0, 7076446.34379742, 7087337.269263202, 7088624.962298716, 7093055.9403806245, 7095969.069178617, 7097718.930175855, 7105598.212776626, 7111751.172880534, 7121011.18613093, 7122581.408860186, 7122856.723772195, 7123909.276363497, 7127015.080491471, 7129071.636875512, 7137230.679027422, 7137284.140436524, 7140705.628894754, 7141681.0295645865, 7144458.571021703, 7149643.786912922, 7150619.844703077, 7155188.304602649, 7155296.504576088, 7156670.42939818, 7156881.350857705, 7156914.712129478, 7157279.209114646, 7160855.474861192, 7164677.173982416, 7165845.3125, 7165947.407333672, 7173531.037069545, 7176623.161888489, 7177845.070631992, 7179315.1549265105, 7179323.694192984, 7181299.088035407, 7190162.5, 7203405.435254431, 7203729.603398777, 7210414.137802876, 7213048.4375, 7214906.017266913, 7215223.4375, 7215343.187592085, 7216511.554755508, 7219113.31659598, 7223645.3125, 7229707.8125, 7255412.340800988, 7259342.458810822, 7269823.4375, 7294184.928459391, 7295580.768240322, 7300976.369544648, 7301087.006786807, 7302392.63802135, 7311741.942194575, 7318280.182870728, 7320565.625, 7325703.808654139, 7332755.463999272, 7341460.9375, 7342031.5442917, 7343880.64181311, 7344226.5625, 7344398.4375, 7344491.63064944, 7345453.125, 7346481.357022819, 7350354.086115067, 7355493.944626454, 7355610.58981963, 7365202.110636017, 7366457.8125, 7366762.5, 7374632.280447314, 7377243.472592798, 7386068.31392925, 7388540.767028426, 7396035.9375, 7405739.0625, 7408684.189830192, 7415115.488925581, 7415289.762278955, 7417724.370861244, 7417838.745320092, 7435449.028212855, 7446245.705843763, 7448365.510967106, 7454055.470821075, 7471854.290086347, 7477445.3125, 7491143.637092428, 7494670.3125, 7512621.59070787, 7528103.125, 7547371.237843896, 7593030.099365082, 7593246.188366709, 7647662.5, 7682895.429807856, 7699391.268651311, 7700058.288655381, 7710381.163328369, 7710395.937965816, 7720553.113855231, 7730598.608809425, 7748376.566144888, 7753557.8125, 7764884.536534742, 7773452.665054803, 7775401.438344423, 7778226.52879038, 7778607.585845687, 7802301.106659862, 7808845.3125, 7814957.634073754, 7817486.376166153, 7823007.8125, 7826455.972593166, 7848269.334767727, 7870943.75, 7884489.0625, 7945189.40487305, 7949295.3125, 7964029.495012556, 7965450.953684058, 7967396.797228285, 7967532.01540189, 7987548.4375, 7994157.8125, 7996641.194712072, 8010271.395743511, 8013611.983547721, 8019959.058222244, 8019976.106625919, 8039523.050771008, 8048364.0625, 8062100.699261342, 8070830.62610126, 8079278.125, 8079728.705442612, 8080931.209735776, 8082318.527101175, 8083406.25, 8086547.9223087495, 8094207.286941108, 8132686.403053582, 8134599.988814555, 8145351.276148474, 8146085.218786793, 8146364.0625, 8147526.135579261, 8154864.653566379, 8160331.86889141, 8171816.2562251035, 8187913.832232079, 8188804.6875, 8192481.25, 8193267.166604869, 8208722.832509467, 8213932.549396897, 8229336.972346395, 8237837.015475404, 8238935.342916851, 8244382.159197948, 8256501.5625, 8262610.747291049, 8285509.375, 8304315.560895225, 8320743.033978895, 8341425.557373523, 8385794.361501941, 8397499.691731801, 8404120.235909011, 8404485.9375, 8427495.010710139, 8433835.739754286, 8436827.586849391, 8439293.73437251, 8439471.532028226, 8444725.649763212, 8451452.9734744, 8452851.269683566, 8457592.11786177, 8459321.875, 8472471.86533274, 8502504.6875, 8505889.0625, 8508883.794590576, 8515970.382911688, 8518585.629271077, 8521920.327742405, 8522171.875, 8526241.286303649, 8534756.059707126, 8536904.255697936, 8543346.740216803, 8543359.945991399, 8547545.31233052, 8548603.240134705, 8552733.505276568, 8553199.985624332, 8568557.465111261, 8573210.9375, 8584481.501573712, 8586329.6875, 8593292.842177903, 8597173.379189888, 8606850.0, 8617826.5625, 8622134.375, 8639769.282342745, 8640800.0, 8647187.373685231, 8649599.970953288, 8663564.626539763, 8680570.085597845, 8687535.197746413, 8702551.312230803, 8708419.976871409, 8715717.1875, 8717291.819384338, 8730663.078691848, 8737562.740187438, 8745312.880025495, 8745313.74549626, 8772756.501479791, 8790736.134292977, 8792711.402575321, 8792732.388024254, 8804350.0, 8814899.724092884, 8824904.6875, 8856793.75, 8858063.868498929, 8863365.378627107, 8878618.75, 8938241.721794648, 8959740.75093188, 8964285.218115667, 8971283.079044398, 8972665.625, 8989440.625, 9019039.0625, 9029996.888027987, 9061707.606028683, 9061708.338724557, 9079607.803371988, 9080012.939813174, 9082187.592643103, 9083685.723537274, 9099884.268564472, 9099898.4375, 9112535.721817374, 9130737.5, 9131206.53615239, 9134316.481912775, 9156519.851687249, 9176254.6875, 9184925.386197554, 9194007.24334804, 9198095.699811693, 9200723.907196049, 9217142.709329294, 9224792.1875, 9232832.632519387, 9232901.321015868, 9251187.34508273, 9256954.6875, 9256961.356645642, 9270914.20025992, 9296768.485869344, 9323739.0625, 9325660.982630212, 9342216.52272011, 9351064.0625, 9352471.371048303, 9404253.57839839, 9413712.506999712, 9417733.562820757, 9428875.0, 9435662.273308339, 9442953.53923323, 9449707.8125, 9468882.588613123, 9495715.934987921, 9496705.98318224, 9496833.458795523, 9496898.032004733, 9514653.732680473, 9514759.375, 9521357.87979403, 9521486.690472431, 9533998.4375, 9534280.166799726, 9534477.63036507, 9538359.290103503, 9548424.11430508, 9550717.353488265, 9551014.005882049, 9552441.734982744, 9552656.103054319, 9558966.437910689, 9564387.5, 9566232.59729938, 9583748.428693566, 9584913.913282115, 9603543.162034344, 9622736.174628496, 9626575.142886905, 9668041.679879488, 9673283.95037591, 9686340.977568204, 9834922.641660286, 9857807.512379222, 9860373.4375, 9883050.847520174, 9891512.441846538, 9915112.5, 9915491.782521354, 9946576.225265719, 9957428.83507191, 9959887.5, 9980432.8125, 10005654.040969715, 10012101.523585496, 10041916.559618764, 10047787.30914343, 10047832.8125, 10052716.827455493, 10054539.0625, 10057545.3125, 10063794.052021634, 10065409.722950738, 10090515.625, 10099427.66815639, 10100398.4375, 10142981.25, 10172650.532334177, 10173635.04415433, 10174257.047974586, 10175504.379398609, 10215479.020622747, 10221378.11662129, 10233023.998524798, 10237046.592616584, 10245953.241373986, 10245967.1875, 10363312.978035767, 10368784.573438175, 10410070.191593736, 10666933.67336941, 10683023.4375, 10698411.101142338, 10774576.5625, 10810977.211308626, 11002914.109277913, 11021693.264873324, 11027251.653809564, 11047710.231437095, 11140905.590294968, 11144248.056408769, 11150954.306846956, 11164883.106149992, 11187012.5, 11204784.375, 11237652.979007563, 11248746.732974544, 11260354.27966418, 11280914.83151211, 11293904.137014037, 11293915.410273727, 11332590.579006394, 11435033.555574354, 11511648.345214479, 11562074.538386334, 11626456.391665785, 11828059.375, 11933224.330201617, 12062956.965616174, 12164733.17058447, 12220250.0, 12321819.209186899, 12338152.503753748, 12368725.0, 12757853.0974666, 12772354.6875, 12773820.3125, 12871009.566339856, 12881217.275711058, 12894829.137343148, 12945546.28733237, 12956806.25, 13000075.59295067, 13000441.481863888, 13003886.9832518, 13007965.625, 13008768.529438099, 13016597.98924498, 13020776.5625, 13021014.0625, 13021020.65971988, 13021096.18521957, 13021168.557958178, 13021168.75, 13021216.313551843, 13021247.707594322, 13021265.105895216, 13021291.346441813, 13021295.3125, 13021309.375, 13021336.989805117, 13021367.707344402, 13021435.568492929, 13021443.75, 13021450.463815184, 13021456.25, 13021476.308159648, 13021483.92935201, 13021497.187447136, 13021507.8125, 13021526.685424184, 13021532.71183977, 13021533.83049811, 13021535.1075389, 13021575.0, 13021606.993505634, 13021608.662476698, 13021629.814275121, 13021630.129208036, 13021677.877638752, 13021689.949534597, 13021692.532791002, 13021713.94991371, 13021727.570478372, 13021728.125, 13021751.5625, 13021805.56370358, 13021822.94386101, 13021852.18882195, 13021853.438402928, 13021855.322560972, 13021859.09362616, 13021871.79096147, 13021873.705713114, 13021877.6755157, 13021893.75, 13021921.875, 13021951.937322037, 13021969.590266118, 13021975.655265132, 13021984.502023017, 13021998.02057647, 13022024.663059847, 13022062.84554409, 13022124.720582828, 13022159.375, 13022197.104622083, 13022231.500285879, 13022267.1875, 13022280.246115733, 13022325.0, 13022339.533425491, 13022354.6875, 13022364.01780435, 13022379.115102185, 13022379.326568106, 13022408.441338435, 13022441.45743415, 13022479.535010664, 13022514.865654226, 13022525.739131486, 13022528.62016668, 13022567.1875, 13022589.071845628, 13022605.736130135, 13022612.478887793, 13022614.6533346, 13022709.724533316, 13022720.916716985, 13022753.830786612, 13022776.495502891, 13022789.0625, 13022835.018870525, 13022884.375, 13022925.0, 13022930.732265204, 13022964.757009963, 13022980.206900874, 13023028.563979624, 13023036.705469582, 13023053.752762334, 13023079.146223418, 13023084.947879443, 13023090.625, 13023093.50552711, 13023104.6625126, 13023118.569464128, 13023143.75, 13023154.453576323, 13023176.16085677, 13023229.422002722, 13023230.24807386, 13023233.460860511, 13023301.133808626, 13023307.8125, 13023309.356151884, 13023355.163252365, 13023365.625, 13023372.688742813, 13023403.584255261, 13023425.68109665, 13023437.5, 13023458.536864532, 13023475.936614545, 13023498.8871635, 13023499.912187602, 13023504.6875, 13023513.260424213, 13023513.452417804, 13023530.56813305, 13023574.333123218, 13023587.5, 13023600.042874146, 13023618.327128744, 13023649.405846266, 13023651.5625, 13023652.8544806, 13023657.519606046, 13023688.52523623, 13023691.140666537, 13023693.481733656, 13023705.955136165, 13023725.337008351, 13023750.0, 13023763.227771858, 13023764.573366033, 13023770.147955468, 13023777.963706557, 13023825.012637913, 13023826.790724998, 13023832.781771913, 13023832.8125, 13023833.663604314, 13023845.225630516, 13023848.205293195, 13023867.985812156, 13023871.397636678, 13023882.421585185, 13023929.464635003, 13023938.389542926, 13023944.830824811, 13023947.377940109, 13023971.875, 13023987.5, 13023999.943871222, 13024018.86098738, 13024025.0, 13024034.375, 13024051.5625, 13024059.837883895, 13024070.512678737, 13024071.626338977, 13024071.764597207, 13024072.844103245, 13024102.4476733, 13024106.927987803, 13024110.379043087, 13024115.580115076, 13024123.808414966, 13024124.82785813, 13024125.0, 13024126.312709868, 13024152.2863972, 13024153.187372789, 13024157.473755665, 13024161.78385277, 13024190.178163039, 13024193.75, 13024194.689053172, 13024223.630344918, 13024233.337068884, 13024234.375, 13024249.425786423, 13024252.089662302, 13024253.290392453, 13024265.625, 13024280.523612795, 13024302.044141974, 13024302.086362045, 13024309.375, 13024320.937948354, 13024330.714789307, 13024334.375, 13024334.433889939, 13024336.124996236, 13024337.5, 13024357.368977034, 13024362.5, 13024371.534702396, 13024372.752027806, 13024401.300951663, 13024404.6875, 13024409.375, 13024429.6875, 13024437.322981143, 13024445.309630595, 13024448.4375, 13024451.524226863, 13024464.510763517, 13024473.259480607, 13024478.61085043, 13024478.7873953, 13024484.375, 13024486.853834117, 13024487.5, 13024500.018638628, 13024504.599992571, 13024510.49835931, 13024513.362073978, 13024527.54496575, 13024531.25, 13024539.988261089, 13024541.614656303, 13024554.612068584, 13024559.375, 13024562.99217076, 13024569.842037024, 13024571.875, 13024578.125, 13024584.622231446, 13024585.752665281, 13024593.75, 13024595.497374404, 13024603.051627737, 13024607.062872699, 13024612.987189395, 13024615.148638176, 13024618.28117235, 13024629.6875, 13024636.457971364, 13024646.783344146, 13024656.873459756, 13024670.3125, 13024679.6875, 13024697.79605732, 13024722.978117561, 13024746.551356923, 13024748.793037405, 13024751.152140176, 13024753.633653983, 13024763.528216314, 13024764.0625, 13024764.629781723, 13024783.729942452, 13024789.995307133, 13024793.658980671, 13024797.217120219, 13024808.13911234, 13024820.3125, 13024825.0, 13024828.125, 13024831.37588574, 13024836.456781887, 13024840.441210829, 13024843.75, 13024855.093390297, 13024860.938794471, 13024869.091056723, 13024885.9375, 13024894.238108441, 13024897.753814787, 13024911.402889287, 13024921.255661411, 13024926.5625, 13024943.278143467, 13024945.669822412, 13024965.54709439, 13024971.470771533, 13024973.4375, 13024976.540829025, 13024988.344263675, 13025006.483098682, 13025017.62760396, 13025038.88652711, 13025064.0625, 13025076.772413831, 13025092.1875, 13025118.75, 13025127.808332631, 13025132.179253284, 13025139.220564129, 13025142.1875, 13025143.558325728, 13025181.25, 13025204.888592733, 13025232.444924362, 13025237.233031578, 13025263.77794272, 13025274.191732058, 13025321.380262926, 13025340.625, 13025341.937441796, 13025342.124370148, 13025355.453903629, 13025356.430506816, 13025362.643334132, 13025398.476354422, 13025399.492404807, 13025399.873351738, 13025403.369607132, 13025421.813347684, 13025425.0, 13025454.6875, 13025457.669729346, ...], [10.732474068313612, 46.31858934724201, 60.66423195900114, 5.591442431508269, 5.289348215906676, 148.08804986201906, 25.01171559424117, 144.26677410746436, 60.52092736858475, 17.842744719845864, 55.707159118304176, 107.91136880582636, 24.69811405754586, 7.666658637771604, 40.04350447891903, 48.16897066916447, 10.742734532193928, 38.63557762285944, 79.25522591627818, 68.37917328367251, 76.5336172788512, 121.92486122472187, 41.821813949705245, 84.6557273614929, 58.9128926502262, 31.12354381184717, 12.860128602692848, 55.148460708257275, 11.001680386423258, 127.01865413619885, 5.158959260390451, 16.05296114352499, 24.152053398583192, 32.41502214388636, 24.501557957872954, 10.04010045178781, 35.33192888191934, 61.70801646556303, 92.94969054954208, 92.4270087446789, 42.67875149827829, 25.108369538925395, 52.8802805676937, 18.834058910126473, 118.70214893546895, 42.33447994187388, 79.05479373122189, 6.351233670904469, 51.23896253030064, 38.980394060063354, 7.514146282706736, 152.39892290357153, 95.56728490970895, 32.94472989636952, 44.28957322718266, 29.95763134736619, 79.82440598605231, 58.980333961144304, 57.59065327023331, 51.59065246857713, 8.0635430845512, 32.16615490596109, 110.9978524799529, 28.723586151719253, 77.73239078606832, 58.464932749413876, 5.337200185580898, 67.67630906912072, 24.929131564569992, 39.17141545870998, 91.07501435785, 13.11487853881491, 241.2775339902282, 13.884572386237174, 38.74174621981972, 34.576825133345565, 56.44777628457555, 13.83775755306637, 78.04622244812194, 151.81388681416522, 46.43048177373853, 6.385272720562301, 222.6158740382379, 10.541782563845306, 48.39492459915216, 33.03579506165211, 36.42571996892492, 13.920238880927577, 25.410815406357322, 11.312665976987466, 78.29963388601878, 11.980909949476853, 5.889593494548588, 17.68267235416457, 20.612128788204373, 146.17199482050535, 19.68800873323101, 21.28274435218897, 13.5734127349961, 6.432225201365399, 14.772202572330391, 21.284566919272827, 10.612549929011932, 16.33413427687928, 80.30081446200217, 115.9661717624256, 25.655185828603976, 92.19264982590238, 17.614010916670573, 58.74922979233449, 51.26886632307086, 12.698494740671494, 80.95344104553753, 68.63583403411, 25.709803408015624, 61.941973737428086, 28.835228497872222, 60.32340044093954, 260.9579844600056, 7.278884012739164, 21.43506803277079, 100.06128519747622, 23.108858311616913, 42.59800529026617, 6.517418041324824, 21.823920056324905, 113.60930809979021, 54.00118951467742, 48.34283947633812, 13.124076106417851, 55.58203974997021, 74.86168384385563, 84.95693652807418, 96.43739183936444, 19.008395091204566, 85.04123204714631, 25.457312413089518, 6.268094777285807, 100.57144771378776, 87.52957343782697, 69.20207949148276, 97.92506183143945, 66.38881861317502, 57.520606510246296, 6.562059374052484, 59.367589105161535, 21.482680577588884, 47.266787617129, 36.13740405240278, 23.011424894159582, 35.122525868369635, 36.28748542370433, 127.71341751291234, 28.68797216449629, 5.521351901816099, 35.58019204518771, 33.449401063627356, 88.12834886086901, 172.39433281213434, 12.763681817532106, 41.52126803463338, 86.49189019094786, 19.58677075535939, 32.94842374957278, 253.56502303589355, 58.51224041315904, 24.51851721681577, 58.20954079976188, 8.87654281350118, 12.206088174708292, 96.24852321496465, 67.717625059697, 120.00146721746557, 85.75342461521059, 99.84740525894904, 116.68909305162782, 38.858462203901034, 6.70225496218854, 71.70245395258166, 73.83948035467174, 85.7564203419449, 138.02912339740286, 46.823580561791424, 6.872983575889336, 87.06592934511015, 59.11506744861978, 30.388548994177224, 80.94805477302603, 42.173445324964135, 50.217087066278786, 219.74241649815258, 40.88529967776435, 21.877599623965562, 32.417216812740406, 22.965697470707347, 41.24562058774306, 15.677768394234212, 50.18545597759691, 43.58157518894644, 25.859885777752062, 43.02545493174256, 11.105083995275622, 39.95015835947324, 41.43171761539715, 127.2916043231551, 110.14637061344371, 10.086058021880401, 39.78294511349788, 70.30209477653558, 12.04774192802588, 89.21122087062099, 8.252604523675124, 33.654164781064566, 10.962843967306796, 128.2887221230981, 9.156586573907811, 79.6386522532169, 15.384621337411202, 20.025609670897982, 147.49090862902602, 9.440262017770747, 28.311435791404328, 5.438766690938147, 37.80579976911481, 27.731929752218168, 73.39711071418373, 7.3910191390467315, 57.284887100382555, 40.75262234852893, 20.61632611777774, 50.434719077150234, 54.32351321064832, 28.5564576321336, 33.82332370234456, 30.273234578438235, 10.43519618537286, 31.120070842787793, 108.10140894206033, 50.7780081359895, 78.96574028298078, 27.236222062965425, 213.9572523235013, 9.87923713329286, 15.018140652268398, 65.23688880379225, 37.54982445765381, 101.28373813510973, 263.7286807717623, 6.166767844203909, 43.30448586639295, 46.127288503476905, 6.208266633656744, 147.93930284458574, 68.00159558314392, 16.764051233657955, 84.81181031958724, 176.26926876911028, 69.0253454387774, 151.51764679312063, 59.62838398691145, 30.407739445458382, 80.69191523247517, 69.07363001424156, 191.9681965185133, 5.475911908713952, 76.28984635067357, 11.154410663900615, 40.72025539421219, 33.127335634611434, 46.309366510761286, 12.463665555524551, 26.476067139118825, 14.238212766003755, 7.215071963216606, 12.838099066790974, 5.127661582753802, 78.98027450190149, 18.850439142007726, 219.71543228369356, 75.04450637239137, 26.690771339022902, 83.66667602218138, 142.6120162034191, 34.867091313669945, 50.50301931026583, 71.21317568970372, 32.11904889322399, 27.053345012226288, 132.81673400536036, 24.762401802828236, 9.022341966417619, 83.12282277025373, 11.3854388462241, 19.953214402790017, 26.71569791126492, 52.40472890594187, 24.574657889653444, 29.311784423989153, 5.333947788031839, 15.623339006067923, 70.01738577568199, 113.06437865677117, 15.698451788998389, 8.053777456127486, 19.255905690889495, 24.84711983376662, 33.474473913349144, 15.340390689817262, 5.863663508402647, 7.438916851578662, 10.099542422848225, 7.840460141969855, 33.58517692924433, 12.075958083556294, 9.157622356739637, 6.709702620951186, 53.71606794462002, 13.408761847719322, 16.341987128909043, 84.27739366952869, 83.9832695623203, 110.89989283854842, 25.809747823321914, 51.54375124891947, 74.82044984570001, 14.12291176631497, 99.86337382543049, 13.158314530908577, 76.97094772482241, 12.699510584912806, 42.967758631953956, 45.043156697964974, 39.99173237306872, 28.292000158764218, 115.58630568660303, 17.57485062049217, 21.67700762485819, 33.96363226468458, 21.561070475012226, 11.913365750553158, 56.23364033906938, 64.49580122072946, 103.74381960820904, 24.018431601627103, 19.046875792481785, 46.07615459320982, 16.195886754549804, 51.63426065036544, 76.614602320271, 107.9063455222925, 5.032283200418015, 144.60689710166722, 116.69836290639148, 106.92258793545398, 6.8029943865658655, 13.76351446578489, 61.59797876152566, 133.31395411333932, 52.42962592023373, 5.8943728125854635, 24.043687959428706, 72.73791080950528, 22.020938220082545, 59.70696059662619, 32.75152255591502, 96.37307184163728, 171.0062699621776, 10.002616669807198, 30.78260331624501, 5.6868648667305175, 23.634457227446255, 27.59451335778469, 116.00591988718318, 19.097075463374342, 10.55858009016135, 41.63193639398023, 21.31159111048712, 43.94852216049715, 62.0090631261444, 65.32600467680047, 12.965474444816518, 5.303981303960347, 19.813586555521205, 29.244042000036213, 7.152633574106436, 9.94219704455891, 17.131100752309028, 26.920638665925523, 58.113634514783755, 9.321997387519572, 47.30442274862668, 56.76300947697195, 51.7142978122819, 22.688675615096933, 38.10003672713155, 92.65387866394474, 42.975151632902296, 14.142682267407764, 21.94522728338527, 79.49001603035568, 14.30241544770365, 34.832055690115496, 69.91193850633954, 24.043692803427554, 18.194077979559385, 32.02581266521626, 38.086807335965766, 82.18144676473406, 71.2882232131423, 12.149497737942387, 49.09477562283341, 11.008282265854994, 77.91676367352181, 58.58283728484377, 100.23556960597048, 17.67209098779316, 75.45981534146433, 49.328782156373435, 10.666209759992794, 10.482810228040186, 8.0921351903046, 49.74687429859289, 44.340506391542654, 5.7692156331647535, 77.50937592930188, 5.99159981472991, 155.83783727206946, 24.78823269312853, 80.07600572085227, 8.930723737147922, 7.423604174005621, 7.24945622850736, 14.07115979752564, 16.864026901382267, 19.557469135093392, 89.81002762499617, 22.254455510375365, 5.647602199804825, 23.670990642851844, 8.651190506724959, 71.58371160230928, 74.5877464182958, 37.819730390473126, 44.5555833773374, 108.34706152303949, 57.580889459794584, 21.221606080041425, 55.77875120703277, 20.598765936570224, 80.14869709693649, 42.52500605970647, 25.26236482955847, 42.625417259640564, 39.2740109878531, 19.57863588474909, 62.91381190801289, 99.80987383758992, 76.46043562232337, 56.30222444652009, 38.046055907680646, 23.72790555678414, 60.17256174430371, 32.2982454204373, 19.373356415178876, 65.57437277605189, 12.321919209858025, 25.85262580601756, 263.7221685415835, 27.218956857878005, 30.47564607803242, 174.20825392436896, 87.46224827974724, 79.74774288784705, 20.726800124563823, 8.324166521559421, 136.38957600579533, 21.302434598689914, 31.206436589665906, 18.247948990592498, 25.261119475220216, 39.749673607456025, 43.965586635426796, 13.442771163894712, 11.12744190530001, 6.2818552280047015, 9.995007809832936, 28.243501319533376, 38.814705620127754, 31.647029435118935, 32.70947563784409, 30.991921195376932, 6.594860181174256, 108.86420213007246, 45.07101557102029, 60.98827480083286, 31.611863210903437, 46.799301580000346, 78.94518839924514, 10.935846481045807, 27.962666253268633, 6.5793002140846175, 24.731641227581, 5.498223713524272, 10.757825470972305, 5.123393395537969, 100.69456829617462, 22.91797987476958, 7.282361000941294, 12.248751545591725, 76.73061600056019, 9.077009953309783, 100.77645388795202, 15.748682018763642, 17.06992353394803, 28.61984824126226, 52.121682344120245, 24.063451909691516, 87.3045988792671, 65.721823843169, 53.22537483782266, 14.078838708414871, 34.80753411312415, 37.69154268186133, 74.28878672138858, 102.98743982795074, 9.567431227274076, 35.242537904514606, 109.7195293403527, 52.15745357164024, 51.48868506586699, 19.89656706639574, 13.226169279741459, 6.761685598748875, 41.024500107875284, 39.22820781521363, 24.766838494488454, 13.63682027048474, 43.16545689539855, 15.933078979370325, 57.224950342953804, 68.44204170685295, 16.698405998872246, 8.057051185293055, 33.18822139315675, 5.843119096803531, 42.74922114615589, 14.198977752411801, 42.39123701317422, 7.265730884904778, 93.25907546012613, 25.41526438199816, 60.68754082020233, 5.69696908734082, 32.839667720767636, 11.852808087779993, 11.350085205115255, 8.151670838550281, 40.61386907581567, 155.53827779312405, 7.3792812551321, 51.77229021849979, 46.56113619340039, 5.416094583631032, 11.138665458001336, 45.58480997605211, 39.53139901552083, 111.71001274955934, 11.84341426846266, 56.131607717566084, 36.97841793504602, 50.45308453656879, 29.37672511226064, 8.660720103430851, 5.034776163674949, 9.904148483717098, 61.763439734165644, 25.159628991647942, 5.657104289494833, 49.97389810000243, 17.14856910594827, 8.945475779834432, 91.01775996915278, 18.350367218779734, 7.664396726313863, 27.452359120486836, 30.888170274207766, 138.24116737554854, 5.268481228963686, 37.66455653151413, 14.180151941413044, 28.35186448884647, 5.8030213060913045, 10.318221325424577, 48.667449725617594, 52.7789128221316, 67.41250704038445, 33.84406095082217, 5.970708861049837, 10.076335033109828, 154.67472485409888, 43.42665789588148, 6.945386694500926, 73.78751132258952, 112.2570687354072, 10.548670133671349, 51.18317719162785, 18.575334204181665, 50.55336552258422, 29.928911265955744, 40.94360646749616, 8.26610533561663, 20.305705161381308, 97.01057408947808, 43.48056139373737, 29.237221259489758, 53.39183575606558, 34.812064187028895, 126.12362624320629, 118.76831427584858, 77.51255638473536, 27.519518727437152, 50.159773879919435, 29.562650994332298, 19.593246092650446, 17.505242573695007, 11.591447665926221, 98.09040825037249, 20.197402780049387, 13.390454737636233, 58.53130936025428, 48.01099571723231, 23.15251495530685, 89.97644184438927, 8.55665422448145, 15.755948243817535, 21.99956368604417, 10.183489496763451, 43.26918836756802, 9.473714212050442, 79.22035441165879, 78.9670678892441, 14.50953784616437, 15.525172526497828, 9.409822683120751, 43.7489762288629, 69.03268214091875, 10.580070144469403, 83.37795578633111, 16.192828836025654, 57.95810337929612, 62.1795715578718, 30.357343645291703, 62.38982663184862, 6.046690440868996, 79.25022698700519, 51.24846635909817, 9.156208125656633, 9.29281343623979, 113.63321483777119, 26.824015541602815, 10.475470581286894, 18.607083388575674, 67.23851324522042, 31.153848341768192, 18.457288660521193, 51.940581284307655, 51.55854944056932, 6.327010479971485, 13.005810134375512, 59.87687060396218, 5.612522740359451, 53.97200462788765, 67.08832416894386, 11.440560765840132, 45.80867839074653, 21.00693686307385, 86.96299153124235, 37.40935843101283, 50.39451296514259, 12.796059958888403, 21.32763927949793, 77.23999297409769, 6.720257726591594, 18.791303743617256, 102.37421697874798, 58.093189349961584, 6.834864330586201, 27.953093202088372, 33.00642592426073, 77.29731474351335, 68.00773422361597, 42.89977526495055, 59.57336463685478, 18.653888492591776, 30.65910268374497, 78.60220705871927, 21.3920001292948, 17.378163750052355, 13.699717266294721, 60.23155272994919, 17.063002863942664, 53.84842821017956, 30.177699665810792, 28.9562584136097, 10.793549290690148, 29.042604323028698, 8.35266929572763, 21.101957867882756, 121.07087081967862, 18.731398223943557, 33.67471990961206, 22.06122040042593, 74.51663333700063, 21.62505179388824, 31.99766332848844, 41.346145830797084, 12.869873134321232, 22.68540614726885, 26.481405521509743, 5.672352808519459, 40.19260456930111, 92.60362040617719, 31.56336772664483, 11.213143889130057, 7.846646028260663, 60.87264387415651, 8.65361208405261, 99.12637120019416, 141.00660700307003, 143.81347191974282, 22.01227016683656, 61.52611156360314, 45.99360290995724, 41.085845964276885, 6.943714370526541, 40.172731222778275, 54.204688526419396, 22.36389487681637, 7.035610282545209, 6.311865315433702, 30.7651953531969, 110.03104454249035, 7.183149490281513, 11.542832978663192, 35.23306134943503, 8.605859339534046, 89.86972312543281, 116.67521337256339, 52.47196896410782, 14.773843885571774, 20.800066455907825, 101.77581905405451, 41.17849329563397, 19.46885149612815, 25.83751619076458, 29.335749147453342, 65.23488747303965, 20.238103828494985, 70.24223401960207, 14.977250632268749, 48.594479723115164, 66.45399878852551, 17.737610194781357, 12.557909521938019, 92.34305552570606, 39.05617291526241, 34.884497474344876, 67.49112959577954, 18.371716484725706, 35.996676161759865, 79.12198564900767, 10.40461720236919, 7.875353367388518, 12.049792889957615, 98.35066537549926, 7.906810134503246, 30.56531733472259, 21.090994720139058, 7.824470082717233, 46.51110480513467, 24.486918994552106, 14.847116854594436, 37.49926205987177, 57.36896348167218, 154.79305449423865, 98.10432889114051, 6.446262301507227, 9.855095140217777, 18.163573309004093, 22.86987696529834, 75.63447817079714, 30.32848181856147, 98.797024396555, 86.90280197935945, 10.129391734484457, 6.327019660620027, 56.33994389232092, 61.40966485226049, 13.149832778609653, 61.46366741770406, 27.937989916930807, 6.473413412160022, 55.29870878326071, 41.32307322880332, 44.61162790951061, 12.854104179577917, 19.97565067370117, 71.68824010256485, 43.95873058192335, 54.77611061696887, 36.56661322453121, 41.91465935826768, 10.72965118734169, 24.773092384286176, 48.368691110662766, 53.49165201053669, 66.65378712116386, 85.61806652096618, 13.560732494938883, 117.46606751873148, 66.46087094618889, 8.576564046016246, 8.201438836736672, 6.071485201608723, 23.574266275803076, 7.182765839361183, 27.93090198445085, 46.98173489797467, 24.855820465283507, 26.91721922302551, 16.76352872349741, 6.373618455107118, 32.90442035069411, 10.56711869425301, 23.282917267475625, 10.216901740861895, 13.376515136086853, 96.92075912685405, 55.80123003522103, 33.91220736875533, 14.73180319974923, 5.345739252435778, 69.35441690792987, 96.57367006832509, 63.59616096876005, 31.45978485910439, 15.763645730770277, 24.04384129992213, 10.959416374965238, 20.60940612941878, 19.88950871189103, 18.358243439329254, 57.022465588548485, 11.058266141032817, 5.634898984488618, 25.53396361480411, 41.09180226767394, 5.037359480463411, 7.887870772974373, 165.0592446158156, 150.74805372656365, 8.791332622248206, 20.897952876006034, 67.90914108281504, 52.78505417819043, 15.731282586497928, 42.86146605546065, 83.33470006960377, 20.108360986241287, 7.805720944109546, 129.46689795712263, 68.58808856688165, 19.497453424705284, 37.83927045248161, 12.05879856710589, 67.96063442178185, 86.95436925718208, 7.420489776834893, 58.213887759755536, 7.624676949671328, 15.707794936430343, 117.51929578236079, 10.498664212625084, 136.15443114180846, 23.249290888628202, 23.1577469974226, 24.25465701945977, 59.96779775403713, 47.4345901710969, 121.784076018466, 5.391749614759459, 28.468471087097498, 33.01846126913469, 59.89365131540148, 16.978208384274165, 14.303785098354826, 11.98273239444073, 18.25511252327447, 60.66962086303391, 5.4346994225289755, 51.71194550910892, 83.77162287046544, 58.44341973068641, 87.25733206450461, 112.83041558628702, 13.112068478414345, 64.18492901496344, 55.22251632773389, 100.42390019725154, 66.47229697376589, 35.33716154307867, 11.995276159414662, 51.346155828261345, 42.88413653610736, 36.8680892324955, 7.187994049780333, 10.850587147663838, 50.078853082961395, 11.429519496290322, 27.152887521973117, 19.318553443619443, 17.19261073402499, 24.27431396848304, 13.412238321493128, 35.14321600620775, 17.38177871319964, 58.97840414480517, 18.00409194465628, 65.17827820633448, 38.23329872713837, 79.47863068451977, 21.908082493943247, 59.26513255954782, 8.483987401101697, 22.436477639691297, 17.313977026232394, 10.384035273462533, 65.82472433482044, 17.65745939309292, 12.945581358552193, 19.41938089740519, 14.6055756917912, 105.30671016213604, 36.05517092036604, 57.6868190832037, 75.6575028852206, 155.30301464808764, 26.499428543677155, 17.374922086625865, 13.998182632665387, 94.8120288322583, 6.5526578143479774, 24.377818050098615, 23.177922124401004, 47.546086488848815, 17.197760724150697, 20.36470814049728, 12.540833129198306, 121.88513350291896, 35.709247202850186, 39.43919884653141, 16.504132276510195, 82.04826263926904, 118.76895132776605, 41.30438483493364, 11.094001787413458, 12.765609956965076, 11.512710090997022, 36.56616090549625, 25.475785320702585, 74.04805722327569, 5.470848988120411, 63.05105647080333, 56.30124804199458, 31.61761239065102, 26.04810675068945, 20.377103949540114, 31.74184078240466, 56.36357896666667, 60.74199361970739, 92.13650784015964, 25.94682768050322, 124.90789289779676, 7.0486066751691165, 14.586790821523767, 30.906012479506515, 76.38378334949714, 24.41035312937128, 40.54770607948821, 10.07604847348927, 46.397247437956025, 115.03841226485511, 27.117913254967448, 45.71446693099558, 26.250142100909475, 24.573463273297204, 16.35258438985502, 98.18768716842708, 65.57772829536273, 13.76796829977128, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4549462.231517581, 4593689.9433623245, 4650214.607526681, 4917702.709097382, 4926948.381098094, 4973609.856028922, 5047477.917696394, 5074568.1742331125, 5104871.668214088, 5123674.035169264, 5184968.75, 5186592.421440609, 5199146.670592579, 5232326.73451028, 5262763.152130116, 5267668.75, 5268525.977575946, 5298320.3125, 5300021.463690512, 5306626.5625, 5310471.875, 5312323.3788085515, 5315324.411586646, 5328465.390419737, 5329503.125, 5333182.118002975, 5335963.383081515, 5345315.343725348, 5416298.355347715, 5446523.4375, 5448235.660456866, 5471998.701440564, 5477009.157640188, 5514202.62283364, 5516602.8815901615, 5517600.734002334, 5517779.21292053, 5524128.125, 5541373.851750218, 5558065.625, 5570145.169789999, 5589821.674337208, 5609695.3125, 5613460.122054195, 5619436.759724534, 5619959.375, 5620179.364714297, 5622416.262395888, 5624932.8125, 5626042.1875, 5628613.809269488, 5630721.419228069, 5657290.535577607, 5663912.5, 5676684.375, 5678201.650191748, 5679719.538179822, 5681381.25, 5681758.060298736, 5691989.0625, 5692749.553000773, 5694484.375, 5697062.031711586, 5697178.832696042, 5731340.625, 5738195.3125, 5738226.424061793, 5742856.572214041, 5744799.786972896, 5775910.153315764, 5784367.1875, 5792355.671042082, 5841614.0625, 5921232.504504481, 5922166.695720102, 5922176.311215355, 5923946.649645867, 5924344.989277698, 5929985.9375, 5930656.25, 5952959.908577955, 5953122.75569869, 5982816.489505297, 5990152.714749338, 5991262.5, 5997886.760890972, 6004512.5, 6008724.703505366, 6013977.944723866, 6013987.6151938755, 6016135.9375, 6018227.047430442, 6018807.222169702, 6039869.321466345, 6040130.656906577, 6042754.846175816, 6043419.610271244, 6046330.728651063, 6047334.826128366, 6047337.140834477, 6051191.7214378435, 6059757.83102534, 6060782.455866125, 6074123.760461402, 6079270.3125, 6080108.872939933, 6090652.106273653, 6090902.880428459, 6091092.747533244, 6091760.464043368, 6092853.437908479, 6164774.253667358, 6166557.8125, 6168434.375, 6169629.526810335, 6192320.3125, 6192336.6281978665, 6204768.598498362, 6226201.067047845, 6226588.066856292, 6236120.764518739, 6236775.0, 6239765.273031067, 6240434.375, 6241178.315771639, 6243027.372681304, 6248881.25, 6265809.472635935, 6270398.4375, 6271010.362060198, 6274118.75, 6274793.75, 6275582.8125, 6275946.875, 6277346.083738393, 6282200.0, 6287842.0103062615, 6289514.069591771, 6303548.218871133, 6308864.0625, 6308937.5, 6309437.415851816, 6311745.008343836, 6314344.777382548, 6316903.587130324, 6322134.298515648, 6323151.061454844, 6331044.903096316, 6331756.166891773, 6331832.452330251, 6339274.772452789, 6347917.1875, 6362861.756913531, 6376254.6875, 6376515.380945667, 6383375.0, 6384990.625, 6385165.588220191, 6385611.310048164, 6414194.593462745, 6422646.875, 6422928.125, 6429380.535011545, 6429445.534607395, 6431989.148603544, 6435502.048375096, 6476655.428481717, 6478151.5625, 6485155.658163736, 6489502.830267955, 6490554.374220171, 6491043.75, 6493489.4834130965, 6493566.3523684945, 6500095.3125, 6519438.212297504, 6519904.175046127, 6533673.122750039, 6540479.726987765, 6541143.382774983, 6549801.5625, 6550457.8125, 6565525.68170336, 6566625.524699087, 6566961.201440782, 6570879.6875, 6574518.75, 6577443.27240455, 6593525.96601251, 6594910.9375, 6595368.401514898, 6597218.75, 6597991.725199363, 6632644.44321696, 6636080.885951869, 6636485.206806172, 6642518.930626231, 6644053.125, 6644410.427354895, 6659182.073574879, 6659203.125, 6659999.985478256, 6702615.625, 6713100.0, 6719963.96068897, 6728216.314269967, 6728363.275353496, 6728518.75, 6749536.745729275, 6755664.580883426, 6773607.8125, 6782879.622699641, 6784712.5, 6785389.241639606, 6786134.375, 6789938.848254392, 6791359.375, 6792525.11159294, 6797429.026631192, 6812838.993044109, 6828170.43849636, 6840469.584418451, 6840554.140456703, 6849853.978074548, 6851157.771135861, 6851168.75, 6857538.434982821, 6881542.1875, 6883909.800285594, 6884747.844874001, 6886262.5, 6899495.3125, 6907705.434654228, 6911062.5, 6917300.765013268, 6917826.069145972, 6919793.75, 6925650.0, 6925653.125, 6929235.670019224, 6930403.056333995, 6933029.6875, 6934441.20886195, 6937871.894960867, 6944513.150656365, 6945954.070581737, 6950575.478460137, 6954051.904337996, 6968935.098979671, 6970962.5, 6972936.874486212, 6973888.58137196, 6981420.3125, 6985200.0, 6986914.470541361, 6999023.4375, 7001879.965802714, 7002328.125, 7003655.153677533, 7018442.1875, 7019481.314586522, 7021590.900670435, 7023111.087684728, 7023168.374313954, 7051262.825475662, 7052996.874901411, 7053532.829517388, 7055373.9507993115, 7055416.475178355, 7055835.9375, 7059756.964208997, 7059840.512092422, 7062232.614876126, 7062298.7820647955, 7064718.061611351, 7069324.866609378, 7070117.1875, 7070433.5618512165, 7071435.8872870095, 7071842.60988271, 7073221.463557519, 7073645.3125, 7074575.0, 7076446.34379742, 7087337.269263202, 7088624.962298716, 7093055.9403806245, 7095969.069178617, 7097718.930175855, 7105598.212776626, 7111751.172880534, 7121011.18613093, 7122581.408860186, 7122856.723772195, 7123909.276363497, 7127015.080491471, 7129071.636875512, 7137230.679027422, 7137284.140436524, 7140705.628894754, 7141681.0295645865, 7144458.571021703, 7149643.786912922, 7150619.844703077, 7155188.304602649, 7155296.504576088, 7156670.42939818, 7156881.350857705, 7156914.712129478, 7157279.209114646, 7160855.474861192, 7164677.173982416, 7165845.3125, 7165947.407333672, 7173531.037069545, 7176623.161888489, 7177845.070631992, 7179315.1549265105, 7179323.694192984, 7181299.088035407, 7190162.5, 7203405.435254431, 7203729.603398777, 7210414.137802876, 7213048.4375, 7214906.017266913, 7215223.4375, 7215343.187592085, 7216511.554755508, 7219113.31659598, 7223645.3125, 7229707.8125, 7255412.340800988, 7259342.458810822, 7269823.4375, 7294184.928459391, 7295580.768240322, 7300976.369544648, 7301087.006786807, 7302392.63802135, 7311741.942194575, 7318280.182870728, 7320565.625, 7325703.808654139, 7332755.463999272, 7341460.9375, 7342031.5442917, 7343880.64181311, 7344226.5625, 7344398.4375, 7344491.63064944, 7345453.125, 7346481.357022819, 7350354.086115067, 7355493.944626454, 7355610.58981963, 7365202.110636017, 7366457.8125, 7366762.5, 7374632.280447314, 7377243.472592798, 7386068.31392925, 7388540.767028426, 7396035.9375, 7405739.0625, 7408684.189830192, 7415115.488925581, 7415289.762278955, 7417724.370861244, 7417838.745320092, 7435449.028212855, 7446245.705843763, 7448365.510967106, 7454055.470821075, 7471854.290086347, 7477445.3125, 7491143.637092428, 7494670.3125, 7512621.59070787, 7528103.125, 7547371.237843896, 7593030.099365082, 7593246.188366709, 7647662.5, 7682895.429807856, 7699391.268651311, 7700058.288655381, 7710381.163328369, 7710395.937965816, 7720553.113855231, 7730598.608809425, 7748376.566144888, 7753557.8125, 7764884.536534742, 7773452.665054803, 7775401.438344423, 7778226.52879038, 7778607.585845687, 7802301.106659862, 7808845.3125, 7814957.634073754, 7817486.376166153, 7823007.8125, 7826455.972593166, 7848269.334767727, 7870943.75, 7884489.0625, 7945189.40487305, 7949295.3125, 7964029.495012556, 7965450.953684058, 7967396.797228285, 7967532.01540189, 7987548.4375, 7994157.8125, 7996641.194712072, 8010271.395743511, 8013611.983547721, 8019959.058222244, 8019976.106625919, 8039523.050771008, 8048364.0625, 8062100.699261342, 8070830.62610126, 8079278.125, 8079728.705442612, 8080931.209735776, 8082318.527101175, 8083406.25, 8086547.9223087495, 8094207.286941108, 8132686.403053582, 8134599.988814555, 8145351.276148474, 8146085.218786793, 8146364.0625, 8147526.135579261, 8154864.653566379, 8160331.86889141, 8171816.2562251035, 8187913.832232079, 8188804.6875, 8192481.25, 8193267.166604869, 8208722.832509467, 8213932.549396897, 8229336.972346395, 8237837.015475404, 8238935.342916851, 8244382.159197948, 8256501.5625, 8262610.747291049, 8285509.375, 8304315.560895225, 8320743.033978895, 8341425.557373523, 8385794.361501941, 8397499.691731801, 8404120.235909011, 8404485.9375, 8427495.010710139, 8433835.739754286, 8436827.586849391, 8439293.73437251, 8439471.532028226, 8444725.649763212, 8451452.9734744, 8452851.269683566, 8457592.11786177, 8459321.875, 8472471.86533274, 8502504.6875, 8505889.0625, 8508883.794590576, 8515970.382911688, 8518585.629271077, 8521920.327742405, 8522171.875, 8526241.286303649, 8534756.059707126, 8536904.255697936, 8543346.740216803, 8543359.945991399, 8547545.31233052, 8548603.240134705, 8552733.505276568, 8553199.985624332, 8568557.465111261, 8573210.9375, 8584481.501573712, 8586329.6875, 8593292.842177903, 8597173.379189888, 8606850.0, 8617826.5625, 8622134.375, 8639769.282342745, 8640800.0, 8647187.373685231, 8649599.970953288, 8663564.626539763, 8680570.085597845, 8687535.197746413, 8702551.312230803, 8708419.976871409, 8715717.1875, 8717291.819384338, 8730663.078691848, 8737562.740187438, 8745312.880025495, 8745313.74549626, 8772756.501479791, 8790736.134292977, 8792711.402575321, 8792732.388024254, 8804350.0, 8814899.724092884, 8824904.6875, 8856793.75, 8858063.868498929, 8863365.378627107, 8878618.75, 8938241.721794648, 8959740.75093188, 8964285.218115667, 8971283.079044398, 8972665.625, 8989440.625, 9019039.0625, 9029996.888027987, 9061707.606028683, 9061708.338724557, 9079607.803371988, 9080012.939813174, 9082187.592643103, 9083685.723537274, 9099884.268564472, 9099898.4375, 9112535.721817374, 9130737.5, 9131206.53615239, 9134316.481912775, 9156519.851687249, 9176254.6875, 9184925.386197554, 9194007.24334804, 9198095.699811693, 9200723.907196049, 9217142.709329294, 9224792.1875, 9232832.632519387, 9232901.321015868, 9251187.34508273, 9256954.6875, 9256961.356645642, 9270914.20025992, 9296768.485869344, 9323739.0625, 9325660.982630212, 9342216.52272011, 9351064.0625, 9352471.371048303, 9404253.57839839, 9413712.506999712, 9417733.562820757, 9428875.0, 9435662.273308339, 9442953.53923323, 9449707.8125, 9468882.588613123, 9495715.934987921, 9496705.98318224, 9496833.458795523, 9496898.032004733, 9514653.732680473, 9514759.375, 9521357.87979403, 9521486.690472431, 9533998.4375, 9534280.166799726, 9534477.63036507, 9538359.290103503, 9548424.11430508, 9550717.353488265, 9551014.005882049, 9552441.734982744, 9552656.103054319, 9558966.437910689, 9564387.5, 9566232.59729938, 9583748.428693566, 9584913.913282115, 9603543.162034344, 9622736.174628496, 9626575.142886905, 9668041.679879488, 9673283.95037591, 9686340.977568204, 9834922.641660286, 9857807.512379222, 9860373.4375, 9883050.847520174, 9891512.441846538, 9915112.5, 9915491.782521354, 9946576.225265719, 9957428.83507191, 9959887.5, 9980432.8125, 10005654.040969715, 10012101.523585496, 10041916.559618764, 10047787.30914343, 10047832.8125, 10052716.827455493, 10054539.0625, 10057545.3125, 10063794.052021634, 10065409.722950738, 10090515.625, 10099427.66815639, 10100398.4375, 10142981.25, 10172650.532334177, 10173635.04415433, 10174257.047974586, 10175504.379398609, 10215479.020622747, 10221378.11662129, 10233023.998524798, 10237046.592616584, 10245953.241373986, 10245967.1875, 10363312.978035767, 10368784.573438175, 10410070.191593736, 10666933.67336941, 10683023.4375, 10698411.101142338, 10774576.5625, 10810977.211308626, 11002914.109277913, 11021693.264873324, 11027251.653809564, 11047710.231437095, 11140905.590294968, 11144248.056408769, 11150954.306846956, 11164883.106149992, 11187012.5, 11204784.375, 11237652.979007563, 11248746.732974544, 11260354.27966418, 11280914.83151211, 11293904.137014037, 11293915.410273727, 11332590.579006394, 11435033.555574354, 11511648.345214479, 11562074.538386334, 11626456.391665785, 11828059.375, 11933224.330201617, 12062956.965616174, 12164733.17058447, 12220250.0, 12321819.209186899, 12338152.503753748, 12368725.0, 12757853.0974666, 12772354.6875, 12773820.3125, 12871009.566339856, 12881217.275711058, 12894829.137343148, 12945546.28733237, 12956806.25, 13000075.59295067, 13000441.481863888, 13003886.9832518, 13007965.625, 13008768.529438099, 13016597.98924498, 13020776.5625, 13021014.0625, 13021020.65971988, 13021096.18521957, 13021168.557958178, 13021168.75, 13021216.313551843, 13021247.707594322, 13021265.105895216, 13021291.346441813, 13021295.3125, 13021309.375, 13021336.989805117, 13021367.707344402, 13021435.568492929, 13021443.75, 13021450.463815184, 13021456.25, 13021476.308159648, 13021483.92935201, 13021497.187447136, 13021507.8125, 13021526.685424184, 13021532.71183977, 13021533.83049811, 13021535.1075389, 13021575.0, 13021606.993505634, 13021608.662476698, 13021629.814275121, 13021630.129208036, 13021677.877638752, 13021689.949534597, 13021692.532791002, 13021713.94991371, 13021727.570478372, 13021728.125, 13021751.5625, 13021805.56370358, 13021822.94386101, 13021852.18882195, 13021853.438402928, 13021855.322560972, 13021859.09362616, 13021871.79096147, 13021873.705713114, 13021877.6755157, 13021893.75, 13021921.875, 13021951.937322037, 13021969.590266118, 13021975.655265132, 13021984.502023017, 13021998.02057647, 13022024.663059847, 13022062.84554409, 13022124.720582828, 13022159.375, 13022197.104622083, 13022231.500285879, 13022267.1875, 13022280.246115733, 13022325.0, 13022339.533425491, 13022354.6875, 13022364.01780435, 13022379.115102185, 13022379.326568106, 13022408.441338435, 13022441.45743415, 13022479.535010664, 13022514.865654226, 13022525.739131486, 13022528.62016668, 13022567.1875, 13022589.071845628, 13022605.736130135, 13022612.478887793, 13022614.6533346, 13022709.724533316, 13022720.916716985, 13022753.830786612, 13022776.495502891, 13022789.0625, 13022835.018870525, 13022884.375, 13022925.0, 13022930.732265204, 13022964.757009963, 13022980.206900874, 13023028.563979624, 13023036.705469582, 13023053.752762334, 13023079.146223418, 13023084.947879443, 13023090.625, 13023093.50552711, 13023104.6625126, 13023118.569464128, 13023143.75, 13023154.453576323, 13023176.16085677, 13023229.422002722, 13023230.24807386, 13023233.460860511, 13023301.133808626, 13023307.8125, 13023309.356151884, 13023355.163252365, 13023365.625, 13023372.688742813, 13023403.584255261, 13023425.68109665, 13023437.5, 13023458.536864532, 13023475.936614545, 13023498.8871635, 13023499.912187602, 13023504.6875, 13023513.260424213, 13023513.452417804, 13023530.56813305, 13023574.333123218, 13023587.5, 13023600.042874146, 13023618.327128744, 13023649.405846266, 13023651.5625, 13023652.8544806, 13023657.519606046, 13023688.52523623, 13023691.140666537, 13023693.481733656, 13023705.955136165, 13023725.337008351, 13023750.0, 13023763.227771858, 13023764.573366033, 13023770.147955468, 13023777.963706557, 13023825.012637913, 13023826.790724998, 13023832.781771913, 13023832.8125, 13023833.663604314, 13023845.225630516, 13023848.205293195, 13023867.985812156, 13023871.397636678, 13023882.421585185, 13023929.464635003, 13023938.389542926, 13023944.830824811, 13023947.377940109, 13023971.875, 13023987.5, 13023999.943871222, 13024018.86098738, 13024025.0, 13024034.375, 13024051.5625, 13024059.837883895, 13024070.512678737, 13024071.626338977, 13024071.764597207, 13024072.844103245, 13024102.4476733, 13024106.927987803, 13024110.379043087, 13024115.580115076, 13024123.808414966, 13024124.82785813, 13024125.0, 13024126.312709868, 13024152.2863972, 13024153.187372789, 13024157.473755665, 13024161.78385277, 13024190.178163039, 13024193.75, 13024194.689053172, 13024223.630344918, 13024233.337068884, 13024234.375, 13024249.425786423, 13024252.089662302, 13024253.290392453, 13024265.625, 13024280.523612795, 13024302.044141974, 13024302.086362045, 13024309.375, 13024320.937948354, 13024330.714789307, 13024334.375, 13024334.433889939, 13024336.124996236, 13024337.5, 13024357.368977034, 13024362.5, 13024371.534702396, 13024372.752027806, 13024401.300951663, 13024404.6875, 13024409.375, 13024429.6875, 13024437.322981143, 13024445.309630595, 13024448.4375, 13024451.524226863, 13024464.510763517, 13024473.259480607, 13024478.61085043, 13024478.7873953, 13024484.375, 13024486.853834117, 13024487.5, 13024500.018638628, 13024504.599992571, 13024510.49835931, 13024513.362073978, 13024527.54496575, 13024531.25, 13024539.988261089, 13024541.614656303, 13024554.612068584, 13024559.375, 13024562.99217076, 13024569.842037024, 13024571.875, 13024578.125, 13024584.622231446, 13024585.752665281, 13024593.75, 13024595.497374404, 13024603.051627737, 13024607.062872699, 13024612.987189395, 13024615.148638176, 13024618.28117235, 13024629.6875, 13024636.457971364, 13024646.783344146, 13024656.873459756, 13024670.3125, 13024679.6875, 13024697.79605732, 13024722.978117561, 13024746.551356923, 13024748.793037405, 13024751.152140176, 13024753.633653983, 13024763.528216314, 13024764.0625, 13024764.629781723, 13024783.729942452, 13024789.995307133, 13024793.658980671, 13024797.217120219, 13024808.13911234, 13024820.3125, 13024825.0, 13024828.125, 13024831.37588574, 13024836.456781887, 13024840.441210829, 13024843.75, 13024855.093390297, 13024860.938794471, 13024869.091056723, 13024885.9375, 13024894.238108441, 13024897.753814787, 13024911.402889287, 13024921.255661411, 13024926.5625, 13024943.278143467, 13024945.669822412, 13024965.54709439, 13024971.470771533, 13024973.4375, 13024976.540829025, 13024988.344263675, 13025006.483098682, 13025017.62760396, 13025038.88652711, 13025064.0625, 13025076.772413831, 13025092.1875, 13025118.75, 13025127.808332631, 13025132.179253284, 13025139.220564129, 13025142.1875, 13025143.558325728, 13025181.25, 13025204.888592733, 13025232.444924362, 13025237.233031578, 13025263.77794272, 13025274.191732058, 13025321.380262926, 13025340.625, 13025341.937441796, 13025342.124370148, 13025355.453903629, 13025356.430506816, 13025362.643334132, 13025398.476354422, 13025399.492404807, 13025399.873351738, 13025403.369607132, 13025421.813347684, 13025425.0, 13025454.6875, 13025457.669729346, ...], [10.732474068313612, 46.31858934724201, 60.66423195900114, 5.591442431508269, 5.289348215906676, 148.08804986201906, 25.01171559424117, 144.26677410746436, 60.52092736858475, 17.842744719845864, 55.707159118304176, 107.91136880582636, 24.69811405754586, 7.666658637771604, 40.04350447891903, 48.16897066916447, 10.742734532193928, 38.63557762285944, 79.25522591627818, 68.37917328367251, 76.5336172788512, 121.92486122472187, 41.821813949705245, 84.6557273614929, 58.9128926502262, 31.12354381184717, 12.860128602692848, 55.148460708257275, 11.001680386423258, 127.01865413619885, 5.158959260390451, 16.05296114352499, 24.152053398583192, 32.41502214388636, 24.501557957872954, 10.04010045178781, 35.33192888191934, 61.70801646556303, 92.94969054954208, 92.4270087446789, 42.67875149827829, 25.108369538925395, 52.8802805676937, 18.834058910126473, 118.70214893546895, 42.33447994187388, 79.05479373122189, 6.351233670904469, 51.23896253030064, 38.980394060063354, 7.514146282706736, 152.39892290357153, 95.56728490970895, 32.94472989636952, 44.28957322718266, 29.95763134736619, 79.82440598605231, 58.980333961144304, 57.59065327023331, 51.59065246857713, 8.0635430845512, 32.16615490596109, 110.9978524799529, 28.723586151719253, 77.73239078606832, 58.464932749413876, 5.337200185580898, 67.67630906912072, 24.929131564569992, 39.17141545870998, 91.07501435785, 13.11487853881491, 241.2775339902282, 13.884572386237174, 38.74174621981972, 34.576825133345565, 56.44777628457555, 13.83775755306637, 78.04622244812194, 151.81388681416522, 46.43048177373853, 6.385272720562301, 222.6158740382379, 10.541782563845306, 48.39492459915216, 33.03579506165211, 36.42571996892492, 13.920238880927577, 25.410815406357322, 11.312665976987466, 78.29963388601878, 11.980909949476853, 5.889593494548588, 17.68267235416457, 20.612128788204373, 146.17199482050535, 19.68800873323101, 21.28274435218897, 13.5734127349961, 6.432225201365399, 14.772202572330391, 21.284566919272827, 10.612549929011932, 16.33413427687928, 80.30081446200217, 115.9661717624256, 25.655185828603976, 92.19264982590238, 17.614010916670573, 58.74922979233449, 51.26886632307086, 12.698494740671494, 80.95344104553753, 68.63583403411, 25.709803408015624, 61.941973737428086, 28.835228497872222, 60.32340044093954, 260.9579844600056, 7.278884012739164, 21.43506803277079, 100.06128519747622, 23.108858311616913, 42.59800529026617, 6.517418041324824, 21.823920056324905, 113.60930809979021, 54.00118951467742, 48.34283947633812, 13.124076106417851, 55.58203974997021, 74.86168384385563, 84.95693652807418, 96.43739183936444, 19.008395091204566, 85.04123204714631, 25.457312413089518, 6.268094777285807, 100.57144771378776, 87.52957343782697, 69.20207949148276, 97.92506183143945, 66.38881861317502, 57.520606510246296, 6.562059374052484, 59.367589105161535, 21.482680577588884, 47.266787617129, 36.13740405240278, 23.011424894159582, 35.122525868369635, 36.28748542370433, 127.71341751291234, 28.68797216449629, 5.521351901816099, 35.58019204518771, 33.449401063627356, 88.12834886086901, 172.39433281213434, 12.763681817532106, 41.52126803463338, 86.49189019094786, 19.58677075535939, 32.94842374957278, 253.56502303589355, 58.51224041315904, 24.51851721681577, 58.20954079976188, 8.87654281350118, 12.206088174708292, 96.24852321496465, 67.717625059697, 120.00146721746557, 85.75342461521059, 99.84740525894904, 116.68909305162782, 38.858462203901034, 6.70225496218854, 71.70245395258166, 73.83948035467174, 85.7564203419449, 138.02912339740286, 46.823580561791424, 6.872983575889336, 87.06592934511015, 59.11506744861978, 30.388548994177224, 80.94805477302603, 42.173445324964135, 50.217087066278786, 219.74241649815258, 40.88529967776435, 21.877599623965562, 32.417216812740406, 22.965697470707347, 41.24562058774306, 15.677768394234212, 50.18545597759691, 43.58157518894644, 25.859885777752062, 43.02545493174256, 11.105083995275622, 39.95015835947324, 41.43171761539715, 127.2916043231551, 110.14637061344371, 10.086058021880401, 39.78294511349788, 70.30209477653558, 12.04774192802588, 89.21122087062099, 8.252604523675124, 33.654164781064566, 10.962843967306796, 128.2887221230981, 9.156586573907811, 79.6386522532169, 15.384621337411202, 20.025609670897982, 147.49090862902602, 9.440262017770747, 28.311435791404328, 5.438766690938147, 37.80579976911481, 27.731929752218168, 73.39711071418373, 7.3910191390467315, 57.284887100382555, 40.75262234852893, 20.61632611777774, 50.434719077150234, 54.32351321064832, 28.5564576321336, 33.82332370234456, 30.273234578438235, 10.43519618537286, 31.120070842787793, 108.10140894206033, 50.7780081359895, 78.96574028298078, 27.236222062965425, 213.9572523235013, 9.87923713329286, 15.018140652268398, 65.23688880379225, 37.54982445765381, 101.28373813510973, 263.7286807717623, 6.166767844203909, 43.30448586639295, 46.127288503476905, 6.208266633656744, 147.93930284458574, 68.00159558314392, 16.764051233657955, 84.81181031958724, 176.26926876911028, 69.0253454387774, 151.51764679312063, 59.62838398691145, 30.407739445458382, 80.69191523247517, 69.07363001424156, 191.9681965185133, 5.475911908713952, 76.28984635067357, 11.154410663900615, 40.72025539421219, 33.127335634611434, 46.309366510761286, 12.463665555524551, 26.476067139118825, 14.238212766003755, 7.215071963216606, 12.838099066790974, 5.127661582753802, 78.98027450190149, 18.850439142007726, 219.71543228369356, 75.04450637239137, 26.690771339022902, 83.66667602218138, 142.6120162034191, 34.867091313669945, 50.50301931026583, 71.21317568970372, 32.11904889322399, 27.053345012226288, 132.81673400536036, 24.762401802828236, 9.022341966417619, 83.12282277025373, 11.3854388462241, 19.953214402790017, 26.71569791126492, 52.40472890594187, 24.574657889653444, 29.311784423989153, 5.333947788031839, 15.623339006067923, 70.01738577568199, 113.06437865677117, 15.698451788998389, 8.053777456127486, 19.255905690889495, 24.84711983376662, 33.474473913349144, 15.340390689817262, 5.863663508402647, 7.438916851578662, 10.099542422848225, 7.840460141969855, 33.58517692924433, 12.075958083556294, 9.157622356739637, 6.709702620951186, 53.71606794462002, 13.408761847719322, 16.341987128909043, 84.27739366952869, 83.9832695623203, 110.89989283854842, 25.809747823321914, 51.54375124891947, 74.82044984570001, 14.12291176631497, 99.86337382543049, 13.158314530908577, 76.97094772482241, 12.699510584912806, 42.967758631953956, 45.043156697964974, 39.99173237306872, 28.292000158764218, 115.58630568660303, 17.57485062049217, 21.67700762485819, 33.96363226468458, 21.561070475012226, 11.913365750553158, 56.23364033906938, 64.49580122072946, 103.74381960820904, 24.018431601627103, 19.046875792481785, 46.07615459320982, 16.195886754549804, 51.63426065036544, 76.614602320271, 107.9063455222925, 5.032283200418015, 144.60689710166722, 116.69836290639148, 106.92258793545398, 6.8029943865658655, 13.76351446578489, 61.59797876152566, 133.31395411333932, 52.42962592023373, 5.8943728125854635, 24.043687959428706, 72.73791080950528, 22.020938220082545, 59.70696059662619, 32.75152255591502, 96.37307184163728, 171.0062699621776, 10.002616669807198, 30.78260331624501, 5.6868648667305175, 23.634457227446255, 27.59451335778469, 116.00591988718318, 19.097075463374342, 10.55858009016135, 41.63193639398023, 21.31159111048712, 43.94852216049715, 62.0090631261444, 65.32600467680047, 12.965474444816518, 5.303981303960347, 19.813586555521205, 29.244042000036213, 7.152633574106436, 9.94219704455891, 17.131100752309028, 26.920638665925523, 58.113634514783755, 9.321997387519572, 47.30442274862668, 56.76300947697195, 51.7142978122819, 22.688675615096933, 38.10003672713155, 92.65387866394474, 42.975151632902296, 14.142682267407764, 21.94522728338527, 79.49001603035568, 14.30241544770365, 34.832055690115496, 69.91193850633954, 24.043692803427554, 18.194077979559385, 32.02581266521626, 38.086807335965766, 82.18144676473406, 71.2882232131423, 12.149497737942387, 49.09477562283341, 11.008282265854994, 77.91676367352181, 58.58283728484377, 100.23556960597048, 17.67209098779316, 75.45981534146433, 49.328782156373435, 10.666209759992794, 10.482810228040186, 8.0921351903046, 49.74687429859289, 44.340506391542654, 5.7692156331647535, 77.50937592930188, 5.99159981472991, 155.83783727206946, 24.78823269312853, 80.07600572085227, 8.930723737147922, 7.423604174005621, 7.24945622850736, 14.07115979752564, 16.864026901382267, 19.557469135093392, 89.81002762499617, 22.254455510375365, 5.647602199804825, 23.670990642851844, 8.651190506724959, 71.58371160230928, 74.5877464182958, 37.819730390473126, 44.5555833773374, 108.34706152303949, 57.580889459794584, 21.221606080041425, 55.77875120703277, 20.598765936570224, 80.14869709693649, 42.52500605970647, 25.26236482955847, 42.625417259640564, 39.2740109878531, 19.57863588474909, 62.91381190801289, 99.80987383758992, 76.46043562232337, 56.30222444652009, 38.046055907680646, 23.72790555678414, 60.17256174430371, 32.2982454204373, 19.373356415178876, 65.57437277605189, 12.321919209858025, 25.85262580601756, 263.7221685415835, 27.218956857878005, 30.47564607803242, 174.20825392436896, 87.46224827974724, 79.74774288784705, 20.726800124563823, 8.324166521559421, 136.38957600579533, 21.302434598689914, 31.206436589665906, 18.247948990592498, 25.261119475220216, 39.749673607456025, 43.965586635426796, 13.442771163894712, 11.12744190530001, 6.2818552280047015, 9.995007809832936, 28.243501319533376, 38.814705620127754, 31.647029435118935, 32.70947563784409, 30.991921195376932, 6.594860181174256, 108.86420213007246, 45.07101557102029, 60.98827480083286, 31.611863210903437, 46.799301580000346, 78.94518839924514, 10.935846481045807, 27.962666253268633, 6.5793002140846175, 24.731641227581, 5.498223713524272, 10.757825470972305, 5.123393395537969, 100.69456829617462, 22.91797987476958, 7.282361000941294, 12.248751545591725, 76.73061600056019, 9.077009953309783, 100.77645388795202, 15.748682018763642, 17.06992353394803, 28.61984824126226, 52.121682344120245, 24.063451909691516, 87.3045988792671, 65.721823843169, 53.22537483782266, 14.078838708414871, 34.80753411312415, 37.69154268186133, 74.28878672138858, 102.98743982795074, 9.567431227274076, 35.242537904514606, 109.7195293403527, 52.15745357164024, 51.48868506586699, 19.89656706639574, 13.226169279741459, 6.761685598748875, 41.024500107875284, 39.22820781521363, 24.766838494488454, 13.63682027048474, 43.16545689539855, 15.933078979370325, 57.224950342953804, 68.44204170685295, 16.698405998872246, 8.057051185293055, 33.18822139315675, 5.843119096803531, 42.74922114615589, 14.198977752411801, 42.39123701317422, 7.265730884904778, 93.25907546012613, 25.41526438199816, 60.68754082020233, 5.69696908734082, 32.839667720767636, 11.852808087779993, 11.350085205115255, 8.151670838550281, 40.61386907581567, 155.53827779312405, 7.3792812551321, 51.77229021849979, 46.56113619340039, 5.416094583631032, 11.138665458001336, 45.58480997605211, 39.53139901552083, 111.71001274955934, 11.84341426846266, 56.131607717566084, 36.97841793504602, 50.45308453656879, 29.37672511226064, 8.660720103430851, 5.034776163674949, 9.904148483717098, 61.763439734165644, 25.159628991647942, 5.657104289494833, 49.97389810000243, 17.14856910594827, 8.945475779834432, 91.01775996915278, 18.350367218779734, 7.664396726313863, 27.452359120486836, 30.888170274207766, 138.24116737554854, 5.268481228963686, 37.66455653151413, 14.180151941413044, 28.35186448884647, 5.8030213060913045, 10.318221325424577, 48.667449725617594, 52.7789128221316, 67.41250704038445, 33.84406095082217, 5.970708861049837, 10.076335033109828, 154.67472485409888, 43.42665789588148, 6.945386694500926, 73.78751132258952, 112.2570687354072, 10.548670133671349, 51.18317719162785, 18.575334204181665, 50.55336552258422, 29.928911265955744, 40.94360646749616, 8.26610533561663, 20.305705161381308, 97.01057408947808, 43.48056139373737, 29.237221259489758, 53.39183575606558, 34.812064187028895, 126.12362624320629, 118.76831427584858, 77.51255638473536, 27.519518727437152, 50.159773879919435, 29.562650994332298, 19.593246092650446, 17.505242573695007, 11.591447665926221, 98.09040825037249, 20.197402780049387, 13.390454737636233, 58.53130936025428, 48.01099571723231, 23.15251495530685, 89.97644184438927, 8.55665422448145, 15.755948243817535, 21.99956368604417, 10.183489496763451, 43.26918836756802, 9.473714212050442, 79.22035441165879, 78.9670678892441, 14.50953784616437, 15.525172526497828, 9.409822683120751, 43.7489762288629, 69.03268214091875, 10.580070144469403, 83.37795578633111, 16.192828836025654, 57.95810337929612, 62.1795715578718, 30.357343645291703, 62.38982663184862, 6.046690440868996, 79.25022698700519, 51.24846635909817, 9.156208125656633, 9.29281343623979, 113.63321483777119, 26.824015541602815, 10.475470581286894, 18.607083388575674, 67.23851324522042, 31.153848341768192, 18.457288660521193, 51.940581284307655, 51.55854944056932, 6.327010479971485, 13.005810134375512, 59.87687060396218, 5.612522740359451, 53.97200462788765, 67.08832416894386, 11.440560765840132, 45.80867839074653, 21.00693686307385, 86.96299153124235, 37.40935843101283, 50.39451296514259, 12.796059958888403, 21.32763927949793, 77.23999297409769, 6.720257726591594, 18.791303743617256, 102.37421697874798, 58.093189349961584, 6.834864330586201, 27.953093202088372, 33.00642592426073, 77.29731474351335, 68.00773422361597, 42.89977526495055, 59.57336463685478, 18.653888492591776, 30.65910268374497, 78.60220705871927, 21.3920001292948, 17.378163750052355, 13.699717266294721, 60.23155272994919, 17.063002863942664, 53.84842821017956, 30.177699665810792, 28.9562584136097, 10.793549290690148, 29.042604323028698, 8.35266929572763, 21.101957867882756, 121.07087081967862, 18.731398223943557, 33.67471990961206, 22.06122040042593, 74.51663333700063, 21.62505179388824, 31.99766332848844, 41.346145830797084, 12.869873134321232, 22.68540614726885, 26.481405521509743, 5.672352808519459, 40.19260456930111, 92.60362040617719, 31.56336772664483, 11.213143889130057, 7.846646028260663, 60.87264387415651, 8.65361208405261, 99.12637120019416, 141.00660700307003, 143.81347191974282, 22.01227016683656, 61.52611156360314, 45.99360290995724, 41.085845964276885, 6.943714370526541, 40.172731222778275, 54.204688526419396, 22.36389487681637, 7.035610282545209, 6.311865315433702, 30.7651953531969, 110.03104454249035, 7.183149490281513, 11.542832978663192, 35.23306134943503, 8.605859339534046, 89.86972312543281, 116.67521337256339, 52.47196896410782, 14.773843885571774, 20.800066455907825, 101.77581905405451, 41.17849329563397, 19.46885149612815, 25.83751619076458, 29.335749147453342, 65.23488747303965, 20.238103828494985, 70.24223401960207, 14.977250632268749, 48.594479723115164, 66.45399878852551, 17.737610194781357, 12.557909521938019, 92.34305552570606, 39.05617291526241, 34.884497474344876, 67.49112959577954, 18.371716484725706, 35.996676161759865, 79.12198564900767, 10.40461720236919, 7.875353367388518, 12.049792889957615, 98.35066537549926, 7.906810134503246, 30.56531733472259, 21.090994720139058, 7.824470082717233, 46.51110480513467, 24.486918994552106, 14.847116854594436, 37.49926205987177, 57.36896348167218, 154.79305449423865, 98.10432889114051, 6.446262301507227, 9.855095140217777, 18.163573309004093, 22.86987696529834, 75.63447817079714, 30.32848181856147, 98.797024396555, 86.90280197935945, 10.129391734484457, 6.327019660620027, 56.33994389232092, 61.40966485226049, 13.149832778609653, 61.46366741770406, 27.937989916930807, 6.473413412160022, 55.29870878326071, 41.32307322880332, 44.61162790951061, 12.854104179577917, 19.97565067370117, 71.68824010256485, 43.95873058192335, 54.77611061696887, 36.56661322453121, 41.91465935826768, 10.72965118734169, 24.773092384286176, 48.368691110662766, 53.49165201053669, 66.65378712116386, 85.61806652096618, 13.560732494938883, 117.46606751873148, 66.46087094618889, 8.576564046016246, 8.201438836736672, 6.071485201608723, 23.574266275803076, 7.182765839361183, 27.93090198445085, 46.98173489797467, 24.855820465283507, 26.91721922302551, 16.76352872349741, 6.373618455107118, 32.90442035069411, 10.56711869425301, 23.282917267475625, 10.216901740861895, 13.376515136086853, 96.92075912685405, 55.80123003522103, 33.91220736875533, 14.73180319974923, 5.345739252435778, 69.35441690792987, 96.57367006832509, 63.59616096876005, 31.45978485910439, 15.763645730770277, 24.04384129992213, 10.959416374965238, 20.60940612941878, 19.88950871189103, 18.358243439329254, 57.022465588548485, 11.058266141032817, 5.634898984488618, 25.53396361480411, 41.09180226767394, 5.037359480463411, 7.887870772974373, 165.0592446158156, 150.74805372656365, 8.791332622248206, 20.897952876006034, 67.90914108281504, 52.78505417819043, 15.731282586497928, 42.86146605546065, 83.33470006960377, 20.108360986241287, 7.805720944109546, 129.46689795712263, 68.58808856688165, 19.497453424705284, 37.83927045248161, 12.05879856710589, 67.96063442178185, 86.95436925718208, 7.420489776834893, 58.213887759755536, 7.624676949671328, 15.707794936430343, 117.51929578236079, 10.498664212625084, 136.15443114180846, 23.249290888628202, 23.1577469974226, 24.25465701945977, 59.96779775403713, 47.4345901710969, 121.784076018466, 5.391749614759459, 28.468471087097498, 33.01846126913469, 59.89365131540148, 16.978208384274165, 14.303785098354826, 11.98273239444073, 18.25511252327447, 60.66962086303391, 5.4346994225289755, 51.71194550910892, 83.77162287046544, 58.44341973068641, 87.25733206450461, 112.83041558628702, 13.112068478414345, 64.18492901496344, 55.22251632773389, 100.42390019725154, 66.47229697376589, 35.33716154307867, 11.995276159414662, 51.346155828261345, 42.88413653610736, 36.8680892324955, 7.187994049780333, 10.850587147663838, 50.078853082961395, 11.429519496290322, 27.152887521973117, 19.318553443619443, 17.19261073402499, 24.27431396848304, 13.412238321493128, 35.14321600620775, 17.38177871319964, 58.97840414480517, 18.00409194465628, 65.17827820633448, 38.23329872713837, 79.47863068451977, 21.908082493943247, 59.26513255954782, 8.483987401101697, 22.436477639691297, 17.313977026232394, 10.384035273462533, 65.82472433482044, 17.65745939309292, 12.945581358552193, 19.41938089740519, 14.6055756917912, 105.30671016213604, 36.05517092036604, 57.6868190832037, 75.6575028852206, 155.30301464808764, 26.499428543677155, 17.374922086625865, 13.998182632665387, 94.8120288322583, 6.5526578143479774, 24.377818050098615, 23.177922124401004, 47.546086488848815, 17.197760724150697, 20.36470814049728, 12.540833129198306, 121.88513350291896, 35.709247202850186, 39.43919884653141, 16.504132276510195, 82.04826263926904, 118.76895132776605, 41.30438483493364, 11.094001787413458, 12.765609956965076, 11.512710090997022, 36.56616090549625, 25.475785320702585, 74.04805722327569, 5.470848988120411, 63.05105647080333, 56.30124804199458, 31.61761239065102, 26.04810675068945, 20.377103949540114, 31.74184078240466, 56.36357896666667, 60.74199361970739, 92.13650784015964, 25.94682768050322, 124.90789289779676, 7.0486066751691165, 14.586790821523767, 30.906012479506515, 76.38378334949714, 24.41035312937128, 40.54770607948821, 10.07604847348927, 46.397247437956025, 115.03841226485511, 27.117913254967448, 45.71446693099558, 26.250142100909475, 24.573463273297204, 16.35258438985502, 98.18768716842708, 65.57772829536273, 13.76796829977128, ...])
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);
([4549462.231517581, 4593689.9433623245, 4650214.607526681, 4917702.709097382, 4926948.381098094, 4973609.856028922, 5047477.917696394, 5074568.1742331125, 5104871.668214088, 5123674.035169264, 5184968.75, 5186592.421440609, 5199146.670592579, 5232326.73451028, 5262763.152130116, 5267668.75, 5268525.977575946, 5298320.3125, 5300021.463690512, 5306626.5625, 5310471.875, 5312323.3788085515, 5315324.411586646, 5328465.390419737, 5329503.125, 5333182.118002975, 5335963.383081515, 5345315.343725348, 5416298.355347715, 5446523.4375, 5448235.660456866, 5471998.701440564, 5477009.157640188, 5514202.62283364, 5516602.8815901615, 5517600.734002334, 5517779.21292053, 5524128.125, 5541373.851750218, 5558065.625, 5570145.169789999, 5589821.674337208, 5609695.3125, 5613460.122054195, 5619436.759724534, 5619959.375, 5620179.364714297, 5622416.262395888, 5624932.8125, 5626042.1875, 5628613.809269488, 5630721.419228069, 5657290.535577607, 5663912.5, 5676684.375, 5678201.650191748, 5679719.538179822, 5681381.25, 5681758.060298736, 5691989.0625, 5692749.553000773, 5694484.375, 5697062.031711586, 5697178.832696042, 5731340.625, 5738195.3125, 5738226.424061793, 5742856.572214041, 5744799.786972896, 5775910.153315764, 5784367.1875, 5792355.671042082, 5841614.0625, 5921232.504504481, 5922166.695720102, 5922176.311215355, 5923946.649645867, 5924344.989277698, 5929985.9375, 5930656.25, 5952959.908577955, 5953122.75569869, 5982816.489505297, 5990152.714749338, 5991262.5, 5997886.760890972, 6004512.5, 6008724.703505366, 6013977.944723866, 6013987.6151938755, 6016135.9375, 6018227.047430442, 6018807.222169702, 6039869.321466345, 6040130.656906577, 6042754.846175816, 6043419.610271244, 6046330.728651063, 6047334.826128366, 6047337.140834477, 6051191.7214378435, 6059757.83102534, 6060782.455866125, 6074123.760461402, 6079270.3125, 6080108.872939933, 6090652.106273653, 6090902.880428459, 6091092.747533244, 6091760.464043368, 6092853.437908479, 6164774.253667358, 6166557.8125, 6168434.375, 6169629.526810335, 6192320.3125, 6192336.6281978665, 6204768.598498362, 6226201.067047845, 6226588.066856292, 6236120.764518739, 6236775.0, 6239765.273031067, 6240434.375, 6241178.315771639, 6243027.372681304, 6248881.25, 6265809.472635935, 6270398.4375, 6271010.362060198, 6274118.75, 6274793.75, 6275582.8125, 6275946.875, 6277346.083738393, 6282200.0, 6287842.0103062615, 6289514.069591771, 6303548.218871133, 6308864.0625, 6308937.5, 6309437.415851816, 6311745.008343836, 6314344.777382548, 6316903.587130324, 6322134.298515648, 6323151.061454844, 6331044.903096316, 6331756.166891773, 6331832.452330251, 6339274.772452789, 6347917.1875, 6362861.756913531, 6376254.6875, 6376515.380945667, 6383375.0, 6384990.625, 6385165.588220191, 6385611.310048164, 6414194.593462745, 6422646.875, 6422928.125, 6429380.535011545, 6429445.534607395, 6431989.148603544, 6435502.048375096, 6476655.428481717, 6478151.5625, 6485155.658163736, 6489502.830267955, 6490554.374220171, 6491043.75, 6493489.4834130965, 6493566.3523684945, 6500095.3125, 6519438.212297504, 6519904.175046127, 6533673.122750039, 6540479.726987765, 6541143.382774983, 6549801.5625, 6550457.8125, 6565525.68170336, 6566625.524699087, 6566961.201440782, 6570879.6875, 6574518.75, 6577443.27240455, 6593525.96601251, 6594910.9375, 6595368.401514898, 6597218.75, 6597991.725199363, 6632644.44321696, 6636080.885951869, 6636485.206806172, 6642518.930626231, 6644053.125, 6644410.427354895, 6659182.073574879, 6659203.125, 6659999.985478256, 6702615.625, 6713100.0, 6719963.96068897, 6728216.314269967, 6728363.275353496, 6728518.75, 6749536.745729275, 6755664.580883426, 6773607.8125, 6782879.622699641, 6784712.5, 6785389.241639606, 6786134.375, 6789938.848254392, 6791359.375, 6792525.11159294, 6797429.026631192, 6812838.993044109, 6828170.43849636, 6840469.584418451, 6840554.140456703, 6849853.978074548, 6851157.771135861, 6851168.75, 6857538.434982821, 6881542.1875, 6883909.800285594, 6884747.844874001, 6886262.5, 6899495.3125, 6907705.434654228, 6911062.5, 6917300.765013268, 6917826.069145972, 6919793.75, 6925650.0, 6925653.125, 6929235.670019224, 6930403.056333995, 6933029.6875, 6934441.20886195, 6937871.894960867, 6944513.150656365, 6945954.070581737, 6950575.478460137, 6954051.904337996, 6968935.098979671, 6970962.5, 6972936.874486212, 6973888.58137196, 6981420.3125, 6985200.0, 6986914.470541361, 6999023.4375, 7001879.965802714, 7002328.125, 7003655.153677533, 7018442.1875, 7019481.314586522, 7021590.900670435, 7023111.087684728, 7023168.374313954, 7051262.825475662, 7052996.874901411, 7053532.829517388, 7055373.9507993115, 7055416.475178355, 7055835.9375, 7059756.964208997, 7059840.512092422, 7062232.614876126, 7062298.7820647955, 7064718.061611351, 7069324.866609378, 7070117.1875, 7070433.5618512165, 7071435.8872870095, 7071842.60988271, 7073221.463557519, 7073645.3125, 7074575.0, 7076446.34379742, 7087337.269263202, 7088624.962298716, 7093055.9403806245, 7095969.069178617, 7097718.930175855, 7105598.212776626, 7111751.172880534, 7121011.18613093, 7122581.408860186, 7122856.723772195, 7123909.276363497, 7127015.080491471, 7129071.636875512, 7137230.679027422, 7137284.140436524, 7140705.628894754, 7141681.0295645865, 7144458.571021703, 7149643.786912922, 7150619.844703077, 7155188.304602649, 7155296.504576088, 7156670.42939818, 7156881.350857705, 7156914.712129478, 7157279.209114646, 7160855.474861192, 7164677.173982416, 7165845.3125, 7165947.407333672, 7173531.037069545, 7176623.161888489, 7177845.070631992, 7179315.1549265105, 7179323.694192984, 7181299.088035407, 7190162.5, 7203405.435254431, 7203729.603398777, 7210414.137802876, 7213048.4375, 7214906.017266913, 7215223.4375, 7215343.187592085, 7216511.554755508, 7219113.31659598, 7223645.3125, 7229707.8125, 7255412.340800988, 7259342.458810822, 7269823.4375, 7294184.928459391, 7295580.768240322, 7300976.369544648, 7301087.006786807, 7302392.63802135, 7311741.942194575, 7318280.182870728, 7320565.625, 7325703.808654139, 7332755.463999272, 7341460.9375, 7342031.5442917, 7343880.64181311, 7344226.5625, 7344398.4375, 7344491.63064944, 7345453.125, 7346481.357022819, 7350354.086115067, 7355493.944626454, 7355610.58981963, 7365202.110636017, 7366457.8125, 7366762.5, 7374632.280447314, 7377243.472592798, 7386068.31392925, 7388540.767028426, 7396035.9375, 7405739.0625, 7408684.189830192, 7415115.488925581, 7415289.762278955, 7417724.370861244, 7417838.745320092, 7435449.028212855, 7446245.705843763, 7448365.510967106, 7454055.470821075, 7471854.290086347, 7477445.3125, 7491143.637092428, 7494670.3125, 7512621.59070787, 7528103.125, 7547371.237843896, 7593030.099365082, 7593246.188366709, 7647662.5, 7682895.429807856, 7699391.268651311, 7700058.288655381, 7710381.163328369, 7710395.937965816, 7720553.113855231, 7730598.608809425, 7748376.566144888, 7753557.8125, 7764884.536534742, 7773452.665054803, 7775401.438344423, 7778226.52879038, 7778607.585845687, 7802301.106659862, 7808845.3125, 7814957.634073754, 7817486.376166153, 7823007.8125, 7826455.972593166, 7848269.334767727, 7870943.75, 7884489.0625, 7945189.40487305, 7949295.3125, 7964029.495012556, 7965450.953684058, 7967396.797228285, 7967532.01540189, 7987548.4375, 7994157.8125, 7996641.194712072, 8010271.395743511, 8013611.983547721, 8019959.058222244, 8019976.106625919, 8039523.050771008, 8048364.0625, 8062100.699261342, 8070830.62610126, 8079278.125, 8079728.705442612, 8080931.209735776, 8082318.527101175, 8083406.25, 8086547.9223087495, 8094207.286941108, 8132686.403053582, 8134599.988814555, 8145351.276148474, 8146085.218786793, 8146364.0625, 8147526.135579261, 8154864.653566379, 8160331.86889141, 8171816.2562251035, 8187913.832232079, 8188804.6875, 8192481.25, 8193267.166604869, 8208722.832509467, 8213932.549396897, 8229336.972346395, 8237837.015475404, 8238935.342916851, 8244382.159197948, 8256501.5625, 8262610.747291049, 8285509.375, 8304315.560895225, 8320743.033978895, 8341425.557373523, 8385794.361501941, 8397499.691731801, 8404120.235909011, 8404485.9375, 8427495.010710139, 8433835.739754286, 8436827.586849391, 8439293.73437251, 8439471.532028226, 8444725.649763212, 8451452.9734744, 8452851.269683566, 8457592.11786177, 8459321.875, 8472471.86533274, 8502504.6875, 8505889.0625, 8508883.794590576, 8515970.382911688, 8518585.629271077, 8521920.327742405, 8522171.875, 8526241.286303649, 8534756.059707126, 8536904.255697936, 8543346.740216803, 8543359.945991399, 8547545.31233052, 8548603.240134705, 8552733.505276568, 8553199.985624332, 8568557.465111261, 8573210.9375, 8584481.501573712, 8586329.6875, 8593292.842177903, 8597173.379189888, 8606850.0, 8617826.5625, 8622134.375, 8639769.282342745, 8640800.0, 8647187.373685231, 8649599.970953288, 8663564.626539763, 8680570.085597845, 8687535.197746413, 8702551.312230803, 8708419.976871409, 8715717.1875, 8717291.819384338, 8730663.078691848, 8737562.740187438, 8745312.880025495, 8745313.74549626, 8772756.501479791, 8790736.134292977, 8792711.402575321, 8792732.388024254, 8804350.0, 8814899.724092884, 8824904.6875, 8856793.75, 8858063.868498929, 8863365.378627107, 8878618.75, 8938241.721794648, 8959740.75093188, 8964285.218115667, 8971283.079044398, 8972665.625, 8989440.625, 9019039.0625, 9029996.888027987, 9061707.606028683, 9061708.338724557, 9079607.803371988, 9080012.939813174, 9082187.592643103, 9083685.723537274, 9099884.268564472, 9099898.4375, 9112535.721817374, 9130737.5, 9131206.53615239, 9134316.481912775, 9156519.851687249, 9176254.6875, 9184925.386197554, 9194007.24334804, 9198095.699811693, 9200723.907196049, 9217142.709329294, 9224792.1875, 9232832.632519387, 9232901.321015868, 9251187.34508273, 9256954.6875, 9256961.356645642, 9270914.20025992, 9296768.485869344, 9323739.0625, 9325660.982630212, 9342216.52272011, 9351064.0625, 9352471.371048303, 9404253.57839839, 9413712.506999712, 9417733.562820757, 9428875.0, 9435662.273308339, 9442953.53923323, 9449707.8125, 9468882.588613123, 9495715.934987921, 9496705.98318224, 9496833.458795523, 9496898.032004733, 9514653.732680473, 9514759.375, 9521357.87979403, 9521486.690472431, 9533998.4375, 9534280.166799726, 9534477.63036507, 9538359.290103503, 9548424.11430508, 9550717.353488265, 9551014.005882049, 9552441.734982744, 9552656.103054319, 9558966.437910689, 9564387.5, 9566232.59729938, 9583748.428693566, 9584913.913282115, 9603543.162034344, 9622736.174628496, 9626575.142886905, 9668041.679879488, 9673283.95037591, 9686340.977568204, 9834922.641660286, 9857807.512379222, 9860373.4375, 9883050.847520174, 9891512.441846538, 9915112.5, 9915491.782521354, 9946576.225265719, 9957428.83507191, 9959887.5, 9980432.8125, 10005654.040969715, 10012101.523585496, 10041916.559618764, 10047787.30914343, 10047832.8125, 10052716.827455493, 10054539.0625, 10057545.3125, 10063794.052021634, 10065409.722950738, 10090515.625, 10099427.66815639, 10100398.4375, 10142981.25, 10172650.532334177, 10173635.04415433, 10174257.047974586, 10175504.379398609, 10215479.020622747, 10221378.11662129, 10233023.998524798, 10237046.592616584, 10245953.241373986, 10245967.1875, 10363312.978035767, 10368784.573438175, 10410070.191593736, 10666933.67336941, 10683023.4375, 10698411.101142338, 10774576.5625, 10810977.211308626, 11002914.109277913, 11021693.264873324, 11027251.653809564, 11047710.231437095, 11140905.590294968, 11144248.056408769, 11150954.306846956, 11164883.106149992, 11187012.5, 11204784.375, 11237652.979007563, 11248746.732974544, 11260354.27966418, 11280914.83151211, 11293904.137014037, 11293915.410273727, 11332590.579006394, 11435033.555574354, 11511648.345214479, 11562074.538386334, 11626456.391665785, 11828059.375, 11933224.330201617, 12062956.965616174, 12164733.17058447, 12220250.0, 12321819.209186899, 12338152.503753748, 12368725.0, 12757853.0974666, 12772354.6875, 12773820.3125, 12871009.566339856, 12881217.275711058, 12894829.137343148, 12945546.28733237, 12956806.25, 13000075.59295067, 13000441.481863888, 13003886.9832518, 13007965.625, 13008768.529438099, 13016597.98924498, 13020776.5625, 13021014.0625, 13021020.65971988, 13021096.18521957, 13021168.557958178, 13021168.75, 13021216.313551843, 13021247.707594322, 13021265.105895216, 13021291.346441813, 13021295.3125, 13021309.375, 13021336.989805117, 13021367.707344402, 13021435.568492929, 13021443.75, 13021450.463815184, 13021456.25, 13021476.308159648, 13021483.92935201, 13021497.187447136, 13021507.8125, 13021526.685424184, 13021532.71183977, 13021533.83049811, 13021535.1075389, 13021575.0, 13021606.993505634, 13021608.662476698, 13021629.814275121, 13021630.129208036, 13021677.877638752, 13021689.949534597, 13021692.532791002, 13021713.94991371, 13021727.570478372, 13021728.125, 13021751.5625, 13021805.56370358, 13021822.94386101, 13021852.18882195, 13021853.438402928, 13021855.322560972, 13021859.09362616, 13021871.79096147, 13021873.705713114, 13021877.6755157, 13021893.75, 13021921.875, 13021951.937322037, 13021969.590266118, 13021975.655265132, 13021984.502023017, 13021998.02057647, 13022024.663059847, 13022062.84554409, 13022124.720582828, 13022159.375, 13022197.104622083, 13022231.500285879, 13022267.1875, 13022280.246115733, 13022325.0, 13022339.533425491, 13022354.6875, 13022364.01780435, 13022379.115102185, 13022379.326568106, 13022408.441338435, 13022441.45743415, 13022479.535010664, 13022514.865654226, 13022525.739131486, 13022528.62016668, 13022567.1875, 13022589.071845628, 13022605.736130135, 13022612.478887793, 13022614.6533346, 13022709.724533316, 13022720.916716985, 13022753.830786612, 13022776.495502891, 13022789.0625, 13022835.018870525, 13022884.375, 13022925.0, 13022930.732265204, 13022964.757009963, 13022980.206900874, 13023028.563979624, 13023036.705469582, 13023053.752762334, 13023079.146223418, 13023084.947879443, 13023090.625, 13023093.50552711, 13023104.6625126, 13023118.569464128, 13023143.75, 13023154.453576323, 13023176.16085677, 13023229.422002722, 13023230.24807386, 13023233.460860511, 13023301.133808626, 13023307.8125, 13023309.356151884, 13023355.163252365, 13023365.625, 13023372.688742813, 13023403.584255261, 13023425.68109665, 13023437.5, 13023458.536864532, 13023475.936614545, 13023498.8871635, 13023499.912187602, 13023504.6875, 13023513.260424213, 13023513.452417804, 13023530.56813305, 13023574.333123218, 13023587.5, 13023600.042874146, 13023618.327128744, 13023649.405846266, 13023651.5625, 13023652.8544806, 13023657.519606046, 13023688.52523623, 13023691.140666537, 13023693.481733656, 13023705.955136165, 13023725.337008351, 13023750.0, 13023763.227771858, 13023764.573366033, 13023770.147955468, 13023777.963706557, 13023825.012637913, 13023826.790724998, 13023832.781771913, 13023832.8125, 13023833.663604314, 13023845.225630516, 13023848.205293195, 13023867.985812156, 13023871.397636678, 13023882.421585185, 13023929.464635003, 13023938.389542926, 13023944.830824811, 13023947.377940109, 13023971.875, 13023987.5, 13023999.943871222, 13024018.86098738, 13024025.0, 13024034.375, 13024051.5625, 13024059.837883895, 13024070.512678737, 13024071.626338977, 13024071.764597207, 13024072.844103245, 13024102.4476733, 13024106.927987803, 13024110.379043087, 13024115.580115076, 13024123.808414966, 13024124.82785813, 13024125.0, 13024126.312709868, 13024152.2863972, 13024153.187372789, 13024157.473755665, 13024161.78385277, 13024190.178163039, 13024193.75, 13024194.689053172, 13024223.630344918, 13024233.337068884, 13024234.375, 13024249.425786423, 13024252.089662302, 13024253.290392453, 13024265.625, 13024280.523612795, 13024302.044141974, 13024302.086362045, 13024309.375, 13024320.937948354, 13024330.714789307, 13024334.375, 13024334.433889939, 13024336.124996236, 13024337.5, 13024357.368977034, 13024362.5, 13024371.534702396, 13024372.752027806, 13024401.300951663, 13024404.6875, 13024409.375, 13024429.6875, 13024437.322981143, 13024445.309630595, 13024448.4375, 13024451.524226863, 13024464.510763517, 13024473.259480607, 13024478.61085043, 13024478.7873953, 13024484.375, 13024486.853834117, 13024487.5, 13024500.018638628, 13024504.599992571, 13024510.49835931, 13024513.362073978, 13024527.54496575, 13024531.25, 13024539.988261089, 13024541.614656303, 13024554.612068584, 13024559.375, 13024562.99217076, 13024569.842037024, 13024571.875, 13024578.125, 13024584.622231446, 13024585.752665281, 13024593.75, 13024595.497374404, 13024603.051627737, 13024607.062872699, 13024612.987189395, 13024615.148638176, 13024618.28117235, 13024629.6875, 13024636.457971364, 13024646.783344146, 13024656.873459756, 13024670.3125, 13024679.6875, 13024697.79605732, 13024722.978117561, 13024746.551356923, 13024748.793037405, 13024751.152140176, 13024753.633653983, 13024763.528216314, 13024764.0625, 13024764.629781723, 13024783.729942452, 13024789.995307133, 13024793.658980671, 13024797.217120219, 13024808.13911234, 13024820.3125, 13024825.0, 13024828.125, 13024831.37588574, 13024836.456781887, 13024840.441210829, 13024843.75, 13024855.093390297, 13024860.938794471, 13024869.091056723, 13024885.9375, 13024894.238108441, 13024897.753814787, 13024911.402889287, 13024921.255661411, 13024926.5625, 13024943.278143467, 13024945.669822412, 13024965.54709439, 13024971.470771533, 13024973.4375, 13024976.540829025, 13024988.344263675, 13025006.483098682, 13025017.62760396, 13025038.88652711, 13025064.0625, 13025076.772413831, 13025092.1875, 13025118.75, 13025127.808332631, 13025132.179253284, 13025139.220564129, 13025142.1875, 13025143.558325728, 13025181.25, 13025204.888592733, 13025232.444924362, 13025237.233031578, 13025263.77794272, 13025274.191732058, 13025321.380262926, 13025340.625, 13025341.937441796, 13025342.124370148, 13025355.453903629, 13025356.430506816, 13025362.643334132, 13025398.476354422, 13025399.492404807, 13025399.873351738, 13025403.369607132, 13025421.813347684, 13025425.0, 13025454.6875, 13025457.669729346, ...], [10.732474068313612, 46.31858934724201, 60.66423195900114, 5.591442431508269, 5.289348215906676, 148.08804986201906, 25.01171559424117, 144.26677410746436, 60.52092736858475, 17.842744719845864, 55.707159118304176, 107.91136880582636, 24.69811405754586, 7.666658637771604, 40.04350447891903, 48.16897066916447, 10.742734532193928, 38.63557762285944, 79.25522591627818, 68.37917328367251, 76.5336172788512, 121.92486122472187, 41.821813949705245, 84.6557273614929, 58.9128926502262, 31.12354381184717, 12.860128602692848, 55.148460708257275, 11.001680386423258, 127.01865413619885, 5.158959260390451, 16.05296114352499, 24.152053398583192, 32.41502214388636, 24.501557957872954, 10.04010045178781, 35.33192888191934, 61.70801646556303, 92.94969054954208, 92.4270087446789, 42.67875149827829, 25.108369538925395, 52.8802805676937, 18.834058910126473, 118.70214893546895, 42.33447994187388, 79.05479373122189, 6.351233670904469, 51.23896253030064, 38.980394060063354, 7.514146282706736, 152.39892290357153, 95.56728490970895, 32.94472989636952, 44.28957322718266, 29.95763134736619, 79.82440598605231, 58.980333961144304, 57.59065327023331, 51.59065246857713, 8.0635430845512, 32.16615490596109, 110.9978524799529, 28.723586151719253, 77.73239078606832, 58.464932749413876, 5.337200185580898, 67.67630906912072, 24.929131564569992, 39.17141545870998, 91.07501435785, 13.11487853881491, 241.2775339902282, 13.884572386237174, 38.74174621981972, 34.576825133345565, 56.44777628457555, 13.83775755306637, 78.04622244812194, 151.81388681416522, 46.43048177373853, 6.385272720562301, 222.6158740382379, 10.541782563845306, 48.39492459915216, 33.03579506165211, 36.42571996892492, 13.920238880927577, 25.410815406357322, 11.312665976987466, 78.29963388601878, 11.980909949476853, 5.889593494548588, 17.68267235416457, 20.612128788204373, 146.17199482050535, 19.68800873323101, 21.28274435218897, 13.5734127349961, 6.432225201365399, 14.772202572330391, 21.284566919272827, 10.612549929011932, 16.33413427687928, 80.30081446200217, 115.9661717624256, 25.655185828603976, 92.19264982590238, 17.614010916670573, 58.74922979233449, 51.26886632307086, 12.698494740671494, 80.95344104553753, 68.63583403411, 25.709803408015624, 61.941973737428086, 28.835228497872222, 60.32340044093954, 260.9579844600056, 7.278884012739164, 21.43506803277079, 100.06128519747622, 23.108858311616913, 42.59800529026617, 6.517418041324824, 21.823920056324905, 113.60930809979021, 54.00118951467742, 48.34283947633812, 13.124076106417851, 55.58203974997021, 74.86168384385563, 84.95693652807418, 96.43739183936444, 19.008395091204566, 85.04123204714631, 25.457312413089518, 6.268094777285807, 100.57144771378776, 87.52957343782697, 69.20207949148276, 97.92506183143945, 66.38881861317502, 57.520606510246296, 6.562059374052484, 59.367589105161535, 21.482680577588884, 47.266787617129, 36.13740405240278, 23.011424894159582, 35.122525868369635, 36.28748542370433, 127.71341751291234, 28.68797216449629, 5.521351901816099, 35.58019204518771, 33.449401063627356, 88.12834886086901, 172.39433281213434, 12.763681817532106, 41.52126803463338, 86.49189019094786, 19.58677075535939, 32.94842374957278, 253.56502303589355, 58.51224041315904, 24.51851721681577, 58.20954079976188, 8.87654281350118, 12.206088174708292, 96.24852321496465, 67.717625059697, 120.00146721746557, 85.75342461521059, 99.84740525894904, 116.68909305162782, 38.858462203901034, 6.70225496218854, 71.70245395258166, 73.83948035467174, 85.7564203419449, 138.02912339740286, 46.823580561791424, 6.872983575889336, 87.06592934511015, 59.11506744861978, 30.388548994177224, 80.94805477302603, 42.173445324964135, 50.217087066278786, 219.74241649815258, 40.88529967776435, 21.877599623965562, 32.417216812740406, 22.965697470707347, 41.24562058774306, 15.677768394234212, 50.18545597759691, 43.58157518894644, 25.859885777752062, 43.02545493174256, 11.105083995275622, 39.95015835947324, 41.43171761539715, 127.2916043231551, 110.14637061344371, 10.086058021880401, 39.78294511349788, 70.30209477653558, 12.04774192802588, 89.21122087062099, 8.252604523675124, 33.654164781064566, 10.962843967306796, 128.2887221230981, 9.156586573907811, 79.6386522532169, 15.384621337411202, 20.025609670897982, 147.49090862902602, 9.440262017770747, 28.311435791404328, 5.438766690938147, 37.80579976911481, 27.731929752218168, 73.39711071418373, 7.3910191390467315, 57.284887100382555, 40.75262234852893, 20.61632611777774, 50.434719077150234, 54.32351321064832, 28.5564576321336, 33.82332370234456, 30.273234578438235, 10.43519618537286, 31.120070842787793, 108.10140894206033, 50.7780081359895, 78.96574028298078, 27.236222062965425, 213.9572523235013, 9.87923713329286, 15.018140652268398, 65.23688880379225, 37.54982445765381, 101.28373813510973, 263.7286807717623, 6.166767844203909, 43.30448586639295, 46.127288503476905, 6.208266633656744, 147.93930284458574, 68.00159558314392, 16.764051233657955, 84.81181031958724, 176.26926876911028, 69.0253454387774, 151.51764679312063, 59.62838398691145, 30.407739445458382, 80.69191523247517, 69.07363001424156, 191.9681965185133, 5.475911908713952, 76.28984635067357, 11.154410663900615, 40.72025539421219, 33.127335634611434, 46.309366510761286, 12.463665555524551, 26.476067139118825, 14.238212766003755, 7.215071963216606, 12.838099066790974, 5.127661582753802, 78.98027450190149, 18.850439142007726, 219.71543228369356, 75.04450637239137, 26.690771339022902, 83.66667602218138, 142.6120162034191, 34.867091313669945, 50.50301931026583, 71.21317568970372, 32.11904889322399, 27.053345012226288, 132.81673400536036, 24.762401802828236, 9.022341966417619, 83.12282277025373, 11.3854388462241, 19.953214402790017, 26.71569791126492, 52.40472890594187, 24.574657889653444, 29.311784423989153, 5.333947788031839, 15.623339006067923, 70.01738577568199, 113.06437865677117, 15.698451788998389, 8.053777456127486, 19.255905690889495, 24.84711983376662, 33.474473913349144, 15.340390689817262, 5.863663508402647, 7.438916851578662, 10.099542422848225, 7.840460141969855, 33.58517692924433, 12.075958083556294, 9.157622356739637, 6.709702620951186, 53.71606794462002, 13.408761847719322, 16.341987128909043, 84.27739366952869, 83.9832695623203, 110.89989283854842, 25.809747823321914, 51.54375124891947, 74.82044984570001, 14.12291176631497, 99.86337382543049, 13.158314530908577, 76.97094772482241, 12.699510584912806, 42.967758631953956, 45.043156697964974, 39.99173237306872, 28.292000158764218, 115.58630568660303, 17.57485062049217, 21.67700762485819, 33.96363226468458, 21.561070475012226, 11.913365750553158, 56.23364033906938, 64.49580122072946, 103.74381960820904, 24.018431601627103, 19.046875792481785, 46.07615459320982, 16.195886754549804, 51.63426065036544, 76.614602320271, 107.9063455222925, 5.032283200418015, 144.60689710166722, 116.69836290639148, 106.92258793545398, 6.8029943865658655, 13.76351446578489, 61.59797876152566, 133.31395411333932, 52.42962592023373, 5.8943728125854635, 24.043687959428706, 72.73791080950528, 22.020938220082545, 59.70696059662619, 32.75152255591502, 96.37307184163728, 171.0062699621776, 10.002616669807198, 30.78260331624501, 5.6868648667305175, 23.634457227446255, 27.59451335778469, 116.00591988718318, 19.097075463374342, 10.55858009016135, 41.63193639398023, 21.31159111048712, 43.94852216049715, 62.0090631261444, 65.32600467680047, 12.965474444816518, 5.303981303960347, 19.813586555521205, 29.244042000036213, 7.152633574106436, 9.94219704455891, 17.131100752309028, 26.920638665925523, 58.113634514783755, 9.321997387519572, 47.30442274862668, 56.76300947697195, 51.7142978122819, 22.688675615096933, 38.10003672713155, 92.65387866394474, 42.975151632902296, 14.142682267407764, 21.94522728338527, 79.49001603035568, 14.30241544770365, 34.832055690115496, 69.91193850633954, 24.043692803427554, 18.194077979559385, 32.02581266521626, 38.086807335965766, 82.18144676473406, 71.2882232131423, 12.149497737942387, 49.09477562283341, 11.008282265854994, 77.91676367352181, 58.58283728484377, 100.23556960597048, 17.67209098779316, 75.45981534146433, 49.328782156373435, 10.666209759992794, 10.482810228040186, 8.0921351903046, 49.74687429859289, 44.340506391542654, 5.7692156331647535, 77.50937592930188, 5.99159981472991, 155.83783727206946, 24.78823269312853, 80.07600572085227, 8.930723737147922, 7.423604174005621, 7.24945622850736, 14.07115979752564, 16.864026901382267, 19.557469135093392, 89.81002762499617, 22.254455510375365, 5.647602199804825, 23.670990642851844, 8.651190506724959, 71.58371160230928, 74.5877464182958, 37.819730390473126, 44.5555833773374, 108.34706152303949, 57.580889459794584, 21.221606080041425, 55.77875120703277, 20.598765936570224, 80.14869709693649, 42.52500605970647, 25.26236482955847, 42.625417259640564, 39.2740109878531, 19.57863588474909, 62.91381190801289, 99.80987383758992, 76.46043562232337, 56.30222444652009, 38.046055907680646, 23.72790555678414, 60.17256174430371, 32.2982454204373, 19.373356415178876, 65.57437277605189, 12.321919209858025, 25.85262580601756, 263.7221685415835, 27.218956857878005, 30.47564607803242, 174.20825392436896, 87.46224827974724, 79.74774288784705, 20.726800124563823, 8.324166521559421, 136.38957600579533, 21.302434598689914, 31.206436589665906, 18.247948990592498, 25.261119475220216, 39.749673607456025, 43.965586635426796, 13.442771163894712, 11.12744190530001, 6.2818552280047015, 9.995007809832936, 28.243501319533376, 38.814705620127754, 31.647029435118935, 32.70947563784409, 30.991921195376932, 6.594860181174256, 108.86420213007246, 45.07101557102029, 60.98827480083286, 31.611863210903437, 46.799301580000346, 78.94518839924514, 10.935846481045807, 27.962666253268633, 6.5793002140846175, 24.731641227581, 5.498223713524272, 10.757825470972305, 5.123393395537969, 100.69456829617462, 22.91797987476958, 7.282361000941294, 12.248751545591725, 76.73061600056019, 9.077009953309783, 100.77645388795202, 15.748682018763642, 17.06992353394803, 28.61984824126226, 52.121682344120245, 24.063451909691516, 87.3045988792671, 65.721823843169, 53.22537483782266, 14.078838708414871, 34.80753411312415, 37.69154268186133, 74.28878672138858, 102.98743982795074, 9.567431227274076, 35.242537904514606, 109.7195293403527, 52.15745357164024, 51.48868506586699, 19.89656706639574, 13.226169279741459, 6.761685598748875, 41.024500107875284, 39.22820781521363, 24.766838494488454, 13.63682027048474, 43.16545689539855, 15.933078979370325, 57.224950342953804, 68.44204170685295, 16.698405998872246, 8.057051185293055, 33.18822139315675, 5.843119096803531, 42.74922114615589, 14.198977752411801, 42.39123701317422, 7.265730884904778, 93.25907546012613, 25.41526438199816, 60.68754082020233, 5.69696908734082, 32.839667720767636, 11.852808087779993, 11.350085205115255, 8.151670838550281, 40.61386907581567, 155.53827779312405, 7.3792812551321, 51.77229021849979, 46.56113619340039, 5.416094583631032, 11.138665458001336, 45.58480997605211, 39.53139901552083, 111.71001274955934, 11.84341426846266, 56.131607717566084, 36.97841793504602, 50.45308453656879, 29.37672511226064, 8.660720103430851, 5.034776163674949, 9.904148483717098, 61.763439734165644, 25.159628991647942, 5.657104289494833, 49.97389810000243, 17.14856910594827, 8.945475779834432, 91.01775996915278, 18.350367218779734, 7.664396726313863, 27.452359120486836, 30.888170274207766, 138.24116737554854, 5.268481228963686, 37.66455653151413, 14.180151941413044, 28.35186448884647, 5.8030213060913045, 10.318221325424577, 48.667449725617594, 52.7789128221316, 67.41250704038445, 33.84406095082217, 5.970708861049837, 10.076335033109828, 154.67472485409888, 43.42665789588148, 6.945386694500926, 73.78751132258952, 112.2570687354072, 10.548670133671349, 51.18317719162785, 18.575334204181665, 50.55336552258422, 29.928911265955744, 40.94360646749616, 8.26610533561663, 20.305705161381308, 97.01057408947808, 43.48056139373737, 29.237221259489758, 53.39183575606558, 34.812064187028895, 126.12362624320629, 118.76831427584858, 77.51255638473536, 27.519518727437152, 50.159773879919435, 29.562650994332298, 19.593246092650446, 17.505242573695007, 11.591447665926221, 98.09040825037249, 20.197402780049387, 13.390454737636233, 58.53130936025428, 48.01099571723231, 23.15251495530685, 89.97644184438927, 8.55665422448145, 15.755948243817535, 21.99956368604417, 10.183489496763451, 43.26918836756802, 9.473714212050442, 79.22035441165879, 78.9670678892441, 14.50953784616437, 15.525172526497828, 9.409822683120751, 43.7489762288629, 69.03268214091875, 10.580070144469403, 83.37795578633111, 16.192828836025654, 57.95810337929612, 62.1795715578718, 30.357343645291703, 62.38982663184862, 6.046690440868996, 79.25022698700519, 51.24846635909817, 9.156208125656633, 9.29281343623979, 113.63321483777119, 26.824015541602815, 10.475470581286894, 18.607083388575674, 67.23851324522042, 31.153848341768192, 18.457288660521193, 51.940581284307655, 51.55854944056932, 6.327010479971485, 13.005810134375512, 59.87687060396218, 5.612522740359451, 53.97200462788765, 67.08832416894386, 11.440560765840132, 45.80867839074653, 21.00693686307385, 86.96299153124235, 37.40935843101283, 50.39451296514259, 12.796059958888403, 21.32763927949793, 77.23999297409769, 6.720257726591594, 18.791303743617256, 102.37421697874798, 58.093189349961584, 6.834864330586201, 27.953093202088372, 33.00642592426073, 77.29731474351335, 68.00773422361597, 42.89977526495055, 59.57336463685478, 18.653888492591776, 30.65910268374497, 78.60220705871927, 21.3920001292948, 17.378163750052355, 13.699717266294721, 60.23155272994919, 17.063002863942664, 53.84842821017956, 30.177699665810792, 28.9562584136097, 10.793549290690148, 29.042604323028698, 8.35266929572763, 21.101957867882756, 121.07087081967862, 18.731398223943557, 33.67471990961206, 22.06122040042593, 74.51663333700063, 21.62505179388824, 31.99766332848844, 41.346145830797084, 12.869873134321232, 22.68540614726885, 26.481405521509743, 5.672352808519459, 40.19260456930111, 92.60362040617719, 31.56336772664483, 11.213143889130057, 7.846646028260663, 60.87264387415651, 8.65361208405261, 99.12637120019416, 141.00660700307003, 143.81347191974282, 22.01227016683656, 61.52611156360314, 45.99360290995724, 41.085845964276885, 6.943714370526541, 40.172731222778275, 54.204688526419396, 22.36389487681637, 7.035610282545209, 6.311865315433702, 30.7651953531969, 110.03104454249035, 7.183149490281513, 11.542832978663192, 35.23306134943503, 8.605859339534046, 89.86972312543281, 116.67521337256339, 52.47196896410782, 14.773843885571774, 20.800066455907825, 101.77581905405451, 41.17849329563397, 19.46885149612815, 25.83751619076458, 29.335749147453342, 65.23488747303965, 20.238103828494985, 70.24223401960207, 14.977250632268749, 48.594479723115164, 66.45399878852551, 17.737610194781357, 12.557909521938019, 92.34305552570606, 39.05617291526241, 34.884497474344876, 67.49112959577954, 18.371716484725706, 35.996676161759865, 79.12198564900767, 10.40461720236919, 7.875353367388518, 12.049792889957615, 98.35066537549926, 7.906810134503246, 30.56531733472259, 21.090994720139058, 7.824470082717233, 46.51110480513467, 24.486918994552106, 14.847116854594436, 37.49926205987177, 57.36896348167218, 154.79305449423865, 98.10432889114051, 6.446262301507227, 9.855095140217777, 18.163573309004093, 22.86987696529834, 75.63447817079714, 30.32848181856147, 98.797024396555, 86.90280197935945, 10.129391734484457, 6.327019660620027, 56.33994389232092, 61.40966485226049, 13.149832778609653, 61.46366741770406, 27.937989916930807, 6.473413412160022, 55.29870878326071, 41.32307322880332, 44.61162790951061, 12.854104179577917, 19.97565067370117, 71.68824010256485, 43.95873058192335, 54.77611061696887, 36.56661322453121, 41.91465935826768, 10.72965118734169, 24.773092384286176, 48.368691110662766, 53.49165201053669, 66.65378712116386, 85.61806652096618, 13.560732494938883, 117.46606751873148, 66.46087094618889, 8.576564046016246, 8.201438836736672, 6.071485201608723, 23.574266275803076, 7.182765839361183, 27.93090198445085, 46.98173489797467, 24.855820465283507, 26.91721922302551, 16.76352872349741, 6.373618455107118, 32.90442035069411, 10.56711869425301, 23.282917267475625, 10.216901740861895, 13.376515136086853, 96.92075912685405, 55.80123003522103, 33.91220736875533, 14.73180319974923, 5.345739252435778, 69.35441690792987, 96.57367006832509, 63.59616096876005, 31.45978485910439, 15.763645730770277, 24.04384129992213, 10.959416374965238, 20.60940612941878, 19.88950871189103, 18.358243439329254, 57.022465588548485, 11.058266141032817, 5.634898984488618, 25.53396361480411, 41.09180226767394, 5.037359480463411, 7.887870772974373, 165.0592446158156, 150.74805372656365, 8.791332622248206, 20.897952876006034, 67.90914108281504, 52.78505417819043, 15.731282586497928, 42.86146605546065, 83.33470006960377, 20.108360986241287, 7.805720944109546, 129.46689795712263, 68.58808856688165, 19.497453424705284, 37.83927045248161, 12.05879856710589, 67.96063442178185, 86.95436925718208, 7.420489776834893, 58.213887759755536, 7.624676949671328, 15.707794936430343, 117.51929578236079, 10.498664212625084, 136.15443114180846, 23.249290888628202, 23.1577469974226, 24.25465701945977, 59.96779775403713, 47.4345901710969, 121.784076018466, 5.391749614759459, 28.468471087097498, 33.01846126913469, 59.89365131540148, 16.978208384274165, 14.303785098354826, 11.98273239444073, 18.25511252327447, 60.66962086303391, 5.4346994225289755, 51.71194550910892, 83.77162287046544, 58.44341973068641, 87.25733206450461, 112.83041558628702, 13.112068478414345, 64.18492901496344, 55.22251632773389, 100.42390019725154, 66.47229697376589, 35.33716154307867, 11.995276159414662, 51.346155828261345, 42.88413653610736, 36.8680892324955, 7.187994049780333, 10.850587147663838, 50.078853082961395, 11.429519496290322, 27.152887521973117, 19.318553443619443, 17.19261073402499, 24.27431396848304, 13.412238321493128, 35.14321600620775, 17.38177871319964, 58.97840414480517, 18.00409194465628, 65.17827820633448, 38.23329872713837, 79.47863068451977, 21.908082493943247, 59.26513255954782, 8.483987401101697, 22.436477639691297, 17.313977026232394, 10.384035273462533, 65.82472433482044, 17.65745939309292, 12.945581358552193, 19.41938089740519, 14.6055756917912, 105.30671016213604, 36.05517092036604, 57.6868190832037, 75.6575028852206, 155.30301464808764, 26.499428543677155, 17.374922086625865, 13.998182632665387, 94.8120288322583, 6.5526578143479774, 24.377818050098615, 23.177922124401004, 47.546086488848815, 17.197760724150697, 20.36470814049728, 12.540833129198306, 121.88513350291896, 35.709247202850186, 39.43919884653141, 16.504132276510195, 82.04826263926904, 118.76895132776605, 41.30438483493364, 11.094001787413458, 12.765609956965076, 11.512710090997022, 36.56616090549625, 25.475785320702585, 74.04805722327569, 5.470848988120411, 63.05105647080333, 56.30124804199458, 31.61761239065102, 26.04810675068945, 20.377103949540114, 31.74184078240466, 56.36357896666667, 60.74199361970739, 92.13650784015964, 25.94682768050322, 124.90789289779676, 7.0486066751691165, 14.586790821523767, 30.906012479506515, 76.38378334949714, 24.41035312937128, 40.54770607948821, 10.07604847348927, 46.397247437956025, 115.03841226485511, 27.117913254967448, 45.71446693099558, 26.250142100909475, 24.573463273297204, 16.35258438985502, 98.18768716842708, 65.57772829536273, 13.76796829977128, ...])
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)