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 = 45048
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);
([3539778.536386107, 3661357.945768158, 4115639.2097537094, 4147541.952974952, 4150101.1575901117, 4354250.0, 4357050.2169117, 4357914.066059007, 4376636.911270225, 4468076.5625, 4474570.366619772, 4480627.996165534, 4520155.354350095, 4533534.380541588, 4562048.332319547, 4562476.367584435, 4662025.0, 4689315.22794003, 4722886.379759597, 4723680.362204162, 4777150.7230678825, 4795157.390688642, 4918553.125, 5109195.3125, 5147866.065940254, 5230702.098969777, 5250373.959560265, 5287277.670784653, 5658215.9477960495, 5661102.280717508, 5687872.30974584, 5708824.488980521, 5709873.769470542, 5714653.203858462, 5719330.821612824, 5792860.108104961, 5814510.8318348145, 5827874.105189682, 5836834.340745614, 5846184.099905741, 5875142.361160978, 5946044.733959996, 5951665.030913319, 5978346.352789641, 5979847.743973895, 5982678.06910465, 5983636.36453316, 5989206.869153452, 5990832.8125, 6018755.304463889, 6048287.27636508, 6055463.104953362, 6061840.601450949, 6072048.33662948, 6072496.875, 6092139.271835458, 6096342.226326899, 6097220.035093259, 6097854.677258167, 6098660.9375, 6099775.140796718, 6100310.9375, 6102445.3125, 6102505.162199334, 6103977.029544883, 6105878.112325953, 6108253.717749009, 6127721.571107787, 6150598.137289216, 6154101.122051812, 6160721.633134469, 6161709.662190163, 6162760.041992796, 6164370.3125, 6165054.178770381, 6165478.125, 6166979.314840447, 6169800.780156006, 6169885.62572173, 6170085.537397828, 6186770.33751065, 6190673.776358312, 6204655.518603294, 6205451.5625, 6208192.1875, 6209352.41977897, 6209362.537204631, 6211631.975789137, 6212031.078057898, 6218279.159568734, 6226872.611079494, 6228030.061739121, 6228056.406107498, 6229504.17009256, 6234238.514014305, 6235038.647299248, 6235229.6875, 6235622.9985291, 6235637.05256002, 6235653.118908981, 6235720.3125, 6235810.473036311, 6236138.085615595, 6236229.6875, 6236595.005341196, 6236621.875, 6236663.304235619, 6237239.233779741, 6237324.61618508, 6237362.078041025, 6237368.496395576, 6237446.4150915155, 6237540.625, 6237729.6875, 6237763.50626194, 6237798.4375, 6238225.0, 6238432.8125, 6238542.1875, 6238761.598571938, 6240460.418846712, 6240870.202518282, 6241836.65466003, 6242961.938047748, 6243954.20531951, 6244279.706643387, 6244482.979785518, 6244604.6875, 6244638.825984603, 6245207.672316215, 6246117.066229051, 6246537.5, 6247725.615504247, 6248073.236944372, 6248281.024330172, 6250171.539356128, 6253480.249050032, 6256007.757131046, 6260844.827412016, 6261237.5, 6263164.0625, 6264276.5625, 6264767.1875, 6267971.837793577, 6270759.375, 6270849.860514462, 6272690.50789202, 6272702.36374507, 6277156.25, 6282343.833484631, 6283220.3125, 6283847.557491133, 6287642.1875, 6289847.465532671, 6290270.419364419, 6291730.146095322, 6292840.625, 6294911.265949417, 6294934.605981716, 6294939.709817506, 6294971.863515729, 6296379.682339048, 6296475.0520207845, 6296668.75, 6296745.049805769, 6297562.614841588, 6298046.5176169425, 6298174.4812706495, 6299196.875, 6299468.630197876, 6299991.106609474, 6300093.259533928, 6301452.623605535, 6303077.726431778, 6304468.119007458, 6305214.0625, 6307025.522227663, 6307083.548430009, 6307462.452080242, 6307577.012618704, 6307954.564069717, 6308923.4375, 6309715.833865127, 6309820.3125, 6310870.3125, 6311025.690897467, 6311944.3019726025, 6315623.0115834735, 6316124.833118008, 6320567.036351087, 6320935.19256093, 6322388.452070928, 6324754.550921181, 6326345.3125, 6326429.586640011, 6331171.875, 6331184.588432667, 6331184.778032595, 6335079.707822147, 6335743.920061094, 6335829.173670611, 6340421.047568046, 6342218.716557727, 6343440.417664489, 6344151.5625, 6347357.647044913, 6347400.886576329, 6348233.686676089, 6349946.272244873, 6350045.3125, 6350085.9375, 6350618.75, 6355297.171952958, 6359700.0, 6360365.51138834, 6360409.833325416, 6360617.414967049, 6360885.9375, 6360933.136756044, 6361243.75, 6362186.45484569, 6363008.047386149, 6363433.987079046, 6363866.75855865, 6364899.527149891, 6365819.767986428, 6367618.39203052, 6367806.001907528, 6368137.5, 6370127.975540411, 6370841.834094245, 6371961.533042315, 6373317.524301483, 6374023.267050095, 6374842.876418261, 6375582.2913995655, 6375596.324885239, 6379922.921522068, 6380596.875, 6381818.75, 6382660.245010937, 6383279.074242779, 6384535.771179144, 6384754.036314814, 6385146.875, 6385503.11318749, 6385940.203348669, 6386807.8125, 6387025.454101893, 6388770.822282748, 6390548.078858478, 6392147.975444502, 6393346.7280846685, 6396179.779457355, 6396184.6171545265, 6396212.801738673, 6396462.750820189, 6396905.126197258, 6398018.75, 6398917.475808748, 6399044.277021295, 6402001.280956957, 6402131.25, 6402364.714992333, 6402389.229037161, 6402509.10973037, 6402766.8802164765, 6403008.7393472, 6403801.534732215, 6403971.073178901, 6404004.418698703, 6404520.484884166, 6404524.387467529, 6404781.051489334, 6404821.578461101, 6404971.875, 6404988.480182381, 6405091.957514065, 6405114.736380001, 6405263.778518288, 6405335.209991075, 6405351.5625, 6405375.041410642, 6405393.75, 6405407.930116407, 6405450.145748611, 6405498.007357331, 6405541.185498026, 6405585.811541076, 6405647.897248764, 6405771.875, 6405833.706783134, 6405839.0625, 6405938.1529861735, 6406005.08332216, 6406008.3069653865, 6406127.198425802, 6406243.278234733, 6406245.3125, 6406408.066281113, 6406505.366881971, 6406565.387469511, 6406659.208307995, 6407107.456031142, 6407320.55083831, 6407336.808254216, 6407382.8125, 6407546.370513405, 6408555.611479181, 6409415.783039974, 6409423.944861301, 6409712.5, 6410291.644551609, 6410469.865677156, 6410527.220640531, 6410684.338832799, 6410844.463553391, 6410858.2448040955, 6410918.836897588, 6410925.6163333785, 6411085.0650725, 6411268.75, 6411404.6875, 6411494.09640379, 6411544.533604545, 6411588.811056664, 6412058.685749717, 6412501.5625, 6412715.570646109, 6412857.8125, 6412907.519295801, 6413062.27354087, 6413082.701502758, 6413165.681752766, 6413283.972368319, 6413810.355198695, 6413842.651011503, 6414003.183705356, 6414884.1877381895, 6415117.802850736, 6415811.6132588, 6416451.5625, 6416673.4607468555, 6418707.8125, 6424095.3125, 6424750.901880839, 6425059.290636691, 6425565.625, 6425699.686414393, 6426702.636158037, 6427142.035308814, 6427145.855192085, 6427796.875, 6428199.590378668, 6428646.875, 6429886.241832563, 6429902.181128054, 6431475.542672086, 6431690.625, 6431692.1875, 6432291.691422589, 6433672.806866431, 6433692.1875, 6434011.625417257, 6434079.987639463, 6434311.131394606, 6435061.801925382, 6435300.0, 6435387.067968567, 6435422.244611522, 6435516.63778631, 6436125.0, 6436153.711563882, 6436219.7048767675, 6436547.418993944, 6436606.25, 6436632.724496107, 6436815.625, 6436955.10759604, 6436956.737692694, 6436999.265705882, 6437065.219773367, 6437474.299327252, 6437776.561063347, 6437808.411606906, 6438190.681829577, 6438313.2501770975, 6438362.287071551, 6438433.129844995, 6438512.114677454, 6438723.479486301, 6439162.517621434, 6439354.995334137, 6439401.29147245, 6439421.269455, 6439431.96755397, 6439641.748573844, 6439960.9375, 6440192.13992333, 6440459.036927911, 6440619.061527559, 6441265.625, 6441555.822162612, 6441839.839794504, 6441851.239372349, 6441934.831848603, 6442209.318471852, 6442564.040164109, 6442766.912885227, 6442787.506654441, 6442820.943630814, 6443490.189608863, 6443579.63037116, 6443983.314378601, 6444340.874373502, 6444869.108912613, 6445012.971489098, 6445157.113625412, 6445182.8125, 6445640.332436939, 6447206.25, 6447216.941492192, 6447236.558685509, 6447476.816471453, 6447590.325718688, 6448052.594623512, 6448607.228131148, 6449123.275854126, 6449559.936050644, 6449626.497888132, 6449714.406402558, 6449789.0625, 6449911.53137187, 6450632.103866002, 6451296.028677378, 6453014.0625, 6455767.081051656, 6456631.25, 6458610.795624925, 6458939.0625, 6459704.276729396, 6462285.9375, 6462875.0, 6464295.163037328, 6465298.29297317, 6465571.222081672, 6466176.132011115, 6466243.49011176, 6466543.504646865, 6466564.60918167, 6468595.612494965, 6470909.674342148, 6471447.762085648, 6473187.5, 6481218.766092444, 6482026.5625, 6482248.737505247, 6482765.300276809, 6482848.664681033, 6482957.8125, 6483280.541307443, 6484427.822887829, 6485786.9924550755, 6486276.410914542, 6486959.379327036, 6486979.6875, 6487297.074245951, 6487513.600406821, 6488473.4375, 6489342.1875, 6491602.515202331, 6492304.026473141, 6492313.063059715, 6493916.984856621, 6494038.5377611965, 6494823.306044107, 6497968.75, 6503454.6875, 6505780.77315639, 6507096.875, 6507389.0625, 6507746.6564979525, 6508194.339106824, 6510334.375, 6510448.179997427, 6512461.615719533, 6513000.0, 6513440.881530032, 6513835.9375, 6514312.0485340515, 6518396.431920186, 6518602.446752163, 6519027.938300302, 6519167.889075594, 6520585.701071763, 6520609.375, 6520779.6875, 6520835.832932237, 6521245.598639308, 6522089.632848735, 6522405.302767928, 6522456.774372564, 6523339.0625, 6524544.412543603, 6524768.75, 6525216.374711119, 6525569.331200079, 6526921.765627035, 6528326.5625, 6528341.741812222, 6528395.3125, 6528950.0, 6529073.317939199, 6529075.0, 6529091.083799655, 6529614.199796969, 6530371.875, 6532512.5, 6534168.523896948, 6534803.910286231, 6535754.6081103515, 6535875.257391446, 6536471.922200383, 6537843.75, 6538263.4289890565, 6538368.7029132275, 6539420.415906249, 6540030.80754269, 6540173.506411607, 6540182.197611203, 6541386.22146992, 6541750.4098980725, 6541820.933734186, 6541916.910955706, 6542235.102857909, 6542236.332632487, 6542332.628164173, 6542375.760218248, 6542494.869217268, 6542638.439581635, 6542957.8125, 6543084.2524992535, 6543657.423161636, 6544093.657769945, 6544096.968931, 6544126.5625, 6544445.600443549, 6546261.933734746, 6546593.673354498, 6546757.453989459, 6549499.120995806, 6549581.05173152, 6550764.0625, 6551246.875, 6555312.400128729, 6555681.925457619, 6558316.859805595, 6558353.810640447, 6559132.515972891, 6559327.197761251, 6559603.125, 6560201.164562911, 6561623.4375, 6562485.9375, 6564260.596897386, 6564645.2097187415, 6565300.417998435, 6569089.734311931, 6570243.47108793, 6571643.259074647, 6571856.25, 6573005.65592856, 6576722.124787597, 6577490.535548961, 6581582.703946907, 6581979.908898285, 6582899.879913105, 6583378.125, 6588057.394915778, 6588710.9375, 6588787.989406391, 6589049.893456199, 6590057.263826975, 6590150.0, 6590178.125, 6590343.707255735, 6591020.18356731, 6591239.185380474, 6591251.884854186, 6591835.163832393, 6591857.4729150925, 6592503.125, 6592818.695026517, 6594434.175493629, 6595557.7533231415, 6596744.219962757, 6596759.183833281, 6597051.892081267, 6598483.893080816, 6598729.941693215, 6599077.091140055, 6599203.5587210655, 6599232.899121576, 6599406.25, 6599470.02738192, 6599489.0625, 6599490.625, 6599635.673247979, 6600369.30600931, 6601027.351889757, 6601415.485074608, 6601894.952340316, 6603412.035575012, 6604204.243985004, 6606092.027566404, 6606753.468735488, 6608137.413305799, 6608876.943467125, 6608917.091361997, 6609795.3125, 6609919.673892227, 6611532.81910164, 6612145.3125, 6612664.447032904, 6612871.875, 6612891.9024864985, 6613083.213146701, 6613923.4375, 6614821.875, 6615169.808976702, 6615838.687738283, 6616151.7292378545, 6616861.41844871, 6616952.990271289, 6617491.576094534, 6618816.185466077, 6622589.324792529, 6623087.5, 6623398.421074742, 6623590.625, 6625664.0625, 6625895.205946626, 6626238.532147765, 6627525.699573843, 6627535.540758663, 6628429.450389989, 6628638.357624766, 6629917.1875, 6630811.8430944, 6630882.8125, 6631223.801278253, 6632027.882192587, 6634071.429299124, 6636117.048170587, 6636319.958401557, 6638785.240094681, 6639614.256279939, 6640497.049551005, 6640567.1875, 6640785.9375, 6641391.6379703, 6642101.5625, 6642995.3125, 6645239.096527099, 6646705.360247859, 6647433.632660455, 6648373.195445979, 6654228.920490035, 6661320.319700719, 6661499.456063417, 6664639.783618446, 6676658.487556714, 6677026.5625, 6680626.5625, 6680633.59047879, 6680770.3125, 6681241.554006443, 6682854.6875, 6684435.864800135, 6685175.0, 6685804.310895081, 6691509.367892369, 6691802.586727699, 6691932.8125, 6693995.599741799, 6695885.9375, 6696483.731017071, 6696707.163698002, 6698003.125, 6698231.94780175, 6698514.0625, 6698515.922635756, 6698745.329565817, 6700125.0, 6701432.172927729, 6701754.6875, 6702048.631046837, 6704149.198094146, 6706760.904054548, 6707844.364416135, 6709550.858660646, 6709602.671167946, 6709958.982674591, 6710868.794827352, 6711033.428810796, 6712082.490874849, 6712416.272867239, 6713333.552559777, 6715093.75, 6715419.5971042495, 6715823.257810721, 6716390.39010413, 6717570.3125, 6717901.877891489, 6722835.713473463, 6723592.961336446, 6725431.25, 6725483.670815809, 6725681.449628317, 6726634.610640933, 6728273.248725739, 6728874.720689152, 6729609.972267115, 6731704.196879737, 6731839.986504989, 6732367.254970894, 6732534.375, 6732897.694696301, 6733746.5817199, 6733770.3125, 6733876.391624855, 6734395.3125, 6734598.38241326, 6734899.255449078, 6735239.0625, 6735562.508535481, 6735618.690648442, 6736220.3125, 6736231.952668226, 6736332.8125, 6737186.533514896, 6737530.264839806, 6738259.746102792, 6738606.25, 6739023.4375, 6739039.0625, 6739515.044738162, 6739563.60592607, 6739731.669584985, 6739749.805136915, 6739946.581663813, 6740513.068387141, 6741693.410315793, 6743352.5956850685, 6744162.328212785, 6744353.125, 6744684.746285621, 6745526.468231082, 6745687.058733055, 6746092.035650434, 6746457.983474559, 6746600.436515683, 6747160.630250086, 6747209.73368101, 6747314.0625, 6747554.6875, 6747727.637236203, 6748179.6875, 6748361.690117163, 6748810.9375, 6749339.0625, 6749348.324056415, 6749365.263732208, 6749445.241264621, 6749451.282987396, 6749531.436962033, 6749532.8125, 6749692.697112191, 6750144.576052113, 6750218.962946345, 6750806.490902062, 6750902.050527772, 6750948.976690661, 6750977.00203051, 6751941.637335645, 6751979.684803244, 6752035.760449315, 6752862.902477534, 6752979.112678443, 6753031.659980378, 6753284.375, 6753946.079599572, 6754182.620603232, 6754496.26955687, 6755335.9375, 6755556.25, 6755823.4375, 6757309.375, 6758009.348930122, 6758825.980488164, 6758881.867702495, 6760377.346477175, 6761596.795854145, 6762495.72845298, 6765293.347769584, 6766127.929343481, 6767132.566387327, 6767400.0, 6767531.031130397, 6767893.987932939, 6768241.746511839, 6769208.567790954, 6769249.97173881, 6769694.694077146, 6769807.810369715, 6770313.550169016, 6770632.549807916, 6770892.024292198, 6771807.991698466, 6771811.022574401, 6771879.222311211, 6772226.688143172, 6772236.383595192, 6772655.641840229, 6772885.0507552195, 6773977.958719087, 6774270.888148822, 6774591.385072816, 6775984.618309092, 6776321.419578299, 6777243.213938281, 6777334.71451819, 6777504.6875, 6777778.125, 6777967.060331282, 6778048.306252622, 6778142.1875, 6778389.398348015, 6778448.4375, 6778448.464691988, 6778452.711417802, 6779326.5625, 6780063.296962314, 6780065.469190549, 6780228.220380353, 6780795.3125, 6781029.012430083, 6781399.061664016, 6781419.081973529, 6781501.253783126, 6781726.5625, 6781974.18388085, 6782379.004723394, 6782388.240432409, 6783115.08878975, 6783141.675743488, 6783622.091037108, 6783635.9375, 6783789.0625, 6784064.0625, 6784183.995311702, 6784375.0, 6784564.957542367, 6784753.125, 6784755.207910768, 6784943.609870499, 6785141.529153442, 6785285.278650573, 6785757.232751266, 6785875.0857764445, 6786224.357729322, 6786227.8923451975, 6786477.45495632, 6786665.962729477, 6787098.4375, 6788504.093962218, 6788610.9375, 6788705.398455969, 6789218.247571053, 6789470.7317452, 6790146.59511838, 6790456.423302722, 6790458.9800608335, 6791010.785958433, 6791470.3125, 6792001.63109039, 6792195.683881019, 6792248.953382292, 6792718.156521057, 6792759.375, 6794204.733237098, 6794360.552504995, 6794614.0625, 6794943.604032433, 6795241.339100465, 6795760.1100643575, 6796809.002142606, 6797635.9375, 6797896.875, 6797930.117243442, 6801706.25, 6803212.5, 6803758.225548926, 6803866.179889685, 6803870.965038933, 6803889.984403912, 6804059.375, 6804065.21036089, 6804201.5625, 6804356.25, 6804731.9126349455, 6804949.319198033, 6805013.279445325, 6805195.563147543, 6805205.427115952, 6805384.375, 6805453.125, 6805628.4264439605, 6805673.686907003, 6805806.3094098605, 6805807.8125, 6806223.962637689, 6806359.342707452, 6806415.625, 6806449.375295885, 6806733.727604887, 6807186.930120773, 6807500.0, 6807886.118187872, 6807963.443913547, 6808226.5625, 6808413.987693852, 6808642.1875, 6808823.4375, 6808960.909559953, 6808964.0625, 6809240.625, 6809296.034588215, 6809510.7200933285, 6809765.550631491, 6810214.972579008, 6810224.635661271, 6810283.796397321, 6810321.875, 6810481.336760247, 6810807.076982802, 6811286.553869921, 6811491.710625018, 6811550.911689017, 6811667.1875, 6811871.079383813, 6812267.178992711, 6812701.5625, 6812856.667260252, 6813164.0625, 6813223.4375, 6813553.789344799, 6813933.321787849, 6814137.910117987, 6815172.809249892, 6815763.859907226, 6817004.573235368, 6817926.248002991, 6817935.992794082, 6818146.875, 6818295.26912738, 6818314.27522447, 6818601.3449359685, 6819145.459614497, 6819175.2100334, 6819339.0625, 6820161.814051937, 6820175.0, 6820382.161080103, 6820653.125, 6821106.016821995, 6821218.657500671, 6821432.35759207, 6821484.258734957, 6821855.653620554, 6821931.25, 6821937.061438911, 6822275.0, 6822639.447166609, 6822658.268091823, 6822979.208413011, 6823060.411554387, 6823910.514580603, 6824335.087796513, 6824338.246448573, 6825344.038393606, 6825490.625, 6825593.496489462, 6825632.8125, 6825697.749842015, 6825782.6619060645, 6825825.907191001, 6826173.4375, 6826220.3125, 6826419.859498461, ...], [11.837980562993893, 24.661999290209952, 22.759405959689516, 92.0031054316558, 22.49718972362384, 31.788505965072748, 21.600721315493985, 14.955092065142397, 25.74958832977491, 72.4408292676968, 38.57848162052235, 34.71780730148113, 31.360724966776477, 9.336093299379584, 54.125604325303684, 52.06952889742497, 76.07100161166679, 22.58535680391286, 16.945773923911844, 17.376450533238806, 10.028070494974136, 22.310221340782917, 28.89011243167451, 67.41104258053167, 16.938668847798226, 18.670593387491515, 27.832293174634515, 21.578438486971066, 123.25830487163937, 18.63152397120868, 9.728207616487682, 8.933709926165482, 9.62881640726691, 85.64534888787827, 37.08393610806045, 10.039111257995227, 47.66801006742216, 6.597111668944627, 14.812535567291086, 64.06129154430838, 79.81319116817069, 13.115970103230342, 20.60321682489059, 30.08350517786554, 37.294787673481686, 56.031928173037045, 16.864258907898737, 39.68034137613518, 105.18800039391107, 6.154697262594912, 36.43419715760113, 36.04755205031768, 6.7588142722002, 26.67784384887828, 51.15689946315975, 26.066968153391095, 15.091593736753419, 103.32285733238689, 8.281168689383875, 28.826140268413894, 11.35515151809097, 112.1225634099819, 139.50476438469983, 6.138895231920053, 9.760218673028156, 41.79235184889467, 48.553149968809635, 138.11073859712417, 23.748049559759906, 5.67928860271723, 24.52286211428432, 16.16213351975156, 40.75419852622551, 58.05068368363361, 16.544189172079903, 33.05916034601743, 13.68887764780576, 19.07374209954641, 17.388855192103655, 14.361714474703309, 11.167026394307538, 28.434881423780176, 19.458530494717035, 37.48230262038923, 55.98313549396672, 48.64136644905783, 27.14097617075266, 16.033903415482065, 14.324288895019395, 80.81254753112003, 7.893085784327534, 43.724105519598886, 22.77035063509625, 52.42082126582601, 34.81431471637663, 54.031053638212654, 43.24653747106381, 66.42467697817021, 7.44904459296435, 60.412030648009335, 69.54475804125445, 8.967300254787663, 17.76863515272884, 77.36925972758559, 99.37617761165656, 69.85631701861884, 67.1469796076422, 5.13417970837077, 46.26631832854053, 10.526540850195973, 10.753168071067378, 5.0606274857907545, 73.3750315316608, 52.10296169947802, 8.901547639568218, 88.86687444346933, 64.69752561487975, 44.62553280762636, 57.27590440477742, 49.73149256173097, 65.42700469619831, 37.31628225800604, 24.690424055860905, 107.03509844461394, 49.3436710273198, 9.34764261326468, 42.3037620055305, 34.24303252967176, 14.110650425260157, 49.76034907730807, 64.72753544227027, 97.45008764018522, 12.24856207864322, 25.109936652172937, 32.72390684639797, 23.30587351449293, 36.88626837012748, 27.47499924971288, 5.089026960751462, 35.371121923795776, 65.48143695255503, 97.1583535991762, 117.3201986995553, 130.71352498104048, 28.93733362816187, 35.89313459439494, 89.91669271131748, 40.39783131689125, 235.89109756649452, 15.269556712243526, 76.71008747402139, 12.39327976380212, 34.20196996176946, 12.195935180130222, 8.343909207993349, 11.929107359516413, 71.58013670086171, 5.254431855951207, 29.213839527692002, 6.352599610403172, 9.321711416473907, 72.20817793158892, 20.237263019908898, 68.52867631857853, 14.02661996247958, 58.833117433012674, 10.61154998452979, 14.96135959637001, 84.6014796151767, 8.224223985891646, 17.161431290344595, 62.01436700204542, 21.479200976773882, 74.37146534866469, 35.90416120556106, 36.404943351100165, 17.3380005756013, 18.755251765253504, 14.761954154317397, 58.32252148200382, 61.82795339444393, 30.91428661679001, 9.514483533001016, 65.74745527011385, 44.753663400677056, 5.653444943944036, 30.83613531992046, 55.99677377172732, 47.48205471584377, 70.70710995230735, 77.57024806068686, 6.647465624386914, 7.086006169110372, 238.68280219973198, 5.930669895545523, 43.36860850157943, 9.518637276957659, 11.822083268659975, 29.99727722426194, 11.40435124927643, 29.928013954208154, 42.57497639609727, 27.879805861409213, 25.011253397229105, 83.62245619652222, 47.23557099365874, 5.1499131179221775, 6.019329685015227, 14.25832231941612, 30.234851444532765, 64.01688088280328, 100.11703587385821, 41.79716825375884, 52.845805957340836, 21.111853249916507, 11.92858007443315, 7.687634028909023, 68.41870546608811, 16.340453238489356, 50.81725978434862, 28.83761750928699, 17.142854013135704, 5.785824371050023, 22.232497122778394, 6.0402695867761675, 10.371382003028708, 23.03746674950959, 21.367350495829513, 142.3858244775595, 25.88508875625651, 23.091714113874314, 12.206436655266858, 11.698386477640495, 14.329336229774775, 8.687901382251122, 13.268626030517547, 8.905876545239884, 21.335178953483293, 37.77936105071581, 58.893313123315075, 24.275328725666828, 22.55392633716133, 7.544169932741573, 151.40658081436436, 30.909615533634774, 7.118349965770621, 127.30690234224701, 31.91988732656027, 21.988874471131123, 35.3557553182512, 13.730616809866111, 13.431182476393644, 8.210384579958124, 11.274549928023601, 11.528550226997273, 16.23148941257083, 11.465137903160791, 18.51165849379604, 58.67332264742216, 69.92626865825936, 50.30907110725287, 13.96700700521725, 59.39752084197929, 19.993221153480427, 15.616683067950305, 5.388428937766855, 67.6215826985243, 20.238820528049224, 102.08211390860781, 24.596319765003724, 8.149368139186054, 11.408286402815879, 20.439468398135435, 51.381947920361384, 13.920101093950725, 38.258929131519416, 8.883202014446347, 5.6922757738761565, 40.85625993116118, 64.77241225260669, 21.428342875123008, 51.12385423627844, 13.220572802462332, 50.436115161171365, 15.409594926670799, 59.863730155591774, 8.992379124955304, 17.616788387085737, 225.0795015402007, 31.97408373544552, 47.53269524222704, 18.47236014231149, 29.573248245215602, 35.725484791795566, 61.87201095542314, 92.67010194296668, 18.083470451259583, 6.209379105948714, 47.82974913787642, 16.005886046138055, 22.489507764202553, 37.026783646977435, 43.64385885668953, 23.055269443130964, 11.521866531285946, 12.82988364187219, 56.73337938339048, 31.389761924341883, 23.664535173109677, 32.930424119453605, 9.800712930740824, 51.48641743942777, 175.90589865985595, 78.06833695360724, 9.957670507141536, 9.301007856759396, 12.46219824278481, 5.356956654846269, 22.590094403324, 101.6011679800869, 9.992075011796533, 29.59087798577963, 42.48825408702083, 21.801952389762796, 19.099168848709873, 75.09057944667983, 94.81011576212181, 72.16139405544303, 14.738307405886331, 58.5221801235526, 60.10445937328823, 24.737888464462443, 14.534669933494364, 7.623893978653665, 30.569052910986564, 88.94935424876005, 17.06133617804374, 60.90349998138596, 88.82152531241753, 17.95294738959336, 18.343406982564307, 60.19033490271335, 61.73121963309686, 112.12771679651354, 74.19121635263036, 41.479111733742585, 10.99835314997279, 75.14948268189261, 107.36000662409417, 15.63741347185316, 14.391511779844867, 17.511206633915958, 120.7392222128657, 22.44468063140946, 49.48070343209599, 16.243940588601433, 16.74426147542198, 7.27180475960651, 54.59671724861097, 32.81326789557209, 109.21498156865846, 145.49741766132612, 97.25108790364837, 18.424718452356377, 43.70807005603177, 6.802843495192062, 20.90633608818414, 88.98838209145269, 29.754212481559076, 27.092176117229243, 21.011111702723273, 90.11575919466588, 6.88654583968719, 20.4827262648223, 111.73484583652267, 41.18585006253501, 124.89604644566403, 55.25088380332302, 16.490519141842277, 11.986384436817959, 30.909224631838967, 79.28421588519628, 35.50976431906923, 6.4868660464269725, 12.213926038571266, 15.090759834093873, 10.057989282634667, 84.42344235441657, 11.662821598197004, 63.8044238296045, 6.771917856481927, 83.51504623651849, 9.606003773573274, 94.10389688762129, 40.187401050933296, 8.706355601088813, 10.50458561734841, 35.997448481194645, 5.289619906443852, 23.208886268396874, 27.749327202695145, 52.72377385509534, 30.63969586718329, 12.607380101707713, 61.253859187130416, 66.10578146370602, 27.453985479782457, 41.292251264050805, 9.109515708772983, 14.966933841543797, 53.7441547795729, 115.26006117921632, 32.14431272733082, 6.568752285991884, 12.480077579234177, 174.67583864180096, 9.764653033726226, 19.048048626603844, 79.45590118474726, 13.932492646826129, 77.22883541048087, 24.46581954381349, 17.989709263319348, 19.865829392817346, 49.16224811615285, 21.19533764228397, 35.24320410138945, 5.925450972260132, 153.82493061603066, 6.750675502622283, 11.711452822922862, 51.0788114660875, 25.681249903454557, 90.37178433643668, 51.360128991703284, 33.97515076901146, 26.583887673644345, 116.45008231400064, 10.912959177277582, 66.91484147330554, 9.006654871272698, 126.96417553244281, 88.08488151057375, 14.400869571525673, 40.05665019349661, 12.925881460065138, 8.992124783297593, 5.388630828918555, 19.21915795363465, 38.59054000805603, 19.666317467987362, 58.21600504277468, 95.37393268450302, 89.27037852133115, 188.6737302249688, 29.54364403079467, 26.081929211856732, 23.439991967321113, 11.502396805968587, 119.13320627043052, 120.58191689118459, 54.678241554215965, 48.53223006019007, 13.87265271872544, 59.25733741611397, 90.52314455188889, 5.828871334759316, 8.969023731885427, 44.53018449073236, 104.42929417568998, 58.821056712363806, 20.024291320895514, 17.632117524823908, 51.19968400194937, 113.7599071484377, 33.387682829171446, 84.71076917877492, 64.4954222617219, 21.727250157754366, 47.23429284932199, 30.223653235941764, 33.529630214699, 65.81194196049456, 52.793331139504716, 116.749334150671, 28.700038219371052, 32.87583435957435, 16.018586137216577, 110.57725585745526, 77.7809783286596, 22.08034455343838, 19.881960977910804, 6.726797165387913, 7.87835488785404, 67.45452479783779, 33.22385913658113, 71.59720219023198, 7.094232615708951, 48.23057570478703, 9.865202773663196, 42.78510698446673, 5.986410069345345, 65.84625360145573, 12.34963485348893, 37.83488316541247, 22.792762943908578, 9.876466973340776, 14.540398238689288, 113.40973736836129, 85.7206924370782, 77.71602027731825, 68.76290286731867, 7.560559508938098, 46.10761473442824, 5.176186253565951, 83.39006603875613, 40.14273837783344, 55.39516844350177, 5.601656851118732, 8.750634780666301, 6.7477598696321595, 11.555360459787222, 9.371635218603476, 48.22910504524515, 67.25117020845241, 31.81641772512676, 83.12269408411844, 51.71944116642705, 7.139685016741178, 74.82138888019414, 162.17145341847936, 9.703837389920766, 97.04310878595136, 6.059805545259163, 46.01018084443504, 25.891822394434207, 10.851304686746909, 199.33321205336802, 5.089830384022922, 7.982522986536288, 39.81436921364227, 26.317848429666835, 5.156392253744359, 20.071063845921337, 5.345150689786668, 44.28289676572851, 16.165705212640667, 5.891563498167284, 27.095284436483745, 75.41017591272674, 6.908089762799511, 95.74658551935991, 40.453045493460166, 53.3655616874265, 36.85923816361101, 21.19098543880365, 74.57330175861745, 107.90163420330003, 13.920137791541357, 59.301028653482575, 43.07457357032387, 22.575462895065627, 146.21355864948444, 67.74149154272828, 13.784879608057988, 53.66643957685298, 62.942247954921044, 18.31721313621334, 13.975283875259857, 25.358217019610287, 55.5160754816952, 32.3346153442008, 32.70090693105033, 32.267007999903335, 9.241271650573179, 86.22269841576892, 7.090238251548543, 31.658801009613647, 13.557576849916963, 40.51057632310557, 69.98804362329615, 24.540528984546356, 59.92272646281998, 51.204101233858864, 31.956504499294656, 14.781053308558088, 37.33915383198058, 7.154132228343205, 16.33117283485671, 5.4966743164473915, 79.40794072443205, 70.73696953858965, 36.625040420398754, 22.103118894525373, 9.281862075848743, 17.096836657760214, 96.86300098340814, 144.1938315152596, 13.375839417365205, 108.1296543342416, 17.429061816016265, 27.47475641654893, 15.282279209536489, 42.66629337263348, 73.28282514616629, 40.97332441294951, 34.490906199273056, 24.218371346557923, 12.124320633102945, 19.209486668807717, 6.7358894094774415, 13.726078451027321, 239.3283982455583, 13.483453922342694, 10.886595535640476, 22.23232956201628, 53.81572506473228, 58.90586829454796, 36.47323987478133, 44.389145251268175, 75.94677105752939, 11.138041293682697, 94.89255419222734, 11.78711582946951, 33.28169627648202, 13.956110882934954, 16.725466560296432, 46.97951175604534, 33.02246293822426, 13.31640689912369, 33.57000809118244, 11.398729478148493, 38.32631938031102, 93.02241078261531, 51.673301550766034, 6.148388718217982, 16.070939017545374, 48.98681495941075, 28.203867270247915, 32.15905072291471, 67.00731084199194, 47.806412613573826, 21.195571257952018, 18.503564931578502, 10.559462338725274, 98.9543564560098, 19.666900725874573, 100.12433205137003, 18.480497709649626, 74.87988174124524, 16.536610994730978, 14.090321150845941, 44.578544540557644, 113.71155115260751, 57.40099959869892, 113.39356244286606, 27.65179992683416, 15.651347371800007, 66.39914154120251, 55.536026687738136, 6.032758348522339, 89.91640081670053, 66.96106071853522, 165.3703491171696, 176.3238523810661, 60.25390568165779, 24.520259422173226, 8.757383290562812, 40.42266818339522, 146.05831405120654, 24.784570450684328, 12.376957896091968, 52.46369081671947, 67.80116891741378, 14.217214188348116, 31.273244431959803, 12.974726680720856, 96.21102316218344, 115.72266244878182, 36.478984142046734, 113.74980697394354, 14.914487487663715, 8.914271984029519, 29.85774897798674, 39.42087675395717, 40.407335544559196, 73.78043922329631, 76.56482082052725, 67.26312483069299, 137.13125278373954, 49.331006004491016, 16.211847698846093, 5.245623180988201, 56.80498491419557, 62.29973934952528, 50.3747016791513, 40.16096201128271, 92.73002391234489, 72.65056536934267, 28.249354067777112, 12.800419982689979, 51.72162463675672, 10.565263371805257, 15.11516813715342, 19.1350280569078, 6.437828504450075, 21.403924099526293, 18.784408115217676, 35.187754309017116, 51.201402353516634, 75.42450511431254, 94.60953382305587, 41.70139464076366, 231.06168468318458, 140.69571483300783, 118.33663192615683, 41.25907609772938, 53.667603104264614, 72.90934822333088, 13.249703529463094, 25.283677584059618, 68.72281571646934, 27.173043628200865, 19.813031147538325, 67.8372949363013, 80.8275484586739, 55.92826138008741, 25.78457445108638, 71.07630806690861, 36.06366425891854, 18.857714078768968, 39.309057414550345, 14.735620838097216, 6.938582897395025, 53.929197293980984, 11.141074569294224, 5.530206939911181, 40.387709379965784, 89.31066312700929, 47.04173866293203, 12.207428752632795, 109.22646592838635, 27.080491488124483, 56.69448115172062, 38.12981850273263, 65.48597459000739, 180.9883900738657, 30.481778040841952, 37.9951727731475, 8.186150262632147, 15.17859497755624, 111.44976992591523, 13.787659038783902, 53.122513484551874, 25.539365657798907, 50.3126185641351, 8.493188859083576, 14.59397515452521, 73.2669788009708, 25.847544251038823, 22.369505731379792, 16.914899480330256, 29.86761564983744, 43.42297082784131, 53.38962050739752, 91.6907341164173, 105.32881506526144, 46.535724389315455, 7.900189807095015, 41.69386542829652, 137.78054441010192, 9.237287588998054, 17.279808708317432, 27.190650411486857, 119.27237952969492, 64.78468474658463, 29.755920698378056, 97.06104449429071, 35.21952971614924, 83.42219156414055, 44.24365937951911, 5.850994711951567, 74.62598281482026, 46.8507389750965, 21.00686620386514, 82.65994470549114, 9.18605312970689, 24.612663009101706, 20.777832281454966, 5.048521220784855, 36.47124595233771, 19.515633764608296, 25.237347254405453, 20.502010899062622, 59.168538037881234, 61.71126210601896, 48.60085969280811, 76.08484389405344, 28.019114380572177, 20.712224220887308, 5.488918685230177, 26.129476518407394, 11.006209916033516, 5.637477709479878, 23.97317178679115, 59.31178688824064, 24.464379650761007, 55.45594059523033, 125.72321254703054, 15.933202135394243, 45.95896209019654, 12.556680326496803, 71.76774229914083, 21.657869479616245, 101.69852752127487, 13.292400769791772, 55.52892546206961, 55.969798858417406, 46.017762851711204, 15.276000639686199, 21.84753455228238, 5.071188212292173, 16.96647539692998, 33.239321262190884, 18.343383179828074, 25.623591114811397, 17.707967934765822, 72.80284240251426, 37.50951395551377, 59.29002957752115, 13.228354756481778, 13.756257016895159, 57.30788574423579, 130.85530263315346, 20.88015766448477, 14.463790329669047, 45.39909135213572, 9.632499644824412, 51.76384606912215, 5.941777071046981, 150.25720042544063, 50.49284145241955, 19.198491994300134, 25.785624939594797, 6.502147607153126, 198.83885266164324, 19.908031647159344, 18.00855193339268, 16.985923931322105, 57.13363473672101, 64.88153766648023, 53.4172205368797, 26.03595183088352, 10.047198520343276, 21.139331893853978, 80.7968152304289, 95.0878779927221, 74.08062004907285, 33.47185883693743, 67.28373181184025, 133.05076770990473, 57.47574842975606, 63.50987739262268, 116.75524330932967, 58.720815233921044, 9.215661296861635, 64.70429530178713, 79.31960962469621, 20.732817464495717, 11.264481092784083, 20.182305012265324, 27.201414347145082, 19.949444332234297, 16.406612422137247, 65.98277256000101, 45.18767985954625, 63.1429082395628, 18.58141122509584, 35.03889105600001, 73.04068650897351, 24.011173386671658, 28.632932316375985, 10.561828474434243, 56.80690400737535, 38.710256046862476, 15.209551554244738, 29.81783639991159, 17.355365147829065, 74.56043220716572, 49.71876363978645, 117.19220247338377, 10.57491695198595, 52.59274338404872, 26.891465156263777, 8.70412170149921, 80.8390410951189, 22.862660676506767, 61.202556182740814, 38.919639063235195, 16.87869125975107, 60.59078559254361, 97.28625442837226, 16.790317030445582, 29.90252009520256, 87.12959378356663, 151.997975384237, 73.06765076206312, 9.003797084396927, 70.79742267841499, 80.59812546573693, 33.06155779131605, 8.815233217038777, 8.746781032751214, 122.97703817946231, 12.52094002229651, 52.59436982157562, 39.154675977106244, 222.9231849444143, 11.54128649502806, 82.51070413930867, 57.05072993072365, 9.81876044612988, 38.87867975802409, 41.04224209039487, 5.320961563984258, 52.36391628660689, 76.52049170712684, 117.83470784071756, 11.422388303537527, 20.386441704344673, 49.05295965550007, 83.16426483741999, 49.03062343989984, 40.070135388876295, 115.39770918040688, 149.90812019038833, 87.03287918526985, 25.60572294978836, 59.12710690884687, 26.946383140019446, 36.396810628040285, 10.602281351968296, 97.95167832507173, 213.38953220160803, 24.52860664170202, 40.447645182310936, 9.913292453094854, 34.39557242864453, 26.673481083226843, 112.47409105544997, 7.906341116767898, 70.08340971198115, 40.50789452782728, 16.422992363647346, 34.83540596680806, 61.050306933447516, 49.25242844037942, 17.31759591159845, 16.774930140130266, 12.988007138508975, 66.78334597031682, 27.8317710868864, 7.493316800577908, 15.156537809271498, 42.91302958099878, 5.164352693135185, 140.71793397663126, 24.604745623568427, 43.992878719013525, 15.807423597124208, 38.08462475455191, 17.5475906828472, 38.7639765262324, 5.884614944484568, 36.840069242888504, 14.121467852733465, 38.9970706044221, 6.418068992093663, 165.12467731473689, 20.58268228981129, 47.119743814044554, 13.497522405946784, 41.60599972473429, 16.64289674446101, 11.923243882165055, 21.704286610834725, 10.39438789057483, 31.329207462205844, 6.361660957910143, 223.55871133394524, 21.24830830519101, 49.7465514585449, 24.36331735534186, 89.91836031793412, 44.87482122904645, 64.06113855222125, 20.072127180318034, 46.50422179606548, 86.1712282146386, 45.578168741270716, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3539778.536386107, 3661357.945768158, 4115639.2097537094, 4147541.952974952, 4150101.1575901117, 4354250.0, 4357050.2169117, 4357914.066059007, 4376636.911270225, 4468076.5625, 4474570.366619772, 4480627.996165534, 4520155.354350095, 4533534.380541588, 4562048.332319547, 4562476.367584435, 4662025.0, 4689315.22794003, 4722886.379759597, 4723680.362204162, 4777150.7230678825, 4795157.390688642, 4918553.125, 5109195.3125, 5147866.065940254, 5230702.098969777, 5250373.959560265, 5287277.670784653, 5658215.9477960495, 5661102.280717508, 5687872.30974584, 5708824.488980521, 5709873.769470542, 5714653.203858462, 5719330.821612824, 5792860.108104961, 5814510.8318348145, 5827874.105189682, 5836834.340745614, 5846184.099905741, 5875142.361160978, 5946044.733959996, 5951665.030913319, 5978346.352789641, 5979847.743973895, 5982678.06910465, 5983636.36453316, 5989206.869153452, 5990832.8125, 6018755.304463889, 6048287.27636508, 6055463.104953362, 6061840.601450949, 6072048.33662948, 6072496.875, 6092139.271835458, 6096342.226326899, 6097220.035093259, 6097854.677258167, 6098660.9375, 6099775.140796718, 6100310.9375, 6102445.3125, 6102505.162199334, 6103977.029544883, 6105878.112325953, 6108253.717749009, 6127721.571107787, 6150598.137289216, 6154101.122051812, 6160721.633134469, 6161709.662190163, 6162760.041992796, 6164370.3125, 6165054.178770381, 6165478.125, 6166979.314840447, 6169800.780156006, 6169885.62572173, 6170085.537397828, 6186770.33751065, 6190673.776358312, 6204655.518603294, 6205451.5625, 6208192.1875, 6209352.41977897, 6209362.537204631, 6211631.975789137, 6212031.078057898, 6218279.159568734, 6226872.611079494, 6228030.061739121, 6228056.406107498, 6229504.17009256, 6234238.514014305, 6235038.647299248, 6235229.6875, 6235622.9985291, 6235637.05256002, 6235653.118908981, 6235720.3125, 6235810.473036311, 6236138.085615595, 6236229.6875, 6236595.005341196, 6236621.875, 6236663.304235619, 6237239.233779741, 6237324.61618508, 6237362.078041025, 6237368.496395576, 6237446.4150915155, 6237540.625, 6237729.6875, 6237763.50626194, 6237798.4375, 6238225.0, 6238432.8125, 6238542.1875, 6238761.598571938, 6240460.418846712, 6240870.202518282, 6241836.65466003, 6242961.938047748, 6243954.20531951, 6244279.706643387, 6244482.979785518, 6244604.6875, 6244638.825984603, 6245207.672316215, 6246117.066229051, 6246537.5, 6247725.615504247, 6248073.236944372, 6248281.024330172, 6250171.539356128, 6253480.249050032, 6256007.757131046, 6260844.827412016, 6261237.5, 6263164.0625, 6264276.5625, 6264767.1875, 6267971.837793577, 6270759.375, 6270849.860514462, 6272690.50789202, 6272702.36374507, 6277156.25, 6282343.833484631, 6283220.3125, 6283847.557491133, 6287642.1875, 6289847.465532671, 6290270.419364419, 6291730.146095322, 6292840.625, 6294911.265949417, 6294934.605981716, 6294939.709817506, 6294971.863515729, 6296379.682339048, 6296475.0520207845, 6296668.75, 6296745.049805769, 6297562.614841588, 6298046.5176169425, 6298174.4812706495, 6299196.875, 6299468.630197876, 6299991.106609474, 6300093.259533928, 6301452.623605535, 6303077.726431778, 6304468.119007458, 6305214.0625, 6307025.522227663, 6307083.548430009, 6307462.452080242, 6307577.012618704, 6307954.564069717, 6308923.4375, 6309715.833865127, 6309820.3125, 6310870.3125, 6311025.690897467, 6311944.3019726025, 6315623.0115834735, 6316124.833118008, 6320567.036351087, 6320935.19256093, 6322388.452070928, 6324754.550921181, 6326345.3125, 6326429.586640011, 6331171.875, 6331184.588432667, 6331184.778032595, 6335079.707822147, 6335743.920061094, 6335829.173670611, 6340421.047568046, 6342218.716557727, 6343440.417664489, 6344151.5625, 6347357.647044913, 6347400.886576329, 6348233.686676089, 6349946.272244873, 6350045.3125, 6350085.9375, 6350618.75, 6355297.171952958, 6359700.0, 6360365.51138834, 6360409.833325416, 6360617.414967049, 6360885.9375, 6360933.136756044, 6361243.75, 6362186.45484569, 6363008.047386149, 6363433.987079046, 6363866.75855865, 6364899.527149891, 6365819.767986428, 6367618.39203052, 6367806.001907528, 6368137.5, 6370127.975540411, 6370841.834094245, 6371961.533042315, 6373317.524301483, 6374023.267050095, 6374842.876418261, 6375582.2913995655, 6375596.324885239, 6379922.921522068, 6380596.875, 6381818.75, 6382660.245010937, 6383279.074242779, 6384535.771179144, 6384754.036314814, 6385146.875, 6385503.11318749, 6385940.203348669, 6386807.8125, 6387025.454101893, 6388770.822282748, 6390548.078858478, 6392147.975444502, 6393346.7280846685, 6396179.779457355, 6396184.6171545265, 6396212.801738673, 6396462.750820189, 6396905.126197258, 6398018.75, 6398917.475808748, 6399044.277021295, 6402001.280956957, 6402131.25, 6402364.714992333, 6402389.229037161, 6402509.10973037, 6402766.8802164765, 6403008.7393472, 6403801.534732215, 6403971.073178901, 6404004.418698703, 6404520.484884166, 6404524.387467529, 6404781.051489334, 6404821.578461101, 6404971.875, 6404988.480182381, 6405091.957514065, 6405114.736380001, 6405263.778518288, 6405335.209991075, 6405351.5625, 6405375.041410642, 6405393.75, 6405407.930116407, 6405450.145748611, 6405498.007357331, 6405541.185498026, 6405585.811541076, 6405647.897248764, 6405771.875, 6405833.706783134, 6405839.0625, 6405938.1529861735, 6406005.08332216, 6406008.3069653865, 6406127.198425802, 6406243.278234733, 6406245.3125, 6406408.066281113, 6406505.366881971, 6406565.387469511, 6406659.208307995, 6407107.456031142, 6407320.55083831, 6407336.808254216, 6407382.8125, 6407546.370513405, 6408555.611479181, 6409415.783039974, 6409423.944861301, 6409712.5, 6410291.644551609, 6410469.865677156, 6410527.220640531, 6410684.338832799, 6410844.463553391, 6410858.2448040955, 6410918.836897588, 6410925.6163333785, 6411085.0650725, 6411268.75, 6411404.6875, 6411494.09640379, 6411544.533604545, 6411588.811056664, 6412058.685749717, 6412501.5625, 6412715.570646109, 6412857.8125, 6412907.519295801, 6413062.27354087, 6413082.701502758, 6413165.681752766, 6413283.972368319, 6413810.355198695, 6413842.651011503, 6414003.183705356, 6414884.1877381895, 6415117.802850736, 6415811.6132588, 6416451.5625, 6416673.4607468555, 6418707.8125, 6424095.3125, 6424750.901880839, 6425059.290636691, 6425565.625, 6425699.686414393, 6426702.636158037, 6427142.035308814, 6427145.855192085, 6427796.875, 6428199.590378668, 6428646.875, 6429886.241832563, 6429902.181128054, 6431475.542672086, 6431690.625, 6431692.1875, 6432291.691422589, 6433672.806866431, 6433692.1875, 6434011.625417257, 6434079.987639463, 6434311.131394606, 6435061.801925382, 6435300.0, 6435387.067968567, 6435422.244611522, 6435516.63778631, 6436125.0, 6436153.711563882, 6436219.7048767675, 6436547.418993944, 6436606.25, 6436632.724496107, 6436815.625, 6436955.10759604, 6436956.737692694, 6436999.265705882, 6437065.219773367, 6437474.299327252, 6437776.561063347, 6437808.411606906, 6438190.681829577, 6438313.2501770975, 6438362.287071551, 6438433.129844995, 6438512.114677454, 6438723.479486301, 6439162.517621434, 6439354.995334137, 6439401.29147245, 6439421.269455, 6439431.96755397, 6439641.748573844, 6439960.9375, 6440192.13992333, 6440459.036927911, 6440619.061527559, 6441265.625, 6441555.822162612, 6441839.839794504, 6441851.239372349, 6441934.831848603, 6442209.318471852, 6442564.040164109, 6442766.912885227, 6442787.506654441, 6442820.943630814, 6443490.189608863, 6443579.63037116, 6443983.314378601, 6444340.874373502, 6444869.108912613, 6445012.971489098, 6445157.113625412, 6445182.8125, 6445640.332436939, 6447206.25, 6447216.941492192, 6447236.558685509, 6447476.816471453, 6447590.325718688, 6448052.594623512, 6448607.228131148, 6449123.275854126, 6449559.936050644, 6449626.497888132, 6449714.406402558, 6449789.0625, 6449911.53137187, 6450632.103866002, 6451296.028677378, 6453014.0625, 6455767.081051656, 6456631.25, 6458610.795624925, 6458939.0625, 6459704.276729396, 6462285.9375, 6462875.0, 6464295.163037328, 6465298.29297317, 6465571.222081672, 6466176.132011115, 6466243.49011176, 6466543.504646865, 6466564.60918167, 6468595.612494965, 6470909.674342148, 6471447.762085648, 6473187.5, 6481218.766092444, 6482026.5625, 6482248.737505247, 6482765.300276809, 6482848.664681033, 6482957.8125, 6483280.541307443, 6484427.822887829, 6485786.9924550755, 6486276.410914542, 6486959.379327036, 6486979.6875, 6487297.074245951, 6487513.600406821, 6488473.4375, 6489342.1875, 6491602.515202331, 6492304.026473141, 6492313.063059715, 6493916.984856621, 6494038.5377611965, 6494823.306044107, 6497968.75, 6503454.6875, 6505780.77315639, 6507096.875, 6507389.0625, 6507746.6564979525, 6508194.339106824, 6510334.375, 6510448.179997427, 6512461.615719533, 6513000.0, 6513440.881530032, 6513835.9375, 6514312.0485340515, 6518396.431920186, 6518602.446752163, 6519027.938300302, 6519167.889075594, 6520585.701071763, 6520609.375, 6520779.6875, 6520835.832932237, 6521245.598639308, 6522089.632848735, 6522405.302767928, 6522456.774372564, 6523339.0625, 6524544.412543603, 6524768.75, 6525216.374711119, 6525569.331200079, 6526921.765627035, 6528326.5625, 6528341.741812222, 6528395.3125, 6528950.0, 6529073.317939199, 6529075.0, 6529091.083799655, 6529614.199796969, 6530371.875, 6532512.5, 6534168.523896948, 6534803.910286231, 6535754.6081103515, 6535875.257391446, 6536471.922200383, 6537843.75, 6538263.4289890565, 6538368.7029132275, 6539420.415906249, 6540030.80754269, 6540173.506411607, 6540182.197611203, 6541386.22146992, 6541750.4098980725, 6541820.933734186, 6541916.910955706, 6542235.102857909, 6542236.332632487, 6542332.628164173, 6542375.760218248, 6542494.869217268, 6542638.439581635, 6542957.8125, 6543084.2524992535, 6543657.423161636, 6544093.657769945, 6544096.968931, 6544126.5625, 6544445.600443549, 6546261.933734746, 6546593.673354498, 6546757.453989459, 6549499.120995806, 6549581.05173152, 6550764.0625, 6551246.875, 6555312.400128729, 6555681.925457619, 6558316.859805595, 6558353.810640447, 6559132.515972891, 6559327.197761251, 6559603.125, 6560201.164562911, 6561623.4375, 6562485.9375, 6564260.596897386, 6564645.2097187415, 6565300.417998435, 6569089.734311931, 6570243.47108793, 6571643.259074647, 6571856.25, 6573005.65592856, 6576722.124787597, 6577490.535548961, 6581582.703946907, 6581979.908898285, 6582899.879913105, 6583378.125, 6588057.394915778, 6588710.9375, 6588787.989406391, 6589049.893456199, 6590057.263826975, 6590150.0, 6590178.125, 6590343.707255735, 6591020.18356731, 6591239.185380474, 6591251.884854186, 6591835.163832393, 6591857.4729150925, 6592503.125, 6592818.695026517, 6594434.175493629, 6595557.7533231415, 6596744.219962757, 6596759.183833281, 6597051.892081267, 6598483.893080816, 6598729.941693215, 6599077.091140055, 6599203.5587210655, 6599232.899121576, 6599406.25, 6599470.02738192, 6599489.0625, 6599490.625, 6599635.673247979, 6600369.30600931, 6601027.351889757, 6601415.485074608, 6601894.952340316, 6603412.035575012, 6604204.243985004, 6606092.027566404, 6606753.468735488, 6608137.413305799, 6608876.943467125, 6608917.091361997, 6609795.3125, 6609919.673892227, 6611532.81910164, 6612145.3125, 6612664.447032904, 6612871.875, 6612891.9024864985, 6613083.213146701, 6613923.4375, 6614821.875, 6615169.808976702, 6615838.687738283, 6616151.7292378545, 6616861.41844871, 6616952.990271289, 6617491.576094534, 6618816.185466077, 6622589.324792529, 6623087.5, 6623398.421074742, 6623590.625, 6625664.0625, 6625895.205946626, 6626238.532147765, 6627525.699573843, 6627535.540758663, 6628429.450389989, 6628638.357624766, 6629917.1875, 6630811.8430944, 6630882.8125, 6631223.801278253, 6632027.882192587, 6634071.429299124, 6636117.048170587, 6636319.958401557, 6638785.240094681, 6639614.256279939, 6640497.049551005, 6640567.1875, 6640785.9375, 6641391.6379703, 6642101.5625, 6642995.3125, 6645239.096527099, 6646705.360247859, 6647433.632660455, 6648373.195445979, 6654228.920490035, 6661320.319700719, 6661499.456063417, 6664639.783618446, 6676658.487556714, 6677026.5625, 6680626.5625, 6680633.59047879, 6680770.3125, 6681241.554006443, 6682854.6875, 6684435.864800135, 6685175.0, 6685804.310895081, 6691509.367892369, 6691802.586727699, 6691932.8125, 6693995.599741799, 6695885.9375, 6696483.731017071, 6696707.163698002, 6698003.125, 6698231.94780175, 6698514.0625, 6698515.922635756, 6698745.329565817, 6700125.0, 6701432.172927729, 6701754.6875, 6702048.631046837, 6704149.198094146, 6706760.904054548, 6707844.364416135, 6709550.858660646, 6709602.671167946, 6709958.982674591, 6710868.794827352, 6711033.428810796, 6712082.490874849, 6712416.272867239, 6713333.552559777, 6715093.75, 6715419.5971042495, 6715823.257810721, 6716390.39010413, 6717570.3125, 6717901.877891489, 6722835.713473463, 6723592.961336446, 6725431.25, 6725483.670815809, 6725681.449628317, 6726634.610640933, 6728273.248725739, 6728874.720689152, 6729609.972267115, 6731704.196879737, 6731839.986504989, 6732367.254970894, 6732534.375, 6732897.694696301, 6733746.5817199, 6733770.3125, 6733876.391624855, 6734395.3125, 6734598.38241326, 6734899.255449078, 6735239.0625, 6735562.508535481, 6735618.690648442, 6736220.3125, 6736231.952668226, 6736332.8125, 6737186.533514896, 6737530.264839806, 6738259.746102792, 6738606.25, 6739023.4375, 6739039.0625, 6739515.044738162, 6739563.60592607, 6739731.669584985, 6739749.805136915, 6739946.581663813, 6740513.068387141, 6741693.410315793, 6743352.5956850685, 6744162.328212785, 6744353.125, 6744684.746285621, 6745526.468231082, 6745687.058733055, 6746092.035650434, 6746457.983474559, 6746600.436515683, 6747160.630250086, 6747209.73368101, 6747314.0625, 6747554.6875, 6747727.637236203, 6748179.6875, 6748361.690117163, 6748810.9375, 6749339.0625, 6749348.324056415, 6749365.263732208, 6749445.241264621, 6749451.282987396, 6749531.436962033, 6749532.8125, 6749692.697112191, 6750144.576052113, 6750218.962946345, 6750806.490902062, 6750902.050527772, 6750948.976690661, 6750977.00203051, 6751941.637335645, 6751979.684803244, 6752035.760449315, 6752862.902477534, 6752979.112678443, 6753031.659980378, 6753284.375, 6753946.079599572, 6754182.620603232, 6754496.26955687, 6755335.9375, 6755556.25, 6755823.4375, 6757309.375, 6758009.348930122, 6758825.980488164, 6758881.867702495, 6760377.346477175, 6761596.795854145, 6762495.72845298, 6765293.347769584, 6766127.929343481, 6767132.566387327, 6767400.0, 6767531.031130397, 6767893.987932939, 6768241.746511839, 6769208.567790954, 6769249.97173881, 6769694.694077146, 6769807.810369715, 6770313.550169016, 6770632.549807916, 6770892.024292198, 6771807.991698466, 6771811.022574401, 6771879.222311211, 6772226.688143172, 6772236.383595192, 6772655.641840229, 6772885.0507552195, 6773977.958719087, 6774270.888148822, 6774591.385072816, 6775984.618309092, 6776321.419578299, 6777243.213938281, 6777334.71451819, 6777504.6875, 6777778.125, 6777967.060331282, 6778048.306252622, 6778142.1875, 6778389.398348015, 6778448.4375, 6778448.464691988, 6778452.711417802, 6779326.5625, 6780063.296962314, 6780065.469190549, 6780228.220380353, 6780795.3125, 6781029.012430083, 6781399.061664016, 6781419.081973529, 6781501.253783126, 6781726.5625, 6781974.18388085, 6782379.004723394, 6782388.240432409, 6783115.08878975, 6783141.675743488, 6783622.091037108, 6783635.9375, 6783789.0625, 6784064.0625, 6784183.995311702, 6784375.0, 6784564.957542367, 6784753.125, 6784755.207910768, 6784943.609870499, 6785141.529153442, 6785285.278650573, 6785757.232751266, 6785875.0857764445, 6786224.357729322, 6786227.8923451975, 6786477.45495632, 6786665.962729477, 6787098.4375, 6788504.093962218, 6788610.9375, 6788705.398455969, 6789218.247571053, 6789470.7317452, 6790146.59511838, 6790456.423302722, 6790458.9800608335, 6791010.785958433, 6791470.3125, 6792001.63109039, 6792195.683881019, 6792248.953382292, 6792718.156521057, 6792759.375, 6794204.733237098, 6794360.552504995, 6794614.0625, 6794943.604032433, 6795241.339100465, 6795760.1100643575, 6796809.002142606, 6797635.9375, 6797896.875, 6797930.117243442, 6801706.25, 6803212.5, 6803758.225548926, 6803866.179889685, 6803870.965038933, 6803889.984403912, 6804059.375, 6804065.21036089, 6804201.5625, 6804356.25, 6804731.9126349455, 6804949.319198033, 6805013.279445325, 6805195.563147543, 6805205.427115952, 6805384.375, 6805453.125, 6805628.4264439605, 6805673.686907003, 6805806.3094098605, 6805807.8125, 6806223.962637689, 6806359.342707452, 6806415.625, 6806449.375295885, 6806733.727604887, 6807186.930120773, 6807500.0, 6807886.118187872, 6807963.443913547, 6808226.5625, 6808413.987693852, 6808642.1875, 6808823.4375, 6808960.909559953, 6808964.0625, 6809240.625, 6809296.034588215, 6809510.7200933285, 6809765.550631491, 6810214.972579008, 6810224.635661271, 6810283.796397321, 6810321.875, 6810481.336760247, 6810807.076982802, 6811286.553869921, 6811491.710625018, 6811550.911689017, 6811667.1875, 6811871.079383813, 6812267.178992711, 6812701.5625, 6812856.667260252, 6813164.0625, 6813223.4375, 6813553.789344799, 6813933.321787849, 6814137.910117987, 6815172.809249892, 6815763.859907226, 6817004.573235368, 6817926.248002991, 6817935.992794082, 6818146.875, 6818295.26912738, 6818314.27522447, 6818601.3449359685, 6819145.459614497, 6819175.2100334, 6819339.0625, 6820161.814051937, 6820175.0, 6820382.161080103, 6820653.125, 6821106.016821995, 6821218.657500671, 6821432.35759207, 6821484.258734957, 6821855.653620554, 6821931.25, 6821937.061438911, 6822275.0, 6822639.447166609, 6822658.268091823, 6822979.208413011, 6823060.411554387, 6823910.514580603, 6824335.087796513, 6824338.246448573, 6825344.038393606, 6825490.625, 6825593.496489462, 6825632.8125, 6825697.749842015, 6825782.6619060645, 6825825.907191001, 6826173.4375, 6826220.3125, 6826419.859498461, ...], [11.837980562993893, 24.661999290209952, 22.759405959689516, 92.0031054316558, 22.49718972362384, 31.788505965072748, 21.600721315493985, 14.955092065142397, 25.74958832977491, 72.4408292676968, 38.57848162052235, 34.71780730148113, 31.360724966776477, 9.336093299379584, 54.125604325303684, 52.06952889742497, 76.07100161166679, 22.58535680391286, 16.945773923911844, 17.376450533238806, 10.028070494974136, 22.310221340782917, 28.89011243167451, 67.41104258053167, 16.938668847798226, 18.670593387491515, 27.832293174634515, 21.578438486971066, 123.25830487163937, 18.63152397120868, 9.728207616487682, 8.933709926165482, 9.62881640726691, 85.64534888787827, 37.08393610806045, 10.039111257995227, 47.66801006742216, 6.597111668944627, 14.812535567291086, 64.06129154430838, 79.81319116817069, 13.115970103230342, 20.60321682489059, 30.08350517786554, 37.294787673481686, 56.031928173037045, 16.864258907898737, 39.68034137613518, 105.18800039391107, 6.154697262594912, 36.43419715760113, 36.04755205031768, 6.7588142722002, 26.67784384887828, 51.15689946315975, 26.066968153391095, 15.091593736753419, 103.32285733238689, 8.281168689383875, 28.826140268413894, 11.35515151809097, 112.1225634099819, 139.50476438469983, 6.138895231920053, 9.760218673028156, 41.79235184889467, 48.553149968809635, 138.11073859712417, 23.748049559759906, 5.67928860271723, 24.52286211428432, 16.16213351975156, 40.75419852622551, 58.05068368363361, 16.544189172079903, 33.05916034601743, 13.68887764780576, 19.07374209954641, 17.388855192103655, 14.361714474703309, 11.167026394307538, 28.434881423780176, 19.458530494717035, 37.48230262038923, 55.98313549396672, 48.64136644905783, 27.14097617075266, 16.033903415482065, 14.324288895019395, 80.81254753112003, 7.893085784327534, 43.724105519598886, 22.77035063509625, 52.42082126582601, 34.81431471637663, 54.031053638212654, 43.24653747106381, 66.42467697817021, 7.44904459296435, 60.412030648009335, 69.54475804125445, 8.967300254787663, 17.76863515272884, 77.36925972758559, 99.37617761165656, 69.85631701861884, 67.1469796076422, 5.13417970837077, 46.26631832854053, 10.526540850195973, 10.753168071067378, 5.0606274857907545, 73.3750315316608, 52.10296169947802, 8.901547639568218, 88.86687444346933, 64.69752561487975, 44.62553280762636, 57.27590440477742, 49.73149256173097, 65.42700469619831, 37.31628225800604, 24.690424055860905, 107.03509844461394, 49.3436710273198, 9.34764261326468, 42.3037620055305, 34.24303252967176, 14.110650425260157, 49.76034907730807, 64.72753544227027, 97.45008764018522, 12.24856207864322, 25.109936652172937, 32.72390684639797, 23.30587351449293, 36.88626837012748, 27.47499924971288, 5.089026960751462, 35.371121923795776, 65.48143695255503, 97.1583535991762, 117.3201986995553, 130.71352498104048, 28.93733362816187, 35.89313459439494, 89.91669271131748, 40.39783131689125, 235.89109756649452, 15.269556712243526, 76.71008747402139, 12.39327976380212, 34.20196996176946, 12.195935180130222, 8.343909207993349, 11.929107359516413, 71.58013670086171, 5.254431855951207, 29.213839527692002, 6.352599610403172, 9.321711416473907, 72.20817793158892, 20.237263019908898, 68.52867631857853, 14.02661996247958, 58.833117433012674, 10.61154998452979, 14.96135959637001, 84.6014796151767, 8.224223985891646, 17.161431290344595, 62.01436700204542, 21.479200976773882, 74.37146534866469, 35.90416120556106, 36.404943351100165, 17.3380005756013, 18.755251765253504, 14.761954154317397, 58.32252148200382, 61.82795339444393, 30.91428661679001, 9.514483533001016, 65.74745527011385, 44.753663400677056, 5.653444943944036, 30.83613531992046, 55.99677377172732, 47.48205471584377, 70.70710995230735, 77.57024806068686, 6.647465624386914, 7.086006169110372, 238.68280219973198, 5.930669895545523, 43.36860850157943, 9.518637276957659, 11.822083268659975, 29.99727722426194, 11.40435124927643, 29.928013954208154, 42.57497639609727, 27.879805861409213, 25.011253397229105, 83.62245619652222, 47.23557099365874, 5.1499131179221775, 6.019329685015227, 14.25832231941612, 30.234851444532765, 64.01688088280328, 100.11703587385821, 41.79716825375884, 52.845805957340836, 21.111853249916507, 11.92858007443315, 7.687634028909023, 68.41870546608811, 16.340453238489356, 50.81725978434862, 28.83761750928699, 17.142854013135704, 5.785824371050023, 22.232497122778394, 6.0402695867761675, 10.371382003028708, 23.03746674950959, 21.367350495829513, 142.3858244775595, 25.88508875625651, 23.091714113874314, 12.206436655266858, 11.698386477640495, 14.329336229774775, 8.687901382251122, 13.268626030517547, 8.905876545239884, 21.335178953483293, 37.77936105071581, 58.893313123315075, 24.275328725666828, 22.55392633716133, 7.544169932741573, 151.40658081436436, 30.909615533634774, 7.118349965770621, 127.30690234224701, 31.91988732656027, 21.988874471131123, 35.3557553182512, 13.730616809866111, 13.431182476393644, 8.210384579958124, 11.274549928023601, 11.528550226997273, 16.23148941257083, 11.465137903160791, 18.51165849379604, 58.67332264742216, 69.92626865825936, 50.30907110725287, 13.96700700521725, 59.39752084197929, 19.993221153480427, 15.616683067950305, 5.388428937766855, 67.6215826985243, 20.238820528049224, 102.08211390860781, 24.596319765003724, 8.149368139186054, 11.408286402815879, 20.439468398135435, 51.381947920361384, 13.920101093950725, 38.258929131519416, 8.883202014446347, 5.6922757738761565, 40.85625993116118, 64.77241225260669, 21.428342875123008, 51.12385423627844, 13.220572802462332, 50.436115161171365, 15.409594926670799, 59.863730155591774, 8.992379124955304, 17.616788387085737, 225.0795015402007, 31.97408373544552, 47.53269524222704, 18.47236014231149, 29.573248245215602, 35.725484791795566, 61.87201095542314, 92.67010194296668, 18.083470451259583, 6.209379105948714, 47.82974913787642, 16.005886046138055, 22.489507764202553, 37.026783646977435, 43.64385885668953, 23.055269443130964, 11.521866531285946, 12.82988364187219, 56.73337938339048, 31.389761924341883, 23.664535173109677, 32.930424119453605, 9.800712930740824, 51.48641743942777, 175.90589865985595, 78.06833695360724, 9.957670507141536, 9.301007856759396, 12.46219824278481, 5.356956654846269, 22.590094403324, 101.6011679800869, 9.992075011796533, 29.59087798577963, 42.48825408702083, 21.801952389762796, 19.099168848709873, 75.09057944667983, 94.81011576212181, 72.16139405544303, 14.738307405886331, 58.5221801235526, 60.10445937328823, 24.737888464462443, 14.534669933494364, 7.623893978653665, 30.569052910986564, 88.94935424876005, 17.06133617804374, 60.90349998138596, 88.82152531241753, 17.95294738959336, 18.343406982564307, 60.19033490271335, 61.73121963309686, 112.12771679651354, 74.19121635263036, 41.479111733742585, 10.99835314997279, 75.14948268189261, 107.36000662409417, 15.63741347185316, 14.391511779844867, 17.511206633915958, 120.7392222128657, 22.44468063140946, 49.48070343209599, 16.243940588601433, 16.74426147542198, 7.27180475960651, 54.59671724861097, 32.81326789557209, 109.21498156865846, 145.49741766132612, 97.25108790364837, 18.424718452356377, 43.70807005603177, 6.802843495192062, 20.90633608818414, 88.98838209145269, 29.754212481559076, 27.092176117229243, 21.011111702723273, 90.11575919466588, 6.88654583968719, 20.4827262648223, 111.73484583652267, 41.18585006253501, 124.89604644566403, 55.25088380332302, 16.490519141842277, 11.986384436817959, 30.909224631838967, 79.28421588519628, 35.50976431906923, 6.4868660464269725, 12.213926038571266, 15.090759834093873, 10.057989282634667, 84.42344235441657, 11.662821598197004, 63.8044238296045, 6.771917856481927, 83.51504623651849, 9.606003773573274, 94.10389688762129, 40.187401050933296, 8.706355601088813, 10.50458561734841, 35.997448481194645, 5.289619906443852, 23.208886268396874, 27.749327202695145, 52.72377385509534, 30.63969586718329, 12.607380101707713, 61.253859187130416, 66.10578146370602, 27.453985479782457, 41.292251264050805, 9.109515708772983, 14.966933841543797, 53.7441547795729, 115.26006117921632, 32.14431272733082, 6.568752285991884, 12.480077579234177, 174.67583864180096, 9.764653033726226, 19.048048626603844, 79.45590118474726, 13.932492646826129, 77.22883541048087, 24.46581954381349, 17.989709263319348, 19.865829392817346, 49.16224811615285, 21.19533764228397, 35.24320410138945, 5.925450972260132, 153.82493061603066, 6.750675502622283, 11.711452822922862, 51.0788114660875, 25.681249903454557, 90.37178433643668, 51.360128991703284, 33.97515076901146, 26.583887673644345, 116.45008231400064, 10.912959177277582, 66.91484147330554, 9.006654871272698, 126.96417553244281, 88.08488151057375, 14.400869571525673, 40.05665019349661, 12.925881460065138, 8.992124783297593, 5.388630828918555, 19.21915795363465, 38.59054000805603, 19.666317467987362, 58.21600504277468, 95.37393268450302, 89.27037852133115, 188.6737302249688, 29.54364403079467, 26.081929211856732, 23.439991967321113, 11.502396805968587, 119.13320627043052, 120.58191689118459, 54.678241554215965, 48.53223006019007, 13.87265271872544, 59.25733741611397, 90.52314455188889, 5.828871334759316, 8.969023731885427, 44.53018449073236, 104.42929417568998, 58.821056712363806, 20.024291320895514, 17.632117524823908, 51.19968400194937, 113.7599071484377, 33.387682829171446, 84.71076917877492, 64.4954222617219, 21.727250157754366, 47.23429284932199, 30.223653235941764, 33.529630214699, 65.81194196049456, 52.793331139504716, 116.749334150671, 28.700038219371052, 32.87583435957435, 16.018586137216577, 110.57725585745526, 77.7809783286596, 22.08034455343838, 19.881960977910804, 6.726797165387913, 7.87835488785404, 67.45452479783779, 33.22385913658113, 71.59720219023198, 7.094232615708951, 48.23057570478703, 9.865202773663196, 42.78510698446673, 5.986410069345345, 65.84625360145573, 12.34963485348893, 37.83488316541247, 22.792762943908578, 9.876466973340776, 14.540398238689288, 113.40973736836129, 85.7206924370782, 77.71602027731825, 68.76290286731867, 7.560559508938098, 46.10761473442824, 5.176186253565951, 83.39006603875613, 40.14273837783344, 55.39516844350177, 5.601656851118732, 8.750634780666301, 6.7477598696321595, 11.555360459787222, 9.371635218603476, 48.22910504524515, 67.25117020845241, 31.81641772512676, 83.12269408411844, 51.71944116642705, 7.139685016741178, 74.82138888019414, 162.17145341847936, 9.703837389920766, 97.04310878595136, 6.059805545259163, 46.01018084443504, 25.891822394434207, 10.851304686746909, 199.33321205336802, 5.089830384022922, 7.982522986536288, 39.81436921364227, 26.317848429666835, 5.156392253744359, 20.071063845921337, 5.345150689786668, 44.28289676572851, 16.165705212640667, 5.891563498167284, 27.095284436483745, 75.41017591272674, 6.908089762799511, 95.74658551935991, 40.453045493460166, 53.3655616874265, 36.85923816361101, 21.19098543880365, 74.57330175861745, 107.90163420330003, 13.920137791541357, 59.301028653482575, 43.07457357032387, 22.575462895065627, 146.21355864948444, 67.74149154272828, 13.784879608057988, 53.66643957685298, 62.942247954921044, 18.31721313621334, 13.975283875259857, 25.358217019610287, 55.5160754816952, 32.3346153442008, 32.70090693105033, 32.267007999903335, 9.241271650573179, 86.22269841576892, 7.090238251548543, 31.658801009613647, 13.557576849916963, 40.51057632310557, 69.98804362329615, 24.540528984546356, 59.92272646281998, 51.204101233858864, 31.956504499294656, 14.781053308558088, 37.33915383198058, 7.154132228343205, 16.33117283485671, 5.4966743164473915, 79.40794072443205, 70.73696953858965, 36.625040420398754, 22.103118894525373, 9.281862075848743, 17.096836657760214, 96.86300098340814, 144.1938315152596, 13.375839417365205, 108.1296543342416, 17.429061816016265, 27.47475641654893, 15.282279209536489, 42.66629337263348, 73.28282514616629, 40.97332441294951, 34.490906199273056, 24.218371346557923, 12.124320633102945, 19.209486668807717, 6.7358894094774415, 13.726078451027321, 239.3283982455583, 13.483453922342694, 10.886595535640476, 22.23232956201628, 53.81572506473228, 58.90586829454796, 36.47323987478133, 44.389145251268175, 75.94677105752939, 11.138041293682697, 94.89255419222734, 11.78711582946951, 33.28169627648202, 13.956110882934954, 16.725466560296432, 46.97951175604534, 33.02246293822426, 13.31640689912369, 33.57000809118244, 11.398729478148493, 38.32631938031102, 93.02241078261531, 51.673301550766034, 6.148388718217982, 16.070939017545374, 48.98681495941075, 28.203867270247915, 32.15905072291471, 67.00731084199194, 47.806412613573826, 21.195571257952018, 18.503564931578502, 10.559462338725274, 98.9543564560098, 19.666900725874573, 100.12433205137003, 18.480497709649626, 74.87988174124524, 16.536610994730978, 14.090321150845941, 44.578544540557644, 113.71155115260751, 57.40099959869892, 113.39356244286606, 27.65179992683416, 15.651347371800007, 66.39914154120251, 55.536026687738136, 6.032758348522339, 89.91640081670053, 66.96106071853522, 165.3703491171696, 176.3238523810661, 60.25390568165779, 24.520259422173226, 8.757383290562812, 40.42266818339522, 146.05831405120654, 24.784570450684328, 12.376957896091968, 52.46369081671947, 67.80116891741378, 14.217214188348116, 31.273244431959803, 12.974726680720856, 96.21102316218344, 115.72266244878182, 36.478984142046734, 113.74980697394354, 14.914487487663715, 8.914271984029519, 29.85774897798674, 39.42087675395717, 40.407335544559196, 73.78043922329631, 76.56482082052725, 67.26312483069299, 137.13125278373954, 49.331006004491016, 16.211847698846093, 5.245623180988201, 56.80498491419557, 62.29973934952528, 50.3747016791513, 40.16096201128271, 92.73002391234489, 72.65056536934267, 28.249354067777112, 12.800419982689979, 51.72162463675672, 10.565263371805257, 15.11516813715342, 19.1350280569078, 6.437828504450075, 21.403924099526293, 18.784408115217676, 35.187754309017116, 51.201402353516634, 75.42450511431254, 94.60953382305587, 41.70139464076366, 231.06168468318458, 140.69571483300783, 118.33663192615683, 41.25907609772938, 53.667603104264614, 72.90934822333088, 13.249703529463094, 25.283677584059618, 68.72281571646934, 27.173043628200865, 19.813031147538325, 67.8372949363013, 80.8275484586739, 55.92826138008741, 25.78457445108638, 71.07630806690861, 36.06366425891854, 18.857714078768968, 39.309057414550345, 14.735620838097216, 6.938582897395025, 53.929197293980984, 11.141074569294224, 5.530206939911181, 40.387709379965784, 89.31066312700929, 47.04173866293203, 12.207428752632795, 109.22646592838635, 27.080491488124483, 56.69448115172062, 38.12981850273263, 65.48597459000739, 180.9883900738657, 30.481778040841952, 37.9951727731475, 8.186150262632147, 15.17859497755624, 111.44976992591523, 13.787659038783902, 53.122513484551874, 25.539365657798907, 50.3126185641351, 8.493188859083576, 14.59397515452521, 73.2669788009708, 25.847544251038823, 22.369505731379792, 16.914899480330256, 29.86761564983744, 43.42297082784131, 53.38962050739752, 91.6907341164173, 105.32881506526144, 46.535724389315455, 7.900189807095015, 41.69386542829652, 137.78054441010192, 9.237287588998054, 17.279808708317432, 27.190650411486857, 119.27237952969492, 64.78468474658463, 29.755920698378056, 97.06104449429071, 35.21952971614924, 83.42219156414055, 44.24365937951911, 5.850994711951567, 74.62598281482026, 46.8507389750965, 21.00686620386514, 82.65994470549114, 9.18605312970689, 24.612663009101706, 20.777832281454966, 5.048521220784855, 36.47124595233771, 19.515633764608296, 25.237347254405453, 20.502010899062622, 59.168538037881234, 61.71126210601896, 48.60085969280811, 76.08484389405344, 28.019114380572177, 20.712224220887308, 5.488918685230177, 26.129476518407394, 11.006209916033516, 5.637477709479878, 23.97317178679115, 59.31178688824064, 24.464379650761007, 55.45594059523033, 125.72321254703054, 15.933202135394243, 45.95896209019654, 12.556680326496803, 71.76774229914083, 21.657869479616245, 101.69852752127487, 13.292400769791772, 55.52892546206961, 55.969798858417406, 46.017762851711204, 15.276000639686199, 21.84753455228238, 5.071188212292173, 16.96647539692998, 33.239321262190884, 18.343383179828074, 25.623591114811397, 17.707967934765822, 72.80284240251426, 37.50951395551377, 59.29002957752115, 13.228354756481778, 13.756257016895159, 57.30788574423579, 130.85530263315346, 20.88015766448477, 14.463790329669047, 45.39909135213572, 9.632499644824412, 51.76384606912215, 5.941777071046981, 150.25720042544063, 50.49284145241955, 19.198491994300134, 25.785624939594797, 6.502147607153126, 198.83885266164324, 19.908031647159344, 18.00855193339268, 16.985923931322105, 57.13363473672101, 64.88153766648023, 53.4172205368797, 26.03595183088352, 10.047198520343276, 21.139331893853978, 80.7968152304289, 95.0878779927221, 74.08062004907285, 33.47185883693743, 67.28373181184025, 133.05076770990473, 57.47574842975606, 63.50987739262268, 116.75524330932967, 58.720815233921044, 9.215661296861635, 64.70429530178713, 79.31960962469621, 20.732817464495717, 11.264481092784083, 20.182305012265324, 27.201414347145082, 19.949444332234297, 16.406612422137247, 65.98277256000101, 45.18767985954625, 63.1429082395628, 18.58141122509584, 35.03889105600001, 73.04068650897351, 24.011173386671658, 28.632932316375985, 10.561828474434243, 56.80690400737535, 38.710256046862476, 15.209551554244738, 29.81783639991159, 17.355365147829065, 74.56043220716572, 49.71876363978645, 117.19220247338377, 10.57491695198595, 52.59274338404872, 26.891465156263777, 8.70412170149921, 80.8390410951189, 22.862660676506767, 61.202556182740814, 38.919639063235195, 16.87869125975107, 60.59078559254361, 97.28625442837226, 16.790317030445582, 29.90252009520256, 87.12959378356663, 151.997975384237, 73.06765076206312, 9.003797084396927, 70.79742267841499, 80.59812546573693, 33.06155779131605, 8.815233217038777, 8.746781032751214, 122.97703817946231, 12.52094002229651, 52.59436982157562, 39.154675977106244, 222.9231849444143, 11.54128649502806, 82.51070413930867, 57.05072993072365, 9.81876044612988, 38.87867975802409, 41.04224209039487, 5.320961563984258, 52.36391628660689, 76.52049170712684, 117.83470784071756, 11.422388303537527, 20.386441704344673, 49.05295965550007, 83.16426483741999, 49.03062343989984, 40.070135388876295, 115.39770918040688, 149.90812019038833, 87.03287918526985, 25.60572294978836, 59.12710690884687, 26.946383140019446, 36.396810628040285, 10.602281351968296, 97.95167832507173, 213.38953220160803, 24.52860664170202, 40.447645182310936, 9.913292453094854, 34.39557242864453, 26.673481083226843, 112.47409105544997, 7.906341116767898, 70.08340971198115, 40.50789452782728, 16.422992363647346, 34.83540596680806, 61.050306933447516, 49.25242844037942, 17.31759591159845, 16.774930140130266, 12.988007138508975, 66.78334597031682, 27.8317710868864, 7.493316800577908, 15.156537809271498, 42.91302958099878, 5.164352693135185, 140.71793397663126, 24.604745623568427, 43.992878719013525, 15.807423597124208, 38.08462475455191, 17.5475906828472, 38.7639765262324, 5.884614944484568, 36.840069242888504, 14.121467852733465, 38.9970706044221, 6.418068992093663, 165.12467731473689, 20.58268228981129, 47.119743814044554, 13.497522405946784, 41.60599972473429, 16.64289674446101, 11.923243882165055, 21.704286610834725, 10.39438789057483, 31.329207462205844, 6.361660957910143, 223.55871133394524, 21.24830830519101, 49.7465514585449, 24.36331735534186, 89.91836031793412, 44.87482122904645, 64.06113855222125, 20.072127180318034, 46.50422179606548, 86.1712282146386, 45.578168741270716, ...])
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);
([3539778.536386107, 3661357.945768158, 4115639.2097537094, 4147541.952974952, 4150101.1575901117, 4354250.0, 4357050.2169117, 4357914.066059007, 4376636.911270225, 4468076.5625, 4474570.366619772, 4480627.996165534, 4520155.354350095, 4533534.380541588, 4562048.332319547, 4562476.367584435, 4662025.0, 4689315.22794003, 4722886.379759597, 4723680.362204162, 4777150.7230678825, 4795157.390688642, 4918553.125, 5109195.3125, 5147866.065940254, 5230702.098969777, 5250373.959560265, 5287277.670784653, 5658215.9477960495, 5661102.280717508, 5687872.30974584, 5708824.488980521, 5709873.769470542, 5714653.203858462, 5719330.821612824, 5792860.108104961, 5814510.8318348145, 5827874.105189682, 5836834.340745614, 5846184.099905741, 5875142.361160978, 5946044.733959996, 5951665.030913319, 5978346.352789641, 5979847.743973895, 5982678.06910465, 5983636.36453316, 5989206.869153452, 5990832.8125, 6018755.304463889, 6048287.27636508, 6055463.104953362, 6061840.601450949, 6072048.33662948, 6072496.875, 6092139.271835458, 6096342.226326899, 6097220.035093259, 6097854.677258167, 6098660.9375, 6099775.140796718, 6100310.9375, 6102445.3125, 6102505.162199334, 6103977.029544883, 6105878.112325953, 6108253.717749009, 6127721.571107787, 6150598.137289216, 6154101.122051812, 6160721.633134469, 6161709.662190163, 6162760.041992796, 6164370.3125, 6165054.178770381, 6165478.125, 6166979.314840447, 6169800.780156006, 6169885.62572173, 6170085.537397828, 6186770.33751065, 6190673.776358312, 6204655.518603294, 6205451.5625, 6208192.1875, 6209352.41977897, 6209362.537204631, 6211631.975789137, 6212031.078057898, 6218279.159568734, 6226872.611079494, 6228030.061739121, 6228056.406107498, 6229504.17009256, 6234238.514014305, 6235038.647299248, 6235229.6875, 6235622.9985291, 6235637.05256002, 6235653.118908981, 6235720.3125, 6235810.473036311, 6236138.085615595, 6236229.6875, 6236595.005341196, 6236621.875, 6236663.304235619, 6237239.233779741, 6237324.61618508, 6237362.078041025, 6237368.496395576, 6237446.4150915155, 6237540.625, 6237729.6875, 6237763.50626194, 6237798.4375, 6238225.0, 6238432.8125, 6238542.1875, 6238761.598571938, 6240460.418846712, 6240870.202518282, 6241836.65466003, 6242961.938047748, 6243954.20531951, 6244279.706643387, 6244482.979785518, 6244604.6875, 6244638.825984603, 6245207.672316215, 6246117.066229051, 6246537.5, 6247725.615504247, 6248073.236944372, 6248281.024330172, 6250171.539356128, 6253480.249050032, 6256007.757131046, 6260844.827412016, 6261237.5, 6263164.0625, 6264276.5625, 6264767.1875, 6267971.837793577, 6270759.375, 6270849.860514462, 6272690.50789202, 6272702.36374507, 6277156.25, 6282343.833484631, 6283220.3125, 6283847.557491133, 6287642.1875, 6289847.465532671, 6290270.419364419, 6291730.146095322, 6292840.625, 6294911.265949417, 6294934.605981716, 6294939.709817506, 6294971.863515729, 6296379.682339048, 6296475.0520207845, 6296668.75, 6296745.049805769, 6297562.614841588, 6298046.5176169425, 6298174.4812706495, 6299196.875, 6299468.630197876, 6299991.106609474, 6300093.259533928, 6301452.623605535, 6303077.726431778, 6304468.119007458, 6305214.0625, 6307025.522227663, 6307083.548430009, 6307462.452080242, 6307577.012618704, 6307954.564069717, 6308923.4375, 6309715.833865127, 6309820.3125, 6310870.3125, 6311025.690897467, 6311944.3019726025, 6315623.0115834735, 6316124.833118008, 6320567.036351087, 6320935.19256093, 6322388.452070928, 6324754.550921181, 6326345.3125, 6326429.586640011, 6331171.875, 6331184.588432667, 6331184.778032595, 6335079.707822147, 6335743.920061094, 6335829.173670611, 6340421.047568046, 6342218.716557727, 6343440.417664489, 6344151.5625, 6347357.647044913, 6347400.886576329, 6348233.686676089, 6349946.272244873, 6350045.3125, 6350085.9375, 6350618.75, 6355297.171952958, 6359700.0, 6360365.51138834, 6360409.833325416, 6360617.414967049, 6360885.9375, 6360933.136756044, 6361243.75, 6362186.45484569, 6363008.047386149, 6363433.987079046, 6363866.75855865, 6364899.527149891, 6365819.767986428, 6367618.39203052, 6367806.001907528, 6368137.5, 6370127.975540411, 6370841.834094245, 6371961.533042315, 6373317.524301483, 6374023.267050095, 6374842.876418261, 6375582.2913995655, 6375596.324885239, 6379922.921522068, 6380596.875, 6381818.75, 6382660.245010937, 6383279.074242779, 6384535.771179144, 6384754.036314814, 6385146.875, 6385503.11318749, 6385940.203348669, 6386807.8125, 6387025.454101893, 6388770.822282748, 6390548.078858478, 6392147.975444502, 6393346.7280846685, 6396179.779457355, 6396184.6171545265, 6396212.801738673, 6396462.750820189, 6396905.126197258, 6398018.75, 6398917.475808748, 6399044.277021295, 6402001.280956957, 6402131.25, 6402364.714992333, 6402389.229037161, 6402509.10973037, 6402766.8802164765, 6403008.7393472, 6403801.534732215, 6403971.073178901, 6404004.418698703, 6404520.484884166, 6404524.387467529, 6404781.051489334, 6404821.578461101, 6404971.875, 6404988.480182381, 6405091.957514065, 6405114.736380001, 6405263.778518288, 6405335.209991075, 6405351.5625, 6405375.041410642, 6405393.75, 6405407.930116407, 6405450.145748611, 6405498.007357331, 6405541.185498026, 6405585.811541076, 6405647.897248764, 6405771.875, 6405833.706783134, 6405839.0625, 6405938.1529861735, 6406005.08332216, 6406008.3069653865, 6406127.198425802, 6406243.278234733, 6406245.3125, 6406408.066281113, 6406505.366881971, 6406565.387469511, 6406659.208307995, 6407107.456031142, 6407320.55083831, 6407336.808254216, 6407382.8125, 6407546.370513405, 6408555.611479181, 6409415.783039974, 6409423.944861301, 6409712.5, 6410291.644551609, 6410469.865677156, 6410527.220640531, 6410684.338832799, 6410844.463553391, 6410858.2448040955, 6410918.836897588, 6410925.6163333785, 6411085.0650725, 6411268.75, 6411404.6875, 6411494.09640379, 6411544.533604545, 6411588.811056664, 6412058.685749717, 6412501.5625, 6412715.570646109, 6412857.8125, 6412907.519295801, 6413062.27354087, 6413082.701502758, 6413165.681752766, 6413283.972368319, 6413810.355198695, 6413842.651011503, 6414003.183705356, 6414884.1877381895, 6415117.802850736, 6415811.6132588, 6416451.5625, 6416673.4607468555, 6418707.8125, 6424095.3125, 6424750.901880839, 6425059.290636691, 6425565.625, 6425699.686414393, 6426702.636158037, 6427142.035308814, 6427145.855192085, 6427796.875, 6428199.590378668, 6428646.875, 6429886.241832563, 6429902.181128054, 6431475.542672086, 6431690.625, 6431692.1875, 6432291.691422589, 6433672.806866431, 6433692.1875, 6434011.625417257, 6434079.987639463, 6434311.131394606, 6435061.801925382, 6435300.0, 6435387.067968567, 6435422.244611522, 6435516.63778631, 6436125.0, 6436153.711563882, 6436219.7048767675, 6436547.418993944, 6436606.25, 6436632.724496107, 6436815.625, 6436955.10759604, 6436956.737692694, 6436999.265705882, 6437065.219773367, 6437474.299327252, 6437776.561063347, 6437808.411606906, 6438190.681829577, 6438313.2501770975, 6438362.287071551, 6438433.129844995, 6438512.114677454, 6438723.479486301, 6439162.517621434, 6439354.995334137, 6439401.29147245, 6439421.269455, 6439431.96755397, 6439641.748573844, 6439960.9375, 6440192.13992333, 6440459.036927911, 6440619.061527559, 6441265.625, 6441555.822162612, 6441839.839794504, 6441851.239372349, 6441934.831848603, 6442209.318471852, 6442564.040164109, 6442766.912885227, 6442787.506654441, 6442820.943630814, 6443490.189608863, 6443579.63037116, 6443983.314378601, 6444340.874373502, 6444869.108912613, 6445012.971489098, 6445157.113625412, 6445182.8125, 6445640.332436939, 6447206.25, 6447216.941492192, 6447236.558685509, 6447476.816471453, 6447590.325718688, 6448052.594623512, 6448607.228131148, 6449123.275854126, 6449559.936050644, 6449626.497888132, 6449714.406402558, 6449789.0625, 6449911.53137187, 6450632.103866002, 6451296.028677378, 6453014.0625, 6455767.081051656, 6456631.25, 6458610.795624925, 6458939.0625, 6459704.276729396, 6462285.9375, 6462875.0, 6464295.163037328, 6465298.29297317, 6465571.222081672, 6466176.132011115, 6466243.49011176, 6466543.504646865, 6466564.60918167, 6468595.612494965, 6470909.674342148, 6471447.762085648, 6473187.5, 6481218.766092444, 6482026.5625, 6482248.737505247, 6482765.300276809, 6482848.664681033, 6482957.8125, 6483280.541307443, 6484427.822887829, 6485786.9924550755, 6486276.410914542, 6486959.379327036, 6486979.6875, 6487297.074245951, 6487513.600406821, 6488473.4375, 6489342.1875, 6491602.515202331, 6492304.026473141, 6492313.063059715, 6493916.984856621, 6494038.5377611965, 6494823.306044107, 6497968.75, 6503454.6875, 6505780.77315639, 6507096.875, 6507389.0625, 6507746.6564979525, 6508194.339106824, 6510334.375, 6510448.179997427, 6512461.615719533, 6513000.0, 6513440.881530032, 6513835.9375, 6514312.0485340515, 6518396.431920186, 6518602.446752163, 6519027.938300302, 6519167.889075594, 6520585.701071763, 6520609.375, 6520779.6875, 6520835.832932237, 6521245.598639308, 6522089.632848735, 6522405.302767928, 6522456.774372564, 6523339.0625, 6524544.412543603, 6524768.75, 6525216.374711119, 6525569.331200079, 6526921.765627035, 6528326.5625, 6528341.741812222, 6528395.3125, 6528950.0, 6529073.317939199, 6529075.0, 6529091.083799655, 6529614.199796969, 6530371.875, 6532512.5, 6534168.523896948, 6534803.910286231, 6535754.6081103515, 6535875.257391446, 6536471.922200383, 6537843.75, 6538263.4289890565, 6538368.7029132275, 6539420.415906249, 6540030.80754269, 6540173.506411607, 6540182.197611203, 6541386.22146992, 6541750.4098980725, 6541820.933734186, 6541916.910955706, 6542235.102857909, 6542236.332632487, 6542332.628164173, 6542375.760218248, 6542494.869217268, 6542638.439581635, 6542957.8125, 6543084.2524992535, 6543657.423161636, 6544093.657769945, 6544096.968931, 6544126.5625, 6544445.600443549, 6546261.933734746, 6546593.673354498, 6546757.453989459, 6549499.120995806, 6549581.05173152, 6550764.0625, 6551246.875, 6555312.400128729, 6555681.925457619, 6558316.859805595, 6558353.810640447, 6559132.515972891, 6559327.197761251, 6559603.125, 6560201.164562911, 6561623.4375, 6562485.9375, 6564260.596897386, 6564645.2097187415, 6565300.417998435, 6569089.734311931, 6570243.47108793, 6571643.259074647, 6571856.25, 6573005.65592856, 6576722.124787597, 6577490.535548961, 6581582.703946907, 6581979.908898285, 6582899.879913105, 6583378.125, 6588057.394915778, 6588710.9375, 6588787.989406391, 6589049.893456199, 6590057.263826975, 6590150.0, 6590178.125, 6590343.707255735, 6591020.18356731, 6591239.185380474, 6591251.884854186, 6591835.163832393, 6591857.4729150925, 6592503.125, 6592818.695026517, 6594434.175493629, 6595557.7533231415, 6596744.219962757, 6596759.183833281, 6597051.892081267, 6598483.893080816, 6598729.941693215, 6599077.091140055, 6599203.5587210655, 6599232.899121576, 6599406.25, 6599470.02738192, 6599489.0625, 6599490.625, 6599635.673247979, 6600369.30600931, 6601027.351889757, 6601415.485074608, 6601894.952340316, 6603412.035575012, 6604204.243985004, 6606092.027566404, 6606753.468735488, 6608137.413305799, 6608876.943467125, 6608917.091361997, 6609795.3125, 6609919.673892227, 6611532.81910164, 6612145.3125, 6612664.447032904, 6612871.875, 6612891.9024864985, 6613083.213146701, 6613923.4375, 6614821.875, 6615169.808976702, 6615838.687738283, 6616151.7292378545, 6616861.41844871, 6616952.990271289, 6617491.576094534, 6618816.185466077, 6622589.324792529, 6623087.5, 6623398.421074742, 6623590.625, 6625664.0625, 6625895.205946626, 6626238.532147765, 6627525.699573843, 6627535.540758663, 6628429.450389989, 6628638.357624766, 6629917.1875, 6630811.8430944, 6630882.8125, 6631223.801278253, 6632027.882192587, 6634071.429299124, 6636117.048170587, 6636319.958401557, 6638785.240094681, 6639614.256279939, 6640497.049551005, 6640567.1875, 6640785.9375, 6641391.6379703, 6642101.5625, 6642995.3125, 6645239.096527099, 6646705.360247859, 6647433.632660455, 6648373.195445979, 6654228.920490035, 6661320.319700719, 6661499.456063417, 6664639.783618446, 6676658.487556714, 6677026.5625, 6680626.5625, 6680633.59047879, 6680770.3125, 6681241.554006443, 6682854.6875, 6684435.864800135, 6685175.0, 6685804.310895081, 6691509.367892369, 6691802.586727699, 6691932.8125, 6693995.599741799, 6695885.9375, 6696483.731017071, 6696707.163698002, 6698003.125, 6698231.94780175, 6698514.0625, 6698515.922635756, 6698745.329565817, 6700125.0, 6701432.172927729, 6701754.6875, 6702048.631046837, 6704149.198094146, 6706760.904054548, 6707844.364416135, 6709550.858660646, 6709602.671167946, 6709958.982674591, 6710868.794827352, 6711033.428810796, 6712082.490874849, 6712416.272867239, 6713333.552559777, 6715093.75, 6715419.5971042495, 6715823.257810721, 6716390.39010413, 6717570.3125, 6717901.877891489, 6722835.713473463, 6723592.961336446, 6725431.25, 6725483.670815809, 6725681.449628317, 6726634.610640933, 6728273.248725739, 6728874.720689152, 6729609.972267115, 6731704.196879737, 6731839.986504989, 6732367.254970894, 6732534.375, 6732897.694696301, 6733746.5817199, 6733770.3125, 6733876.391624855, 6734395.3125, 6734598.38241326, 6734899.255449078, 6735239.0625, 6735562.508535481, 6735618.690648442, 6736220.3125, 6736231.952668226, 6736332.8125, 6737186.533514896, 6737530.264839806, 6738259.746102792, 6738606.25, 6739023.4375, 6739039.0625, 6739515.044738162, 6739563.60592607, 6739731.669584985, 6739749.805136915, 6739946.581663813, 6740513.068387141, 6741693.410315793, 6743352.5956850685, 6744162.328212785, 6744353.125, 6744684.746285621, 6745526.468231082, 6745687.058733055, 6746092.035650434, 6746457.983474559, 6746600.436515683, 6747160.630250086, 6747209.73368101, 6747314.0625, 6747554.6875, 6747727.637236203, 6748179.6875, 6748361.690117163, 6748810.9375, 6749339.0625, 6749348.324056415, 6749365.263732208, 6749445.241264621, 6749451.282987396, 6749531.436962033, 6749532.8125, 6749692.697112191, 6750144.576052113, 6750218.962946345, 6750806.490902062, 6750902.050527772, 6750948.976690661, 6750977.00203051, 6751941.637335645, 6751979.684803244, 6752035.760449315, 6752862.902477534, 6752979.112678443, 6753031.659980378, 6753284.375, 6753946.079599572, 6754182.620603232, 6754496.26955687, 6755335.9375, 6755556.25, 6755823.4375, 6757309.375, 6758009.348930122, 6758825.980488164, 6758881.867702495, 6760377.346477175, 6761596.795854145, 6762495.72845298, 6765293.347769584, 6766127.929343481, 6767132.566387327, 6767400.0, 6767531.031130397, 6767893.987932939, 6768241.746511839, 6769208.567790954, 6769249.97173881, 6769694.694077146, 6769807.810369715, 6770313.550169016, 6770632.549807916, 6770892.024292198, 6771807.991698466, 6771811.022574401, 6771879.222311211, 6772226.688143172, 6772236.383595192, 6772655.641840229, 6772885.0507552195, 6773977.958719087, 6774270.888148822, 6774591.385072816, 6775984.618309092, 6776321.419578299, 6777243.213938281, 6777334.71451819, 6777504.6875, 6777778.125, 6777967.060331282, 6778048.306252622, 6778142.1875, 6778389.398348015, 6778448.4375, 6778448.464691988, 6778452.711417802, 6779326.5625, 6780063.296962314, 6780065.469190549, 6780228.220380353, 6780795.3125, 6781029.012430083, 6781399.061664016, 6781419.081973529, 6781501.253783126, 6781726.5625, 6781974.18388085, 6782379.004723394, 6782388.240432409, 6783115.08878975, 6783141.675743488, 6783622.091037108, 6783635.9375, 6783789.0625, 6784064.0625, 6784183.995311702, 6784375.0, 6784564.957542367, 6784753.125, 6784755.207910768, 6784943.609870499, 6785141.529153442, 6785285.278650573, 6785757.232751266, 6785875.0857764445, 6786224.357729322, 6786227.8923451975, 6786477.45495632, 6786665.962729477, 6787098.4375, 6788504.093962218, 6788610.9375, 6788705.398455969, 6789218.247571053, 6789470.7317452, 6790146.59511838, 6790456.423302722, 6790458.9800608335, 6791010.785958433, 6791470.3125, 6792001.63109039, 6792195.683881019, 6792248.953382292, 6792718.156521057, 6792759.375, 6794204.733237098, 6794360.552504995, 6794614.0625, 6794943.604032433, 6795241.339100465, 6795760.1100643575, 6796809.002142606, 6797635.9375, 6797896.875, 6797930.117243442, 6801706.25, 6803212.5, 6803758.225548926, 6803866.179889685, 6803870.965038933, 6803889.984403912, 6804059.375, 6804065.21036089, 6804201.5625, 6804356.25, 6804731.9126349455, 6804949.319198033, 6805013.279445325, 6805195.563147543, 6805205.427115952, 6805384.375, 6805453.125, 6805628.4264439605, 6805673.686907003, 6805806.3094098605, 6805807.8125, 6806223.962637689, 6806359.342707452, 6806415.625, 6806449.375295885, 6806733.727604887, 6807186.930120773, 6807500.0, 6807886.118187872, 6807963.443913547, 6808226.5625, 6808413.987693852, 6808642.1875, 6808823.4375, 6808960.909559953, 6808964.0625, 6809240.625, 6809296.034588215, 6809510.7200933285, 6809765.550631491, 6810214.972579008, 6810224.635661271, 6810283.796397321, 6810321.875, 6810481.336760247, 6810807.076982802, 6811286.553869921, 6811491.710625018, 6811550.911689017, 6811667.1875, 6811871.079383813, 6812267.178992711, 6812701.5625, 6812856.667260252, 6813164.0625, 6813223.4375, 6813553.789344799, 6813933.321787849, 6814137.910117987, 6815172.809249892, 6815763.859907226, 6817004.573235368, 6817926.248002991, 6817935.992794082, 6818146.875, 6818295.26912738, 6818314.27522447, 6818601.3449359685, 6819145.459614497, 6819175.2100334, 6819339.0625, 6820161.814051937, 6820175.0, 6820382.161080103, 6820653.125, 6821106.016821995, 6821218.657500671, 6821432.35759207, 6821484.258734957, 6821855.653620554, 6821931.25, 6821937.061438911, 6822275.0, 6822639.447166609, 6822658.268091823, 6822979.208413011, 6823060.411554387, 6823910.514580603, 6824335.087796513, 6824338.246448573, 6825344.038393606, 6825490.625, 6825593.496489462, 6825632.8125, 6825697.749842015, 6825782.6619060645, 6825825.907191001, 6826173.4375, 6826220.3125, 6826419.859498461, ...], [11.837980562993893, 24.661999290209952, 22.759405959689516, 92.0031054316558, 22.49718972362384, 31.788505965072748, 21.600721315493985, 14.955092065142397, 25.74958832977491, 72.4408292676968, 38.57848162052235, 34.71780730148113, 31.360724966776477, 9.336093299379584, 54.125604325303684, 52.06952889742497, 76.07100161166679, 22.58535680391286, 16.945773923911844, 17.376450533238806, 10.028070494974136, 22.310221340782917, 28.89011243167451, 67.41104258053167, 16.938668847798226, 18.670593387491515, 27.832293174634515, 21.578438486971066, 123.25830487163937, 18.63152397120868, 9.728207616487682, 8.933709926165482, 9.62881640726691, 85.64534888787827, 37.08393610806045, 10.039111257995227, 47.66801006742216, 6.597111668944627, 14.812535567291086, 64.06129154430838, 79.81319116817069, 13.115970103230342, 20.60321682489059, 30.08350517786554, 37.294787673481686, 56.031928173037045, 16.864258907898737, 39.68034137613518, 105.18800039391107, 6.154697262594912, 36.43419715760113, 36.04755205031768, 6.7588142722002, 26.67784384887828, 51.15689946315975, 26.066968153391095, 15.091593736753419, 103.32285733238689, 8.281168689383875, 28.826140268413894, 11.35515151809097, 112.1225634099819, 139.50476438469983, 6.138895231920053, 9.760218673028156, 41.79235184889467, 48.553149968809635, 138.11073859712417, 23.748049559759906, 5.67928860271723, 24.52286211428432, 16.16213351975156, 40.75419852622551, 58.05068368363361, 16.544189172079903, 33.05916034601743, 13.68887764780576, 19.07374209954641, 17.388855192103655, 14.361714474703309, 11.167026394307538, 28.434881423780176, 19.458530494717035, 37.48230262038923, 55.98313549396672, 48.64136644905783, 27.14097617075266, 16.033903415482065, 14.324288895019395, 80.81254753112003, 7.893085784327534, 43.724105519598886, 22.77035063509625, 52.42082126582601, 34.81431471637663, 54.031053638212654, 43.24653747106381, 66.42467697817021, 7.44904459296435, 60.412030648009335, 69.54475804125445, 8.967300254787663, 17.76863515272884, 77.36925972758559, 99.37617761165656, 69.85631701861884, 67.1469796076422, 5.13417970837077, 46.26631832854053, 10.526540850195973, 10.753168071067378, 5.0606274857907545, 73.3750315316608, 52.10296169947802, 8.901547639568218, 88.86687444346933, 64.69752561487975, 44.62553280762636, 57.27590440477742, 49.73149256173097, 65.42700469619831, 37.31628225800604, 24.690424055860905, 107.03509844461394, 49.3436710273198, 9.34764261326468, 42.3037620055305, 34.24303252967176, 14.110650425260157, 49.76034907730807, 64.72753544227027, 97.45008764018522, 12.24856207864322, 25.109936652172937, 32.72390684639797, 23.30587351449293, 36.88626837012748, 27.47499924971288, 5.089026960751462, 35.371121923795776, 65.48143695255503, 97.1583535991762, 117.3201986995553, 130.71352498104048, 28.93733362816187, 35.89313459439494, 89.91669271131748, 40.39783131689125, 235.89109756649452, 15.269556712243526, 76.71008747402139, 12.39327976380212, 34.20196996176946, 12.195935180130222, 8.343909207993349, 11.929107359516413, 71.58013670086171, 5.254431855951207, 29.213839527692002, 6.352599610403172, 9.321711416473907, 72.20817793158892, 20.237263019908898, 68.52867631857853, 14.02661996247958, 58.833117433012674, 10.61154998452979, 14.96135959637001, 84.6014796151767, 8.224223985891646, 17.161431290344595, 62.01436700204542, 21.479200976773882, 74.37146534866469, 35.90416120556106, 36.404943351100165, 17.3380005756013, 18.755251765253504, 14.761954154317397, 58.32252148200382, 61.82795339444393, 30.91428661679001, 9.514483533001016, 65.74745527011385, 44.753663400677056, 5.653444943944036, 30.83613531992046, 55.99677377172732, 47.48205471584377, 70.70710995230735, 77.57024806068686, 6.647465624386914, 7.086006169110372, 238.68280219973198, 5.930669895545523, 43.36860850157943, 9.518637276957659, 11.822083268659975, 29.99727722426194, 11.40435124927643, 29.928013954208154, 42.57497639609727, 27.879805861409213, 25.011253397229105, 83.62245619652222, 47.23557099365874, 5.1499131179221775, 6.019329685015227, 14.25832231941612, 30.234851444532765, 64.01688088280328, 100.11703587385821, 41.79716825375884, 52.845805957340836, 21.111853249916507, 11.92858007443315, 7.687634028909023, 68.41870546608811, 16.340453238489356, 50.81725978434862, 28.83761750928699, 17.142854013135704, 5.785824371050023, 22.232497122778394, 6.0402695867761675, 10.371382003028708, 23.03746674950959, 21.367350495829513, 142.3858244775595, 25.88508875625651, 23.091714113874314, 12.206436655266858, 11.698386477640495, 14.329336229774775, 8.687901382251122, 13.268626030517547, 8.905876545239884, 21.335178953483293, 37.77936105071581, 58.893313123315075, 24.275328725666828, 22.55392633716133, 7.544169932741573, 151.40658081436436, 30.909615533634774, 7.118349965770621, 127.30690234224701, 31.91988732656027, 21.988874471131123, 35.3557553182512, 13.730616809866111, 13.431182476393644, 8.210384579958124, 11.274549928023601, 11.528550226997273, 16.23148941257083, 11.465137903160791, 18.51165849379604, 58.67332264742216, 69.92626865825936, 50.30907110725287, 13.96700700521725, 59.39752084197929, 19.993221153480427, 15.616683067950305, 5.388428937766855, 67.6215826985243, 20.238820528049224, 102.08211390860781, 24.596319765003724, 8.149368139186054, 11.408286402815879, 20.439468398135435, 51.381947920361384, 13.920101093950725, 38.258929131519416, 8.883202014446347, 5.6922757738761565, 40.85625993116118, 64.77241225260669, 21.428342875123008, 51.12385423627844, 13.220572802462332, 50.436115161171365, 15.409594926670799, 59.863730155591774, 8.992379124955304, 17.616788387085737, 225.0795015402007, 31.97408373544552, 47.53269524222704, 18.47236014231149, 29.573248245215602, 35.725484791795566, 61.87201095542314, 92.67010194296668, 18.083470451259583, 6.209379105948714, 47.82974913787642, 16.005886046138055, 22.489507764202553, 37.026783646977435, 43.64385885668953, 23.055269443130964, 11.521866531285946, 12.82988364187219, 56.73337938339048, 31.389761924341883, 23.664535173109677, 32.930424119453605, 9.800712930740824, 51.48641743942777, 175.90589865985595, 78.06833695360724, 9.957670507141536, 9.301007856759396, 12.46219824278481, 5.356956654846269, 22.590094403324, 101.6011679800869, 9.992075011796533, 29.59087798577963, 42.48825408702083, 21.801952389762796, 19.099168848709873, 75.09057944667983, 94.81011576212181, 72.16139405544303, 14.738307405886331, 58.5221801235526, 60.10445937328823, 24.737888464462443, 14.534669933494364, 7.623893978653665, 30.569052910986564, 88.94935424876005, 17.06133617804374, 60.90349998138596, 88.82152531241753, 17.95294738959336, 18.343406982564307, 60.19033490271335, 61.73121963309686, 112.12771679651354, 74.19121635263036, 41.479111733742585, 10.99835314997279, 75.14948268189261, 107.36000662409417, 15.63741347185316, 14.391511779844867, 17.511206633915958, 120.7392222128657, 22.44468063140946, 49.48070343209599, 16.243940588601433, 16.74426147542198, 7.27180475960651, 54.59671724861097, 32.81326789557209, 109.21498156865846, 145.49741766132612, 97.25108790364837, 18.424718452356377, 43.70807005603177, 6.802843495192062, 20.90633608818414, 88.98838209145269, 29.754212481559076, 27.092176117229243, 21.011111702723273, 90.11575919466588, 6.88654583968719, 20.4827262648223, 111.73484583652267, 41.18585006253501, 124.89604644566403, 55.25088380332302, 16.490519141842277, 11.986384436817959, 30.909224631838967, 79.28421588519628, 35.50976431906923, 6.4868660464269725, 12.213926038571266, 15.090759834093873, 10.057989282634667, 84.42344235441657, 11.662821598197004, 63.8044238296045, 6.771917856481927, 83.51504623651849, 9.606003773573274, 94.10389688762129, 40.187401050933296, 8.706355601088813, 10.50458561734841, 35.997448481194645, 5.289619906443852, 23.208886268396874, 27.749327202695145, 52.72377385509534, 30.63969586718329, 12.607380101707713, 61.253859187130416, 66.10578146370602, 27.453985479782457, 41.292251264050805, 9.109515708772983, 14.966933841543797, 53.7441547795729, 115.26006117921632, 32.14431272733082, 6.568752285991884, 12.480077579234177, 174.67583864180096, 9.764653033726226, 19.048048626603844, 79.45590118474726, 13.932492646826129, 77.22883541048087, 24.46581954381349, 17.989709263319348, 19.865829392817346, 49.16224811615285, 21.19533764228397, 35.24320410138945, 5.925450972260132, 153.82493061603066, 6.750675502622283, 11.711452822922862, 51.0788114660875, 25.681249903454557, 90.37178433643668, 51.360128991703284, 33.97515076901146, 26.583887673644345, 116.45008231400064, 10.912959177277582, 66.91484147330554, 9.006654871272698, 126.96417553244281, 88.08488151057375, 14.400869571525673, 40.05665019349661, 12.925881460065138, 8.992124783297593, 5.388630828918555, 19.21915795363465, 38.59054000805603, 19.666317467987362, 58.21600504277468, 95.37393268450302, 89.27037852133115, 188.6737302249688, 29.54364403079467, 26.081929211856732, 23.439991967321113, 11.502396805968587, 119.13320627043052, 120.58191689118459, 54.678241554215965, 48.53223006019007, 13.87265271872544, 59.25733741611397, 90.52314455188889, 5.828871334759316, 8.969023731885427, 44.53018449073236, 104.42929417568998, 58.821056712363806, 20.024291320895514, 17.632117524823908, 51.19968400194937, 113.7599071484377, 33.387682829171446, 84.71076917877492, 64.4954222617219, 21.727250157754366, 47.23429284932199, 30.223653235941764, 33.529630214699, 65.81194196049456, 52.793331139504716, 116.749334150671, 28.700038219371052, 32.87583435957435, 16.018586137216577, 110.57725585745526, 77.7809783286596, 22.08034455343838, 19.881960977910804, 6.726797165387913, 7.87835488785404, 67.45452479783779, 33.22385913658113, 71.59720219023198, 7.094232615708951, 48.23057570478703, 9.865202773663196, 42.78510698446673, 5.986410069345345, 65.84625360145573, 12.34963485348893, 37.83488316541247, 22.792762943908578, 9.876466973340776, 14.540398238689288, 113.40973736836129, 85.7206924370782, 77.71602027731825, 68.76290286731867, 7.560559508938098, 46.10761473442824, 5.176186253565951, 83.39006603875613, 40.14273837783344, 55.39516844350177, 5.601656851118732, 8.750634780666301, 6.7477598696321595, 11.555360459787222, 9.371635218603476, 48.22910504524515, 67.25117020845241, 31.81641772512676, 83.12269408411844, 51.71944116642705, 7.139685016741178, 74.82138888019414, 162.17145341847936, 9.703837389920766, 97.04310878595136, 6.059805545259163, 46.01018084443504, 25.891822394434207, 10.851304686746909, 199.33321205336802, 5.089830384022922, 7.982522986536288, 39.81436921364227, 26.317848429666835, 5.156392253744359, 20.071063845921337, 5.345150689786668, 44.28289676572851, 16.165705212640667, 5.891563498167284, 27.095284436483745, 75.41017591272674, 6.908089762799511, 95.74658551935991, 40.453045493460166, 53.3655616874265, 36.85923816361101, 21.19098543880365, 74.57330175861745, 107.90163420330003, 13.920137791541357, 59.301028653482575, 43.07457357032387, 22.575462895065627, 146.21355864948444, 67.74149154272828, 13.784879608057988, 53.66643957685298, 62.942247954921044, 18.31721313621334, 13.975283875259857, 25.358217019610287, 55.5160754816952, 32.3346153442008, 32.70090693105033, 32.267007999903335, 9.241271650573179, 86.22269841576892, 7.090238251548543, 31.658801009613647, 13.557576849916963, 40.51057632310557, 69.98804362329615, 24.540528984546356, 59.92272646281998, 51.204101233858864, 31.956504499294656, 14.781053308558088, 37.33915383198058, 7.154132228343205, 16.33117283485671, 5.4966743164473915, 79.40794072443205, 70.73696953858965, 36.625040420398754, 22.103118894525373, 9.281862075848743, 17.096836657760214, 96.86300098340814, 144.1938315152596, 13.375839417365205, 108.1296543342416, 17.429061816016265, 27.47475641654893, 15.282279209536489, 42.66629337263348, 73.28282514616629, 40.97332441294951, 34.490906199273056, 24.218371346557923, 12.124320633102945, 19.209486668807717, 6.7358894094774415, 13.726078451027321, 239.3283982455583, 13.483453922342694, 10.886595535640476, 22.23232956201628, 53.81572506473228, 58.90586829454796, 36.47323987478133, 44.389145251268175, 75.94677105752939, 11.138041293682697, 94.89255419222734, 11.78711582946951, 33.28169627648202, 13.956110882934954, 16.725466560296432, 46.97951175604534, 33.02246293822426, 13.31640689912369, 33.57000809118244, 11.398729478148493, 38.32631938031102, 93.02241078261531, 51.673301550766034, 6.148388718217982, 16.070939017545374, 48.98681495941075, 28.203867270247915, 32.15905072291471, 67.00731084199194, 47.806412613573826, 21.195571257952018, 18.503564931578502, 10.559462338725274, 98.9543564560098, 19.666900725874573, 100.12433205137003, 18.480497709649626, 74.87988174124524, 16.536610994730978, 14.090321150845941, 44.578544540557644, 113.71155115260751, 57.40099959869892, 113.39356244286606, 27.65179992683416, 15.651347371800007, 66.39914154120251, 55.536026687738136, 6.032758348522339, 89.91640081670053, 66.96106071853522, 165.3703491171696, 176.3238523810661, 60.25390568165779, 24.520259422173226, 8.757383290562812, 40.42266818339522, 146.05831405120654, 24.784570450684328, 12.376957896091968, 52.46369081671947, 67.80116891741378, 14.217214188348116, 31.273244431959803, 12.974726680720856, 96.21102316218344, 115.72266244878182, 36.478984142046734, 113.74980697394354, 14.914487487663715, 8.914271984029519, 29.85774897798674, 39.42087675395717, 40.407335544559196, 73.78043922329631, 76.56482082052725, 67.26312483069299, 137.13125278373954, 49.331006004491016, 16.211847698846093, 5.245623180988201, 56.80498491419557, 62.29973934952528, 50.3747016791513, 40.16096201128271, 92.73002391234489, 72.65056536934267, 28.249354067777112, 12.800419982689979, 51.72162463675672, 10.565263371805257, 15.11516813715342, 19.1350280569078, 6.437828504450075, 21.403924099526293, 18.784408115217676, 35.187754309017116, 51.201402353516634, 75.42450511431254, 94.60953382305587, 41.70139464076366, 231.06168468318458, 140.69571483300783, 118.33663192615683, 41.25907609772938, 53.667603104264614, 72.90934822333088, 13.249703529463094, 25.283677584059618, 68.72281571646934, 27.173043628200865, 19.813031147538325, 67.8372949363013, 80.8275484586739, 55.92826138008741, 25.78457445108638, 71.07630806690861, 36.06366425891854, 18.857714078768968, 39.309057414550345, 14.735620838097216, 6.938582897395025, 53.929197293980984, 11.141074569294224, 5.530206939911181, 40.387709379965784, 89.31066312700929, 47.04173866293203, 12.207428752632795, 109.22646592838635, 27.080491488124483, 56.69448115172062, 38.12981850273263, 65.48597459000739, 180.9883900738657, 30.481778040841952, 37.9951727731475, 8.186150262632147, 15.17859497755624, 111.44976992591523, 13.787659038783902, 53.122513484551874, 25.539365657798907, 50.3126185641351, 8.493188859083576, 14.59397515452521, 73.2669788009708, 25.847544251038823, 22.369505731379792, 16.914899480330256, 29.86761564983744, 43.42297082784131, 53.38962050739752, 91.6907341164173, 105.32881506526144, 46.535724389315455, 7.900189807095015, 41.69386542829652, 137.78054441010192, 9.237287588998054, 17.279808708317432, 27.190650411486857, 119.27237952969492, 64.78468474658463, 29.755920698378056, 97.06104449429071, 35.21952971614924, 83.42219156414055, 44.24365937951911, 5.850994711951567, 74.62598281482026, 46.8507389750965, 21.00686620386514, 82.65994470549114, 9.18605312970689, 24.612663009101706, 20.777832281454966, 5.048521220784855, 36.47124595233771, 19.515633764608296, 25.237347254405453, 20.502010899062622, 59.168538037881234, 61.71126210601896, 48.60085969280811, 76.08484389405344, 28.019114380572177, 20.712224220887308, 5.488918685230177, 26.129476518407394, 11.006209916033516, 5.637477709479878, 23.97317178679115, 59.31178688824064, 24.464379650761007, 55.45594059523033, 125.72321254703054, 15.933202135394243, 45.95896209019654, 12.556680326496803, 71.76774229914083, 21.657869479616245, 101.69852752127487, 13.292400769791772, 55.52892546206961, 55.969798858417406, 46.017762851711204, 15.276000639686199, 21.84753455228238, 5.071188212292173, 16.96647539692998, 33.239321262190884, 18.343383179828074, 25.623591114811397, 17.707967934765822, 72.80284240251426, 37.50951395551377, 59.29002957752115, 13.228354756481778, 13.756257016895159, 57.30788574423579, 130.85530263315346, 20.88015766448477, 14.463790329669047, 45.39909135213572, 9.632499644824412, 51.76384606912215, 5.941777071046981, 150.25720042544063, 50.49284145241955, 19.198491994300134, 25.785624939594797, 6.502147607153126, 198.83885266164324, 19.908031647159344, 18.00855193339268, 16.985923931322105, 57.13363473672101, 64.88153766648023, 53.4172205368797, 26.03595183088352, 10.047198520343276, 21.139331893853978, 80.7968152304289, 95.0878779927221, 74.08062004907285, 33.47185883693743, 67.28373181184025, 133.05076770990473, 57.47574842975606, 63.50987739262268, 116.75524330932967, 58.720815233921044, 9.215661296861635, 64.70429530178713, 79.31960962469621, 20.732817464495717, 11.264481092784083, 20.182305012265324, 27.201414347145082, 19.949444332234297, 16.406612422137247, 65.98277256000101, 45.18767985954625, 63.1429082395628, 18.58141122509584, 35.03889105600001, 73.04068650897351, 24.011173386671658, 28.632932316375985, 10.561828474434243, 56.80690400737535, 38.710256046862476, 15.209551554244738, 29.81783639991159, 17.355365147829065, 74.56043220716572, 49.71876363978645, 117.19220247338377, 10.57491695198595, 52.59274338404872, 26.891465156263777, 8.70412170149921, 80.8390410951189, 22.862660676506767, 61.202556182740814, 38.919639063235195, 16.87869125975107, 60.59078559254361, 97.28625442837226, 16.790317030445582, 29.90252009520256, 87.12959378356663, 151.997975384237, 73.06765076206312, 9.003797084396927, 70.79742267841499, 80.59812546573693, 33.06155779131605, 8.815233217038777, 8.746781032751214, 122.97703817946231, 12.52094002229651, 52.59436982157562, 39.154675977106244, 222.9231849444143, 11.54128649502806, 82.51070413930867, 57.05072993072365, 9.81876044612988, 38.87867975802409, 41.04224209039487, 5.320961563984258, 52.36391628660689, 76.52049170712684, 117.83470784071756, 11.422388303537527, 20.386441704344673, 49.05295965550007, 83.16426483741999, 49.03062343989984, 40.070135388876295, 115.39770918040688, 149.90812019038833, 87.03287918526985, 25.60572294978836, 59.12710690884687, 26.946383140019446, 36.396810628040285, 10.602281351968296, 97.95167832507173, 213.38953220160803, 24.52860664170202, 40.447645182310936, 9.913292453094854, 34.39557242864453, 26.673481083226843, 112.47409105544997, 7.906341116767898, 70.08340971198115, 40.50789452782728, 16.422992363647346, 34.83540596680806, 61.050306933447516, 49.25242844037942, 17.31759591159845, 16.774930140130266, 12.988007138508975, 66.78334597031682, 27.8317710868864, 7.493316800577908, 15.156537809271498, 42.91302958099878, 5.164352693135185, 140.71793397663126, 24.604745623568427, 43.992878719013525, 15.807423597124208, 38.08462475455191, 17.5475906828472, 38.7639765262324, 5.884614944484568, 36.840069242888504, 14.121467852733465, 38.9970706044221, 6.418068992093663, 165.12467731473689, 20.58268228981129, 47.119743814044554, 13.497522405946784, 41.60599972473429, 16.64289674446101, 11.923243882165055, 21.704286610834725, 10.39438789057483, 31.329207462205844, 6.361660957910143, 223.55871133394524, 21.24830830519101, 49.7465514585449, 24.36331735534186, 89.91836031793412, 44.87482122904645, 64.06113855222125, 20.072127180318034, 46.50422179606548, 86.1712282146386, 45.578168741270716, ...])
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)